pacpl-code/0000755000175100017510000000000014010551313012106 5ustar viriiviriipacpl-code/codecs.conf0000644000175100017510000000305414010536244014225 0ustar viriivirii######################################################################################### # # Perl Audio Converter - default encoders / decoders # # FORMAT = encoder,decoder # # E = Supported Encoders # D = Supported Decoders # # You can check any format by using the following: # # pacpl --encoder or pacpl --decoder # # The above two commands will show you what is supported, installed, # and the default. # Formats that only have one encoder/decoder are not listed in this file. # ######################################################################################### # AAC # # E: avconv, faac, ffmpeg # D: avconv, faad, ffmpeg, mplayer AAC = faac,faad # AC3 # # E: aften, avconv, ffmpeg # D: avconv, ffmpeg, mplayer AC3 = ffmpeg,ffmpeg # DTS # # E: avconv, dcaenc, ffmpeg # D: ffmpeg DTS = ffmpeg,ffmpeg # FLAC # # encoders: flac, ffmpeg, avconv, flake # decoders: flac, ffmpeg, avconv, mplayer FLAC = flac,flac # FLA # # E: flac, # D: flac, mplayer FLA = flac,flac # MP4 # # E: faac, ffmpeg, avconv # E: faad, ffmpeg, avconv, mplayer MP4 = faac,faad # MP3 # # E: avconv, bladeenc, ffmpeg, gogo, lame, sox # D: avconv, ffmpeg, lame, mplayer, sox MP3 = lame,lame # MP2 # # E: avconv, ffmpeg, sox, toolame, twolame # D: avconv, ffmpeg, mplayer # OGG # # E: avconv, ffmpeg, oggenc, sox # D: avconv, ffmpeg, mplayer, oggdec, sox OGG = oggenc,oggdec # TTA # # E: ttaenc # D: avconv, ffmpeg, mplayer, ttaenc TTA = ttaenc,ttaenc # WV (WAVPACK) # # E: avconv, ffmpeg, wavpack # D: avconv, ffmpeg, mplayer, wvunpack WV = wavpack,wvunpack pacpl-code/Makefile.am0000664000175100017510000001036714010535123014154 0ustar viriivirii# Perl Audio Converter # # Copyright (C) 2005-2021 Philip Lyons (vorzox@gmail.com) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ ACLOCAL_M4 = ./aclocal.m4 # # Modules & Documentation # DOCS = INSTALL README AUTHORS TODO NEWS ChangeLog COPYING LANG_MODS = po/* EXTRAS = extra/* # # Plugin directories # NAUTILUS_PLUGIN_DIR = plugins/gnome/nautilus NEMO_PLUGIN_DIR = plugins/gnome/nemo KDE_PLUGIN_DIR = plugins/kde # # Default KDE directory # DESTDIR = KDEDIR = /usr GNOMEDIR = /usr # # Target KDE directories # KDE_INSTALL_DIR = $(DESTDIR)$(KDEDIR)/share/kde4/services NAUTILUS_INSTALL_DIR = $(DESTDIR)$(HOME)/.local/share/nautilus/scripts NEMO_INSTALL_DIR = $(DESTDIR)$(GNOMEDIR)/share/nemo/actions ICON_DIR = $(DESTDIR)$(GNOMEDIR)/share/icons # # Compiler tools definitions... # POD2MAN = @POD2MAN@ POD2HTML = @POD2HTML@ GZIP = @GZIP@ RM = @RM@ -f SHELL = /bin/sh # # Configuration files directories and other # CONF_DIR = $(DESTDIR)$(sysconfdir)/$(PACKAGE_NAME) PO_DIR = $(DESTDIR)$(pkgdatadir)/locale MOD_DIR = $(CONF_DIR)/modules DOC_DIR = $(DESTDIR)$(docdir) MAN_DIR = $(DESTDIR)$(mandir)/man1 EXTRA_DIR = $(CONF_DIR)/extra edit = sed \ -e 's|@pkgdatadir[@]|$(pkgdatadir)|g' \ -e 's|@sysconfdir[@]|$(sysconfdir)|g' all : pacpl.1.gz pacpl: pacpl.in Makefile rm -f $@ $@.tmp $(edit) '$@.in' >$@.tmp mv $@.tmp $@ chmod +x $@ pacpl.1.gz : pacpl $(POD2MAN) $< | $(GZIP) -9 > $@ touch $@ install: all main install-plugins main: $(INSTALL) -d $(DESTDIR)$(bindir) $(INSTALL) -d $(CONF_DIR) $(INSTALL) -d $(PO_DIR) $(INSTALL) -d $(MOD_DIR) $(INSTALL) -d $(MAN_DIR) $(INSTALL) -d $(DOC_DIR) $(INSTALL) -d $(EXTRA_DIR) $(INSTALL) pacpl $(DESTDIR)$(bindir) $(INSTALL_DATA) pacpl.conf codecs.conf pacpl.png $(CONF_DIR) $(INSTALL_DATA) $(LANG_MODS) $(PO_DIR) $(INSTALL_DATA) pacpl.1.gz $(MAN_DIR) $(INSTALL_DATA) $(DOCS) $(DOC_DIR) $(INSTALL_DATA) $(EXTRAS) $(EXTRA_DIR) install-plugins: if INSTALL_KDE $(INSTALL) -d $(KDE_INSTALL_DIR) $(INSTALL) $(KDE_PLUGIN_DIR)/PACPL-Konvert $(DESTDIR)$(bindir) $(INSTALL_DATA) $(KDE_PLUGIN_DIR)/pacpl.desktop $(KDE_INSTALL_DIR) sed -i 's/KDE_DIR = 0/KDE_DIR = 1/' $(CONF_DIR)/pacpl.conf sed -i 's/KDE_OPTS = 0/KDE_OPTS = 1/' $(CONF_DIR)/pacpl.conf endif if INSTALL_NAUTILUS $(INSTALL) -d $(NAUTILUS_INSTALL_DIR) $(INSTALL) $(NAUTILUS_PLUGIN_DIR)/PACPL-Convert $(NAUTILUS_INSTALL_DIR) endif if INSTALL_NEMO $(INSTALL) -d $(NEMO_INSTALL_DIR) $(INSTALL) $(NEMO_PLUGIN_DIR)/PACPL-Convert $(NEMO_INSTALL_DIR) $(INSTALL_DATA) $(NEMO_PLUGIN_DIR)/pacpl.nemo_action $(NEMO_INSTALL_DIR) $(INSTALL_DATA) $(NEMO_PLUGIN_DIR)/pacpl.png $(ICON_DIR) endif if ENABLE_GNOME_NAUTILUS sed -i 's/ZEN_DIR = 0/ZEN_DIR = 1/' $(CONF_DIR)/pacpl.conf sed -i 's/ZEN_OPTS = 0/ZEN_OPTS = 1/' $(CONF_DIR)/pacpl.conf endif if ENABLE_GNOME_NEMO sed -i 's/ZEN_DIR = 0/ZEN_DIR = 1/' $(CONF_DIR)/pacpl.conf sed -i 's/ZEN_OPTS = 0/ZEN_OPTS = 1/' $(CONF_DIR)/pacpl.conf endif clean: $(RM) pacpl.1.gz distclean: clean $(RM) config.log $(RM) config.status $(RM) Makefile $(RM) pacpl find . -name '*~' -exec $(RM) '{}' \; uninstall: uninstall-plugins $(RM) $(DESTDIR)$(bindir)/pacpl $(RM) $(MAN_DIR)/pacpl.1.gz $(RM) -r $(CONF_DIR)/pacpl $(RM) -r $(DOC_DIR)/pacpl $(RM) -r $(DESTDIR)$(pkgdatadir) uninstall-plugins: if INSTALL_KDE $(RM) $(KDE_INSTALL_DIR)/pacpl.desktop $(RM) $(DESTDIR)$(bindir)/PACPL-Konvert endif if INSTALL_NAUTILUS $(RM) $(NAUTILUS_INSTALL_DIR)/PACPL-Convert endif if INSTALL_NEMO $(RM) $(NEMO_INSTALL_DIR)/PACPL-Convert $(RM) $(NEMO_INSTALL_DIR)/pacpl.nemo_action $(RM) $(ICON_DIR)/pacpl.png endif pacpl-code/po/0000755000175100017510000000000013527600265012541 5ustar viriiviriipacpl-code/po/ca.po0000644000175100017510000001423013527600265013464 0ustar viriivirii############################################ # Català - Xavi (xavi13@gmail.com) ############################################ # # Translation Instructions: # # 1) only translate text after the = sign (translate the value not the key) # 2) make sure there is only one space between either side of the = sign # 3) be sure to include the language name, and your name/email at the top # 4) spell check # 5) please translate these instructions and include them with your lang.po # # You can submit your translations to vorzox@gmail.com ################## # Error messages # ################## error = error failed = failed: bad_input = format de destí no suportat. multi_out = --outfile no es pot utilitzar codificant múltiples fitxers. no_config = fitxer de configuració no trobat...utilitzant paràmetres per defecte. unk_encoder = selected encoder not valid for: unk_decoder = selected decoder not valid for: no_decoder = Avís: el següent fitxer no es pot decodificar: no_encoder = codificant 'per' el següent no està suportat: no_encode_app = could not find suitable application to encode: no_decode_app = could not find suitable application to decode: no_app = no puc trobar l'aplicació: no_outdir = el directori de sortida no existeix no_infile = el següent no és un fitxer o directori no_input = heu d'especificar almenys un fitxer d'entrada no_read_tag = no puc llegir etiqueta per: no_write_tag = no puc escriure etiqueta per: no_disc = no puc obrir el disc d'àudio: no_cddb = no puc trobar l'entrada cddb. utilitzeu la opció --nocddb. no_kdialog = no trobo kdialog. instal·leu el paquet kdebase. need_outdir = heu d'especificar un directori de sortida. encode_failed = codificació fallida amb codi de sortida: decode_failed = decodificació fallida amb codi de sortida: empty_dir = directori buit, proveu utilitzant la opció --recursive: opening_dir = no puc obrir el directori: opening_file = no puc obrir el fitxer: seek_help = vegeu 'pacpl --help' o 'pacpl --longhelp' per a la llista d'opcions. ########### # Notices # ########### converting = Convertint: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = Conversió finalitzada. removed_tmp = fitxer temporal esborrat: removed_src = fitxer original esborat: enc_fmts = formats de codificació: dec_fmts = formats de decodificació: tag_info = etiquetant informació per: write_tag_i = escribint informació d'etiqueta per: creating_dir = creant directori: imported = mòduls importats: debug = depuració: loaded_config = fitxer de configuració carregat: ripping_track = Extraient pista: total_converted = Total files converted: overwrite = fitxer de sortida existent. utiltzeu --overwrite per substituir el fitxer existent. show_encoders = encoders for show_decoders = decoders for ####################################### # user prompts for Konqueror & Dolphin # ####################################### gui_overwrite = sobreescriure fitxer de sortida si existeix? (1 = si, 0 = no) gui_bitrate = seleccioneu bitrate gui_freq = rati de mostreig d'àudio gui_chans = canals d'àudio gui_fcomp = nivell de compresió FLAC gui_acomp = nivell de compresió APE gui_oggqual = nivell de qualitat Ogg Vorbis gui_spxqual = nivell de qualitat speex gui_aacqual = nivell de qualitat AAC/MP4/M4A gui_mpcqual = nivell de qualitat Musepack gui_ofmode = mode de compresió OptimFrog gui_ofopt = nivell d'optimització OptimFrog gui_bratio = rati de pèrdua BONK gui_bquanl = rati de quantificació BONK gui_bpsize = mida de predicció BONK gui_outdir = Select output folder ################## # Help menu text # ################## to = format de destí recursive = converteix directori(s) recursivament preserve = preserva l'estructura de directoris formats = llista els formats codificació/decodificació suportats only = només converteix fitxers coincidents amb l'extensió keep = manté fitxers coincidents amb el format de destí jobs = number of simultaneous files to process help = aquest menú d'ajut longhelp = llista completa d'opcions version = mostra informació de versió update = check for newer version usage = ús: pacpl --to [fitxer(s)/directori(s)] defopts = turn off default encoder options (0) eopts = opcions de codificació proporcionades per l'usuari dopts = opcions de decodificació proporcionades per l'usuari nopts = opcions de normalització proporcionades per l'usuari outfile = nom de fitxer de sortida outdir = directori de sortida dryrun = no converteix fitxers overwrited = sobreescriu fitxer de destí normalize = normalitza fitxer wav abans de codificar delete = esborra fitxer origen després de la conversió encoder = specify an alternate encoder decoder = specify an alternate decoder verbose = mostra informació detallada user_opts = opcions d'usuari: enc_opts = opocions del codificador: bitrate = bitrate (def. 128) freq = freqüència d'àudio (def. 44100) channels = nombre de canals d'àudio (def. 2) effect = efecte sox (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = nivell de compresió flac/fla (def. 2) acomp = nivell de compresió ape (def. 3000) oggqual = nivell de qualitat ogg (def. 3) spxqual = nivell de qualitat spx (def. 8) aacqual = nivell de qualitat aac/mp4/m4a (def. 100) mpcqual = nivell de qualitat mpc/mpp (def. ràdio) ofmode = mode ofr/ofs (def. normal) ofopt = optimització ofr/ofs (def. ràpid) bratio = rati de pèrdua bonk (def. 2) bquanl = rati de quantficació bonk (def. 1.0) bpsize = mida de predicció bonk (def. 128) tag_opts = opcions d'etiquetatge: artist = estableix informació de l'artista title = estableix el títol track = estableix número de pista year = estableix any/data de l'àlbum/pista album = estableix informació del títol de l'àlbum genre = estableix el gènere comment = estableix comentaris taginfo = mostra informació de l'etiqueta del fitxer seleccionat tag_usage = ús de l'etiquetatge: papcl [fitxer(s)] rip_opts = opcions d'extracció: rip = extreu pistes separades per coma o totes nocddb = desactiva cddb noinput = desactiva cddb interactivament nscheme = esquema de nombrat cdinfo = mostra informació cddb del disc actual device = defecte = /dev/dvd rip_usage = ús de l'exractor: pacpl --rip [pista(es)/tot] --to pacpl-code/po/es.po0000644000175100017510000001437613527600265013523 0ustar viriivirii############################################ # Español - Antonio (ac_z01@yahoo.es) ############################################ # # Translation Instructions: # # 1) only translate text after the = sign (translate the value not the key) # 2) make sure there is only one space between either side of the = sign # 3) be sure to include the language name, and your name/email at the top # 4) spell check # 5) please translate these instructions and include them with your lang.po # # You can submit your translations to vorzox@gmail.com ################## # Error messages # ################## error = error failed = failed: bad_input = formato de destino no soportado. multi_out = --outfile no puede ser usado cuando se codifican varios ficheros. no_config = fichero de configuración no encontrado... usando parámetros por defecto. unk_encoder = selected encoder not valid for: unk_decoder = selected decoder not valid for: no_decoder = Aviso: el siguiente fichero no puede ser codificado: no_encoder = codificación de los siguientes 'para' no esta soportada: no_encode_app = could not find suitable application to encode: no_decode_app = could not find suitable application to decode: no_app = no encuentro la aplicación: no_outdir = directorio de salida no existe. no_infile = Lo siguiente no es un fichero o un directorio: no_input = Debe especificar al menos un archivo de entrada. no_read_tag = No se ha podido leer la etiqueta de: no_write_tag = No se ha podido escribir la etiqueta de: no_disc = No se puede abrir el disco de audio: no_cddb = no pudo encontrar la entrada cddb . Use la opción -- nocddb . no_kdialog = kdialog no se encuentra instalado. Instale el paquete kdebase. need_outdir = Debe especificar un directorio de salida. encode_failed = la codificación ha fallado con el estatus de salida: decode_failed = la decodificación ha fallado con el estatus de salida: empty_dir = directorio vacío, intente utilizar la opción --recursive opening_dir = no se puede abrir el directorio: opening_file = no se puede abrir el fichero: seek_help = use 'pacpl --help' o 'pacpl --longhelp' para la lista de opciones. ########### # Notices # ########### converting = Convirtiendo: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = Conversión completada. removed_tmp = eliminado fichero temporal: removed_src = eliminado el fichero origen: enc_fmts = formato de codificación: dec_fmts = formato de decodificación: tag_info = etiquetando información para: write_tag_i = escribiendo información de etiqueta para: creating_dir = creando directorio: imported = importando módulos: debug = depuración: loaded_config = cargando fichero de configuración: ripping_track = Extrayendo pista: total_converted = Total files converted: overwrite = el archivo de salida existe. use --overwrite para reemplazar este archivo. show_encoders = encoders for show_decoders = decoders for ####################################### # user prompts for Konqueror & Dolphin # ####################################### gui_overwrite = ¿sobreescribir el archivo de salida si existe? (1 = s1, 0 = no) gui_bitrate = selecciona bitrate gui_freq = ratio de muestreo de audio gui_chans = canales de audio gui_fcomp = nivel de compresión FLAC gui_acomp = nivel de compresión APE gui_oggqual = calidad de salida Ogg Vorbis gui_spxqual = speex quality level gui_aacqual = nivel de calidad AAC/MP4/M4A gui_mpcqual = nivel de calidad Musepack gui_ofmode = modo de compresión OptimFrog gui_ofopt = nivel de optimización OptimFrog gui_bratio = BONK downsampling ratio gui_bquanl = BONK quantanization level gui_bpsize = BONK predictor size gui_outdir = Select output folder ################## # Help menu text # ################## to = formato destino recursive = conversión recursiva de carpeta(s) preserve = preservar la estructura de directorio formats = lista de formatos codificación/decodificación only = sólo convertir los ficheros que coincidan con la extensión keep = mantener la correspondencia de formato destino de los ficheros. jobs = number of simultaneous files to process help = este es el menu de ayuda longhelp = lista completa de opciones version = ver información de la versión update = check for newer version usage = use: pacpl --to [archivo(s)/directorio(s)] defopts = turn off default encoder options (0) eopts = opciones de usuario para el codificador dopts = opciones de usuario para el decodificador nopts = user supplied normalize options outfile = nombre fichero de salida outdir = directorio de salida dryrun = no convertir archivos overwrited = sobreescribir archivo destino normalize = normalize wav file before encoding delete = Eliminar el fichero fuente después de la conversión encoder = specify an alternate encoder decoder = specify an alternate decoder verbose = mostrar información detallada user_opts = opciones de usuario: enc_opts = opciones de codificación: bitrate = bitrate (def. 128) freq = frecuencia audio (def. 44100) channels = Número de canales de audio (def. 2) effect = efectos de sox (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = nivel de compresión flac/fla (def. 2) acomp = nivel de compresión ape (def. 3000) oggqual = nivel de calidad ogg (def. 3) spxqual = nivel de calidad spx (def. 8) aacqual = nivel de calidad aac/mp4/m4a (def. 100) mpcqual = nivel de calidad mpc/mpp (def. radio) ofmode = modo ofr/ofs (def. normal) ofopt = optimización fr/ofsn (def. fast) bratio = bonk down sampling ratio (def. 2) bquanl = bonk quantization level (def. 1.0) bpsize = bonk predictor size (def. 128) tag_opts = opciones de etiqueta: artist = Establecer la información sobre el artista title = poner título track = poner numero a la pista year = poner año/fecha al álbum/pista album = poner información de álbum tÍtulo genre = poner género comment = poner comentarios taginfo = mostrar información de etiqueta para el fichero seleccionado tag_usage = usot de etiquetado: pacpl [archivo(s)] rip_opts = opciones de extracción: rip = extraer pistas separadas por comas o todo nocddb = Desactivar cddb noinput = Desactivar interactividad cddb nscheme = nombre de esquema cdinfo = Muestrala información cddb para el disco actual device = default = /dev/dvd rip_usage = uso de la extracción: pacpl --rip [pista(s)/all] --to pacpl-code/po/ru_RU.po0000644000175100017510000002315713527600265014145 0ustar viriivirii############################################ # Russian - Illarion Khapersky (larry-m@yandex.ru) ############################################ # # Инструкции по переводу: # # 1) переводите только текст, указанный после знака = (переводите значение, но не ключевое слово) # 2) убедитесь, что с каждой стороны знака "равно" только по одном пробелу. # 3) запишите имя перевода и ваше имя и адрес электронной почты в поле наверху на английском языке # 4) проверьте орфографию # 5) пожалуйста переведите эти инструкции и включите их в свой файл перевода # # Вы можете посылать ваши переводы по адресу: vorzox@gmail.com ################## # Error messages # ################## error = ошибка failed = конвертация не удалась: bad_input = выбранный формат не поддерживается. multi_out = --outfile не может быть использован для конвертирования нескольких файлов. no_config = файл конфигурации не найден...используются настройки по умолчанию. unk_encoder = выбранный кодировщик не подходит для: unk_decoder = выбранный декодер не подходит для: no_decoder = внимание: этот файл не может быть декодирован: no_encoder = кодирование в этом формате не поддерживается. no_encode_app = невозможно найти подходящее приложение для кодирования: no_decode_app = невозможно найти подходящее приложение для декодирования: no_app = невозможно найти приложение. no_outdir = директория вывода не существует. no_infile = введенные данные не являются файлом или директорией: no_input = требуется указать хотя бы один файл для конвертации. no_read_tag = невозможно прочитать тег из: no_write_tag = невозможно записать тег в: no_disc = нет доступа к аудио диску: no_cddb = не найдена запись cddb. используйте --nocddb в командной строке. no_kdialog = kdialog не найден. установите пакет kdebase. need_outdir = нужно указать директорию вывода. encode_failed = ошибка кодирования: decode_failed = ошибка декодирования: empty_dir = директория пуста, воспользуйтесь --recursive в командной строке. opening_dir = невозможно открыть директорию: opening_file = невозможно открыть файл: seek_help = наберите 'pacpl --help' или 'pacpl --longhelp' для списка опций в командной строке. ########### # Notices # ########### converting = Конвертируется: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = Конвертирование завершено. removed_tmp = удален временный файл: removed_src = удален исходный файл: enc_fmts = форматы кодирования: dec_fmts = форматы декодирования: tag_info = чтение тега: write_tag_i = запись тега: creating_dir = создание директории: imported = подключенные модули: debug = debug: loaded_config = загружен конфигурационный файл: ripping_track = копирование трека: total_converted = общее количество конвертированных файлов: overwrite = файл с таким именем уже существует. используйте --overwrite, чтобы заменить этот файл. show_encoders = кодировщики для show_decoders = декодеры для ####################################### # user prompts for Konqueror & Dolphin # ####################################### gui_overwrite = переписать, если файл уже существует? (1 = да, 0 = нет) gui_bitrate = битрейт gui_freq = частота семплирования gui_chans = количество аудио каналов gui_fcomp = уровень сжатия FLAC gui_acomp = уровень сжатия APE gui_oggqual = уровень качества Ogg Vorbis gui_spxqual = уровень качества speex gui_aacqual = уровень качества AAC/MP4/M4A gui_mpcqual = уровень качества Musepack gui_ofmode = метод сжатия OptimFrog gui_ofopt = уровень сжатия OptimFrog gui_bratio = уровень субдискретизации BONK gui_bquanl = уровень квантования BONK gui_bpsize = размер опережающего чтения BONK gui_outdir = Select output folder ################## # Help menu text # ################## to = формат выходного файла recursive = рекурсивно конвертировать файлы в папках preserve = сохранять структуру папки formats = вывести список поддерживаемых форматов only = конвертировать файлы только с указанным расширением keep = не трогать файлы того же типа, как и выходной формат jobs = number of simultaneous files to process help = вызвать эту справку longhelp = полный список опций version = вывести информацию о версии программы update = check for newer version usage = командная строка: pacpl --to <формат> <настройки> [файл(ы)/каталог(и)] defopts = отключить настройки кодировщика, указанные по умолчанию (0) eopts = настройки кодирования, напрямую передаваемые в программу-кодировщик dopts = настройки декодирования, напрямую передаваемые в программу-кодировщик nopts = настройки нормализации, указываемые пользователем outfile = имя целевого файла outdir = имя целевого каталога dryrun = тестовый режим, файлы не конвертируются overwrited = переписать целевой файл normalize = нормализовать wav файл перед кодированием delete = удалить исходный файл после конвертации encoder = использовать другой кодировщик decoder = использовать другой декодер verbose = показывать дополнительную информацию user_opts = пользовательские настройки enc_opts = настройки кодировщика: bitrate = битрейт (по умол. 128) freq = частота сэмплирования (по умол. 44100) channels = количество аудио каналов (по умол. 2) effect = эффект sox (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = уровень сжатия flac/fla (по умол. 2) acomp = уровень сжатия ape (по умол. 3000) oggqual = уровень качества ogg (по умол. 3) spxqual = уровень качества spx (по умол. 8) aacqual = уровень качества aac/mp4/m4a (по умол. 100) mpcqual = уровень качества mpc/mpp (по умол. radio) ofmode = режим ofr/ofs (по умол. normal) ofopt = оптимизация ofr/ofs (по умол. fast) bratio = уровень субдискретизации (down-sampling) bonk (по умол. 2) bquanl = уровень квантования bonk (по умол. 1.0) bpsize = размер опережающего чтения bonk (по умол. 128) tag_opts = опции тегов: artist = записать информацию об исполнителе title = записать название произведения track = записать номер трека year = записать год/дату альбома/трека album = записать название альбома genre = записать жанр comment = записать комментарии taginfo = показать теги в указанном файле tag_usage = пример записи тегов: pacpl <опции> [файл(ы)] rip_opts = настройки копирования с диска: rip = копировать треки, разделенные запятой или все nocddb = отключить cddb noinput = не связываться с cddb nscheme = схема именования файлов cdinfo = показать информацию из cddb по этому диску device = устройство по умолчанию = /dev/dvd rip_usage = пример копирования треков: pacpl --rip [трек(и)/все треки] --to <формат> <опции> pacpl-code/po/it_IT.po0000644000175100017510000001434313527600265014116 0ustar viriivirii############################################ # Italian - Mastermind-X (mastermind.x11@gmail.com) ############################################ # # Translation Instructions: # # 1) only translate text after the = sign (translate the value not the key) # 2) make sure there is only one space between either side of the = sign # 3) be sure to include the language name, and your name/email at the top # 4) spell check # 5) please translate these instructions and include them with your lang.po # # You can submit your translations to vorzox@gmail.com ################## # Error messages # ################## error = errore failed = fallito: bad_input = formato di destinazione non supportato. multi_out = --outfile non può essere usato nella codifica di file multipli. no_config = file di configurazione non trovato ...uso le impostazioni di default. unk_encoder = l'encoder selezionato non è valido per: unk_decoder = l'decoder selezionato non è valido per: no_decoder = attenzione: il seguente file non può essere decodificato: no_encoder = l'encoding nel seguente formato non è supportato: no_encode_app = impossibile trovare un applicazione adatta alla codifica: no_decode_app = impossibile trovare un applicazione adatta alla decodifica: no_app = impossibile trovare l'applicazione: no_outdir = la cartella di output non esiste. no_infile = il seguente non è ne un file ne una cartella: no_input = devi specificare almeno un file di input. no_read_tag = impossibile leggere il tag per: no_write_tag = impossibile scrivere il tag per: no_disc = impossibile aprire il cd audio: no_cddb = impossibile trovare la voce cddb. usa l'opzione --nocddb. no_kdialog = kdialog non trovato. installa il pacchetto kdebase. need_outdir = devi specificare una cartella di output. encode_failed = codifica fallita con exit status: decode_failed = decodifica fallita con exit status: empty_dir = cartella vuota, prova usando l'opzione --recursive: opening_dir = impossibile aprire la cartella: opening_file = impossibile aprire il file: seek_help = vedi 'pacpl --help' o 'pacpl --longhelp' per una lista di opzioni. ########### # Notices # ########### converting = Convertendo: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = ..fatto. removed_tmp = rimossi i file temporanei: removed_src = rimossi i file sorgente: enc_fmts = formati di codifica: dec_fmts = formati di decodifica: tag_info = informazioni di tagging per: write_tag_i = scrittura delle informazioni di tag per: creating_dir = creando la cartella: imported = moduli importati: debug = debug: loaded_config = file di configurazione caricato: ripping_track = Acquisendo la traccia: total_converted = Totale die files convertiti: overwrite = il file di output esiste. usa --overwrite per sovrascrivere il file esistente. show_encoders = encoders per show_decoders = decoders per ####################################### # user prompts for Konqueror & Dolphin # ####################################### gui_overwrite = sovrascrivi il file di output se esiste? (1 = si, 0 = no) gui_bitrate = seleziona il bitrate gui_freq = frequenza di campionamento gui_chans = canali audio gui_fcomp = FLAC: livello di compressione gui_acomp = APE: livello di compressione gui_oggqual = Ogg Vorbis: livello di qualità gui_spxqual = speex: livello di qualità gui_aacqual = AAC/MP4/M4A: livello di qualità gui_mpcqual = Musepack: livello di qualità gui_ofmode = OptimFrog: modalità di compressione gui_ofopt = OptimFrog: livello di ottimizzazione gui_bratio = BONK: rateo di downsapling gui_bquanl = BONK: livello di quantizzazione gui_bpsize = BONK: dimensione del predittore gui_outdir = Select output folder ################## # Help menu text # ################## to = formato di destinazione recursive = converti ricorsivamente le cartelle preserve = preserva la struttura delle cartelle formats = lista dei formati di codifica/decodifica supportati only = converti solo i file con l'estensione corrispondente keep = mantieni i files con formato corrispondente a quello di destinazione jobs = number of simultaneous files to process help = questo help menu longhelp = lista completa delle opzioni version = mostra informazioni di versione update = check for newer version usage = Uso: pacpl --to [files/cartelle] eopts = opzioni di codifica fornite dall'utente dopts = opzioni di decodifica fornite dall'utente nopts = opzioni di normalizzazione fornite dall'utente outfile = nome del file di output outdir = cartella di output dryrun = non convertire i files overwrited = sovrascrivi i file di destinazione normalize = normalizza il file wav prima della codifica delete = elimina il file sorgente dopo la conversione encoder = specifica un encoder alternativo decoder = specifica un decoder alternativo verbose = mostra informazioni dettagliate user_opts = opzioni utente: enc_opts = opzioni di codifica: bitrate = bitrate (def. 128) freq = frequenza audio (def. 44100) channels = numero di canali audio (def. 2) effect = effetti sox (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = livello di compressione flac/fla (def. 2) acomp = livello di compressione ape (def. 3000) oggqual = livello di qualità ogg (def. 3) spxqual = livello di qualità spx (def. 8) aacqual = livello di qualità aac/mp4/m4a (def. 100) mpcqual = livello di qualità mpc/mpp (def. radio) ofmode = modalità di compressione ofr/ofs (def. normal) ofopt = livello di ottimizzazione ofr/ofs (def. fast) bratio = rateo di downsampling bonk (def. 2) bquanl = livello di quantizzazione bonk (def. 1.0) bpsize = Dimensione del predittore bonk (def. 128) tag_opts = opzioni di tagging: artist = imposta informazioni artista title = imposta titolo track = imposta numero traccia year = imposta anno/data del album/traccia album = imposta informazioni titolo dell'album genre = imposta genere comment = imposta commenti taginfo = mostra informazioni di tagging del file selezionato tag_usage = uso del tagging: pacpl [file(s)] rip_opts = opzioni di acquisizione: rip = rip tracks separated by comma or all nocddb = disabilita cddb noinput = disabilita interazione cddb nscheme = schema di rinominazione cdinfo = mostra le informazioni cddb per il seguente disco device = default = /dev/dvd rip_usage = uso in acquisizione: pacpl --rip [traccia(e)/all] --to pacpl-code/po/ro.po0000644000175100017510000001433713527600265013531 0ustar viriivirii############################################ # Romana - Sabadac Petru-Gabriel (the_l0st_treasure@yahoo.com) ############################################ # # Translation Instructions: # # 1) only translate text after the = sign (translate the value not the key) # 2) make sure there is only one space between either side of the = sign # 3) be sure to include the language name, and your name/email at the top # 4) spell check # 5) please translate these instructions and include them with your lang.po # # You can submit your translations to vorzox@gmail.com ################## # Error messages # ################## error = eroare failed = esuat: bad_input = formatul de destinatie nu este suportat. multi_out = optiunea --outfile nu poate fi folosita la codarea mai multor fisiere. no_config = fisierul de configurare nu a fost gasit...utilizam setarile implicite. unk_encoder = encoderul selectat nu este valid pentru: unk_decoder = decoderul selectat nu este valid pentru: no_decoder = avertisment: urmatorul fisier nu a putut fi decodat: no_encoder = codificare 'la' urmatorul tip de fisiere nu este suportata: no_encode_app = nu am putut gasi o aplicatie potrivita pentru a codifica: no_decode_app = nu am putut gasi o aplicatie potrivita pentru a decodifica: no_app = nu am putut gasi aplicatia: no_outdir = directorul de iesire nu exista. no_infile = urmatorul nu este un fisier sau director: no_input = trebuie sa specifici cel putin un fisier de intrare. no_read_tag = nu am putut citi tag-ul pentru: no_write_tag = nu am putut scrie tag-ul pentru: no_disc = nu am putut deschide CD-ul audio: no_cddb = nu am putut gasi intrarea cddb. folositi optiunea --nocddb. no_kdialog = kdialog nu a fost gasit. instalati pachetul kdebase. need_outdir = trebuie sa specifici un director de iesire. encode_failed = codarea a esuat cu mesajul: decode_failed = decodarea a esuat cu mesajul: empty_dir = directorul este gol, incearca sa folosesti optiunea --recursive: opening_dir = nu am putut deschide directorul: opening_file = nu am putut deschide fisierul: seek_help = vezi 'pacpl --help' sau 'pacpl --longhelp' pentru o lista de optiuni. ########### # Notices # ########### converting = Convertim: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = ..executat. removed_tmp = sters fisierul temporar: removed_src = sters sursa fisierului: enc_fmts = formate de codare: dec_fmts = formate de decodare: tag_info = informatia tag-ului pentru: write_tag_i = scrie informatia tag-ului pentru: creating_dir = creeaza directorul: imported = importa module: debug = depaneaza: loaded_config = fisier de configuratie incarcat: ripping_track = copiem track-uri: total_converted = nr. total de fisiere transformate: overwrite = fisierul de iesire exista deja. foloseste --overwrite pentru a inlocui fisierul existent. show_encoders = encoderurile pentru show_decoders = decoderurile pentru ####################################### # user prompts for Konqueror & Dolphin # ####################################### gui_overwrite = suprascrie fisierul de iesire daca el exista? (1 = da, 0 = nu) gui_bitrate = selecteaza rata de biti gui_freq = rata audio simpla gui_chans = canale audio gui_fcomp = nivel de compresie FLAC gui_acomp = nivel de compresie APE gui_oggqual = nivel de calitate Ogg Vorbis gui_spxqual = nivel de calitate speex gui_aacqual = nivel de calitate AAC/MP4/M4A gui_mpcqual = nivel de calitate Musepack gui_ofmode = mod de compresie OptimFrog gui_ofopt = nivel de optimizare OptimFrog gui_bratio = BONK downsampling ratio gui_bquanl = BONK quantanization level gui_bpsize = aproximarea dimensiunii cu BONK gui_outdir = Select output folder ################## # Help menu text # ################## to = formatul de destinatie recursive = transforma directorul/directoarele recursiv preserve = conserva structura directorului formats = lista cu formatele suportate de codare/decodare only = converteste doar fisiere cu extensia keep = pastreaza fisierele cu extensia formatului de destinatie jobs = number of simultaneous files to process help = acest meniu de ajutor longhelp = lista completa de optiuni version = afiseaza informatii despre versiune update = check for newer version usage = utilizare: pacpl --to [fisier(e)/director(directoare)] eopts = utilizatorul furnizeaza optiunile encoderului dopts = utilizatorul furnizeaza optiunile decoderului nopts = utilizatorul furnizeaza optiunile de normalizare outfile = numele fisierului de iesire outdir = numele directorului de iesire dryrun = nu converti fisierele overwrited = suprascrie fisierul de destinatie normalize = normalizeaza fisierul wav inainte de a-l coda delete = sterge fisierul-sursa dupa conversie encoder = specifica un encoder alternativ decoder = specifica un decoder alternativ verbose = arata informatii detaliate user_opts = optiunile utilizatorului: enc_opts = optiunile encoderului: bitrate = rata de biti (implicit. 128) freq = frectenva audio (imp. 44100) channels = numarul de canale audio (imp. 2) effect = efectul sox (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = nivel de compresie flac/fla (imp. 2) acomp = nivel de compresie ape (imp. 3000) oggqual = nivel de calitate ogg (imp. 3) spxqual = nivel de calitate spx (imp. 8) aacqual = nivel de calitate aac/mp4/m4a (imp. 100) mpcqual = nivel de calitate mpc/mpp (imp. radio) ofmode = modul ofr/ofs (imp. normal) ofopt = optimizare ofr/ofs (imp. rapid) bratio = bonk down sampling ratio (imp. 2) bquanl = bonk quantization level (imp. 1.0) bpsize = aproximare de dimensiune cu bonk (imp. 128) tag_opts = optiuni de tag: artist = seteaza informatiile despre artist title = seteaza titlul track = seteaza numarul track-ului year = seteaza anul/data albumului/trackului album = seteaza informatiile despre titlul albumului genre = seteaza genul comment = seteaza comentariile taginfo = arata informatiile de tag pentru fisierul selectat tag_usage = utilizarea tagului: pacpl [fisier(e)] rip_opts = optiuni de copiere: rip = copie track-urile separate prin virgula sau toate nocddb = dezactiveaza cddb noinput = dezactiveaza interactivitatea cddb nscheme = denumim schema cdinfo = arata informatia cddb pentru discul curent device = implicit = /dev/dvd rip_usage = utilizarea lui rip: pacpl --rip [track(uri)/all] --to pacpl-code/po/tr.po0000644000175100017510000001413413527600265013531 0ustar viriivirii############################################ # Turkish - Cantek Cetin (circass@gmail.com) - Osman KARAGOZ (osmank3@gmail.com) # Codepage - UTF-8 ############################################ # # Translation Instructions: # # 1) only translate text after the = sign (translate the value not the key) # 2) make sure there is only one space between either side of the = sign # 3) be sure to include the language name, and your name/email at the top # 4) spell check # 5) please translate these instructions and include them with your lang.po # # You can submit your translations to vorzox@gmail.com ################## # Error messages # ################## error = hata failed = durdu: bad_input = kaynak biçimi desteklenmiyor. multi_out = --çoklu dosya çevirimi sırasında çıktı dosyası kullanılamaz. no_config = ayar dosyası bulunamadı...orjinal ayarlar kullanılıyor. unk_encoder = bunun için seçilen kodlayıcı bulunamadı: unk_decoder = bunun için seçilen kod okuyucu bulunamadı: no_decoder = uyarı: bu dosya uygun biçimde çevirilemedi: no_encoder = 'to' biçimin bu biçime çevirimi desteklenmiyor: no_encode_app = kodlama için uygun uygulama bulunamadı: no_decode_app = kod okuma için uygun uygulama bulunamadı: no_app = uygulama bulunamadı: no_outdir = çıktı dosyası yok. no_infile = bu bir dosya veya dizin değil: no_input = en az bir girdi dosyası belirlemelisiniz. no_read_tag = Dosya için etiket(tag) okunamadı: no_write_tag = Dosya için etiket(tag) yazılamadı: no_disc = Ses CD'si açılamadı: no_cddb = cddb girdisi bulunamadı.--nocddb seçeneğini kullanın. no_kdialog = kdialog bulunamadı. kde base paketini yükleyin. need_outdir = bir çıktı dizini belirtmelisiniz. encode_failed = çıkış durumunda kodlama durduruldu: decode_failed = çıkış durumunda kod okuma durduruldu: empty_dir = dizin boş, --recursive seçeneğini kullanmayı deneyin: opening_dir = dizin açılamadı: opening_file = dosya açılamadı: seek_help = seçenek listesi için 'pacpl --help' or 'pacpl --longhelp' komutlarını kullan. ########### # Notices # ########### converting = çeviriliyor: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = ..tamamlandı. removed_tmp = geçici dosya silindi: removed_src = kaynak dosya silindi: enc_fmts = kodlayıcı biçimleri: dec_fmts = kod okuyucu biçimleri: tag_info = dosya etiket(tag) bilgisi: write_tag_i = dosya için tag bilgisi yazılıyor: creating_dir = dizin oluşturuluyor: imported = eklenen modüller: debug = hata giderme: loaded_config = çağrılan ayar dosyası: ripping_track = Ses izleri kodlanıyor: total_converted = Toplam çevrilen dosya: overwrite = Bu isimde bir dosya var.üstüne yazmak için --overwrite komutunu kullan. show_encoders = kodlayıcılar show_decoders = kod okuyucular ####################################### # user prompts for Konqueror & Dolphin # ####################################### gui_overwrite = çıktı dosyası varsa üstüne yaz? (1 = evet, 0 = hayır) gui_bitrate = bitrate seç gui_freq = ses örnekleme oranı gui_chans = ses kanalları gui_fcomp = FLAC sıkıştırma seviyesi gui_acomp = APE sıkıştırma seviyesi gui_oggqual = Ogg Vorbis kalite seviyesi gui_spxqual = speex kalite seviyesi gui_aacqual = AAC/MP4/M4A kalite seviyesi gui_mpcqual = Musepack kalite seviyesi gui_ofmode = OptimFrog sıkıştırma modu gui_ofopt = OptimFrog optimizasyon seviyesi gui_bratio = BONK aşağı örnekleme oranı gui_bquanl = BONK quantanization seviyesi gui_bpsize = BONK predictor boyutu gui_outdir = Select output folder ################## # Help menu text # ################## to = çıktı biçimi recursive = dizinleri rekursif olarak �evir preserve = dizin yapısını koru formats = desteklenen kodlama/kod okuma biçimlerini listele only = sadece uzantıları eşleşen dosyaları çevir keep = keep files matching destination format jobs = number of simultaneous files to process help = yardım longhelp = tüm seçenek listesi version = versiyon bilgisini göster update = check for newer version usage = kullanım: pacpl --to [dosyalar/dizinler] orjopts = orjinal kodlayıcı ayarlarını kapat (0) eopts = kullanıcı tanımlı kodlayıcı seçenekleri dopts = kullanıcı tanımlı kod okuyucu seçenekleri nopts = user supplied normalize options outfile = çıktı dosya adı outdir = çıktı dizini dryrun = dosyaları çevirme overwrited = çıktı dosyasının üstüne yaz normalize = wav dosyasını kodlamadan önce normalle delete = çevirme tamamlandığında kaynak dosyayı sil encoder = alternatif kodlayıcı belirle decoder = alternatif kod okuyucu belirle verbose = detaylı bilgi göster user_opts = kullanıcı seçenekleri: enc_opts = kodlayıcı seçenekleri: bitrate = bitrate (orj. 128) freq = örnek oranı (orj. 44100) channels = ses kanal sayısı (orj. 2) effect = sox efekt (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = flac/fla sıkıştırma seviyesi (orj. 2) acomp = ape sıkıştırma seviyesi (orj. 3000) oggqual = ogg kalite seviyesi (orj. 3) spxqual = spx kalite seviyesi (orj. 8) aacqual = aac/mp4/m4a kalite seviyesi (orj. 100) mpcqual = mpc/mpp kalite seviyesi (orj. radio) ofmode = ofr/ofs mod (orj. normal) ofopt = ofr/ofs optimizasyon (orj. fast) bratio = bonk aşağı örnekleme oranı (orj. 2) bquanl = bonk quantization seviyesi (orj. 1.0) bpsize = bonk predictor boyutu (orj. 128) tag_opts = etiket(tag) seçenekleri: artist = sanatçı bilgisi gir title = başlık gir track = parça numarası gir year = albüm/parça yol/tarih ini gir album = album başlığını gir genre = tipini gir comment = yorumları gir taginfo = seçili dosya için etiket(tag) bilgilerini göster tag_usage = etiketleme(tagging) kullanım: pacpl [dosya(lar)] rip_opts = ses izleri kodlama seçenekleri: rip = virgül ile ayrılmış parçaların veya hepsinin ses izlerini kodla nocddb = cddb yi etkisiz kıl noinput = cddb interactivity i etkisiz kıl nscheme = isimlendirme şeması cdinfo = takılı disk için cddb bilgisini göster device = varsayılan = /dev/dvd rip_usage = ses izi kodlama kullanım: pacpl --rip [parça(lar)/all] --to pacpl-code/po/en_US.po0000644000175100017510000001305413527600265014115 0ustar viriivirii############################################ # English - Philip Lyons (vorzox@gmail.com) ############################################ # # Translation Instructions: # # 1) only translate text after the = sign (translate the value not the key) # 2) make sure there is only one space between either side of the = sign # 3) be sure to include the language name, and your name/email at the top # 4) spell check # 5) please translate these instructions and include them with your lang.po # # You can submit your translations to vorzox@gmail.com ################## # Error messages # ################## error = error failed = failed: bad_input = destination format not supported. multi_out = --outfile can not be used when encoding multiple files. no_config = configuration file not found...using default settings. unk_encoder = selected encoder not valid for: unk_decoder = selected decoder not valid for: no_decoder = warning: no decoder exists for file type: no_encoder = encoding 'to' the following is not supported: no_encode_app = could not find suitable application to encode: no_decode_app = could not find suitable application to decode: no_app = could not find application: no_outdir = output directory does not exist. no_infile = the following is not a file or directory: no_input = you must specify at least one input file. no_read_tag = could not read tag for: no_write_tag = could not write tag for: no_disc = unable to open audio disc: no_cddb = could not find cddb entry. use the --nocddb option. no_kdialog = kdialog not found. install kdebase package. need_outdir = you must specify an output directory. encode_failed = encode failed with exit status: decode_failed = decode failed with exit status: empty_dir = directory empty, try using the --recursive option: opening_dir = could not open directory: opening_file = could not open file: seek_help = see 'pacpl --help' or 'pacpl --longhelp' for a list of options. ########### # Notices # ########### converting = Converting: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = ..done. removed_tmp = removed temporary file: removed_src = removed source file: enc_fmts = encode formats: dec_fmts = decode formats: tag_info = tagging information for: write_tag_i = writing tag information for: creating_dir = creating directory: imported = imported modules: debug = debug: loaded_config = loaded configuration file: ripping_track = Ripping track: total_converted = Total files converted: overwrite = output file exists. use --overwrite to replace existing file. show_encoders = encoders for show_decoders = decoders for ####################################### # user prompts for Konqueror & Dolphin # ####################################### gui_overwrite = overwrite output file if it exists? (1 = yes, 0 = no) gui_bitrate = select bitrate gui_freq = audio sampling rate gui_chans = audio channels gui_fcomp = FLAC compression level gui_acomp = APE compression level gui_oggqual = Ogg Vorbis quality level gui_spxqual = speex quality level gui_aacqual = AAC/MP4/M4A quality level gui_mpcqual = Musepack quality level gui_ofmode = OptimFrog compression mode gui_ofopt = OptimFrog optimization level gui_bratio = BONK downsampling ratio gui_bquanl = BONK quantanization level gui_bpsize = BONK predictor size gui_outdir = Select output folder ################## # Help menu text # ################## to = destination format recursive = recursively convert directory(s) preserve = preserve directory structure formats = list supported encode/decode formats only = only convert files matching extension keep = keep files matching destination format help = this help menu jobs = number of simultaneous files to process longhelp = complete list of options version = display version information usage = usage: pacpl --to [file(s)/directory(s)] defopts = turn off default encoder options (0) eopts = user supplied encoder options dopts = user supplied decoder options nopts = user supplied normalize options outfile = output file name outdir = output directory dryrun = do not convert files overwrited = overwrite destination file normalize = normalize wav file before encoding delete = remove source file after conversion encoder = specify an alternate encoder decoder = specify an alternate decoder verbose = show detailed information user_opts = user options: enc_opts = encoder options: bitrate = bitrate (def. 128) freq = audio frequency (def. 44100) channels = number of audio channels (def. 2) effect = sox effect (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = flac/fla compression level (def. 2) acomp = ape compression level (def. 3000) oggqual = ogg quality level (def. 3) spxqual = spx quality level (def. 8) aacqual = aac/mp4/m4a quality level (def. 100) mpcqual = mpc/mpp quality level (def. radio) ofmode = ofr/ofs mode (def. normal) ofopt = ofr/ofs optimization (def. fast) bratio = bonk down sampling ratio (def. 2) bquanl = bonk quantization level (def. 1.0) bpsize = bonk predictor size (def. 128) tag_opts = tagging options: artist = set artist information title = set title track = set track number year = set year/date of the album/track album = set album title information genre = set genre comment = set comments taginfo = show tagging information for selected file tag_usage = tagging usage: pacpl [file(s)] rip_opts = ripping options: rip = rip tracks separated by comma or all nocddb = disable cddb noinput = disable cddb interactivity nscheme = naming scheme cdinfo = show cddb information for current disc device = default = /dev/dvd rip_usage = rip usage: pacpl --rip [track(s)/all] --to pacpl-code/po/fr_FR.po0000644000175100017510000001522713527600265014106 0ustar viriivirii##################################################### # Français - Guillaume LOYOT (gui41981@hotmail.com) # ##################################################### # # Instructions de traduction: # # 1) traduire uniquement le texte après le signe = (traduire la valeur et non la clé) # 2) s'assurer de ne laisser qu'un seul espace de part et d'autre du signe = # 3) s'assurer d'inclure le nom de la langue ainsi que votre nom/email au début de ce fichier # 4) vérifier la grammaire et la syntaxe # 5) s'il vous plait, veuillez traduire ces instructions et les inclure dans votre fichier langue.po # # Vous pouvez soumettre vos traductions à vorzox@gmail.com ##################### # Messages d'erreur # ##################### error = erreur failed = échec: bad_input = format de destination non supporté. multi_out = --outfile ne peut être utilisé lors de l'encodage multiple. no_config = fichier de configuration non trouvé... utilisation des paramètres par défaut. unk_encoder = type d'encodeur non valide pour: unk_decoder = type de décodeur non valide pour: no_decoder = Attention: ce fichier ne peut être converti: no_encoder = encoding 'to' cette option n'est pas supportée: no_encode_app = impossible de trouver l'application nécessaire à l'encodage: no_decode_app = impossible de trouver l'application nécessaire au décodage: no_app = impossible de trouver l'application: no_outdir = le répertoire de destination n'existe pas. no_infile = l'entrée suivante n'est ni un fichier ni un répertoire: no_input = vous devez spécifier au moins un fichier source. no_read_tag = lecture du tag impossible pour: no_write_tag = écriture du tag impossible pour: no_disc = impossible d'ouvrir le disque audio: no_cddb = impossible de trouver d'entrées cddb. Utiliser l'option --nocddb. no_kdialog = kdialog Introuvable. Installez le paquet kdebase. need_outdir = Vous devez spécifier un répertoire de destination. encode_failed = Erreur d'encodage avec le code de sortie: decode_failed = Erreur de décodage avec le code de sortie: empty_dir = répertoire vide, essayez avec l'option --recursive: opening_dir = impossible d'ouvrir le répertoire: opening_file = impossible d'ouvrir le fichier: seek_help = voir 'pacpl --help' ou 'pacpl --longhelp' pour une liste détaillée des options. ########### # Notices # ########### converting = Conversion: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = Conversion terminée. removed_tmp = suppression du fichier temporaire: removed_src = suppression du fichier source: enc_fmts = formats d'encodage: dec_fmts = formats de décodage: tag_info = informations sur les tags pour: write_tag_i = écriture des tags pour: creating_dir = création du répertoire: imported = modules importés: debug = débogage: loaded_config = fichier de configuration chargé: ripping_track = extraction de la piste: total_converted = Total des fichiers convertis: overwrite = le fichier de sortie existe. Utilisez --overwrite pour remplacer le fichier existant. show_encoders = encodeurs pour show_decoders = décodeurs pour ################################################## # affichages utilisateur pour Konqueror & Dolphin # ################################################## gui_overwrite = écraser le fichier de sortie si existant? (1 = oui, 0 = non) gui_bitrate = choisir le bitrate gui_freq = taux d'échantillonage audio gui_chans = cannaux audio channels gui_fcomp = niveau de compression FLAC gui_acomp = niveau de compression APE gui_oggqual = niveau de qualité Ogg Vorbis gui_spxqual = niveau de qualité speex gui_aacqual = niveau de qualité AAC/MP4/M4A gui_mpcqual = niveau de qualité Musepack gui_ofmode = mode de compression OptimFrog gui_ofopt = niveau d'optimisation OptimFrog gui_bratio = ratio d'échantillonage BONK gui_bquanl = niveau quantique de BONK gui_bpsize = taille du prédicat BONK gui_outdir = Select output folder ######################## # Texte du menu d'aide # ######################## to = format de destination recursive = répertoire(s) de conversion récursive preserve = respecte la structure des répertoires formats = liste les formats d'encodage/décodage supportés only = convertit uniquement les fichiers dont l'extension correspond keep = conserve les fichiers de destination dont le format correspond jobs = number of simultaneous files to process help = affiche ce menu d'aide longhelp = liste complète des options version = affiche les informations de version update = check for newer version usage = utilisation: pacpl --to [fichier(s)/répertoire(s)] defopts = turn off default encoder options (0) eopts = options utilisateur complémentaires d'encodage dopts = options utilisateur complémentaires de décodage nopts = options utilisateur complémentaires de normalisation outfile = nom de fichier de sortie outdir = répertoire de sortie dryrun = ne pas convertir les fichiers overwrited = écraser les fichiers de destination normalize = normalisation wave avant encodage delete = suppression du fichier source après conversion encoder = spécifie un encodeur alternatif decoder = spécifie un décodeur alternatif verbose = affiche les informations détaillées user_opts = options utilisateur: enc_opts = options d'encodage: bitrate = bitrate (def. 128) freq = fréquence audio (def. 44100) channels = nombre maximum de cannaux (def. 2) effect = effet sox (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = niveau de compression flac/fla (def. 2) acomp = niveau de compression ape (def. 3000) oggqual = niveau de qualité ogg (def. 3) spxqual = niveau de qualité spx (def. 8) aacqual = niveau de qualité aac/mp4/m4a (def. 100) mpcqual = niveau de qualité mpc/mpp (def. radio) ofmode = mode ofr/ofs (def. normal) ofopt = optimisation ofr/ofs (def. fast) bratio = ratio d'échantillonage bonk (def. 2) bquanl = niveau quantique de bonk (def. 1.0) bpsize = taille du prédicat bonk (def. 128) tag_opts = options de tag: artist = définit les informations sur l'artiste title = définit le titre track = définit le numéro de la piste year = définit l'année/la date de l'album/de la piste album = définit le titre de l'album genre = définit le genre comment = définit les commentaires taginfo = affiche les informations de tags pour le(s) fichier(s) sélectionné(s) tag_usage = utilisation des tags: pacpl [fichier(s)] rip_opts = options d'extraction: rip = extrait les pistes séparées par des virgules ou toutes (option all) nocddb = désactive cddb noinput = désactive cddb interaction nscheme = schéma de nommage cdinfo = affiche les informations cddb pour le disque courant device = défaut = /dev/dvd rip_usage = utilisation de l'extration audio: pacpl --rip [piste(s)/all] --to pacpl-code/po/et.po0000644000175100017510000001630213527600265013513 0ustar viriivirii################################################################## # pacpl translation for version 4.0.1 and newer # Estonian - Priit Jõerüüt, priit [ät] joeruut [dot] com # Codepage - UTF-8 # Estonian translation copyright - Priit Jõerüüt # Licence - see pacpl licence ################################################################## # # Translation Instructions: # # 1) only translate text after the = sign (translate the value not the key) # 2) make sure there is only one space between either side of the = sign # 3) be sure to include the language name, and your name/email at the top # 4) spell check # 5) please translate these instructions and include them with your lang.po # # You can submit your translations to vorzox@gmail.com ############################## # Error messages - Veateated # ############################## error = viga failed = toiming ei õnnestunud: bad_input = väljundvorming ei ole toetatud. multi_out = --outfile parameetrit (võtit) ei saa kasutada mitme faili kodeerimisel. no_config = Ei leidnud konfiguratsioonifaili... kasutan vaikeseadeid. unk_encoder = valitud kodeerija ei sobi: unk_decoder = valitud dekodeerija ei sobi: no_decoder = Hoiatus: järgnevat faili ei õnnestunud dekodeerida: no_encoder = Järgnevasse vormingusse kodeerimine ei ole toetatud: no_encode_app = ei leidnud kodeerimiseks sobilikku rakendust: no_decode_app = ei leidnud dekodeerimiseks sobilikku rakendust: no_app = Ei lednud rakendust või vajalikku teeki: no_outdir = väljundkataloogi ei ole olemas. no_infile = Ei suuda leida sellist faili või kataloogi (kindluse mõttes kasuta näiteks absoluutset failiteed): no_input = defineeritud peab olema vähemalt üks sisendfail. no_read_tag = Ei saanud lugeda järgnevat lipikut (tag): no_write_tag = Ei saanud kirjutada järgnevat lipikut (tag): no_disc = Ei leidnud CD-plaati: no_cddb = Ei leidnud selle plaadi kohta cddb (välise CD-andmebaasi) kirjeid. Kasuta --nocddb parameetrit (võtit). no_kdialog = Ei leidnud kdialog tarkvara. Paigalda kdebase pakk. need_outdir = Väljundkataloog peab olema kirjeldatud. encode_failed = Kodeerimine ebaõnnestus järgneva olekuteatega: decode_failed = Dekodeerimine ebaõnnestus järgneva olekuteatega: empty_dir = Kataloog oli tühi, proovi kasutada --recursive parameetrit (võtit): opening_dir = Ei saanud avada kataloogi: opening_file = Ei saanud avada faili: seek_help = Vaata lisateavet pacpl võimaluste kohta 'pacpl --help' või 'pacpl --longhelp' päringutega. #################### # Notices - Teated # #################### converting = Konverteerin: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = Konverteerimine lõpetatud. removed_tmp = Kustutasin ajutise faili: removed_src = Kustutasin lähtefaili: enc_fmts = kodeerimisvormingud: dec_fmts = dekodeerimisvormingud: tag_info = loen lipikut (tag): write_tag_i = Kirjutan lipikut (tag): creating_dir = Loon kataloogi: imported = Laetud moodulid: debug = Debug- ehk veaotsingu väljund: loaded_config = Laetud konfiguratsioonifail: ripping_track = CD pala failiks kopeerimine: total_converted = Konverteeritud faile kokku: overwrite = Väljundfail on juba olemas. Olemasoleva faili ülekirjutamiseks kasuta --overwrite parameetrit (võtit). show_encoders = kodeerijad show_decoders = dekodeerijad ############################################################################### # user prompts for Konqueror & Dolphin - Konqueror ja Dolphin liideste päringud # ############################################################################### gui_overwrite = kas kirjutan väljundfaili üle kui fail juba olemas on? (1 = jah, 0 = ei) gui_bitrate = vali bitikiirus gui_freq = audio sämplingusagedus gui_chans = audiokanaleid gui_fcomp = FLAC kompressioonitase gui_acomp = APE kompressioonitase gui_oggqual = Ogg Vorbis kvaliteeditase gui_spxqual = speex kvaliteeditase gui_aacqual = AAC/MP4/M4A kvaliteeditase gui_mpcqual = Musepack kvaliteeditase gui_ofmode = OptimFrog kompressioonirežiim gui_ofopt = OptimFrog optimiseerimistase gui_bratio = BONK sämplingu alandamise suhtarv gui_bquanl = BONK kvantisatsioonitase gui_bpsize = BONK ennustusarv gui_outdir = Select output folder ##################################### # Help menu text - Abiteabe tekstid # ##################################### to = väljundvorming recursive = konverteeri kataloog(e) rekursiivselt preserve = säilita kataloogide struktuur formats = loenda toetatud kodeerimis- ja dekodeerimisvormingud only = konverteeri vaid nimetatud laiendiga failid keep = jäta alles sihtvormingus failid jobs = number of simultaneous files to process help = käesolev abiteave longhelp = terviklik parameetrite loetelu version = näita tarkvara versiooni update = check for newer version usage = Õige kasutus on: pacpl --to [fail(id)/kataloog(id)] defopts = turn off default encoder options (0) eopts = kasutaja poolt määratud täiendavad suvandid (eelistused) kodeerimiseks dopts = kasutaja poolt määratud täiendavad suvandid (eelistused) dekodeerimiseks nopts = kasutaja määratud suvandid (eelistused) normaliseerimise jaoks outfile = väljundfaili nimi outdir = väljundkataloogi nimi dryrun = ära konverteri (kuiv trenn) overwrited = kirjuta väljundfail üle normalize = normaliseeri wav-fail enne kodeerimist delete = kustuta lähtefailid peale konveteerimist encoder = määratle alternatiivne kodeerija decoder = määratle alternatiivne dekodeerija verbose = näita programmi töö käigus detailset teavet tegevuse kohta user_opts = Kasutaja suvandid: enc_opts = Kodeerimisega seotud suvandid: bitrate = bitikiirus (vaikimisi 128) freq = audiosagedus (vaikimisi 44100) channels = audiokanalite arv (vaikimisi 2) effect = sox efekt (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = flac/fla kompressiooni tase (vaikimisi 2) acomp = ape kompressiooni tase (vaikimisi 3000) oggqual = ogg vorbis kvaliteeditase (vaikimisi 3) spxqual = spx kvaliteeditase (vaikimisi 8) aacqual = aac/mp4/m4a kvaliteeditase (vaikimisi 100) mpcqual = mpc/mpp kvaliteeditase (vaikimisi radio) ofmode = ofr/ofs viis (vaikimisi normal) ofopt = ofr/ofs optimisatsion (vaikimisi fast) bratio = bonk sämplingu alandamise suhtarv (vaikimisi 2) bquanl = bonk kvantisatsioonitase (vaikimisi 1.0) bpsize = bonk ennustusarv (vaikimisi 128) tag_opts = Lipikute (tag) kirjutamisega seotud suvandid: artist = määra esitaja title = määra loo pealkiri track = määra loo number year = määra albumi või loo aasta või kuupäev album = määra albumi pealkiri või nimetus genre = määra žanr comment = määra kommentaarid või märkused taginfo = näita valitud faili lipikuid (tag) tag_usage = Lipikute (tag) kuvamise ja määramise kasutus: pacpl [fail(id)] rip_opts = CD-plaadil asuvate lugude faili(de)ks kopeerimise suvandid: rip = kopeeri valitud plaadi lood (komadega eraldadtd lugude numbrid) või kõik plaadi lood nocddb = ära luba cddb-päringuid (välise CD-andmebaasi päringuid) noinput = ära luba cddb (välise CD-andmebaasi) interaktiivsust nscheme = reeglid mille alusel moodustada failide nimed cdinfo = näita selle plaadi cddb (välise CD-andmebaasi) teavet device = plaadimängija (vaikimisi /dev/dvd) rip_usage = Lugude CD-lt failiks kopeerimise kasutus: pacpl --rip [lugu(lood)/kõik (all)] --to pacpl-code/po/pl.po0000644000175100017510000001431213527600265013515 0ustar viriivirii############################################ # Polish - Michał Smoczyk (msmoczyk@wp.pl) ############################################ # # Instrukcje tłumaczenia: # # 1) tłumacz tylko tekst po znaku równości = (tłumacz tylko wartość, a nie klucz) # 2) upewnij się, że po obu stronach znaku równości jest tylko jedna spacja # 3) upewnij się, że podałeś nawzę języka i swoje dane (adres/e-mail) na górze pliku # 4) sprawdź pisownię # 5) proszę przetłumacz również te instrukcje i dołącz je do pliku lang.po # # Wyślij swoje tłumaczenie do vorzox@gmail.com ##################### # Komunikaty błędów # ##################### error = błąd failed = niepowodzenie: bad_input = format docelowy nie jest obsługiwany. multi_out = opcja --outfile nie może być użyta kiedy kodujesz wiele plików. no_config = nie znaleziono pliku konfiguracyjnego... użycie domyślnych ustawień. unk_encoder = wybrany koder nieodpowiedni dla: unk_decoder = wybrany dekoder nieodpowiedni dla: no_decoder = ostrzeżenie: następujący plik nie może być zdekodowany: no_encoder = kodowanie do wybranego formatu tego pliku/katalogu nie jest obługiwane: no_encode_app = nie można znaleźć odpowiedniego programu aby zakodować: no_decode_app = nie można znaleźć odpowiedniego programu aby zdekodować: no_app = nie można odnaleźć aplikacji: no_outdir = katalog wyjściowy nie istnieje. no_infile = nie jest to plik ani katalog: no_input = musisz podać co najmniej jeden plik wejściowy. no_read_tag = nie można odczytać taga dla: no_write_tag = nie można zapisać taga dla: no_disc = nie można otworzyć dysku audio: no_cddb = nie można odnaleźć wpisu cddb. użyj opcji --nocddb. no_kdialog = nie odnaleziono kdialog. zainstaluj pakiet kdebase. need_outdir = musisz podać katalog docelowy. encode_failed = kodowanie zakończone niepowodzeniem ze statusem: decode_failed = dekodowanie zakończone niepowodzeniem ze statusem: empty_dir = katalog jest pusty, spróbuj użyc opcji --recursive: opening_dir = nie można otworzyć katalogu: opening_file = nie można otworzyć pliku: seek_help = zobacz 'pacpl --help' lub 'pacpl --longhelp' w celu zapoznania się z listą opcji. ############## # Komunikaty # ############## converting = Konwertowanie: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = Konwersja zakończona. removed_tmp = usunięto plik tymczasowy: removed_src = usunięto plik źródłowy: enc_fmts = formaty kodowania: dec_fmts = formaty dekodowania: tag_info = informacja zawarta w tagach dla: write_tag_i = zapisywanie taga dla: creating_dir = tworzenie katalogu: imported = zaimportowane moduły: debug = debugowanie: loaded_config = załadowany plik konfiguracyjny: ripping_track = Zgrywanie ścieżki: total_converted = Łącznie przekonwertowanych plików: overwrite = plik wyjściowy istnieje. użyj opcji --overwrite aby zastąpić istniejący plik. show_encoders = kodery dla show_decoders = dekodery dla ###################################### # Zapytania dla Konquerora i Dolphina # ###################################### gui_overwrite = czy nadpisać plik wyjściowy jeśli istnieje? (1 = tak, 0 = nie) gui_bitrate = wybierz bitrate gui_freq = częstość próbkowania audio gui_chans = kanały audio gui_fcomp = poziom kompresji FLAC gui_acomp = poziom kompresji APE gui_oggqual = poziom jakości Ogg Vorbis gui_spxqual = poziom jakości speex gui_aacqual = poziom jakości AAC/MP4/M4A gui_mpcqual = poziom jakości Musepack gui_ofmode = tryb kompresji OptimFrog gui_ofopt = poziom optymalizacji OptimFrog gui_bratio = BONK downsampling ratio gui_bquanl = poziom BONK quantanization gui_bpsize = rozmiar BONK predictor gui_outdir = Select output folder ################# # Teksty pomocy # ################# to = format docelowy recursive = konwertuj rekursywnie katalog(i) preserve = zachowaj strukturę katalogu formats = wyświetl listę obsługiwanych formatów kodowania/dekodowania only = konwertuj tylko pliki z poddanym rozszerzeniem keep = zachowaj oryginalne pliki, nie koduj ich ponownie jobs = number of simultaneous files to process help = wyświetl to menu pomocy longhelp = lista wszystkich opcji version = wyświetl informację o wersji programu update = check for newer version usage = użycie: pacpl --to [plik(i)/katalog(i)] defopts = turn off default encoder options (0) eopts = opcje kodera użytkownika dopts = opcje dekodera użytkownika nopts = opcje normalizacji użytkownika outfile = nazwa pliku wyjściowego outdir = katalog docelowy dryrun = nie konwertuj plików overwrited = nadpisz plik docelowy normalize = zrormalizuj plik wav przed zakodowaniem delete = usuń plik źródłowy po konwersji encoder = podaj alternatywny koder decoder = podaj alternatywny dekoder verbose = pokaż szczegółowe informacje user_opts = opcje użytkownika: enc_opts = opcje kodowania: bitrate = bitrate (domyślnie 128) freq = częstotliwość audio (domyślnie 44100) channels = liczba kanałów audio (domyślnie 2) effect = efekt sox (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = poziom kompresji flac/fla (domyślnie 2) acomp = poziom kompresji ape (domyślnie 3000) oggqual = poziom jakości ogg (domyślnie 3) spxqual = poziom jakości spx (domyślnie 8) aacqual = poziom jakości aac/mp4/m4a (domyślnie 100) mpcqual = poziom jakości mpc/mpp (domyślnie radio) ofmode = tryb ofr/ofs (domyślnie normal) ofopt = optymalizacja ofr/ofs (domyślnie fast) bratio = bonk down sampling ratio (domyślnie 2) bquanl = poziom bonk quantization (domyślnie 1.0) bpsize = rozmiar bonk predictor (domyślnie 128) tag_opts = opcje tagowania: artist = ustaw informację o artyście title = ustaw tytuł track = ustaw numer ścieżki year = ustaw rok/datę albumu lub ścieżki album = ustaw tytuł albumu genre = ustaw rodzaj comment = ustaw komentarz taginfo = pokaż informację zawartą w tagach dla wybranego pliku tag_usage = tagowanie: pacpl [plik(i)] rip_opts = opcje zgrywania audio: rip = zgrywa ścieżki oddzielone przecinkiem lub wszystkie nocddb = wyłącz cddb noinput = wyłącz interaktywność cddb nscheme = schemat nazw cdinfo = pokaż informację cddb dla bieżącego dysku device = domyślnie = /dev/dvd rip_usage = zgrywanie audio: pacpl --rip [ścieżka(i)/all] --to pacpl-code/po/de.po0000644000175100017510000001425313527600265013476 0ustar viriivirii################################################### # Deutsch - Andreas Lang (andreas.lang@gmail.com) # ################################################### # # Übersetzungsanweisungen: # # 1) Nur der Text nach dem = Zeichen (übersetz den Wert und nicht den zugehörigen Schlüssel) # 2) stell sicher, dass auf jeder Seite des = genau ein Leerzeichen ist # 3) stell sicher, dass ganz oben, die Sprache, Dateiname sowie Emailadresse stehen # 4) Rechtschreibprüfung # 5) bitte übersetz diese Anweisung und benenne es in lang.po # # fertig, dann sende die Übersetzung an vorzox@gmail.com #################### # Fehler Meldungen # #################### error = Fehler failed = failed: bad_input = Zielformat wird nicht unterstützt multi_out = --outfile kann nicht genutzt werden, wenn mehre Dateien sind ausgewählt no_config = configuration file not found...using default settings. unk_encoder = selected encoder not valid for: unk_decoder = selected decoder not valid for: no_decoder = Warnung: die folgende Datei konnte nicht dekodiert werden no_encoder = Kodierung 'zu' dem Folgenden wird nicht unterstützt: no_encode_app = could not find suitable application to encode: no_decode_app = could not find suitable application to decode: no_app = konnte nicht die Anwendung finden: no_outdir = Ausgabeverzeichnis existiert nicht. no_infile = das Folgende ist keine Datei oder kein Verzeichnis: no_input = es muss mindestens eine Eingabedatei ausgewählt sein. no_read_tag = konnte die Bezeichnung (tag) nicht lesen von: no_write_tag = konnte die Bezeichnung (tag) nicht schreiben für: no_disc = konnte die CD nicht öffnen: no_cddb = konnte den cddb Eintrag nicht finden. Benutzt die --nocddb Option. no_kdialog = kdialog konnte nicht gefunden werden. Installiere das kdebase Paket. need_outdir = Das Ausgabeverzeichnis muss angegeben werden. encode_failed = Kodierung ist fehlgeschlagen mit dem Status: decode_failed = Dekodierung ist fehlgeschlagen mit dem Status: empty_dir = Verzeichnis ist leer, benutzt die --recursive Option: opening_dir = konnte nicht das Verzeichnis öffnen: opening_file = konnte nicht die Datei öffnen: seek_help = benutzt 'pacpl --help' oder 'pacpl --longhelp' für eine Auflistung der Optionen ############# # Meldungen # ############# converting = Konvertierung: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = Konvertierung fertig. removed_tmp = lösche temporäre Datei: removed_src = lösche quell Datei: enc_fmts = kodiere Format: dec_fmts = Dekodiere Format: tag_info = Bezeichnung für: write_tag_i = schreibe Bezeichnungen für: creating_dir = erzeuge Verzeichnis: imported = lade Module: debug = debug: loaded_config = loaded configuration file: ripping_track = Lese Track: total_converted = Total files converted: overwrite = Ausgabedatei existiert. Benutz --overwrite zum Überschreiben. show_encoders = encoders for show_decoders = decoders for ############################################# # Benutzer Kommandos für Konqueror & Dolphin # ############################################# gui_overwrite = Überschreibe Ausgabedatei wenn sie existiert? (1 = Ja, 0 = Nein) gui_bitrate = Wähle Bitrate gui_freq = Audio Samplingfrequenz gui_chans = Audio Kanäle gui_fcomp = FLAC Komprimierungsgrad gui_acomp = APE Komprimierungsgrad gui_oggqual = Ogg Vorbis Qualitätsgrad gui_spxqual = speex Qualitätsgrad gui_aacqual = AAC/MP4/M4A Qualitätsgrad gui_mpcqual = Musepack Qualitätsgrad gui_ofmode = OptimFrog Kompressionsmode gui_ofopt = OptimFrog Optimierungsgrad gui_bratio = BONK Verhältnis beim Heruntersampling gui_bquanl = BONK Quantisierung gui_bpsize = BONK Einflussgröße gui_outdir = Select output folder ############## # Hilfe Menü # ############## to = Zielformat recursive = Rekursive Konvertierung von Verzeichnis(sen) preserve = Einhalten der Verzeichnisstruktur formats = Liste von unterstützen Kodierung/Dekodierung Formaten only = nur konvertierte Dateianhänge stimmen überein keep = keep files matching destination format help = dieses Hilfsmenü jobs = number of simultaneous files to process longhelp = Komplette Liste der Optionen version = gib Informationen über die Version update = check for newer version usage = benutz: pacpl --to [Datei(en)/Verzeichnis(se)] defopts = turn off default encoder options (0) eopts = Benutzerspezifische Kodierungsoptionen dopts = Benutzerspezifische Dekodierungsoptionen nopts = user supplied normalize options outfile = Ausgabe Dateiname outdir = Ausgabeverzeichnis dryrun = nicht konvertierbare Dateien overwrited = überschreib Ausgabedatei normalize = normalize wav file before encoding delete = lösche Quelldateien nach der Konvertierung encoder = specify an alternate encoder decoder = specify an alternate decoder verbose = gib detaillierte Informationen user_opts = Benutzeroptionen enc_opts = Kodierungsoptionen: bitrate = Bitrate (Standard 128) freq = Audio Samplingfreqenz (Standard 44100) channels = Anzahl der Audio Kanäle (Standard 2) effect = sox Effekt (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = flac/fla Komprimierungsgrad (Standard 2) acomp = ape Komprimierungsgrad (Standard 3000) oggqual = ogg Qualitätsgrad (Standard. 3) spxqual = spx Qualitätsgrad (Standard 8) aacqual = aac/mp4/m4a Qualitätsgrad (Standard 100) mpcqual = mpc/mpp Qualitätsgrad (Standard radio) ofmode = ofr/ofs Mode (Standard normal) ofopt = ofr/ofs Optimierung (Standard fast) bratio = bonk Verhältnis beim Heruntersampling (Standard 2) bquanl = bonk Quantisierung (Standard 1.0) bpsize = bonk Einflüssgröße (Standard 128) tag_opts = Bezeihnungsoptionen: artist = setze Musiker Informationen title = setze Titel track = setze Track Nummer year = setze Jahr/Tag vom Album/Track album = setze Album Titel Informationen genre = setze Genre comment = setze Kommentare taginfo = zeige Bezeichnungsinformationen für ausgewählte Datei tag_usage = Bezeichnung nutze: pacpl [Datei(en)] rip_opts = Optionen beim Track lesen: rip = Lese track, getrennt durch Komma nocddb = deaktiviere cddb noinput = deaktiviere cddb interaktiv nscheme = Schema für die Namensgebung cdinfo = zeige cddb Informationen für aktuelle CD device = Standard = /dev/dvd rip_usage = lese: pacpl --rip [Track(s)/alle] --to pacpl-code/po/GR.po0000644000175100017510000002217613527600265013421 0ustar viriivirii############################################ # Greek/Hellenic - Apostolakos Evangelos (apostolakos.evangelos@gmail.com) ############################################ ################## # Error messages # ################## error = σφάλμα failed = απέτυχε: bad_input = η μορφή προέλευσης δεν υποστηρίζεται. multi_out = η επιλογή --outfile δεν μπορεί να χρησιμοποιηθεί για κωδικοποίηση πολλαπλών αρχείων. no_config = το αρχείο καταγραφής επιλογών δεν βρέθηκε...οι προκαθορισμένες επιλογές θα χρησιμοποιηθούν. unk_encoder = ο επιλεγμένος κωδικοποιητής δεν ισχύει για: unk_decoder = ο επιλεγμένος αποκωδικοποιητής δεν ισχύει για: no_decoder = προειδοποίηση: η αποκωδικοποίηση δεν ήταν δυνατή για το αρχείο: no_encoder = η κωδικοποίηση δεν υποστηρίζεται για: no_encode_app = δεν βρέθηκε κατάλληλη εφαρμογή για την κωδικοποίηση: no_decode_app = δεν βρέθηκε κατάλληλη εφαρμογή για την αποκωδικοποίηση: no_app = η εφαρμογή δεν βρέθηκε: no_outdir = ο φάκελος για την εξαγωγή δεν υπάρχει. no_infile = δεν είναι αρχείο ή φάκελος: no_input = πρέπει να καθοριστεί τουλάχιστον ένα αρχείο προέλευσης. no_read_tag = δεν μπόρεσε να γίνει ανάγνωση του tag για: no_write_tag = δεν μπόρεσε να γίνει καταγραφή tag για: no_disc = δεν βρέθηκε δίσκος ήχου: no_cddb = η καταγραφή cddb δεν βρέθηκε. χρησιμοποίησε την επιλογή --nocddb. no_kdialog = το kdialog δεν βρέθηκε. εγκατέστησε το kdebase package. need_outdir = πρέπει να καθοριστεί ένας φάκελος εξαγωγής. encode_failed = η κωδικοποίηση απέτυχε με την εξής κατάσταση: decode_failed = η αποδικοποίηση απέτυχε με την εξής κατάσταση: empty_dir = ο φάκελος είναι άδειος, δοκίμασε να χρησιμοποιήσεις την επιλογή --recursive: opening_dir = δεν ήταν δυνατό το άνοιγμα του φακέλου: opening_file = δεν ήταν δυνατό το άνοιγμα του αρχείου: seek_help = δες 'pacpl --help' ή 'pacpl --longhelp' για μία λίστα των επιλογών. ########### # Notices # ########### converting = Μετατρέπεται το: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = ..έγινε. removed_tmp = διαγράφηκε προσωρινό αρχείο : removed_src = το αρχείο προέλευσης διαγράφηκε: enc_fmts = μορφές κωδικοποίησης: dec_fmts = μορφές αποκωδικοποίησης: tag_info = πληροφορίες tag για: write_tag_i = γράφονται πληροφορίες tag για: creating_dir = δημιουργείται φάκελος: imported = εισάγωνται modules: debug = debug: loaded_config = το αρχείο καταγραφής επιλογών φορτώθηκε: ripping_track = Ripping το κομμάτι: total_converted = Σύνολο αρχείων που μετατράπηκαν: overwrite = το αρχείο προορισμού υπάρχει. χρησιμοποίησε την επιλογή --overwrite για την αντικατάσταση του υπάρχοντος αρχείου. show_encoders = κωδικοποιητήες για show_decoders = αποκωδικοποιητές για ####################################### # user prompts for Konqueror & Dolphin # ####################################### gui_overwrite = να αντικατασταθεί το αρχείο προορισμού αν υπάρχει;(1 = ναι, 0 = όχι) gui_bitrate = επέλεξε το bitrate gui_freq = sampling rate ήχου gui_chans = κανάλια ήχου gui_fcomp = επίπεδο συμπίεσης FLAC gui_acomp = επίπεδο συμπίεσης APE gui_oggqual = επίπεδο ποιότητας Ogg Vorbis gui_spxqual = επίπεδο ποιότητας speex gui_aacqual = επίπεδο ποιότητας AAC/MP4/M4A gui_mpcqual = επίπεδο ποιότητας Musepack gui_ofmode = λειτουργία συμπίεσης OptimFrog gui_ofopt = επίπεδο βελτιστοποίησης OptimFrog gui_bratio = BONK downsampling ratio gui_bquanl = επίπεδο quantanization BONK gui_bpsize = πρόβλεψη μεγέθους BONK gui_outdir = Select output folder ################## # Help menu text # ################## to = μορφή προορισμού recursive = αναδρομική μετατροπή φακέλου(ων) preserve = διατήρηση δομής φακέλου formats = εμφάνιση σε λίστα των υποστηριζόμενων μορφών κωδικοποιητών/αποκωδικοποιητών only = μετατροπή μόνο των αρχείων που ταιριάζουν με την επέκταση keep = διάτήρε τα αρχεία που ταιρίζουν με την μορφή προορισμού help = μενού βοήθειας jobs = number of simultaneous files to process longhelp = πλήρης λίστα επιλογών version = εμφάνιση πληροφοριών έκδοσης update = check for newer version usage = χρήση: pacpl --σε <μορφή> <επιλογές> [αρχείο(α)/φάκελος(οι)] eopts = επιλογές κωδικοποιητή παρεχόμενες από τον χρήστη dopts = επιλογές αποκωδικοποιητή παρεχόμενες από τον χρήστη nopts = επιλογές ομαλοποίησης παρεχόμενες από τον χρήστη outfile = όνομα αρχείου προορισμού outdir = φάκελος προορισμού dryrun = να μην γίνει μετατροπή των αρχείων overwrited = αντικατάσταση του αρχείου προορισμού normalize = ομαλοποίηση του αρχείου wav πριν την κωδικοποίηση delete = διαγραφή του αρχείου προέλευσης μετά την μετατροπή encoder = καθορισμός ενός εναλλακτικού κωδικοποιητή decoder = καθορισμός ενός εναλλακτικού αποκωδικοποιητή verbose = εμφάνιση λεπτομερών πληροφοριών user_opts = επιλογές χρήστη: enc_opts = επιλογές κωδικοποιητή: bitrate = bitrate (προεπιλεγμ. 128) freq = συχνότητα ηχου (προεπιλεγμ. 44100) channels = αριθμός καναλιών ήχου (προεπιλεγμ. 2) effect = εφέ sox (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = επίπεδο συμπίεσης flac/fla (προεπιλεγμ. 2) acomp = επίπεδο συμπίεσης ape (προεπιλεγμ. 3000) oggqual = επίπεδο ποιότητας ogg (προεπιλεγμ. 3) spxqual = επίπεδο ποιότητας spx (προεπιλεγμ. 8) aacqual = επίπεδο ποιότητας aac/mp4/m4a (προεπιλεγμ. 100) mpcqual = επίπεδο ποιότητας mpc/mpp (προεπιλεγμ. radio) ofmode = λειτουργία ofr/ofs (προεπιλεγμ. normal) ofopt = βελτιστοποίηση ofr/ofs (προεπιλεγμ. fast) bratio = σχέση bonk down sampling (προεπιλεγμ. 2) bquanl = επίπεδο quantization bonk (προεπιλεγμ. 1.0) bpsize = πρόβλεψη μεγέθους bonk (προεπιλεγμ. 128) tag_opts = επιλογές tagging: artist = καθορισμός πληροφοριών καλλιτέχνη title = καθορισμός τίτλου track = καθορισμός αριθμού κομματιού year = καθορισμούς χρονιάς/ημερομηνίας δίσκου/κομματιού album = καθορισμός πληροφοριών τίτλου δίσκου genre = καθορισμός φύλου comment = καθορισμός σχολίων taginfo = εμφάνιση πληροφοριών tagging για το επιλεγμένο αρχείο tag_usage = χρήση tagging: pacpl <επιλογές> [αρχείο(α)] rip_opts = επιλογές ripping: rip = rip τα κομμάτια χωρισμένα με κόμμα ή όλα nocddb = απενεργοποίηση cddb noinput = απενεργοποίηση διάδρασης cddb nscheme = ονομασία σχήαμτος cdinfo = εμφάνιση πληροφοριών cddb για τον συγκεκριμένο δίσκο device = προεπιλεγμένη = /dev/dvd rip_usage = χρήση rip: pacpl --rip [κομματι(α)/όλα] --σε <μορφή> <επιλογές> pacpl-code/po/zh_CN.po0000644000175100017510000001262713527600265014112 0ustar viriivirii############################################ # Chinese_Simplified - Ni Hui (shuizhuyuanluo@126.com) ############################################ # # 翻译介绍: # # 1) 只需翻译在 = 等号后面的文本(翻译值而不是键名称) # 2) 确定在 = 等号两边都只有一个空格 # 3) 确认在文件顶部包含语言名称,以及您的姓名/电子邮件地址 # 4) 拼写检查 # 5) 请翻译这段介绍并包含在您的 lang.po 中 # # 您可以将您的翻译提交到 vorzox@gmail.com ################## # 错误消息 # ################## error = 错误 failed = failed: bad_input = 目标格式不支持。 multi_out = 当编码多个文件时不能使用 --outfile。 no_config = 未找到配置文件...使用默认设置。 unk_encoder = selected encoder not valid for: unk_decoder = selected decoder not valid for: no_decoder = 警告:无法编码以下文件: no_encoder = 不支持编码“至”以下格式: no_encode_app = could not find suitable application to encode: no_decode_app = could not find suitable application to decode: no_app = 无法找到程序: no_outdir = 输出目录不存在。 no_infile = 以下不是一个文件或目录: no_input = 您必须至少指定一个输出文件。 no_read_tag = 无法读取标记: no_write_tag = 无法写入标记: no_disc = 无法打开音频碟片: no_cddb = 无法找到 cddb 条目。 使用 --nocddb 选项。 no_kdialog = 未找到 kdialog。 请安装 kdebase 软件包。 need_outdir = 您必须指定一个输出目录。 encode_failed = 编码失败,退出状态: decode_failed = 解码失败,退出状态: empty_dir = 目录为空,尝试使用 --recursive 选项: opening_dir = 无法打开目录: opening_file = 无法打开文件: seek_help = 参见“pacpl --help”或“pacpl --longhelp”以查看选项清单。 ########### # 通知 # ########### converting = 正在转换: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = 转换完成。 removed_tmp = 删除临时文件: removed_src = 删除源文件: enc_fmts = 编码格式: dec_fmts = 解码格式: tag_info = 附上标记信息: write_tag_i = 正在写入标记信息: creating_dir = 正在创建目录: imported = 导入的模块: debug = 调试: loaded_config = 装入的配置文件: ripping_track = 正在抓取音轨: total_converted = Total files converted: overwrite = 输出文件已存在。 使用 --overwrite 来替换存在的文件。 show_encoders = encoders for show_decoders = decoders for ####################################### # Konqueror 和 Dolphin 的用户提示符 # ####################################### gui_overwrite = 如果输出文件已存在是否覆盖?(1 = 是,0 = 否) gui_bitrate = 选择比特率 gui_freq = 音频采样率 gui_chans = 音频通道 gui_fcomp = FLAC 压缩级别 gui_acomp = APE 压缩级别 gui_oggqual = Ogg Vorbis 质量级别 gui_spxqual = speex 质量级别 gui_aacqual = AAC/MP4/M4A 质量级别 gui_mpcqual = Musepack 质量级别 gui_ofmode = OptimFrog 压缩模式 gui_ofopt = OptimFrog 最佳级别 gui_bratio = BONK 下载采样率 gui_bquanl = BONK 量化级别 gui_bpsize = BONK 预计大小 gui_outdir = Select output folder ################## # 帮助菜单文本 # ################## to = 目标格式 recursive = 递归转换目录 preserve = 保持目录结构 formats = 列出支持的编码/解码格式 only = 只转换匹配扩展名的文件 keep = 保持文件匹配目标格式 jobs = number of simultaneous files to process help = 本帮助菜单 longhelp = 完整的选项清单 version = 显示版本信息 update = check for newer version usage = 用法:pacpl --to <格式> <选项> [文件/目录] defopts = turn off default encoder options (0) eopts = 用户提供的编码选项 dopts = 用户提供的解码选项 nopts = user supplied normalize options outfile = 输出文件名称 outdir = 输出目录 dryrun = 不转换文件 overwrited = 覆盖目标文件 normalize = normalize wav file before encoding delete = 转换后删除源文件 encoder = specify an alternate encoder decoder = specify an alternate decoder verbose = 显示详细信息 user_opts = 用户选项: enc_opts = 编码选项: bitrate = 比特率 (默认:128) freq = 声频 (默认:44100) channels = 音频通道数 (默认:2) effect = sox 效果 (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = flac/fla 压缩级别 (默认:2) acomp = ape 压缩级别 (默认:3000) oggqual = ogg 质量级别 (默认:3) spxqual = spx 质量级别 (默认:8) aacqual = aac/mp4/m4a 质量级别 (默认:100) mpcqual = mpc/mpp 质量级别 (默认:radio) ofmode = ofr/ofs 模式 (默认:normal) ofopt = ofr/ofs 最佳 (默认:fast) bratio = bonk 下载采样率 (默认:2) bquanl = bonk 量化级别 (默认:1.0) bpsize = bonk 预计大小 (默认:128) tag_opts = 标记选项: artist = 设定艺术家信息 title = 设定标题 track = 设定音轨号 year = 设定专辑/音轨的年/日期 album = 设定专辑标题信息 genre = 设定流派 comment = 设定评论 taginfo = 显示选择文件的标记信息 tag_usage = 附上标记用法:pacpl <选项> [文件] rip_opts = 抓取选项: rip = 抓取以逗号分隔的音轨或者全部 nocddb = 禁用 cddb noinput = 禁用 cddb 交互 nscheme = 命名方案 cdinfo = 显示当前碟片的 cddb 信息 device = 默认 = /dev/dvd rip_usage = 抓取用法:pacpl --rip [音轨/全部] --to <格式> <选项>pacpl-code/po/pt.po0000644000175100017510000001475213527600265013535 0ustar viriivirii################################################################ # Portuguese (Portugal) - Evandro Alves (evandro.pa@gmail.com) # ################################################################ # # Intruções de tradução: # # 1) apenas traduzir texto a seguir ao sinal = (traduza o valor e não a chave) # 2) assegure-se de que existe apenas um espaço em ambos os lados do sinal = # 3) assegure-se de ter incluído o nome da linguagem, e o seu nome/email no topo # 4) verifique a ortografia # 5) pro favor traduza estas instruções e inclua-as com o seu ficheiro lang.po # # Pode submeter as suas traduções para vorzox@gmail.com ##################### # Mensagens de Erro # ##################### error = erro failed = failed: bad_input = formato de destino não suportado. multi_out = --outfile não pode ser usado aquando da codificação de multiplos ficheiros. no_config = configuration file not found...using default settings. unk_encoder = selected encoder not valid for: unk_decoder = selected decoder not valid for: no_decoder = aviso: o ficheiro seguinte não pode ser descodificado: no_encoder = não é suportada a codificação 'para' o seguinte: no_encode_app = could not find suitable application to encode: no_decode_app = could not find suitable application to decode: no_app = não é possível encontrar a aplicaçao: no_outdir = a directoria de saída não existe. no_infile = o seguinte não é um ficheiro ou directoria: no_input = tem de especificar pelo menos um ficheiro de entrada. no_read_tag = não é possível ler a etiqueta de: no_write_tag = não é possível escrever a etiqueta de: no_disc = não é possível abrir o disco de audio: no_cddb = não é possível encontrar a entrada cddb. use a opção --nocddb. no_kdialog = kdialog não encontrado. instale o pacote kdebase. need_outdir = tem que especificar um directoria de saída. encode_failed = a codificação falhou com o seguinte erro: decode_failed = a descodificação falhou com o seguinte erro: empty_dir = directoria vazia, experimente usar a opção --recursive: opening_dir = não é possível abrir a directoria: opening_file = não é possível abrir o ficheiro: seek_help = use 'pacpl --help' ou 'pacpl --longhelp' para apresentar a lista das opções. ######### # Notas # ######### converting = A converter: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = Conversão completa. removed_tmp = ficheiro temporário removido: removed_src = ficheiro de origem removido: enc_fmts = formatos de codificação: dec_fmts = formatos de descodificação: tag_info = informação de etiquetas de: write_tag_i = a gravar etiquetas de: creating_dir = a criar directoria: imported = módulos importados: debug = depuração: loaded_config = loaded configuration file: ripping_track = A extrair a pista: total_converted = Total files converted: overwrite = o ficheiro de saída já existe. use --overwrite para substituir ficheiros existentes. show_encoders = encoders for show_decoders = decoders for ################################################# # prompts de utilizador para Konqueror & Dolphin # ################################################# gui_overwrite = sobrescrever o ficheiro de saída se este já existir? (1 = sim, 0 = não) gui_bitrate = seleccione o bitrate gui_freq = frequências de amostragem do som gui_chans = canais do som gui_fcomp = nível de compressão FLAC gui_acomp = nível de compressão APE gui_oggqual = nível de qualidade OggVorbis gui_spxqual = nível de qualidade speex gui_aacqual = nível de qualidade AAC/MP4/M4A gui_mpcqual = nível de qualidade Musepack gui_ofmode = modo de compressão OptimFrog gui_ofopt = nível de optimização OptimFrog gui_bratio = relação de downsampling BONK gui_bquanl = nível de quantificação BONK gui_bpsize = tamanho do predictor BONK gui_outdir = Select output folder ###################### # Texto do menu help # ###################### to = formato do destino recursive = conversão recursiva de directoria(s) preserve = preserva da estrutura da directoria formats = lista formatos de codificação/descodificação suportados only = apenas converte ficheiros com a extensão indicada keep = manter os ficheiros correspondentes ao formato de destino jobs = number of simultaneous files to process help = este menu de ajuda longhelp = lista completa de opções version = mostra informação sobre a versão update = check for newer version usage = uso: pacpl --to [ficheiro(s)/directoria(s)] defopts = turn off default encoder options (0) eopts = opções de codificação indicados pelo utilizador dopts = opções de descodificação indicados pelo utilizador nopts = user supplied normalize options outfile = nome do ficheiro de saída outdir = directoria de saída dryrun = não converte ficheiros overwrited = sobrescrever ficheiro de destino normalize = normalize wav file before encoding delete = remover ficheiro de origem após a conversão encoder = specify an alternate encoder decoder = specify an alternate decoder verbose = mostrar informação detalhada user_opts = opções do utilizador: enc_opts = opções do codificador: bitrate = bitrate (def. 128) freq = frequência do som (def. 44100) channels = número de canais de som (def. 2) effect = efeito sox (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = nível de compressão flac/fla (def. 2) acomp = nível de compressão ape (def. 3000) oggqual = nível de qualidade ogg (def. 3) spxqual = nível de qualidade spx (def. 8) aacqual = nível de qualidade aac/mp4/m4a (def. 100) mpcqual = nível de qualidade mpc/mpp (def. radio) ofmode = modo ofr/ofs (def. normal) ofopt = optimização ofr/ofs (def. fast) bratio = nível de downsampling bonk (def. 2) bquanl = nível de quantificação bonk (def. 1.0) bpsize = tamanho do predictor bonk (def. 128) tag_opts = opções de etiquetas: artist = inserir informação do artista title = inserir título track = inserir número da pista year = inserir ano/data do album/pista album = inserir informação sobre o título do album genre = inserir género comment = inserir comentários taginfo = mostrar informação de etiqueta para o ficheiro seleccionado tag_usage = uso de etiquetas: pacpl [ficheiro(s)] rip_opts = opções de extracção: rip = extrar pistas separadas por vírgula ou all nocddb = desactivar cddb noinput = desactivar interactividade cddb nscheme = nome do esquema cdinfo = mostrar informação cddb do disco corrente device = default = /dev/dvd rip_usage = uso de estracção: pacpl --rip [pista(s)/all] --to pacpl-code/po/nl_NL.po0000644000175100017510000001372213527600265014110 0ustar viriivirii############################################ # Dutch - Sander Pientka (cumulus0007@gmail.com) ############################################ # # Translation Instructions: # # 1) only translate text after the = sign (translate the value not the key) # 2) make sure there is only one space between either side of the = sign # 3) be sure to include the language name, and your name/email at the top # 4) spell check # 5) please translate these instructions and include them with your lang.po # # You can submit your translations to vorzox@gmail.com ################## # Error messages # ################## error = fout failed = mislukt: bad_input = uitvoerformaat wordt niet ondersteund. multi_out = --outfile kan niet gebruikt worden bij het encoderen van meerdere bestanden. no_config = configuratiebestand niet gevonden...standaard instellingen gebruiken. unk_encoder = geselecteerde encoder is niet geldig voor: unk_decoder = geselecteerde decoder is niet geldig voor: no_decoder = waarschuwing: het volgende bestand kon niet gedecodeerd worden: no_encoder = naar het volgende encoderen wordt niet ondersteund: no_encode_app = kon geen geschikte toepassing vinden om te encoderen: no_decode_app = kon geen geschikte toepassing vinden om te decoderen: no_app = kon toepassing niet vinden: no_outdir = uitvoerlocatie bestaat niet. no_infile = het volgende is niet een bestand of map: no_input = ten minste één invoerbestand is vereist. no_read_tag = kon tag niet lezen van: no_write_tag = kon tag niet schrijven naar: no_disc = kan audioschijf niet openen: no_cddb = kon cddb-waarde niet vinden. gebruik de optie --nocddb. no_kdialog = kon kdialog niet vinden. installeer het pakket kdebase. need_outdir = een uitvoerlocatie is vereist. encode_failed = encoderen mislukte met afsluitstatus: decode_failed = decoderen mislukte met afsluitstatus:: empty_dir = locatie is leeg, probeer de optie --recursive option: opening_dir = kon locatie niet openen: opening_file = kon bestand niet openen: seek_help = zie 'pacpl --help' of 'pacpl --longhelp' voor een lijst met opties. ########### # Notices # ########### converting = Omzetten: up_to_date = is up to date: update_version = A newer version of Perl Audio Converter exists: conv_comp = ..klaar. removed_tmp = tijdelijk bestand verwijderd: removed_src = bronbestand verwijderd: enc_fmts = encodingsformaten: dec_fmts = encodingsformaten: tag_info = informatie taggen voor: write_tag_i = taginformatie schrijven voor: creating_dir = map maken: imported = geïmporteerde modules: debug = debug: loaded_config = configuratiebestand geladen: ripping_track = track rippen: total_converted = Totaal aantal tracks omgezet: overwrite = uitvoerbestand bestaat al. gebruik --overwrite om het bestaande bestand te vervangen. show_encoders = encoders voor show_decoders = decoders voor ####################################### # user prompts for Konqueror & Dolphin # ####################################### gui_overwrite = uitvoerbestand overschrijven als het al bestaat? (1 = ja, 0 = nee) gui_bitrate = selecteer bitrate gui_freq = audio sampling rate gui_chans = audiokanalen gui_fcomp = FLAC-compressieniveau gui_acomp = APE-compressieniveau gui_oggqual = Ogg Vorbis-kwaliteitsniveau gui_spxqual = speex-kwaliteitsniveau gui_aacqual = AAC/MP4/M4A-kwaliteitsniveau gui_mpcqual = Musepack-kwaliteitsniveau gui_ofmode = OptimFrog-compressiemodus gui_ofopt = OptimFrog-optimalisatieniveau gui_bratio = BONK-downsamplingverhouding gui_bquanl = BONK-kwantisatieniveau gui_bpsize = BONK-predictorgrootte gui_outdir = Select output folder ################## # Help menu text # ################## to = bestemmingsformaat recursive = mappen recursief omzetten preserve = mappenstructuur behouden formats = ondersteunde en/decodingformaten weergeven only = Alleen bestanden omzetten die overeenkomen met extensie keep = laat bestanden het bestemmingsformaat aanhouden jobs = number of simultaneous files to process help = dit hulpmenu longhelp = complete lijst van opties version = versie-informatie weergeven update = check for newer version usage = gebruik: pacpl --to [bestand(en)/map(pen)] eopts = encoderopties van gebruiker dopts = decoderopties van gebruiker nopts = normalisatieopties van gebruiker outfile = output file name outdir = output directory dryrun = bestanden niet daadwerkelijk omzetten overwrited = bestemmingsbestand overschrijven normalize = wav-bestand normaliseren na omzetten delete = bronbestand verwijderen na omzetten encoder = een alternatieve encoder opegeven decoder = een alternatieve decoder opegeven verbose = uitgebreide informatie weergeven user_opts = gebruikersopties: enc_opts = encoderopties: bitrate = bitrate (standaard: 128) freq = audiofrequentie (standaard: 44100) channels = aantal audiokanelen (standaard: 2) effect = sox-effect (aiff/au/snd/raw/voc/smp/avr/cdr) fcomp = flac/fla-compressieniveau (standaard: 2) acomp = ape-compressieniveau (standaard: 3000) oggqual = ogg-kwaliteitsniveau (standaard: 3) spxqual = spx-kwaliteitsniveau (standaard: 8) aacqual = aac/mp4/m4a-kwaliteitsniveau (standaard: 100) mpcqual = mpc/mpp-kwaliteitsniveau (standaard: radio) ofmode = ofr/ofs-modus (standaard: normaal) ofopt = ofr/ofs-optimalisatie (standaard: snel) bratio = bonk-downsamplingverhouding (standaard: 2) bquanl = bonk-quantisatieverhouding (standaard: 1.0) bpsize = bonk-predictorgrootte (standaard: 128) tag_opts = tagopties: artist = artiestinformatie instellen title = titel instellen track = tracknummer instellen year = jaar/datum van track/album instellen album = albumtitelinformatie instellen genre = genre instellen comment = commentaar instellen taginfo = taginformatie voor geselecteerd bestand weergeven tag_usage = taggebruik: pacpl [bestand(en)] rip_opts = ripopties: rip = rip tracks separated by comma or all nocddb = cddb uitschakelen noinput = cddb-interactiviteit uitschakelen nscheme = benoemingsschema cdinfo = cddb-informatie van huidige schijf weergeven device = standaard: = /dev/dvd rip_usage = ripgebruik: pacpl --rip [track(s)/alles] --to pacpl-code/pacpl.png0000644000175100017510000001243613527600265013736 0ustar viriiviriiPNG  IHDR00WIDATxZ{tյ9'C^$$  X"iŢV]PRo*ڋ꽮Zv-v)!U(! $@H&: [ΚYə!C(dp M^n݌MSJ'BŽBN+rڶ_W>YfMGII`MMܚ !8! |^w܉֥/@ pEyyH$@ P(`0G6А8~wl]bF!BA)\\!@޽{nݺvttFg̘bD"0 I À(DQhJ4L裏|>oܹ=so <0sPJi*⭭;۝VϚ5 DSJiTUU( ( @Q0i 1R)عs'_{?sw <RN+W^ooKjkkQQQ!(RJM!1UU*Ebt]렔 EQD2---hnnSL_|r! (xٶ]wucǎ窫L2  4M Mc >󞪪 u] J)CG<ϣ &8Bh*կ޼}&O<֥*s*2 2 !,N{7x▖gBmJ8l-BUUR:|>B^, cp]ę3g H(b8~ӟff ?NAu]-Ruw+&OǡHmC4\sqQlٲ#J19(*b18aH| {u֭XhTU?p?Al۶mϗUTVVz`0|>x<}{?>lRjjj0sLyxu%{[۶QSSX,L&qDZ|r444`ppBB!ZSS㕗߼lٲ|A)mo@!죏>w0.4ig@ l6p8UVK_٬<pR ,c !\b6c0sLCuA8ݻw/NR\Q&9x۷o[aD&!+WDmm-2 ƇQ&q 9c a@UU?y3 r9u}H(y˗㢋.pQrIǵW_}޶6S!87@x/~x"પq7ccc^u] qx%,8J)TUEOO8Ey q!p5`ttPUZMlZfՌ1^4g RqymT\\Md022ӧcɒ%r/H$QRGAUU^ErH&(..ƪU8# Ç|7A>m(..^I1'L 4M#Li+ rYA4Myq8l6{!%1L&9ڰo>[OLìYdP(Dwƍ1NB@!\b1A|8s N>S#c BTUU! ²,?q<Q{СC @UUf~$1L8QFuݹU<ضm쒒B!!gCGG,FFFև(  $C:طo?:(~l+XC]q-h1p,9}T*uNٴiPWWvڵ ,ۜsr9`um-ke,CEQ`vmD`jD&ĵlRċiW4 e!#̙3>5˿A~^PJIBRYvA 9rc!^qL%rΑd~r- <$F(>BB%# jBqbEQDkq/RO? `ܹaYl׮]2dI>*" Q#\E((>K Ѩ/.Dj&BߏH$˲`L8ccc(N:Շd`&<σii``D4C L\ŤI؈T*|!BH&0 \N6p]i5$cŊ~Ht: EQ`oe !HUUJKK?-P?mhoo Fq% ,!|8 @:(gQj(ػw/ad6mM  # J)K&ޏ~K/KKKK( FFFpq_}՘={]} !`۶5uݍAB)E0_{@94ݍ'Nz  cBӦMPey?(uwy'088P(T*UU*k?9Ji1u]XjJy0}]}:EA6+AJYtR<b8z( @ 9 )R Bix7q!躎2166&,MRTUU'R(nO#ɠ/F:F:?rmg1u]}˲|j*ݻ`R)>| .|!8?#2n&q߷ySNٳgK{/T*B8D` !k~c&N8+WOXp!"ɲ웷vۦ *hg|ZX<,^x٤I>3nMAQ^^.L"qL&Bd2SORQYY)DEE())DB2QTT$EII,4Me˖;ӛ1cz]wEƟn[,{MMMJ,"v:c(**Bmm-,X'Ob۶mB4KҩK]3o<{PUK.EuucvjM6lhe/8\%ݻwg3fXw}q~Qyftuu!HRqA?-%dC1)cԩhjjcmiiQZ[[W^ 6l,i%gH/}Xv]lݺu !܌>(++?fy9"͂sH$磱Q;v{V^/6l{Z~}q(߽L M zmmmXv===VSSs%KH}}=b/~H&]QB" )>44ߏ'M}O% 8Csx^9bn[lhiyy?Ϩ@MM 9-G__zzzi+VؿtRYs<3\.,Kp)(qΕ3˲F9::Z `( x<W% ^\>LӃ9?iZ:<7oW U~;z+ 0n܌&@ Bؘ BK(.sMιQ, )LA!Zp(s"8hٿo"KxEssq^'RZ+pΙ^8*FQ}!B^0 !\!Dp(yjgR9<Cᎌ8?O8=?J)˲ˉeY ߈qaXނ=UU]qopUUc _~g~gIENDB`pacpl-code/.git/0000775000175100017510000000000014010546243012757 5ustar viriiviriipacpl-code/.git/config0000664000175100017510000000041214010525071014140 0ustar viriivirii[core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true [remote "origin"] url = ssh://viiron@git.code.sf.net/p/pacpl/code fetch = +refs/heads/*:refs/remotes/origin/* [branch "master"] remote = origin merge = refs/heads/master pacpl-code/.git/branches/0000775000175100017510000000000014010522500014532 5ustar viriiviriipacpl-code/.git/HEAD0000664000175100017510000000002714010522500013370 0ustar viriiviriiref: refs/heads/master pacpl-code/.git/info/0000775000175100017510000000000014010522500013700 5ustar viriiviriipacpl-code/.git/info/exclude0000664000175100017510000000036014010522500015253 0ustar viriivirii# git ls-files --others --exclude-from=.git/info/exclude # Lines that start with '#' are comments. # For a project mostly in C, the following would be a good set of # exclude patterns (uncomment them if you want to use them): # *.[oa] # *~ pacpl-code/.git/refs/0000775000175100017510000000000014010532667013723 5ustar viriiviriipacpl-code/.git/refs/remotes/0000775000175100017510000000000014010532667015401 5ustar viriiviriipacpl-code/.git/refs/remotes/origin/0000775000175100017510000000000014010546300016655 5ustar viriiviriipacpl-code/.git/refs/remotes/origin/master0000664000175100017510000000005114010546300020067 0ustar viriivirii4ad1904c26979bcafdadc888bf3d524e8667db95 pacpl-code/.git/refs/tags/0000775000175100017510000000000014010522500014642 5ustar viriiviriipacpl-code/.git/refs/heads/0000775000175100017510000000000014010546243015002 5ustar viriiviriipacpl-code/.git/refs/heads/master0000664000175100017510000000005114010546243016214 0ustar viriivirii4ad1904c26979bcafdadc888bf3d524e8667db95 pacpl-code/.git/COMMIT_EDITMSG0000664000175100017510000000002014010546243015036 0ustar viriiviriiUpdate to 6.1.3 pacpl-code/.git/ORIG_HEAD0000664000175100017510000000005114010534520014212 0ustar viriivirii2bc064aa20d57642980a74e1fee5ab9b184678f1 pacpl-code/.git/logs/0000775000175100017510000000000014010524131013713 5ustar viriiviriipacpl-code/.git/logs/HEAD0000664000175100017510000000146314010546243014353 0ustar viriivirii0000000000000000000000000000000000000000 4cfbe809ff650a97d1112c145a63bacfe59f7859 Philip Lyons 1612884057 -0500 commit (initial): initial commit 4cfbe809ff650a97d1112c145a63bacfe59f7859 2bc064aa20d57642980a74e1fee5ab9b184678f1 Philip Lyons 1612888351 -0500 commit (merge): Fixed Merge Conflict 2bc064aa20d57642980a74e1fee5ab9b184678f1 f10c1c44833eed0d06cf3c3221cc0c39cb43954d Philip Lyons 1612888497 -0500 commit: repository reconfiguration f10c1c44833eed0d06cf3c3221cc0c39cb43954d e881980b07a5eed3aaa884690f63bf16669ce97c Philip Lyons 1612888524 -0500 commit: repository reconfiguration e881980b07a5eed3aaa884690f63bf16669ce97c 4ad1904c26979bcafdadc888bf3d524e8667db95 Philip Lyons 1612893347 -0500 commit: Update to 6.1.3 pacpl-code/.git/logs/refs/0000775000175100017510000000000014010532667014667 5ustar viriiviriipacpl-code/.git/logs/refs/remotes/0000775000175100017510000000000014010532667016345 5ustar viriiviriipacpl-code/.git/logs/refs/remotes/origin/0000775000175100017510000000000014010532667017634 5ustar viriiviriipacpl-code/.git/logs/refs/remotes/origin/master0000664000175100017510000000111414010546300021034 0ustar viriivirii0000000000000000000000000000000000000000 cc4eb189828ef15228da02c14a39e484294126ec Philip Lyons 1612887479 -0500 pull: storing head cc4eb189828ef15228da02c14a39e484294126ec 2bc064aa20d57642980a74e1fee5ab9b184678f1 Philip Lyons 1612888416 -0500 update by push 2bc064aa20d57642980a74e1fee5ab9b184678f1 e881980b07a5eed3aaa884690f63bf16669ce97c Philip Lyons 1612888554 -0500 update by push e881980b07a5eed3aaa884690f63bf16669ce97c 4ad1904c26979bcafdadc888bf3d524e8667db95 Philip Lyons 1612893376 -0500 update by push pacpl-code/.git/logs/refs/heads/0000775000175100017510000000000014010524131015736 5ustar viriiviriipacpl-code/.git/logs/refs/heads/master0000664000175100017510000000146314010546243017170 0ustar viriivirii0000000000000000000000000000000000000000 4cfbe809ff650a97d1112c145a63bacfe59f7859 Philip Lyons 1612884057 -0500 commit (initial): initial commit 4cfbe809ff650a97d1112c145a63bacfe59f7859 2bc064aa20d57642980a74e1fee5ab9b184678f1 Philip Lyons 1612888351 -0500 commit (merge): Fixed Merge Conflict 2bc064aa20d57642980a74e1fee5ab9b184678f1 f10c1c44833eed0d06cf3c3221cc0c39cb43954d Philip Lyons 1612888497 -0500 commit: repository reconfiguration f10c1c44833eed0d06cf3c3221cc0c39cb43954d e881980b07a5eed3aaa884690f63bf16669ce97c Philip Lyons 1612888524 -0500 commit: repository reconfiguration e881980b07a5eed3aaa884690f63bf16669ce97c 4ad1904c26979bcafdadc888bf3d524e8667db95 Philip Lyons 1612893347 -0500 commit: Update to 6.1.3 pacpl-code/.git/FETCH_HEAD0000664000175100017510000000014014010534520014302 0ustar viriiviriicc4eb189828ef15228da02c14a39e484294126ec branch 'master' of ssh://git.code.sf.net/p/pacpl/code pacpl-code/.git/hooks/0000775000175100017510000000000014010522500014070 5ustar viriiviriipacpl-code/.git/hooks/prepare-commit-msg.sample0000775000175100017510000000272414010522500021013 0ustar viriivirii#!/bin/sh # # An example hook script to prepare the commit log message. # Called by "git commit" with the name of the file that has the # commit message, followed by the description of the commit # message's source. The hook's purpose is to edit the commit # message file. If the hook fails with a non-zero status, # the commit is aborted. # # To enable this hook, rename this file to "prepare-commit-msg". # This hook includes three examples. The first one removes the # "# Please enter the commit message..." help message. # # The second includes the output of "git diff --name-status -r" # into the message, just before the "git status" output. It is # commented because it doesn't cope with --amend or with squashed # commits. # # The third example adds a Signed-off-by line to the message, that can # still be edited. This is rarely a good idea. COMMIT_MSG_FILE=$1 COMMIT_SOURCE=$2 SHA1=$3 /usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE" # case "$COMMIT_SOURCE,$SHA1" in # ,|template,) # /usr/bin/perl -i.bak -pe ' # print "\n" . `git diff --cached --name-status -r` # if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;; # *) ;; # esac # SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') # git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE" # if test -z "$COMMIT_SOURCE" # then # /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE" # fi pacpl-code/.git/hooks/update.sample0000775000175100017510000000703214010522500016562 0ustar viriivirii#!/bin/sh # # An example hook script to block unannotated tags from entering. # Called by "git receive-pack" with arguments: refname sha1-old sha1-new # # To enable this hook, rename this file to "update". # # Config # ------ # hooks.allowunannotated # This boolean sets whether unannotated tags will be allowed into the # repository. By default they won't be. # hooks.allowdeletetag # This boolean sets whether deleting tags will be allowed in the # repository. By default they won't be. # hooks.allowmodifytag # This boolean sets whether a tag may be modified after creation. By default # it won't be. # hooks.allowdeletebranch # This boolean sets whether deleting branches will be allowed in the # repository. By default they won't be. # hooks.denycreatebranch # This boolean sets whether remotely creating branches will be denied # in the repository. By default this is allowed. # # --- Command line refname="$1" oldrev="$2" newrev="$3" # --- Safety check if [ -z "$GIT_DIR" ]; then echo "Don't run this script from the command line." >&2 echo " (if you want, you could supply GIT_DIR then run" >&2 echo " $0 )" >&2 exit 1 fi if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then echo "usage: $0 " >&2 exit 1 fi # --- Config allowunannotated=$(git config --bool hooks.allowunannotated) allowdeletebranch=$(git config --bool hooks.allowdeletebranch) denycreatebranch=$(git config --bool hooks.denycreatebranch) allowdeletetag=$(git config --bool hooks.allowdeletetag) allowmodifytag=$(git config --bool hooks.allowmodifytag) # check for no description projectdesc=$(sed -e '1q' "$GIT_DIR/description") case "$projectdesc" in "Unnamed repository"* | "") echo "*** Project description file hasn't been set" >&2 exit 1 ;; esac # --- Check types # if $newrev is 0000...0000, it's a commit to delete a ref. zero="0000000000000000000000000000000000000000" if [ "$newrev" = "$zero" ]; then newrev_type=delete else newrev_type=$(git cat-file -t $newrev) fi case "$refname","$newrev_type" in refs/tags/*,commit) # un-annotated tag short_refname=${refname##refs/tags/} if [ "$allowunannotated" != "true" ]; then echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 exit 1 fi ;; refs/tags/*,delete) # delete tag if [ "$allowdeletetag" != "true" ]; then echo "*** Deleting a tag is not allowed in this repository" >&2 exit 1 fi ;; refs/tags/*,tag) # annotated tag if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 then echo "*** Tag '$refname' already exists." >&2 echo "*** Modifying a tag is not allowed in this repository." >&2 exit 1 fi ;; refs/heads/*,commit) # branch if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then echo "*** Creating a branch is not allowed in this repository" >&2 exit 1 fi ;; refs/heads/*,delete) # delete branch if [ "$allowdeletebranch" != "true" ]; then echo "*** Deleting a branch is not allowed in this repository" >&2 exit 1 fi ;; refs/remotes/*,commit) # tracking branch ;; refs/remotes/*,delete) # delete tracking branch if [ "$allowdeletebranch" != "true" ]; then echo "*** Deleting a tracking branch is not allowed in this repository" >&2 exit 1 fi ;; *) # Anything else (is there anything else?) echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 exit 1 ;; esac # --- Finished exit 0 pacpl-code/.git/hooks/commit-msg.sample0000775000175100017510000000160014010522500017347 0ustar viriivirii#!/bin/sh # # An example hook script to check the commit log message. # Called by "git commit" with one argument, the name of the file # that has the commit message. The hook should exit with non-zero # status after issuing an appropriate message if it wants to stop the # commit. The hook is allowed to edit the commit message file. # # To enable this hook, rename this file to "commit-msg". # Uncomment the below to add a Signed-off-by line to the message. # Doing this in a hook is a bad idea in general, but the prepare-commit-msg # hook is more suited to it. # # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" # This example catches duplicate Signed-off-by lines. test "" = "$(grep '^Signed-off-by: ' "$1" | sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { echo >&2 Duplicate Signed-off-by lines. exit 1 } pacpl-code/.git/hooks/fsmonitor-watchman.sample0000775000175100017510000000600714010522500021121 0ustar viriivirii#!/usr/bin/perl use strict; use warnings; use IPC::Open2; # An example hook script to integrate Watchman # (https://facebook.github.io/watchman/) with git to speed up detecting # new and modified files. # # The hook is passed a version (currently 1) and a time in nanoseconds # formatted as a string and outputs to stdout all files that have been # modified since the given time. Paths must be relative to the root of # the working tree and separated by a single NUL. # # To enable this hook, rename this file to "query-watchman" and set # 'git config core.fsmonitor .git/hooks/query-watchman' # my ($version, $time) = @ARGV; # Check the hook interface version if ($version == 1) { # convert nanoseconds to seconds # subtract one second to make sure watchman will return all changes $time = int ($time / 1000000000) - 1; } else { die "Unsupported query-fsmonitor hook version '$version'.\n" . "Falling back to scanning...\n"; } my $git_work_tree; if ($^O =~ 'msys' || $^O =~ 'cygwin') { $git_work_tree = Win32::GetCwd(); $git_work_tree =~ tr/\\/\//; } else { require Cwd; $git_work_tree = Cwd::cwd(); } my $retry = 1; launch_watchman(); sub launch_watchman { my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty') or die "open2() failed: $!\n" . "Falling back to scanning...\n"; # In the query expression below we're asking for names of files that # changed since $time but were not transient (ie created after # $time but no longer exist). # # To accomplish this, we're using the "since" generator to use the # recency index to select candidate nodes and "fields" to limit the # output to file names only. my $query = <<" END"; ["query", "$git_work_tree", { "since": $time, "fields": ["name"] }] END print CHLD_IN $query; close CHLD_IN; my $response = do {local $/; }; die "Watchman: command returned no output.\n" . "Falling back to scanning...\n" if $response eq ""; die "Watchman: command returned invalid output: $response\n" . "Falling back to scanning...\n" unless $response =~ /^\{/; my $json_pkg; eval { require JSON::XS; $json_pkg = "JSON::XS"; 1; } or do { require JSON::PP; $json_pkg = "JSON::PP"; }; my $o = $json_pkg->new->utf8->decode($response); if ($retry > 0 and $o->{error} and $o->{error} =~ m/unable to resolve root .* directory (.*) is not watched/) { print STDERR "Adding '$git_work_tree' to watchman's watch list.\n"; $retry--; qx/watchman watch "$git_work_tree"/; die "Failed to make watchman watch '$git_work_tree'.\n" . "Falling back to scanning...\n" if $? != 0; # Watchman will always return all files on the first query so # return the fast "everything is dirty" flag to git and do the # Watchman query just to get it over with now so we won't pay # the cost in git to look up each individual file. print "/\0"; eval { launch_watchman() }; exit 0; } die "Watchman: $o->{error}.\n" . "Falling back to scanning...\n" if $o->{error}; binmode STDOUT, ":utf8"; local $, = "\0"; print @{$o->{files}}; } pacpl-code/.git/hooks/pre-rebase.sample0000775000175100017510000001144214010522500017325 0ustar viriivirii#!/bin/sh # # Copyright (c) 2006, 2008 Junio C Hamano # # The "pre-rebase" hook is run just before "git rebase" starts doing # its job, and can prevent the command from running by exiting with # non-zero status. # # The hook is called with the following parameters: # # $1 -- the upstream the series was forked from. # $2 -- the branch being rebased (or empty when rebasing the current branch). # # This sample shows how to prevent topic branches that are already # merged to 'next' branch from getting rebased, because allowing it # would result in rebasing already published history. publish=next basebranch="$1" if test "$#" = 2 then topic="refs/heads/$2" else topic=`git symbolic-ref HEAD` || exit 0 ;# we do not interrupt rebasing detached HEAD fi case "$topic" in refs/heads/??/*) ;; *) exit 0 ;# we do not interrupt others. ;; esac # Now we are dealing with a topic branch being rebased # on top of master. Is it OK to rebase it? # Does the topic really exist? git show-ref -q "$topic" || { echo >&2 "No such branch $topic" exit 1 } # Is topic fully merged to master? not_in_master=`git rev-list --pretty=oneline ^master "$topic"` if test -z "$not_in_master" then echo >&2 "$topic is fully merged to master; better remove it." exit 1 ;# we could allow it, but there is no point. fi # Is topic ever merged to next? If so you should not be rebasing it. only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` only_next_2=`git rev-list ^master ${publish} | sort` if test "$only_next_1" = "$only_next_2" then not_in_topic=`git rev-list "^$topic" master` if test -z "$not_in_topic" then echo >&2 "$topic is already up to date with master" exit 1 ;# we could allow it, but there is no point. else exit 0 fi else not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` /usr/bin/perl -e ' my $topic = $ARGV[0]; my $msg = "* $topic has commits already merged to public branch:\n"; my (%not_in_next) = map { /^([0-9a-f]+) /; ($1 => 1); } split(/\n/, $ARGV[1]); for my $elem (map { /^([0-9a-f]+) (.*)$/; [$1 => $2]; } split(/\n/, $ARGV[2])) { if (!exists $not_in_next{$elem->[0]}) { if ($msg) { print STDERR $msg; undef $msg; } print STDERR " $elem->[1]\n"; } } ' "$topic" "$not_in_next" "$not_in_master" exit 1 fi <<\DOC_END This sample hook safeguards topic branches that have been published from being rewound. The workflow assumed here is: * Once a topic branch forks from "master", "master" is never merged into it again (either directly or indirectly). * Once a topic branch is fully cooked and merged into "master", it is deleted. If you need to build on top of it to correct earlier mistakes, a new topic branch is created by forking at the tip of the "master". This is not strictly necessary, but it makes it easier to keep your history simple. * Whenever you need to test or publish your changes to topic branches, merge them into "next" branch. The script, being an example, hardcodes the publish branch name to be "next", but it is trivial to make it configurable via $GIT_DIR/config mechanism. With this workflow, you would want to know: (1) ... if a topic branch has ever been merged to "next". Young topic branches can have stupid mistakes you would rather clean up before publishing, and things that have not been merged into other branches can be easily rebased without affecting other people. But once it is published, you would not want to rewind it. (2) ... if a topic branch has been fully merged to "master". Then you can delete it. More importantly, you should not build on top of it -- other people may already want to change things related to the topic as patches against your "master", so if you need further changes, it is better to fork the topic (perhaps with the same name) afresh from the tip of "master". Let's look at this example: o---o---o---o---o---o---o---o---o---o "next" / / / / / a---a---b A / / / / / / / / c---c---c---c B / / / / \ / / / / b---b C \ / / / / / \ / ---o---o---o---o---o---o---o---o---o---o---o "master" A, B and C are topic branches. * A has one fix since it was merged up to "next". * B has finished. It has been fully merged up to "master" and "next", and is ready to be deleted. * C has not merged to "next" at all. We would want to allow C to be rebased, refuse A, and encourage B to be deleted. To compute (1): git rev-list ^master ^topic next git rev-list ^master next if these match, topic has not merged in next at all. To compute (2): git rev-list master..topic if this is empty, it is fully merged to "master". DOC_END pacpl-code/.git/hooks/pre-applypatch.sample0000775000175100017510000000065014010522500020230 0ustar viriivirii#!/bin/sh # # An example hook script to verify what is about to be committed # by applypatch from an e-mail message. # # The hook should exit with non-zero status after issuing an # appropriate message if it wants to stop the commit. # # To enable this hook, rename this file to "pre-applypatch". . git-sh-setup precommit="$(git rev-parse --git-path hooks/pre-commit)" test -x "$precommit" && exec "$precommit" ${1+"$@"} : pacpl-code/.git/hooks/pre-push.sample0000775000175100017510000000250414010522500017042 0ustar viriivirii#!/bin/sh # An example hook script to verify what is about to be pushed. Called by "git # push" after it has checked the remote status, but before anything has been # pushed. If this script exits with a non-zero status nothing will be pushed. # # This hook is called with the following parameters: # # $1 -- Name of the remote to which the push is being done # $2 -- URL to which the push is being done # # If pushing without using a named remote those arguments will be equal. # # Information about the commits which are being pushed is supplied as lines to # the standard input in the form: # # # # This sample shows how to prevent push of commits where the log message starts # with "WIP" (work in progress). remote="$1" url="$2" z40=0000000000000000000000000000000000000000 while read local_ref local_sha remote_ref remote_sha do if [ "$local_sha" = $z40 ] then # Handle delete : else if [ "$remote_sha" = $z40 ] then # New branch, examine all commits range="$local_sha" else # Update to existing branch, examine new commits range="$remote_sha..$local_sha" fi # Check for WIP commit commit=`git rev-list -n 1 --grep '^WIP' "$range"` if [ -n "$commit" ] then echo >&2 "Found WIP commit in $local_ref, not pushing" exit 1 fi fi done exit 0 pacpl-code/.git/hooks/post-update.sample0000775000175100017510000000027514010522500017547 0ustar viriivirii#!/bin/sh # # An example hook script to prepare a packed repository for use over # dumb transports. # # To enable this hook, rename this file to "post-update". exec git update-server-info pacpl-code/.git/hooks/pre-commit.sample0000775000175100017510000000314614010522500017356 0ustar viriivirii#!/bin/sh # # An example hook script to verify what is about to be committed. # Called by "git commit" with no arguments. The hook should # exit with non-zero status after issuing an appropriate message if # it wants to stop the commit. # # To enable this hook, rename this file to "pre-commit". if git rev-parse --verify HEAD >/dev/null 2>&1 then against=HEAD else # Initial commit: diff against an empty tree object against=$(git hash-object -t tree /dev/null) fi # If you want to allow non-ASCII filenames set this variable to true. allownonascii=$(git config --bool hooks.allownonascii) # Redirect output to stderr. exec 1>&2 # Cross platform projects tend to avoid non-ASCII filenames; prevent # them from being added to the repository. We exploit the fact that the # printable range starts at the space character and ends with tilde. if [ "$allownonascii" != "true" ] && # Note that the use of brackets around a tr range is ok here, (it's # even required, for portability to Solaris 10's /usr/bin/tr), since # the square bracket bytes happen to fall in the designated range. test $(git diff --cached --name-only --diff-filter=A -z $against | LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 then cat <<\EOF Error: Attempt to add a non-ASCII file name. This can cause problems if you want to work with people on other platforms. To be portable it is advisable to rename the file. If you know what you are doing you can disable this check using: git config hooks.allownonascii true EOF exit 1 fi # If there are whitespace errors, print the offending file names and fail. exec git diff-index --check --cached $against -- pacpl-code/.git/hooks/pre-merge-commit.sample0000775000175100017510000000064014010522500020447 0ustar viriivirii#!/bin/sh # # An example hook script to verify what is about to be committed. # Called by "git merge" with no arguments. The hook should # exit with non-zero status after issuing an appropriate message to # stderr if it wants to stop the merge commit. # # To enable this hook, rename this file to "pre-merge-commit". . git-sh-setup test -x "$GIT_DIR/hooks/pre-commit" && exec "$GIT_DIR/hooks/pre-commit" : pacpl-code/.git/hooks/pre-receive.sample0000775000175100017510000000104014010522500017477 0ustar viriivirii#!/bin/sh # # An example hook script to make use of push options. # The example simply echoes all push options that start with 'echoback=' # and rejects all pushes when the "reject" push option is used. # # To enable this hook, rename this file to "pre-receive". if test -n "$GIT_PUSH_OPTION_COUNT" then i=0 while test "$i" -lt "$GIT_PUSH_OPTION_COUNT" do eval "value=\$GIT_PUSH_OPTION_$i" case "$value" in echoback=*) echo "echo from the pre-receive-hook: ${value#*=}" >&2 ;; reject) exit 1 esac i=$((i + 1)) done fi pacpl-code/.git/hooks/applypatch-msg.sample0000775000175100017510000000073614010522500020235 0ustar viriivirii#!/bin/sh # # An example hook script to check the commit log message taken by # applypatch from an e-mail message. # # The hook should exit with non-zero status after issuing an # appropriate message if it wants to stop the commit. The hook is # allowed to edit the commit message file. # # To enable this hook, rename this file to "applypatch-msg". . git-sh-setup commitmsg="$(git rev-parse --git-path hooks/commit-msg)" test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} : pacpl-code/.git/objects/0000775000175100017510000000000014010546243014410 5ustar viriiviriipacpl-code/.git/objects/d8/0000775000175100017510000000000014010546243014723 5ustar viriiviriipacpl-code/.git/objects/d8/53f1cdb477e58993538920f82f26445a5119780000444000175100017510000000115014010546243021445 0ustar viriiviriixU_HAU(KꊴB =#ֺNA}(Lчdvf&vgY$ ")# ʂ_I3"A(|D4VMf~|0I\eɲ\ DšAN *a&!a%aխIe'k&J8"vcL+? gvx{ՇaȐCF/qa=LuihYjiQ}{5,ËCсVot21j[YrcLU)6G!nr@T`-`[ UNedƨ7Q\T)U!BjP+#NkD͟PҗAA)UIfXeHS_.xӟe:N#YsXJP1Xa?G*QZޯeξ5r*BCliQU!q'Ÿ=|z38w& 9ppP]zʇ?;w7<]pt8  ul Xj浭Lxtg&j_DWNaE#krA=m!Q'%w:1m.Zwv6%9/o/)z-0d+aj=' ?.P+92pacpl-code/.git/objects/86/0000775000175100017510000000000014010524045014641 5ustar viriiviriipacpl-code/.git/objects/86/a8fc31e3c2aa268688a5be47d161c586772e780000444000175100017510000000751514010524131021734 0ustar viriiviriixZSH__k1pI.w /KW%s)IJ.[dQwb.~,"t.YQoV<%V &bb 1lFg,^eL›<4y`O?iR[F;L9)/H`lAQc@EӦ% V<ڭa͒Z&`Y;(gfvl םΰۙ6ex&G'uz@,/Y=~Hra)$p.e0$pS8L̵ `b[*0MP%EIMHӈR6,2È%B&nBa<׾(ڰ!/ci2U2VJMe F1`x$ !s;h4B0&yFE]^ǕY\qMV9Gc0@3|j ^TdMgV l9?J& \CfIm h5`X$_X_K9I1 uFOg8 Q(UXe 2Da a66@.iO8oECh~׽M AC4cQ&Wİgӓ,!ude*(AYyl,?702xbw$ זgE_D/-ъwɲS(Ȣ"rPJE]εTzR;eDžvB(ߞ|niٻ׸^rG^n㴘;HfrI!7wFt̍udCXEu}sm$(7h4Ѹh#t#>z9V!smSev啜|m+{7>Xfv-0XVv́]UH{!@ѡv@ZK4 NdXygq}@nsk|"m)H|REK@Au?]pP(%!3ah%1I¤Q.+46nZh`32U]qZC>W%:tqXQZj2ݰy,ހM3~9g۬ =3hڌiE4'LIl*H.G{zNzޢ})9/1Zmt\."S1Ri65/KMRM(~ uʍTWRdf*.,Y&$hH/je4zҘzZ} LYLP=kLN]Kq*ˋaCchA. g.@'O/J4UbfniV0WnC%k , <[)@o*.α$֓1#|Fh$C6\ %@:`r<_4yX.5ަU/׶Y]d4(RrsYD%.pMf@)[, n8=7Ҿ8bmzlsXNz_ZN2qUY,2nMS+B:Ր^1c@Vç7s茙 .'~r.9o\<rr9we>>C:Ž%GaXJc7SD<Ϧ{#ykIt.|TAЯSSV[Ao-k[A(o^Y9Y`_ƈ36tPSGY ́%^JZ([圽ul4ZH-#3)̨ #Έ4U!M0{Yى$ SŒ[u_!*^h8 ҒɁjj_$$*V`@aU.Xz8%;8.eW*J̥i5T7n]G]H+RRbk4~;А_сDbٞW,-VqO䉳 ~$ pacpl-code/.git/objects/b5/0000775000175100017510000000000014010534661014717 5ustar viriiviriipacpl-code/.git/objects/b5/ef98aca2afbfdae2d946495dfafcdf8db41d700000444000175100017510000000015314010534661022737 0ustar viriiviriix+)JMUd01Ғ̜b]9SS۲%,mTy|M%v}ΧH c]钌Ҽ"8u5>Yr=.֦<~Nqfn*opacpl-code/.git/objects/54/0000775000175100017510000000000014010524045014634 5ustar viriiviriipacpl-code/.git/objects/54/9d30b333182f5ba69585183776193a6fae872a0000444000175100017510000000605614010524131021504 0ustar viriiviriixYny -Cm!JI 45PƂsw9&9#+7+8Yz.k%@j%y?=jJ_?D4rh4^ˠDG40tE|FI#S*o߇D߄Ғk ^ֶ'Fn WϧGXک.k55kDVa|Rqbo]qi|p&׃Hzr"H FKAO;[Ɔvz4HE)|_TKlM'3lKZe&MC]KTjbxo-p\#7?koW5"( dldɾǖOwg!tkw$+\zLtj+ 6Ū3Dlawg К<-V\* b/[SYjR-A-ms[oPpQT>^JQIYJ$8JTHr8'}\\[Q[TAN/5.=>>N* bPUIXp\Z"MV8qRؕ:%,)j*_[#Sqq[CmAU)Or㩾+=-σA&65DR6 F!+/>_>gښm0Vgb*jWQA3q4@f87^M T233qsW y[* wA} fMA\նC^BzeDr"%g98S/F9 < MXVq0<6֠,!a dXT\+٣NK9z2 Ϡ0>KYUjp4 w/;:Z>E7-1xjuC49 SРX+ptMBgEmA,"5$\C ӘA%jU Ͽ}&YTR"L J)v e ͡,*w+L%d/N'q푲$($rG$v֭݊vj䛷I} =$":?Y|d!ɂ!>!)Q^`MPW%Ru؆Q#Ϗk @_oJə uQ 72l(n FW?Q쳎4wn{6VgITKjM.:8G0:O wgGYsl'|/Fah& @BG:/BfB:ж@ u"v)ws$ψGPx8)}*4a/]WW0[J2ޅ`aY\˴ H7Ґm!{i@/7O>;#Ԝ@FКL;TΒn M aWn`W@ϙ(tAD8>*L%biy9Mk>HR|[n/+*gLkN"6Fh)6F"wT<\8z0+( U khGc BzNarGD[!K?hY_3WN993URz Da̛& Xߗڵ 8B50dF'!KyXpx7Ê+ͣMZ{Zc=5^Ok1q<AcJAU7p)S[mw6ƒc XYȮ-F9571?H/L`ϊ)9K 0HiQ7'wE8KMG€OXܳa`q-c* b31L:,cyaV beMu?.*WSp*ӊbB+nIrhrcy?A'~1WGEBbcc \REnRTAkbZu>(xHmA+d&KRϔ ~E3Ot q?dk.6A;f_&b1Z&SkqߊL$K7@PkcOHpacpl-code/.git/objects/84/0000775000175100017510000000000014010524045014637 5ustar viriiviriipacpl-code/.git/objects/84/3a01c5a7b8a4eca5925d55af6480f76c28f80b0000444000175100017510000000521314010524131022043 0ustar viriiviriixXK#ΙHq2٬Y1r1p%5cp=?dwkF$ab_׵[/|ug?L^:^-OⷪgT*[z'/DǟVi(S 3+|n**?ܒ_̤jU!/;}9dЛ?XUsy§trj祖@[\ẗקP7~Է&t:7RV>9 תĿpzĭ^[3(-Jnz X螷 OٹցLn7!ƫ(~&[xR[Uաq u@bJUke7s Rm˖2L0vk[x;x-k [V|Bxr{IE&%J&>q*"( cj 6w #CE]pyF[ݔQإ⫽F>tb5U;ogQk,M(ޣBE,r} 98?)$xt;=)KN/V:BsSp*k4uI ,5~br"Fj(FRj}.`KwrvcQcuvw(D7 q%Pe!r{nwKqDN}p3-tFČ#$VEJ Ý vR:7Z)'5٫!@"ÕPK>ǣp>n&06\ǚp$F39},"`qu{e4ӎ1 *̀ƭ ]m9O͹?cV &-Qa7`F?'/Tj gBiE5B̯i晋Pp\&wy$ ,i̞JQVKbyVNUDɦЖl֨H~J]uU`jިҺݝaN7M ܁z5F))/`cJ+N)$N{iup8ESĢ^2/* |:R3 KbHԑ[ Vr7M;&͋%M|zb}*w3%7Jxz~P<[YVd)+ á@K|4h+u(#*7mȺPv ݎ#KFjhnFmpacpl-code/.git/objects/2a/0000775000175100017510000000000014010524045014706 5ustar viriiviriipacpl-code/.git/objects/2a/a178c7f3fc81246dc3f8deafa66cb7d4abf5510000444000175100017510000000477314010524131022432 0ustar viriiviriixXܶz [{mzȥ: Z $(PƂZ$R&;QC͐j6'.97ò_ó/W<ߍډYZ9N+Z)._^^M/ul(_4A[#e|pcEcͫ/šADDPAm,ač1bFٽF% LӪ&^.D/[%fWLRT᠔JJ(0zYbc6U7iFh٫*vtsHKBFjcU׉jZS҃;zf<;"V/_;JZ:D̘,{> 36N{ ɿPLt#v U5,kߍm.JYoƀQUnk]/uuF|PW, arLE;1mJ76J}'vLe3{J9@~lVʚn8F/T$ߓ4fZF)]͖ʹi> @Gnҹ %NU%Gu׼V,yF!߈n<@kVv"qšWrހ)Fϛj`#%Hpj=${MGDg$1l_%"q9 1;ofPv6cg+r1%ѳh T)*tˬdd^=zrOħ>fByǣBII*ݩf:G];})ik+Pc-nAt( QVŁ4\KԬֲYAv‚U9ȶE*D=Z2seEL)(>87^Ӯmr:P6Q&7iْ4SSGEYXT O<ȶk(["%#)'t^vSGX+ 44YY8;X=lG:H?٠Ǚ(+ᬁBF?F6Ho(ˍa 5n߈[a3r% XW XD馫U/WSYO}W+ܩttDAS}6>x'᎞o7*жKf $b"vA1h#m$@:Nµ ڨODoSHALuYYCO0hרD`0й/j]E~DU# V"5jA@ N) +cRO lb0! B!d88q'l0z#9qGk>J?l79[Eь(j>Q-]Bvu'M\usq/YD<[>A@xTx^ZN/}CNML!ئ0HM#c]=0&i_=lQ'`sբS;&Ѻ# b}8R7ɘhnm~8x"SdRr)OxrQLXZ (Ei|@]#pl9u%X>Om?i ;cR[FYyOF5YBJ6*SkQ>Ȝ:萕ӳGAҍ0 rKNjHf4V*c9<% u7vKDwC^kG ~u#P{geត\_U{gAFbNpacpl-code/.git/objects/99/0000775000175100017510000000000014010546217014652 5ustar viriiviriipacpl-code/.git/objects/99/9c2e2e3f5f68450a59ce6759d6c573df9a295d0000444000175100017510000000122714010546217022045 0ustar viriiviriixTn05i FE7 C{i{eD$p|}%9Bۜ3occ\}nn}v '6&4&B gH``p*@`IR`t0hV9R NQ(I@tSegᤍVs%]8:'mzoĤ;ٲ}:Gþ^ehaz'hGBu2:Gouȷک";`, ӄ5~͍×uP>tё':¿f6K1Vjk>nQz-nE0J;%ڷEv s:WL'cK10ya@\ڎ>hLVb6i- i߰Q*-{=r~$sEUH}姱кhd-.tr!;<ʃhSw YKY i\mesW'Dq{Iem \pktDW]X\B9 ~SJ}6⼋:9~Cm+쒼A)˥L%)!H*jQjR)N{g8(@Q3I89f4/wZ&;J6eh; pxѩȓUNpzWkbpacpl-code/.git/objects/69/0000775000175100017510000000000014010546217014647 5ustar viriiviriipacpl-code/.git/objects/69/88b4050d80ce0482f2ea15a97a48f4ffadac050000444000175100017510000012206714010546217022140 0ustar viriiviriix}mCGjYDXa]ʮÆ8qJбd`udI\xUqwnT G%;&I$DnD8{ #[IT>JbV"RѺ&NΓ'Hk8:\DGQ+z9;t{h)Jǣ~igp2jq>Y= etJ^+_;B7GoNN+)]tB@#Ũ _ Qyj\Q-*t̜R?NUok%tLw1SqEQ@?ZN!6EQSwMʹԺ!H.Ƨ<t.k rqa= &`ȦؠdXX*s5!S.p0*4Gl00L/FGcfvf. ~nI;%GJrۏe/|$)P0) Lv%a, ꝷ.H 6o;{<JgOթDV:$A~]GQc;] G~~ " ?ƭ# yn7nUx'aepC"o(ŝx0382q5MA9[P#$\t0u(Pr r,RRbT,su!8CREk6hJ Z-H,gZAҨ,߯/%NE˵4W"֛I1]NaG,$3R DDKdfpfb4U._?4xR,#(p+G5!,>/=.e!T&a ?7.@7NaÚo.lE[, ] / Qf*`;rtw=(;d 6|t;.\Oupiu{Bu R<9F qT)d~x(dWyo _ Hl-LHcLmP&#Ă̅9iⱊ@UXnM3Ԋ=jV}P寈?P! U@zLLhfShc>NiCԏ0 er5C~d "L% hVuY2,@(Vҷ"KH*2_鰒Fh^aGЎ;q'(6*|SH 0_"%N/xمqC^)<|׺Σfbp3,V.]Q@ PDzAeLL&ذfa*>?h.׊ѐ4,-lnlo\npZo+L";SE.%@%IK `:ghqW,eFM twF;(ݤ2NJ83ݐ)Y"DXQFP ^EaAV/#uj\m|=<*0mSC~/RU.)lT)c$h}H̡@LjϾK+ 6Rƾ_hom/o{SUtmrFW P1{l `wAdZa[Eث4B Hfz8;%iѵJ'c%hgOp[ՙTNH5U+dz_2]Ϟؾך{vwN h?2$H₁6n8A ~N!w3] E[2LR7E'aL\q0+ %<|[W6g8rI SQ @po/LQ%ϕռ‚)S1IR1Feـ5w8;=bB0T!&8uXe[(U'CeBE0_BkTP~$,XOLO-IRJf?,,M:rFпT*`]ؾX8jĩ˘j1-@p<V$h&}))66}c0<KE|y%Z]XކLLA,:P2ABԻb?(MESg6Ũ aM| zmnl5쭭ע{͝P vy2YAm"62d_Mmn9LCB{hoΎ10 &&R'`0va8|W]Q#&&x˅ rppH--S\3)a*:~ܠ/,aW"$e>*@b|39txFrԕ3E2x#e1W+ɣF!< h{kjiz,GL`tp pBxT kMZ5#M$b7h"j@&8@9̪HL4Jo0`wE`4jaJIf9%V(I FE̥)IXb&.j@Q\$~c`;ԗijTzIWVi,UǃꃅR( T%:UKR I5z-U mT/T)U Ɵw#YH{ {/VxH , TP}b?,6#Up.c.mB81hm_mJD(b[H9It'8z@z乡tA J4T3i}-:>F9`IŅ}D:w[P@ŸHkٙoVF@F Ƴx5kw~Vxv5ʖj3ьYVܟ]U | bbGjI-ԋ [^},sE0ї&j%Δ4E? Ug}\활٫VB.[]S(ŽvHC|]0x>rǰfA.%m=j=U,ux\D$ii&=^m,R)2iVL)f4֖+1ي'OJ5 :uY" di}m/85{t`:jC*99Y0m'o/.-vȺ~pkRgϿ[;ǟ^/ՠJiI"%\|_'grBXV#Fc ZnLdʼn_z2Rc-˞}r}7Zai+AZzWPdLpUH(LM\YD[)uq^uI)Ax te @Cm/T-E#~jy\2B/UAŒ#]m 0 IseRW$KJcT)7HqEWN>6/>|d:YhwgJbNeSVb| KAP%%HI~J y$XiHo!Pk!{1Ur*nOd!ݶTʚ7%ač莖m(W~ KɰMx P,%f-Ld1 i$}ih@qL0(]?\6{}'C%*%WUҙ$ש3a p]w{=,*%QaF}\Emf}([,8Wv$G.1hpҽd-&v.J\4̚(FPS' Tdǭ(*$1_X=ȭAZ*B].+`i^t\X nh &1BLZ)j <@L )P3 b2W< "Pm-Bu7I9#Hr ˡAt2cp //E;hkLC[*EK2B#+K>ݍ{3&g6آvc *lāWvkY&;lpv@ 4Ӱ)&3P+h^ni!Ki' O 3TH 痫<ŹYr !0Hv@'jy$6pQSm{zW,T Z0_hx##P󢦖O A5p͡*HX.ʞ*.L3>S+XL.[kE(. e.aJ*~8կM/_0L܁Z4W_ WiqO7T%o)dE>2ݦpgSm@&)/6se'|EuK(xD=K]xrD8UMWSp~#!pl,{Q+E&qor0rrdۉ Ov. $LA((ly?[7?vk޻.~mv}kSy{3,73Jr?Ϳ4 aN#_msN0z6kjE61GhlX^*<]?d+7??D³g[ VyY#yVCK՟1}FW\>?*7O8igSp_ݝ+lmJ {-N -ȵqt봧;['M 6tbɏ &&5[ ޢ MRa[ [f)f|U]QxcNc:E&Z}`dȷ]܆j$uQ۷i?׀ātؠi`؁Cׂ߱0n_6y#9\`EK>U&s̟49m zK nMF`GWQ> ٩l1@`0f(qa0 ǦQMdC݄s=;a|Gq[N֋4 W t8+8(9%n@5D(hloO6/\tu?=*`?>0p! . C0M2(3cz;?.k3k7yJ؄PI2$eOq;8O{D'>9NLmN({p!9p ADz=ZGuuQF,B뚕n꿽^%Qʸ̋ I&7 Ml%cd%/𿂎x G:h JH삒t](=Sn?6ҙDMZ/>CV шrfgBC֨x\\T^**v|::@ tޡ8ۣZgznλak`Mnj$|0tWl`!}F]s ;# ڃY:4ͧjrO#/V.ޖd8rz sYnvZVa{VkneB \z֔9Y![_ꉙՏe}P,m#Qderz#Te7TA-"l~H0K:ADil@D(%\Eگe"֨Hg;Mn~a]3:*<^ЪsACPKYˇ}#HH>qrӸjUҊ2*R#҉p[R͖`W""S i0SEۯ B|Ѓ(S1T "  TT.S3~  I>;pOq":~jOn(bf]$WL`ϩT&kE6ͅk>BTDHj v#$k>hdDܴ5 T:jsEIՓaZ!7hi鮵Nc4C.`9, u~9f|IA8 "԰y6jm֤Aog&1i4ɇ\ "mzamːWگ ]'NS)1rjӠ@ZԵY<*_aRN)ZxsUF :"iG ?e ١&"O$~`dCSpXD\'609=⪙+TR!&\s}Qkv&g||91,iW)͒ ?F^7 1 7|w3_t٪7.`+G}\4cG_EilGa MePfI-)Q$@_J,r:WhnD.CXd?p!92gR|fZ,%~,?)J33g3}q0RM 徳/|4BpAb!pbfÂX>(H_nd#HH>V~:-/ v;RlP2)o`D(ذa3OG=b7s'?yQSF\ 5OsΊD\#׃9fdMv8]09A ZdN ||7lpŲY2_GF .U0[2;Pit8!l?9:9&a2 E͚k) 騴 c>[;9!LiЇ¢)AȶuO&H5\N#Af|AF 'APg}YSl.Tf(zrAAKjjO}8}cf9#)& oi}Z07"!)!LiЇ|5OoKA?kY-`N ! 6g7̜pCg,ƈ{î|!~=V_ew`Og]?ϗv6ȡ)I:v7F*f5yDmp<ԙ3J$ޤb˭IŁ**_̙/_P}QSf)%~u4ɇ\l#ҫ,8ʢ$1?"!- !LiЭQ)J3V2 5hw69@F A8 ;.XE5(g*&/-͒ ?pL;3EaZj᥁ghhVơ݈RL VuqL\'3-o/ .N:ƀMY,qI-F&fEZ.m*(&+7eUO.n7]SH ?E1vN/VG<:>qyx ;޵=1Ј <mwt.T~ >qY!Gs)ׂz'GР,0Lh鹛Ձ z4\R=`k A!$8Wlpp!NQ}3S^TkxN ZYNYU~Xt暓B;Ý|<ʢ+.89J@Y6և"a2&Ttns"'x8[4[qs~;oyb|f͢2%tDi$uAlڂ>c Afէ$Me;w8r)B̜3e\br96he-u B; ,Sju8~͘V4S;`6\h͖< U}qq`.qtEnϒZ|dSA<8_BVPV'\LQX@WfX,Nt)Wr;@|{)Υ0y"$̎0-__ }eI?-3%wEǣFO"uR9_p^˞ى*F1SSpm剓K>7[]xwچ^xJyt-[HOC{ɤ6z]wMt6d>Btm QiSu僜79uGt{Rd{#R$L^It~x&\KZ$Rp  (pHAQː=/F߫Ob:@jR}!bL%خ >^S_+mRwJY(@4ghЗ䝶%TFkkO\RuY.FRP_w>bQ­Ȼi؉+t$j\OzT꾑]: o'M5<КtZ[\?c!#0Fo 7W926]A`5 |ͪn葫']J5LqFDXC?:W6Upf+Ob_ u Q2ܕݽu\%\j?QߠMƃ?oA a_>⊖)^儕ﺯf3WU0OгU L_)œۮu`b؋'mJI]PE?%E:1S@Ъё0mE1|,gB,p9zX}Z,bÏ&aQ6.%s/yƐ-Q1 n⧌9 &%Gw KGܙ?eK{X,r !U f+<1 Rk<җ ktB/.C9eP1yT[-9D;D}hd5*T9p|S賱Pw)GU5_$GJ>CteJ0"lbb{СN #JKӠװLaU} s2kɌΕZ'vJf`U! 0Z%dLc#%WEi-Agd:๷Csg>myKëhZޫi3il9S2bw8P $[\,ڝa^ kBa;kdUǍl \!^YȞse5Wd^FPAn]r.r܊3'T?H,c_K/J%…1:K&4ow,Kȱxvt݌5+:w;NoB]71]U)o'{*=nL2d 9)Q ת:xp2 ls\D>cYK\75:eK%J_L/PFoTr1$*0= >t* "p)ҏVZs ! gdL^k/D[q->X? p+2}@ϷFFLѾl뛣V%Z>x"̭%Z=*T}Nfg7[i~9>":3"z5+L%nE6t NG8Gx PCq:n Xu@Ɔ4=5֕[Xñeҝ;aSȣFY <^0o`O33T' y-{suϧ v)W]hZfl U?zPk{ X jοf9gx#Oy %jv0=qABS|;a}x)}v$S'jn]&nE< A }1z.,֝cd],H{*6L}k0k".&8 -l(xzG"hAz~/~V*Nqk "lTY&3qQ%Lg; JGG8ï1U˜# Y,K8o%)7GGUM7\6 +cG<;)P ߎդ.%*0O>!̬5\˙N˝GNG)7\+[0)|Dpgf|.% gO@l) /ykB,y{a)&P1+'L .( Q{,=]3+iyLWZ." ޔߥixYR@d "/J^\ׁslq{fl5x GQv i50:+'HU8┫D1] fxo<CFp93W&`-=@90(nv%DK{b{f21[.r]_zM8Τ}OƏ%OaW'?ߓ0B  N;!Pe-X-l#ZK6[X} ^f8b-Gl83 KJ(X}GB (81P].[,H::zi9${cޠ:# &y`!b<^$,\̛̛) zت!6SC] lk&6 Nؿ拓*?Ip|)r <ʯg &ղKhp𦒲Pgc.L@ ^%᱀SrnQs4Hzg 3Y,Éט@g K uO0Hx_[ǑrOPvANH2U`%sHOZi Y95" O } Em/Iy<2k15G2;GbCUChpfdkݐz!5%Y|X,`sG}0 E ֽւ' %b<§u*i*ke6{ISyYΩ/x܂Ξr[|/aŊ ~:id뢗7f5e&khFܲĝMktwKZ؛)έhEgL92qi752Ǟi,#9A#Dᠻ qkI qHb=*Uf~JIW+ 8${~ &ľr͚<ĂL#l+\O©>z0(V+bD6 ⮦3|`,Vxw %&\aFO\Lbe i A .^`: I \FuK{D-ض>&+PS]e8 ŰXs= ps!וG8EF%V`b-Ri`Գwqb;bS\֋R[P«V&)lX N^?C6pjlF`rI$64D'\dɺHQE@u Xp;\Č27Jp$ȱKfz__,MP<6Cf<4OP 7%4=gdz;3i{d,#6aʉm Uـuasc{}{j:c\m۞9q47[=`綰')&Dw^쭭ؕ=j]]$;d:tCfEǒv1NVkB&ᬡ%uvX(Yx8IY˩k`"kFcYl4VP+ +Kkjjt{/ [PE(Y5O;j{&]Xr"KgA,*rROD(ぉ%{ictN᪠28fDzxhj2F3-Zع$k*fiM@whHy͓+OB0Z٦!H rBZ:SRf'}=uo|R^?ԓʩWI3GZ[g$k}=)OYZQ ,Gp3-GG-"U|XupU7̨zE8:TfE#MC ߋ'rb B)zE[;b-9Zn(x/Ӈخ Ԭ6Y{Dy5fՁ}Db| N4PPmښc転*`S9=f DhqwŊK-!Ք:։jwkhמ@59{I5d17fb,&F;nτ@obE1X|B w=\hCdB$SAE5Qܾ`C%ZwiP0}w8)o(A%0GU0jE<x8XO)97ZQs'ĉvD^*g B=Gfa5\ 2rk;ZY@k4"^\>n8e! [v-D+Ü+5|ˠ!( rnMzc;N Ӆa}1ޖ׏\ A,A/.fI k䦍@%,[OҤqC!\4cZfozX[cI6-=ӵ ~ %^kZj7eUJiH/~`A7W|iuonflxt𢅿Gc`wZ7u<*fI|(Rl1:~DSjȲZM*j3 @nwj $v>LbSQɦxR^:]cl&_9Xl,]% pTH]4E^bV3>RN{)ncFg |W;b>5\e!>&1|n}Ywq@&T\Jsg^%d>$`CM1(UCkq/sܮqRE ֘{ӆNi{ǀ%T`R-37䕩J|hqt3 [rkTJc1{au q5ƕCQ8wYi''\y'O.GBC{(Y\E*<~㞞4bRfh_~o&5qq4knBW#}&Xј 2﬐M! ~ݱz*TW޵ R`gY [rgF1Am%<>G&6gz_菻BضdcOIB!%g("HOO v sd~WZPI;_7!s', +f9[ z)wȫQz"}@Zb\zAlcZKqInY'FEwg,jnfAZi;PԧgT&Ey0!DE?DOk]Xx<]ņq5_ IJBGQ̪[9U L) 4j9B񹆭 Gīa.֢r:.HQIrJ̥bT20|!s`5a/S9?B 3nreے8kM.hKWs sέvW~\. '8}h `WNNOE |dBF7Ӛp=A],Q.U)ͨ*kVcǵVaQJMUp,ΉHݥ}֝ЭW:2pi᫏n4!}J}bv/54#qzR T`)>ŝ((棭  FZ "zcT0:U_!ڨEw0k*-=zSJ/9 {vd} Z`ҟ$(I($AZ_]^`*uNv75CE2i+hw _6 ^ Np6ymXXI@ &8E':]'i\D/uq WFKfhxz l/3 FfieK=F(Lw:PsU$_&?FXHlE1ۤ)I "acvuea"5]=\Wk(ڭ7aM !ȯQ{.Ab y2iۊ':!IZy@6@ egLGFS98 `nVĨigBRF%pRⶫ8Qqw(Q#@tOiQ0"ś/&Fߋg^nNAUK2p|@OG8 V1PcoK+7fsӱyʭ%pЯVAJofEt;KZ$b_7nqmLmj}9sŊލf(p0"O*U&T[}^JVWG|蔴E vu:d2,hJIvI4#ҳeYvtvðqRuVnM- f'&P["uZƵhLځ98;''7v.u-Jӄݶzp-h$I&3qcDAayGP8"qٰSvx>N2ORb i@\`cycp^y ,v^3q#I;< \ WkKo{Ipc /\~7e/dY;@7} WqIA^z& Y.Hħ&1l<"S(Ͷ 2Z6]{+-`̭"׷T9=wJL Dvl"pߞR*^n8Vs upD;#Sc9&0nFr 㖲F-i9YU*r86S׎b`YT :5|3ʼnEk$ˢœw\dC&ٸQw'M.qbDF![TՅYfe=hqv!v)`Vmbb89L(tEBfV1JyTBa jاxY1ҲZ3VHgNa^ʎ.-FZ( G$0< 6H˚3{#KRaqa]*}-Wm<dӑɇ09_MTXQ<̘]CE#Sw㕀€iIׇ:S*c#w@*'RQK2{nt[S'ܳ?2#vwoMp|g"VbR+GNPRQTp3UʏSJBqgrvvgSp dm줹u #,e6aUWXܚ27;q ؍x^ˑ/B7qf(;m_J4tiE%h"\? $%< {j H]1R\@S p!HU<QhLLB{plj!4NJT K:QQc(6OoqbXc%ܘH[?.@QHγJxHf5}ca)A|Ji2Wg/YKӨ s*OCyt_Dm:<0t;zff'b[;gbb*/@2*'xhqS =.=6%ByNZbL^i3hd#ތUX&^/TsZ|Yw}K(:q{z"?jC9oAi"mA= <<!xē6?8$zp'%m"=Yӿ|V<lr?*/YF0dG 1a``W˿F#х`zS\¸ *?}N.ԲRv>0 3mt}Nm ;}$zB8"8 ch׉ul˵[zQ8;'#49k烫RoTPjӍY\V8FT_ %4gl` O&(ulBEs-,T@yvApYwԥ\^1"-*lJSLax۠9VS81yII}}A&ϔ2"s8NVGXbtJ`glh ߤ¬f]uY+!jhY+XwuzB7pKM=wNy5MZRx18WCXr,T'caH*KB]/ /vhI^EELDa!1]U{V~́oKocَ- (Ī2ΦbZGG3ؤ6v%F\kp:'E\_x_v̫}łyo0YV{0fLxbe0:w'*UqWr} MX4e5`4_ڈ"qEUpcwHs2אd8FZbǝT 2W/4E!!<9{:=.y]|\BQ1C3@|Fx> b\:c` qrba8OiGi fȼnG|igπc<`-*{wn"tk+x\}Ӎ+a}+ N zBe7al aݛ\"" hs=AsO.lVP!opDa7+.fJԥ'PEqy0ށ| sA^so˝nLXU F1OD֎ ,}-;!%Ih%ɍKkcH^E`~N׏@m_A57'|'>'3\_gv#;zH\-Y( C jC0J͐ ȧwi3㸸cGϊy.53 U& .~n{_dY"(b(}k.97UA 7nFK4#|v"rn8GƏS3dt"n|Z} l nr<&opD'ry3-ۦ(Лх{`SAϘuX^?]Sy`b x+׹"Lٮ> ڟKnfR]f_>XA!Lkt@D^fWzq,k1c}=9þA\#1˕Սr1E/gXJ/t֫_!JQ.q]YZm,3_lcI Vƒ }yfkдF4[5IЂ媆,#x~MKTR}3OܑfE_{f th撯3H6WJ"![&m}бu=)co b֝aS_"3™t[`8UVj*#4 Pv 5D: -%2r?Dˎ8JmM82ޱ1܃??wYr"iV ϋ$=ό9͍dGc?r !aĎ-cD1_1'χ1Le8 !# !aD.R>Y\U(Hx́3Na=+It>SzԮp ՃKFEVGXc `R]-|0DId:);&'4[q%ǦXfTvدM|MYU3DnEo_?ni xӼ-ռ5d )#"/r:wKnm?}2.fsM#\w\ .zvq*4.l? ).N.pkublJn"񻲷<=O 8P39K+pE>_YRvtv,;pt]gawp#~%o7y}$s'̗\_* 9Fe߆#43S>Ԓ7@(y(0:4򑤔FJ@ DDʻ uG提\uS0sr^F,wdgO&0/w{{[ERHR GPϯ.sRn}o}ԍx7Sh{>mK/*&F!e;Kҏkϓ}N uyVQ;{FgApKQUz۶7BR⏠~"71IxTAbċBȲ)O.یw^~ TԻ}ڎm2T2G@_;YyO[7Y' f&e3{r|~UR7#-6(sn?K7F< ¯فlrtƒa\ \k0>KF϶vן :@)]Hn=b=]+"xѼǬ a}\[oΛPe_R (_ͤ|M[;ʟOnR!kTmx? BIxunBVfO@i&[庣{V1U,.p L \׺ no?ogRfĎ;:O[E@(zá}<'CNQ7eedgO@3;OOm֏X|]ac-ݵOs7FͤtMaݭW]_*z7Bר,k\:>|M7yO?3 (݂A~;0 (vNn\)]t$x)~zoh˼'s(vVg>H(PԎx:SҭZމQHΒ7#hmqs=Hb?}^:޻+Vo-[QT /T-qɭOVϡ};KlQ~ UcF;$sRxܺMK2>8I"њAIw>޺U ar˲7<?+x3ߘ X~| ,W_82"s c! #$qi97@2x r֭b 3X\1!@Bsu^ƛkquDIwwaYnkV:G>0n#eo~OO$#ՃO:~Oqu3uqʰqv-[,crtEɌo%A~`DGqh@l wG8C>R}uǿmEoӍΧAb&%#i[mNޞ/o޺U*U(t[gYenTrI$D^@s|+Jq| ._ބ h[q'i+@,ϧW 5*K6A!OiR7i&2߮8|),)%anuG+.2 \l:>xJNfYqnnO L:5 &~_n/(e(̰߀eZ"55NVk\.0^?on6iXA3𬾹^+/mT) sKfdr`sCM#"9dRsjNt} "üZ߮?\o>Z٩S g3F/ Əft{< ɴ;l,row֑mYd<<( #_g,,XHa~?ߪ9̺Y3fwwuuuwuuv6){/{ŵb/o3}i~ϡ PYHWy7 Ka ZkʅL֊CaQٻ}CK5]'-}]L5jD~H̦Ғs`~޺L}ie+q2l8 Ƴ`B\bLf~Ìc4W:;2 ff43~Q[0`Ӛ_P橘M?'.ֵś-x2;`/U@p0k\ ]Xsf`̰"Te(6drePOAYA<{9:1g^G-3e&mcbtW9^9WbnuzWT0 'ߩ^;rƽb:ŇRM:&i0#%g~JT #'=Kg$ٙN4yG=XgQ whLWr&PN xNU{s;Dy-a0G*; fl#<^&32;s$g  kkSNnQ{;Quz7Ȍ&Kƅ TϖC ;hO}H}Dqo_ޣ6WBi5iŚ$tp8bp^PF/P^=cɼfk%1{{$, v4~/#,xcr-Vۀ< a·+EU[Eހ9Q$WX)v/*_teZmYϸ ? τw(՚cp2bXx݈FU.q1_.j)^6GJiMguoknkntۍfg9d.f},͛&:5 W¸^B!IV| ?,REC,Tjw]weuqc)g:۪8IIݿ"yr7yF؅n/hLH$qcƋ~=o>{ރh.51b^I0`D7 }ÊK8Brg jD8 Uh$0ImVXo'T˟U/fEX@8y靈 'S8p@ղ›FV|r6ͺûkIm>J:ܛv{ۂz@wI5tx|,@=K?|ʈ?6:4Df/v-Oc ˫,F4ka#Ծs a'³37mrɇz(9?On6#Ԭ pyschѢA=.H_TcD|~l~Wv TI}/T "ܴDXEN2Q_Iz2cı-u0em*-w(D'ka lr֎d>%:sޟӦzOŎ`B9Z-y35 9ȚhʲIqNFQ$C\}&O,qod?Js2"?!wY1Bʱ"h} fPޮ>xuio"~4m8rv|M Jϧ %KHZ.`3Ut"Yt#(#w;vDq$]bsomY$LzÓctyU27L 2>$Ϩ3}?HE3llQyjv:[ԩ5?T$]V_~DN4|d{TB#͵di]rg9o7<Wiu$|.YRyިcs~]MPHc֬xs%kk:SFͦڤRhJLۯ _;\p;GڶYe끘]+A)Iٙ+gZډG#r_o$/Z(fbLΜpJ/) Uel4ךa<@Wmtιr8N}ٟp&>^| Zϵpvd!bߵn/}|qCf<=- @ʲIR{2rAG>h,;^:Ic Z9[ؾZp\$2^fRyU*XW>(2{vGiO>142T>3Bmdє}eF/5Zh-[/ pq/…0̓tz@+jG?uqgzn4u܏U -vR~JVA0!z¼p_]^]wjf2dݍMlWn\Oj??xY(D!14 T˒! ),ҁ7B4?(u)?7>pNN dJ.=8,ce4A/m{rH!jœ*H)GT) ,hfnпRpBQņ4[:"S`Si /],KI{S܀H5jGD_5S-fmM ˏ[qMJ MVx|\ 5co\L./6={BK㓡&8=ZNrQc,ӗ{rX>](k_7$Ēw4nh)Q3.koUk?T?m 0L9k9R!t /JV"$UNÄoXoY70O|Vg3>5rdNzpi0S}do0"in2?3cL)R]{\Dbi# 81$&J'鴹;5'jqM/wWzѥ%oehdjw4EWDiX@5I2њt YfGyɯV#zXJ%15הȎ߼CT&.>Qߌ.Kx_ԭtF՛3 W;KOvͅšFPxv9x]7ں 6fAi{Ӥ^EAP} MlszخGRM92NM=cO4,S0w5VBNɞ1ougwDH#io")am/ˮWР6c9P?^Zu|Y7 7+scq.;Ĭ*l><Ƌg/֛mr;}T]?XZQMb21.l(Eݘ$shv{ȿzGxXaU"iԗ/"lH|y$鶣[3g6L˴/ל^@&UXBrT@AX)VZ&Hz.?I8pU|afa*X~rK9SPheEQ= ς" .!x{3OunvZdL=s@_6|px5mMB6Rۯlm%h 3~DA c(F:5,GeJ~E6i6'3pM<#o 86CBt3hiv6![Sto_@'dQp9wf'lcn}UY!Օ?j ƋtάYtQ򄬗Y,z[[O{pQL9U6٦ur - D[#)|ޟ'=VBsy1ǀ)kX'JR@C7ctԗ'&=̳<{H0{LaI.:b2r1Y-:Tk'W#Taf|m!k.%mvzOr!4'2붕O`eYr֪ Yuq_˔}Ko]MXbifWZUnRRv1j.9b讀^P4SjP?hŕ?&kák-/Wq,:@h|=DKjn>\թUӊM4aJtΑ7%bWfo4ɴhYo /orz99۟ӟrպ˸ulڤ^%ou`82l7gd dzCJ(o{|hxN޽?=vv}G>o<}^lnWj; p0w7ӟ[/v7 QϺډ}n]-%UF}Q?=U}emw^C~Q/[0:MHPOϖ _vdZNDŽ՟lW-cѫ䏍bSW2 hh۫Z`A()3X?.>JiPl4Hy$b$nv~kT&6{cZwIeX;WaH=PNBNG9*ޏJ0329N'I[†:eHu;T(ken$wۄ$2r%Wãz'!%(J&LvH?nQb(Ȣ/dFTFCrB2ݨA)F}\#xuPyHc,q\(RG>+% /F|'i& ށ,.j @2%aɒP@W@d A9.p旉V%[<mtG$a ٯx~d/X3}~;:S")quP}WaFd`smR2F7rUc ,FH ّ~1\ʅ!dAw?)TRhƤ wC2vfE~Y81S] SD55랶YIt&̜{pWb)Q6~ a𣪌a06uihk2*JPڇXꄪQbU0r yap@L3XHAtN?+!Tޯg]^ PZD iVHٿ/v3$N-Xbˢ1鿲9P^htg6|(ΞC2Z<<c_IXv1eӌٹl/ =Ň\h?vYOԪ3*h[%_@d5Lb}&3Ey[e0F6HsR4M1)Va 3ZVcL<̍e9J,@ɸ'MWvqQ&rH}QF7<9I_c>T4ri.6 [CCM9ڽOF@GT<)$d۶IhI01̃/⮖r*U /LJ&עy?y$RO{&^'A J' PPEdoC` }i2,uizbXG-HS.1?ME=O 7nfp΅h6A=^VGZ^l2~to/R"?\J!ݢ;7^sC0hdGۣ#q W&Xkiޝ=WRfv-(QfJ*j3%Ow~aRF,.-_aG %n-#NjׁMQQ3Kqa_R/jcz):|s3GEy-1sVw>V9*[)VX( w~"?ȄZ@IgY?B('+\z~bZbw'XI8=\pqO_sÒi?,B&xdl3Z&.qŒ3Gh>Sq[68zYN^k54{$ۓ|T!X$ wK`Rm)zL{$=਎+H:-sfR%yX}!9;˛/K!!s9fr݀;4o4!- >,UŧJwf>p諏q7+[*'P ,~kիDۇ"43Ȼʖ_[ch}k!<emmne{d]"eH=Zm!Yl`6{ە`--IJN%+^Nd< 3jO*9c 8eHtD2hjD;K'ǽmrOo ]~e=䙤沐$\j/]x=1AvdҴx:B`Dtb,cVqorxy:"[3z=wV֐-dLwg.>G7] ." K#,j j˱ / ,{o⭎ ! Qj{+t^S%+ŕ[.9II43BRP׈Ӫ'14BB4HfnY$xA%..|؞ h;^5SSY;X. #I?!h9tbm&^)v2dYhsn$ b|5SEm"Z85ZG,ȦRk7^(ntI浚ꪪJX"9H"9 uÒQ sV DBE@a#rus[Dںho$п^9"ٛiޫfeRQ7\^Nf30$1VQi^|-)% b:p_9դ~Jݏ*Y볍B !;5@XictSU.)@ X8 \n+ў2AK%G& ؗepveA)m̺x'#dk kYzKtxrԟhͨ(BdA#EahFp?.*[դ2 P^؄IBpvd_o2qh~ܺEgj$dI?H~ TO@6N b>.v*L mx(UP׷?Qʆive*R+[H$QƎ2`dQ+7 q&ν/˖'TLV.7m6LC.,|WxGIxKƁ <|N=+dEpvtni;Jo3=+ʁDf<'jl]&*ǻr%D-'Rc K˺>B0L?~ 2xEDeL&Zmkԙ4}jge]^QK?G8:hزCNH!t5BI⠦k%I16QM;݄Kj(Xζ +Æhh鏕E|^nQ"KQ$dV ޴V bXfV%u@B񴓯Ui.я}bwX%"GL*އTh:mi4Xny9%0byßڰ驿x{W~*TU g{6R _bp~uͩ+82I:fr^:-\\4N6 j=D!qrTh皭3 s$['P(B`'B2(wW K?\KgTD ?ڞ@K;-n\$rT5M4Taw-B"ЬTP$U3?[K>x"fT,XN]9qh< 嫑,bnBFa- ̺ba!qVۓҮA&/z4C U=h bR9  !pT n( ?%B"=")蔆ۣD%N˧^ϑ~'\n>v=oda\a M9GFnm4𼚜+vꥴ{ zԗ t-;4yʠT2ق <#K3ͯm`qcz}N' ; papȥ4m5g&eS{66pBv.P-T:7W:C51f SYs$ec;3[ץ SK OD` -8?cZPofԶlvЦFltjHPM`7"Zw=U8h h+ s{fW H}"*brX+Ņ65w6'.}&mdջ8=L(nF45ʃדr皝 cX`pd5v lyBW([DaXBP;ylɈO~ FL*%5@LI"=&0YEp}onaEZ.$v77lbmcy "54ͭ8 -]Ap,+0-_VΦB49剢]S3j|az~fEךa^|xl[gpa}Gʗ_3w YZOxCk=1{#ɃV7aÔCpq y H!>BpQ>(Xh{LQ,廐#D| JMR*7qٟ劖C"1s̎&JH\pZ"f>$? ѕsO=F4c_Is}2o]nY'p3.ωxZɿi婿]wMWW0͌7kޔbC/֔C,tY OE> 7ks|fB12zCDD77+ոw>o(Uԗ<qnYGq@=@H=s=K~ kp{?VTSB]JĊ)S]1zts9LSwT=[LKY{|f?l߾w+sצε؅^5.?cf.Hyj8檇ҬϔWwVEX俳*c;*eU$ZN,)U+R'Z,ͪckpn_ڱńfk k"l7 m;ub%IS 77"\%>Hz_P%&\}`K.q5)ygs@'SV$htz|ïu5Nq%rAHZaYugj]4\c '0cGAb0w+QtA}76g']' kʳˈAeݘv]r\.Bwe\ޕ;7wZ?$3Iݎ3s@./[+ $P2`5bwo;-5?  :r`pb['$ X0tydz9; :Se_ĥ&B˻s^:DwtЁ@TČ|{$Áِⱖ$d]Ϸ+| Ĉf1iʾd 0\ۖ( 2)o˺Ba2ɭSb!0clNI NRs Q i N(~?T/ݡ=tibJ L*rc;V \ h])-M-]iCR9Onje*1{w &  x~msIY;l_F;X0K# @Kaf,[D+K]o0FK, ,{:,8R"F0#mImMwdu?MxhO۫EXe v12I! ̂Q1߂yٍiYTӘV@,6]dy"{z<e'%4\SC_W&Sz0VY-SҤe~I{xeV5uA]>C'r4a\rjٟs?:E4k8ů&nĞPOj/kAOG~?JjasX-Yr.q; i02Z̈s}.C ͌W^ۗuiy2{v97Mз&켜@Wk)]ϑʀ oW0'#I踫Wpacpl-code/.git/objects/3b/0000775000175100017510000000000014010524045014710 5ustar viriiviriipacpl-code/.git/objects/3b/a8321293703daecf80d1408820df5d2068c8170000444000175100017510000000156014010524131021607 0ustar viriiviriixTMoHs~EiFZ_K$Unb c0=ii9/ի+ۇ|tGEJ0.xs+I_d%K?(eO%)FdNTMR-4mt;'Z5БkczK>I6{ѫV o7ҵ(=s6ݺie{%7|E)F?ԍ@'i7|!/ V1dj催Fc8(t =w.14!NjeX*8ĸ봱ߑw$'/GO|?wȁqW%O @l/_< |X!A( @G \F>F+ʄ1Gyz78Gq61)a C0,=dd$ q:q8BSf[o)rQdJ6ݰ~rlk@:jS!ϐ|G G>6'N2d yb-0sG%?2]Lr7K,$Lv5]Rί' C)3}jA["4kuh+z6§< [cqYJKs4FT/иjI@kIf ҇iS7qIPдz4$r~~pacpl-code/.git/objects/4e/0000775000175100017510000000000014010534661014721 5ustar viriiviriipacpl-code/.git/objects/4e/744997e3b8fd648df1982a6e60cb50e25024330000444000175100017510000000011314010534661021642 0ustar viriiviriix+)JMU03b01TgY~G7EL,B٬` ɮ7 @kIh$9UUwO43`ɁX3ӗ[WߎѱZbџwЙ`ܙҝ;JIm{HmEp: M.әZٺ6޸ODƱZ9~d khtO +ux:dLc*`~.c5 {x6gT0uEATu>S5; *ˋ7E8PϏz98Tӗ4c]U8xfh H* ƻz`*WUB+hB% 5 )VD=5s#N u:pC5|*@w{oׯ7w gRóP*&Z "Om:^m6ys#ڢn{զ|}kR"UP]6 U/b1Pip  2$.Z@h|­: _ÝGUӯOgN|d<_'Cy*b+~ƃI,o/:㗀%_q8F`s&aq8"V?LFpߓlt){p*Ih|i8ml==UqpƑ?'/Wù)S Fx`< Q-$ØA1#߅K8rU[Ϟ}j$9zDŽtҸB3K [E vCByL8`"A7DlAX`XJa8әޅ)B$AXJMzbBШLn'w` 2$l/2g2tԵOgl9 wV{Db~LU[}> o6=zPrX9eIfoʿ>^P%L%jsuY;iAEF}>S21}a3 6߸5yw\\bl\t>Tlh N XMU6ǩYOZ GJe&%H(Y!lzk,(GAÁpJ|xd-TLwnUgqv[0zI*.@Bp}^`XV/[ܖgihz<.B4¶ʀ.8e7z F8 RoJR%/t8{-L"`+/j%+%/ԋaHP-DKUWKWKKN]>̓-ƚM kKԖmLaU#=rzд :D3x;&.'ҀB\xeā_SO-i8YC;Z:娧^7f tuuOA~@3u an /ָn]hbѦf,wv9tuakꃓwWg/pcI~O]?Z # õ.1#X)f.B5T7)fV12،x~: UQ=:6Z fMXɐa)D@zs@¬ׯfGPym $z;bR~C5爦lyc#q ZEIO:GG;:rH$'oQx QF2+Ƌ`1Z P\:0L9{`è ^(>!aHlWic]=X0ǨT+)pJD7x2xR /ޢz w;PCcHDқx"о;>XQڸcbBH>,xdϭ&)HH]?x؂ IRJKF!nʘ?!Yc^_F_F)P1 C>W#n^N:{t8'=6bnqG \:kg"@:ܾq8dY~  lN (tӃttc AGutxK&A7CGut$Ct } `%c3R ݣ$c>UHGWq ,ToLILg 2Ȱx?G'1σdBSȴ E#8$'|!:}tqXp@-^Maicyw`G#v4䩻x >{Ϣ'1 ?\gw\]nWQlM(3z[LR|vwLYrʝA) *ʵwJ쿇>I )1zOj.)}&9\\d㳻~O{24.CD*21 8N2cL$|vWZ\xfi<u %K j56~dB.pkG#D dlAMh: jz峻2L b ftJMgwyƫQOP`5e i R 4B%h"$q sblc$Ib{Q4Jd/-$r9E'B&_Om $[SP1Cu/*ȅ(_N2.R.٧/vK/M$JQ6N•qB8t_&4(D\JNckNcCTw1kj)Y]bS& _qĆF81_(Q JH/eٟLĜblt=??ݣxgEaE) j1JtON~#MRYZ2&8*wC8<_Y&AgBޠ%;NA'r*Mc > 3ET 7\Ddb>8`S~i>) dG0gfցP:^C.m 3SyLS)Nfq5 bB,?·ebO$חHUM`T:@ka} 3xBeWjCh_2 Gf5^ef4Ѩa5;:{WUu`s#iʙR:;OZL[μLeYߙ_>*~bRN۬^ " 3 /(QN>Py[=QsZ('+'Byj4g@7h%A~xC˯*:7/J~MoXAI. APuֻ}npca[Ǽ _n<)I^jF~U=yƷrkuZޜ> 3 H.oUȒjuLVG(k/'l)bfS;x^r΋ A!S?y|KgC7|2`GiHٗ?~B ,~n5Z+FgJrKφ c*^FCsy<ҧ}72i0jj4bԼ ؅Ti#,*rRj6qGX֎NŲQGq)=N-O7D15* JyL8Z nlżg#E`^03y"`sUeJ빎/В9o>637nDi?-/kn,n̺tmuoE!Ԥ;zL r` Q)k@gDjϢzn{iCf4,%dvtaq (B ʋ8*]-kR'S<_mz q¼ d0E ҝFJxCq(u1"UЭV :R+śKF{/Fr>z`w)1W4"^3`]xҿ !F$l`jo\8CI]: x67`$Y>HRCt\>.*3%Gwhc@GK74 8ĩ"DF +P"9.C*= ,j;4myiУ:b>vOo 3g@U@77c1N?x 5pGj88vt++lPɱY 4ԵЖOU{,_wnG$ ];HFvܸrW㎅Y])^gZTňAŁre7 +ͅ[V|,^ᒁX}@Mq[9r  =Tc$[,ӨR*rTyQd~NrNuXF^`KQin:2Lps0S -^q๶BfЎ74h2L9_MBhgWc= |yNsɘ32W{j]!`;M45Mkˊ;-매ʛL5MB=FM6KtEE/(ŦcE̎(ΜPd^L2ay{ E>R_S5c(Zܧ-gCa8L\FLIG/l%_~J)&6N 'j."BMY*8L7xQ89)*O<$Z#Ŷi?-ێ}94ulGD%;>S2Ii,*Nר@nvjZAjsZ1'5C#lʊFoiC<#R3h2T!rӋ5AMʳqЭi_Z{Vچ oLZ:A!Є>=0;&!ř-=G#q4u5B7ЦU'Bv/ |h>q=FuqNp_*G\Z& ]H:e? 5ӏprlfrȠOW.I0C$ O &!; D?`|\7QZg^-z1--i|\[mQ0N Q%Z$_P@F;oWpQ ƲԐj PH͐N.:L6_nn=~]!ZN0ī1|q5ݢij e1Ȳ9#G|QnU=.1YtOV.yeX /= rJ+7cD7]k=xWiog7 ,A:ىx4XPrR3uctǧ..Qahouu~3[z1wM6jȮ*oa ]kp3*,upɭub&Rvv8IJ;Qʩ&77[*S\?ZMB_p+^&[I45īFrE0՜w$QUgrgاo$]>+g7rF) 3pfU`Ҭ _S'"6y2\ NO{& A.6T:בń_DYiH9N64S?}BX75QWyt]Q6ݘWLY+Ǐ k-2CLK} [}R9x\NF,k`KJ7E&Y1~YK^t׶~4srx3&7lp?4r1H |{{ rEu2 Uӛ nkE T#TVTkq9J]&XB!iϑ|ξ _6PDڲ%<sDNAVw9N5-HnX!2KӨ4$ yk a*0a2.NF?SH`2l5wP/y,f-&j.@ve޹~ v<R %=w ޔ3=ȉA~-GyoބR۔Y. Jy{D^mk-,ʢU?olGxY] I5RD憃XJ'd`HW]]lzज9 Lif9ݝyLGKgaQ Xܢ.6u+m垂/LiRA&|csQ2S9F@}3Ru _'0 f.Șɏ󴶷mšZJO'/MiY@O<8-W}OS}Rk]xXg߇ӮZRZ:i#_O;~(Vgi?ƔQ8\5ηI}[yz O%$R &]J72=ZvOn2X\ZV$Wu4 Akb9PмaI[!4z[d*-% ft%ҷBHX?zÀLK`hH#7Э;y.# 0PJJUݹ54m.ZMÒf<{.nQhǺTn4Y޵yɄw3;j0P8` Tf4'L\; p.TBE`pubrJ29F$[}5gn}iCE1[عY\on}M'bj2j-RKU9dޘTVn`%[UVpde漎 k"j8I!WyGf8VZѭ7U;]87D,n=M7[g!SN' v2}Lu}M/iUoңuGifou/!UIf F4YV'fS[L xm쏶I~!3s[z]Y/k[R#Qǻ.uU oU&u˜%T5F}_w)$oh2rحOhAOyjEס;ktn&D:zxnz= firTUƿA?;ڄ~U3䬫P"Dj=d[JdíB߇{* WuKYM)EDxNkc';M&u|]dw`'A1(9ev0cA$.m!. AZ9*^̑/"E$ͷ$S9c.n} FWVkcTg70IΆtZ-;\qSL}1 QȐÎ~sA7Qy04d;|0=:GI٭+d[WB\bQg*R\@)8՗ʜԌ6u%8Dn2v%J[}@<`#K$rPˁQEQ3~9k|LNGHSx_  _ dp/u|XϿ6ك? ϟ6}B90> Pú0l25WcQ}򙷊w<% {o|{a(V#ƅf2ẶsJxUr 5C!H}Ճ‹r&cÆAaӞ?3XChRo4`-+uEB99'ifA$`Q ț[lZ,ӱI ^ʥ+Tkkz~Q:I9S3Ĭ?~x6*Ǟ|J?J?/gj)}Pt-=J>0/p 9 ?CZZݭOqRw?N|jvGߍNNj93X ge?$1جOgPd/s+f||?Ya8ͶvrTR~O5{/^3JG S$SueΠX8vԣ'(MG V܍|@ gxTDgmMVuU}{h]&VMTrݚf]`J%[{o쐽ImHR@:V=" 9.ڷ$Zޑִxȇ27vH- ^FD%xth"k~p'ӽNC~|>փsXR^[P;H7N6Z_형+3}kM1miO^L\Of hg#^*?+ϱЧ3Y$[}X΀hx:{\7e-tPmd xQƟ4nsH Fk+Fz~|G3| sڑz4siL5dvjaI^L9:&Sӑo3UFU;z$&ᥒYhE1a>Xq8=lzV*%Ji rEE9_ Hf-68;4 a3n,CrRgϱ ,5wuCjYz}4rbyPKmt㗊7q\?7m%>NqqL~A⮶MOutO,;M:CoPk%MI&S͛9}J܈'cH/=&J8> 栔i^u˪~-VM)/MB90=_f(ێaē_3 5ZxT87>s ю q?c>.2A+Ƀ,{,TtsS9yOufJ{MNj8{2՘,$%=ՂZ\מGe[+f5v9#JO@L_Kt~P.oO_D)q75j˩!V*W԰fɯQ?.Mr(&õE)E9ofY8fApWf69w%W6U%LD:y2JֻpT@ 흚r^ø|*Pf]rdP [dvA gTL&8%[xIlړ~9ڠ=H[FR7V6ɴ3/9:ж;ɘQ6E#|\:e k.f$Rʦ!S3daǺFd|tY=^eɳaME!7vQΛqce>lN$<#cאSD.[ ӏ)0O *te Ckl zjv1~ViJ{N'f9+r.ݾ+'+%P}M$ [?U \ѓU.4d vplSoh/q>4Kڗ&Y"E*O_K_--7FëM5 Nbu67?>%f0եU&~<%p!ag^Yf0f1EgЕ(͏)sӚ"TAZALGgy ΰa~>IO-/0G2nOEe%)PAH!E[0DZ.0I \Ds@:A_(G!_uYPVqXԔusTHaZ.fe69ϩ\mdmrAQ& Rm*HF%'+%:ȶߗ`(Tƴ!ŠJe4b֨7x!k>1f,: @VfkrL+bߚ+:< hŽ d()/ ݀u'q׭iS\ -)&bMo^=l_^5u|Va_6 ˥͘&M-9]~=ER6HVR"VfYN:ѓE $4¿gQ)f`cVwe&`r  Fdb8ܒ'񔊶Nq=~9 őj OԪV s{ G6-%זD3 Xfլf45]W&sj̿(_cJ(2b7;;Tp v8R*F %o,yV`X| +˔u_ ߫Kڙ-2{ ]4>+0 zJ]kk}Enj\}e2yGiE8WʦS(J#$i<;qq@u}Nc4)BqA}LQT02vxI+tߛMh0g2TpПM;w:DI8Fӕ1ZEZ=8i@!^ W޽Pg>ӳ(,'<3n&W*AΧ,_i* ZYj B ajj7,q4S04 \3Rqw1 FME.{,J9 X[Tt#]sy4o 5p.*;j!s{ Y/Fg#tmc 3YI2?0 {B} 7ev\L&4WZ4yy_R֦K%w~zur#l 9J90zp^ 2fjQuT0caZFR h_>t{1Bh+%rjթ T@ochRe,CTȼKsA7TaRUU,ŒikX54JW8*M#eF-[^ p!"\Oc]S^%=^g,vWPxa@ ]\Y~;MAͼ1↕ m]$i+0i5Vtt0c>O@Am3„$4i͂Q?JOi4a&tA~>Q{v߉ڍp](͒m>~g#!V!sk|i!#mdӌQ8خ#^pvt630تV-,~ ߦ<@کBH')s7:\ )Abq"Nn؆;dLW4l~.rQ`#liߔTKv|By ',- 5v]N҇vCwc# ( Gn :ǧpx<ɱ!&Zy}YEzI,*}-I}E3 hE&GYӪK!w"\f$j AUiw]|zr{Y-vFŴ {s\IQms!aUw%nui|Iʅ5EQ#DM))**pdC}+c d\lk&WpJ;_ɐX30 #L${ʃP *xȠ4^$c G.SXwFv(JqDcBLKu҄YA;x$vtopz &bl5Q=(h{)Lj~Z d4_+3vQxチ&3zV}w`_KT_wD{FK7'JGt*8D$㬶l#5\ˋ4I+p69jB9#t.5h9[[n ݮғMw>-5L\o$يM^ ^2k^_2S',?+s18~ʺ/ngKl܂oD갯hy{_d ZZlSgl5QzՏLߕiseno_MI>;b=MJ}r5! K"%5jmyҀ_!)P\Axְ\}KϘNxTrRh۷o;'k Թ +\+ybr5eYzۡ`_j1+zvNXR (tk^dj:YB&&ue&t[Z&H-&TTd>`h0 îi;@@0UuϏ%$ "[k VHq;O| {Ls-d.e/<#CH ?-;R<5K-غsteFUfsЗϙl6}h5b$,>܃R@A!ZeJş-0a%?3n&.dդW̢d`6ФY!3JfrL 8bQ2`+m>}D?xLA9˃="DiIKZI珩ȸ!7#;: Z<Ll&3F1=8 Iu[J&Xa(WM>WBR4姘ЀTP=6Aw4 0y;ύES%FqEm,G0"&69e\Lp&yR[pt:>x{q?E]&1V0vs2DJ8'yQF(ϭ,V']IdƔi&(!ZF]Dng/X =|Omb*I.chmQrHKt34ߒSzךg !j @CN˫ K)*s৴?6VB܀_ 6h;ٙG. Wwg)ũ84Jİ1<ǧevV2:IWSy֦dRO*u "\h?g/MS1=i^rj-^(#fl_S3fl?YO@6`3hFKg(^t\'(xÔ2DTFXBҚDHe 5C)Rzn*^8 21#)`h=V[M@OXLkyӶҔvHBFp'S(c+OՒs[d#tП9>&;ruygA:v1g6c@5Y6E$\d>Yߢ򑿭$.yvvnnᏏ[PEm3o8ڤ5]+Ʊ<~8C,6]V"0;FSuLD_ K9b$M`.T1]Yv,N0@c^\5RDY.W{ #\RWY1IY_.ccz(f-J<3i|ےpF(+ l[SQ"W{eMO.Po?%h D J:<*X|z0:>RߣIl0^BVo[3 bZg;J|_ER] k52_9TkiԃG [,2Զ&y-4/"'waKBg\f,s1i wszrt= {p\nnbjzhtMA$<ޑf`HGS2P06猂MWHGօs/#czYĺb!ۦ*ܢ%5+ 5h_?2ET%sqUu/JJؽD<,g!͍]ppY!Smki啈:Qd*T#ewfBx Qh.[eB ڳV#ljLT $0@RGZ{% =T ~,2n}Tiҥ*wF6G"*Δ\w&'Y{N-{'ΓzL$}@}_ eU\G;sK.ɳr 5C0G~y*Z&:c8N8,H6횱7Z+feILfjSxXM:,=p.H/L:52kqF|Sś/8gj8ǔ?ϸSFIe 2n|X)`M.!Ac&+#m8>!|yS8ҍXz6=3>No6R#Zzz[&n 8Wl -F 5"ΰ-1+oW޿[Z񰼎6B`o"ƿgJ;KtVa"*]?ѯ[ڡ30+vIIQv2 vOkr{/o鈴6{&&1m“fAU4vZYO Z6Л4Deo@Sb]:LR<-T4AX k8|4m͟^1dr;I$OC9[(@{O)󓾠CџĎܲ{ALd1Е2tqtgXʼn}7Ɨjj/jlnq94b!2Fy @>|yM' 7ی|""Q9Y7݂BiVe-/s)9cUp?y/^N+[Ji>$K/ %n?Q: 6!zŋɦtWj^ؚArz,}.ݣQޫ}Ϫ TNW}N,NTz/ԟ՗zGt"]sh}o-&T!f|fQ0=Nx&9I'Sa^/x_c/eX2_H+7 )+HL19 g kw%581ϐGZ~LpiЙ۴/QqW~zpgO3^2bE"S :SRLss^R h8`vo f%eܪ]VUcqJZ'tNF+~A9O1p_F@)V1JhEf[|Oi.,PQ1"@$Dc{B6Z6zs&LEY9-+WKdx).Dk0hh zJRBSEUSyԺ@ҳUwmte~f2N݄7=:\yp}8w~_e;Mӂ8a~dFUS9/Fyg(K1ũvA0=/^ ˅~3@/f.yXNr&*^xԙ٩Z }Dh9Ҭ2 S A&.2B gyT%5d -WڴϊYa'uM V2 Nכ[3ty6_z`^~敟E˄+,q2-}P$SO/3]fdKd-L5ۢ=R[*nC/RYӻ.D̷XY*EiEq5+ m,U(N&" 4ծ'؊֧N-C)jKTN-p4$0-??&Ϻ9H$酤]JZM'N'vp-{Pp,$[8 4v3mY6cS% iN#լq``xKRVjoíov}]=[n}ǺaȭQDo}EX@/3K%*5CLq\O&MdƇjO] C5+T}@층׽շ/ I-a~tRHйhOMNȑFF(I&>(GPP41MJu'ՇG3$I*~s ?}m9x c E&K%͈Y2<~O)tV NgUZT!jKdYPQ:x^|%K0}yq6_y54EWulꕆ](21g8xO$.6%E7u dp4DW7leS3B*tNyTR_Q(7ر!OeH[{8`%l9zI?8qt|ìQ 9s*8=ٴǭ3dҪD]ȩӸ9if t C܍?I^9gLZeߞH얋_Ӳa::+O+7Tj M`I~k|}H+.G _u`k-)pb紇6lD:y`!W0[ZC_qE9lǜ׆`\ML +TZf2jb7l>7 W;5k |b@^σD6T ysC@& š:DZ>7䊫SlVکa+sL,* #∃ۊѯ [&42WJɵ&@ㄆ\[B>uNh =pƥ΀KdH75 ڐw\Oë!ݻ|+:IoU>MM^ Ko 9ЙurCخa?2W7j X9-) ZCI ?0"kvȺYͣDϟzq6P?VV3$Ϻ V!T!)ߍflTA" p_?x085 |/(pjɚ!pG<{pP=&f]nD^rKYiƔJӀ)&UUb9EwԟbJ Ӽr` KE*m6R/*K!cd2Ȝ1!kΠs۬3\4^)ЬK-cfQ6sm62m~Ykras0,ڽܒՈ6C:dD1\[ z5tNaH/xMR.!x \ך5$%sFA @oJlsmAI 5܅Z͐'&[q9 8 ƛDM;|wgJ(kpr2Ą6NOd~Yw,cOs590 9p0mZӮ"E.0V"s}BGQ́@(5$5Gq"eqjsX&rbHyMr`KOf4qUyU"hz<5uvgh W;R8n\ޮ ƉZh!0-I4]aeAIM ynio! -A>ird|@SD~bs=R!jhY-}&|6 Z2D,g8 4PlD<hNcd,YTWeB1n#2k[IF\ uMe4F6{@֪ck R龗v+/n-p5z5@Wۀqš|#>,e0ZL&&_l= 3㋱8]|O$`!m5M¼v=^r.2}?\ݬt$R_"CRY7b XoWa 1%\G"SJ ǖ\v~6]̕Y1m>~IY!o%(86)p?|4DzصLm*Lvm[~dGCNgul曗GΛ[ ]ZPȸ@*<~Jd50p=ŽZK wQZhovיw]w?}cXЛ_Kmz+DOFs=8Ҙ@h;2xYh\6k̖͜+c Sa| G5+wf?J)l8_UvсuE;.oP||s}ٷj\F\ G08#hQ7 D,IvۂK. %ZWà˩"{m&U#PkNglbCpkiltSWS&htLKt3Ab@T^yaplݞ>y<2cp @ e4Nz=Alo+ q'KH>۟2$w-r#ʼK8<q`:lTuu)ae%mHFW =S :-g|8d`90ҽ:&(4$!9UVqP h"HNGu{&1PQ$m%?ua|˩T7ɹ9Hl P99$$9 xirG(%TKNg6fO_P$Dw% EnJ J߸R2Dw{^m[vNDϦ,NJ 0G8dvGQ);s6ɮZWٶGt? 8ZHVXxmcQή[o;#k(c]YJik̨D z gbnvOCm<=~sVҞ/Ņv%!p#eEYspq#pML>`LJ!qpD}h#7އ$Ts]JRَ`e@Ki.-mE)vun-{޸OC8^Z:k2pk-ՏsYhFLLsx|*>-  +#D//v(@8Eh~_fǝxMO:qd2\;O׀]saWBL%pFt\<_0 ז@_\ 悆q휉FoG ٲ@TP=[U?z]-,=aw>qdd&GSIGdS&@G(O4b<pX. '6Gd7ewtlA dpJdI>"Ð2XJ&`>"eG['+*&|zzqy<.)JM'D;L0y8rrpMsYLtCл- Qq4R\Уlr?]b$M`xXaDײ;@YCg4vtps6N@ h˃ka{q|RNr+Q3ݢ$Bd &c 'P'9'ܑrnNr9W ,N 8l@y<:L-HEyNݽ9w3}iH_@,94IZ^7E1 BC{Hfetzl:Cq2 dN Ⱦ;(9#Yd DCv/d[a{8C4L`ň4,-T `H$Hs2,yddtZʣlI,usj$k4Z&1LJP8zKjHI$$8z0Y42n„dR>{`KǦalP !p$U^$Zˋ_Юnxɲ~A6,ǁmNU恝|hR"sXog3[pȤV { Kl5Es SDM% $?r,PӵyyN5]A^̎8bI+_C s+U)ij ]7?ѹ,b\IF.1M@tc L]:-UR\K >=i9V@O3[~z`3MJO/a)ܳ'P'늴$NXRNrڒ<mnhM'42Bйvкpj8x^FuiUBMjƉ(%J\vq٪ڣF=r{ρ{bUQh{.K{h.e) !j8~r @a{C["y{[,Ӂ]#&+ݫ83䂟F3kj-.^2^o [Lyw7g ~%+֡?c վLaI%Us `vg1XU{ )^KLcDX!wZRVa{!9Bǐ@\ q &-xl[=hLah 4ũ!rRh 8,7e%zh-keΞcY, EbPuƽXs #hIU}GRpM7t 2Q>Q` {d#x [F еpQ`l{m'T ^|Vd՘zb y`BϦ.+>s1*O4dP[*(PT'szD7AX *8B7j8c9=!k!smapla~gayjg7<:|ݢXwvOQ)X׸ā4侱1Vf`LʋЯS܂tj#NƁzQ<$xbTýΆ{]F=I0aw/b@rokÅ4y MC9 v]a2VS1 2ޣ/@.H1R!8]D6 Xi.$ fZG~m >Ab,>a8QEȻJm!S~SAށ`6oy +GQA7F.vv8 "~,nGn!uO"Y0tUՇB[(sO:І1uƻmib"y|p2j~HhtֻOi8KBC`ֶ}*;ԉc^ꄳnNcK*33P3@! `ZK@EE8h@ML7d!nj8\P(1>{Cߖ xP]W7Z$58jֺmgڥEM1pmc ECʒc؇\mTR%љ /Z%DB/luҖS('CFIښ +K'QS]&9F%fɎfFܼ Gi v*4rcz;8tF%QK_P&" 5z#EECrr8`ȓz'П9峽 TȐ1WѪCLϧݰx*ÏbE/]s[%x5 ZcnF/Kj8 `OPc;#F38CY !'"وkbPT@@Q>#~q•Ĩ8=גO 1"6c#$m-fKr SWճ?z^HF( y1371զ/j݋`vHEc*(HjD}U4EE_hK Ccu] /͂L<-U86j)$p,IŹ y6cfteFN}(tڨ\q, PԆ;HDZijtY{<` *ma?[@C:!~r}{#c7mV3_˅6n&4iF#ўuŅ"iuEA(`|kx  %1Ӕz$ cai%=>b54BU #ZzvNIhE/ )pn6bZȾ 82!c?'lEr &bªlGQ2ȀR^@2"4C}]#&yP&Rz~Nq2= =詩Iv,5$ї/Ի Y-HLS +#X{Tdʯo .n ܸLq( d6d!C`.3c1Z.|yOS8:QbO0b#VidUTb,8䍆aD@t9^3ظ;L6JgVr e)3_NY%٥P+&=GFg,YMl|S^4 ^_&X[VaCtEFhA$Gte,8#kAGyX Mo Hw*,D7c]q㨬 ӱ0qMw]$./̈́mH7I'TЭ0bҭ䜞BG 옂zLn8j- }4bH6R_k?\R< JVcj!ç"h9m%Έ@kapv JaN2*UGcz~#-=0b2Q]5%Y5K{@sL8_\CׅHG'a,CMI75pA#W,j2(* 43 ÷뮺 (K2lA=0=HTd8Hd e[Ni{Ǟpi`Nހx)SN9Z#8 7<|  q1iHfmW rih. &tf)#K-<'jWf}g18zdR-),K2hp!  }.no1`㕁>0L"^O0M 1)ۥ?g2JzDjE$[څT 8L#6-Ap=-쉅)<` ہ>TDpv?jT@!jj).Moݬhb*«iPdͰ`/돒\ؿp,Ů m1P:Ⱥ12Z H"i&(T9fs۸wfPY S'!PfHc,iKS^M>/1UHKthSnٓ6t"rDxbX[reWFU)d1x,4 s21L;Xaf_N(asFm/oh9pxiB?vKޘZUχ%{ڼ/I6i6[$a 0]6.u%U EN*șc3bndA,86F٢&_n~r<)&JkSŌYFY;G?5GeWu=hGYp)`*!\0pacpl-code/.git/objects/6c/0000775000175100017510000000000014010524045014714 5ustar viriiviriipacpl-code/.git/objects/6c/4ed45e9d4b0bf4556bcbd44f37b5957fc893180000444000175100017510000000530014010524131022143 0ustar viriiviriixXmo7+X-ʼn{(wn\[A\Y.!r@7䓿3RZ9 hw9rfgȼ6ۓoe9u q$tiI:B8m\Fz\f$d_ `ss')'0z<:+J-]{%6UR#ĩbAZlnzY/:] a>9-6^qY,͍sTpZ8VfE)oī^% b)-^urzܩg.Z4*PK5!'%m~`tĿ 6 TM`䛑ȕ+ܳ,LZiٸ5 ^Rs6WkH0FCH-صޅ:3P52HdYk,'d,a岜)vCmWʦv2~s>kګ GGO,٬D" xC 1 Sܜ6ϴFWj=ćJA6^T&Jb#xw0NUdJ( ]-il/wjx|W"abi4|̈́AleΩcP$0{e>Ow*fmabO]֪.B qNݷ8< İ&0(G 9$ FԌY^)ׄ3ٛ|"/;}ab_ӡ4p !5πlb0Тt*o9a؛IQQ426Z{eQ@A"c+?=|*Ԗ Ve>y,d8c1َ#ms+X,M0ڋPGſ90iYR.Q%yh$*wq?Aq9b&Y̍ٶ@2!P ^%Jjq4a|N18fb:50Z SkϡNCYTt֩ifZWcω짡m0ӜXTh9[P͉E[#ɱV=c1 κC/\*A<Y %̅;_B'*k;2r cH(@c;\ǵAhDb*l ДʈQ3C@ya0E[qf1+`z!_c7Mrr%&Sj!}IL]sA^ide Sd\ ϨUQL%T>-L3oV}_K;#LpծE_ݝk(`(a[DC3yə_قgټC4Kz;z& ɿc< 5 їUd{ǽ*~t)4z; Q,$1\HTSgOU >ͭ,eQauKI|/cU~DFZP0@yL Ҏ>?m Wr r|jÖZE \ 3<t hPGZ@tšJ(SΠ87p!qh%Fvv+xpƾ9n!48@kK[ߎ{ L6=99~1i\ԡDIn010ZU0`Wk /K7UUM.'V^MVȕŦzjYL_$=_&l9u #O<Ⱍaِ?oNT;ӤiO&͉W1*0_2zbWSى4H>"{{dqHcˎkāMpSCq pacpl-code/.git/objects/cc/0000775000175100017510000000000014010534661014776 5ustar viriiviriipacpl-code/.git/objects/cc/790415f917efe370229a1d49914b5a1ca34ba00000444000175100017510000000047414010524131021750 0ustar viriiviriixmmk0 vl/7XY^J)¤wq wrD?=޸DiH |,T,hm)|?^Vm2zS|[{D(NinGc80ѤL.ނi?눋I-i.Wl$J~Ua,iC`ħ}s)X.qE=([ EUwm4mL^w^jMa?g@/-} *dA3\!sTմѕN}P\CFԛCtGM @A5[u+Sy6 |=PsSRbݯILM1%'(乆PH>3o۾aƯz-͂*KLf,=[Ϻ>gKO*(m\Š-9{%쑷ۓDe$g0TPjjwV-v]X UY\жC:sx\ꠂλu.w|æ۲Ŕ M:`կCS,QĤuw w=+:yfBUXZP0Mƫ0hZI[OAU䔦=W9)gh%xb U0QDƟS)p%7~8'19[7%8zu.:t(܏U8!hxbpacpl-code/.git/objects/info/0000775000175100017510000000000014010522500015331 5ustar viriiviriipacpl-code/.git/objects/15/0000775000175100017510000000000014010524124014627 5ustar viriiviriipacpl-code/.git/objects/15/fa4b774a84dc14cf7778a7d93d014b795208070000444000175100017510000000065714010524131021642 0ustar viriiviriixRM0ZamJhIX!'i/N#|p -#GjpC>qc^! YBYHzNU94&(ݬFRv#WuvmRJ#u}'C#UߒNlδWc9{4H$Nl0$? g",,#DQhXEA`6t_?)7%5ֲCqv/|vtğ pM gMO@vprqc^l*/wO3spGԥ2DOq3 QCɨpacpl-code/.git/objects/68/0000775000175100017510000000000014010524045014641 5ustar viriiviriipacpl-code/.git/objects/68/095be7a8dd59e2174b9ef860c05144331dcc520000444000175100017510000000702114010524131021706 0ustar viriiviriixZn|A 4`@BiT7A ױ} bHș KlnZؑ> Z,_ϙg-ǖ9g}e3;/nkuMyE5]S }Osx,QY,yyc> Vj|$?B ڝ\W fg3j 5(vNa ukǿwZTz ~X=ΡzU N ~Vg&yyrЀa0^#4Gzi|-rhxuY&0?}h5r1(.Eżڸ41Lh1A7i|c[:9O ^ET4LMC,6”8&pi]Sw/y!IC/pY|^OO E\`{\ZF CWy 2Ob>35]כC4ЪI/M:Qdo:BVU,GݥIDՇ`?̌`?!1rDoؽno,E' ^$ n$p5x0r۾[[>t23S*Jp oP s_)l 3{LMQ>&4TS)ay~{}wKq;4@% 0?YI P_U)JAU9`D+zذv~ ,7%0BEs'/񹠎MKdd gPEa0._OZ:܈b:֢+ &z<Y-(R<>󮌽섶3H,6@jiڴ~sVS䇤)3/մ~km$×nf!Ҟ+&A^ E@L/ h-F?/\d@?DjY J~1GX42*-q)UQ 2)jI RDP%fR(P&=n6,t#0B=JQ%%)Rk9߲<;rg uQO(9|/@@dFC5&"zg}ٙf\׀ed9Qkk/H ΋?5SlG U_,sOpo4.Ttȁ@鱪8ipIuY3ܰ4bY(f:L-RH2ޗl";a0o_^S#B:HA=]~x] DӴWr-9lY4&Vˊg OȞBLy`w.3S#Oih: f΁,KXȢ@Gnw]YŽ`6pFU9 j="޹j+gچ=]-ۤ5TL=1a.8`M%P5mzW"C}t 12Ps.R0y>FvM-dӎT@/i8J*k1ᘭԌFk AtC8#h:Sk48TBN1tuCmiTPP!}`ZfO$w5u܌WdȂPq H?D;T9k/'$rz"_Ǐx>/. ƌJLp9a;ʕ~\mqFɶTN=e[lP7o}j]񒯖W߼L#)[~4 iS"e{jv=nF^ڻیA ^ -?ug/ a>+2VO`Ri(8^90Xo׫.-`%D}B*X%r ~?lѨ=R 5X|VXZdF%{nԊ@t^*CxRjM"~Հye$fA0^Zb5rGMEIS'ibB?/z)l$U#o'Wk߱TTVrJBYo)C tCFWEDE kB)m]iY1A:4[fB)E qqIIYL1暖B;G,.)@ CS̛ a1'7+a y'ʳ~}=ˆ'}GUe|> بu\6"t(C / ČO²fg+]<r5[tqd/XU +/ `yx>! }}-SS[>_>}1uXT%'5pacpl-code/.git/objects/34/0000775000175100017510000000000014010524045014632 5ustar viriiviriipacpl-code/.git/objects/34/e53243e98c26d66a227ede6fbcd609fdd54c9a0000444000175100017510000000043014010524131022212 0ustar viriiviriixmAk@{Wx1t&Ҭ.F cݠk0߃ ͱw0y> 3gPI f07 :Վ&>3jS$/)|A97]~ 63d{$%Ҡ/x $7Vx-70`rIi!W&֋L3|e8l8 E? ,@3zϪ`pK^ƨ*'f6 -$ŊEa[aKC!M#"DiOANM Iiy3g&ww1kCG4&7$Oy[h:;eLՉ`!t=͏`> 3$h-g$1Gr@CF0>$+\bcD <'l'j} +}76q@ Z`eU$Q$&1˩<3a=\J8R6BM-EYˡt$)Z.pqtt@{h:B'$l~eTUug=U"z; ?GLcHJңhI*qGU]Rڤ$قΌp9Mf;k盃WZa&W<L𢟌EK mI ¡XCK*FR)0 H+҅^Кyn(7Z, R}5LKB3nêa(\<ز=Zl`*&ck3kX8P֞PFnAE|H{mURmuYU=IE&fZ7+^iq$ 8. |^8H2*έ[`Er`+?7XŶW].XcW˥m9A@_ظ^AFR r;CdUsY,Y]<殝i[5:2߁T'7tD@XJ\=HަvobCKLs $6%{}u</ZWPd ?eYO "XXpacpl-code/.git/objects/1e/0000775000175100017510000000000014010524045014711 5ustar viriiviriipacpl-code/.git/objects/1e/7bc296b37e33ae0e1bb403afa8e5e06605b3770000444000175100017510000000040514010524131022100 0ustar viriiviriixmn0 D_³kI d_؅rh[, d;_ E݁ǣq .Uڶ XU :1AXc0Z,רC.F í^?Ax^m 4dQjbޔ`&u*]  %=(p'&8ex{!xu7;wxvdEUp:O6 n[2&oH)c $쿼lx<pacpl-code/.git/objects/1e/cf10cef10e389e59a2537fa3798ae3a69153760000444000175100017510000000524614010524131022002 0ustar viriiviriixXnsf|Q a]ok#HƀqMHѣ'y{ 9L4^c}fE*ʔ쫧Ͼ݃xx3hؙpRJڊ-jZvW}5{q^<ᙩEǗx7AWI_uאָs>0\̉K ܹ`'K`d+`ڸ`ӈaNXzo\{`pBh&$Yy-Yg%7I])+Zz)f6| .qMtt4B)V?LXnsrx4o.8-a¿*$e+]4Ȏ)2\nZ!\}o} (D0:abqQz.u5|мa}/[jJVN+'&޾76{Ct}ӸM4CxPooմf^KLnWf:i&f.t[x*&c_kLKci+;X)(~Xb1b1}%~ӄK\Mjyb}-Ud'rȯ˖@'0U %-EU^jaep8뻀k#^š0υN|a"v0})~;a/MSȳEU%,¯p1=<&$ MrpԒ+C{ɟ IԁH qnIÅƔPiPc5?7 _|a5qo=팶"+x8.amإTKPq9s1)$fHf,$"k+ XT4#5GKO#WAZ$G^#~}@+}:Zj#byE!2q\GKXӁ{dlP X`۟=p#[ Aފ~DɅx"KX?<܎ &v"v'@~|1ɤ{j{ =9=PY Y0TshƾgbQnjb,*Hf?'X =IpVJ$+#ZX=xjL&T稵EQֈca|3baTZݣ@J'Y.yR'ril i:dRX\J6gf/NZ]|T>ffcDs}n!yw6>l,LG%Q^~Djw_0'?%)@8"Bn^^jegQU,]ZeݟcaF`/=1 M>T8T_H8Ê$t +Ʊ&cn}28i-Tir%;Iy&C9R"t=hB @yL|V_~èsE#DftU8Џ Mi\Z)hߖ` ] x0EX: }t:D'GP_ ԄlEΓ(d>BiGv O箥=F+o7yo9.Ʒz @v~(%whhO 䩩AtyEUHŢҰ㛐a: tS E ^S[ lxUn բEC$ptNihN_mډJՐush>D>UBmC*PQV+P؉bRMӮ&- ~C8>P>6I8ǴgK{vNٓ_O$pNb=y ivDĀ 5)XI3% \.3gg_Vm7+;j")Bjw#Svd1~tW+=LfV4ivGԮ'vt1E=V5,,@阍b2*lArt{7)6Yp&HF=Èw3mЖYB] ͖2*ǥ.9z>e#tMw.^:qiTdwܢ$'%H,i pD'<̒`q+q6w6H~B^*#Q1-DZޣ"a Z=6.͇T7)Mr.<Y6TUͺsLRCN gJ?, % Fw;| 1pa: d:#{F\w&dz\^1T oP0G\I7=$Mlq ]WT-i7վFEfCQwfx>WuZN@\bv/ߐ9'}-,T&pacpl-code/.git/objects/49/0000775000175100017510000000000014010524124014636 5ustar viriiviriipacpl-code/.git/objects/49/b59ad16c40256506df443601ee125427acad380000444000175100017510000000217414010524131021610 0ustar viriiviriixVKo6u+X,zP~-dn8S[H9jdʠ4);ÖlP ęof8|'>Sp c#6QN.|0N8pÁ?U"VNqf\ǡDV侐pwX ?*yi0V?LGL'( s!r3 v "f,YaBP(!30ͣ!Z1Dby{5A"(>~J(}NQHiO8>9˘2łSLms%Ц< LE@)SϠ1 $SHB`yxTXb ua ,b&BDO.hG[v\QS އ.PEBݞ(A"pef~S" ‘˰,F8@g<# fxwE@vۮ ~^^_#i'{8#QH- K8/+#xj 4dDq}'RF@7JLڭ!# ι(\5z#8`57+eYRF@·/;^tP4n Ubacޝn5-to_柖|4y) uyL ȂclIbAzotdڡy̌:<62Lac?Xl.x}N,c1_U8LR& p/T"yi|j:FYZ?O)UX*Ta\o(6e*Su3QWۻbYu2c_xԆzڜtݱy [Ĺ{DGˢK,dcf^lGǙ9ߑ_ađ2@&LߤW|Ɋ!?0˃o0ڿ`&pxTM,S=pxqbjHb~ hprU5*+vIa;4y ѻ^tHOSꆈiETK|Nm6QibEPڟBoLU9SNiY->)'-NBL^cN[\?QwW70ռ70Wnu8[kjAB\YrĿ,@\kb @pacpl-code/.git/objects/0e/0000775000175100017510000000000014010546217014715 5ustar viriiviriipacpl-code/.git/objects/0e/212d3d15be2174991d705786001bf1da0f58d00000444000175100017510000000112014010546217021576 0ustar viriiviriix[k@_q/-IPLU11IZZ«]Ud)~̞o̬jO߾|7yO0 &Z Ba-1E3։\&*u[ ٯFzx\[D@&SWU`)A[uHDLd-v'tM!s{N1!TOo3SbI%0:a5?j36pK,SGWHTY26 !UThVBi< AƸrú (2XIqžQ%խwjZs*$\V~]'>x Cd%ʊY\dc QVxYiSYex51DaD[> Tg6Mmݛv@w=K=C&- vtjaTQ\{UGSqV m# L739jaof9op'XGS \!ZۖM@#+i=_CJY]^ h5sUӃ]:I{u51ی.k[}^t`B_MϥYN}?G]6m7ߚ%2Q`&g`Sp`^mL)iGa~ܸڟ,s}ԮU&mmN|^{yt+\kR2ڙ5u>;܂3|V꼾>o6a$Mv*W{|,T*T`^nSqc3ިHZk|nxcsXD:4ym/Wph 'Jt +V=mi̋sCg\v6gd{뎔3U^bwݹPI7-=F#ܮc 8G s<_jEB`ゖ Yv2]ѓzli3tpjZ)fB9,F.S>܆B|jEiam'w9ap!oOGͺ>sk?Clf`d ; 7,#_ɒ٨nVt B`NIëdgś]oYzA jLJXeH+xe$rأ]A*0hfYYîeج/MS:B]qG|oF9{*pxsG`u}&n>"jQ%NuQjSJ?^Grpj,=x:7"j2oxfBWk=B$9~Pi?}~~?z4WG \Jpy))g;D{eW;R0ujHX4ro'xFZJf)%Y}N'}kf `֮Tn1 QNG<~Bč[$eX|k9n,tQ|15lRw #QŔvo#aâf37c-WϻPdau1h9@}ڤt,ܹͧ(uil$,EOz!SӀRWFT/qp92Q/S> \S KB٧`6.鰋_/-MTX%=䌢VbWvrIKd|^ʄ{]NX*ؕU#Q^I%+^9hjܕ]:Zn&dḍؕ)I0äxqAac/?x&V,G/ 3vAI4g./{z~ixwd$UvʺEQ/E+@jjDMibGW:\^  ts%&E5>qTtEOL ұ )wr1$2o1D{/뽝:ħ  R 7kM XϮw':GW4u_Lܓ3q8*lGѽq[ -=ymmJګ,椎/UW`}34x94f=>:w*)5't=/f.]\<)VrKoFN8&"r-/

@*Gs=cJd1P9RcVes N:ۧJJ'6eE)[ɠy_4f(u۰C{=)Bs U;bF2]x̨%7z|qEKgWHBwI}|<z UcjR0Z%9Qw2 {?vNEpacpl-code/.git/objects/d0/782f58aeb6fefeb38faf88278fdcc5cdcbf39c0000444000175100017510000000125314010524131022673 0ustar viriiviriixT[k0+cΥI:-aV6zaQNb1Y24~GJZ(t0蒇$Χ&]C5Cc] _Aq_ w!qMˋm˕.m?%z ʚ>c@ZѷhW˫UZk@]P w(fv :`A{B; 4jت0ć,;y CގjWe>:z :x@a;HSƢe9r0P nmNӧ/r8q oVN~ A?HvNeq%b$,E~L;RHu\t{t> y]$%6I}GJ%5T_e*IVͫm4k.o2,b$nxxNQ%J]؃ĀއA]OX &}G4994U; e> >md`F ֫k8\̑)w#<v{(v>`┤'U/pPhpOϩ&9(ϥj瘾pe-*uWkDupacpl-code/.git/objects/9c/0000775000175100017510000000000014010524131014713 5ustar viriiviriipacpl-code/.git/objects/9c/79e4f06159040ed24efe5fe7d9392bba2bf6d50000444000175100017510000000015314010546243022227 0ustar viriiviriix+)JMUd01Ғ̜bMVJζ>6p\aP% {rA钌Ҽ"wEk[+/*Spacpl-code/.git/objects/5d/0000775000175100017510000000000014010524045014714 5ustar viriiviriipacpl-code/.git/objects/5d/ed98ab6e74631ed0fe9c938560b6cc460dd2580000444000175100017510000000526514010524131022151 0ustar viriiviriixYo> J^gBfE86P@5Ѳ;CID} Xsь"6 K";7zUٓ?їKWe<L]zV;s~gg](S L#%w"g,^Ϧix-;kw6:jZ-`VY}FպRGimT ӽ8ZC_Ige]-uhUiU>re_f_0[KBYi\\+ -7`ɔRumWV4ڃTnv[o*$VkiFuA6 Bh8رABĆגܥ/xY,u]Hl\/?=XPW:D{ON{VB`yx:щ %~ť.bʥ-,\V7MZU4CD,8=gVcm_R6azmJ,|[뙰nY8[5]G,sN[o**n&:{;2޴aE u~䥆#rt?_Ĉ@#0޲ Th͂$oƮ$ Ntm2^AͯGmiZY ІMEȟ`6E6" Ph7] ٥HLen-S?!A|۶#)'`GpN8֙l7kJF7=9#RjC }5B'*BoHI F.I?xu&  -N"W@yQuqJQ[l n&8`;=WQ#o?o<-tdo7AlV[rf1A9r݈p"#9;.Djyk ENPsZDnX]U!@1KDw]q572?h!D\(]FdEDZBش2:Ii>ȀD `*FZ^3ۈ}[Q.|o&3u6^dJ( |²/>vb x _&U(S⛋ڂpwg{@^@ZR;3zFZ$>W, GN@= +n^ A~ʎ^maYnG,VnYک?QK׻-liږDA?Y\M|2D`UMDoiq}K%G=<!3Gp\+( V3.݇wSAD7vo 8f>Gh4%ȨԵ^!L  I,Vʟtuy, ڥ)s[㻸t&Z=D]t/adg9Rp39 e-r!ju >_tQ73[wtٳV^ѥIaj}.Vd/ޜ__0q!~<~$A֯6/[gRJ\R8]q? y7yuR30I.`>\JILےZ΁j]SDE5*W>7F\1EA%:<a`s&&$L(qf47!XuC쎘ї$*.fu}Ⱦ7/#G=a ,rR\iML, P onEifL ljcOArpBf$%4GC!I=&P֘XS㖃: gK`H^Bt4cO<d&i&5q[K001y?ߡ@V#g0I`ʬA ' OLZ/%e}C=y7; @L3?)Dr+GR-J4ע1P XP3Bщ#3%S6mWkCyޠ)4|}' U6^C*H]x]@@.V</veAoO9;Ng鳩ȅ-RM$gOݾ+]Dۨk?:x WtLk)Os>7 GuNm]]'~48ZO'uԱByӞϛ^fzMi x5}WP؃ D:HZ~UfO-#ҳL:V;{nCjx$F6Xӿ< GDE4ĚN:F0~( M sV"z59^98fXsג06Gc/s! CdKs $/CՒxn vFcS !r6x{;x<my%g_5FdwZFFwkr1 h?/n anV`GuA$/hldoԢ'H}z _Tl@wYJ=q'pacpl-code/.git/objects/5d/6b47d6194f3c9567b8089c0b846c5254e728200000444000175100017510000000111614010524131021504 0ustar viriiviriix[o@_q$^Z$MP\"%(Q{m,ֻ/S,<33 [>$`kK ^)X'Zp )dio˚]U)X8;I܍oC$O`L%k=k q zzBK*Թĭsؐ3 V8^!Qedڠ/@S=dQA[ QȦeB4$&uPKc8)GP9]{;搪(=BjeWG}3_ =DXBϬx7uvm&DY vuhFdeM v}f-4$O?51DaD[<TKF+]/Pgg{#9!ݢKA2U40!mT+ձp1GC;hAX-Y7f,)UBVc-nЧ] \jj/!Zl!;KD禑tlkb']hv׶t`B_u1;b C_.)V;oW@[+ʀ8ӫVk4WhJj!'t>d X%lQ`Ipʕvu,r f簾XrγzRYotŊy{"EٙыpͰz$r%BTLs~pC gwcΥs^۽[ɻ S0c6;5׹^vt`a)7Xܾc{ 6o; 쭞qU !5ľ4X'E<,ϐn'%FdY"ȵ\K̨kQ]gMۓoj ]o) +ͅ``1C[0a vtd9SlT aHʊyz6D,(+ ĕ,V1R@hQK} Ybk>G cpr8갏,bi|TbNk5jwJ v g}J_)|[mV9U\t:t_Gcn)Lߋ*PzHi 5R,=2X# G27`P#++n@DgED|7͟C%z(LFNf LkڋW rK*GgHpݓT@YB I~bT2i\.aruJGcN/LpLF#9X9hlژU^N*1r$b-,` Z3*r]\nѩIC-)4F1M2DCc*8^ `0muT^t)mM{(pacpl-code/.git/objects/72/0000775000175100017510000000000014010524131014630 5ustar viriiviriipacpl-code/.git/objects/72/83f5501a8a5263d5db4f8c2b733411853931960000444000175100017510000000020614010524131021401 0ustar viriiviriix+)JMU042`040075Upt+K-*auDo]3E̼Ĝ sQ_?hX,~OMw:\LL  rRRK dɄeuis_)7Mpacpl-code/.git/objects/a0/0000775000175100017510000000000014010533130014677 5ustar viriiviriipacpl-code/.git/objects/a0/8ca2a41b1e448606352be60236c816d34eb2830000444000175100017510000001665014010533130021600 0ustar viriiviriix\vI޿ѰpRmi. Wq TPP KϾ_D^*=gXyr_~3s0 A)(?VyY{_{/NfA :pş$^DcQ%ٽ t F%jԡ_aD0 D,q8 i`6 y,Lgb&Yx"?/JƋăp1Q<,Hu0H0ţ?tx13e I0\$Ժ/]Qnov}@ホyjCM:pׁ+L!h~+8+/VuѢOjF'Ͷ(c|*r[ۭfyjwV~Um`6 u03e| LKSޮh]p*qx5F?6}C.w{opo^wY޳ݽ}PCkd6^Yn.m,[ `Lƹ8emrE%ؔZ+C>?`Xѳ(D<%+[1ƛ\HPI+7 {EU#y]'Bt`7n!i!|Y;lsS0+:v!Fʩ}6l]p(* Qy,P|z_|)E)\C>/9[Kq$d3'^c}$ G$sQ*zu^ȳF?NCc3$Cz/Ґlq߈vl⧟r>'34 C;/Vכ-(F=bcO.A>rlU_;ZV PyTA*M0:cf8lۖ3+Whɋdq n`#v}AeZX? %GI|ڑΒL2[@C ~..>\`.t<94է &Q^l[gyU.{`Jm2J pڋp8L ?gPkRH)҇*ih!Gbf]!HM.]jVDk pO ߖ5#R05l5Gw"oF،/>5֪5! ٚ!YUhbHx^uh1$E[0O>?;eL uX+.gГđ2J*()naк(:T d )A00x>?ss;\pV| a/p$PZ]FW5 0jÑeP96˞:u~.}PGSZ6ۅmҳ dǽw\y }Qېv]>[lCu*Ztzj!tQp`Vd}' S%[{? N>+{j(@V41QK-4.۔,NX8d7 :=\7=b$>lVn`.%3t襉 JqR;=ڏjڨԪ瘣\7+`~9aYYkb% TId,iVK B-UMz*AD~n#:# J0 "}ZT䳒W܆EHl#>|{k1ha׽Vϣ6O+Փyz($y7i.Z$Ӫ9jKsP5Xzh&OmBAz^" &sCKNϗfFji yB,e-lh0ƘoV-R&dW]5pJ\i8av"#,= ڍ!=v#?EwH{(©؅)jZ%xf؊2)#RJ8+?u-m7ц-IaU(v!sdè\,ׁOf.GpLqJk= l(o"BOD6ѿoE0A gD1Nvtٝ?8Ð`'~d-#@T{Ͷ,]s Ii9}_kbwMr%GL*Sގ.n0=5Zo%Ŭ!XEP3P @҇'w\ܻtޏf`cRr<~Pz{9.? = A S~PiyI6!TY#Y=tTFk]d -o^q+yQct_ϩ;e' `) _qu`웗[QULݨē)x(HuR*QdF7 Tsb1LP"Kha"$D-Zz0"H9iiU$+UD޷l iHnӚ@]H]GHK,(@R$CXAOI|ۑ>ޙq_L&͏5+tjJUo|%L/q;ki>rvG5g>ؽl@2 4ת|MQO7BRC8^$ Ka>IH'JbhZ"Xr;+(R@`~l-)zanG k";GSMa cBl"PQ!3;)b q52kR_p)ˡf{ 8 HWc4W%I,Mo6[OGR tM)zB\\>GznD ._utİ))uONjo"PL8i^ ~с@8e09}u!JqukKp^3(OXE5za:^<5|J3.񮍇 3FM3X"~dB`=,,_elRXX?fЦmi(ӿt4tY^jf*s IٮևyX `M֭}̐)~"l*H j^ v߄P;@2fOܷ6Nu" SܦN6,4Gzfp@jFu)7u"դ's`Z~6`#28cţ %Ck= L2~sp 6Lx.G:@(@X5ۈ\"w]E^{ww8 x0PZ &!Rꌡ~B/$#1Ka%|'ep:1%G|0y~1[͠x'epAYcra ȆCxJȆl +b0 h"cg -V_ $W阳Zzy-P[`V ~]y7} m8!ì^!'R.AcJe#2>SZx; ]flð"|y^1W{4SK8Iր+B_i3:9_DȤrB \ -k{ <}:}?<?ϔ4"eaxrZ~|E0Nny&eK"A4%w .Ü- c,Vl $mO~N:%[0ijvAlFWFb׏UAR<_ԙ晬 %_`=}B`$HO{h?E @D욭.ӱ́~O=MG뗥b1.n[CǮȌG,S:]3)ߟ#$EI~q0iy b@NgiҳAx#nCIH+=Q8~,u<{YF\| 堓a ӑC՘8BEzoYlnU<3HWvZgt CćZGy DG.pZA!sU#6F}-BOߊT YR$xX GP)|-4񑦄ca*ȹ*uzlk\5@渌~w9*;d _N2HѬ'y0Tr?ޔ8+HJe ؏aEyu8-%6kd5՛Nf C-?RnC -ɐEJ"LD;Ƹ6b'œ_%ֱC%VVz2LWÞo͎i6me+,J%Of^WyobB|4c"]16}6M\! Bsp)mQFi6z[ގc/ON5E rF{HN@n%J]b[ Ev#.ƃbMp#ӗtV3% N#`/Yl6 `ZC|9?0%h|g->0 ДI3dst?("| Lզ:Y_$U-Gb+EiB3h3eVE04-5X4 L5{hՐ9ҋZ,6tb'YXҡ%)^- vqD#UwQKa>OσegpTK> ,+$ /^7ǚSr*y)IV趕2:e@PeJ؁I9:- ~ڧiCaLY3:0.qKȽQ%CeŖͶ9M[$4#7Vhz#J5Wk/ UJdb()iWZe B렚JWˮtؚf*`h=c@U2JgIa,+[2LrŚ|( Vhi~AT+j1K:B## 6PDݮVjq鸴K!˺ NQ-u"+!FZ+^ᷮx Tk?: U$zJKxԧȘC"x|&3y_phVE*#(x(3N_vr;2Řsg d#)qM̗\ӡ$5=*mrM$[ y)?XCUP{IJ|< ~ eS\㴼N5:c)}euٙYHb=tL֬ȔdoOÚ(>z6x ?ÉVFrEl^|%6)Zl,H d?"aJc2!^]=ʻnЪ9h׭: oɔ.ѩ=R&z=M:ѹgMnGlhD>US-u$ѐ{s8x6b)3LAI\DzY ){O5bH(*g,!p9ϥe5u-#O0 R nLh9E<(| N?|"x!QCs*BXAil4 /L.V}h]Ziњ҃ԪL\\Febǃu"-idels(f#Ie X60KS+V&]|JSoSD7E`F">Rz/RHD~)0CӈsB~H%DZ/a<QCo@)/z7 @[opacpl-code/.git/objects/c2/0000775000175100017510000000000014010524045014710 5ustar viriiviriipacpl-code/.git/objects/c2/4039fe42c15a4e16f92e96a94ff05b6497e2ab0000444000175100017510000002431114010524131022050 0ustar viriiviriixk_ǖ)j:F8N서( L00\`oZc[1;;}VKj~&UVZ*.م{|84h6͆4FqQwm5uEnemF7j;n5==DZ;h,7K7^mU2qd;VIh^tL7K0ڣxc% Ge}}_NפONcעQtoluΎOLnM'駽_?otv=hvvOls~;Y7 og plXsV.Z; нt=ceKfo664M~na{ wOkP]Ec1cQ}<6>eM`]gw,z,4kMCxV;8Q2>%LQ84N3rIknܛ]{Yw6g:1(꾋.cfCMcMִ}8x@m N{`zuָ]^5wqE in-L7ptϗ͆4N͆(siұn4HxHM *y%E )'IOl"Y [fs{lhDX~&%R[c& ǂ >]p7`˰0I g|{ B/PY6?nI 16(z6&l}x/p6bβѨ@ fsM 7X 7`~*[009WG Rԏֻ| ]L|pľţ8I౱k&KRRÅ?t4@إ Nyʇflb@\NfOr?`18y\FJm}~҅]-pF|fcx1 ]&=EBSdꗲ< O?JX*-zn3@+rʬ:?2m8bi>{y:}dʃ6ǯ1mGx¥%/xOJNO>@7\~7!ڣi&ěMf\E!̷n$;g|Zմ7tK/Y$6>0%r9ysN266SCM6tz2L|dY`I/@rGqd,Rpm @Xa.ضk97ko`T~u[ JdASG;9;x+oە?NM $ ROFx۔H<$dd&\/+f)|:K ,4s8S _I<6*ƪ_$pNnY>1-@)@JHxxb,])o9-Iƚ@2$P40!HNlG SOPX7欵[b/t(`gah,}" ag-R~zpu?>+=3&,~ࣣ6~Cѷ7XV \Y}||x\??/0xU!7U .W^J#2|DE2K,o4 rkۛGlIӢq= /eY RZ {wHjdSKyZn>{w4BS4/R֦17Er!ac4uvvL1Z/϶xQh.T e>t,"_?1 zoD6Pv{mH> e`f XK:3 )n=u "l@>g)쐋XԈ(+HĒ _vI>P⼖4&)y5ek;U!BPP[Ѡ7,h=kk4MʜkaTO[ IMאE򬽙fwF0uaȦgޚ=~:K*o%n)}땞BE`Х0pXLs޶ʎŮj{FZRq=K;ָ~w_T= )D,>}o.Was}R=;;l[us=Pk{պw\ֽ1?nMB M$)PC]̦U}Q6P|Û,(m׬Ў-{€2jkoW(Ar' zNIQs49x٤P`I.GCVAW]vEZ,ʁ "Fj [RZlߟ 6_*C[!~7 siVZZ&J[WY|LiSO…lO{PEMq7K&W5 ˆMyRXtk=; [?@ƹ u0+\(~'rKkĬ?DDR&ō2*.0CN[GG?C+֡4̍t#&6MXo79 V b}w$B= m hՈƚXX?"}Gч=}{.~^gK8VV:˽6bMh 5F0n`gz x᭮N]0W2w :߅B~_mn}@X_i\WkGq܃,To哽}USqӥe:X~yػ+~n:5$Yf@Ԥ7nD"ןM91X,S!)$EI0i!aYd(bA#.1|I =hdU_c;MbO9%./)R -nS޷'[}ɰaD"@qш<+D)ţaً'V5U"i[ޜ(Mi`D| hgYhJJh6 /ӷ9[xYNA8)V,PpK{i[@ x\T$ *Vlq{#q?}c 9_[;F*24 AUO@Wb3RT M0'Na2GL@ SUZ$Aj~y<ƿЖjcE{=La4=D+4:q`k2큢& 5=)L Q1FƤI|]_G?Y rЬ ɢT!v3: YL 5B\b60f 86E֚fW`8*-^17=>t[*Rm촏N $>mwقPq4'*ƫvFWL*P(_k;=:T U;a*<ݺ`;jE|z| i BUV#4̣zGL@5vm^v2M-WB;2eYI*VUlCÇl=fL}` nx}}]OksI,?Cq c k"lpzj!z ֜}2R<_I[Ԗoqܐ ,RKƔ.SsG `L!BDbEo U4""xmِaJ}f<,B:K?LkyL qE&%R0܈^1{Xu mjZCszaA+j 1)gLai։djW!oy '+-Un1 ̾T5:{ f0b 3°)UKQ]A)f`&B䶨)WiA#dqEp@EP&o|M.Gt IUpdh@V飰b>`9-i @h_]zcd$Ex/'NX88GI}BBayJXsDlH|AU=:0vs}˿]ݲ6bZt^uj[xwrՅ[?[>>Ijs?`_[/=vu[o}xuzYRLT_xfPq?m*Yyxfo\q,ǭ)I2fybNp'Aw&sn GlyTQ +CKsŊ">yφbPL-s_v__+ys8墾Z/4iLjd]U5M_mBss)z<*vTCQdT&B"'LNp#GRf2-OF`ټ/N'ĎJ㈰BO|*O"U ix_?G X[*0kPfoRޟG?@uȝY&,PqƔ)o<*29ny2n/QX gjKQ q@_'*? K[nJS…թ*G vxMUyWוE尢ߊ^O|GL,B32+@U<^TF#4:7lϻTJc**91keMy Z\R˳s_pb)`.?AA/ԟ>orI{OI+c _1ywA3FiEQ==l<s. 3NtgTA'm@Ϊ"Ɵ*YʈD33)[־-բf.պ5`u,.p{ݎcNhD}O#%$;SPg\EᘥjepEϒ,Qw7M /CB(ȟ#2vmFê'Sׯ+u[A͛ཅ ݸfo։Pe}vOgcAŠ56SM#>E;HYq΅꘴[űUty/}۔ô}\+z Mˋuhjr3DWtx_``%50xtHVB_ڝ<#r(5WЅx(eO^pʺTV';jd@fq;U4 5Ef8"b)^-E0eՏ2e0,X'{iRz:z_S ժq+]QVxs^$⩒G'yZ} O9m5?*IeDXz9P RD,t"D MŦ0Lz=X73\kHY[8iqO͉mmepBuo A4KvHjwIG%Q&nrG{||#:^*Kɔ{Ȗ/׎Q2+%,qcs7n{i ַ8af & `>xcee箎%0xl H^˩ bpb(ͬ4f!ǿ*.ɥuqKhV&ƷZ7 Ue U&:'XsG{X:"f!FK+)3Z,l >gHQU[i) hUҬ BL]RjFAZ?*n~QgO@*q0sB0櫘шmBzU,L1Twԉ?g\`u$ 苴[ q{#GI]!u*[Bu}-xgx{=?h,) UԹ9*d)o>gj"vBICypYzµ лNhX7j.JL:"Bݪ{=;BX*lӝΟ47ERa /:{k M;e'6oPI;9[Qjqr}}#qk{:I?W궾cSߡTSc[qqJ|*XpQgVR3ÊPj> xE1' $hL2&L2zEN*HB!/w@Qk^ u#PWمCPQ\󱀉db\WAB^1&U B̋r bpB ㏪ DmWyGyAgkZ_$tjV/1j|jFVE $T_3/\d50N4*`#$en j1I,7&0 W  r4UPld1"n.u <Ҭ$< QvN熵#WhzTRypF5& ]٭R/\VMj3+V#/[{2?nHK978sgr 7|3/qtw>,f1@5VaI,[EզzF |䃸.>)&u_NZVԇ9FSWH?#?;ݎI,19#@-8'ʷ&Sעֱ;_G2TD :]єg 7L=L0z#01!4nzӻJ eoE D) m9ӤG1wNyB]]X+0- ~ ?f⨋7_Deփ/Y!`u-ȿr{Ȉ<4t,$'s'B?* Mޅ ӵj>jUԡZ-Qmҗ*aw: ,2fyc@` 2+S)X;]( c,f ',Ĩ؜ຣDu]GS$[=<9DTj|z-@𢔒WcN!?}o/8?/F2$zyX"9A]h ; -ޮ.,vW͡GՉcxh:> /]t٤ ʥSj݋E!16EGMy<]VKx擩 "`VBQ*/lj$[9 S[gZ# Z)_qJrص399zHJAdZD@{B&x)q2E÷j RS!%Bֈ"Ս2*rꗁL 7Eovlq[⼖^U\ZT b ¿+K׀c0 |/<'q{zb$G_} 9C~}.>9 EW,dqQ6'ɲnY }L$Q=DS{ϳ͈K?z!Q+\4#l"$nm%Pı Q"od@p)bÎ*cY;H_pl.5s^ Wҝ Z(u𢐵HɈ5H%L;a̓tu?A ׶l؝ tVnG Jɤ:XQE A\'|+/&X؀N+{%`xAYzk% hrϸ窧WnrK!1I @{Ug Xl^hEVf+,Q&VfKc5>pN5Vȭok;.,[ 8g#/_pޚjdpρ V ]3Uf5x/0$\g |ihKFR+՘ 415aW{!f/K$U UxF'Uվ(5^&(oƮ͆}>&hh) 1(pA6n=63q^EOY.Fli~= 1MEgVZPe lOW (uhO0& LVҢ6{#T}4G=k/ClZʐ\4% VK3O/"Apacpl-code/.git/objects/ed/0000775000175100017510000000000014010524131014770 5ustar viriiviriipacpl-code/.git/objects/ed/adbb860a1321baeea4ce4dd469cdc4edb762140000444000175100017510000000044714010524131022540 0ustar viriiviriix+)JMU066c040031QrutuK(MMf`mBl nUqjEIQ"d".IrL)O)Ieh >brx gʽ71B&g06qm_wپvf UXW(W}h:u|[ׯx us9PR̼ĜݔԤt?d9sI Nٝm=9"HBwlt.jyگ~C~[VƝ= b9D·z4iRZP'6fJ ?ԑ"\{+lܡnT!"[Uz0͗;h,uڽ{D=>i X`xt ,в}GªTk7Cgɤ)Ȏl SWT"@o%jK|{&x_g<*5OО 3f$gdWC.Su+]c7{῵ \[JhwT{0@"nE"-(*%t : QC=G--d9[O% rZO:Py~-2fj8ojn3zfa'ͥd%)KI/FWxS~i(6|YgusãnIrPx{G˄2\͗]!|LJ[($|մx Tn\:K<0K4ZO~gNi/N-ޟv"+HtZZPR-Ֆjd pywlQg΢y$f^!')oo\%ly@{EQ&-YN;+TO^dHLEI}G]XEL$%T[R#-ОMeB/!CYBmB8/tw<H8P{G@krvs' =̫4BOwW<ڱ C)n*$أԝvc?KT=D%7^8ٮ1I7 ?iZ6!l0Vt{S'Ǻ&uE2U.#TF(VUq9D劉j A7`]} 2$ C 두 ZjtM7c +~el@nB's @{G۳Ia^B˼s:( kBSuhv-;2ī0wyHw?1+%Fa ax'-SA" pLR8d)Mr7N:b#M CA(dɛGݱnL&j1I!&FLv"C#*Q#2K訑i4 52 aDnj Ƞ0QգD.= 9~`F,ioB$@d 9}jWć,pLBpp thN{%e4$,}뒰?nE};סл<־.RFjd&{pB&3r86lֈ`zyn8f3nݙ 6Ƭ)Аܺ3zog`H}GT֝{3#̜Ѽs{Ҙ~zb֝{3Ocrwym(39ʇ&al~{ p^=/s4#'zn{"u2dC2 <k㋞'uGZy)H4Qع'J`3u뎄V6~aRhZp~m ) OVܰ4^O-shbIM4SMDv 4_)=!p*MLJ=UuOT+n| MgCM&¹Ь ;`Ҹi*pNSA4 .U[FNe/rNŤ&_HjUpf2i!a 'k\bjK&ʔy٪q p\*m[Ʃhy+KShHlƈ҉P:M $y4&I/F)H/(H/(!);6Ukm xt|WČ©|+_$/ISH&R $@G`lXrXV`лB7-Mʢ&f[ 8CܒzOc6rh)+7Gsnݺ,; ~,"]UQI '~JMG!~ ba|3aLYK`ղ3TULoU¨VGFyNJ*Ànf7xڌp: m6jYE`E `Y}HUyXfsYg OIf[x<[/횋kaV~-r6MK.VJ%wVJux!74ȗRϳbr[)ˋMl Zc/ 9\VvnuaA 07K1{vZĀe1Cgλ(=h)LRZzB,ؓᛠea*7rrފZ\o'X;l+gAS8]`> vVCjW.t*"g,ghl^y=8Ͽ-7Lcx-xUL% N F1hK<#oA}Z"%LmZE;L`~}9⟓ >? o\J=N0$M i-yרS[EvبBk?ӺZg ګl'sv+&-pe@=M㕟'js^zyg궹.4dl\L=V/ZǓ~JN|XRԮҊhI3C45km_LykڼZ>32MO1|>1a7|hIo6#<)&ϟsrs˸MnƲD"]yTI:$z(@}Jq"s)Q@y  <n(= 7P4[e&*;ioׯda/ⷀ-ckO/~95v'l=/kL.;Br5a)A.+]B$kI8ftan7IΣIINg@r> ,!T O@{3:I\[`'T߈/IŶ$[XnL>xAe:|ts} ;_lCEb5>K(t?'i5p8# DLB{c~M Օ ܧX~\ѹ3GZzV-K6\o&tLi,zR ,VHװG ]=a7| e7ɫ!ON4L/U$ap3gypa=n,sԶx8r-x;r-SfI(p#z+G?IOޛ^EkNV:w~2I!wȠB-ڋ! '.wT1<+81z臨;s>O1,%+Xb0 cڭ: I%=Vr%}$kz Y2ld=ݘ"FU*:ޭx 'PhoefLB:d[$Hjt\<11ۛ"?}X`C[A."G%'\DTƵA7:vBg_QTJN)7KᄗpXo^ΆNҸxg^o}9C3wMb8Pq<ÛgvwV=l̙ v(ĠE`DTē6nd8Meblbf3>{2tk <ZxtuKV>NT@k:y,bfuB lB9"F:|=pEyH3`XG n̿yM6sB`UhJ;:ƀ1(:<Ҡr3N6Y)T$v~ޢB#<2TK};%lx9a4rF@9_fBX''v>k*J^cy/{~1l{[4}IɓԊ7J-b|޾ (qaf1 y6MKl8ڼZz,zn~&ZYٛ-V!O#Vd-.8]28ž$%2r0U$jCxJ_ gŶlܡzwÓm|q;wV 1D(arUig[k6WRM--9vCr<8DqboS"ӦlsZQe4~}K)n*em}3Yp\\lf  4~cJz26Ք!2;CX`{;&?wil1JD%LƦ)_ҌFR;VIxӍKR˛YmKwρ-0p%λ8񾻰1╩Q#t|m_P?9] %Gm 0l^vOk?"SbÜsOy``Q!Ws=ם"}I#72qK&ndr~͑ɜZ89TJZ?e a71E0TehThjn7kbj nfՙӆ7>wXZ:6ys1^\ϽEϷ8,?6M:VZZ|ZxYY`~NN m(p쒱}km/2gS~;pݹ:7LpfH\`=PŅpE<7KxǙ ^K. (҉")GZr/ wix s$̔Xܣ \8hp**LU~#υY1_}IOYM+3Fv}[xŎ 0,p1IS5bY0b'ODd͈ۛ κ݀z*:SU4bߩZOj2wѨPpv2mySݮCcޣvm/ڳ(cfh<-Zglېe5'[^J,E)WIemso4~Fz+'6!yAn2?d<<1V:xF~{ 9_f:"-3hn2y8L$H)G!X$-6Ulֳ(-_ HQJãW]q~"sG\v>7g7И^9N$ <IwōSC=Wh4K8{qLEt&CмARw6m@ZhRC 5μBOybƼͿtT/aQZ  NIݛ)j:%sF{.(g{(\޳=M)^r$' lO#{1oB  ּ#<|.S궯rDIBkyrH sA݈|h6k!CN P[z_sޖC ? ˧O/ٿqbei 1crC09INҴER BȰ A va<]HMr`10.oRq>3'?]Hr|c,5lB C`1B"r58ͺ38="#DoONrWK 81hEk`{3qCN P-x5vN0+M]$k[t{3{&71EȒzZ<⤦"ӼAc 5ێ jtaQCu;'Ig8,H"Gn.M"<-^blBA)2;6Ɣt\v yRF|JsYL:o{aى"i\'E/*mic^nclbwaA1249B1UV0x+(,oQ[$\`]6O c3Z*5--K\^,{rB_@Ÿ7L^&Dc<ҲÙO$fpMzZ3Kߓ63 fV[RӵR\goƌ"5vE>HiWfo||}dx vs|9Ts7LM0P O*2{zMrʛ`f2^-M0|0\-L̃4k]mRRc(HPsT D5[)- >x $3ba'ɨ1]{X4W>BLr OzaB&c9.WW>)rp J!1X04%|YZ=5E㜎-vH9+3}"<`o2˳WsXyխQTQ6*cì?IZ߅G-vsc!7?Tx'>Fkl[3"gڛ;lO#w1uK989IO&Q?mss_z^hM2CYYpL|ػqb>ҪA"Jc.dӰJm~;ڻR4xlNI#^wFe'[lT*a+0cbSLQ 1褬cьޝYO̽]Gd̝)SQ=XwP,_gQZ6oZ'JRB(ld. *W._' 9dH6N kHםǘ^r͡Q$bmN'Q-0ԄI[mJ ropṠ7ᶉI 7+$i>d(0ˆN-"J-l,/C83Z>/չ%|+\,P_擋" m*eDTFԞf^gk 3QҎA9gcqQOٴ[dӬi|މ0 2YK+;/dAPVұN,z179<$o#ozW7 C^5殔/¹=[~-$a6M${R8]PD5" xư`B}VSx ]C\{Ώ–UЄ'8xj$T53j2ձ.:ʖ\>kʦIQ>}T\mXi^c-+6TP'^Jkuͭa_iWHIC?KR#I!GnsˮuGVMwc)t() 꼸\gMG&x9"'~C\oK5cy_Z)nU?TXwXU؄ ES *Uid(wV4PjL0ȗ3Þxce?4$8CsJ^(SFTA%+'9fKNffpꇱ[=]ksa8F RG":|[yjPwiȌ讘4lSTIPgQŠ^Zht5Y9D E^]5CG 7Еn|VQ`3nbqDz,iԁ_Pv᪯y4F#{QrLWufC~EToTƭu$Y~_錚 WS=/8ǵv4Kюv1*U J(aMc0{~k1 \ ()A-)ȤbFAYS7]2')=~Ogz ,OJ]m4:m$~Aqvg4`,٢7c6ȕF&2=gBenz'ihs{f A|`|e}7ZA3.x q\@?_R3Gpպ8(p ]oʍ](pbI艛p|Y)7stg呖 dPN1L kU(HsP^2B|- /W/OPp!Sˈgg4XhjؼKp9dl0o22r^2Gm&uL'%M:mWɆݨ4 (-+0XadBWs".Fo5>&BBﻒV2(j&qm}eKX$2{EC >y5ߊyӊ Z&^~(ђnkXMz+Ii(RjK4wxL2EJ6ir]qqmJJ;FqGjFIV<G)brDWoQuO FNP\d4TPWL \GIt'*8M1eeWFMYjFѥ#X]間@_hɤ7drCQ7 yj ?QU0͒j`bA/@CK``X17bX>tѤl\둪5*#]FOhͪc`$uA 'ptZv}o"U\P@iJ#1ta][0z& q~sīE騯T`U؈Z@z{SH+Fؐ1$vrRLj,.3 8i#mЫv#?9FټƠ^%9[c,;>k: m ՘`[JYFhIēEdGѐx h$`JfIԈ{p+ENcߊ lV؈ޒD_fRE6RlpG. P5 SpҠW  7csh$-ژն>~+0KVB)<1qjTRb+_t%A<ԛImEd:FzE+=@:T`U7ob(5À2._7T1@mLƮo3$Q+] ~va8$2aU5b jD cC QMCea!Я>kVXXD[^z'Z XQC/i17 0"eS]Y@FU4d 5[>BV3`4fR̜X & =Z5z56Nih1M1AθeΔ !jEa)7;`EP1UZl.cʺ6O"VmSuEqp:ǃ>=b qGm7huiOaW xev/'6@HY!ÙyL,KY8eU n穹;=:! ip*myu{#2E9LBK v5x xEXm4yC?YQq":er6LOycd!"QCz92Z[a o5e᛾[`XDÄ6(7Z:xY{+8GI%^(tWUlIIsC$A%.Р&aVk;T\5Ufk|+m|aqn(b vLMј5VTJ;)N˃ӥ4 g588:95K6=t7-aC+'ԏߩVU_\9GnjW?X 9fwCcˠt|d^B ),%-㒅!2=Td'|cE{KgL=WF{0idhDxW>2ҀcnWK+%^*3wgJ /cݗTMS_I.?{$Iffx70 he,}ھ`[agwLp85u?ur͜dpF;Co Fx.'U~±.@j|+:m ">NȊuWPx?ޞw@_wԟs~w86 GE]c,8XŜ#l_%,yL‘Zmsӂ׵v1|zg_W-L򎭃vТc2Z 26bl `vS,FsoR35ڗ@ (Q,yf+4f'%`:PU^ Sc&Ɗ˰pMp'ˠ?K WVsװ hƛ /ZoWqt5Zdm zCޖb.[S;MQh5%]K^1:lkѭ9z'k6'ft 'R@9uu_=PWkMNZ2z"=tϨASF5kQ+ܳEnMۧsvicVJbFr"KFVX:a"{2-{T[U&/CyY 4B@g=aS;uP3,Cuauh.שL vKu@#O`:>{?O@_[r8sJƈ9A%9yukaCx܄#cdp6_.X$f2roi0 D`Ie]tUDh)ӧt"uzt| uԌ>T6f]S:U f!>^Ӥ&m^8l^A?">MkAh#Ŕ6Ď 6t~?-B1}yJfM;Dz՚V7Y+G7 {HŋzWL4ZĄLC@`!,j2,=`F+q`. eyR1h%*M4=@4 yYDSaiA_ӽW} Z)NOO:7 ʑ=% fCuʒ,d1:5 5^ҕ Y"`jy6&jAbw=BA.QsǺfoUN,2kȔCquS f=B׸q7K9ˮy(5;0_kXbgsrZK:kRmPZBO_ X L3ZXAm@:[(Bu }P6=c)P&? ${az R-h ?٧XC ,VR5Q,~Z6EHCtN@$áTN{"(ĘI֢TM 4D0M86u9* ؆ 0N%S-P&sSɖI(uKK ~xɖM(9y^o-]3CJ^'(%ݍפfM'8BqZc:9+*-׉^-]kg-s؉ 㰫=FΖ7NBYOPRYRj1Xmv>Fb|.Evcd#')&I;155:1?Z1\ \/^ J~ hDa/AYIl>,\[}M Տ` 3icncl4ͼKjB/d_s!Q8 J6Bcx|\^MNMS\tK*Q'h^}릅-Ier"WEt"nrR=\i8w;SixIlP!շI fUPsR&.?sy0 _ehUEXFl1iS7B߹h "#;s+W<8}Bx8wLi^P" yy_iH+Y6GL+[DZy:=NWVոy[(?]iF=Rc~WrcJXJpeWOJh8ȢALgGT_ zpw$ub~W__QEa=4x5jm<Wϋikz|vlLk}-[/Ԯ͟SC_㋱9~_h |gX؀ښ}NL(u$J%nz/P:_R펷N'ϳA}t'+Ј^_qfP}F}Brfu6\F- lF`E/Ϻ~M5O*J&ʌIe++y{&8Q'^}$&T%W í},'W R̳0jj!Y\ciB'ڙ5MO +qĊ;4<9Tϭ3BU:H$svsW-3q2q>L5NkxeiZx;żRJ9X>X q=ڱݾ;>#PBp)o0&\4 K 2A Ŕquarh]΍51D!Q(0nmOX_cUXoV wªS[P7fbul1ZAc+JÜ6%+9睃l=43j{,. U]J1. {cPf(5P 7΃nl>>W0V1\!)BOdUXVP}mD˫4FPB2XZP9J$Uz:J~2Me"W+ :5&.[)Y y.q/5Ν(TËlbz b-/owM 9.Ĺ0ʨ͍T25ǜ[;+Qĥ0 ڦӮS CXX)E\63Cj gQ=XWZǩר^m)\uA$1y$<}>tƚf 53c9Ƙk.Oh53 &/񾚧BO/lNq*. ~dkv4KL 12cmzͧ?"Ehv1I;h75};!TcXk-D5Y[#W^56hHv\nxq|=k(9A,E{;Zj*Ԉ_+-sYJPЂ p hQި &3|!+\e?% ,8yB p,gzc1C('ID2e7%B]t 7C.~QWؕvr + 5Cu[oånWJŜt16Nc:N.hVJ|9 mn|ua9n'?r] ]/"<4Qw0Ϩf x̥G~}7fጢF5Xr"/{ƕHT_7* ;0c47ʉnOf^ voubbv".i=;4&o8۠5\eB`ma>tT*JzDV)%|PsU?c:MsCjPq*p$&:'qdk>E. ًȉ Wו:HӔ4}V$$KJRdɨ!K>)nRt1nD)e%nO^)0|"D lgX6t6z69;gM6y)WWٌDR37N?ggdD鑨BٹDR%?\l!{dr*DRvIw>v kro ˊ .PUP ceT!٘Н pp~7zpSܳAiE#3ωpM2,Uv6 YHsq Jp/x M1Fe#.iy )*AV~f}>R\lc{E 7D`4l)t`%sōuYPBw<.$^V|E Rs{dFI0h1S8FOpR7Y rڷ"vY{Hk{;ƥb+ɷ$/~Mz/a_~IH5u$| ǒDm4@ &ΏF"YPٸIc ⪁ѨTl+Y7\sw\"S 'BHq t\^RepC+y.. i)-H* k HVp'F-֌K6ԇ䢷ys*,ƕweLST8Q3T=VNJt)u&::oipww],FM5QF5?Ԩ3bľz g^aTrBE~.feAk?4RNʒyâ([ۻaǢ`wb{qFQr eC'ߜ##%sn`hpf\܂=UijZ@v!;~af x]}cL{vPyJs54ɸmȽ4s9",\e6HU%FGY'P, \X^?j6'iT$h_h(K45vi+nz].-Zp-՟WՁA3 XM@"bM3fp{=׶zհ1 s=0c:>m7LjQ!Tk@ fzՌD+]D yV<(wǺHꁄK rZfE# YO/鼰h@AfjR+pڭp #R\y0e]=1x˗_L+eBD?9@84DFD)0FIZ4M꧿K f<lc\ );ap3E>P<`"yҡRE~<FXWX6bu _Ɵ _JO 4q8`'ZCc?+4z>} #O JL(S>&[ <~ ̵a&c p_(8̻u/Cg&dS2@-KhUl8S Ct]Uy,'uPQ#1lsq2RI1,`Sah %w8H.'KGWtx&ԟeHRYH@D0$ MtX3\#2"rl*cO"#5{GRU38MI%À\sK8)ik0[wn{k_N.A?K#A{r:Wy0U=D"q=&F)0; i 9jX ץ=ɣB\DЭl2>/..VO贮[:g^1þS?ml:yŬ|sFI||qlDqK̳;ĄWw?G<1*GdI\U?y2@0 ?Qs:"itA{%Oy?)L$ ],L>ӟ(t x>Ŀ ߃[ >A0\!A K%#AdJGqIE 4C"ʠ;_ TQ- N`V'0H? zbx6:х? AGz>i'H9 ,pb8ۊ&HXEw{ 'p<N$DȄکK"  ( ZNmSf/Owy\N.Ks%&vK<90r3p L) r,`n0NI @$N` sk%ՙ'M̓ݭ/Ra(q]:'H79Q1r'a6Ʊ Ep+nZQ{Ԅgl0M3{ϟ}B}R͟>FH<DᇯRp#t Z#{( ߐ'"O?pFjMcIx Ic;RQ897d0f\كZ 6۝sp}P_7z9*%ߗ!y?D̏{g//YQRڿbXU2k&y){bEgrF(VIcrټگ@K"/W ĕqd4m 9z"T6Ć[&9)"ڰAdDF6TA/㼰1GȬ.(&vPqe+ }rZ)-ƶV05o^5*n3z^.BDs\:;*H9h SoѮZRQ<v%@ SQnc}7znEqK&jQ<=E ""N bEx*!/ImD<&$7ASP}2,c/Vhmӄ9 ;m/ކ&\>It)mNk2F:JNGZ3̌qQnԚ1 ]y~#ScƵ9FQVLaDw!.5ŽrxԖ#&z=uquf:\rȨТS4'MRX)i:`Fnd8^a@l&{ƛ,㼪Mg&fG{5@ SO`Ԭy^5~U~oӢh GU[akjغ}CjZPa=ڳxYc[R׷Ѐ`Ky,&&Wύ-FaUk8ƌ5ڟ4?Lr!+NA>QaNqn/@ᙓ%$O@۴/U2c' =BƬ_Xf9G'|vj K1xpP` n„I RShqO%>U?Jm7zS晓az@V誎cyғe:=BA40C qȆH;&Qn{3gꤶ-w 67hيˆ7(4K0{y^8W Em;L :i\bt fɧm..ϷGGn6-EZ^ۉ^8AgtH i74T% 7a/v"Y?='s8M Kj v:;dŰIՋ(yA_#o^%_`2zO..5 VaiWMN&k<a5-94o F1g v97&4'lãF΀~ __A\K!6bBJ#Ҭ´r >Nɢ$6AZ*Ljnf, )tf&bkR2Zs9v c & 7]=<0qk)ֹn]q}a ІJI*RH|MGK y F\ $R5>8.a% εt9~k2h#Bp4i$vSAc4G|F)%AD_'lK]!Д&b{I<0A!%~!%i\.2CX [Bw9HT+T)r<@#cgYG)+g1Y0͍ll4$l rѮTOP#TxԨŌTefXx,)E)C ȅhIZ پ}#QI4}MJQao=myjĪzG Xqrw?#{q7qva23~${UяG=&l0#!ăyb}9&hXp` 4=akMCvOHBX&ԉm@)TNx/鹓t硳A=2[1b/pEMYK >k135૩Csz[!0.E]4USEj6x~!!շ7)Ǿ7ux\cuZڰc߽}e_,BqV %83?a"5#X)yr5$<0i}Gnƭ9Eyv[ ]zh.;s6u0;:a 6'xLIzXUf!7Eaѣp. "GëeWPdN~ !¬й>1F+?iW.}l?a_"S Z n؛. 8SفClQ^[PnoJτE/]ùFܻ޼U ;ol~ÑxL&3 . d Qs Bco4mgotS^c2lXLp;m3P/ó5T'ba|-/T{0E &tm50?Zln76&q>nz0fӿqNf4Ȏ]楬wpy fb]r^k %ܷGMfd88s~; V,̳N) y' QLyF|! Ab1c%7 jBwv/Rik@Ml +~L$xx`Bn"QR܍ܴ9mQSg=AF!^NNppnNIHÔ^UxdH-'!Yd} a{.гv03Ң!? ?Ԩ7=7Y/MZ݋ vڗ  e /J /hY߽vr Y2]|ȴgg+<ȃ3!_Oથ7;cf{jQ֕FS Ͳ{`{AaK\~5/SYnf[Ng9?n?uϩC,9ƛ(K.v%tEs#nj@\57'8:s}!~ט30:,^ SbД=Md]ٚa>r^ Xr!'s\W!J=LUY'LNu_?3HWߊ38iY 5Y*e pVF8N;o0{LTS)q0$?@;Y<0phcy6dD>9J*oKKv}͉ q&#,EWmͮ]ƵYXMf~LeKҰ̔΍Hg6ų;s9yn)(PUa(z9y<-cM_C\%WCm"T[u?]--i P\ao_gIYlxDtp@Vcg!7u6uH?dgk].]e1>HPC>ܦoBPaxr H1mq7Bg/'k_ ]&]mzl-` Ml$oY7N؊vOi g4{"؜J7NDN1A% g$;+&4AWرY*f :u9CZ`' vdzOtOEvShC?8_{/7p!::D!v㟤 T`=\;ISϩgJfmS!)T 6:SW&'Y9ٛBE*E"errYl+}1ˤYը F<[Z}Kl7 ߐP&.[_[$3'%͓݀6/k Ĝчt)r^M%sK(X/fEڜaY(csAlh.]'2Ggha@ʞ0(K>Q%j6# Ǐd6߾yk 7i-MR  iI@RNZ-;}>/ECoYy2)L?e0 VEEe!mJfeB`=)r6,xѼ mp;0LY)s8%(jJzJd+D" 8ybKP+;m?q#?س 'iLFcCj7ΠQ]#LrVx#p:[y/RUQGs="{ei"iG5 ]z?h>rC8]]f$3B5 ȍ(apKJ$m 3()UG4?LMaYdG'Ci$Xlc΂ aUfzCfK(#)k2,IEJ6?xgģ3؝QΔLmu`oKudd}e9I>lى` sd(,&n>bMvrde/vǙhWb]y +_f+x:*W&U+*RоK/af+_Z-iߥ/f톅bŕ_RͻB7鏔$;!@f+ yw(R(%`?-(~-f"H]j [uOH(.F}qŭ?1]ƽP rRSd0g0A:OjC;o@95HSԭM8/H ZT|f1*/O}qSEm,W}qEJt&WiE0E&/Hcn7#EJ0MhA톔3QREEݐ/fkŦBٚR_$\ׂf)L#_$j3IzIVE6_Z +eEI(MH\}эjjVjhw)FIQUmWvQeLaHZ4F/(Q|DGQ|a0\AmH| T?2IȚj勤jf]EUyi/*2lU u*}kV3\~U%P9bp3tMD |䏑a0Gdz7% V`Ao3j+b e"@ 'Qz5\{ N4jL_,cB+όyM)ݡ1i d-ʺ`wf7lUa'#{![_RdShYMҧ8ilĝıbу|r{ߗ}䷪K2{/E5,_grPZ:ϙsECNs\n)ɝmnEG+I;_MJࡑ%`o^,UtF,&_c8dzzuG@\mf0 H=%H K%Fʾ QV` &Js׋W;mNO?zE"SQ"r9|UнL|6 i {B]:O (ǧDzA e.!]ٲ}{,ۧ[ nR%u~zApafÓyhf_|9,v.&Ǻjpx#ycn^lK+B2 7*>[DDc({wj4aԥB~F'͑'*Ӏ nw|p>$U>8^9vϜ$UM%yIEQaA}Z$˲Xu%uNqgGvrL,܁ș;ZJLJn BWYXJaեcK^s'q+4'>5a1)UQc[z4oAzGqJt_TtiMu@L%n]*+[6|K+Zw=UYCϖ >P8F^Bmɹ_XWS%ɾv5T>*98Dz4MseUg½l<B=tXd55œKCʯݮuRLT&"dQBB- kvJF ,'lYbpc0k7 )#"uUfU|n?돒r约PMSZPX݋.*`PBl5֒yYVмɧdcl]$'h5[5wG}D'8,YE9ΜYH{daw(`gYŕpu8H&jpq|+L--+,rJ5j3&v0R +ɬV5l{]d7+p",lʜSgEp}ٚ9dÏf?> OK`*/cz zv|؈=)A%\[8q,lހ f[ Z($AZ`N!DE#SEFZh SߎUgmJ̞/1L5;rQG ^JvT*!z<Bv̀*.! q?~h& f?96/Vvj!",BÓT - m]MQűx(eZ&#bcY_ ַ_W+gq҈a *W!9,2Iʼ3pEkN'F4h,B4~jۡ hZ2sGQV4jToPҵpRAďn?s篽6 .9?qZ\˅c%={[±R`vi$!܎1KFA IrZQ*23:A;O sf鮊b2_j[RvJ>,6[7TLw ݇6-D%g\E},hs:{ξB0L"~Kn\É/ŁQu(k {ךg.tN:Yႛ_YyXtIQ"DĂ s:X 64ÜG[`28b-TX YSYu B+d(˖9\,vwJCP1Kuh0:S**!hKPo'ͦjaE J0ɹ({Ab Gj7q(o݂ZI\ckMFDx-( w: hNz6z&U. ۬I h\ iZְU,朇boub1{0>eڿzވp2Sw-EW+l䗆6W#AV_r]rblEnJB7?QBTJm%?GŒhyԫV6OWrZ  ~!^|q"_jLLFa·ףbX]h2t7t 2SJw}NO݈VZi ǸennU= Yǜ P]i 6>ĄW6!=;Vhy’NU]4:WJ5}%>h>.8ځe]v»twH]8\0\hlJ[aPչpcU0Iǹf]/WbYDK2h%㑗*ݤ|1s oI%3*fYYè:oƋBA-?W 5#gq.>(_uuُmIrW;K@p"d3 :T͂FɚYKߞ:-߳ ͆=3`5w5хb4!~b=g/>3O[}uIǃA<(w<$h93{GOQE/sVdE]wlk W)tArlOA<>;Vo.Edۆu"7rg[ ZAe6݁:?bN6gfYOkJ|| gÉsO\;iQ"gP0&^ֈ)AW`R,B %ȳiDÜ׽{Y}atdc| #xd V r6k0W+ʚ5~-6g, c#7Μx?+ل#[m@GgYݛ9j>&Kf{P௨3f/!+|ӋG/7nEQ$9avW7i@m'?% fnJ,쵃2D \ӥYkuk?6Cm~2?t}M$d"*HekXF=bJ0Xi 2Q?7Utq5K´^ȅsVtB|]z!K=!Np YDVS /j&ȓAT`=/wV_PT ~0)zȂwR d[qǙ5dqJ9Kkx3%3URh \Sv$U{xPIvAd4OW%F-r&>ژBCAb@5E+`e/*h+&): ~o\6J4-_x,VA<.*{֭zQAok+c^VZEHl&?r]F]%Vk*U.)vcE.nGj9f=E]da,G@GI7ZFhyW\Psշѥ1]&R2g_SN;pbaܟˇPBa%s v<']Ec4m[Pl,{J4,D b pf fm3څ33Y]83=Eeʤ0#X`KeKucYcgYLvrJ gf56e!aM(e5 âl;wQG|q 3w/?6 ' 0'{~EB/;?_! Jss9{YJ9[W*Zn$7pE'TUY K '[̕AYJvi;j|.I,ԚYWn]goIf}(PaW;Z0,'Zoea\epg♞5{3 ?żmTbeP';AUE 9@tk2k@1t tI:j˨@(+un+y2"!c.KRV2(lɢ Oq^l+UI% ju4%5_[͸]RIhIrU4^g\C0=d]E~v0=_ղK=-\uUpO>nw籤eR'â!J&CyNWZH?8 BsVS {+]ץJMfq5z@w&ɊӡO>4 =fkyrSd.jtryS:}p+R\4+6T&^r֐'mݭs=6+ΣA>g#.9tԚe,~AGiwQZ?Z ٣WV\iVo5ѝ;;0tsh~C[r2=52TG4Y gW/];:K+SM$埬'FҘHXս }̬-05; 1nWy-6'@ 69I҇skjbꮶ=KG>rkQ+pKd+r6M ?]k|o7 *}TJk.v͑>s nr=:.</ɮ|MaiӷK䗣dp+hód>&'v0٥kB q&[8jAD퍒(iٸ7U9{!Y ؛ \"О}ׇnǢxf`q^BXhqOh^::8Ȭqꗓܢtw7hE;|0jwmB 'TI?A$N<ܗ*8}v3KJID$<l7zJ I_d&(MF3:(Onzqhҧ1 㙝&k0d6im7n*Ѳ&d.KFq@~+~gW~#(䤷 H)8gqf&ǓizpХ?&8;|Ez$q0aT?q- G$h5?aK!L8ܖ@MӰm$o [i]0S49 mv\G$6?L$=MQ]r=h^!H} XB}t?m@'yvod[oq"I?~Z*Z3=mne9-I;MgŻQ$ IM~ PtLgQJS}L$@к/",T2psT^ -% .L3$Q2tqs qQ7?Nm-U\PG)p҃gg>,`Ylɍ2u(p&|"tҟ)Ic\N}_V̬=os׮eH"ٔ 90a^՛D"lBP [TD{KyzGO 蹳l,'PfhJkJnk*k-l?Ş]w1FT_;8;s&OM has?Z x0BتE$. bk*.S$z2xqQ pV/0MGMuxjv'V'0|"p,xEE.hxMg¢';x w ~^,hTh+EE:ͤˌk+AjBQg>E|sHQf=Qkӝ5r1s: UWGZQ 7 .| Cd ժ2 0d[ Ѳ8aM%#]zrKLF*Qk20,I{2iO{Eɹ9Z¥Xw&q3[ c|r9Բ-n(qȈ&]kIUr1u)>| n.dLtIw ⪚13M{.mz;`l:l-NP)pK)m}/)D.GNqwD@vT-f?*1͎'C`[[+"#榶Pbn f99¡#CZ#cIMN6;f q]f ڵQk`vܹܹCs$gpKHZ_ѵ'icAimRցK)(J8?7OX/q- g#zavAڠ=<8>FD>{'̐hn` "RayB5+S7p.'30l>Ø14M5:S2Ymd:Lj 4;.ly"8rDPf#2-~%H1á ? no:yY!kk>P/(I) }w1z,՘TH?5v(M6,Z'K&B3j`3QpƂzד"*IoLޅ/ XU4b'1_6kW8iH\=_5i͇*<#}}Qvgx˸%,HT߰#C$h{fm|RNb eRib o hڏN T!jShhٮ - r6]Tݼ6ƗT Mw`a(HfKK;3k[0g,',jsw۟z]buC nа~ .3 v ޼P;L4!@A> /R2!NPcAkzY4/K(#HʨԷ=^\I aYƠ,65D~ܬ+pe0,D,fna(ceD-N! ESp=D%Ӡ@0ww5P2?lO+Z3fm.b)=󠩦0˟Wsf̵u'RcQTX߿QPi ԩXJՌPD0/Q~GGJ]ˉ1zD`뷢vVXhD6kHkLS6^h6QA^Ɣ(B1=(PcA5ǠTls R3NL)#q:YUsvm|Լ,X@!a3nruߟ$QIeQ^\aO"5BF KLp3+NE̟fOݝ~f?99>>y͓7?ޡ*ra1݌}Z3\hBDpCHݑL4D p2:>8LNړ&s@FFkZaНN!z eB0EJ|}k RB:UÇL;p4IFɥ+84jI5l+ZrRJBrMVnOX/. = o#nzݒ7e-nso,v5yq<\L0aP#8euGb:Ɓ[8sIь;;/n7t|u%Yɮ\$8) JMufY(ƥ1Qⳬ=x hc2-ι|Νc (O-b`(mVy,Jڽ$VߢfPƒ= XjEf,ٔMۂ^io;G$? 1@G#:xG}n,ĤV< \ S[t!nR΍0n,Iன'73 Y 0dˌ0`cn? t}Juiפ=*//Cȑ;ǴcȹyCc5 8l#j6p Fa3yaHBr9 #|ں~XT>81$/h&D3[Sᝊ0(zKfknj vc8X(pݙdYB#j}.W~y˻4  8'NE|_btcw1c`e\AxoE`0bĒ3aMJͦod"{zݿƧwipRhƲ-yn`@1Odqp}/7*|HA~7/^ymC/I!>%bKJ| [_ TI8E"1p`΁wL wi>9=db'sWIΨ\y lHA=\:ho-Ԙ82IVJn$[7NlFrn޸m,kR@2]wز>}(`y>9,ρ$6OuAqzB6=yjqF|Lչ?aP0ʒV0LWƷnQ>յ3 7*hCMA +\fgւpjМ-;ʳ7k)|1-VoM=xĭk@6"DaWF+" ^N"4Q)Q 6`M⌀T`( l[SPn'DG 2덦)h>{Yu4-5o4mrhd$w-n{M~aᴍIK8aSPdW%ge*0գSx*xMWl_FG-&44. Lh nĮ3߇S~j4ǘP DB ,,飂h2_#'“.,FY^"]g,M,$$m B!b:X`r 'K#C6:cvk).3߽~b 'uÛԂ1TQv]u s7f!f26^}д6X^u(#AY 'b&hؤ &l6|;oGC7=بO6m}聩1lAK Og//A/cM-TIA@ިJ|yCj7Cd#U)\gx,:Sj &\l#{6tvMq$ K.GYr30֕\4qO!"WFWHm2yW;bhh\7g? D>yQnSh`{x.b@ʚ}%m>:}bl[!IXio4 Q=PuNTI1w.Hc3->yJנU9W̨"y9x71kF,N#ü9Ċێs9UaYYl( D̓g/oƿZ߷{o}r]tHq?08aH6PN`)3ϰjUCF*\^ў@0MUY^Lؘ5],aoXv5p1 Ɓ;k& FS 9gd0{}$nۑq;9m04")L 0T!:1@AbI0A0Tc( B"-"S)Hԡ%J[N5XKeLYV?)w+r#!;@P`]<[B:< uG Be]ZkHmv#9FbB E OXvctѓ3]~]XXVXf̖|.f 7 oTPdeͰ›+!Vxr"va+W2%¯pq فy?"~ ɰ&f1 (Ɖp\:׼nuּwN?ѓjqd&QX2C nŨ<'Lw0RTт7]{f4Y0l|$nKR Z2Sm+MVA[NLj4sА́lKq4`'`L%\^&\!1+$ x%oTܱ 1눁,f~ڌF 4V󭦞aJ~ v=Ǘ ~, 5&{ -uS "rkC++3B)LԔՆ,T!l4#-,*un/J|bX]s3`Nb#T WJާ.'X*KkBP]$.0~VO:js#ј7Ir O߅p |jJړ+ Xɼ+q}6~<xJ nIDBA{)*܎^6ns!':ݝI^δW͡!cY,R1/nBu΍t6R q;wnnZ./}:Ac`Wt +@OLg8Ӣ E%\ XlK.FSf&ڌkzSEl&4&2nGm!$EX fO=+\\ox5|~ԟ%TНYbt+N4U j/z)%N贐]v f="7,`7:=<%Vw~Jr$Nޟql,[|Ir?zܔ)e2w(f7//2~QzH.N/"&u 72( M3tG|.eBP;.aB֧uNGtHq0HI \5,=V.!V{f=ץAxhcjI?~Z]97nSn&⬠F395d]W0k֧ ;mm #zb:Y-!u͝N2Ȑ؉.SӍOCHeo6snu ͛ᦑ0dݦ(nd}Cmf5Z)no ZWo#afj1w9HDi*P,&:q"tk>_X RTq)R4*$0e qnK"5-'K*(ip#ZOYh2ݎ1\_Ysr >$KQh=7[dv&Xϧh<Y}Qz%HquÝGouWy%+nɂX xPXIkѽ!1^ <D_P: ЌAxt@*l1sNN=sbFee/"yںǭuR1ؕ-ieçD&O>LM]-GlaݸIc XIv {ќO_>ױ$DAJp{ 7m0}]?%q.e!,e#Q^wBɁayA+ZpWaهR|[d˒8s]^O\*Įsz; N Sil)3tuѡ3O2t/7dE0h*h˩wI<ƌ}ss3( μ4 r2\eIk{8귓&gʇ<)K/F)bT+>xرn=ڝ^otBʞp?(;]iR[[Z9K>yڛ_8,ຢe5zE$_QJb-U ٟ*#_ l;5Ý<0sNn2O_]7*U\w lB$G'yrVkN3^iᬈ)EbNy?jcj-Fb­:ZhIQ2Me!_񆇐Rem8yZ;a~'ط:K`H20uPd;iv% Lx"LHca?_l&͉ЈI™([atlxd; 'F85O[^\u35yEz4E_58M-X8F1}5%P06ACOl "L<4HG4b:meazAx㩙u7#\_n腻OS\?Syk;]WClC]#3r"ԚߘsJ$ttQd /腅Z@1Cf*iJY @cT\Zɽ4J"\ ;hL hSsP0LNsQ ?Ԥ>ȑ=ooAEvϵkwǏ\+&])fW ߰F/gcf"'ZS69>G["5 /奵5cG9I[[aiCf^d79r0L^='Yf6<0"~7ko/׮T+ #*Z뇔D?#|Ё<3 / XH2?k>3/t&B| PcSw${ BsDzEy0-<볰P?|h|XL{OVUvV+?Z 0s  XI>HMo$9c [ybP %B]'`ueK-4X2߇Tv6("Y@}1F/# @4Shq)\hH#lPUP)ֶ%O ,އN8H=F8:x>BVBX;+ dփ9 ta]kGDs@m(U4ɇ(G]:T1Qɠ*sXZDAWvmc#5V}.)&Gj Ngi$7@jq,wiXe҃l"|?ʻn7o\s? l4ϥkoL .a)NLG<8I10;a 3Q:uGz?e.{Il|:==<o&-i`<< !卜9ۯ^m?ㆍ|sFFVy5?h1y5 "+c1إ7g8m6r4F&pzs<"iͥ#M&8Gg.x)?ZL#f Lq?Q5{KTK99wZANq?_G0ò#s0wo6?|D$A !ulMjYl&I,ݢ, YEY$A@K(FBcl&^LHPpdfݒh0cO"GmZ5t_VkY=/򤙘 Pڋ\&H>B؂j1&X riu1-ADf1A.:^dЊĖLji| AEM"A+Q͠ &JlIL:$d2h6&H?YLE<_hA]\,*L]{8L sQP|]5+f'c?jYbID}?}:\ږFJ_?'~h!k%B<~jH5|!` XWȃr/eAr*BA# [DywLz @7&bއ4aLziF=πx~ A;|%&GfG>|c8noCB"$)N"M/'$:9TE8BUtFзP#}#9"v$a V\|OqeGyާ$h'q~C B74w-()Bɬ.DcS|3kɖ2f^n)Qa[0@1S9@fnʣa*Hʦ r%~`cnLZ&僽FLi',Dc8mӈ )KvRpwye+7]&cξ̪^o@̓$_Aݜ~(| K^9v{8pU'k '`р Pr;i䰯xKVA4M tMfr06b?{ׯ17įo^G)=^zA=yF`<]*~ DC_h [Y;ÍW(Wl@H;^{yTp~NBh䄷- F<!ـ!j ,H(q$]lx Eu{< Ƈao!=ˣ 98K?@ii`T&Xm9<b년 8]!#&q56iݷ֓w/ybG*"bRT9GaoMuCW+=dkT)v%Dt߁x:"Dd$ {cK]ܮ!EmcVnR0R%xa `'itsfܐcpK(\eclXpuc^i<#Is4Iptkἰ)G(l!LPLbB"9I{a Zc-bj!<5-ߕ7Xw4Md<ka9u!dHzY?TQ']Hףtz^$ON{A$M{uHsɆL0{]$ K#mq[ޠ2D_Z0(1~S^cG>@ Ŋ+lB&P {5V|1vĬq{aI hOzM+ҜB-!]0c:F2Vt^JVlHI1Aq7}_Iu-nA>-P63j`h {},.H} Nnq))9LOڃcPr>$k*OuQgKF#U!4@SN}SW oJy_5n w[FenYEj%wBZXs%3zXqonX= UWVbQz0Ԯv,պ.dA9 B({d׽Qvfz͈yT,vr"bm22U] =mwpaIkެrJQjmYXb afSpbݸ hh4i:Ev::Ƒ{=nI@q$nm]4$[7#&TYlg"FeS&PWh1Z%W;R 0dNKࢮQr DY]=7s!ęr!)-V,@A/ T "FՀ$a.FKd+"F0}!f-F0H#*up8!J|{Vae=!ҿ­ J#59 hO p@B+j]Ms-f Մg-bQ%]4c''^˛I{fY?θp(f ;X:rlnJMAҜ bs1.]"G&  Foi4!_uX1얷3{-i!miOiAPl]UZ=;Ba8D 0sՉDBa¤m{隴DJ|~FYڰop)}3'3U*j't,M{օzi wa8?އ]8 vhSM<fсe?uIm[Em&oв!1 oQi8`\;3p0 v,tҸ&;9̴O\\oLAsm@[$Lhp?2Z|4x^ohJn^ D~z؇O^q &WAqtva-"sQƒ@FL_߼~K,ne.\\6hO Kj v2!?w0X hAuyx1ڼt 1g v97&4'lãF΀~ __A\K!6bBJ#Ҭ´r >Nɢ$6AZ*Ljnf, )tf&bkR2Zs9v c & 7]=<0qk)ֹn]q}a ІJI*RH|MGK y F\ $R5>8.a% εt9~k2h#Bp4i$vSAc4G|F)%AD_'lK]!Д&b{I<0A!%~!%i\.2CX [Bw9HT+T)r<@#cgYG)+g1Y0͍ll4$l rѮTOP#TxԨŌTefXx,)E)C ȅhIZ پ}#QI4}MJQao=myjĪzG Xqrw?#{q7qva23~${UяG=&l0#!ăyb}9&hXp` 4=akMCvOHBX&ԉm@)TNx/鹓t硳A=2[1b/pEMii="NJPAF-(4VEV?7ͦR$d3;3oİgτp ĮzьUnz0R&u:nh`CkEgA!žyYu?Tڅнyg3yZZ˗{nWk)0ؽ pvNJd"W8rI)#us:`),/X>=ƲɎV;%qjjmf ,pX- {Btê /rӜ(r{ٜ߳AemMʬ9@|}A??fr*dq-b!<"?|{Ȃ0dBEqQ,2U$U>c>B޼BOUA. PoL~@`w9[,U6;Tk2oA8v'>V+V4mM:~2lpacpl-code/.git/objects/2c/0000775000175100017510000000000014010524045014710 5ustar viriiviriipacpl-code/.git/objects/2c/90086366c42958413ec8a35860103cfa0b5b9e0000444000175100017510000000513014010524131021532 0ustar viriiviriixXm ''5-yi:6@h.\R̐ݻݦNpp8pn۪_~= 'ԹPF[u>&xMC[rnYvQTOS7X uo݀j>eBު &( Q`0z$\a꫅jkujõ֝҆%f[AIJLW)RgFݺJddSp=4],VW>` [xo3(۪kb.oUMlݶ&$SGͷ{cX!T}À {R;An#=D pژC;[ *C00En|h8Y`bs 젝bgӺBT@Q`eչMٳ2Hc!%(t.5wԪAi{kj2v)@o:hkc<iH_˲Fe_L}0C k٫CE:X:\CC L~jLI0=({nG k4jq+N{oc$ulJ%BD~Iݡ1d|{xՔ$;bRPHWġ[EDAI™%e')R~RuF]Wl8PNIGHLw&_#T8E?^W4>} M9[Z38Oʗ$+mQO"S!})ׁk< ~HU*i?Z$~8b:=s9`+u:}[F@ﵷ1Zb^E"ӷ|RB)^!_- o]Ib(84Y366 I|Gptbi] w|Q#ybæm| "᧦;mr zN_UFCx,1$UFYoWgv3F3>?RDr Q/ 3 ZW%i5<+w]#[]h?)H2)O?-q ,eNTI&ʼn{XyOQIy{hTuZaC43xr|$6guODs|vq!F$!`҈OX$Q(LW(1&O=%ۃoD>/s{qQ*.\{_o CEOȂMڔj|zbRdo`C2s) @0v[TNKnr˻R WfD'9"?u&ݗ|sxcZaƠP~-Q4$ "5sC-|2P2A]L)TW ]tǧ69%D1o`:`V+FG>%Kω6[Mvf&ÙsRr$J:V@23 1AXv&Uzrr3 V@ݖMbE!⮡AvI͂Hbrx gʽ71B&g06qm_wپvf UXW(W}h:u|[ׯx us9PR̼ĜݔԤ<3grEKv,XL %%Z {5>Q;aR .s rRrT@iD( epacpl-code/.git/objects/79/0be6e3e610bb9caecace222f7f3caa1109ef5e0000444000175100017510000000021114010524131022453 0ustar viriiviriix- 0E]+}i I$~!]9P0_$4hY%T@`ɚ޺dOE`M>fUnЭ0K놊ՄJM& 9ߏN=5pacpl-code/.git/objects/57/0000775000175100017510000000000014010524045014637 5ustar viriiviriipacpl-code/.git/objects/57/ceaec7588aaf7c9669034119d060ac06e1f9960000444000175100017510000000050714010524131022002 0ustar viriiviriixQKK1K bڢ=NdI wUT81] .1cwlٕF:X`R&Ԛ=@,ɔ.clx?xZ->q[,1U@d^D"`]* dڐLv0ly" # /Gg >&g" w\c3b=ndN,86F<&n~q< &JXhSbF4%𢋂ǟjBk^\;R:M>aٱ PcG(pacpl-code/.git/objects/10/0000775000175100017510000000000014010533130014617 5ustar viriiviriipacpl-code/.git/objects/10/05bb492282ae305d37ead88d5bf1926362ea200000444000175100017510000000377414010533130021670 0ustar viriiviriixXms_W&SʘdfͭK03T@TfyI{E$s?\>yǀ>/W_1uIt'h,. ((aĞ,&(qc?J J}4z2E?{H_! iXa?tunCGwDrTQ3ϧ>8%IU .a7 Nv{{0*pu~5ڻT8Ŀ y]^]/ɼ߿y]Wu%nĐtͰ^]8~Guqp8zD$. %CvJ:t{^δ!~b;!~SK:6O-*\#,M$UƴjZ,;w7zH㻑4ѥ3L,)u`C 5u<81yK0౰yatPb9bh 6+ kpR#wk) [$'MZ?~ ] i,(䭇HRg :8"ćbNUCIo]Κ "JeKrfoKЍ,$Ivc='UM&\.o$E9L%8 P8$ C+|QtYS2Q_I\+$,fkn4bOˊ>ZEn@; Dܤy m ydINqi&޳6A/Jf!B9 Lu4ʐI9¶U-6l VL+hUשʽˢ.xeUv헻W*h&KF` pnZh  7*ʣzV1 c?)8 W͈nàW拳 )Qσ9m00]VY5 n uA$ AXQ,)̜K6 ^pix()z$az]d:Haɒy8_uH4WՇdE֟Kl "!!2_Z[C;} +}76q@ Z`eU$Q$&1˩<3a=\J8R6BM-="ʂ][\d$ISR FBOWxyݽn{!wq0k%- 3}(#F:u aOV_LU5_qFs]E/g *s~aCzTFsL$P=]W&%uflָ-mT̹l:6Y=z 3J g\,Hd,B^PhKb=BZR4NyIG_. ?/w[hKݲۖ;z~JC[ `^*k˪<® bbzCY{CӃ\$x;겪*Fy{uߋ0V/XI) L̴nJW6\,E1.) ,H7H6@p8^]qȑdZUĝ[{fç MVan66T:Y{KۂsNqx񃀍Jwv xYPy]; kZuheONo Bź;\\zM89$HlJaăy!~%^}ϳ xw1DWxEd  pacpl-code/.git/objects/9e/0000775000175100017510000000000014010524131014715 5ustar viriiviriipacpl-code/.git/objects/9e/db325868fcb595ee6c7620340a638346526df00000444000175100017510000000067214010524131021643 0ustar viriiviriix+)JMU054f040031Qp+gX8 ֭7wyI9UC$'k<(j-/O2ǿP) 9~Wzs >}|% RCAjnqL¥~[ĵLM1H:7Q';tko[j$>>SPR2`~eVڵ Ҋ~};cu^I܅s&&l;{)&$3dRȵ-w|ziW{x??iT=e9ۯUSRp{~9'?&r1+ƣw,ytRl9? A&LHN;hwbqD/y0A 5W܍|$=G@c30[J@ g1/rQpʮ&A ʈwn9;`n4)|ͱpacpl-code/.git/objects/ad/0000775000175100017510000000000014010524045014770 5ustar viriiviriipacpl-code/.git/objects/ad/4b62ea40f8cb5e2805b5a3b3882e4a1a4279370000444000175100017510000000616514010524131022034 0ustar viriiviriixZmog Vh$KyY]`JR8S$CRvO ۾:isDʤ*M=m_͍knlUyݎ}8 |*=Nš7(4KV08 \'z&L.*=Q N/ґA)68|tWˎShg<˾/cEV'{nWҗyh1%x%Lm,:j6n45 ̙Nps0_|Xt=-w*(4aK l-P6~Ll=E|W-!vC`&YrDbAM ^cUͥ:w/>o9>Td C*4b>!Z|dKnh_PSިF56}B˹UW][ Ữ Z$ 98$;m-Q\p`R{^ m:||!{{")-{<\ (xE;* f{ʤl;0Ӟ~ӉUF޳蛯n 6LW8_'~G7/F#%nNIx٤os(Ou\^aQjLBLIeZmQ^Rځȵfx},[ & pjl~كMG8=Y0tn 4p4m#X;/Hۓ 8&O4 37J&4p my@}h74sZ VMH0HKM 48Ą +YJ-~gKN+s-62=ܦwm¢?QF@VcMW㇘d$:c[?Z T3a"޼Yل;lplyeXJrNL8QeuV p w}!_fv^զtMVX $UؖUr`h%Ɖ{yw i2E7}jukXkמLq%ԾΑ`~jm/=/l Q"Ջыh W3!$ W3!HOo\">EC as:'mҷEc%,<Ҭw~pcLӮLsdI_ /BxC!_a*:=23_"ya~XvW I  3LjM]`FE)&nV֙o7m8+yҰoݪe/3mo#&zjil_[}֪Eb+4',eXKĉNUKzd81ЎxgzMg،n3r[A¦5;XE<<%wBU'[u: [Gaj5<6ZsVk0|̰N [^ zx\}Ka,-, e8Yd%} K52n7O囇Ձ [& N=_߱m;$$nDU z#1 [IJ} r0 ^( F4dN5Q[>rHL䚽mVxခUyjN 9;ʏTJ{כ0C6y}O粬xVT3yU᪄wP͙pXf)I2@Q${z$oGava^XA>Xх(_n-l'a1' *q&;V{Mӗ8@Ho3g?}((mU8*>&5[]qOYD|;Of?*7pacpl-code/.git/objects/4f/0000775000175100017510000000000014010524131014711 5ustar viriiviriipacpl-code/.git/objects/4f/4c4ca3823a9674cd8525e336b0dace7cc332f30000444000175100017510000000013414010546243022120 0ustar viriiviriix+)JMU0d040075Uptu+K-*aePKX䷪oAm 3Ksr3*=~&{κSmV rg Tpacpl-code/.git/objects/8f/0000775000175100017510000000000014010524124014717 5ustar viriiviriipacpl-code/.git/objects/8f/7588577ef10244b5aee30e833009d34031b3cc0000444000175100017510000000143014010524131021611 0ustar viriiviriixTmO0S6}JWMEH`HhӄTI,;B߾k{"%v=i.yy5*L#8sq3*5)$RPTfeNAJF! 3 DR@isԃDe'9sM|o3H 1DL%0e@ܳ;SՄ WK vOaZadҙGpNNd3x[Da^|]H2`Fy,wFʘhz{ai/ C -Wa!{!؃Ѓ=M?p6xUL/ w^x|>^X&|\\]>DO.FOKOMBd^<ӓ o7zA籘ҠV&]%{jfjISh;bY3qNe/Y$c,Ao8뫷e8"`z^׊$ğV6S뱩=SȬqܾ; Qokۊh,ԦLw*&i$LD4`Vmb58eU}ً(ƲC18N=[~Ԓ9vURa تV+M3$wE3x}D)6(,` w5M0 <6khH>KBrb߅msEAW6qea5ߩP0Y<!ZMMVoMV>ݭTVox!Li}AYƙʜwpacpl-code/.git/objects/a9/0000775000175100017510000000000014010524045014715 5ustar viriiviriipacpl-code/.git/objects/a9/244eb0786534553fdd9eb0050bb4b172bad0a30000444000175100017510000001347014010524131022015 0ustar viriiviriix[WG#&=5>Zu#9 ff-(3#0qgF{IѝY|:/_ֿk]Q+VU7)7E_%޼q.{7 gA$ 㨻tvlnu^uvW4L1/ #/ R5Iz yY8kiRi0L㩺RPan`xiE!\m|q4 4ufSMLijY|FWj/n4S^Y84hV1h/ث˗O{4Fidr.cNdܰ¶A\*('j<ܪD e ,ƓKaKxbþrDqE=UؒU*A^)"fI8&gK|PB입Є^CK$e}Ph 5p@6X^tP~H #S6LK+NZ@#Cu #`D%+La(+ i eaYU3pBYۑr鎨o^2Jv8ɋ.bӕNy0.#9?pF;jXbj;d8WS6ԻHapx/?NO`&G'Z{o?0x0RdG% ~3QowG5@?:&݃PᨿpwNO=!GMѨz:}{x@ggp|:G鰧c/{=, 2L޽ISvި?8&<gO) P`{{. %Yd(m~oZ`4Ia 8aILI(. ^ Cl NYvcKn4 3|ԛaV>J{TC +LX$!$a򖀂$ A)e~pz@pa“"!-=nH8SB" &A@8C4E5 \̽OAM,\I] Kc,*2NƄq3)W(VG)ّ a/@EtoY}$NJȊpq^66+h֭Uji5'U) Sx33?,1ݏZ&ZqlMv/`r6KϬY0:_R]%"갻r* s<S fi*+L`нw3xm{XDKќ(v ` 8S^BhU`<<<\iC'|Sy47heg|坃wǦD yiD&/БVt^۞_u]%ᑴ% =}:5yiTq~>B֭U,Н_Uu֪? P-ʝ[~p݊YX)we郊.e] y`!mA8sѢۻϞ-~Wߜ\yZS;.-U(vTr4w+~O#_KykNANltO &NjFr줷'#c]y;Ēdžp8ru uْ"~fv( dd,2ryX*W庀|EXyU3!Ȍ5Pƌ a4a $e^E1lΞr1>G[' 84H4 67B/58:z< L]' lܠl8O( 3+I(sb+bpI˛srL?GƖ'lxT A_P"zЊ9w*؇<,"gBP[29R7f]i4W{*ku$U`dκr@_gair:8~իdd2Ȼ:+x~i4 m8[Z: 'YNBU]UG gC9Q@p٪i~R5UTs|Vjhg O>_:(b{' #XJƑ8Y Ro|;]ڝZ}`i]9rha32D%Bq02?ex8cb*k$?+SyF 9*;q)ݳw-nj{l:ǯʊ]n"YQ(Pc tOkx&x V`NS*ζe]һG y0Õh5or%Ccm{i+ S|$QI]. &`>$ lP1&Q:4Ҟ rt*{bRP6w)aGlZe֍,H-$+Ԯm\Qj"Y-U_ĺhky 2$.k-g\ԕ$wJ̩rڒ}{W~L WmCCwdu ^,W ٕLj6$Ytnv>El^ETN>E.^ 53h hUILH7͓ p_ͧ؋_ѱ2xt@ˢ^9r C{)\vsLԱ߇#;[Q9ז2=Ontb%3q(5׾W[6Utb"Qz1nU^SNąeIr(cH-Ǖ| 7(1Voe"x] EgK hAO4՟lvhmJ';.u)=p~q: tUGೱ'.UZsY{,bP' $Cen6 QPRݪK7 Yi&Ⱉ5aַ r)cp F%¶}9@XYǏqTŇ}F=Y8ʂry8\J4?tdGBW"p 3n&)- `hJH &N>cV`a#8a̤U]ըDhGW_؄`ΊAs(e 3]ϲvߖRǛV KTHp?!pV#XfH g2wQY۰r+u'^j6xVo l6:SތVaf7I@\j94Dk=kw)q?24Ϳ$)Pb y.s[:0@lHY*PBZ )(dYi`[y X!ѲN^3A!C} v9:e"1m:N^Gm~~dhp}lho}~6_!|U+ua|8D.‘mhj?2#Wȅrh\ %1|tYsJ%LGMŽ )qsG!jM<%F9%b5<`UtݹB`PBm|dƴ) `CgkL}SE`}rY]W^%(4Mlŋ<_<}mlh~Pv]NA۰Jҿ q2::Am/\5\1ԘƤ9f|&{ tF!B2Bl䭒!oK:`Cb5몸?t L)exVJ}+" Hnv ڐ6Cwfƛ{4%gV\WȊ.T);Id`-d})c|!Vϛ1IXWE3s 9s(6 o塂mZks_'.Ny^L?ݦmsY1dƶ)mb8Q%s]yNՙSn9m|?.̝Hw-̘o=Ģ "_ }.iC,'AʚH tSą?nt Y5jI4`[8襄L,6@˅qYeάuxj }cQN#  "M '_pBxAnYC;Jq/QGC%n:*&S9ĢC|~d ZPa#؜d|=tZrZ8|~Z5k*ѥBK>c5Bs"0qա'|͟-t,JCQ4ѝKɚOdYZ7z*Y'E5I󜾧1 %*kF`tR@yferT6o#^FcKw)sh_q %`a`P*OĆK<٭9E>Nʊ i)oGۻ&[iISM[3Vk]UMGFδY7MⶪI9f@V2 [4iP_Lhɵ4d)XhbNYIg%TpPD%Y ak, d)/{&?_c}Yd ;zٯgՙљU nI<).lEWFCnsV OI ӆq1Zr^ =FЅ؊OKQLBоDKb,GdbA`$Czg8B<%s1gq%OcT B_-"i]3$&F?΃ A/c ֠ 7%K]$T.Xk$3ѷ)/Рfkĝ0ºӟh*k`F]^޵#ҹ# {o~r5Dt!N 0O/CĵL4Wz!d² gDb=\-o?;k}ܾ19 ضBA/tᕷPyDۧY L"Tԫ~a>:߽8;dzb~fkgk9<65Mߏ]PR7 "<(8[;َ,p` y~driܙi!"vF# ʔ; rL4X1 .@>&􉒇{+-g%e6td(f"#07)k,͛qi<83CQ0HVTSxirl !(].;CM BO/ %%؃3hf~X 0<!sGx[\Fx l-n[sxTq"+'\'].[oY\( JJcAȁQ~)1L{282MD"R2aq!k ^2:7Q ?r4+/vAeٞp$g0ε4Hr]Zq[5Б=@$*^<+4%Ȣ#f=|Z::2y'<@_Z4?y]f|=Q8jRrYi@lE 2_1Ŷ$QՕK G}s~ޚğ7F ? "?"c_ mpacpl-code/.git/objects/93/0000775000175100017510000000000014010524045014637 5ustar viriiviriipacpl-code/.git/objects/93/16b114e7bda466f4d4eeffa96802648778e0d60000444000175100017510000000045014010524131022003 0ustar viriiviriixN0DACH$&K NlgH^gojj\]_[fmF}%5&N Mr1yʙ=䀭ڌ3O.qC&b!!R}^pͨ#7,Bi^ɓPIgҳf.wkdkʾNQ4[Rsdw:vO++[ ј'P>հSc.;sv$dIuˣve7vY4y%t1Z$F].oW!) E_.6l47pacpl-code/.git/objects/c1/a692c036a48ceafac2ff641ec7c2fa6318710e0000444000175100017510000007213414010533576022266 0ustar viriiviriix{CG7>EG&k|!lj}B0vxpr ;H#Zh$9UUwO43ȎX3]UշDߝ[h: [p_tG}y ˋ^?| t ;8l?yb6lDDꗋIN{@Ha@ɻ08 'tO_g)01y0Tg* .Qpz]zv*58WE=}P N d:wQpz c~1ag˩]/:ta[o5D5`Cfz`oȿ<ߞS$AE&葷YAE},xLϨW6o[=3~v<:7!NCE(cPز-&@86;SDfq`jS*ꏂW*c4#"u#crV%z3GeHx4ƽķ\Èz l*ӆ{}ZcZ'MuG"10Ca9益e$?>!l2!y^t4FaGw2_E*n%tadV%\tJfL?Eז^x#j+گP㆝ciG|dR vTKQKKKNYÑ>,^-Zc!kKTLa)UL=r:ԇS[ؙIʉ5`0^I7T3!/tW>o|˭U'4ég^\`8efJ[[ 8SAF*h*@r6eu}6-TwR {ӕ连#jswz#iIXBGa4p:=[A~NAzDž%K(]cA"aX;b)B1b:<=@.Zf'lP["F]c YX +bl,Oē(diwD(!f,dυZ?V'3.ZUW6$D' q*"Ű48 Sa%4ːSIkVw4B2ПG^\px/ęS}PɎ ,,E7w/0ۡ [o+yz&dF1=U6q]3]CģQktpaF@hڅ())ǂ@,>\hF~;\Kex5Ԛj.i8XiF9zX&oW.@ yGwh5(H4PD'c]sm*CTZ&D*'7-vL3p3Ԥ5Xq޽KGSр~7iCri^6(:ĕԽ2fX O$a"@]1A@ <#'c D|".|tz'#=:}N޿C7&D.~%`d ҅0N&o#74Hb|  qntzΡ/3P4討ƿ tT)qBt ] `%c\Q:$O8!] RU1㈚ dX ;(Nb{ 37DBiF4a> ZCtX;Rᨁ;Z3D˜5:q)JA8ޣ' FKSӏuvw~:zg-Ou|vwNuܕ}r6Nggw͌g){t(4CBYTN'4a;%SZWsBIGDΧD:ISwHFrR_sP84_(Uz |2s1r.}$w$BIˑDtB{'QBqBq0N^Z $mzPt)L|4M4iܑxiiA*]LZyҘ <qG#/([KבD(_(ݚN/2 Os]tec?I}n?vQK+hS$lQgXl6M[Zu> ׌OC;%z/P: (j8 +̞b.z}ty?ȊZ 2(BLӳhvziB2],S22V4 Ëeb0= -S@!Noq`Q_􀆅"*|Aq. \}|2SwnpW~e>)fv0cG1p P+'0tBC!M4ۇG1|o$`IǘHU͠M`T:@knyiA+']gC"f50%C^ c3S7MYJ7L7!/Ϩ~&S7g*'΍ErRHNu (6mNU3RS,ߟ^DΠ5zoF8ŀHMθS9ȩO'V r ڥ6W+^Kҟ2}CuC7!f|aH"#F`xƪ]`kkqhHH>%rP|bh65Fz&Ph mpq"7RcʇC:Wir$KrJOUJVd:z.0"ߕUF ? ՗aГv[bHtٟXk\&ng$<՘tԷ4dyqQmDz y74~oV/6qoA%n9)4NsQZ"׳ Qgz.6IUϚDF|]=TB%q}Kғ4S7 %n4_K2jzBub(em٭uJ e7BxS\,?v6UfJWarĖ)޸~AjX_D?]pڵQ giT?!QPHMNΛ:7/^mn=y}!ZN0ī0|q-ݼس e1H n>Uo)o~,^i:π+MA.rRdAFb]idPTx `ztX0N{;Y` ҹNģsHMqiy D5C{cO=݌;7;ҋ鼫t`QAwe$VRsS|uƂLd9eq[x3"Rvv8I) J;)`QčS$DN#^c)yҭҺjzD%G]bYF`Pq>uߴ 7:bp!ݕ#rE9Ҋ L/nE [py.Ӟ*JX"y)xG_DYxiJ9N&4S?}BXj`;'Kw5ԥ!`KB}ȈP"*Á:3ЇYؠ'5p@dO_SeYg.xq\[ʥr4ː LPX!|[}iLeRcHS1)|{sF rEu< Uͳycz"HzCJҥԁ_.夏e7wxZ034;[!}f9F\͓/?Qmdɜ2tTNAw%Nl?7iE0wt&c)$0oy6Ex|X;<r@(f2O1 ʯ1} ^d+"Kc6O`+#"5sM8ÉI~ڣuBsQJ*D(|[m87a6f|0`usR\:W[~tN?9 >2{7Q+j[VЇ$V* Y&*J]GGg.Z/)[lzɓX8+YΑj9ݝYLKa^Zݼ.5UE+ELfpcI4 96Rf+{S{YNA"jLc38Ok{kAdQZR>Fb|QW8f+׈孭RyYrZO7/f'9=e]ZB藈"Vsj?{q3O 55e/XټXQ_ɵ[8m,+_}H KvPQ9Ţ ׉Tr ,&ypzQEQ3~ 5>W@19{sLTM!$;Hњtb.6d'<$"l:MɌgW[I0(E6 (<2 *5g @3z#Ҡ*o #ZHѳŎ{㇀==K5Ǎb2.fv^Zz*~^:I1SS,o?~x?o4=č~TG~dJ*Ϣ%V [~}4K_C2 ~Q[+fn>: Mqs|wtze7Nb.dSbp*`ASOxɋeZ삏Nj>62 P%&)us?[FpĽ/\eS~*$tʫ4*&Ğǂ[r7j!O&'hQQD4벭ī~snZ7ߧ oUt&湠sfYX+@T'J'N9ˌ ?\WꔢUJxа1XE8$O7;f+Mw+irXZ)YX>pNװj[:% ^c_\ijٗ&ڔU.&'Yz,As{4iTvi^U(~FWTӟ;ž-N5xFdo-c:E+/ .wcbNl>z /{ s׼b6Ҩ%Nn#H y??#u|ssx4 siL05IZ&y6Xejx0Xϔm1-[K6hn#AJDVurB%On{iQbWȠ.%Im'LoB!FcGY*Ta 3"ΞJ!+r3VwuϣKў'$e/'{5wgB/|&hj[;AQmŠHMINIt2+e^Y+0fw4i͋8S߉vv9yDe2oeMw ~(gj2{Tu1Վ-8@;T`'7 oPeMMa4*Y0I'R_o P97 TD"Wt+?~S9 V'd"{̒|UcYj?0{W/=% 3ms^jST1~Bos8vBJ>('Hb{7jt6rKt6LìӤ3tt]?(M2,lƃCXf; H/RM F8>Vs`3HJU|Ϫ~+QMuB0-_8aD_S5αZh8d*CMc~EO=~ؤOzK&Y9(|#y9v/њŪNiG" }3':z.INMi[H'ӟu0ļJM(o qO /98G e|9张@Hgm F:p/TV4 ruqO@tvQkC&0;C "׮|붱)%88Rʒmcd b |QR 㠔1)Xp~̒LbةQ{D\GNq_7sOcRJz5ځ7H-Qg?)AmCJ#K?I; n\|^uucҥDTk@|sc~&H67/.vu)8#s0دQDB5c$C6gviLO,iMqX?ғsb5_u%_w?=n&} w6\q;r;xq23v2tdj(̜ф6p=N)sE#UN7aOV9>g"D:-זN?FgA8,)i4%] W'3J?/1_ȝ*R3-c5,)(PZsA&shg8`vaxQQ2ZCU-W+TBF`>M#lz< ! g)ބ$RnoMaHHAY_PHI8AV.dFL"qh҃M&: dz12fo$qvN&J,F4V{_#|01.)'1HXY?fҷxfږ *&&Q<_h.*FC:+ 3T9IkXDT9ibfzvc,5L,ZC682~c 낈s0țpg!dD\@ArQ@d 7R} K@)m( {>in| $BB0 ރӷq0•2~ޮWRNzF߮Dt~$4 МBO(4 wɣtnovVX)3 /W#3@XS2@$~DrzZiɦ3IĖ(eH\:Pc aJHdf HA62]˃cR,9$WSyK?g12ciT](1_T=w b #!7|!,5]5~qb]t Sf еz…ecT N܈2$;Tt]FIv E#lŤ7e>^mхTi:nd2"TBb j}R,lNR[76n" nMFim;1P8 &W2F\dZ0 gedBN{vS w0{ ˧8kAg) v om8AY; 'HrXȾ'}TWIl|(rQ`G`IdߔTˢf|BY L' -;#Uv]чuCs`# ( Gn>Ggalc=3BB 3IZ5e%m]Fpky+I}E5 ϨӢeΆN+/ Efu84 Q}pWU߸颫ƋW2h`78]ޛRNJ# ¶+l˖. N-: F\e fu*Zjbdn)rFFwhIY3$m)qGs 00dE©g<Š *Le<~DkK6m~'t0fG$J|-& :\'H*͚ĹkU2u7U7@Q p ܁7ƛRQmKSOHHaAu@EM1_K7>`_'OX~Wɓ(rqu_Ɩ r(}E˓9*#tXyJO iK}$j̣}Df2kOgLB+[؄0-,翐{350<C.c/&Zo]␵8&h5:Ok#5 u$$}P!5,_sS H ]zr4՛eö65B JtE2Ƭ޶(X ʃ^! T ݚM m-fdɸ-dReK#4QɤꌂLء. bky`&rUGb{D.5dB}zoHb wꧩ>= 5E֙=d.U'D_2șC iNB,u }qP4aQR3 If3*AZ>hh(˙ !#V((+zSlkjnjfYT Rki%WbE _?Ӊ4>̀/' 3T`D?2{FOg(^ hdӸO"N&/4=!BEq@")=^!iXJ; %8K92zd&:a?DDČ٭N'Nko E7Wq.x|v3ܖ<'=uc=uI3'SfZQI,Zl2:>Yߢ⑿-$.yqzn1nOO[p*Em3o8d5]+Ʊ<~8 C,6mV"0=fg{ϟ1OEKszQcq IZaAMflMJ)0n5Wl&F1G%д8قr}]'B&r?#Έ/wJ||[I$W@gwʗ;LG<6 5ݿ& Q1 ~ O^H<|~iPz&=3=No6RcZu-(,>S,p0[ȣjKEN'[bV߮{}۷ay+l8,Č|+Ab(lNlX\vDlhNԫ%%GǒlMJz>}E?=jFK[h0 <(4i4; hz+80y870v91=8vPmzTWkA44}ctGMDjOY17mckˠ-%1-9u Bx0ϣ0&$C,.mB/FF.y ڂV r-%ݩ'$:0<:= $4NTJF4`MiuӞ\p__CntjnLg굵j Ac' &9Gt`ˑ[4&87MW-iyHCfonnUS,)R:Yq2?%^M vP5Z)v!MNȓRkQ݌+6#5IiFL8=!zcDquI'0Z6:3&LEY9-+WKR\ba 3JPzF.gTx XjK%VbvgT7m4g%`HL>$A3/w$FCTpzaM] 8w{eCvZ6M :ڑEMgON1Qbf1*S]`rO ]>=Mδ ?PJra9v,{UߓeRgFƂSp+>Q56sj1ɕYezLS"]dD/1A(~)ski[&i4iobWO1c518@[X<̓#J+7}(V)!XHu<AXxzj2?~H%[ka2{rן]wS5xk4_ϖMv$dr)M㎳]9hxc+dTq<U4v=V>5j1 _Q[b6ha9Uuh4/#Ҭq+T7 n|8Ɏtp:lŃRDBtW>'l^$Qyw*?E!YN^BLk&~;lzu/VԸɉ N-WcSHz"J{fKLD.Kʤb:2,7x-tG,hѭp(8Sx==MP6N&߱%^=n9KCiy!%o'q)80Lqmn/}ԽaeWFluؤY[ަdEDJLX"t8W԰E}˜fQ m>lD;u>g޲nF8Jv)>/UG\孻tԗAw5B3ՐBdR)AźF^2$"'::GtI50Jb!@679:"GDz!*EuP@T)XTD~$)g+VT[Lͷ4&cSwK7eiK.΂] F)4-1^oK ud(M%0Yrb"2%GDsN Nf#j_zSYG^Mrep"luB(ې[:2%#ZKjrbW;)PɒQV߷yjsɓ~'qW,&cg9:*sHǧ4'R gN)'Ve&]TZy赡9e7Sp)J4nQ9-}{tu \u f,NsT_cnCj?kYq8*xt]ᯕAyZQZ>&Weךh\lΪ }U͟2jC_kq7F3i!SZm*׸Hl'Qd tTcyöOs2~IS_Ei{= }Y%WQD3d!5#.6UO$Ҷ4&"W]fN|FYW#fbƗɞ8lM1~v?8P(ݞo.7"h \|,B4SJF}i Jc"9Nxi 90%L"BzrRBY%0s33FZ>fmuf5Qc@͖2Ynuj[Xsh1nW0lkV]n8Xv 0Q,ko fې.6HAoU6yй6eV]9$_M[B]m5k[FHFX ֵoւ0t D^GTF:rkrj-CoueqV#pΡ7Uy-wœ9$-Q:XPΛ7.L 6/dbzrκc{mg*#PG[ S7f:(R"c#bp|Q9茁^LR}t'rpika"W5I,F$jkFOKlQW%a(?MNz -0{W@rqxfHkhOl Œ'it99V7)䍻$ ibH3ihm<=7BNhY-}&|I>mNKlh 3 FQE,6"qX*X42xpϫجTeʛ2 tceH{$j#.r*c#TD=I$jf,؏#Kn=(H^8ܺUx^latlؖm¸k7`~0Li/ƦQ_{h%55; i1oۜ"H^(PdXyŜ"=|v9HCY?F4qt"P\Bn&("f%ǍGg vޘY@ -$w]Ɔ^2=-%A<|r>b-Q%0sxc_&ky27!~~Fנ (.K.B @G1̻}QmZn0HޤׁP%v^~P-F@ʥn.;ƊgﵢƦV`.e Se)j'"zo- W: :IT9iMr]HmjӐ<B& %{5]HcAIX'h +1 b.6p.[}Fcmvi^P/rN.O$^%X] $v܀7\ CG(dQls(!%ƤS("Gt$#w`";P:=\K*g%x 'X152~eԍ*b970P>zGb=f5L3񳫜T[@ho!n^hb/#CY7jL 8b=KDnQ1]+zH> {]|ZwgגtU^W|v;&#+,+cj.%(86)HzQea2])3Ŷmym;;qo^;obc l!tYccN!"b*nJI ֠  23;f-3cF94*cXh'@JXK8K=dn\U.j>?}78;H6=/9n3k"CЅe`b$! ez0ǖ5)Fou-\X' r ȳm<Ǻqj(nb )7/n2]\ f/R+`d^H+eXnW=pA YyJsZ2ӅLV2;hdwOt'([&T_|aͅ撻eAɤ[Kl- _ŭdZ)y%ר~YIhaZm]4Lǁi!{JN!ș­4kw0j ^~KV5:eMQin=}-N_3oûvCmø`7VXى*XSSsиmԲlʩϛ9W0:Z'(I:6Ŭ|цl+ a8ſ7*S\JvsB\eL`/gppxx6Ofa$Gywv&}YAcp[+!e %ZW#ˉ,{m&e#XkF?lbApmIjtWSfXd43Aj@\^ypl>y<2mcp @C nǭ͞aʕNF O'M Ȃ@٘RG!Lǁ 6Y=, )RI3WZ_TcZJ&?m7$Ϣ3 W08ڋ2 1$U%w'EUpîť3Wb<09qԊ[u#hxe3>m7V=q$2'3X6e+Tз%{tk'#=F|Rib0tr?s^`R VH0{O׿^}IrA/WRRp&8S=G ( ~cPLk&Fbq)RJX̶hӞ@ӿo'є(FB5AҝL03d΄-?!3"DNVtinpWjYV:jY/W!g>SVAȬgAgȞ }AzωYitd Mʛd-7넴c2uo7495)DL[(g=Ah^d)-jyK˚XJ'9)f.׍S KAaVwNZ2ڡb4kΩq Yݖ; 'o42vJ;%N0&%n2$nĵ̲H"[B0mn`l0 8h 6~CIWL硪:8n @'ʈ,]ZFX/'|=Qsƺ?{ LT0vLoʴPzʉJkNWq/bOnʞJ=X p~Ԙx>1@|PD"M3"ѰUO`#pY. 6C/Ģ@pF̲ s*"Okn*f|E4ʃzAg~L'E3LBN N'0M) nwZ I! a* \ XӶ1.$tL"`쟀ƇLtgH gRMNbx^ cb(ԱMtN@;q<>&PyLv$0@ 0 \n+'@ r%s\ 7BnV "£Lї7at  e1$zN>D7A . _F[. Wn߅Bh<B..En2BQRHytz|axD\N DN*= 0I x ؓqm,-q  *ώ[ F'X5".͢JM78EBUX&<I)@Ȁp@|#hѮhFDB..F*Je56s#!2GAǜeEYxiH/^oI pG]0џY[L04(GK={,)u ƣ4k:wh.a]>ΆsB2@Aqtbڌ4Jf^_C&;D_+w(`j (? CzaN-v$t- dxQZd+BG0Ǵsz,!5$ 2%]+ pI!w-"@6B,'d\SF$@ʷ/\pQM^4lꪑ$fXNx2;VGF=#զ3, ҫP:濈Yrp"̴R8Ή !/j]E-H(Д80fxX 7yMS8KFI5W=~84+ w& @B/i.8DSv!\Pg`51)f[0Cf9L*v234`Fm9Ru%v僈9 O\a6+$>3w D^J!4Ia z21=sOMS˓SKXuxiɺ"k4jpҗ ԖL@ hTk2J4-ڝ[O{+ЖKCo7|c˂5 x->n|]ZʢliiWjDJmz +癰j`&kKK;S %Ehx*K--=x_Uol=?Ϗ΋{sϛU^"U xI؀yk!FCχWdVklm_S7 (>B~\͇}WJGoUZUG{^7KB'i< l@9~FهepSr fEP(W"T7?T%Ŋ HnJ*CJ2%UhlXZ:ڂMn9D>8/z?q{/Osb6{H?Ħ{^ 5U|뫰eLZܬC^gHxQUuLgZh BeiWF0z7auZk*:NHž(#1P29@ܷIkki8W> NЛCoyLq,C8 A|KDS2C7;A_3Q>>$q6gDb/%&OyJ+Oqh#gv؊gtG&9-޳|oRTM|DyD3#H/f˷'&8 `O=c28CY+!˴l]"̢٨kcH `I>H3D+QWCp:nOB>5ԈĔNm<"r-hNm^UeۃZ4f&V+ n}[m;#t;d\ d$3}-U4EE_gkccs]/M=-QUiGv8=Iƙy6cf4:^ĭ%QQ3үX v86Ñc, %*~^$x0!M[nUuHxն}s#c7msg< aݷh"Gx= *> E ~p%DaI|$2ĘN$`p iGM+|ka駗{M\_;R`e;vYb|| hf֏ՊxFe q8I_ Ջ^F(x8" Ѓ" _ | |Z>R;S% bjvekL :Ώ- ܰLp[)Xtϻ6d!O T0̙~s˱|I5XJ# )FQw"O0b#VidUTb8OaD@ 9^sqywAtRQϴ.RM31<3^N峈-#_njj3n{iP2by߄Mׄ Gr}-`SX[VaCtEFhA$G#iXp@!G!f׏1N}Ab*8V A<^R chS|S?Ga/F5uF]q j5!dd&2&j{,fܡZ.xd&n;n +&JE@!tN(lJ.(jyh1SIuz' W*^PB" v@5dTrqC$5][X-LN|S.IcAӸ%ܬ``v^HuO$:&L$?'BTWMHWhhMҶ2 NK(еIl4PUƿf}-Em@v"Zń4DQc&!ak.%k*?j6C= ah{/4#p3na4zɾ;>t?fh15ᔣ62#X^tMp'Ai:at6;p!Z!:&O /B?q˶(mE,y| owZ#@,xqKf>e@* 4&Z!/-\ |2ЧPV.W!78LB:Dߥ?fd1JzDj%4[CAB>G-p--≅ <[oۂՅ>Fnpu?T@!jji .MoEh`«iPdX_} [%I ؕ+;6( W,5( i"Aed&E>;ٚۙ8g; bHPu8$]<_G])k] Q"^D@QƐ9+iD&cW3a8#]JS Ƌp^kU=JרY݈RtjCpnΎǏ'tt.jNjv&Q;@%$y⼁p4%ϤX0љOܶ[i xThWSقK_gHN/7kܷ$e*bZ7e y `%L"Y-y`@s;Fuu|8k>$4yKN6SvSɐl\a8.xd^m+} O 5""=(Ǜz! ^D(H%eT{2ջQf~?;Z[*݃!L؜ѶFkNڵqL8B䏴A#1_pQX=K@旬ZTe2/;ָ .}C"= 0;}N+@]lKqiVӢH<唗e5u_/\HIV9W UydE G`mP 7uD+>>#!L3Fvfp&ˆ@}gs^ p ?pacpl-code/.git/objects/06/0000775000175100017510000000000014010533130014624 5ustar viriiviriipacpl-code/.git/objects/06/f59270da94b6fc583d3d80a01a8a4217e861da0000444000175100017510000000261014010534622021756 0ustar viriiviriixVoH+  TBLl{]iŻj׷|3;uкn[FƚFDDX(gB z<:MTzUFbh]6۵e g./nw. U !:dݼj]Mmu廗-qפsi]wwC%o"A|]Ap)x.A|'S&2O7 gSI@ !b`z0a1/3q@|X+$ `J&Gh7uP\LDch["#Tq_*>@"5}3N@щGV螆! 1٤>t>cKö졋ۓ*y&E!EQd>d;wp9M̩ X=#kn[SV(J 7ǐ >I0 sC`=B n-92n }$M[ֹ60'd>čBUl^=ڨlg#Ɖwsc̓}EjP't p=)0P.ud0Rr| `;769w@['eFO[3 14OVncnڲ5B/~NR=CzGL;q/ƚN:jih̑F{5}o:Vñ>5{͡<ιoGs}x[:ur$KGdli&CG3rjjݦf:,3zEl}Ѐ>kKu>kkIv':5gg}s:n6ӗ>N]L5eߥPw,H-2K}A _j.B B$OHu s}4*ÊS,8 Ui؃E5T6+yE|ٌy7 IYcbXo?C,֋P~e <^LSlطdx'GV+-4pSWOE!jZo$:˙+v( [FH++H,izTvZL :-%X3wbRzQ1w!ITy=󁄘*g;[LpYs7?U %g@>N\L̏*qP~~2DJ]%4AUNBj{c^j@6H})NGCB|e\34<2\P"Q'qo#[QN2޹#JZmR{8*x$$cRx&^w"?AhKpacpl-code/.git/objects/ec/0000775000175100017510000000000014010524045014773 5ustar viriiviriipacpl-code/.git/objects/ec/5565433813679c680bef9b0914917ddf826c870000444000175100017510000000326314010546217021613 0ustar viriiviriixWYoFW Hvh[D i &W$#u;{a筀a176po4 *|ơ{4%oy`CoϝcY=8=O^,z<23b2HRn\BWsxxn )Y)7y IqZ>M!_S@xQ|%75\Ҙn6dG㌂I>jIB18h7g<>>A{x_j"G@m7S4.B+/y6K# ,ZŰ=f0M's 0G_SW!K)4D*o0B }XQv]0J,ZvCZS" ;u'g ĜLg^:_AzI=~aCJu(!g!>ѽ9-Qlx+1q/Ā/QJy%;1Ǟ|ЅNF8v{H=L!pҞRT8tU% ܝtC쮛2Uٞ*T}Yy%}nt2.^r)wV+{¡D xpU5k5*~pacpl-code/.git/objects/ea/0000775000175100017510000000000014010524045014771 5ustar viriiviriipacpl-code/.git/objects/ea/f69f419d9edb866d7fc3eb8a3deb430b005ffb0000444000175100017510000000052214010524131022510 0ustar viriiviriixmRn0 u(t/t"ٴ,R> w eZ4s|پhnmUk(.Ʌj$U]+OXʂjU9Cz`O G9ދ2AgRlsڴ{# !촯]hPmjFur el!y XXuyn؆6ء?hpRzp|IeRb\Bg:͊t4rIN-+ VwbF5`ZoJ581g^:3\% rݑ]>QlΒb~Jpacpl-code/.git/objects/f6/0000775000175100017510000000000014010524045014717 5ustar viriiviriipacpl-code/.git/objects/f6/0adc77c86e4d7fdcb9aae6d2def959e86023f80000444000175100017510000000245014010546217022465 0ustar viriiviriixVkoFg~)H lHPҭ 1A `<6R$b`Q!l6glHnby;g9ihrяT 둈QMm7L d 5ONTE=~\}fj]l VR#2`w Ə*I,) p^W1j.[4J ZC-A7D["843\˙͌^9;OƁmpx;]Tzkq?eT*CEƲB[>koEs0JE֊>yэ LR-i.?3z7[k7ܞWŃȝuHޘA0ۼs.;ޥX^[.1V J_("oH&` HL1!~u~pݖp^uEB&VIͦ ӚujA *fEgB.u>e ϽH4n5ܔc4\ -b./ #2n=ׂLΥb.Ra~Ͷvmzϰ&)ձMVr.a a\|@ӲlhhY֨KVO>m9-Ӛ=pwZM n螱ۙyװnFivNA 'ľy-6Уl8nȆk7k0]x<U^ׁk91X|bobL5˜h##܄fLh=Y@Bz.YZMdJEV8%☲-MP'~y 2Paiw((@pNX-/NX&̢VϹRجz:"1_)Y@M1ٔX ]) 'Gm*YL̞JHx?O׵mFډx4Bt䶈7Z(a\2!yyZ"hS]۰hbO89t.\|>L=] I+zx:#Ř Z X֜{E,|Y #JǦj0 )u(ǬdpeRB{)T$5셄v8|,`sMirxFn.GTy>dD0}("'um˽f7#5~&9kFk`b1UݘzdZ&;%XN_bdz͓^6$.2<~.&|vi"Zx6-po*[d_apacpl-code/.git/objects/4c/0000775000175100017510000000000014010524131014706 5ustar viriiviriipacpl-code/.git/objects/4c/fbe809ff650a97d1112c145a63bacfe59f78590000444000175100017510000000020614010524131022132 0ustar viriiviriix 1Nۀ!-$1-$Q=f&RZ-%:(j70<a)VNM68Ϝw]0>kZ<]hP97Hma+b밧?T w~  :Npacpl-code/.git/objects/bd/0000775000175100017510000000000014010524131014765 5ustar viriiviriipacpl-code/.git/objects/bd/b7b8d7db24d769468171a5b095f5dd720aadc00000444000175100017510000000445714010524131022207 0ustar viriiviriixXmg |% \EHE`.WbKIt3Cr?6, wݺ|g_GԺQWa*[~MyiK /Yְ\ =yeNr 0#&@D2{tIGðqmt8m9zuyZR}^:9 \`Z5mM|(Idۗ-Okxm'n6o4(^Ё۝?!La wϮQ oQ pR+)C)#Ҏ'R8ѠA\mB]`VCmc;^?'6\R"ٯ Żڨ֑EKA/UgW50pJkʽt O}d\Yi9Dρ4ʧu*Y4ޥ#@1O@|}x|0{7;c)ȹ *W>;z$HKޭ B[>s`GZg7iXI)Bf`H ES=FX!^{ W0"e} թOs@z'@So=\V;K91^wn<{p CE*x "`$X5 Aq&eDEBDUhn%3r 2RVV^-aS0t2|4;W` @W¿K:U7k0g){\ [W.ѵ.4xE#a3<@G1}Kːoh\;f9]gJ60B'fJ ~RL@+/{M\oX_LԜBlT Ƀa I>A^G^ȗhX7c-ks%y'?B6sP~#ycyY݆2'OܿuGEnYDeo>#6Nlί4bq(Y t.H(Ue׋ooo/u}{#b $;lLH|>;)%k. w ?ةcmk+X:Q `>q,׆jU~窮P'og oN!D.ȰK.Abny:Wa&(L![rs)(4!2zT*=,gUٗ2$u+Y; ^dB[&OnManCe "4%P( 32<$ q$ *PÿKmwgRq!pbt1:d?|i'B, _΄Œqt/Je<-PuYhʑ0qwcgƳ@A>ʱ%L,AZFA2ugmr@NOfp*9jRdig4Eڡ8w<^_M=ʶLƹif.o^};gA2I޼DmI43N`M=ܹRijX[/:,Z__T^4o6 ;*R=ۏ*} ?QZPfbJH( M'NBkV];QZ/zw,p `+94,:)Գ]HNIp&FzZ;czÏ#I(Eeɛ9<.LŲLU(m GPq"CYL; A.BSV[>E -xvّƓi-6Uƛ/Ks/\ LmC)0_VS@wb rQ 0zEE^-ė]u73/?A.Fˇ0\RG&l&M}Q#~r(_@K7c`%.= c7uj$kSȼU IO<|omW6ȯwE\8N.jgS}O]38mA`blBp )/;pB(")5yk哒I:48Ý>shQQ8Vԅ$\ S8cƃ C D-p 0l|#8 RK^ȍu҈ߠY+>0߇$oKov=5/db gH8{gh1:9 mP2IO~ovUo6Lp5ck2n7hکLW%o/eB .1[ s}V=p;#@/Vmy{Kx"DqǛs|xxzARgbN|*!cvCk_Y%G& 9*8p^5 ~ȑBoObKU^!Gg{&TRJy$; 1Ǟ;s9tݨP8O3_B~ ,G ~V9eZd6:5AGdU<|cy;'83b|j|)6;.Tko= }&}?8i/Il*eli *BEuiJ!RFyvm*jGBt@{fY, P! :lB @ yDX]"Or⬚Xpacpl-code/.git/objects/76/0000775000175100017510000000000014010533130014633 5ustar viriiviriipacpl-code/.git/objects/76/010ba578c396aebe56650e8a3bfd4b80cd25fe0000444000175100017510000007215414010533130022206 0ustar viriiviriix{CG7>EG&k|!lj}B0vxpr ;H#Zh$9UUwO43ȎX3]UշDY4iq8/Y>{뷧_k_n_-vaxǝF{a_=\2lK::Ej<Ncw*u$Z]f $w27UM`u/nE_gN8QӳP?HrzIW~^0 U%: ;DD :5Eh {H(4Bw`EZ DDƔTky\+Q!Wl4FP&*zIfQ؝Wx~9~͑Iyp{RXo0Pc0y z`{dnOzs}x^Mypsw!xHrMB '4suhv;jC A4<ڂX@NW GUoΦVbt8[MN[ lmi \U$l . {H^S4'K'O p Bۋް'/f6ID~X$'`4{ p"IhxYu6 LEaZ}- GUPϞGkRsUg i L7: NOtl#Fz'H W[O|P>/Em=.pJ$wHf8lPT/(Z\%(tʿ<$‰y|O$&4dx r2JN]FL$ĤӛhؿnoMX.Se`AE?.kPézs`6i]Zl[L 17HN(Asæl H$2 t NDWxG dUcZIPܬ ${UT@)` \JQi?*5d4]K#8]sJv7l̠KjtJ'㗴=E8d7$Yv6m7P8W~pwT 4o~b{H][{ BRh63{o6_z9_"͗-"+}^i9^{[|HVu8tD4wh՝jt~7*9>QACɚC!eӥ>~8MQ3攵G/?l9E缓.lpױ"bl7=~s@uLVO{lMs$]b66==+^>JF}@mk}t&ˌG5)\H9E?`p4 [E'Qfzp(,=NLxxJQQСJc Ɠ!|$ZnpLŠb:Do&0!0 )&ָ+`xQoMeڰ{[kL@WDU~>FBc9"Cࢌp~>dܚM&= &ȳ"NF[ecN8 VlJS_I3RS H rDx]jܰs,툏C*vu)zzi)k82Y' Pk 3dm>L7e]}jT GQcJtk;!I9 +# J~f9䥝N筟y䣖}8LBË 'LLi~ck4>g=T dozSqDcN]v8~z$ "IK(Ng+(/i|#H︰p)Kq,H$4 kG,E(5u"Z̢aPgqEKmB|{PȢk$ a#R剐x8-%Č칐Qg4{$p%Y #ӆd"!N^EGVAuJpvq>ϵ@:݅NdsG39c)vwPটĐůA!V ~& ]/$dP p:NЍN29|e*A;:b0NC蘎,aDs,+Q=^SD G"$8CC7`Qs wG"Iso8aA:b2g!Ա\`N\k'V;5pGkhSF'413C^z*^_s0&=/ @ &BLWpG//pt`B=4J_(IRg4tPN|NJ1r Jb/\&u.P٥/_(Iw9(uNuo$/\t4Nb _(Q1݋[4D\J.EWI/ƽ_8;/ =6H)bUk9Oppt|#hDR"qk)_8:( %[ωEf bNll=?gqQ<3v|iq`My ۘ-0 ?ZbCͦ)PwKkէihx ReJP;a]E@󶻉B`q耲R1f3mo41պ @'h-/ `0h0'XԗFJ#Z bԨWujF309v#+YLTpNFdJn%V2tIf|r:|ئkaK:0f 7xNbK![_*&9\1Spm<,a)DM/ZvhU Hsy{ Z-쓲+P S]!ZbJzW~}3ϭwUc)ix]Տ9㌔νT}rw9sqNe6> 3H.oWUɈD5o7v2@ ba7=v3^L*,A|=_Բ/.dJ_`Gz9R4KYN卑r/~3+*uFޣ'ctyټ#pO0/K#!9Q˼BffӖ>KDl =f8Z%Bf3/,v!SZҬ- X:U?ZjhUrZ؞.F17J+J1`qjQwI]7bֳA!UC3uFi[B堘kAyG ;TlE9{Sd31BXW)E- nD(7Rj 0iU怅cy[%9QtV9y^|Rio5b.vnF\ve@-3iVcT%%J3K*{L22 pU:kcPzQd6d S1BBp΃r{pɤm/6xŁ_ jcx? M3OѹD  Qzվ,޾ӢvHMS'3oXgdC_AkO^b _laZV74ᨹbNRCnr: #c(Js,P46+Ϲ[ɼ=HD;~S9 >gq#S\JM~YO;0oCnb90 @|<&Tؿô%'*!ϰYRhJ7+Z3IlދF5y~(mOcqM&G6#.j]z3潘4>6d-4)~>XK;ʡ&/יW{0 AbZYlRb ,/:kk?WT= j+o>sLj _*&Es<=ooN(~`Ay8`L^)Z@bHiCU:7pCzڥyO&{fgKv"DZ±,Ljky!eS' ,@j)SĩZ=ۂ 'v:@Btd3-Sq9@ߠyBnŬ>[)f!]1ϔċ!b\viٹy?Q lxQrv)g81O{cNh=JSݗoxm&ئԌrSS'j]ُΩܟ4guWy}f;jSmDJET7w:DE1E"5e>-WPt,fc S9Fjue0~j0Ki6(sXD̀)ycimo=>(#,ZKH̓/ g~Vl5X39KN˕T~V%V!'=+@K\hUS6ش1U$aN-ܲgπ;q&)8[DtKc"8X6pss ۿ-==eibav'.S?ȱGvqȸci9ryY;Xɍ7p:$kK(aI[%4J-:d77O0 2*hn# tˎs<gq|\\j@N}j65aA?]hkT#i۱j,3QF26K?n5M{G  L0La O0PV; pΙTD-~qdD? ܌U md"BVߠt~5M:7l[eኸ]ݓJ;Rn}~xŻleEA< yED97EpCuD 7QîHMAq,MTZխ6[ ze %[yK~bdVYȔqD8i\/1[7) vP!d;!F2Z(F x&?v3ww@:Ȕ7>gy.W#p9dgB)Z_N|UX,fޠoOdV՘Mdz){+ x%s^&絻ދ=쮫$'SSqеlvN.&i)AM )wFʔAcÚAaSQwRehQodCC卺"RsіC=zqy/ݸgRu^+uCKO Y<)]qjGo F'яςL[%6Y ?}ˏyfSBcK<|bHOq8jwkҬ]GA 5ncNOl)sP߅lS̲N^,h)S9?y ڣV]AxчF&j$$nx+X=ltʯZ丟Ny5#QF=ЄS#XpKTM>I-*"J2z=(4f]UxUoU4AͷjD<tݬ3osxΟQHɵ*V=&V`9@kc]xHBQȀ۵5xȇD)uQA>rYR*Q o60 ftǬ`5trn}v%A#U+@]+0#% wΉZ_t+WX$zk+Mm1DR$:K?2hnp8͘q.׫ jszGSũψ,-e,TP}b~%W]%sZlI@5G!RBz/7D6ҸWFmByitWqTLZHsWmk<3(U)ɩ=.Uf,+v%&yg1u{;1.2WL' sJ{>eYN@:B&u: i46ɞ9lc[!¢ rx8u9v6N4H5[֩dK|7FkU\J2αLU5+^pnW3VHevպb!5ť:g̃!W4ZLM~/2ڱ:hG ,dfI>,Sc|\E> ð!{Zjz*=rހ(6Ta*aǏy*6:[XjLdYR< bL1Sszy6T{4bfyMqKuJ㗊7qNHIL~AUΆUtFiutȇNqKUI&S@x| yb7yX`aQ9EjãW^HS'=*~lIYo% N(;g~1 [h@c9V Ceu̯`tIoz$>o$<2%ZX)HtoD'6Cϥ1Is֩)wpid3ܵXTT)>R>QXV[z.G{JC[H[P#Umr]TbH?%~S嘌N;RwǛ-}a;3Éz]Q:-5_K~I k'Y=NRWV6KgV\sp:gPTUE|L:V]}X SSlubbkff5a˪:U7IVVǍ2vcA.ƍ=trBA]eilbz=DT*nRp>]i) 3kݻQɗ Yu֢}jE5ncU5&{1 ;(]FR>j+@KBeV+罇=Q`Blx W]nߵhS(Ô}U"[?~Obvị̏u&$ԃg#nj7}C{\_Ѿ\ESu?6fpE+b/򯗖+ Oqc:js鍞<9l%OSu*~LDH%2XH44%E5+dFZ%&"#vC\ǑK!`rͲ(BgFt,:ejWk}.dG.lo? :J]k׺z%su],ai7M DLYV6ӛDQ y M 4)(  p68 ' 1Ƞ~ӰP$NZMziDPǽx61Ztl4$Ύd4Yih܃Wъ:wkF2%<< +LL۲Z$ꝇKEhVpZ'qab"*#i h8* _ ToĉQEthGoֶDc]1sy,l h5H. ȔB;F!1s2b^q (dG"͍OV4u]AW p7{b6&QXQ/۵j6_Iߨ۵@h &!0yTqN 2efj^qd cbZ/HNO+m>!x&B^ T z!,_V L2!FkypylPes9dj0o""Q4صt,K%&kN5[V p!"\"]`S޽+z/Xla*ŒVOz,ʃY!@ӉQ&uds'YKÈ7iҮhIJ?͹l҇1kC- *MGӠ `:sLFDbJ(\lA_OY\jwIjM c](Ͳm6|g#f*VsĜzCFۨL Fd6lb |YOy/c@Vfoatֳg8H:e!N@;M'h0O{ǰIRKwroXC:j4-E.Jv ሐ,LjYO(7BIU7A3eg. ñ5nh.l62_,prgFH4:!|t&_ːF hVzM5R`%tuZ#ieŽ!7"L$ Uj7]txj{Y vF{sBIVi{!QUvmeErH˹UEQ-Bl-ST-!+cF_q->8.ᨕv!faFH8TAI0ЏH]qmɦ d?(?Ud[IӀOńdYIeY8w"s J"u^4c4;00xS*8 uq7b )U2C=hN()^k=4nmȾ)N61 ."f0aɗ5)LRo ,a5χ2KD /]D?xLBAI8˃="DkIsZM珉ȸa7w4Xw|vcy 0F1=( Iu[J&XQ8t\gFҦg,?q` &Uxxnt-p$9-5+:hs%3i)ڵ5|T'35pslO(7I5񚴳TiXlԭk/D AQKSP>QK:.Z"3&3aG z8J0F{ٖcv8' jLmwؙ\"`?oAX_cd;k/c^OoX``E:%CVU]^k¯wX,,.,f%hTXpviJ[c p8gR>,`ؾrc85hNW.ND)(ġIr MNW#䴨@3q2uLSiK'*"\j?c/MS3:UHx+g:1fۚ ]gyd=y {8CzLū>l]D)x圦g0@(:8H$G+$mVtGagY=GFW܂9]ZD'쇈H!)zb66tT&J!"^Xt۲ǽyg1#WqcpjL+j?6 \e3Uk•MF'[_R<򷅤E;!T9:1<=9z .S sGBXf<1r8'aņcXT$gLWH"/%1*qu0ae|;'u 1/ΏyC,B|^F+B˽{D,Xnx,׉1gux3^f%D4mHN7# 5[S'Q"W{' )O7P4E% d,Y1^`i{(F8`~ڛ.鉪 َq?iqu/s4#-OXuj*<j×NLFDpOB (Yqi{w0˒$G4OE"z$ԛ-X5CA5mt7&E aX 04#Ή),3dZu1!ĺH扮+*/hkw-dBH` "%+0j_" \)%mJdh55VuXX{4'[\u9ޢ@DgN?زov_o? S8=/Q6*\Ķg~2lj"Z|L^ˣ71~x[py4CM3|ȩ3dK̊zەooV<,cŃ 8囘Ϙo{%(P b0`Bˮ藭 xzu5(X@;}ITϧo9G߶wԈsi+> Ƽ1mfM54vZY [6 4T2eoPsb]:S$1EіmlYZDkLTN yds#juQul$ -dKXH6AVILbkhg&'f.''R{ @=Tԗj#Hr"o,n"cCH]SVIZ9k7mrm$%'nd[yTƄdhťP#e# 1!U[qjAY^;WD_GtsaBfəJȢfl9`1nS~+kȭؚZͭi_6^a4{,$HN^4l9`˓>_Ҡ% :oilͭjꏕ%Eos\'k;NfdëA*yF\/.ɉytTUjV3꼵~fZf49ͨg8GqcvIG:T8B7(@|d T`АӾ pB #-QIM$ȬZͯn8j"`d֩9/Cd:C4S9c`Q->0O@_[IOf$$`ZTe]Ip#Q=:PlUR9lږy`xIj 3˧UoPr4۽.1FUg;d(+ej!^Kb> #yv@7JŠ OR  Tj]lΰM\ PSPlه#H~n"h ^?l~ka[?no/t]B˦iAY?\C;Xi#)&#u;R ,FEvCLN)gBəVt{g3JI<,'R>VN?c { CXpn'ou>cN-&2ÔC@z {JDH"0r/eqn-19-^`s$&mVXj)f]c̴:`s/>kypsxAi^}*! =0NOۛy{P4ORMfdx-L7b=V[.ný/rһ.̷TY.5łiyq5+ o,Wbl*Ǣ1Tծ'ԊէF-C!+b T-p4,058*ϺD4n^JZM'ّN'qpxPHAqPKXB2*O;N($ځݩQKid7oc3M`]NŊ79劣r,trj_YdX ~O1s lh=e:` Y4^QG&^ołNh-v7"_z ϗ x?);y]wGۍ^"gi(-/$m$2)-q2,ʨ` ڃ4clH k>C ֠o"Jgvxw[T.%h5+uuΞjpۨ\Dnyg.[êm!~>r{T<ny_}Y2-/P&̒f1Zfh4(S`hf9WI~cݢẜ~X'FcRhL*%>Xw};\D$UG稖Nw]1^:X\L4&'UGhH#_%T**%qãȯ$lx9Ŋ]j6d̂v~ F,mɅY+Xaވ:b?}M9x c E&K9͈iyXT}*mu|NkUʚajKlSQ8x^|%ˉ0}zr6gۯ?"Y26/^mn=y=d1>s ,G'VE~t4܃CjT)8js<̤J+o6t LP'jUu7p7#$f삣4<7'r N9E޿=?-431J"ettVp2.d.i~k|mH"+.GKx|48\5A3C_kG"w A,4Z1Y5ѸySFmkM4h^bv&-xJMDz:j;oI|@Ư#vJD䪫Sl6ډ@a(+sL,J #戃ۊ{@w-^׷/P\ %ך#jbsZtB]tG3.u ]X"Gib3Ns&f\vٸbvʹ"~t-yLS̃1jk^#o+i>ϻɯ5eUȻ?n߽WX߽>]3c$ ؽ\'s,|L^zMU @ޒRk5|/iH6FT c-RYa׍ >ǒiKXk@fm HxSvͱ[ZFwjBZsBCeR󭎺,j9t~*/QݻN3$%J5P89 yF܅5L,COx~Yw,cOsLs}d*rh+aLE\dlD .b>#Ӂ"1ЫID.6 qu8L c&Ȗ>ßDm)ui-JD#I/U؝ef"(7].oP i Aі$m°2'*&qq49M s> --㐖'F ^-τϞ<2B)c-rbȒX;FSu1QKTFyLyS`14c6i/"Ӽ$^m"^Ӕ6^NelěJh'XŒ1td~խ)t+[x`|ګm@0lPu ۲Mw-t/)t<]|O$`'!m5M¼v=^ E 6L+OS/V.Gi(6`6r6ΙuzXk]P(9EĬDltAT3 _>`+KƴV8r[ۛ_l%fnaˤv?Z"D totpeE(y/ꢷM ɛ:= eֈH 3e'XqV  ҥlxa ,EmD]_4UG4I>' I Mmb\H$!d i,h# >pa8_Reh:| m.p Ei~"aZ=ZKC6eQض-O?mx3{bͫc{M,{L-.kl)\Sd\ CMB ?I!\Spa3SffǬř}f (Ft -$H +s t鴇,tÙ 돰jtW_4…^G#\@rwئ%-t-_dy1L,C0ĺLFrP&%و1@WuTN d0A.s|yְ cXQ6dO)$|9SxFp /prɪF}< !mc٭;/]u`xs~mw7R +;Q哱\ԟxkJ`ju7S<׾Z-B9y3 FBd3t>A_Æܣ/0_r6; WFAt`k])`tN(4K,1}3,no=&W,$<Q~q4(4+h nkp9; \D+jt9e$׼,tDt |-[ X:!Irj֬,9`f3H +o7b".>'G~l.2B!h!@2Vr)؈=U^A#pW i5YH46VJ(ā8Q!զО>%!E*iJ\+jvLK)؄g @~Y$DèDH Ӑh6YB5tFV{H 1:Y E=msZNЙ-w(T`*v\"Y5Pe@H8I HxerG%dTKFg6O_P)wI2Jpup*qeW޶JM?XU^aq(rG_PJm]˝4u!0]h,UpԐzaEfԍUr8^Po mmD@ڏuu)V$*]F%jЙ\>#t[tn_f#=gh4,mALZYt&A4 V{Qd!JH~ rẸb&@f:8ZQ30qw#t$MOcfc'"Zj?G9nw1Dv$zf&3Lw qϕn$`'ՈO*A̕2NN'~ΫX f˽o0O.Jʃ#[ gq iMHLB8.E|X mSh $0U]&1.0#24 &&&Қa+,#'h9m+P$ÍvYIdQbz]mq! CwR|}h?;_ٺGW=jnXWg>zWaT׿ɟj'돿z8?x o >~/ґ^ rq;kpC\pIdgycԥ a%"J}@_'UN+J뛳tպX;FӖe:Φ5D7*`ົ~<8=iլ׀NR NqۇގMJO9Q)x*N[MRqy\igsXCۏ'HCRdIQ#`F3 }N9k6߅&z#EX#Y!}| 0tN@PTD xML(Fy3S;lүhI ɃApA7i4%:AЍP $0)84@rNL9AvQ,pȤZ x[t LM% ahROUV9̖ҼÎ`. 98JlEBFvP/9=Aks.)º^BF^CLBkJh0Xv" 7 ы& P]5U|ڬ~K Of׊ݨ'|䷼Tu%AzJC3KTV 9Q#$Em  ]\;i zh9I1r抹OqenՄyH0%Sb L#F6lf4,IeZf&F{yLpר-GJn>|1>ґ+̦R?tgSakR)&>=i9,AO#g遻iTbyࠖ yJx/-==9YWd-A{WMNraڒɴ2jM42BX йPpb3wolY&/<>:ǍKKY--mb>^@G}HÙnH)M/:y<Vdmiigjցba8bQ?-O@eɿ/7VՃ8㟭!y6y6+]6[? !q1x^<_>?u(zyxlcԪyԝM<k*eGȏ𼏒q CI(]\{/@ б}I^\UD2$ރS|>(p,|jR6#p Wd*DҶX~=ɍ_VuH~sZI --KKT[M;(g^_oq<}%^`[yw7gak?c}Vվ̖CI[s!‹ Ͽ3jNiLk R(,͘B#QkMYE' e$?O6G6im 6 gP?> [ )"<@zw1#vq@|H9 AR%&b>ut6bDw?qۣǢ3 pX1gjǘ,8X"}цL" ^u(:\p%‘$v%X)=B#wչ]E:Ot(3}u)W =[Z<"wF[lC-6Zr:7Ic*P.u eikj՘=0ɬWΊ$0 =(PD5Ǫu6-)f^o4׀̱*4],%b-FSwXֿuLo>:ByX /2 q-Zi|Gal8j!K(8p\m6Ăf44 xq%{kLM׀!R5௙5['ބC` 'A5KKzE@mTT3q'"\)b8]LPtw֗CIa%Z&c\jvNTfffBȴ]U1Ym]DBX3{"pAa|Ͱ$27F>\_5wFtc.Nh婠*ۙڴuQRZUC&X/dА$BaTTEId|4@RVk_"I]e;w..C Zsqd( 2q " ZW3Dck- hQ]&=0K̚=GrJ !4ډzSq-A7eGa;/}IhJff'Ԑ=ku>ꓓ}p?Ά̐(_i:o@iy=-ptl[.(6<9G%Z{ {X^J(6hfQeqtp’\s!p4XgA4k%dK$Y4uMsɺ$>3BiFh%5jvNIȧrIMGDAζV%9ZTͩ;-*z{@Ċ@TwЭo<6zwgnL4+dFthӸ bB|ll e3i%j cȮ6ǂ;8!&~y4،F>[YѫS= ݣ4jWuB5f8q,Dyگ:݋&rk "мΰڶon5tb7,Rz)rG }y'.^,~slZ 82!c; 퍋UU < <<'Kz˨gC@dV|zSs]$c!^_w'c$"1ALͮ2`=SɿXX%v n+KNyW1Ɣ??)jܘ9on9/&B w<ň5N_iF}d*휬Jl2(=d@ G0+ brp>. 88ȓZ*Ei&üvg}k T]|݃޿eQ-`2 jBfC,?v0I[H.1lT#|˪y : 3J׬o\]Һ NV렘X&4j$< _wD^ymPGzYw'; m/=A9f$u-#7=Ct8tLJ-o23rF&q˝ݗn y>(M'q#Ӑڦt.P+Dɣ%\1'n 8H84/u]wBk$p/sBL,HeD+@r 4ȷ%ZE<`?!g5c[T|@G-Cn:G (DCM>b6ե魨vLYx? 8VZ]Ca_ a_a!!(S, U9MQS;;%fot85F2M2SF6CLvCP2~ouk~?tn*`Pьb#Fc@v9|%}!#eq1Sz~$PJ ƍp]k_mzVQ۲Aд9_Wvv4<~?9eu, wY_j,|Ղm*v:P`e\OLs_^\d\IOrE2]Ʉ*.I\/Er *Sa! 9RHh95=fLz2n`G[}cF]Dkb,TndݽFU}  =pacpl-code/.git/objects/21/0000775000175100017510000000000014010524124014624 5ustar viriiviriipacpl-code/.git/objects/21/9bf5c5e8cd49c4724ab90a28f7d645922797ad0000444000175100017510000000040614010524131022003 0ustar viriiviriixj0{\hƵ R(Q f4Vv߽&v{ћIf9*5T@SH!VNգ ~ER7iqOh I(E [@,=fmH->Tnp %Oҩq2p]k>`F%'/z7v"?GĊnub4f?fu;ujC +ۥW`71"X7mpacpl-code/.git/objects/32/0000775000175100017510000000000014010524045014630 5ustar viriiviriipacpl-code/.git/objects/32/436474f2b1f2969c1c75bd31cfdc56e88c5d290000444000175100017510000000263114010524131021777 0ustar viriiviriixW[s8g =uhzM'؍-9 e~&Ld|#g9>z'/*~d\ʈdPTN]&sܡs)4]TJ \p RTTPreRUFSl@(-:}L j:𱶊P6 a}dU&1!qL{+d&bsA*>(isЬ2n>\gݓN-ĒgszH1>twKQk N ; v +kE}v9FӕA-*O-wg7JkvWc~2zI-LUtNC6Vy|E_-ɛlGIEs/;͘ݒ7E9W-~lצCs8"",hyq,03)&ɐp.;1OXj_ i nd\;X-ΌgUS)pBF^IE^3P$K>ۓ˚#/ݿ#XeNȿ^pacpl-code/.git/objects/25/0000775000175100017510000000000014010524131014626 5ustar viriiviriipacpl-code/.git/objects/25/6b17eb7721ea09ca776e3c7560251b0e10508c0000444000175100017510000000010414010524131021573 0ustar viriiviriix+)JMU05d040031QH/(O/H-ʉO)I-5a\vUM$/J*Kpacpl-code/.git/objects/4a/0000775000175100017510000000000014010546243014714 5ustar viriiviriipacpl-code/.git/objects/4a/d1904c26979bcafdadc888bf3d524e8667db950000444000175100017510000000024714010546243022241 0ustar viriiviriixA 0@Q9\2id"0IZ( n?7WM4i us Gkpacpl-code/.git/objects/c6/0000775000175100017510000000000014010524131014710 5ustar viriiviriipacpl-code/.git/objects/c6/786b9c55eca69b1c699f9a14b3a9e6d5282f120000444000175100017510000000136214010524131022070 0ustar viriiviriix+)JMU03b040031Qp  f~-vZ/)//:r? ϝaʷLfzK#f>LIFb^zO~:Ϫn.MS[ϰS }|5gnuQ7= rutue0rN)Ӵ92{ {B/7oy?0q:Ukp(?zVNh(@1f.W|y<Ϧ4AUO jNr~Jjr^r~^Cl5I;8püFN}S`•lݔdFB lםoСp?V!8-\,pacpl-code/.git/objects/bb/0000775000175100017510000000000014010524124014765 5ustar viriiviriipacpl-code/.git/objects/bb/db457ec43eb7b0b3b1f52e8471855940cfd60e0000444000175100017510000012205714010524131022202 0ustar viriiviriix}}C[DZ)2$CWi1 opJk!)zs$ak< ڳ//3;;;;{wzY{>IF#ů;r4NdIoayErva'n:9 BI/"/nm2R_tݟ+˕?alח_RƟ??d/G+0IAd9Lܳn;Cky8gcm rZ`w#+؍b@sy&NzyM$hܸˇ :}qowN.]g T>Zzm5:ʝq[PLFOԀ=O(P#Qxbmk}`%p|/݁vN8] ;_ OْNT{n׭|zn\ ;/ַ֘p W&FmvA3wz}Ņ=to:386lMFӤΈpD10BG6G|JbV"RѺ>&n';Jjw,_B;C\/"σAԹx$Mp$=~ly|*b ɨ*t BsukB`##νa't>:S ?astwF\u2 XBI_+wB V~?($Ct1g{ǓN]R4q25N{?aɺ!.Hct謒ſAORXh NDHp!6]_bfN) N7zO:OԻqQ@7ZN!6EqSMʹԺ!J.Ƨ$ ;;ݚݷˑu?%CM{k66wmyC<̢lY}y1gOթDtHa w.V1K U %ݸy,D/y뺝bä%]g1xU;bI_XYg8X!`D7ΒvgR韋mvz\WR_QN[RU^[T\ Nx%r|4 ̖2 k0aDypu Q–\Ţ_¢2SAȔ3l7ݑP~@хC"/W~!u_o{: F`q.PhT0ONo*U of.m !ĕcޟW}(⩮}}&&`1&6OGbx1bDeuQܯyx"P.v4[ zAcH56'alEh)91cK'TdB)cP*q^>S1S"&ä]+|&(Lc>8c4Cȣ4'9@db!FUa ,"Puƭ~;=ᆕW%$EztXIp#4#h'sq)$_H/ jӊgϗaY‰ B!Pk}QGM3uN| +nȮ(!Uu ^N("=J MDzSMl&&ذfa*>o,׊ѐ4,3|-lml^n𰚵o+L";SE.%@%I `:g4[ Kde,ݝJ7)LF~Ln,S,(A#ؿNٰ BRӑzs.6 6-쩡jTa6KJ()a"&U {*Fa~s,GZ`g߀%@w pŊ)R`c_/ktL_m/o{SUtmrGW P1{l `wAdZaF[9S^!$3jZH][u3R~DM v0ޗL׳?ﵦv'.S*hL) hMAP8eL~u1ocFqKI'35&~_b?xC^;%ez#w<}.EMOiZK^\Y*,9#*SiTM(ؚqC*솩- q#nU汅Ru2Q&Dk\,$A%凂h8MX4&>ά j-gKիh{ 'U8u`=VxC-hL@&ٛ ڬIOJʀMDz oA?*L9O'bd^Vẵ_cX Kw^(x!]H X&Ѣéi\\l>]h ַ6wvv7j^cw&lLhg 9Cg^[U!ZKt!ZkhoΎ1{0 &&R'`0va8|W]EQ#&x˅õTE` ?lA_X.âx'# ܡLW]%^\TJJQMVKuuԗl%A`j^#$=Z[#^[\j)B|_@Q>vl-0cUݢHN͗ݎ]ҽ` SSiSM87I;ö YX<9 {cmnm92R93YfGIrp?LN)ȁg i2+Ӟf3< +~GEE#b>(yɊUw FVb۰2$Vd3dE`Jo( 5!fr Lo]Ro: r:ř'C4qm;m)$̀rЁFm#tZOpyzMX|ЕC&9Ʌ@A2 M85em&RfH2G wI?FKk[ֿ u{ ?Z"}Xtt債":mmyBt>"!s!/+5smYc@'  <̛=/:2骮}vcopZe1A.L ᛦB"[X\\ҁGcBp@),H:S킑8ƍ65)iQybKR\'"iHK3j}HIrfH4#`)-\V|=yeTy?LHY%Bo9LXpע~:aa KGJӳ_ۋY< ENh0Ÿ/ 53'8}ؓvh r9DT2\]Th-T/Ѽ⊪KJg@ޠ΄)Q[wuqkG DUncw~H! iaX(p/{IeUb?hA$k{ǏA?ZM\9>:^sq4:̚Z(FPS' Ɏ[GZ/p゠m -q.4/:.,A}@ B4c 1&T-C| J^Y1o"xAd\XjXr\lrmߝM 8nmxiR)_4Ji_YrO|o X}%g:0]k=6xM-o;p"6aN~n70An2$mԧјƽdM1 ^Dr 5LAnOJ=hxRȘ6ER<|,JCf>FB:Q()jk5hlzDdP HЂiB#Y5|*_ ʠk %PC=rm TTqa 'z7Xh4 U:f"w"`P+EtGP :LP?> ?6xZ&0jtFg9l`pUfǛOts_ծ\o_5Վ}]eh82˿o@^>!70 N:5_db Gg?S-!GGd?q)*,1:AB(϶֞#w$F-O,| {k6Ecgm{Sy{3,pmf-ps繁Q'iMm@ec2Y"|fِGKf+XT_;?{]Z`+lᇵpmcg{߳aʓݝp[k?n־ljg϶6=ٍ̻"66^n38`4srk?naJwW>kst- B[aoc)6.twk?v ` 7MڋC:Ox z1yrJk ޢ  Raa 1* R^covA ft F͝g Hַv׶ F| ?>m[g4l?];\ @0|zl4E@အpkA^o[TwR üRA."!* F}Ÿ649wm K(nMF`G|N?/Gd96~aulLk?60xZQI;O8 .({ j dKp B~bSTC Aɉ"F,iGưGr^%<悢*#itl{M1J ظ38^b=`s jZ 6`G3uRk=O{<cqGN$nG=8ؐs "=Ig-][yv]bD5 l5felp @w52.bj6jOB2q EL\vF/𿂎x :?B6&>%xi%PT'z(nal3ynr2 , Y]ǹ؝ 8A^$KUUttD@C qG8l$@qІ5V53fFб_1U_zGg#%VEϭ+3phf8YL"'SxC1G>7cx;QYT"YU)]Sb^L:] H"N)!Y׌K q2lŤT eme2R@梡RvE0!!QW BSEt'T5NVb3%$IF(U&j X6 \&FW>Fec\ȤD6Yt* 7ɗ_MSԡ[ITNnlM.Ajg8NPCO(߰Mz%XZ z% 'T>BKfKڮwI$p|rOjOt5Ң(r$ 5 `~ #[v,,iP;H?nKe9|^ N(^Vey*"}~&!{xGN!TE%2D6+A ( :e#|Li0Z)B\>SP %՟l[Sik&֜ c#2(C|78ŲN>V iA &Nlo:uН'|ӓ)&fg3_a Z[I[f1Qn7)%}kO <<z3s`16Ø/|ϝ}$GH*~M4ɩ?u<_֭j?\4-Y;qo=昳Ns7(, O˄@)s Bt8?US3_ ^EX(F.SK!$Gh~ZE3rjN0K:ADil @D(%\Goe"֨Hg;On~ ]3:*^ЪsCPKYˇ}#JH!prӸjUҊҕn)Y`TE -)fKfyM t+Q)D4)7ma1NJnJA)Dy|*u*)?GҤc8M8W?'`KgpS[\rTH1.j+LP[&0E,tr\ϵŢljµma*"L(k!h,i k@CtDM'=&(aô4B~Ң3d]kǎi0|~sX,pDnS m I/޼Lb*ӒiR@QE42?"!_!Q8 N*TSYc" |o|T(S4檌tEҲ)aND 4CMD+I?j4)+m9 O|m)*qrzW3WBBP[1+N¹憢Z1M|sp)rscYҮd%R,%D=zō"n:b~lg+ӿ>ֳUio>"}~'/VV;D? (! Xi{'*l 'H9D^l/)3f[R&I!"EYGu܈\J-D4BPs,e̥1,ʹX6K+Y !WS2Pgf&f⦳!ng}g?3_4B>#͜!E{|Pz>`M+ݨGC|4ۙu[|_5@v\٨d.S3je6"P<7 #ng.?H{.nkO 2M!L=hkzy:TL>"߃V9!bUb.)a&9SqTâ9Y`^ggʘVƹ,"Srs8xe_QIW[bs /232r4#TzTb?\0DF]KPS[$ kK E"QOzb|aQ@m Lhِ_R$. >1;H܌e$lǡ Q8 P\"'p*E1Wn/͒?0HH?־ْفJitfCi_Ь8) #XTH-o\KQXpMG5Er)qrN!\FH B{29gE"{5M-bˍ,J#rۂ(4c(PX}g#d@`@ҊUTP ybb,# 3S^y֋vaՏ,F |g1$ĥ4rIc5OZu!lXk.Xj0'iZg$Q?q?xE,b4/A 6csH+o'y{Ov?(z`K4;&͗3>vv(Ee0 :m*~YDMLWD}]=YuԐZvW ;U>\'3-o/]j66Y.)7ZэM{;j rY]UrQL WnTf6o"2DQSQ/VLb^"ҩ&vy([&=PnxқX0_j$3gp%:[8E^C#ܴ}ê;Z {ؓC7c~OtX|\n"-'sC AUq[PjabFJ gbzeqv>~剪>qy!Gw)ׂ'GР,0LhՑ z5\R=`k A!$8 Wlppo۵#Iot4L]zQEX\;q浲>%x'O4˱d 5'm>w;xEWH]p`sm5 -LEdLΩ^?D-*~`nn[ytw3~^/ $N'!<(C2gC=OG}{ 2>% oB(A~gűOe<0)C~׵Cc/#l6h`p 5f)rUpmTԷ?I֟1B5oT<틋K=85pK/rK>:}GQ8CI#%+TJ_Qa a{:}ef`x>KG`)?req C ķ'\S YJ A֚2Sr;ϭ6:xڟʈ\V)2^vWp5JO7+f'N,qllFtiGw{量gs}*9B*ҵlY =m/b{ۀu5ِ 3hcvnJ/l@O>Od"WFx <$ tdO:?3G^ҢX^߮ 3S'~PX>UE[D2Xy1^xR3 Ӏ`֪/^b튊c57v@rxt6M:iE<! 'g 4G>&5yDMs =yKkK^i[_r@˺w1Fu8%펼"H'HƍI7|Q7T }ۼgCZ^كSpkcS+``,Dc$Gj-TXV-v2==?a)l=w^Hi=[Gyh>%w!kOHE4 1іf{ɻ<䡈>:G{^5jD1gP^Ƽ+L&s~Y=r{Kii<֟kcG y& L~H"@SN>4J&rݕK 4l^x-h!GW\Ѳ~5WӫϬyFV⪊&zI2{*U*Es۷Ll{D@3M) *#^Rc1  1\Bo& cN1-Qz('î%M"-haqXeðXR8Oۘ[/7lje0eL4)9<=s5rl_:)[Rb!p6S1[مaZSD闾oXI{9JQn HF7~yT?\֨X1OO= KBv܅PV|&)$=pҭ#*P~? (-WO.^2U3 Sˬ%3zP8Wkq+ZT0Z%dLc% %WEiG-Agd:๿Ksg>-yKëhZ>i3il9S2bw8P $[\,ڝq^ kBadUǍl!U[b,$fƹ2К+c2/V#( }ĞzU9~ka*$}1 ե%gBp%\Z0V׻n%@w<;j:n MЕ{H`]U t'7!.ŌK.V=l}AH7&WEJ?{|/swµ/={W3XFl)D| "uB4J.DfcdNEUU_x[w>=E@\Ԫ}KpA0DV:l k ∋[߃[qpzx00qMnvagrsXQh B?w*3$jPyI˛lrE `k #`2S-38)@} X5cQFvn |ֹ TLXHz-WU(K jDm4ފ ` 1l/x{2-=s=Cu8H?ٔn@ܲ7W'|kg {em[<K 'АʛU`kfsp'>PFh$T=ŷևgG2uh)+%hVc_ g<b9OłDCbÔڇ o?+robOVN nz81"q[tgjoU G}"U.lj2ؚ|->!YĐ8ؤ`FP=δ0lGAHkyx>7:ƹr0`C&KR0΀[ hJёs79ʊiAo.>'ٞQaקT)6Ɲk}9_ݼɖW0fo re f;h#S_9}c~oIÙv:S<[rJ#|ޚK^Boʡ T S|-+BbbT ^0Kv̊oZiq^2ӕKA7wm^T4 >u.fo9xdd/dZH~7>*f%*N^G1! ?dg&R>γ[\=x\=B ?a%Y2tCӪ"F sANA8uD9D hñ\>@\ŒU.!xKO_nvqͮhi/W,y{L>FvVEBN+ˠ ՞=SuՉ/$pA}NBktYVEc cGk f9Z^! got@  c/Hh/D]SU:'R/䡎x`ΧbDnޘ7Υ=HrIuwTl|h{1V[^(.3^7q7)SUUCl b`AOLly?Q)@UᄌSC3fx؝Օ_;hMrQeBM%eΆǮ] 8) JMcݢEI3@́;?&ogI`'\c"#~>i0=<8oE泃;B 6#X AI.ɂ*x`s>꫇XL`.ag<ɀv`( >ˎ?P!GM#TX+I_VKZSrN}'&u< 6|t,V\ԁŐO'n1+' -$6XspG3%|^xeg_ Hqn-Y2 OeZ {P궓ST{Zc V2 &A"}-#^K&BuDmzqT-UKuW*UO.PgzV",h0%8:>;\o͊G˙R!' M:ڟ$jV3=FwaX-W Wd\MM\xD yyL槓dN WӢrVLs Jy҂AvqC 䁞Ͱ\| +Uf~JIW+ 8${a &ľr͚<ĂL#l+\G©>z0(V+bD6 ⮦3|4a,Vxw %&\aFO䭘0%܅@'do{U[Dv..[R.d)! 3mC}vKM2V>YBxa'p>=7a%o6ͅD6O*p9Bu%V`b-Ri`Գqb;bS\֋Rį:1WL*Sd%:z@,Fls4JR:f!(H oجSr͓%"Fz=,,k"f,Ŷ/A̼Q#Aݨ3na6^+pQjruGf *A5́ZpGxD=ˈ rb5ɪlںn51E_¶cmO{ʜ 8BZy/s[@C_^aH Gk"Ydϟ,{An윋G<Ej&?1lBP¨۴E@ ~Hĩ0}NJ%]N|\Y+˂`"J^.<.yU#X==g$pPkwOYUIXE9ς@[YU䚙 PKHUAe"q̎e ea?fP[sIPizI5heUӚfА'AW# #a<-fN`jE)G mL[x1ZD *X ,Ln>7Q8w8:q*?NYD3⢑OzڦEryPZ1A{,?mVAB2C횀^.I͚MoGWap7 2R SHpه BFoִF}P9+D+t51cP B{߸(V\jm 5嬦5NTs_˺={:kl`bnZ`%=Ƕ#XqP%Z @<W }`G 1kTutq ɒ N^DqrLDj:ABiईMp?NƢ%X^W Lg||~y`p#]Txkb~ lD!5'+#`*{'e,p.l񃪮jf0JQDLxq!@a;༗,,˧o-4s|NgE.,ȹ9:5LWDz[j|?s+$I%ガe69l=K trьijam &qжxsL*g(9הjiEܔ1We*.r >2`K~s3c{ǣ .'N&oxTDpPgh[٢:~DSjȲZM*j3 @nwj $v>LbSQ˦xR^kP  S JoK@TQh5޴Gq1`>؇TL8yeC,G6ZfÖ>l"4L}@@\MpPT0.Ο|@#r| An'h݅АI*b%i)~bj7d?qOO31A}  /?O߷zG88c57þh,hwVȏҦFx~`C?m X=*+Zt)Zs쬄߭eQLJYgAF[vP:\KKFCq&[&}AܮC֋blQn }Y5w0KYgЇV:i<:r`,7nQx5ѮZW4%OWaAIȗל2; YuqxߖsQ:@ΔI3Hx$)I2mݕ[H4бp9lDHSjg.͔04 D|uQ, t+jN.hKW έvW~\. /x}h `[U#21: 3"8sU<ʥ*W>Qŀs͊GgqU`ySGs‰OӺJG"4!m8BG^LܧL'6o2J^CS,?|ɪ!@2^~b>ںȭoDkwT0C`?FGTޢK9DP'\zV0Rcb7:6{ ^@a"v H& $`XWVz ^a*uNv?5CE2i'hw _6 ^Np6ymXXI@ &8~{ya4.:tήg[rsD*zEgyԆw60 |Vj$ZCELeoXZiľ0[[Sng<, 3~]LUuE$Em/i%^Sµ1-΢3> ^+z7M\{4Ou[f}@Qm;@ɮxK򘃘a!c5p{y052IJl"Z#TQH `rk;~y45({N+f A:tfHAxI#T B~G kTg5%;S^zf=N_( #j ]tM.y7d4#a.5t9grǓ:'ed .|~[[\>B*&0@?gS}"gY&p>s*+KQ> A&. [( S e0&&7aJf}HjMG0?kX:! :y*;VL/K'{ i#PL˂Ia+KoAӒcuN=T(G,TOx݃ӥvD$oEKc􌭈RQciר Ml8Z9 W u`xS -5L|!VV;&|"5y ?/`+_+M"I(AE'v& ~wmt )>ZJ|ihdj\̧F/^P":”<\\p2O/‘]|P ]9%sӧۚUOFۙ&*DCO8 6H0<\`϶yp7#m"H0{PPك= H@tO0) v -Ջr3JYٻҧT˖IBqPЌY66޾H74 Ҹn; B):;`gTT t q‰Wґ,8$lg]~1ޛZ#;Lk7eG^oXCR, nX#!v= fA4q0) eurL'B0A GfSMr?C>o/* oȌF0O ߛd<ap-;vQ{'TqG;izLUTRPܞ_$\Ck5X[ma;in!KGMs-?FN\2}-p"v:rPsMY7" (?ۗ; ]AQ =Wyi?E Ͽ➚=%s0.vWx 8T:(\R}+Fjz9Sde 63 x^n>\{) :<.Z"~%ϒ+jrf-r9A kkdTSГWr3)xGOE"h6 yvv_IY0h 3,%O)"MfÊ%*j3%; %pWEZ>Yw,9h .`uFUȔ D'kiչd{{0˜hMRf{'9]lج$=^ly,џP_L%%H^{- n>r0'AǦ88SQ(/҉RK)2{lޛdp3pm`compwPһS *ח&QtD;T~(bsߔE\۔nA{҇xd-y$B9'=6mvbqD$JOKڜEz 8mnIxyޗN/Ue[T-0/S1p(e?R$SlvNi7@?ȍ&z8P'Ͷ\{s:{=aSO|>+fQE&=heeh *NE% R"Lpho\>A02_'&0S{^\4!L X@{t k1p^:m)4'̨j 3 =g$ˎ-ʥ [nڋ\=مkddNYL!'x/N^G?b׏ ̄b9!1+$&X'cpxᓵ <2..˫34&#]XdBeݝWiʀ) /XBSq<*r'&/)I/hvSq>XFdOs)c0n| VN 5=-!]'jv&t( ?Ń-8 $SS!NO˛ j˷ !81T|R,9avdafZ;܆ir]דpzjYrT~+l3o׺W~_UQ{&Q@2 ""6bTI.xJ#6T`T"ZW/%ڞk팆*fY 8z/A&/!7X֮ Ra1q x^X%8@VˋrӚW^8>$$OYQ!+P `}A萅_[Fcy%DZ^YpN{}>X7@xl8z!mrk% =\֠g-z *䲁 uS2-% ~>m'H/fh}tQUI,ƫPx"`awPakP&/ܣH_acɹqOJl5!.7j E;SXb>vs^apm*ԌQ J/cIFrDl'G|Bͦ3ܢ9/+t<vf%tK> Cw`geG3JR0uܟ{bA/D\*0XZJ'}7FeK[gc?8D]C5KYX¢T`T]cAn9+a`MI$ jlx!41Js0Cеv3w$#yJOz#= m `i~] KȕU@Ac#G=EkWP2OIN^6.ދ'_3;}]8;$L,!Q?R5!fӽLg۷op_=;~G\eN1k5VAփ 3mJITGo@CGcv,L} :5n0!/p6^)}QE'^ǐQPQ i c٘Ec<A:T8k@o/wMo<=`axhMw[B;^vjj0eq2ddj.CK f͖=a`$2zE-G\G`||Kdz#pFd]ˉtY6l>/<3b47*> Y'|Nto8#srr=LjB,=Ĝ`>c<x3xhR$\Y#>Hܧz#(y62˦~mlZ:W>&7$r+zpw H ͤvK\w4?Co!{UL%~?!xyI%+y'Gⱃ-y˸矆(t#=&X;`DV T4*K6! <џ򡖼$GGO7>y$|湣+)_Q>Q>(qO3(ߢ?+pm- )x4庣+bUh\ 0SL \-Яட@@,9.4^}I|߬޺u\c2KrG~;|N.<'72LX{vqCC I=ϒwzVѽSdi^#(^W9BD_O#{P3)'}nŻLn?se>60 No ] l'G86ot*rL6x)Cq&%n/0/t^P)YjaJuG~N ?-OBހ2fmϧm[E(l|g CtyIp=.ϊ2>vw R:ni⵾;jjW}t6UL6YCA9@Y@&&=>cUЯXma##qӯ6q5ǃݗbr6$#nmn Qx<7qFNd|SDvetl3=9h{>mk?*]PYa[ G~uھrŸ~t?U zGW[| J9 :EѰ .fc|5|ވƥmg{? ٔ.Ius_[_ݮ]PDh^cu0E!s7xxM(_K2_/R~ (_ͤ|M[;ʟOnR1kTmx? BIxy oBVڏ L4uG?֭bX\!A@9@ym2Zd6@Ht>U$bZv<d)5sRq&r| `fR4@Ӓ~GZVѵS6#-+ӷ~>h~eTi(I"5 [ETLyK!Oigރ߾[0OsFiR헋u5壋no|9EޏXm͠|7drrnj'%RgO9CBwT}޻eK71R~pYe%RfkQ'YPPU_I[V Oр߄1#rjg9zO lN`d>/]c~?xS !JaktIp|=-;Omn}W, L`i`>oBo*ొ9e D-D3W(\li~^;z&L:äɰI7Kۅ;RQd1Ϗ]~1vҼ| w <&mΚot^6k?ĺ5 N17gDJ28z^9E98\)^C,a Hxu Q]{$2l\y2ƫ[iɕ!&1!Y^svvi2Fp{OMV6iwf/o ]/a [A)5Y5qm49㮁e;u}R!ArmO:!iDLAb&%#i[mNޞ/o޺U*U,t[\`Ye~TrK$D^Ay>\%x>yw/o-<LI`ӿ[ETL%~ޏ}'4wz_]뙴peo﬽8z),)='anue@+>2 |l:>xJNfYqnnO L:5 &~_n/(e(̰߀eZ"54^Wk\.0A98\jx8Q*f*Ft)S9(3--ȁyE ]6##IKA9Ӎ)47P DZfFjcgFpNBnvhfgP81zY0a<03Sރd(8 HL-IecS}Bܿ:}]_-+`'%!~$ I6[սB8g֙Y7klց Zlz7>4P{,jz<%0M~X|5B_qoh&k!^c!.퓖 S¾ .Ex_Ft 5"}?$WffiɎ90y_o]򾴲8 6DY0OzMS&qa1?+ Tu3f?(-RiͯH(VYFȚhEAew~N<{G`}d8G`AT.TG,93[I fXq[mtg2 }ds2pY\e'Ϡ Ow3m#N fβbb1O:+wr+1:V*T}9Nwރg1n R~^p)HY4}Y?p*τqL'<ң\,w; @X|9mtWws|k`<48 L͎O c8G m+ir6>E}C'oɪ9Qxg0#^ 3L/E9@S }`Pe)'Qh7틨ؽ(Gq=yכdFO%lBg!>$>ḷ/Q+bMWЇ`zi:81` p8~/(XOiR k[ (dO35Rx QT\| };zzSSm@k0ە"Ī`ohelW (+Wtpja ZF:S 2-Qog܆fg[uhhpxjhwıJ81v,}nD]u*A/^5/#TrN?%ύwtW:Jޜw2>Mn+a\e $+vWw!*R|u:1g3Gm^ˤ <ݼios#BG7Qm4\uSswOڞ7|qrb4cjJ$G0aťQL!5Smjm*Y4YNMdFu6+,L|yϪ{yڢ|{Z w`N) t|jYwM#@+SVMf]ʵ$6`t%Mx|YmA Ng ;gmnL %ϟm>zer |3|YyO1UH#E50Gj9ӓVț PgCgi'7j8yռݹ1hѠ| $/1i"M>?6+;*i$꾗Q[{_nZ"J"؇|yQ/$={1ؖ:S6s"דy069kG |M2D@iS9iS z\}bG׎ | zܼךW]byb dAzeYۤ8}'#(!>_'DJŷim2 N9}hxeu»^!X4Ӊ䎾rHFPX\(ok:Tִ7J?m6m9;S{g`hbtP0|v|L*jqoo: uK]8AxD{Gȹ\n,xz&o\1a* Q|KOgԙ}w좙C6v6}Vߨ< U^iK̭pԚ*JrVW+n/?V"LZre*GɑZky{e^7nO+4:> iiҊ`o\YZ9[爮~ &(PZkjڇʵ5)fSMxmRXW %&׉熯P8#m,] @̮qُݔ̕ӂ3-D}97~-ЎA?ju1RgNo8% ߗPXh6wylku6:\Sh_tO8bG/Xjs-Z8; 1yM>d!~3I@Ue$x)= p T#4ڇ F\Ѓ$1VB -l_`8WLh 3]<*Gp+];k;$^.\wR)0?Q.0q7N% F|#/XPO?юƃi+f&W&VtdՌITc3ۚt_?f6-:v&NuN\G}$3Wv@3擃YS"{E+g0z7~*(0<#`qYMWl*j6hʾt2-ׇU4-MBA_T~zaLj|ᣟll7`CuUǪ];G`)ug½y¹:A)OjN_p F=aM8/.;JC3@2F&6+7'͟<~,Sv}b*fe艄l@OfwpO8Q 'Մj2%2ޠ=9$N 5taN #cjk 4i7Ke)fbCFe-`)A0Ʃ4Љi熗.P˥) n@J#/ө^]lWG-m8F&\s+_n<.uV}M.v G˃= j!NP-'`ꨱAkǏ=V,.wbfh;F(Ǚn뷪Qgu5Te|%+ka7@,{LY~nqs+TxILZue2Nx=V4DV>Rmf4\}.=.IWH4bbJ?%͓t8&;Wg=~q?sXl]HqO;"+w,Ka [fv$iQh^],3?ӣK*cy.d1[N6mjyW"nI9wE;׃at_IG2k˞od7OY\BnXO9 A 3- G2<.շRFw$0]C׍Ä =L &H͛@ a8Gcz 9Ofg XPR](@\e0pVt qǜ== / 3uF\QپW^w:dYK1m0m u $mKЕiޢU.(WsPN }c۵5^$ZPY+EZHolڱ =akPHi9EB l]̹Ė_|N=|ݮ⁑=}NA=Ҿk]y?=(%qo??W@)XǕI^{<݇.\aUшxNȭ{/5dD iMz⟀boC_b7Gk*(^t>8$`3hDhǫ{ZZ[R6ZZht-3ReڗkNR[/ *,s~9* pS+-I$b=s$p\tD030E,L?U%)GM(]B^s}W"(yg?jopۙ':J7SYE-2מ뿂 /_>ApÚ!RYMW6z4? f1 nayՉ@#~y#q2c"C4@&Nt̏f!!:44;j)/^K(z̜; ͱd*t㬐ʟnNqE:g,H{(yBKg,B=[D(~*Cdl:9ņ-u^d>OٓphE+u繼c@@d5n%!1 }oY۽wc$A{s׍=&w|0$n1`NaiiTt,Ζo+N03>5ef6;~F'RAΓuu'L0,9kCP,:˸e>w%cPvX&`,143+R*Oa}YY)m);5RMC/T cv|(ʁwK5ʎеZɫ8 BM>z"%YU7.iEFbp}fVO:țגWҫR7dZ4zݬ7ln7t=˜TϿG|Jmpjeܺ? 6mR:^03D2q 2!%CJ|g\]>K}px4h{_/6^{V5@|坄_N@`p8;?@̭Mx_ިRypg{> ~.O~*k#uըuþ^okw!-@&U^$g˄/;2uE'֏cUN1؊+vO4v} U  qǔVkuʹfB ^IsE Mh):(x +؂#v6)~oP]ϪF1 nwl $HDF.r;Iys*l)BU cR!NS;"G_?,]Ř`ک.TuOuo~$h:Jy"Nβc<ɀ`2YHծ7gdҮ0+3Wϵ\rWߔ¾~uXg|&(,ҶNz4ͭ&OQqɧҧ9(J9"W6> 4]5MH{q179ۓ[ݱ=q!|͵i@|}E g&MThGIKT+:fc&E sOxf cQvrfNN=+ ᔌ({mJat_0kQU0bq:P45Rp%(IaC@ uBUAƎ(ت\zp@^}08 md,I J:C CIxWE9E^oߺdzR޿-/_ʀݱ,*Vr/0YY!iʴL)e~vv?0K/4x\ 6R:+%_P*-XNNsr3O3y^/{a(fs-"l4+p_k;Nl,1eюv_Ys /L:3>gO!?U -wr`1{ѿ$\,2i F\R_ C.l`;'C~jp YMkq&Y>ּ-2UXJ#^m9unߘ0-EbhFٲ]% dæ+q(9W$Q(̛W$ P~E1*4beYa|Oq͇xl-ȡ!w[&^s^'# # }RzeX nTFmE$ vqWKB9v &%@ kѼ<J_=f g Szf %(("7ܡVe0܄X4Bp4 1Y,ңqt)嘃&̞'W 7T8K\c4E/+rw#-K^6T?_[)zBnѝfO/9Q͡Lk42#Qő8 HMy5э4Nu+)kiam(zYv 3AD䋧;0@^xTFy/߰ɅYQ\ɖRނ'I5\%ݯPZMq51oXK ܘ9Fe]gݭ|c+,v;EG dBGt@-CqC@pH!F.=UzH-;$ M.N8ԸaIDA!Py2z|-mhg8aLͣ]Mk4ʩ8Y ,E]'x/͵ = _B>,zq; @0C)ֶRL&SpTǕ~@$9ia<МOuGS9 3n7ĐES;3 i8qvERi(KR?o5ՇeCPșWV]e/b14̾5h 6=q.2sb }ZTWN0 ƀ le䏖y$Zx 'v꒕Yu'YC Ul1 AM$:"45^6? ZGnʞ~LRsYHl`[.R[jk.<{BK jLci?iiZOXsy!T ["[:1u1{79<GE=;+kP ItG&]y`k悻3Ti#֛FKC5ĄWȗg7GVDž (=M:brSʭGڤC$mCD!)kDiՓ!}R!~Xd 3,}b < yXpT>lOҌ)ʇݩuv,^MEḯDꊤミ^g[s16/;],J˹hq7XI1YB6O-#dS`/k`a|7h$ZMuUd%Y{ b| %꒳nQMaq՛cBT\؁'~(zIj B]!%5߰ncv7&ΤtHppwmK$2Zs7S>"XVĐIR0#.^Ivsa(n8OudeJ:a( 9sˋM nxz D¢P ٹA"m]D]_Msu4Yv2(ڛoo\'YXcƈ_ FCza?w>PaRjkizxG]FFr41)Bfx銎,gC~EDVhO #{E2z82᠔6f]]5ⅵ,%k:oȞtߕK]2P"q8;XڝWb%7ԙO@"d_`I5}6.d{WFVNu[9˱䆥ek!~~? {U"z_Yt65CLX&>5`^ɳ2./E t#4lԡsi|F$TrWj!$TkDoqPSX۵$(ȦEn%g 5,gau4k">/(å(2+ČoZ+ECrJΒg:~Rx^O䎴 >;,R W#&h{L*44k7NnVCf59^)HJOPq8$P3LY/..'SN89~sV䙅9wU뭂H(w]u 0KtRe ƿŻ+Tm3NU"PKvmOP%׿7k.GMUFAD9 *Q抚?TO0;ݎTDhV*fjU*뙟%Rp<3*pWely.T84xJHG17! `f8riL L[!ª|m1~oa*7`z\!LtJ|V\ 'fSJH^xF 7b720aĊ&z##WwVx^Mk;RڽhK tKVpCiӝz0 8 RA̳G2m [=d8!;Fc*b+s!Ҙ x3x,n92p™-y%'"0HH1XJke`vjl6d;lhS#6v`5$N&\b-ZȍHÃ*4S=D>rJ9,dBboC՚;]:U5v8dյ&9𺛞S7z'،vĞX>/xȤYf!; Ku~n>UrK@/yu``kȉ'P@2z; m6/c>T}6 so*VE}^N Jm"4^=M$-Sj'R]X^&7#SwIJsZQDÅH1 _,A~qZX8uka`VE{;A<38b˯י;,'@Ez5\ߘtU=R A+aJ!\҆X䀼gAb!8D(,4=Rb& (]ȑ}C"S|Af|i)rzE͉~rE~ !a|w̘ fc%tag ^E$HaZtT-J3BJ9ώ#zαԯ^Y>7.s8epDJTo<_Y.һۦ+`HWfFޛ5`voJNk!G߬"9 srGG"l|`jܻx7*K88i ﹞%5+U)s!I .%bŔ _@=F`9_|* ֭~@½ D>3ɟflo_v뻕kZG/u~׀ ӟ1smx3MK$X޼P5zsCiVg+sJdu;",UY1˲QJWZba'W-fñe8e/b Br}Cɏ܊Q}Ҥkk^aC$|wf] >%  8ޚ۔d A)[+|`dF =XlWኺ '} y$q,ƺS@x.Zٱ Aԓ}Mnϱu1Tk~zϨ f:㠾35]O eĠvnL};B.9.E.tӝof;-߿tnǙ9e -(x _Z^VӖ[_duЄZV08-O^vtH,bD{ @e_G2mQ` VB^ie]M0{Cwp(,`)1ސb1Ua$]V@'] X'? *׉ۗ |1J&rV1mo.ckm4薈.Z'{Jc2;x݆qmQm|fF+:<ˀ]=;\& vfPv^NHte@vJ+Iˀ_VWʤ+pacpl-code/.git/objects/66/0000775000175100017510000000000014010524045014637 5ustar viriiviriipacpl-code/.git/objects/66/2ecf4689a0bedfd61f80b2c3b66bccb99a02640000444000175100017510000000302014010524131022253 0ustar viriiviriixWrHg}EW*[67c/*?puXDKJh-(6==dD/eNwjJoG>֑uDcJ]_QG'k){<+I}?:@ HŚ4Tn<|7>,2]+<' 4酟ʙ95u )XWD,R7!i (4Qח6tlR9<__,*B*3Jfʛ zHK7q o숑5yNO#n9Mv HBZiz|:D'Oi"ؿmuh(IniJU89`w?ƘLc?<8Fka0c6w ${yS82Ϳpϗ#%oV+؈m- O[pܨ juVoYxq" ١ȅ/1HOY.yA\ـȐN& OC* gDžBty}-h3(2zF6k #l%3*d}S{[mB`'Y?c4v0+I ))9]Oy`vy4K} rۡ{i3Q&PֶG7grN׆à د`:*6)oOd4[O04ho{N``ŐҝE?!T44s)U/3f_IKm?o_>p,;-{ُ*l6F1p lCx?sIى|h~$H_@>;\YdƭhfV\TqWpWsOkR;eکR bnob9 y|ƿtwp VLeؘuw)+v֗OBER+IMW{6D_p9p0UzAsƢfԳ)89iӉ_7A־.d n*FI U1BJhch9D#$;_# ՎTccOA"Y@''O3;JgNWe&0!Q_5M* \ܓ~q*!.8T2}>NASKJ,!ss2$;H/ctspacpl-code/.git/objects/78/0000775000175100017510000000000014010524131014636 5ustar viriiviriipacpl-code/.git/objects/78/d036f6b8a1202fcdcf1e3d3130db644efadcb30000444000175100017510000000034114010524131022311 0ustar viriiviriixeAj@ ESc/Z((YGE##iprzhZ>?dsTˢ r&s.sPs_.~z$>7O/ƻ-s՞i+:^L>*b]\, pacpl-code/.git/objects/c7/0000775000175100017510000000000014010524124014713 5ustar viriiviriipacpl-code/.git/objects/c7/2b14503d68d85881b11a44731de5ddd2f6a5af0000444000175100017510000000046214010524131022033 0ustar viriiviriixQ_k0߳(6\Mlc%؆Zuja%Ԗs{ؽ~rG㔂!"@hK 7 X C+$dlkj#32aiK#(1׶ǚy}JwOQ3`piG&c!A[rM! *G_^BVcK*J̜\/ŝu: -1@;r4+ j")AN+'S:2>&"d˜L]"y=Μ}]r"I}>;yWÎY/{Sá9pacpl-code/.git/objects/89/0000775000175100017510000000000014010546217014651 5ustar viriiviriipacpl-code/.git/objects/89/c3ec150c3950bd3e953bb7b0d290a42d82c6460000444000175100017510000007207114010546217021771 0ustar viriiviriixC?5[)Bi~B0vxjpuC% 7q@vvgvvfvv0:V_l:x9;p:\tG}qq؟Wx~9n͡Q_|v!5< h2`4.P)i۝;?.zZmׇ;[o^nVo^l)u^)RD dP!aOg!@`/u0'\[(q4[U1(t6~m`ߞ=`v?~>wI"b4n= phU0N©$py4&&9btT[GjWTOGk׿\窨'OU+ >Y(F: NNtl> cFjHҗ[P>/Em={.pF$wHv8F( @Jj/.ly/em< u2 pjަ|IM>b/q_ۛ^Lc L C]R$@Xr@Lz5|j+Bo; f y|oPCd=Svx̀<[ з;7m7̠zzo^V:R-м)gC]R~o7r OA<ȠLCϡvŋ|i-`<,_67<_i4BUt1./K~/@8uO]2J+g"!&/­Q+^r~Z1I;#vu)jji)k 2 bńDuIzXTl>_5*#7M} ^%5Y1I9 +# J~j9䥝L:?yrgG-Mu6sV) { R`8ctPT`xeв@M=FK6Uke|{~ 2(ٜQPF9><KhxKBGu Q 1d!tLx0[9͕EC"9_ptǠrLUupHLbjn7a5~$7(NbS+DBiF4q= HNZCtH;Rᨁ;Z3D˜ƸE%_yЀ%LG?;{?Ĭ zsݝsw}_E{37ͼS{{n2I{3eaww MaPV.USb= MJDN{VpN4"{bݓ1qzG$ \IvȔS'_d"᳻23/H/MOƠ('`(Yj`P% I %kpD(]?"!I*d hEIHӓ/ݕf2i4_=5㐣P"MlN&o>S7^z2*^_s0&=/ @ &BLWpG//pt`B=4J_(IRg4tPN|NJ1r Jb/\&u.P٧/_(Iw9(uNuo$/\t4Nb _(Q1݋[H NF%INK/_RguI88O@:AP;THDxZ($JFB]ִs|iZxS,~On(;a4g<]Mu~v5^x p<1SrMaw2 +Ehg*>hw0{T)ҍ^nZ K.h$ 1N!j' 8҄,%eXdY}h?+`3KoPZȨB"*Mc > ET`7\Ddb>8Ҋ}S*L!͸&a4ցr *\6N`C:oi*_SV "&a-x6&Dj]n2IZ  Z9 eb$ՆHe%H>ZJhQk vEtvvﯪȪCi*;;OZ̢[ɼL#eY.ߙ_`>)~bRNl^a# 3/Q>7Sy<qs[$'+gByj,g ovJB=z_U:7/>)b %P: %Qt09ϭwi7zWU9ŒխߏyyZԌƽL}*o\q3x499M}jg\.Slj:o3ĖÎ+8n6{ 쾃%缘T9Y7ʷ*.xH?e2)cO-?4Pfn} ׫2]a}d.7lN1ei;:jAPs,}w"C9o6j0a;kFs0f>L͋0]Ȕ62k+r;bղvwKIji{ܨ(婙Fqܵ &uؚۊyF<-AafD0)L=*gs_%s|J +mfoކ\[M_V3WMXHuM>*k>CIw>4RVӀ-Dj"zn}Cf4,5;8AЂ" lwZWĊrrɔ[;gWc`^qc\e0ojLq3#BtR70PFJ]{̱9|=tJZ:ދќ]*&zUt4]$A?9gh 67PZ7 t$:Fyem4Rr:c@GK74 8̩"DF +p"#9@*= ,;4my״iУ:b>zOo 3)N?x inj#5\;oqs Е}6XڬPG]hˉQ/];d҈.$_ ;Fn\F+IB"=WxᇳPU{1jPq`!5򃇷\={$jns忡'_*Azd0VP|.8WkIԷ,,ծVRUYDcӬTɨT\9(2ҠS+V(Q(<jRsN&%ow&)8\k!3m\hǛUr4uL9_KAhgWa= |yNs٘ՠ3:W{]!`;MTAof^/+ﴬ&+:R34 ,96,b:fjbf:NOT,;8AA(&T:uz3Lτ1,J}iCX>n% #eL.t,^P2UL~YO;hCnb90 @|"&ؿtKx%:!ϱyRhF7]?)艥bj9~/~3B*(eIQ6{!9.MhvG> c>&"p*IrcQܽ<\wFrSMSr ?QgSAKkvߜ9LqGqrS^ܯIy}At+m!W?Q+dl oJLZ:!aED>U=;ؑb`Km_k$om]MzM,UljPKe(Zlc\e`d݅ ySy2ׯ߇ŽʑnWV.$wQLȌKʇ0G8vd~dtO5]H4a3ILB:[w2<~o6vϼ[b?4+[" b- 젪^gr2_K]IɜJ$Lq^n]He)Ty-+EysDޫIN9YN.4o4Ǖoh2=gMxu}{>ˮwjH_X$举s$ynivLC**2`)3F+*<,oZ-1R6Mj7qNeBl&WS`|W7fjB+\NrT0}/(`@7QkoeӳԐ PHͰN.:L6_nn=~]!ZN0ī1|q-ݢij e1Ȋ #|SnM=.1YtOV.qSK2"9tt AQ# B7ZiaoC;f% g6QT Q/-z ?=Pِ.λUWrip?홬2hؼRj\G32~e!JL.*:ҠO a%.__OĥԥezM>~dL^ky/fZ,lPAEkr4fq_[TO)0z ]㸶IKh#0F8ʥb24ߓ4fdڧ7!ݾދ EF l*~]NsvSO2OX–!id|ɾ_6Pڲ%2gsTNAVw%N5Hn 2KmӨ 4,$ {k a*a<.M>SH`27l 5wH/y,fQ-&jBveٹ~*v<(R 9=w ޔ3=ȉA~Q'eFҎ7ն{vJmSj'Zg)iyGCOZ+WE⩶eu}Hj"77eu ~e̖W?> Nʅ#[R :ZC1ݙdqdyeɠu-ZAb|Q.V8_f+׈խRyYqZO׷/f'9;g]ZRZj:i尠F"_π;~Vgh?)ƌ18\5ηIm[yz %$R &O\J72-ZvOWn2XY\^VdWu,Akb9PJx^\m$ -2Epob77O0 2:hn tN <3 *R8@Uw.M=g> bVhk i۱n,3Ud7m,2a݌k= N?q8U)  #z1a`C U(3N +r˴ ݭ/mh##qn:.[F_Ӊ8zت WT%PVߑr}F#Ǔ,38j d* L0\("ʹ.k#JF.v7DNj cU݁Uz#Y1ɪCمczrɬ.8cʢ_Puu24~Ra)#N47[Z5&-ZwVvP!d;!F2Ԗ3)`G%n~_#fָ^J`T(=vne)n90[`hI0fu(5ͷQםsJI72zحOxAOyZEס;ktn&D:zxzF &bT-bN&Յ :¤ugCne5kٚܝH)ۂƆ*dXaGPH:~sA7t ja*X&fw8h7zt&a[W"**"g*RR(8ŗw9krJ0;3|qd8m;Oڕ(ʀ:.WsA-bg|/Œ]11,hSt_ dhu:VbPm ?mrP|NϧLua d>k=+r<5G=?]K d#um WwAjCݟ=$ګA&cÆAaS?3Xx4Ǩ! ZˠF]PhKNA/Ł=,șc8=AysMCeciKy*=;mKO\/ Y'<)]yjGo F'яσ̈[-_1$g8X)iVg}IoB vT ܜ`:8#zEPOqYC) 4C$xa*-O NM]8bɞ9(R4'[q7j!5EA|SQ6C i6e[ IV/u}[5Quwkl^+i2o xQېk euŭ&{Lr.nڷ$Zޑ֑kkՉ#G>w=_eNTǛM--!|B<˛ݮ4d8+w+i=:*u'>t(aNRuFox57yI>f_jӆ,<Y>.n4Y?W jszGSřω,eTgP}bqe_ -e~~4#לDɎívv9yXi '  J{>Yi vsf #tqIu\wҊ'hl=sl96Xn,:"Kh{Y~?DLyRnl%;]1ŀk9ȋJȭa ,S]J4ܭ[ Vݔb  /򺻇x_d?Da35xʘjdY*bs,7Jr{[OKikqr4ٗdaTȵ{*䚽Qn]ʏ7Tlu™߱5I pVep`:~NOǻf_yhC5Ko_,ytR&Û -Ƿ)) co9RԶΙ.i4yIxb k8TQRUd1%tY؜χ \)q#>wn,*#u2gH 8Ӗoki[/!)S=D5e8ۿ4 e´~o;aO~hT;jIR}o|P*c+6}2]e4M7cY`RY)vsSҘ9yOz̔ڻpid3Q1[j HKzksQ^{~ժo-j6rG 5՞D<5\?2 Q&Nu|,Sn6kŖs'9ìTsvC,O~qyñ4-L9/)g=l6uY>b+6ȭ9w%ֵW6UH%LD:Gx2Nw[1ᨀ;%T#^sMU`2z͚ TɆ6Wm'uF-w(5'\kOX"coyHwY:L=⚣ m }NhKp~Sš ԻrW.ǺFlm|lY=^e ÚC&n"țqcm|ݬI}xFhSMD&[\ ӏ)0O *Wte Ckl ~jv1~ViF[N#f96d3~M0 (r7nRbnL+Y`.,yN> XfSi曗GiaO ؗa E͋(|fLfR."p+YX%)n3GzzN:ӚEe+Ii?Ϣ.~S$+nuGn~[_Ŷ܌z .مz> ls?;7I${uI;Qfovq pśFAOɠk Z_QD_bS² <#7hBHϔ+eSz)I48NB8>̱p0\0iE L="qJ4AA ƓLƘjUigNOŚ8; h:F-9Kkպ' $+/Ga,w+F2,< +LL۲J%4 EA4V+8KӸ0C1LC鱴E4fAHE6(5w`d^"g2󛠵E;3a7 `NC&9[11Z䢀\X!SHo3(K@)m( {>i F1`+:H.l +a 1=H1}8\i-(i?~ZuX/WoZGDׁGB` 9!BӐxjz<8IO/aou2r82D L1S1G-LO$g6]|Ji]hD^PY4 G&?dD$95ǥi}'nlD`I;6E.,wF=ơ-pn:M,/7d:ȴ`Af#&$ b <"wt0{ '8kA)v om8Ap68 'HrXȾ'}LW4l>(U0x!X/ 7%ղ3Pn^( "ozcfhH]~ka\$l'd1JÑG?i8sHᾢgiQLfgKUŗHX"s*gu>8+Wotee 0 \^ /gs)'Fm!`DUiەCeKfJ}n#Y.2:TF}2O9NQPyK#;$ڇ9}aLŶ`VڹJzaia"SbPCL"[@?buɵ%6Pf6DQm%M>%ghe f$f5*{{E S4hg;ZMp6ԥPOHHaAu@;Цzͯ p4Ӹ黓 Z#:2BXڜ0~bD{@oHB2PtIϚ\^'I$XtQB̀T|i*lo5tBjkO6eX֤02IВNd 6Beּ@/uS',?+s18v/ncKsw aՊþ}:<$deKɊI4ۥc>E5Q_>^ Z3wgs |W!|^̕oq/6aA'Dd0n KG/$FLd(Lmb'E؋ mV[8d-ϩI#lDAM9EŅ:Iy'pa e ŗTAFE+ou޾}9YٰM뾐/¥')]QL0k Vd0h@Wx%BEk%DmjB[Y.j2n LRMb2)@j)a: vh%XFZ\UQbO(f<6bu>@tPILnX4է'x:Ǡa0>s}rGeG ރ@ _:[7̘LsAQ9f FKPO-aD "Y,\pge%z5i*(M|<4dxȌxfK1S2p芈*m>}D?xBAI8˃="DiIsZM珩ȸa7w4GXwtvcy: 0F1=8 Iu[J&XQ8t\"t Ii`fb JV0*`H[3#9d2t|'O ܤ~KxMYS4c,6?td"pyQF(-,Z']Idy& (!S[@FހMh 'd.zHLO0=Uf!Q 1@CCYdT=BADc7a][;f4#ݰ>a `dnԛ)-1Έ"`]R˖z:?@g|8By B=ki%WfE _?Ӊ4>̀LOPg3dA$QȦqE$7L^izC#NDRzBv NkvJqsdt-ULa}[O'^jkC)di-o4"\ɨ:ƘSܖ<'=c=gI 3fZQI,Z.m2:>Yߢ-$.yqznnᏏ[p*Em3o8d5]+Ʊ<~8C,6]V"0;FSuLD_ K9b$U`.T1]Yv,N0@c^%RDY.W{ \RSYIY_.ccz(fJ23i|ےpnF+ lQ8EϓdMO.Ro?%h FJ<.X8`{(F$`~6.鉪-LNp?js/sKg#-OXuj*<j×NLFDpOBg)(Yqi{w0˒$G4OE<uO4ԛ-X5CA5Rmt&E aH 04#ΩW,3dZu1!ĺHX(j/hkw-dBH` "^sqUu/Frؽ(D<,g!͍\pp Siki啈ޘW*T#ewfBd Q*h.[eB6#ڳU#ljLL $0@RІFZ{% =R ~,2n} Tiҹ*7?f8l"2E\Nɹ $YzN)['ƓrL&|A|_eU\G;s#= ]0gU ja*TtMҿYk6)Ѩ=9gܴY-ĂD-2l y?jÄm ydl|d1!n 2F-9ދt*7rtrB7)I.hF/YL@7l>M{>Я SEr6QsU<WWoX. "i0ҠoJ ipI|_,ls{]it546V=ʒ27 '3XPtߠ*hm<\#bD< jzkh(h_i8Zȑϖ(yդɋ&P^Rdm~MOy7sy+ F鏰lԂ֗Tj~!P"1}'z%9ZB!"L< ʼntWrۘՕW{7{ @MZB^QORD1e$xX --I1Rnxl>*\cBKڦmכ;{Җ^W^-Þ!\:1%i3pxKʗ2 @Ln-AӬ$o[+êwy\8ҩEyɬm Ў,(j*8{vHݎo=0Qj~Jnr^e ̅R;ˉτSeOث/Ð:32[ɉhݷO3I.j-s0;P,fžQ"#x1 rFK_[KLnnNK z5IMx+~Y3azW|}spAi^~*! =0Nۛ=(b{_C ,NqHo<4?d-W09l=XmOخbjT5gK&jSh2Re qY4\IK8*&LZPUR+V .(-aP9s[Ѱ?:!i֓zq* jR7Y>dG:8MA["!N+#DIBi/?p ɩ;v:+j+ʱɩq$bMJc%v= u %&\逥xdexFFTzn :ۣ ݈V8M`)<_Lޞ&({ 8S)wlg7a69EPZ^HI$I\eJ#! 9Sk[pKu;dX0oٕQ=6iǖ"@~4AQ0EBO!vEtCz\烻y-fsda2~p͕[޺[: f|IJmm. Ku3 -aض?l}=[ /R^K(efI\3*: /G.=YkoDo|-A 4yx* (4w߼9I9]W̯Nj)Q: 9I9 AW$G("Jxvh $I o_bbh?d1,_Q/K[rt V`7N/اA>haz[^n? Gl*1ɒA;tNw3b:iV?Q_U[d:A+x*e-0O%,( R*E:wi͐=|:f<&iMؚTRdIKM.>q*LޓS|f u}(gXAr1*߄C xTC{,\.if4d,Ɗu>ӹ[=6ruIɑU W$a+4'?pR_Ȋ !mH <|] PRWD׆qA<4 Wy ѸycNmkC4&h^`j'+x*Mf:j;oI}n@:%k"|j`^DVUTbysCD&Ağ"r5At#E-M}nUWĭ=lSQVl𽙕|UTFW_Aw-^׷/а\ %ך#bsZ8n"=tƥΠdH W]l֡Nc3 骵%j$SsUEf42\݋ҙ VomscG<6G_A5V|;_ʎIwx9.} uPfbẁ}4vW=bқbwBvv1rk#|p* .KYr{ #<mN{KJC%uR9b7Zlfa]tnk`,,ѵZ:@h1HsH2{csH<~|H@Zg3ًwγg mbAq%[sFfJɨ8 bUSzLv]$bzG))0G! (J0ׄ?RH\u2 "1Jaif>f|ڸ3:k+-{Iel 6ozƚ F#6pBa_kꚄ\ p}ź[bYx@lv]ۆؐu!F ~aֳpε)7lUcI5%O5 Vad$<|(`SA؍\mn-#[A@uD mc-wv2䩉D]nj$t~joݻN$%J5R8vyG҅5NBOd~Y,cOs:Lssd*rh+aL]E\dlD .b>#Ӂ"1ЫIjD.6 IRu8L Ð`&Ȗ>ßDm)sLJD#gxk*l2o ;wpVt<]A35'BaF[ti ʂgțԙE(Շw\0MN`ۤd鉇9:7BNE0ligci!攱$Fo9`Y,b#♺(Uͩ%*#6+SbY,X=^sMy+Iڈ D=l؈7!~OZՅ! c)oq)hK:'[V x`|=D8Dv/N.޲5 &t/mر z䉶 Qqa)c~O[0U `^Ϥ+)7j+hײu6O~`u2hl`_o;BqW-TDJ|*OsY} Ap=& dLjJNx*We)n-ZJ`?O;o?cQ&45CEN ,[QL9b`(s-aL@җ;HN13P_LF@ʍnnJJg/ ]ʆV&OD&^gCCqA8= I Mmb\Hä!d i,h+ >pa8f_Peh: m.pHEi\ Mb=ʐMb s=0%_Z({%;h_"(@tGD%su2s靯D )4&ݽZE)O>D ) CgGS؁ҹ\ZU< .y.9AƊsa.nT1υX3=C0dg]l]bjD#hpqEh=zJ; I6f!<ߨ!; 37{.cї4.qtP>WE|ԎwW{tU bW|kz;MGV XVԾ?7@ܘ GOd8=lElyC6eUZ-O?mx4.{|#{aN"{L-nzl-(qd\ C5 B ?I!Q_{Spn3SnfǬ%}f(Ft -4H ks t-tÙ 돰jWZ?qK>qc#rqBs?ҵ|!H²0  UO2=cA⎕f#]Q:nnlys7z(GK&Ps%&хPa:?F慴YƉEkj6\B Ԑkn- {3сA}Do3* Fvd}Dz5JkBB55Q]6\hJi j.,ZNkLk _Zi^ Z]b~W { &&]Et>ȍ)\iOcn` <^mr%BHۘv=u pz7%o=6Vd,'0GZmHƵo㎽Pl~ 1: >FAOrЩ!(f.`Gá,QawNX Xt{c /`cL ?ˇ7G[Ϟ}˫e}4 #.#4"&9#@afMm .9w{+7p%_.TZΗb9YmwK8UNQ#_MٚUb0,`qymFLdGu{BȴuBER(K 5h6{R+5:c'Kh>N۟ $7-ƑD1U4Cb]] ~XbYaqRfĵ?vϴMxpYg<>EbN4Jh47r IBi;f(TJglʺ' Qޥ9JնQjjGqo9%C939C?ຑXUWkz[N.w$\9/9yQ/Xt2r6ZDhg%! ʴs+n@&½wUPF"7)ۻ_~jۊ+5"Z6`?V=Hg1.9 >͐r9LٙIw/Ҹ֝tw/>SYTVQCEIQ7VuzA%9i?եD8fvAoz¾ZdӵpiG{JꓧY,(iZk%:!?ꀶN+jZEN*"*8a_R3Wb<%0;YԊ_u#hde3S>6m7V%I$2$w;X%6e+TȆ6%Tڻ@0ۓjǜ RC'g qeF,׷BOֿZ|I|ӟ Ȗ';8Ai7CbZ3Ā,1%NJ@(tbELe}=g|1L8F:I*Otvct&vq6d1y `‡lـcpzYcVzY/=!g1VAȬgAgȞ }AzYt M˛d-7넴c2)u*|HkNY.g9=A,hA,j9y+˚X'9-f.׍KR ˞AaVwN01H"t'9u{\u[!= ے|gM9FfNiDiƸbrtdM>P$ÍrYIdQbz]mq!G $CwR|M}h?;0U\GҕV!70zBc)ҥhr1Wѕg7`E4 \yC絮a8Bz-" oO2ȇ *p9.ˋ7 -N?ڟꥮקqs~~v2Eӓ`9 Ng5Dw$`4~|zsUt5 %Wva4>G;g)ö<MԞ|]}=;G[U 19m?jBP<* e>O@&E鏀& }-k߅&z#M- J ,K!X :# q?^qS1; qMV00 a`8 zE@"N hR4 a A.TR(]I\.F? +Nw0DOo8$ p> c(ԱrN@;5u>&P>yLWp'$0@  0 \~+'@ rr\ 7B㞟 "£o1fat  e.&$z=D7A . _FMZ. җhnBh<ȥ@..E2BC{RHytz{DkA DN*= w0+<   ؽpmw¬p  *TF'X5".J<@78EBUXf<Iy9Ȁp|ZaFD..F*Jej56#2cAϜ~i8Y i"<;g[&!F]0!`7  &>a6P u0`G^mمB~]'`X,ۜ8;|4i"sXv3Y_I3|#@D )1=ʳw)LZ050ID=ZxZZK:kvqĒVPm%ZAmW* sg+ z.qLIW\R]22бEAcLCUkFh0XfEp-oT+m"j$ɫY O˭QOoy1 !tR.I)"{3'l"GH'+`WQ  4%vS؟Ǻ xcW4/dΜ5]\'ø24ߨjb/$)c>D1eWu&Yx a a{7kT2Iٮ&k> ]7\BnQ>`J?% nB3sשNKeג+'34U*fXpPK7XpbmlKKy--mb>^@! yL7mݺWrF;4][ZڙřX@?s*KВTV[ZzbcU=x<gy<;<;ϟߗշkެJWۭMm=H® so\̳_&0bʠnx>8x^FuiUBM<+*eGȏ𼏒q" CI(7ﭪ]\{Asб}A^XUDkdO0πs.yvAF&qxC\?PPH^tЯǑܱnUZ7.d0(j 6gW̫m"ٷF Vq0j!3X 3aލ",nNV6kMYE' e$?~F4i 6PgY4ƝFc FSH..| )GK2h@j$ߤ]LrvOc 6'n{XԺ=pF[A +&vT2"UfI`R@1db=#/$'L9bK5ryL|"4DٞHA=%N(Ғ!5bj-֒-ヱmEM P&Їry[.McRU#&aqM]DV|@VU&X+o sH`@:{*QPjOT4f^oAX *8B3j8Z"bT u X fA#$婝<u0E+>10잎Rqieec2F#͂W_"l "S[N ŁyQ<$xT#Ά[]F=M0w/b~rzm4y MC9 .]a2VSm1 2ݣ/ .1 R!8]D6 Xi.&KS!ZG- TB`iZs|Q18QEػJu!S~S!A`6oy +G摛6F.uv8 "~ˠn4ڐu'r| !GEaЖ"\A!mLn[X**ONSm M퓭v) 'ywPhb̺/f_(NDp9(ebQP/f&'(#&x-v 0lT*C9di \(!VDX[) ұ} |:Ɯo$z8goɆ6f6mt;a̽ 6QH^㙙@@)/u$񙈀;l lN8vX_>Ief*j(d\L[ \j"2򘱞 #y4^p<8S@OZzp}Q-ҍs8jֺnlgڥEI1hmc` CCƒ$A?ژ *J"㣁旲Z+IB/ѹpuҖS'FaɈ֚ toQN1Lz00K̚،#yAHT 8hq 20 ɗM<#3D|j=G: q'O=s${. >0!C[$PZ^yb+D1]?vN=? 4OQlܞp|%jj##AD=x'~Y0{\=a(fd{۱IWƂ# 95~xpD{ "tP >_^E^(Ctq 9{5x54:&C5%eP󯙰 &#p5/Pc1Rp%41vq#tE^1VrN #vLA=f[ 7%̖?Wp1@P)KJ5@?^R< JQc!"9m%͈japv raNUfe>FZ{,a0d"91jJE+kjzpZ5@ NbÌD75hA%W.j:(& 23 ]sA(t^TGVq4~9G:H~8`Ҍ$AP䆹Gx'`ST7%C`S3Ey69d">nyY۔…j`+Pl  (HF@öQk'lflVSe(M]RyGP̧4wnޢ) AG`}_V%PؿH,Ů m3ru&Qg*xL#gáWHvCWEsg袁1 DŽ ZNK_x $4Im;3l)(3D~|=iK,tAH %:dCx)ZCIk^Z:YJ5OIFηm)A R8!Ke32nlMb4 +AINw#mHk2oGݏηⓏ؊Ǽ;v _ն,3+Dˏ()|? r3BEi[nJX HBW1 :.k-TV~$f,/b{"cR@f}-9z4GP-;K2Wd*rLo2\gG0ųₛB8PmOXboT P>"2B pF,kKN2=ȹ*)d1xI6nfrSٱ0ն<_%nwrV0\lR-Iz(F"2G/#U菤@k '(Ku"懪uOҚHVƝAޗRWq[-f-}V5Z3[զ ˩nvQ澭Wd'[1ULW誠kt2HEanƤ'̢7l$QFqސp͐,M 슖i?3Z!Gtd@;Uvq>=jyynriּ_ǯozujoU}]>.ttn'zQnz2]ӫͺy]U^l:n競,ƛvޯy65|lN^A9[լSmmv9#657ųzQsXV -emod%V&EV5wպ~e3^OkyҮ7vRu[[7c,Mdq'~n0[Z&ueZW+|r4ˆfof}5މ"ײk<%<g4t7+FzU׿yQ񤞨HE|+A43W0xQ5ǔdYD64~\lq3HNX>KX, ޶FܷoRqg__I].pN }ixuD3)Ie%=׷ZnO"9Xbg/R7XtWO5d0]ݾb 0n̲5nZ,b~U=3P"..i iy=o*(mx0wo[ M\HUYv{H i὘sl?yB3ݤ?JFbh/fWz_ʤ;G>⠄Rۀ}{ iz5MdRҨK~z- LR?4׋"DŖ{|X Dj3U`mQ*0_*Wj6fwsH42S;窹k-X_l+~5Ўn_cJ +f/{dE]xBZ^XYiQ-1[tJhώR/ f}[Ўu{z%j#uW4^mǔ~*z7ko$+xpNQ:kIZ}UЯbcr1 Ʒr 8ϥbɣUTj"ߓVݤ+"DLl|4vE)Q™LCAD[aJfxdR.͊e)2Ǘ;E7v3pџ{ayXW݌yxZ!u/7e0V\x8R># 43B-⑻f>bUz^= R}-2$: Q,P*1buWdxD1q f.&1F/zB'±x[r&S K骅|K@ >5uzZwH17/h~" fm,.1јC-VcR(W)Q4V{Hir9.LFR H0>MzJV`%vt 髪]ĈU%ZE4ݲ E~/l5x} a@`F/vyq|&>\/<#:8(&X)Аņ\L C+>MktZ&с?gSkVpvpNE~ƀ]ibdUq(4F O?"3uJ ~pVTHR1OtfRIX[ݻrB ax+a!*ee/]n|tyhgNS#٩)Ҡ"*h5}]:MK$:!}o@5eRc\ KU G!ϗą`)W2 (JOA? sr`Dȏ8ѽJT' 4@x8;iz86Wd3t_0 B ~[E7s+{u#`1@BxAP" ,:BO JWD_E?e[11o(qēGf1}aY2Ez: &Pldb o"],`HʜH/xwE#x3k "Ĝ zȫE: ƚc^[хj7WW/thK[Ǻ^.TY1^4/Lm;QgS>oMopb,%K=$`E~<.W%jItspbPY 7U(~X`A{6f'P$qhۡb/Նk\H8(a5'f<,^F>†S䳘bKKpI"SU-bu VZM?/xkqVԛ-|pj^C8 'p4[fǴR%f3{!2r5 6¡M4abp2is$m,5^ p a1Jz܀f8) V^l ժ5W37ɤ0Ox+2FnaѪn @'\E'LbdeUYX;)h>%G`OuV_Pjj&_BEl8Pu&r!qސbfPͦs(tt*+"H_xQAenM(f\Nb!5,eLf(SN3%$xM5.b5@2D/лO̽5]eZ$OTx?4+v-Ϻ$ܒ@̶(o5䈓q!DžF]/[q>-"iA<q eȥvZa9gn<nm@ *zB)ƌ'Zr rzq`gaYS82JeJ})FQ@r:v8 5E_SUGؗ_re]tMJq &] (ʪM_CځɌS3@ В`2:`w""++*NZ )Wt'*BL ,DA#E7U\Td&ݝ0V98Dչ^x I .0@v-nL-7I<0{fDsb09ZU]AX:"_N%lYB[ lZxR1]USJQן!lXQ!b;a7;2Z=KC>P~c9 F[* Ƴv*}~V.9ظS@L庆RPR\yvJaйa9咰8qa\ F;H5'&桪Ȋc$N[t7+gB3?"T~)YQP|k 5(YZ°+aQp7H`, OꞄ?6eqlQXx ' Vz>Cj#<50|Ů^0TUnl|`< ȥB)^~u'jgecZ (./F Hѷ̕?ŞM NDY'8Rnr4le JM^#oӞi 8#CBDjsЮ dsOIP+MT'`siT u>Yk3DZ 2s  J7~]jmq-vD?>+S=К?{Q]SN1 cTJ;YadE\f'(855T~+Œe H=ij+3+t(@_`OE3g˾G`X+L6"f.yܬ Ǹu=y B(@iߒ&M G ԗţ@gL+u:̼[S3}AJAm81%\"m;(_ e!/%{}ƃL6S)bl27&Z!yizR'Ezlo9]Lh6^~M֗b$'[3傘Ye̮R?;KlUPo:aqt [GR8 zE0<8_8g@EWS=e(d6S׿+o U}Ӏ(etCOF>jԟ3cE+v);-X0ey^577Rhf>dԖ=hA'#iٕ[)C`|`Wu*i~_ߺYH'5q4 2rtWּ?=3 v1jr|\Vdz>ᗻҦEH j 1;p#e4l`yקO<` TǦ RQɅ]O)d4CVJ 3uX|ѐu͍~`ӓg_cctMG=S CQ9T#\KL)jȔ'(1U3t'jG!7,"dj]@8ByreY&)>:Ի qN7a?u w4az((6*i$ ;%%9(vU4TJiJE@µrHAz<u)3|(:ǡaG)Q?Ef&!AvYE%LJVzLBSaAQJ]YC5җȏH4?_%E>Jf;t>xP4-"4d UyȽ*@_8bc0mcrkzYfy(pR&dy- +J J2(%&ibXS˒)+ʊڿ-y+՜Ǘþ-n&AuHHJ<Y.jsp_I(ʸj\VkK 1 oFF.XW@/X(Mx`]S6j0 Eo&sigG}}jkm_ƣڿt!a:2})%2Vv)K" 3N R3Cnu&7"Gr+0yl y}X@@&ϙ:|F#| v{ՖlWxC]!UAFjE?p iJ6PcsGj yx7xA?0ojۡWXF-og# v]ٔq.H$,4wPx"OPЃbi\l QwHO( y@$ZNVbwP }x"r pڳ_m1jZ?R 0Y΋xrE:5,KHTstgT.rΣ\N8CD4ȔhƔ:믰)Qav (ul",ꂁ"5 \CQZ oj ew &t0") >e>l68idCߥ=rA%)oվtcLE[ʎ1/`̓Qn+\DިRE]AcغE<Y+ʕo9$%Z2$OU!zHԪ3$">N9X+ώt êuioq*R [W rd(D!،mNJ(CBj:j+GْE5,6^2 ~gdf3EPYX%zI ynV[҄Y=qxv⯡[7Udrm?m ɺˆ=n8nie.ٌܞ`K:'U0+l}uzohHq%gX\өd3IxYS9T0.j㍏TlkG'Y] qk7CE-J??}ND3-8zn}5+אʆiYIݎ^vlnUBވͦl~))N<CbÒ/@ѝl<10Dp| GήyT YǪM3=2_r2r6@rN$^(Y+]uxɾXd~+<+T rƾxb<0}?Ǡ\Q_衘5 ss@dSA%4LUE(iF3ؽ2 P;)cdxK폝K!qD k3 \-=,)c^UO3dJ{bgW0oՁPr qc`24ja7*z1(ռ:$|5`v1 #yC%ic=h'Ъ'!8٧ر]ePn*$ ,m-;RNZP˧W`U`[TOdZKy> ơi~6ipsiS?V\ȋg$WfpX ,bh020LYho;}K,n[s q:; 4"0qoNAHQM,ZbP+fVmrj!Si5OhO >IJw9GC͏ِl_yCGT#堬Iaa%y'_9bQo ?c%6!I,9ņD[nl할y3P-Vp=f2-ڱuO=M8 ^"*(SeckE`ڪha)Vdn!kIS-R( :;4P)An- FH!3٢~󝮺%ɌBSsl:*' \yyE{n6& 聦뗁xhgP}@`Ta0\iՁq$5K'dވr;MlD1l/Kl==-Qu7)U5 {h'<=zP>ҺPs1oEAxYyzl y{ Åa7l/$޼DٴpƗW8hE2+ee_\C'KgH xv3PTI'|S=G*k&7`n~.7z+Ct k`KTLkA7D0!쀍7YG.=+ꤝE%ei`ovle*lG. .S mQ:4o4ڦmP낹Rn6| s铀6W μ!YG hxU_@bIBhI)#Оmh @MQoDR}z-xDy1f[pg|n9 g(SLD~SVbWf_ކÎ ubCXEhB h,F;m*l5{nu>CYc ;휙>BC.l9l.]e5TORmHIIT\b蘸}'&cC9K f~ 뙢foiJXի{w5O8XgKb;Gۮ~c%R}n-1_ kl&>.eM/\S>}Y@@$\%&vHz!JJ# QvoqX pޕ.;E Pu:/XjܾM`j>戺Cj<ŏh@l'LJ&E]v ΧiRc fP:.!4%^;FTAՊP OދNrKSzKμr5+ܺr_l낒?K C7wڑktw%,T (.IDXd 7)֖"n1ѥasPhc&.1QID IAMrxƶn[uLCWdŃ`,oRLb4X}9UyWZOQH"3K\K$A|C6XHQA QqNadsGx~|o y۩.rcO\ {!,mGQj$* lYu{N⮒ ]8z\}\dvĖg|w{j :|qpp]Kn. kq p>b$.r$jz;0QrbE,Pߎz{n.T3 %BayjzܫJ\ "-3;|= da7;w)g 4kw .p +.-<a14w6;ν0iЏw2r5ݩYXݮ\<ұedi٥G%Q𭀂ດ8Ξr/sK_1H1UzT#l-}q6x&rPBEqخ.WmY]3؝ꖚq/na^qR Tke:cY/Wt/bc٦DEgOov+Dclx׷F:eGmX: եGFOFpC.'T5?"A}Wٴ4~ߴNZ^)_>UHFQܒr.ZGc}@R?(( S+])L[rs $@ؾC 6= <|5U |̋d3Wn};hA̖!Ƃi4 гC LH{MtVu|i!Ytu}F.|L_ВeauXy\JH%g<8 a.\#px,Ttr/Z|8FpB Ca!ͯzhnYr+5,, ,|4ìŨr5\i9EHw#L7򁏪y(ӫl]E5ٍ%]Nh$d8Kd,Ov3 /} "{$yUgeL7|Xfbn7+ȆFս tIWլ/vĎr@왵|J#]nTMěăBU-bci( \qﵠQVvh{}+JP,Z-J&:+aSFX&x-pj!/ )mbnǪV]X%wOd&/bbN{ό[Zا%<@$Gê;(c*'}4XV]]ZQvիR𓳑Q%&T>uB{psCbUT7߮S`{"6ߙ kUAڷ`E0a@}3ٔVV HQ1+XwXHz;4UYQ=A!`@=m KbRQxP}ˉ}((e }(P="7!|VjjɄ/M) 6Ӣ*8] I2J93lO vϽ Rn(-O?ڱ}mjk.cxě8$.<:E]u0@ Ev?[${ц\'TPGH5ym\i&AˮV=R=:?hΈqFiKM2xȄ#'u5e%jZ" :< ?NZBb\1x-zh)XJ :Do(!:A07=/c!  ` k|Q;e~;[Z.nB$\4NtHFCShweQc,$b\B5^By* /J7EHnRIЄVJE'8Ъ9g2sRQGzdWۘH|2 ;;w1ʎ,GM?@t> )lDJ%+R3.ѣʠ&Kj3[_s4rїuJECF@Ār{BפGJ,dK4/=TrwKq ܂^[e4h#JGs.p+[񼊒Ej  C =\dYiUu;qm{۱ܙuu's`@m;2ce/\tvO:)T,b<>Lf4s~ JzvSئ_, Km$om 8Z:u}q߂R XrHnDe4*r=OAH3\1o3D*+ XB6<1bphA6Z" ٻx*[96QƥCm T]JE褖q k<d-{ cph-Vm % [zS# ;>{ 1{`PYWN~ ?z+Ƿ kr|i>BIGvՈ2g\ n^tB ɪ«pOaN)v;ct#[;2w^xRr\*UV>L=-)ՠ[EsQIa.w{ ‹KKղd~8Pl˖R㢽.>9N.?N˟ӟGS}_'%utyy~ã7LJW_g?ԧra}q9 G'OO?_V?=_^_iT. {̗WߏNׇ|{xMgG/N? #^ʬ.O+q -x~39:>_YwG'Laލǣ!р]f|u]~trpRʡBLZn]cH0뷇.~9דLs}0Aq}rx/G3a$Ԉ\5:. =E~|89'JKm-NTA)FWWi;Hqu_?^Xx6WћS1 zdEtËf*d{8;<8{8V AR\r>`LstRP/:|B)Sߎ.GP`A>cozBoXIHC˟V`T@?Ojz 5P"JIx_I;:9ŦYQ9_ c*8D1:| ݑGRB/&Jb/U8N)D<o'ŵNL O|f|O[ gfy"m[ 2ާJ'7N}:tG%xF֖1HXQuܜ./NA5qL-I=:U` t 4LˊbfD~(_3_gvA/-g~`62t;ץ\B : X%LQP0=*e',Ii (Y i2{UxD_J .jNwةm/6]ORa!/_@&DLP I2QaVM՚#*\T?W*l?2azcĄ#wVk-MwoATqweBkbw]9]_fJ%K=ZQr46Ͼ{܉i3gȤKtgHSg3>rIY\6MQfFeCMnS_M'񳳾( #3GNC%7fI2M }&dj"9ćć)Q2*u~ၴ0< b6}k^!MFNnne@[l/؟HggJ.A dbv[EϠ"/|sׅJbdZpF[a1묯K}ԅy"I6YI *]曇W7+ɌdߐH{:tC] dDP!BrFG~`Fqߐ)Q/1fW{GrA:=S)D ?ԊT'RX8XՖ^}"6]1џm0mY1MK toa&S溢ߐP?|Rp1C{C4l<鋠R+ ? ]~^]b*B+> ,?;؄ yϵw6}|f. 5OB!tq`Ip0aWߣh]Hv v3-QBvpVAm^R~9|"<7 {}(Q!*1^l$8>2͏wŸw GzO Yq1_iXw}UdbvYќeaў绳x4M S?x+\lԞ.1-:QN6G<f-FRB12C,e.2\1ބ*Tn&Ov ^p7_㤾^ݮf {pacpl-code/.git/objects/c4/0000775000175100017510000000000014010524045014712 5ustar viriiviriipacpl-code/.git/objects/c4/b0ddcce372dde3402688dcd7dcfd1f899b28c50000444000175100017510000001655114010524131022441 0ustar viriiviriix\w9_ &8yg`Wg, /ߧJ%}R*JURi|U?4,M"5p_CuqeuNG7۪r[m:k*tiEYTWI-2\x5 xϐu9N~Gڻ`k-+7pTmDJP%.4Vx1!$[{*wC$pכ$=D/܃AdU>GR y6](5O)W©!NwmrkjSk6 yBj;pA M I-VQ4=bcO.A} ,q72uRSVAAXoC~Љ?Ub/~՟N+v̢P-yly8k؈}/L{Oh-QI? Ѵ?Ns9z5(d|3<8ʄ{0p:Z|nT?(v U.;{`J~J RɼlJv[.DG&ihU!cfM!HM.]S5eVD 7 _֨D`2lpჯ"oG/>Ϊ5%X*ٖ!YMhbHtNmh1$E[|7{kw*Un@.15UbX0|T(-.n`к0z* ~*R$p>a07|1<>IrE &`@iu n:00^td Gm0@Cؐ/o;{rXۣ^ ϱm g7e:%r̓mULn˧[]N]kun^=m0MDDQXO@J,,xf\Pxv5[Ii1gQk-4.۔dJ,I4ٓ0'L2R_:ifO`wr{{W+)xG5,<=m6`C쩹cRt UKTi~juPkUDq{^-7zǵziJ*1A_ˀt]:+#ћ}ymB2Dd}4y^C zz]T< #@'ɻIrTP[ZY k7!;ԿFZ흛3 '̞+2bQy? h+~pHza+Zp=p*vFjZiiAp$Lpg;l5NT:1A꫎jVUyĚ?Rqx$37&W_x!v՜$rX=s90R]*ti)BqG(۫X/H #UM .a#O7g yqEQf"+yS[`S5dX֏l23l5ƟVx (/pԊ-O]2Ĥd۱ō7o𱇰#$UtO` 5Qh7_%knQý/wI 2ryy0 } x. = A Zm?kv( F$Rֿ֭Ft <8h]B˫\}"XSFk 7*oNzE@xX {@)4Q8ꯦK y@d/hKFZy|:5niH yXx2\;^ԎP;>mUO%9B~i"A@T5ppwI~%0g9 ")L8 Q8_N"l]lAE$؊%9LCV;t -ЛR k,*Ӏ(p$Xt -,ZD_BB+b[F$)9C8 sb%E]yyɶpъ&LLV :zF:"@ ~ K(Jkm`=%AlGx:֣~PG`5Ó0U׬Ij<*"J^q;my?vG5}4{ٚ$Ll^~vRkX4Q< 9*aN@\]qjB=7WCCeBn-VQYOOxe19؂_bfa~2@)  ";GWMa c&D"!3;)b q52[R_)ˡf{ 8 H_c4_$7 m MY'GZ-tM)zB\*\>w{z.0]Lya(S<9;>vpPz<+Npy)69)8l qPS~׭ heP`2j Ò:^<5|J3.񮍇 ;FR,H:F>r8Ϭ tBN#;#2NEޗ˝?xq_w[q8Bp/]RUr(I I G:kPl HLARXb &ߡƼ>p#4y![xcpAYcra)ȆCxKȆl ypH4Yˆa#]*s^unwŧkz987Sfq29YeI==ʬ7@d|4o0n[T,mkt}s -Ib] Ly2^ iplB_v~/"dR9!hpLٵE~u(~9x8\4"eaxrZ|z*c3PZ&DS{2&BP Xϑ]>I9_ xn>]ȊO ?F.~Sd O@h:Q7fts`_Ss~KuX V}鱫ot.ӑrrv;N$zJ/n:(Oڝ:k>oWS zN߄gw:{-͢מ rqJʦGr!#} 6Dl{2e$q\:ST?4^Y*{;%祄~ofvE> |ՀWz7G&>?gW R9|pBк8hEb%7W  aW}T#0$) " "P e>JcYiJ<)Q~Q-ގ\[M2uesӼŒaҍd>k#Qネ5o" mX7O"'39SL\ƀ`08Py^B9 UD@U#̙.t?9`R`ގ-80#Q1J>%XY1xDÁI]=aט5rU'x1i2PjͿ bY!? S4 ks?.|Ϩ79,Ny9&Ȓ>L<uVtMYACmx' C-߅7pCjsdB"<(;QFb=1! /HX L"f09;Me "^ K&mRotf\CBգ nBͼ+D8؃߅$MiTc8v=w#!p_ 78t5E rFF TŎR %Ec.ƃkbR։}MsK:x\iWZ.nG> g ۱a0Fj0Ă _ X 29"Crnam'is>c)<--7VpOfGݕ]娘 yKol3(D_ )aױIvqlv}˧[.=\5Ȗ b$֖` sE gGq4aߍΧeH/ )"ز,4vVgqv jɓvJ6lcmg{xOp)> ) JLV GM>FcMw^vf nb\mZ& ]Α}!#*]NsFyO{Pp${$SQEFa1IuI񆦱Ȫ)yD #l5,UAfÚްb*&z#wV6LMyJ aOs&K0 FGsk](X8"(-JB][yR6w |f0$vMla8 A-!$'_|NL6YO:LC64]0c,|eCOail &0Ww;I)tv)Pb1\mYDh)[wz8-3Ҵ 04jZ3 SC\J/*P=X]NTMACK*Z+Z8⎍ƑG*wQGa db,egq TG> ,$Yq ^džsry)iV趕29e@PyJI BCZT NQnY?S0.u{ \x8R%Qlq EaƲbfל-Ƒ+3Z>I/bZX&DV="v괮cFe*SW.B3uR`g('}TTw,$ǂj)JdEgIa,+[3L`LH>\ׅ[UhH"Z|D̒𘩴HmhZz5|Zڧe'ժ7 Jх2 <^cv%0c?^SE̼G>=@SDo2^ .y0Zk(CQRuWqO2e'S9w& B6t|- G?n鑴-=K@l|g UAyz^ki}2:g)}esٙYHb%z,:\&L[latJ2AaZ mUGkY…a'##MU/?Etc#6wQaDtY_H%1 ^}֟=r~VņdrMmNe{ctn|Qa2=-A)lp6hȝ9V5VZÑ&2C߮O[/`X΃·'*(pKko>u<4jhR!dƐbxa2شRf !SwY;DJR @Ҩ2qq baǃs"ifc\s%HĨHRY Բg솕I1oT`@mꆸf$O}So?7w_ 4"\ 4)i}3L/|=z$/~sJ~P3!b$%hV_7ԧzpacpl-code/.git/objects/11/0000775000175100017510000000000014010524045014625 5ustar viriiviriipacpl-code/.git/objects/11/a326c930c0dc253fc955d333348a19c3a262710000444000175100017510000000211314010524131021507 0ustar viriiviriixU]oFk+5 Hr[UMmqrQ A@VUֻw]ܷ˃m3gΜ=^ _/C:$dםvmeVUl,+ [,2za. TPթx:?rLˇۧa0m̫^6xw)8] Jd0U~@#$kWmF(a\6 (0/E% TidK8qaa0rR췙kBayfhpL %&k² ;}@Zf_B? hҾkwܖ + "@g,DQ 6A,%LAh) )<-R`6UY>,C9e0#* -7V{` 몍o f39`4퍻'|#}/{QcDV)J=`4 ZT>넆6wE`6?2{k Mj&Ua*.MB㉹ j$v c1 %stMSnIL!ň|Y3a@n1G$H,}T1S0; Rq9cu B(Io{^9Gf`"|`d~=(Iy/c.1$ # oi_z3MS&Wrvh6}GذRKE<_P*cF+mH?Es~NŻ ! Ȃk CYC:Ps>R3W(m6KӋwLD *^$SNV D5Qf0wfAt'jv]gUȚ$ Zj $BHH^>йsCbd71K W4B6!# ƫ?_gBK"\&i8kHռq9ΕD ;W/U><:L k:'tڻAnG$'Z Ѝ~ENxVB=Ypacpl-code/.git/objects/db/0000775000175100017510000000000014010524045014771 5ustar viriiviriipacpl-code/.git/objects/db/a7968f3c76e96cc8c1c91fc52610635b64d1520000444000175100017510000000532414010524131021777 0ustar viriiviriixXێܸͳv},z' c$.%{ؒH-),Űo3fSE]Z=3A6b.T1m,}r?=_N.IfrY7񕫳dD[2-Ɨj̊JeY-OOɠmvᾐh%N:(/D]QƵ9;;)|)'K*(l+Ϥ7MQDNzPH/ *_?:t}lgQjoa~!Jg=).!?] |%]-R{>m"f,-߿ǜ *ҺξaK.[DGzۢ6:U+by"LѾO)CH}m^xƶmlJ ΢XkmʺƺBV8Er۴]=hieTyז?%b%<'Q￴Vi+2P׉F+R(ped:f:J\uښN&Ψ].9a^"j_I޿[F$6U䃦L' s>QQ$cTl-CnGl*S{cŖyF ~:dFS#)Bn 1BXGkY_).v33y:u[`+aEMt:ԿmUE wKCrj_W;9BH+p#JpC vXTEv)2!v]BTrާ6pWK2B8]ҝNO摲Up:J[\u- IHva P&;AUQ[ʎ,Ք?Ps9@@'z'JDXzrR)!@܏CYF!#MYNit OT56jϿQÐQT)UUI h|Z3y}%*l{1PCYNIyCK,Je Sv6Yo@eoD^ӫܚmx u U g@cQ]gX3ʜJ $ƗU8)ynMJr]$XOUFϴF?~.bxc7r8<6XWo`?A!A.S|2rȽjBj s Ց3B߲$s)*@|`02xuJ>&I0eF8XSc(P#$Va,]UL(Q~ k)zG<9.2FGIf4K.eIT ~޺\`],RʰMS;DACݓ>(>:_7(K x? w Je"o) a'oZp*ontX(e ħRJ_k?ۼРںEՁK@'`cz88yT2/~cquë~tfׇf!ݰ$^Ilri[EdΟ.WaZJvD 4|n?gA_CЗJ gNW/NY(|f rm|pe2R?B溣NFEщV@O/vc,`-0.aYzGבJAO] JT'uBםTMh ̓@1-#=v==Wb/|Sňa1'zQ(wIOW֪v&~ :}tU 4\$MEC!W`Y3IեA1<9w"ʔbblݢs.y[p숣bC㤊v0ۙAr ?itR <QL e> @PIr]뫌/xS#)V81rS64& );R'¼N0%0w^B@hmP  Fb{"R08*@*%~t&ѣgQ]#9DErԵ>;prpb8ˑcDuCg><5`+{̠)w@\XbHGO3Ȗ y B3LT|H]ʬz2-p;BSIQn=ȢXj$atjJxIzYzM¥&+_+yVI`]$eǻɊN)f\j7ne7BA$R1#J`/6mYD#P}5FYu |LlO-kkPh0YT@XӡŎ*]F }4%2vQ zVʠUq$'Y~9 dU1ӥ(1ZJFG::l?1b6y0KrkU#skOD S+pIw4$r`  83^G{m2#L X=( /V%n/4LU0CNHA<hn.Weʮ<7xA^ D2_*(pacpl-code/.git/objects/6e/0000775000175100017510000000000014010524124014714 5ustar viriiviriipacpl-code/.git/objects/6e/37571302d5fcd9c47d421c9cc4a4a6d34605c20000444000175100017510000000041314010524131021747 0ustar viriiviriix]K08^l5Va[DAM",I72Z17}qu3bVw#-!_ f/}]|ÁGH#$mt ;>mpacpl-code/.git/objects/6b/0000775000175100017510000000000014010524045014713 5ustar viriiviriipacpl-code/.git/objects/6b/648691cb5453e7a9a6d61644e1f204b313ffc60000444000175100017510000000364714010524131021715 0ustar viriiviriixXoF_͝d]JlXU6 f9s}g1$63 -Ӈyz$MQR BlpQFKQ'=0bOUzIgbM 1 V ct~z  b<(E=M~߫ Bѣ~_4fI,$ $IZdr{q8$ 'kٴ&pbfʆnml>A䅹O{!px.@$7oJM}ij?ij¦)?s.~ԟks[p7%$uUyhŅe sͲ%Eqtzx+FD7y:N䩴Pl$O`*pg8Xצkc(ATFK_ٗ.Lu +v-Ub+7\4Q|݇K[eP6 XМ}p+_PޚxwhIqL|D"$9 O+_nUkj=wu|))P G6ŶJ_*n EȲ6vjP͸]QȀ*vca0qvRJ]HԖ62#P- Ym1!.c\[j]榊;[}_*n:%lfUu/S[@<0WOUCrUt y-UE5l6?UIXͶ.t jFwbdmb+U*]iҧSՄ>s}j1aںҶ%\.HlV پ/ ԺϣN5KL 4+}{Ubswװ#W٢rJWfSoA❱Ր(0Ě/}坮>Y(% xHFl4Rhz=4F:ڣi$4SqW$)Z1@G^drHƿƇ+Ŀq1YY7.  s3@dMo#GP`DҚ],x4} a"Ad%Af;1]3'χme9oa\KO3] U!aa]ɜ&](f9^ʊZ9f3Bnt3/J  :я$499_爖n>"BcLUi IřjQ[!8 7;RRc7p&sIg@t`] ?Id]j˹@}nEdUgj<Ѿ0?&sHNEJH2mK;],/r0 Խk xCW@`1:z# i]AbT,IeW!B|ЯbD**)t%fWv.U`=ɸ/Yv6[j=mZd ,?JX[Ө^Γ҄F[Ga$C8R>0)H"¬2|ww!wzǎ"݇(zV'U]^`ߏV(;Ʃ*֓ڤD]e~>9`1> kE#²SU_zʏk3&7{-*/XKO(&8䑑G'_t$d0Cz;8./r"[v`߽[@w8(/WGw1a}a vwdge?؇tlK !CF=KO?*~*۪y1.Y_h?y,]l{pjzmhyRk2guT<AOXWgu^zDpSZ1bN"@b,/ay-\~䥹Ǯly>CLgՆ޽ x/뀕%/3lpacpl-code/.git/objects/f9/0000775000175100017510000000000014010524045014722 5ustar viriiviriipacpl-code/.git/objects/f9/7ab5b0d9a23d64bc78e132fbed4956caa14c4c0000444000175100017510000001124314010524131022333 0ustar viriiviriixZksWlĦ+֙В;6%URv<X,( (KLE`w=bٙn^7ԷѮ⟿y1upFLg+q!|C7]e.ʖU Xfaӳ Bm B# qEt !\*U% GIv];?;(|_dr%Uxw|= :`EPEc _\9zX*Y ݇ eos=T\ d0""?FZó 97'<]y@S}239xMQ8Jęţ!d?cu0R8]0uuS/݂gów[[T~)>{yO6ibqQ@f qaaXI`>M ]rhsag'ڡYh֧ ?Q Q X}Se%lu/u.O "1N8:ྈ#0ZL@K UG$8`0ZJYRfe>HEBsF1+q^ͿWC?dK=*B ޮy]'jQKxjnV ;nm@{8)qH91Xw@*zdWUPpOzЃ>v@^3`mfLB 8[-Nwl6㹘T|GbkoO%@TyHTV7S^Kgi3[@(+85ÅQ5Î1SIʟnaQ&(WLvl)MJa&wKWJ jUKUq@P`T _~xAyLtUq_6=8s\|WzyeUiDBA̴Emz1Ai1A9b@ ޣTgHH@ "V؅/- QAR.U(1omXY쑲 ;[ :T4=<Ȩ'aн+>-;ȷhan,EU̤X!Yb%<J[t'9 S|B]*%TYI13G ^ȇDY|Xg ?(j!=Ry.?Y썶i`g=FoN..'މJ=2][ANWJůx2/qlt٭~D|n.MAѨMOKfpV`ljW`EԡcQtVȬ|G}]g8! c3$[\؅|>21##ޅ+U9S)1ѕ_Ff 53_ms!8jt@E/ܧh;YPߐ+rۣc`NQ*[VatHU7{,1ysijCIܕrH/*2>\Q<4p6 AF4Cv )c ƒjѻ@IK}X&c$ģ(S|ae紷>CS9}gI]'x^\}œ>IUm$B,Ҡ.KFM~0yD)\Hr~h[6R;ߨGYHg~k]d'}nzpW~09;d[RG]F? f5*`4`Uxi/`~cз*mڻbGͱ`/g4>zoH{t鶽wFE;g[ݔ8aVTX 1.$92ـ4h$2@ J-\4|km%mH]lr Z([ ߜ]9=|e7^M5F (Aua>P[_ݦheI#%d`x#ld+$ he֚hV ԼqANKúUs X+@^ Jh%VuK`[Js60)7Um7vwZ=< M!6kK=3M)& 3 Y5۱Cvr&5K|{5+7;V ll\on/@>5! VqrMFC =y p?]8@k;LݍR9!oP zջvR;CZ={kY(SFk2:l [T%ɍ!<ݚ*(HfI:Du-߃v7 ^(!sD6T2}Iy.;w 9ӡX9t_ R_wOqW@ ZmZpx+0d#&(of,WW4F)bZ6%$9YRe dpwMK@zߚ:Yv: &Q(\[^Cѡ[F'wvZ_P ]gD 4:0]n|yȀ:eK>%ZͷH^'.dȸ;DK} ݖ[Rbs!7/Bu8\ˌp[>1;:x|ΏTKzk8(KѽX\Ab3Q+qw>NO.D2#masiP˽Gyx. w/֬lL9/w?;w=|5kWʬnH$c^>@hs5~/P#d;@^>Z &G{Sãh򃪅E@'e _}D[ YgW*D 49N{/O\jxo 5\^zA~ĠeˇX< k"6ED_bbk|ok3 çsy<## iQ[ (-!%A3ZCrUz#]/Ą~nOFpqHe<+FQ/V}| j]yx>`=")uӁqXY'F]]jqu'1zDŽ0V/5n*3:E.V*; P 2 "n-2mzwppNC½ד_<٢ځ5 zPP#~sw+]e(pacpl-code/.git/objects/f1/0000775000175100017510000000000014010534661014717 5ustar viriiviriipacpl-code/.git/objects/f1/0c1c44833eed0d06cf3c3221cc0c39cb43954d0000444000175100017510000000025714010534661022104 0ustar viriiviriixAj0@Ѭu ] A#52d+-=FQBgÃt]KS"6%r ft]ٹv1M=CtL(Ez" ?ۢ,^v{ח_}+%e!1@zQ&ʮҴ~l[.r+?mM(pacpl-code/.git/objects/pack/0000775000175100017510000000000014010532667015333 5ustar viriiviriipacpl-code/.git/objects/pack/pack-a6c4724c58fb756dd858da9ef5a72e8a21b563f3.idx0000444000175100017510000001610014010532667024512 0ustar viriiviriitOc  !!"##$%''()))++--..0134566779999<=>??@CCEEFFGHIJJKMNOPPPQTVWWWXXXYZ[[]]^^``aaabceeeeehiiijklmmnoprtwxxxxxxxxzz{{}~~~uЗfz^,O.mq"ږ?>Zy<(R `ҏ8Nv&MO28nT ezDI]s9nfPUҎE?vɖT &hSV)+qE\Yп͚5`AY1jo\%V^t{⾕9 MHo_|@f um/2 YsKS t/Msijxk_u ޏ#}SCfA_Q;M&0%?U34âbqa8s%KsfbKwJwx=KyRZ@Xi~鎗B.p #5VDSލ_Ctd;f*"q[9֢g<P  R}wcllk"Tbxo֭_Cˤ5"-{J ѫ;]CL("OtJ3#i19&#iAݠSȺZtj%kw! wnȣX`< [-('On!x 0 Aɟ(!V0ĥ^K 9K2/$m/1 -~hgqt"2Cdtu1V])42C&j"~o L6LMZ3ύ$\Ȧ;6Vw0"tՁNg7~ulE_+8oO3s 5E{HP g8|htXHYń9K$HF:%+':Ðm; Ns;2p=π@ ] h=zU?VdAC͢rU$/KV)mLiDk"ҬLlS$ёjE7ͼuUiv?F߆ALߑ4HuR)55:}99VI/ e& IqܳҟØқ"wu)Il@%eD6T'8KirΚW ю+z)K&4&!wl* M׵sҷX-DO0&?5- P^&%jHnj %%mQ&Y,ڧC ITRjE絯s޿iT03/[7v:o*U!&)Mڌ}J,P )UfT)7޼f4'ch=V^\({#2+} WήX|iA`X[p+n :[و%}Dbdb\ Q4ybFʥGk\(u 3{L8?G~\f9W/e^w`:'kPۄ]kGOp~;ǽM +ZOt0K^$uػMӁ];-jɏG]69%J#/m,7o 5w^J _%:ŧ쥒]Udl( W4î{{wKׂQ8Ƥm$T4WCvFY:kL`<~Ђ5x=Q[;k 19B@V~g̅/Ik1ª&Gaņw.x!t6Th0g\RZNJڇ(zRց (}62guW~D0 @1̑[mC{) 罤fhdx֓&e.i; M8Yy6.Yh˵7{]B=hRԎ YոgYyOGHE\\^B|2eq9* 1&ddRIe((-m2Xhlv 4 cFRmBd͌qUȻ[rώKK^?2bygIPًMVά '_ ˘Ǚ&]F$C榓QyE؛'8,enH_]Ou! v;[ز 9|_& D* |&a~̙V\1GZָР~ /O$YZVkKK@6)f5=AxS6iE6d !Rк m:;~syTz&w1(!^ H8-~_+ڷr`dm]GAUƻ֛ͼA%ݸ*8'G.F&\++ϲYm5ݮi`Q"?"MTL#U~FO&㊆)jn"([N: ν-IDez~ͿʑJBpP$vxqfYx XB0MB7Oh\7w )'i oJdZu)'/9#ı Y&2W)kvi@C4Xnv)6̢U% eP;{gaÜv~OA֛m' q q L3ɸu9i#u GQ,[OMb>cEv/ bYmß3o L0 =!WOL,ۉ:^-v=evFe ‰ȕrH̬lKSD y[irLXumXڞ.!ce jji?7P|pacpl-code/.git/objects/pack/pack-a6c4724c58fb756dd858da9ef5a72e8a21b563f3.pack0000444000175100017510000114453714010546217024661 0ustar viriiviriiPACKܛx Tr1+P8Z4uzߗV!YJ{g{(&#X X}!uQiKl {I1'0% Txy+e,S^ay:2_ANJwpg)OQESư7_Z|GɜxK 09E$ \xA4 Lo9s#Qࢂ!RTF ʲ[.+p SB19 (?,K.YPz?^4[-+|j6H9ʥ!YP$Qg=P'h2򖗺Rmc?IkxAn @ѽOR00RU] cfQ7;Ϯjv,pJҾzi@˝i`h[012@J9d<ąynG.w0?Vϡ}\F;{^7C͋}v9}C*f>MO xm bEYဣA۷;t7Da6fNc-Qܤ @mhŸ)U[@.OBtN9_ϟZ:\9Z>.O-HK"h5- uOFUƷyHW4*Rx l@QI&n;8{1Clju.(xG~nZ:9ZG֧^9նTx\@yqz5I)EWl1ıR.ck Rx[  7t-t 7zMFBw_P83 WDb h!JL逊˜uXx J #zgc >}+Ny|KnI|?6rVFY,#*)|;)+~b~N&xm!;UL<(J>^VZI)¯l\΄)!'!33ct Em_&|Z}>yYjW9m' V?m-yQJ{iW;g6!3LQMxIn1@6ZBQ!_+36j{P=HyBNu)UM&tQJmH M3PTe6=0 !GJL6Pdr,–x·y ߷;\ 8?j޾A<tҡi;s!KVfR)~m̰@̝ SxM @= hc\ Jb`ߗ3yڠ'K^''Ѣ -W#5.$M2,"GCqV:HzFg~ nZv8sn\m?u 3LzVu]sF\ǺqZs_QxKn = 4XtE`#7w;լ) !Jee1&:B;hEqB fxEcl') [g*3h\ۥQc+_w">RP;وR<BLqV_xKn = 4 [vE0f)1O>C^"f #Oa3q<{h<^rt64mF;Bڬ#HeaG =S+ ϔj>GN-$z! n^f@B~P4PUxK =6|ct+fZI &^,9Ec@d,$I;m4!x͝y)b*'`f!(2PEbǽuyGyMߥV}K+OIjg@)Y?q!bZFYk,pMx;n ОSLE9@\LimH}|OovfѧE{dqQbc674Z49qT )^֓sjRpJtIFm**Q;|=ʳ4ǀRz=>}G={bwdp]h1nH*}/s?r l  9|/{[^TxA @=1Wà$4@^Y4\.iX+S!!%~[lIaF @!GGZ3Z}<&J R?7b27wJx !;UЀf>1 $`vo289d-bphL"bb:oS*8&с!aQ&3$\8I}Z%o߶ y~vqmK 7^+딖 Y?E!~ŸLxm!;U@2k)R@naO)^VFrqÛp,KIBާk 9 ZT=ڱO+^49 "@. 鋓 $FϹn[z}Z{?ρ>.=ˎaysho:'٘rCg0l QPxi1U6Y!#-I+՞!%o&:WKr&mB] hՎL]Y[SKLZt%J>@>Ux6~vk;\O|ƣx88S|S's6Ÿ~o"Fa)T/(yn4Aƿ4,9MXxm asTEY#F7;dFN-"n"KE,JVR7)\rhVH|8R'hc n[~~j̹sviقr)20iY—ZP=!6 a\"<.kTx] 0{d-ئiOo40|1͔* JbUQtV_ei 19|YuR(Sp9ue&vȆऌRCo5k8~IpHݦ&dSD x[ 0s\ "^elڂm$FOo500b,3**j&*%y21UA(:N!B( GO֥=Һ|ioy:oަܶ^48: V ."פwYys> xA 1 @}O (i:cS*M耥PW͡ bJtrPʢTQ7"$y^}|{DZvp |d8~ms_;u_2n:x340031QK,L/Je8_]Ez-({kIC*`{+Uc{KJ"=|kYi&!4ra[d$楧3춼js}CO{k_+cޠfX>[7h Uð< [f1LXIԴ̜T\j1V O|m[tey սlIXﲻ\Ã}4{kݚʣnz<*7]]5UOYyY_rMa?g@/-} *dA3\!sTմѕN}P\J&?a|:Ӑ_~1f.W|y<Ϧ4AUO jNr~Jjr^r~^Cl5I;8p۵[b qV!H{ꚬR鉋U.gMF?`GB>8cm^6nr )6[Z@BħI3yT8 `ɶےvnk+z@Zڬ2@@bf}Ưu,W߰ cK)VɎ7 xxR k6 h08OAfЙhZiT P߭iٓHDB' u7B&)VX2<[x}ĒMG1fGE?F♈:n`[ tXJ*3 g7}_7& Wƫ]vB,Z }"#%pYS^YM7 XS,k\<ĥm: B_%F*EYt E[bb $ϋH, ,gd̼l-i h:pIfmgt-dB*wBOMNJ&d{PC,^򕳪,l"*QsfUm6k:wxgW$ "=X8HÄJ *C&Rtd&HM&p~[ɂ+<di-z(*lwU~Ohy^ݨHwgĮxΙLKZ!#??=y@ b#ӵCpiv˂ SQpE˧%?w6;y7WS&:V B _ 19rƇI,TSȞdPx7[v1PZB$V+Z._铸2;[&GOvLSZ ,luiWoz>P26^^3֋P|L)ȍÂ~mawsxCi = *deYhrl= V &G;1u '^^&;VӨЦ,kpH{Y~@n %;XzިWIzB_(Df:pea)X5x ZHe#uT؝^>_q+iV VC|H"s[Ad8O ""WXN,cCmh &%y INUő ?or[–1A),˲`{- =LլɓCZx=BFi;L]æ ɔ#<=@.[H*X~V;$fe_f>ڶJJ3{1ƲMM͒Uŋ["=7DP&PvTQ>T[)1uiϲs۹CBECrA[(Bc_KWuYT &mq9i [K`u & ?9$0, @$PD"(ـj;J́Gac_2gK%D|VPC)i< -KJX6g`,= Tl_qn!h/n#!Ѕ0^֍r'f NLT4XPo!( %bjf])UIrˎ|E]^k uV[EkH;]]  Tvۨ7U C#& 2%J_Ce h!HlO("j6pڋ/;NgĚZAU\28SYBi$C4.+LN0D<5BΆeA¯p2xJr%s 'ֶ 9\aҹȉ#U聾F.$D:PC3do4+{̚D lm)bKC\P5p\ X`GC,ƥVl9ȵ)@Z;2h-.{0W(T aXϒUN&^7_(Nz ֲ;uӻ%>R#qx z[ahC 4 - %̇a(v}aW&biPw40tXW wRsc Χp"5TFI!"Hg D)LG4򶅃4ߵQ:|ܸfd*N/<,,D_!N82H=U>22ˆ%!b!>b9֩d:}OsB%G^02A$TQBoCIP,FFMJ'R~Q0 r{H۰ eX˼x8B){mV.$Rx.J}#3,($WYцr@ŠzLZ+0MXꋵGzL 6k$t="3?9cr+ڪkLddJ`I(dN :NVK#Ɣf2 W.mEǗ)@!R;d1=NrF_eHrW-@Fzm]i$ݞ✆3!b*$Vu~ܙ $SGU ,8H괢#Cz 'Z0EJ(ˬeLQԑ@`A*,bWK؏/:3#$?/]t1;)%3qzIq;ǹn WJ2l|2R6g UV}#AQTNR`2WnGh^N<3$a%=$) I埰wrJL"C"X!?5Xxk+B(_q"uq~n{ mƫJ5 BR'K(l!$`g_O7 nFї1/4JԲ*#[Pdہ7*ؓ\s\pkm_˗9 :$^ @E%#anK(bŠ]kl\#1+!k"(?I8Qh,$I z]Dv>̦¨ xaС%\;q2J'ӡWOMŽ4<3K̠&֫aҥن4n6uM';wɫ6h@9)oVe $ Ģ+.CQA8 ܢRCfz(opuV}Rm:y=\ȖGm *jE%Vp{d2@Ԡt-ۊTy2""em.oކ$Pp3zԠA)Wd#Ϛy+LʎC7#}h D &PykZP(@+^mrE@5㠦ͬ0: p%\vAŢ 9iz"yAGڶo $ޗEg!*dvf4UaW,G e8 -$Rk)]V*sIi6a>@&"jDDeuB_=>l'i*gݴ A/[$mqVhha`p(kHyN뫶nR#4 o!lY9Od [sTɹmT%.lS<^HqDGz8c9T᮫ZHow &I!{F4Mby0΅{,;]Pts_Q~XKۑ] ",a lDG[t*)xj.lQ( ej"PT\B !ˬCbqR"}FSQ܈LJK)zƕ*PU-mㅴD^p58yy3_1eܘH2>]0lƅss$!zц(fL}'[\$Ӑy.:~hkl\zzk;j=tTH VV~^H]@Ιf4&$'lF4ir d6K3M\\N;yBUk(F"߮J=y[ml:ǁlʇ|qM`M*yI" <sܱdA VZeoY-JsAR_f8-qvJy.jv5_T zNάc88CNPL5wq9aݨiVkNW~qAʸ"8ԱG]j8e`Giyp[YA1,S?;-Hboҕ_ Έ1)W5"6yw6KBvSv['B O~/{ԨOdݝ;[<ȶ"qu9YA`ydl]~y5oD)`ǢmY?tܞQ#0㶽60K(9]^6uJ\a*?$ϳ.>8ldQFX 2lrfpLٲBxFYZ[5ѱc%QR>f 3x۸`q3g|>P|/`R.! hPp3$!uvY\2EdP6 +zQ3d]á6*xr6W3{-k#'H4kq5@J vPJq0 jts0@dL{J:,Z0]醶]7"NSHLqW]Vhր%\0[DXo@lLJ(w?CvZ3#%`1"/|n* e s@9說r?ƞ d@jtqf4g)t̠m+c4 CU&ÓGmk /!DHtp$mtgI VEʖbcLN5~G+AqCnpz?kqDkE_uDi7O~BHew*x-;^5ィ[n]ƨ?HGۨ]N]6$.̥\JIqZ-InfRr4MfBd.E0N?I,ÛX{pac)jy衸Z8rX~|LH j'x2p'}7R\pq~Ǝ LS-`BV˸!-+ptűJP HE<1.J pҹ8Ǒ`n"v)*N&#xr=3;wU]Pru`6 sąj]M }sԒ} hu MXLm}VjJ{+2l}|bLL 9R "ZJ{J>{tN u}8IJ^HnXK7rcL\dO.qGJ:L7s&pr(ַa6ahp% &qc {HOa815K6!chGONCR)M9t;PbߦNS`xg o 7%ӫ1qpPz5-6FJjQe'AJ[8āW>PE$ | .sFwfIȮG| TI{g:22kzؔ9jyRf \H ¸02҂pR\.,ƾTgL]~0$?Q-B:uѧ"$ zjtJE'7/Cq@K*Tveg~\V>uJ{G{U&^D<{\N'~A ? SgKˑFrBPsW`)6xut,N 7$bXF)g`MO[W۞Wm2jyJ $!`:PEp4*}u b'Jg@ӑuPd8BGEV$|luD~{~;D2A"n)c{D9&7Gf4$2Fdir1LVᛢ}zh$5#%:hZFH|ϝ]` 9}C.E3)YT(rXTGzL/Zd[4 vwCi|-zB=uuClUoB M=o:B% hG!l!e `8W^n!9SG:#`HSJ=w'y:G2<_ڱ"uzy bGgT䭗P4,G=\ rTi$C1IRsFsM XZD9N>!Vl::$tT M:$p/*VF3km^TH;xM-)&餇Ra؉7iVwΤ~Ѿ/ɨ\8Jgڳ~Mu2GX)r JAX:.s?[1k4W_.h(;5x\Q;(D偟lr|f0W\ SHyqǙNwPl 1 2W^o6'!\%g?qv=OtFd?`bCC^,}YXm"n ~"'h*uk-kM_vNTL܈)H= .@|ÌCEN& 9q]'߮K=F8?M ߂-g-0HQ)v$Ɵѕ.X.8'V X3]ڰy,f Tt+ߥƒ<)7Hqph O=YgOLl4rY7x 2" .-tBָZWk}hӥ'~zml/.bIAEǥJoɝ&?Kt[R٪]M? c\0}ꋅgHp_pH8BۍÄmW}ԋ@)Ex!GGIБϙFbQɑ'F&jDc2\k@5KaGWfu<?p)!b<'>+r|b (Ѝ tsXmv!FwBr],[O>s j!<@{"ndy=CXB ]=?~j0eX5L4%Qީ;A p>FB>j$Pk~oD\Bײ@G*\2) > a2 JvBJ_8\D܇,'7ɗkHnn~LyCr;8xK~5۫,~u9}H|]'7X~?L:r7_ ^~|z7/Tvz0wd2''ɗÇOxss~.Mfs^hۻ=@k?3;%M 7՜NF=ܤnuC]~oWs>~pM[0姫靹tw{s?H!n~τNOSa8ă M|s_ %fgϳO6>^]%׳Kwz5}_2ftyswUn~rrU"1AAϠOW?>YA%ɐJ#: eNϙur8 G_."$&Xy;b`9 P~|Hm>eaҼ"YpRR"l`ڝ@{p_ T])۩ώqL˲NP4|o$1E[b~F/2H$B!7(4 ڝ%zP~GIۏǺNSFs=Pyd*mA/ _%v i͐9ϱ%]koGfFNfpou_y3Og9ğDhT'1/9}$kRUg k򖿫 sV8 oodQIEevELF3áļ/eMcgm e $ۚ:/9vO6U ݌/Zn'ҥMaWȠd~8/~שD:k%gІ6|ܘBagsqUk\{buTZ\q&W  ~a%mWcˋ{Juo .!n|DL׾yXYwza+" w6mu__vUQ7\ǫ )Jt6O{(|+$ۢr+mju[R'V2(ƕ FvmYM/shfէؓywיt{"/^\Tr[b L؛WnM>&n"zEӅ ao+ǝÁ'IrbC't[ _&Y8j?>cs!DtO|ݤ̵(]-uGEƫWls5]oIp8 H2̑K&!ǺcŠ{S2|9Xhz՞mbRL*g$H[<,D|?29lKF\P cZ^d/uG"H A [Î*4 ]ŬcZW^U*$Ħr\C`HN`` y((e+J o}?} ^oG4e*Jŭjm a.7i,R5ѲЅP^[1hJLM;]IVRDfnrY~U M5VT'0S,VLdSY*oi[DX97V\TD?:zd^8[q$HEaĝpE 8cy51ﴝ2Յm7{[01Ui*vB)m2Wƥl2#ƲJT&NF%gLS:Dg.醩JLDZOaL4HerU׶`ʲ6*;zZYS}=è{m@v\M3i hV4u&:g[QwX^IK#@i_8]j ӔTbMu)%t]7JD'*~RʗD6צ0qb/ GuxPLPqa=* b?XRBeeJD2L8={{qys-. e *7k2INP7%fy8/\d`R:vgx/+ؼ]/Ejub28f" ѰySʧv/aZT7,B +f\z\~>n{tF*+Ҟ*8lź*<'^Gn= өNؿR`8tg|k90չ A!͌n*g^_߷ŅXLzukt%*jR'a.&~X)3J_A~2[|"p1AL:ra&F{bᦄʔØr_Èu[:P'>Z* 9dɓ@݅bbA3ha6hBw f&bŸ[)6.E'{Ycz2=-04oɁ=z}r\}ӎS!k# ݫ%]bw Tq53ͩ4eSEL=ߣPs;*`\ѬR%Fp7$a LL!# Y>Ҷ"5'ih@.RXiU {f"\E0h/1gޥfʶfz.MhNX1]WQ+-颹cͤH]n|m9.̥]#K .g赥wEӟ]||ڃƗGGz6GP˳jy.p-)#s Qg6ɞTuN}"6`P L:"˟eC]1Ց~XnۭnF*2lSdA;%IIFy~js 8׉]@XsgKյ"BIAn%-R*sK-Շ˛o<V醪V5Zoںm7Mx~V=7MRx\`#ShB$%v͖֚h6A%\Cj`Rg5^`x+4GWI !C19hZŊg4J —P6^ک;|v{JM ~ش٧:!4M+r.'j_gjL[u9KeI0>]H{_LJ6>B6[-י {|`s}V.-f7YE2n͸KWׄqmCͽ>)~kTeᩁQ[d4x8aB>q@m.Im9P8o#jϷ|̦T]<,N^*}EF\CmT 9 ëX\p|tӛ.V. $|OST/{7qqzR/'3$svrI^tpK <8ʽBdWOKc7p{3"N-tWNkofj H21#^~pa7go/μp/A؈`՝ݹ Ysel X_ &QnwCىLcpoW׬N5!k|?P>H{pc*Y+Md#ueF>&|HN1/h_m@'4H!&]wK+z}Z%ZcN@CԏC^'C |H^ K"VvM%f+[_.$Atܖ5.vciYx#QWgK̍],Uۛ9!c7h4&KL(iGI^JCskh8y3C8ws?dl'AۺN7ɉJ~d9"` gᙡ"ҕ1יZ/e.+hܬp?e&#-Vk87ȷNKU"y׹GWh=иUEDy0>YFoh2# 'VԤNw))Nme;c5Ju,=,"jx%/VwJx9q"U:}t}߅ }\{(֧ .#x#j}pz% ?LmBF_ĭ9/n,? zH^UPz fĩ?3Oǽ%@x[moG޿!,@;KRv%,%E3MrfzF2p귡(c|EKinPo{?W^?9{Ӌ4ٳ栗|\_tv`+>n.m9WJk k҅tUb`ڥ׵˺1S}_kvo;zV.n}kMҵvzcz'vW4NohY6 (ui >6|Νq3\돁$M˥hj7U$b+,E,/ٿ.YA,wY6)֦i͆hsv~\vY77T*P7ՔymQ~)V2z6M{OP3)`y5]]i$~8?}|"Y=㶦t{nLjx|w+YZEכmc6ЩYG?J- 1kQnh3l0zUhbʚ8Wtu%aE%@#۳w/%0I;跤)f笵t?J?!N]Z &nR'.\[f;x5d0뻢Ϭ;H;GI[bŢe#WC$*q}Gĝ ieGB$?ѷ irM nhMA"m\ܡ##_%; hnUyi}QN5u$soN7!^ځ 1 l1 qH$>Wbv5IYNS|ؒ%?!Y.P[2-h2d^+,δTtO,.zrl8IR4$5OJ 3QX(Xz;O3<2Z 588َVM+X}74=81|Z8v81 9Cv8H ڹvС#nGV"j:&?܈ 2bpt(r#UUX-FONjAK }$D,+%2D#ۈɃH!or`{Eub$0Zbv3}+E>ťI\'0dH01n\ XUWlCb̈́#xzN.ׅEAkg8]D^mwO3C>& 3 )dFtN5 O!0 N(CWBݕz'roAw>@ Z 'zЭ^(Ȏ 9|nq{'۰mzؔ.{W~?7eʿ{ħdS~xʙf9QBEC9~LD)z@D9 [ A`NH#8PE_ =L}whiW>e"X'BƮwn/D# ȁCSt 9`'E4frFL4_M9!]yl\yA~(qcAqdC}ɣYPuGEKjkZ Vx8A^gt4'y>[aYļEG %י?rxx,apqI}u^7Ӈ=kv,s T$gz]Opٵ, ΜbM Mdmr`,V0G:QQ^mu@UShKà UR< 랎 a"~~¬fL(aL/ϔO)2WJ K-HsVd.(m'eqUĔ,6^vBRU̦orKb`"ȤÚh/mr=+8+JԽSv a\ևMȄK;ՀuejD`P(Ψ'|\#9T#,9(r70$aO_\0 썄;s E0tSy:~T N_)OAtD(G Wr݁B!DGT,ŃTYD)ERq_sJK0X`:B,z6k;Q8E VE( )nF@GpGw\Vȟ(8@{]}suF+UC DWhfTs6Ei`9Ew; bcknuV@SǃQ4D4ݖPȫtN+M_JD/"@[E 5+#k'n *F+㛠ZzuVF=KI)vhs2hB`KVw'/?L|{uJ w%T f`J8< LbWޡ.'#fFĵŃ詠]9ڙ)ؘsrYHIdûEC n,:)q=TR4U] 鯊$?򈒦.k* djG B7j҂!N7=ݔY{x'2j_B\5v=U"xgìUECu]4w;!kȜ\;kFpU"j\e`8W{!]q\4dSq|[Kn[ɸ&r(4j4ʙT$:h*d7t&oeO{L~yS)>{G83ħH16snhB/r6K߱#lLlhTPPYVc$UfC}1^}hNlGk_ȕ }Mgo|_DbSo>3VԆLb#ŭ P)'F2%JeX^'Do8FzP]loá9 ɊNoyP-1M)8Lx0Da2 (MMP$YUDc^m)xUSUȂ1kEc [qUbew>}ԑU{'|_<ĮV5G9nnڟ\k]gN]FEǤlÒ M}lBziiQ lr?SC,7LlA}|?>8?y^piR [y惩ݍsHfWg8%|6Lo2:wsӇ=;R<7EvN"Ә)@Kx9Hv ? ۊcYHs!t~1ْ HP͕(ZG5 Ş<]S)* uRWaUvݸȑ! PQk{bs]̿̋ /_xg=\,:Z"(eTtLN1HLN/0J$Sta[2+|ƔoķBQuK΅&\Lk[tc [ Åck:R([%@w&mx4:d2(DNMfMMEeU+wGNj폡#3ģ֙MšPkaJ]|3+߸ 3 CF\"ecfԁt 3p˶A6Fmxot8᎓a>Iʟ_0l =bN8_ ݌|!R(O9a˳2J r"Tn"kAh|񏫈)05WhJÄn%)8=7d"MZ ˃!$;oC&էW]qRñ:K( {q}d`'GCnXLDgh \S}HSjOvIMqB S|<(|CjIE.YXKS!I+X4.a*\bZ :9ΩXmȍ. Ӭ&}HXWun]'uacPfxd}{8ZEN5Nkɴ!Rsg~xO+$ҁF#{X0r1|vbl81xַ{mEԪL|Gkq0}V||-:]*!3Ig]\rs} dE^GD^rN& 8 tH7G3a~A 2W9BK|hƸ}j4llz[FB;4ԿA*v,q UP|vm j" MjxfG3[> N?0qk"}WeyĞ-4YCY^'m eH58:'K+N@\q&x` e|}xUJ;u1mfT[H_RR>W4AyAߵ ^aP YDz&ngtlf*:lɜ O=OLG"t<~N~ Z{k'7_uCe.#Qx{ۭn07 DͲ)R~ B+ӎ!XT|6?B <qsϯd.;Ⱦ Wt..ߜVbxx,TN>!v9ƮbCKheb)Ǖ;LƙJ&7|<Ѽ̿yWdiS>>lP:"?6-@F}'IƳrf3/a˷fOԱ\?QP p.h<>F\W;tyMȖ㡏 TJӓFz6R%|vT =LBBt?0oAˋ^^JbQOpTYQUzwoۙ`;]bK?+׾;lz>2W^ GVFוJ4'.ai,xWYoF~bbv>N2- H:( JZ<|o,h'@qݙ+3q)+ p=lKa0V/÷gرE`>0=GmwY0^K 6vRH&}pcz O< !>KҘe)*a}yH(BƐ( }|/ LiHc7Ev0L0Bw<@c$] 7c 3pS? OI?A঵,~# k %to$ھYngqtku{鎣S Q0}$p-We,pe;BwV;q,F% %|4ŃTbs)ۣ ~!%pGuFl!O@L4PՇ6F<ުI#B>5֖>7,)* g9E!Ǧ=#hNO0^a0ԑ=^Zt'HE:KX,;7Roal/ng֔S=W_/e1]/lgnj&bk w7¼άd6Q!S5tYB,cn7 .c5 TRЍ)y)O\I&*xjdjsCur-m "EZL@nv&4ibݯZeċYyhÔqRo](#R$vƜB)䍵FXOsG ] P5w5nĽ\v͆ c|0tN^sCiw'%!YX 곚@hOCQ' Ʃ6b)øۨ+ig u'=lOyKzw:mB(0w{[f_U$xS8r|߇ ZBe x<{6?G樫붛f8:vU,SY$9MQ{v\-!AAA*߳S7l^줞.nN%4Ǎǿ4y-3lg0g, b{S?\S`;Z2em='';=yɉ=vCI(|ȺᬁK? 9R%ꀥVFa_y [q+/^I, $cNZQ\?IcbzO'?dЀuʖqN2'aA.wbQ^!$$rNyxt@E|*laAE+4Ah4#nl·fKVvZ q ccE8ڞӔ>]/CH4' bKʃy.s9C^KΝj st,Iue}׍(^XgX79;dv\? g9pH/$eϬVGgu^vzfp;A/P$$>'4^xYc?7FG^02}08 #Fԙ //TտraU{`2ov.MaN8b_9V{Cސƒ7xru ęҥ azI;ErXҏ{~&̜79h4*&;g{A.s}P>b#9k1ϫ\eĪV/`E僚LUX׏jޔ) ֫4Al E[( ]ǍժeADU `npI3G7v) D _ B!:׃<^ >ABW|A,z4 A)I`g6 v :;s|ongߓ͙Umj5 Ud.bXύB T&΍o`=~C乃o[L3cV6|3@_eӲ _ᇳ`z)Bfw4QP #Q?Ώ}l; &YA?&rzԚf՗엧Ouhp2j X;!uIכ>ﴎ:# 4zV%`YzN[ Ԧ1uuةsAs/R H%k1S ҷ3 LOJH4ZMybZr(K˧`{yuVk83>:(p{?(:Now;cjmS8°ڃAɾs#"g))XsWBn3n9},"]'6sf-J-p-4FyJ4uɦ$'DHjjN_NJWFDžƣq7!=,1?5&P+~{y'oi F' A}_tC1ٰ>NI{$5* I;PxcZryú=lڴnkдA+E GNH%%Zom໽3B9>m ɕG<򘗁bpr"%y óDEhhb'B:шɨ3&Zkb6z֊?9$ÀeB2QOoj&P]G?yqC<GOON9Dźю+XmcFQ0ЧF3~KJ(ƈ,~tjܐWʮ ;օZ%A|EaA0^5|t=.Ȅ_,IUi>}kYr{j5?Z5!V5ϱqr`V2U*w 8^aN.AY<[EHS(%37-uBXƄ KE__ (1-xD,a_ϲ15x8cCmܸث{x3!osB.jb6| &ü43n¦V^rTS=i&elK擕7gA7X{"iU+%՞ [MLEu_GMV/u ݸ4H tsHc]eW/{eOJw"%e+Rg YhnIqrhsG9Lb|}vMXsaHmT*SbraU[1\xb-o3 ,_.>ͻaTksjSks`h蟔0=onnFCq*^bͬ8mȼY’E074Uڲcf&sgg^Ek@Suo2AB]Vn/HA{eiY̒Rqe~4TQBƻ?si)muX(ТLVr@7#bT[UӺ=H+ph] ,..2uzS*R6&:p+\=Tc[wpMӳA \``g[|y 6@rR&}%^0V$0` E š32dzWIE *8SNCpg/xHx\qVk&!PrEv>%"%qz[I%Bl oUPuH*8Y&QEc3e[}SΓ4: m6!VA1\}ear x:ʝ` 0<ݫOn?;Ђ3Wk~o`'C8|խtj9K{ "?M@F$^a5'<UN4{)&v7NO TƊ&}xW{߉C ͝XBݏzt@6_? (I:ʹ.8\n!ز^:G_"s0^+ZzxDZ0OQPRiv΅"Ҏ_>O?:='鸵xF2)sجWo+FMzTp}#o~1+9s?]oSsʷfk`[RJž4SpT`9 /^+eqxmKGU.|v%CO-VQx {~;RSmL"ñzM`*RJw<&3WrZܐ)]3P+ԕg0?K&$J%,[:a,@O^r pW /C6a_'!Tۮx XL(t`MZR¿c)/4YsPyF 1؉qZ7ͫ6 Z)(}׈ŧǿS&QҡۢlCvŁt,ut:S6p2mv+c1ّ8˙Qp%,V/  HQ)M݋d QDU0f*]yX҂˴HH2$UD9Zғq",*c_vgQMVNh=$ry!E-f_Ցn Dxbleґ_67Q;&.A<,k,KZ̒u Gb0[ ^)aY:\/4#UY>fß>&뱣t2: ,F6g^SZQ ȖSN a1#تie37R}WvG/{mއZ#ݜrZ|hw]Td8Sck|>oywTZzL{qj2sy+ʻ|j lcV96ѩq.D>lX1M_wM=+Bڗ5v~E,xP{X Zjr z\ʚʾz9\Z_wQn;=Z9*l[P 6ڍUf'Z*Ixz?w?5~O_~2W)i׏yJ+' 8d>Yrޒ_ e$/2Kn\_ܜyt^M( )x۳J ꌦM&0Knlyh9LF4$$5%HV72)ugUg4j݌%4JDݣ<lU4@T_BzUfzqHc!UgbKi<F0xxW]s:}ׯSL$mg!M Wa Ɩrݕ6Laُ/^d*LJ2SCO*w:+mhT=jM2-d x˅+3@\"J j<צR-lT "n-)\|oQ@ !#|3[O-JZt` x4 B Q |8zHp9 aޅ3}LlOC;y ]=h:@>!&d4CqLO(EtV3?g.p0D1B NpO>1w/&`%g4/@`z>/厸<]axT mr &Za@0YwH<,pu Kq Pp8WЇi,H  K;pyOi*R k!IURϳ4S"*#.T.rEoF̔6봻${_tEk:>I94Cϟ1X-o&úo%{6tX]l[d`,S:s],/(mS&K&}-ߠUʛ_00ul dg}ggyAlꐫSw(pz6Q[Ck+d LL]v۶nۚA9LK%?sچNK zƢW,~&-ܩc7,eΠS&)u^3yeIIl.ĮA5*4]׹QhQ1nS3m%Liy\%+- j<wkؖop}곫NG ze<6=jkS;:A S;r8Uu=ChކJyf,ɇ=Gv"N o`E, ^sx']J2J"ܽ3 ;.Y!7?W%C_#^ݮE8xSV(HL. C^x̱0 SR0R#CWtx v7Qʄ 1D*azHzpQj(J:sw[LB.W 769y/|NH?1 x=k{7֟ïP o{K:oce Y ;cE\>}ZotttttRd`Gv ;r|s~F}!j_Dڌ}o? _w:D"/_~_x!N)EϟD+;ď= ^Uq{gn(&\ jJD3tw27w." Cx)"_%a{Ξ Uʍf^Gb;fêC1)~F9e CI'A~^dG? b$EIwч ĝ OatӺm`D{-V~p[%`+&{+ŇGX8q qa@/&AH~ bA$e=bi{k8@tQVb̽CfB  r+\j ]G Jq6a{ph/ݡbC ՈU˸ Y 4F>\1! Ais~ F /빋xlK Xh|I?(5PN~#bP"4ͳ'j )D9@} R oVZ<+-D7zz/?vnq#\ ,\(Hc"ȹ?uǨUkN=q#@eݰ)Q5kGWn뢿_"dl{'i"DX gvH׻ef[ax\7e}Jͫ͋cؿ/ p @S#@v_b)G-nȒ=q*As M%ȲTQZ ESê&uX3ugTPVLZ<;;p@3> zpT tPj*;o,(( .H3Gz N/KQ= 5*h\̃#ꙁI6_ld"aKvޛS.,.ZvzH|\jx *8pbU:ĻfTY/ yR)CIV4fdZG2Jl8䔉{ZލWSkhF0F`pc ½ ݼi|͆>2SdQ 00{AF4qpoC[l Zݝ$``dPX.Ҧ gAL; hG Dк.q+{'y D1(BlrJ [B#(ætoAbЀaKuv\gX&ٔ)AA*-ͭFT؃ a`6efI6狅ѱD6 (9W$YI )R^sHhf)`pDVH(^D$#i*43 Ps|a8[nK0%RN`F\4E)Gb!vz>0 T,tf[l潕IC1 z6lL=Sb]/1gbr>c`|5md=j|R| "gW!ϡf>TcWwh= r4yR- أ9lB0" k߰~Q>>'Xx{;lu"]rWn:#1xc{CٻE9j߀:vtN$  ~.cg@JCgr|%B' ɬG `aK F_}P*(\܂.ioʊP褺{uk"y4'A@Ȉr)`;5s5Gy `T8 d.)"Y6Y]_|}5o2(KA44΀-;$10ZnD,x4ՖK~'>~O$w?p6qƴXZAwcP'^+uٺ8n][Sowwn.Ig'Z><|1yf}'/yFot߁ q>D?KH>LE !II~S^z7ڿ!,ygn&K>ZBMt Mg_]Ն^ Vu~`p@̧8C e;K;I,'+ʇD*/enk(rA2#QgńX-?pR(U2rG;oP:,+**7ZϯȘÜE:yd\}faXrY q }K{IMaj )?є#!ѯTkSX.#ґ0zR (>m<jL0D$;u }Rq"Z!d`vV;GsB+XXI.(FagD.yaR.j 0mu0 O_-'hxl_*teUK@, F'W;)/eP,Z 1*X6`hQ`*Ip]DSHq\ILv\:Qxi 8=%F/̬%FXdwU}9[~BP\w鯼o;\,3{q22`) i'a DYl͒aZ 3{kEVkQBvS%9AUL/~z@`8;7=D:Y USUJTy|TmSڰ-<TX œ++\'V:ȹ;z*zf"#0tX F0pp̔ P}ŷ:e9)Xk[U8後?[SiJ.[MF(/s.2AqZcC"KS\Qx<жוu4RyT~ޚr,%A>cڌK3CPB0l B Baj(!bS )lW"4.l Jq'x[s U\R(XJΝpLdx,ʤIU>0s_ d8@iͬ.{AZ+[W ɐL[4%_j|-**X<j܊Wg8vr_Dw=.8' +ɴ3pQau3˃yqSqpg)?Hfnk7IA6\0PmYeg`! 1)}vߌYlQ1~} +|d`JOE[ #("\gr%"s 8 4'` M} bKuqKu1Y-Z@pLHCSw(Z ksܩ+.Njm.ŔIH7Bzipˈ}*&9"x*K<Nqђ'`m/?W"Ќ?o^=kJO MEO<8a< #$U1îY %N\<q# 8H9CP?Tu@bܞ#sSJʙ$msCq+>.1riiLɢr5bF:܍uOB{<AI%=$'5E_doC rP0|uQ񞟳AN؝@ hۗ *O1@t#J0bf{\grƌIlBMF5@Ac&߹n]Ga=h.L @U``ι`y::pТVc;:%3Z@ (& OKϮO%j{st6ߍavSuMʚ}T@(qM~ 6} )"ǜxFwűK}`J3c8VԳct/bi0pGLc >5Z/QS=oz"Qs.lTVB 6CKffp sao{X #>*4ITLYw@ShI)YJ} >C \&4D+f;'AL?hS\up1'1Lmca}# ( OL6QQiSՔHNTu6| P')ef/LwBWm)Ip^ 65=w09G]zTp+|>`c$#*BM 7Ln̢WR)^[Qnwu/qZm:ͳG1{K[T: T61YsRX4p:(ĦPRbBf*ȟ5x]C`V˓ Bn6;yaKztnk#WN_Ce+en5`210äD#-L#csA..+d0w6JԼB=Չ4(z~'hZ|`6])VR.o0b8RJP7qI쵚 ղՖ)2;lɶSIۡ?bRF%#;dpC9I8("ȍuo:=0swo ێk9jg\ j*B0zU\^/#e}!^$X؛'S`!Xܿ|r7?x_0_<=jcy4%:I*puwQӡj:|K$Ny0q-U*pb΃(e :T*cJ~yڹx ;概S4NI}'/6OkX.#fYdIo 6I(rF}wa[|+7-mkQ&[)Իt{~6[k 7ͣ{gume;W;o63qd; "=JZ ULr5 x0Sݍ bu6/%R7+T0aWHJOL EKʶv@7 ۡ(ހ>/^}ZV@B0૜;:D( #)iv$t)FmժER9'!ב;=e.o1L^h|SƮstqMu)Fm L 1I|k[]wN]›d|n֡EUNQ2𰓩\wS;d>L_Ӯ. ;{0-iRX#Řڠ,^ў4F]vfT1mN2yAU'bD:s)RKMl9́m =ߴ\SYovOﭞ?47>fcrJQ|/Qן\2,+oݳBv`M`eL]qNȟ38N}C;huHgI ֻ{7P I~C¨߁Q$# w\Su^&Wrzl\܌YI K%Rbf Xgts H{,-B6h1*4а:Ҹ6=*P@ĝ7k{ZyS59mqm[v!Td{mr uG*x*DhDJB"\!4D/h.HhD?:Gc&I+lR`"kRZp7]Y4^va= mpAeSo47j]W?ΆDQRSoh8iA9am@U ȥsIɱgWˇV P{ -[flcxTn0+hr 8FH#-Q`+HU}/b3;ܥ4|/?,D#!aj+-B&rI Bk =>'KC(5X*|R ]t\ cSq T赠ӝ%<%Lt_͈yc#fK+ =BUUB_J {Ne mp̠TR-%ߩtŖh)NLTr5Du 5Ȳ5(V^Jqe,~Ѝ$mJcgsҚW(̤, ZL݌4(=a0˱,C@0gT3M ;U7u7ڶʱ2<;hc|qKvGG$؟Q>|qsٕ- d y% kȨ1+y0ЈNJ€Q|~zEarh2i޶Q!r9Dks>I^[Hf_:@Ϸ|RvʦEi&xϳgGߙ7{|g>_xXoHmRF"z+J!(~Pۤ Y{+f#fw汳3#I|([)AwaD8Ϙe r JR? LnQIXfHw_Gg'dFaFS$ݲX0}Jߛ(Kez҄$R dIoISE9%1|*Ndz'+ղǦ! tdrY}BGy@$qt=`@D$Wf9&mT)-:-RHScGr+]HoZ\Xo90H"2dW.÷Pz55JmNa15) x=nW_Ux/RU:UyvEY Y,˳mk|GL5Ֆ|F$cqi.ڭV !9U4 i '8QD"Xbɍ)^c,~´!$|[Lj] "wE{e䊯2)A$Ogy 2tM 9 dd}c@4;9]r:YY勐"QcS{~ʹt7u-W UxcY]C ;.LE0smNheH/%YG0$)dŞ_ 6 SWHl1(;Vk_/̿a/ޠvgە^Ɗf&q Jl?T0{h0X PU79k)؁ W$w=}ny4CowC}C(OŽn[!wc_?%z i9#VV/P?gIN {=UV\a7\FنтD)y<| tOU:Mʷ.7Yf3c#vШXIJQ)U7WuU"S:w ֚;T@nU*4@<%M @8&pEda^Trq0n&d[S-+>Q޼)`gYms ]/̠_Ӿmmf}j2m甿l3Wϧϕ_Vw[OMǕb__J0JW,O|QEEqeH(نN ~zʁj;U';[κ/WoKo vsLTo˨qZY3w!%pWKKIЫZ[͕PθUǶ/PMN0…|Cv@AX6Ob}umZp)|o Ĝu,¡7\Dm<)~cن޽C<ܠx340031QrutuK(MMf`mBl nEqjEIQ"d".IrL)O)Ieh >brx gʽ71B&g06qm_wپvf UXW(W}h:u|[ׯx us9PR̼ĜݔԤ<%o5~~fڲ`cfO05T.R+h5Fq[Iq+n(N-Ie8S"SYd{/3z(xeAn0E>piլz 1`Q/xnAju9sPswOw~x%xN @|ܪ܌񲫉ζ(djim6㒐o7^m)6$#c``_C1Фɰ_uHPsz(T#(j+%< ybƺD2+mW٠wGbj6=l1Kln>@ L=jVD%;{*sɻg{&h̋d.Џ'f& ]\C^}awOA i^Xí1e9gxr;HS~}k~Ho-xuRn1 \,Zi ՉDro_RK;A~IOs z@oB9@A_xW-r  !Wȴ@p =Ogj &PU}y@e5Klh&4j$?a~bܛ~SH^-UZJBAo6Ha:lԔ1% ؅A o-{ xq)bU-4'l{KaQltJcmBaJsYuƤ}?YK/?ΐU @jtaZ6aSW/x4ORGyfi2 eBH63nȶݎ%}Dx=?]%x}1n0 E,~I) )CBTћ,$!sgS4d/gùMZOU4N+8\7>kΓ ݮ7uvL̲#_О_>|1 7nxUα0` oD7%<:zMmE+,>O$Q˽XEesrҒ>pP%ɵ*$Qj78@I *&q~IK"Y!+(73-efsTp(g;}MҠLQڳr{xIXh徯ĝtI+v^5Q\exTv0 @s.vcd|}!ɖ'9qA]` !'X8@M@HSJO`3$jr#  8{8GZ G$d̮ ,kTq,Nk%Ib<vԪέ(C ۝ fz'DAR "8 7z [\rsU=]-n&K[UM`Ȫe$#cI::'?4jʺ⇷>\QGaX {4"[ZB;Aza30EVɼ:.i߆.N6by-ԋhoB@|DUƑXdnys&K+KGO1Ȓm;6qIxqh32<$Xxe*;9ʦ}q؞MG<%lbUrA #Q1˻%hmi,/4(=-Q c U[BWic-d"Ҕ֜{Tp[i_/\#[PMq-w r"^m~xsgC8TgY&28Z.+x1O0C:lJRftUgR!$0Y}~]~h[4,r&7Bf="Z+L0i8z,{yvIw'H|}4FRP $&htcL9q2\AC"-9ߙl:ͫ^>Ü`FԖڒBK.FђNdz;u:\R`GWŕCNhwRԾU*Q[tPU?(q{iY(֧v؍Y3e8=hbKӓG ر#xmok0_'n:JdF,N4Fjᄄ5uc!{_,xD*`Hg]g=C2E#S*OS),9 }G0g/^2Vۢ6[>j;o^8>w_gSfqB#4qPMiؚBb3OM_-/ڳOW4Q'U;ߙCZQ͡ uQ [oYol˄ҭḑ**bPu8x;kWHѯ81f,Ǔ%L|0v& 6FZaVUwK-$XǏڗaҖ 1(xaW7Aβp7! sFqd&^:]s݃vz "^ ,};~qWy)Kф"-`K!n/E,2y֞t&J^,I$mB>onBhBUYMK;͐hMH#Dy% E,I^Tv%WY R/1ilm'AH)鵰 IsXAX*SrARhɱ!1UF<%yjX66vlf8~?&NߌN!'?`O߆'M?&h8ɯ 1OFS8Hv:%5`B7uh8^'Dh p?t4 Hdxz '8LjHd2B*ou4Pq/G&J,axcS,7 ?G'=Rk77A x cDddpɹo'қXisy&M$pؔ4?l AJ7?@Ϛ+ElJ}h %W@].J ,DuV8iOg8%r-le\r%:u's;],n6;}n< \dOi?oktH"?:@Ǒ"\f]efHeÄDc)#MBf/e$&]#R2%E+ⴟ-I~ݩ;ד~ j-7jG)_ibHYmash#襞;DŽE!JdIG'gr4ws\b֧_23UΖ{)>=Znҕd_`{3ޓH,M(Ilq-)A:>ey'16ǣC=4brDO(NcM2&ŨıSfzgx'jb=6>,u(Rړx,S~>~edI8gP[Qj/k+|A oEy~i⺝P,XTyDkwcjPhKxmQȐ,J=>8;/=ZA_ByJS<_* \%PQMɑAN sfx7P?Ossv9%h9b`ސf7>BΜ n>N)N|lZ~dJ$4&v28 ^^؈P9Cmh4UVpC32=1,ڌa8*pٱ 3Z,e(ţ> Ұv(a@S X?U5h18M:biam,&U+AM3c9:uTB~!Cإ蟅RV *)hllECA{sP  ?#rP8ac0VعKt0f! Npg,7LD148wX,՜-yʇˎ #4 p_Pq]p9[_N;?Sqz#/NpE*Ukˏ= Gt-!&)TeT6pa9Rv%X,axb<3pA#Q10ikirZJ ClcVmE+gPѩP 9[>;IvZ5Zi`h:e)@cv^HL;Je٦%iwdWŐ\^-N^Q_;=?BRo@L},ݻY6(a:15PB Bd5)I1!/]A3oAܸ#s`G͢lI+HaPq7ÐKCZ$mw*۽WAzN:3'~w{?"JgM>ؓn3w?A\ž2fYsq:qSR7M+,]IRM516T)(l(qN  \ WViniu8 gh7 $q]IQB|Oٳ.>/K\V-bdBRv; 7l#DunSr)yIN9%캿fqBa˄^oP}w0E mgsPxO]pf:u 7^qt S*HrUJ*?<Q\ Jar}"[UDl ۨ RO5̉~Aby + Bs֚W.eR;J#[1.}`^)@jfMZU^&0\]kiVem/T2loٝnel=yFj&}JA; +-Ci.C|ĕ%hJj*70d拧̥ʶbGx4$ 3%_ǧñƁ[7OGǞj@*T2/ i5WZ\^(%z z&zUvUj$y uSֿܻz+.]B`tlOi^e0ޜzoC=lw8FgFq+A㚇w疴eA J 1 )7~]ϼrᜍXeHGE$Rs Hٴ ʦ$e4f:%/: wܳg%NQ2#)xVl'_ U;-ޜ5owk VP)IIO53-7ΉnjonB-!kX,„㘟B2%_:lUb:;6 yTYu/mptq%Fܷu{ߝjj_ntrYU$HS\ ]Kj.>͂9yŘ;SQ+SCDiI>J!QX{kXXy\,Ia\)$c-*m=6sx2C_oI'<]-[3-5E\3Tz5~Rrt _;}mWuN^$i^j?ͭ\Zְv!d XJ霾'7LV">Ja+a m˼pmZ&FZzx $ǭu^%3UBJ|2э>wH1NW[96錅~vhCj]EOMO޾錏)̩$Ҹ*vaI*!WC>AglE4rUr_DoU^]#싕瘷k" Xѷ]To jA̚{n-}I>jGua5;ŗiWrkG&Z.U$Gl[N+(d--=,e1u9; ?>/R)Oya3VM:A{-ޡn@.Xf;Vf(u4սK''D'檑MCaE խޏ0QPDGoY녅C84͌Ȣ7&i=7/bOwg@@ʹqQ$TU_`"frx &S&6sid(z}_Jԛs'XrLg?"sUpC褑gS8tjɷJ/N0TFEmn(S}9ҙ5PG VR_Eu-(L>P6KkXS^ջK+yY4UE_Uշ)+lj+mdΡmn X| L_|^9j/E.0NNkr O^cr/,p|vTQ[VA5P zMZ^w{Nr|ڪlvh# Y% :1E兺]" ~x4uKy`nN=Tkl~g.?U N/_A ـǿU~;=ؘIhnο#k xZSHgnaa%*MA"K^='dQ0Y?ѣGz]VOѠ),\OFd@v |iUn^* nY tyj|0E$f]+-YT[tW`ml؍:8S~8i뢷E}a&u)QYS$#˭8SdOzlb2S*ILdfMH}&!2I30eL|D: \T(qPq. 0Fǁ\f!W9'8ᰱBOG"iP^w}L2rK6B*A0,$sGHp=-ixxG^{8Rv:-DC"h?HŒEof^=GoR&1g$ Ҍ $ Pg\НN]>0&6 ?%pSϥ182M0A4-<&)MrC+{ih7;2B) GA;Qx?GS g#, Ng׭Ùܛt $\}MG`?&*[3KZfcXUZn([t霃ba<;rUڌB1U|(k[M(fc^t5vr@i-F9(V} PIpn* Q'LcMhbn+cIfd2{^K{ɅV1jTWRV~fzB3U[ Vuʼn~YWl4h1^tDsǎ#2YV<_V`XY]H+Gv#6wmT*h˭48Њ7k(B< ڼ=:`+EkI=bAHp؈cW?=:zQi0F{R%M')ZP2D"H"ҕ9U*섻T# 9^Ⱥźקbe"XFe<;\8XvLr=h`B2A E˹Y=qAɀj{0.5%3LHt]lkѕ$l 2ޥJ L;Qr/Gha( 2eEQ~|m+k9KIx5 ϒm}Q-*ƹ(Vs6ѽǎ޾rjM^$NB+"ߞc9{+^t,%=k)5kWZN#JDtu Zj%s<ۭ7k[v<´ڍ0bD%>D\+h%j 9r+{o,CrY?Gb4Kl:QBKz,5IgqxQop~7yk" v颊/z/j`Eq+L^GynHZJ0j6<վTQXʚE>(5"5f\mQ~p9gW 1-1.RsxӮ&\RZd&5GqG1=hSI]o?o7d/Jz d6=wznˊgx(dp ;z7N-r}YI㖱p;j!7 d.f|fɑԕҋi`; <NW% ޳Xi#k@&y[; n;ږBdhYS|d9rU>ȟ{AJ6ްC@րu+@xW <_34Eݟ ~ l\?piɋjiI':;O_tVI^9Tn9,J7ǴX4,$ a$Rf&WV~JVbjmZ\n~^lV5ԸN[%RjdX0U~kmQm7zY"}Boo7|<H1 >;ݛ{Fo>8BxWRH}WtUaX`|!^`%%[#[4H#==`6`x@L_t鞃=h*"))y+"-":w[%=%iwmiQ6 BiX9/bYlڋMҜ:Cu ToB _P`#_َ'WF%%tŽ0I 2kA>)Fu5Gg0NTؾC2;VTW¾y3T{?, A,sߓ"bzP5πNpȥrP 9;2PVQs:nVyKQ,'Vݠ!UMۡjeZXizVNҡ2bm,VFj-ӕh~՝oO#@tx5VQQ|-hcw2\rd/F Պ'Hl]Q%99TOU5m|M?1U:h0qqԆnpX ;jc̿*(=k<}Urf:x`o)9u#(웸G gZ[<Rt|+u3 ji6nukO+L;^'"ysz"Njڧĕ]Is@8^Py<=*rI$'X\+Uv\_#rɖl$R*){llLCdm6O lU% '?`3Hl jpV19[}4 _(^x? hY} egu 36,Y/`I/ @ML"WwG;Rc>1)t6:HKl5^0sN%@tUfMgo~)Gkfp쟊V*Xm|rpa! џ:`7DDk4?RHP^FNl'sACdz=OH5vg2_K1v.@#X "ܤLAhQ:uA$osqyƿGW\Le3);i;&Ta<)̚"(X2mQ`8X(cQAd=B, >cNv]GKQ8׸ %1TEy@#udjH ƞw Z6c҉Ï^W4w1;JgeE\1;I7`BN(CSIo Mm(^|x{sge B̑8Um Ox}k{Hg+z8g}I̲ɄCȅ;I`vvʶh%$'d 緿U-&zUUշߵ'8n{lCƎۚm{퇶S .BV^fk++Ok+cמ}x1YΰF<3cgNƾ7}߶Y+˷7ص7a]esw:fN,|6zNcg,7 ק߰Wk֐O:C^;] lfA&{#0a=T<@mn0ہtA= M ~yc̹ D_F[YU_xc^9!lɰ8e짣7glWٯ^xj_3 -7:p'?A~Swt¶['nSI9)ݧ.!0B+ts${ºs Z 5#9k-G-  ?^xݾj I!G*hU 7;븃zeС믡,f/vsܞtlw"Go׬N-?\k`<(r>B(NQYu^|cN͞og UU vC F,_ٙ5(dhTuH>J_omd[=IH8%T;;/J;Dy,Mzݳ/0 MOQP]J] v@]طۗ|g̿@o&/ƎޞO\ڡzo"W#ns|9/#Y裡lt-P7dA\ ߯ EE % E!зWnP33񯠝%k5خ/qXFπQ!KFKz\$#TCkO"*P `0{ Fvhm=?P xh]Kb{h*?l ۠`hXg/5l=kkӀV \od؝ o:4 {G}̰); AV(S[a ;OI WYן㣓єJ# ^Bwt|v@VSHvtXZJ94$a^lF=K;{JOVWǁpZKjoowl*{GZQi$ )$ĊڣWf4Aekk;aj8̒oܥ+~wpW- L^? :|AԿ<>FqG9 )(8ttzhsi?0+@yPDgϞxd!b2p9ˢpg{=Tn{I#gM(t SB)A$~ٝ!(tq9МiA L|}>Ep _Vw<;wT@6  ,`궰hbXۏ?޴[D߭b??d|*ozi_vn lqL =ڌ.97qՖ~KSPAضcDK-T$u'iC& I*j(Goڽsޏ7Z* dMRpJqUpP*XC=YG{ ٹD2D=ǖ4 3Lw.r9bSlVrjXڿ=[ҖnMA }% ^2.ĆnD*0n&uXhu,zƻ\tz]?𿽼cc %v 頮%-`‹:00{Bdb1`+E =S4+uV =L:${<_vvO9f3RDb% KQiOXHDdڧrv„,Ƞt'_kce.'J08(֟ v*R.FOm)s2:of{϶= \K䠏ly}v{?!^IEJv˂\NdD -Zk1=4\bFم\DK>*5674<:|u{ lvx!Okg2M~GD '_G=6ݖힿ9Ef$ #iJ.:hX !^DT'ZW(OM:Q0:/ʢ 8u&ϒ3i:r=%շԤTӱ\zZNJD} E5>E*ZZͺҾ!dUb(uڣzUF7M wwUx {7/~;8$f#'lP@ m? &j} t-c[MOw$aj?eϕ˭"굥%)HH Z-iM lETRE'XHtS!R!P!L}ϑVp[ZzϐX:?E H@g;Ka fk=Yd}/u, J%YnDeHҽ5R"#˰)qBt$}p`8<XfCj7r6<#; hp Hq͍t{$qqǓP%Joq10"*^أW`lsaĪ–<'_hx1zCd;r=*H|R)6%;xRsK67`iIM,l\ŃOt|𓜲)Kƒ̧4,?I &),y0Z-*B|O8ɡ'=,6ݦߍ XZEN \jjj˓/FS/4150zڔ̃%Tzɂ?6Ɖ8lH/!^e>I8ղWLy`nbdVcG%N„HýR,>&VL%T82MseoD"1ަ7D-o0D&‰K ux*ɒIbo0Q6ZxCH@%7(*/v7< >h4J$Fo;%-Xi[V1g k O&8w: 1bxv圱[գ\AN_9v-9P @Tx.64|Ywm*v`> qƶa%ӁS/">fÑInN')==#-+Pbqi kZ]*щ9J¡\)u yUa)!O9sxt(,?t8,gDMb.[xGgx @C]scCVk=[k1P9zu)NvvX >.yp55*.X]%u5-wg kyB)Of?VlF| Ƃ4_>b[eP$Z-5JяfPr`װ=jGۯ*ƷD)b;2zYṿJBf) Pgϝ }s[]H=wKgj#j7)cE?k r<Ԥt[DljFfj!w;& =lZ~]sL[7F5y}k̡Yp]?x oPo${a'el }\6! kwvwP {ެf:11W~1ҩa^իo] (SQ@hTg&NŮN4(hB7Y~6ZNEZ6%6>51־KL#ߟmj|$.ܝ[rg+5. ^cϗ֨&"Hᄐ}藗rp5\%9͆8 D A4H}yA?Ci_Tbgh_8P35v{w.2E_Zѝh9/?X5AIJ7\{/E.C5t)V6Q`&Y|{ӷ Ö*ugsc_"~S ;Cg!9܆|ǥL2coQX~[/7%[.#m@ #_nxSbH78d}ubQ<J}ft0B7!; OSʬ/[7?9v>`̑_:g j4~|q$f80ߥM,j YY Ԕ5ZYbsѱd1 SO)ʿղr.Jm.\Y0"7[ i`qC3xbgEKzsSR3Tܯ.U |"!'y/yLwfZ.mUdXh} 2gYc`qͯI.p%c~z!=Xh9.t^S-vgvUyC3[j簥cFiDiBg@mμpӠJ^͗Z˶iŮd+=o9W̿m%>`5ТlIOvQl.WbIO^ \V} `I b3husBvѓN. Vy#*rN_Dnid)|>rU_"I~S+:.bt%JfB"6GxI_$ǡ3rW4 r'm/ 6b=g nnL-sZ@w{n_t9=53JH-gHiz}ݶW+EӜ~N]+Fgu٤u{rǕ~PL r>f7-YϽWP \>k3O\& 2q7Fm 90NAQyʬ d?s.u8,vq3t߾ի|ӣO&YgWIwc&mX\z~.l[{FpݟP|?Xx/wbes݂\([hox7|~R:ug/$kJ"4 h:_煵t9/w.@궗Ht1|իF# b,jAY$ HR_.]gv7Z,J!>x>h|#wX#ŞobwА4|#6I[}Hc.|)]4#4G?oC7dBp" bFˮf~׭v-aDxMeu:epS޼xʓo}+Ĉge+p^M_sߺ*0-ddM 9τPA@'+wNQݦs@BW}T91N%we~1]J:52 +w];-;$0HiQILmD7|IƬ^O$S;7[&afzݚ5gwI'}A޼wl Lւ*SeZp9%6i dB~X M&]ӞqK-Yy(HWc\/ĪCP-?2mCC_fI<,]i-&nPpkV.Yfo_Iĉ Z΄ψ^?uJ`E{sSK88+XJO9k>^zGHϗoPnqPUZ?EW.6|woC~6ޕL9gVp28k3i~v|(NՅиޭQ,092TF\WОoc:7tj1~@qes1rts|<6 `Ě&njM!9oRNRw\Yk~;ܩuHWp,zu9q3SADaJVv-<v%Mز`gAt͚ mZtT` `4iP Ii7(ތK$QKg{,`,Ȼtl]\QnHÿ-#= jx ӛ`3/=Ly5eK VGO";_XeZH@;,(ۇLs (wA>jJyrqq8Xj$u1GZF8: _R | b84ril$1OPI T9ZwGa 8٠$c4WǗdծr-{} ŢO:;S8~P%N`:1=>Ղei bkŪI PC] NYT̍b qck+b;3,i%-)z%3yR}5\V-OV)%&\\>]z]0c<ǥϥb֨cVd>^?$f7z9OyH2W"Y\3Xjrac V ,LRɏ!-F@% cN8Ƅ|ad|B<,#;)f-)%ESZn>kuZ r/ Ggh>C]To˸Ji O-8G(ȍ7 ]k~ǬLJdAx>؊vHyNFQ`cBfAPr{ PBz7vB;.$) cjm5hsKmz,F mȃѠ[3n7Bƾ_+Fz5FjdE?p.mE5pVx. ЯbxUP^=QZC1'5)jL6\SCo!"tN%% /lƇHn1ul!Fr"dU4}64 ^h9 %U/k`i^~oO{yÜ$ǂoZqap$ esfube30C|Pq6kRb |5 v\e2fTόB|L$U ?9hNf7ԀF2PaH$Ih["Ո.H!$BXͨRo`/1¸&ᘺ`Qv=$v#b6-d4f%E ǖkpI@c),8 噊Lј 5i0 &b8%@ ȶòvGA0t=i>64džC t Bh7.dlR /翣paO0F6z6tO:L[-'B{TvǬy"W9O6A+vˋFCx썑L=g̶Q;{w+Pog_棶Φ} 7g{O9JaNo)Pl pJaQ.\ 45&SO k a:m闩2( G(ma܋qBAO r5 }˿| ЄA~zV`+ϹB%ACLcsКhH$kʉӝDRM;7= R`x184/AS;;j\c!Y8\4_'C/UʴۣqxaT؏rC4J;j?la* Ȍo3`*aZk1e02-K,wが80q_C܋߶Yi\#d%cnI)'43k˞f&V$!>K1Րϭ`` uP@^fSf9 j,Dm:Qc^Nia4ȣcObsuwG kAG_q6*: k}L|5١Y7J#Uh̅qkzL5Tn-h-v'8q>o?^Fѥ a0Oڣ'G.;?(ܨq>Eښ?Io}˒"mX*TrR*H'?u~ ׾eu|x`҅VT.]H/v,,;Cyzc~mGe )U&bo4a>-ODrAQ~p)NBE2 BY lV1z12QH)2@-?tDFȱ*>I)8n)M%A,EYbTCBJ&j팱Hoeh0zbQ`& 79V&x|{.x\J=yf1UcG#7)h"ΌtҦ*I-BtQ[S_2W`p:?Q=B~n'qڙ H‘jsץ f3*'b=7g|{5=LR#hf2bZI;W#9 hrt|v*XF`dhجxx_)gҞbŐ#`פ~c0\.\]`R7q=A?ng"6#JGu!A"Yluu=c?տ5xxmsK̓K`ތ"^b /rvfTEfLN' M'"7>]m˳o?^5ܷ TOb7,BuNJ-^YNŒ{Hnc^'jcxF7rXɆR8Y+R]"3mP\rhqPb`" {̞W( L# ]")TR!D s-ՙҚִ֗d3v""~<-i]jŻJROOKHtZsѫWxU7ͅY(3Q$ X7:R+-)?EgNo3uTwy:|j Ac 29DA' ZiYܐWY,]A-ueuuL A fEyjV@RE([e;O+=Ty%{SxBC9"ԬTX2)[kbĘOMdimDKޤRK&-ߛǧ-ԛg&OMJF2ы]Tr鵈N\+{RBK -/!s &q^;vN~:6m}O'ML5R|ŽؕXtLY%.0ag2JBm\T{yxZkOnpLk<kqU=[9]Թ&0MhuutbKMe嬂Pډ_mFKF[O$PmJd"(Ŧhe,~dgTƎd'!0~CRo dϑLwZyZ޸qp}d lۿm<:/3u=Z˦S" V!i{6%Q[bTZڪ!Xm'Cl $}V}s4~REZ{YI6?d6>|9'ŢlEDZZi8Ƙ GMVmzZRzwwBp@tsȋmퟞŠ`^|s"mƑIqu@^k%Z&ϑ`U-0fk!s+6h&W5VkJZMR(Vjr uh5@vQc.Q#ͨ6S8hzVuxW5aEgXMS(i4ю[B&tlMS`6'x+TxPL{ iCqcχʇie1AHs5FcIx,V@:pciVfi@Ǝu'j$iŪ'j$ZS.Ta \_[| `n"U6Ae Kc(ȫKWXbiL""a.m܀Qexbˮ"mc?FjS'ܵ겂: ?ܣL=FS ʿr/i@ߪo(>(t|kEX(>ͺŧ9SӢ47AAC|yJ(ςRXye/ ιTOlyd ) ld1}(tN\")WG,_UÆVᛃ\n7z%i޲]s vM7dRtO=‡ڜ/2fmǓr\iQ̧.)aV%Z ς/0?;q2x^bkϿ_ėҩ s:1J^~*uiw@#>l7% ⩶,k]t7oڛ새sf^7}.q[H0:!7?>y.̭DFQ?B'c4^%nNo7hpDBmgSey0#@fT_[C[ kܶ{H#K7:"cvtIs'#\ͣ!N=鴒i3iDei8S!\u3HC3(Ҥ^(UniSFQ*d|)u~RyK2}.<97 %/J[G)o1Ŝ|x* 1P$otk_4oK upT|[]#;[%х7BJnW\hsA!}@l/藓QdTG5? R Ϧ"TCyj* _/@P5&^/@T#8 V_eZ`W ѡ |}k*T[}aAɵЪmkZ;JXǐl,.):YZ :k华Uԩ #Uu2tXhU\1Y^b0]uʎN&%ܢ?j}T̻g/ T9zKo.@#KiM!EdnEiM_`,=`N]H^#߱Hch8v\˱b(eZ#KIǰYVZjjbADYq5 3ijQ/0s=M]АXes,U@ǏϰqBU=+pl|O"\"؊p\LJUJJFFs;xh)~`p\@ԒJL ~Z0iKʝ6,/DѤ٧T+Ya~vFtZ5iuAl`s>9@uFF\Y]YCVDq!:eZCP$ %X ` BghzcKDyg(XIy=C/ J*CFբGJ/QSRN(*њjy#*y~zb~H:Wel_[LnDўhGX0% xdRhLB5D5K' -oI*v3$g9 A8 Ԡ6$Jh,KDBx7CI n$́h0љ81UB.]P вLd_|sKbn]˟jOK%/T c<5xf`V͸+ OCc}93얹^%<£LMݥ['@$zK-I~-2z~zktE?o.&Z-m]U;dtWYlhLk{`ZX_SUdT4v{gpZce{ ɖD,nwplGe>XMl;Q+(4x5Sb h[ -:C͜u =,OR9 y j4;Ru!Qy@5&ouϢߝwH.zs{REWk\o$a7g72&U x(Co72۬,xDt: 5d}+0r\ZTy2OEWc n֢TG\ (gc!%/F,R!Iv\_:uLhrbN!| ]&ϕ9]ƈ~x`1О88DR2s%5{P' `[>!4, O. SWP FEڸ5턑ti.ve:h`*W6Lanr6_Rs;9_c[$\z@$ c!94׉(.x~4N^f\|6ќiNv^^Þ6VVƎ/! د=7TĚ\+˷[M06*igW9!P>?G?^axҁ ע?^xݾj ImQ=[h45@ed׆\AņhxZWJU`Ҏl NȄ )@tQ‹ 5 .ij30lG`##` 5 (*""p?k"sQ4;J3P6B.iyM`=t+2pzjB6X&N^У+2)P2'O+$L"*,e[|s?FϨ+4巡؁+*9Q\K#P*~[=>?>?:TLU*[࠻l>79MtËJ42BnJe?3qkp]!.Bp:PTZkǯ46|l?Sۃ%~hu o~t p;{-$l)#4;os1؂^oOOw di ud{ #b!R9=Q'rqvRۿC_/[oWAy-ۮ¸xiD]9Qw_:=ۋ.)Y|p˜`A׭-~Cݦf?O)~Sl^bcw_+~lkȎ6En-$'nBWNx0*Š:VSsnJ ( zh&YHJ-hÌh`+!bB5_c. m@:<:e$tɏjP]-^ DZ#}v1qAiL0baZJG;{Jm492Lt.L20p[]{b;\pbUGRpL\]2\'"j< U}^][ .aEzA@"ǢŹ:rMZQLE  :)']ۀŨb16 &xʠ6xk9f odGSa-`\F4tKLF؈+*u㭭7kGZ!D~}e8Ɔ۸jؿ6 kCJלP:b1׻N -UUxLj͓]dj5րRx THtgFtq 1I0dwqeU1 zO|S' ,Z%AY9,ݺ@q#"\HbL%X^ WGѷRD%E#QT!bZM~ Vpy/(Vƴl$'"rsl-xSM9*Fjm+˥-+]V{n +дcOI[赈YTW8k?pb{44CVFl<'#&V)P; . *>1Zmev|NKC&" PLMbQUH~h,*CaZJ8t$6) 2 F~_tE M, YiŤ O H*#FU ًF<9S"nMR%VqDh#- !(sҶnq-+*TQn -CN8ULVeBgOBUϕ7BF'ƛf=yšlVEP aRVX/.  MMH(ބ% gG *- y$ h>MŢ<\]rub=TȨZqc؎@jլ-Ux^kR7 IԨXW WI<4W\N5+l2汭!$]MAv KoFоi'!Ju38*J|MMb(FPQp! ]]jC1'yj텅$NpAV;I+>X~nvK$dW+ *1K=S \"5ÄY~͠Yk昿1d'i&ɲ8RT0l l;F@c[r??%#r^#UIh)9$>mWמ%gs.c4%03jc8X{,|;z]gFzjyo⢪挅a+(JF l2>f}x^_]NԈZN.cQ Pl"9B^9MxY<>)LRYz ͕pb7k) o,l.^$]%<7#LF6Ұ )m( kdkdJS#`+]E3Dz΁1ńz^@RZ]]ῩaTE,㧋)KXiD:,s@3KC*{Yt_ @ >X4tIRZYH]B] P hFJ!:8 Og?q:ܷzъǏ%"uu >]ɒ۳a"`I`ht<&kk*ƌ#ަqDтi~sk_pPP 4J6+u c֝4p O:K)/6-Gǎ2#W$:(DHif &iP2sxTحS\Pa/Ƙi_(☆\VWh2,^wbD:F{E lxqLNK E :Rt~^E/4Եؙم%p)tKmP7I*/;[֜Q'kTDP̆wez qp}#>1*'eEˁ߇rʶ݊ WRXVt0`&Ei0G12p@46A+3 inG+Cظr Rb+_@ջJG$}-TVQPRP-THPNd" 㺮.$ ۘZѬ\.uR٫k"7-t3}%> ΀`+gg]{W_>p~5 `vor,!XglhآWGQINܒ.J ѫW-vƣCZF\|j&\ph@*%17ZLzDh 4 iB<_X8-XϦN|E1$N'-R = ÆFD=݉c5qI 8",pCx[cibʗF⼂Ÿ8P}]0ѢQ(DKA^F*^lazzVK.\Z#,W,ԭ:~d`> Jsl 1UB<7h #gQ|K|uP"D򡵹=XT6u܄291DGBޙ!M~x^ F-# SNb'S{6ԌHl+C]Vl\[Ÿ#f`Hd=,T0' f;JH=lvWꠄ)%ylhQVQzgJLx Ztm6im=va.^r{o+jSwt¶1o ;~sr|t |jS29U/qFgp:= z죊s|8 (ڧm O-prB cT;|AN<"8gbw!0/rFf+鄾  ȥ#R7}Hs4*H/4_^nqO|Jd›f(<$rU|kQyCQY=}ژyx,f1)?C̆R1ΏE;޴8obla3Fr=qbM t~>^/jaPάLd5*Y ǐU Ο~:lo;mmyk<`dp˱%V,S;s`"uEۿ Ľw&}Ɏv1:JV.1(F粙1ج<)Dgg}9O?!H:FA0M=2߼yStvnfٳg̋Dٚ֗x\I(NQ2FF0|CCQld;W{5x&uoZ\<'KeZ6g(9ml<1u"FL-XIx"jKc|90d eee۷ٖT\eeI1byPc\SRyX!isy/ImpWn~m)=Diw""119IIIM{|ocӿsɡ_w`2Zv*&Bmkk y~$9"W0V'ǒ+X|z8y\*[0+m{3vh ؾ3+J,LLgffh1u,2½ӊ >i*_STP1('ޙs ktINN.A̽9Ia}w|;ש'?m8$SDE(͘[@C=oBc5V}$e&]A:[f7TyÂB::%BݻJ-ڸt< dcF O3y xtIxBζx79+#)3jBS1)ˡ:^]pos|+GkTJqr,Xjw@/ Tlk;5"8ٝ/Փ'z";>Oo XfurGoo~JRwzS&l[j'/88|Q;y2j~Ե짹; =c~y=<]M fĩ V5;垠TTH)4 i6JGD[):qp~<[RB:ǜcbW.=AH7N@zc@QqtmK:}#1In\kBW1ɽg6J1*#j;js,!WgY&̺(Af`91Zx\Lb>5ã]:3}$ttԏ[bWa%RYrGV@މl̵44qQ$~Տ8GGCS;=HGϤv"Zh׎o/=Fl-t%NRdOBD"En ڍmYh+ʍ@¹?T+w0fL/7 ʨm CX񂱘ZE )/sz ?~\y1%##(I8I2sZi}$R$tx4- vv  n[?I-c_W@gO97L:5^Cs wU|  gRBUv+SβʃƼc@^ 0E9- AH->*"H6҃FްwN]?_|rFo|M|0(]$IRf )BY1,k|K2\u Y_ıܻ6tl]3 $uAru읇]ֽ?jrK@CK|zQ&NC-X2W0g\6Κ$Qpkx#1_x kpw1>ɼDJàS_rNi*ŧ s65>LLKqMBuR+e\ cNdLaYOFq(mY~>7$Ox'1 q1=45&>N%X vttH8To5 rG}$u1m)Ny阺wm.C`X.܌K$K4fVO9,d sous;3!<CY>O z9WCe)bvnwg~$@h 5CJgrI G ӯ->ոY,O//OXbQC(p Z @:77ۯ_zMXyC5x\ՔfH6U)q ftMJ,y [+*jjjnÇ"Lyf<x}[%:>uxZåO5S߂D( YC ;kcPֶs%/ 2P:6344>rD)*@faz1x?KK[_|?t,\[~xB(5co{u/ H(8Jp X#rC DX*jj_ywYx}*ɡ˩!c^n=ht lj)=CӏӐR]}Ri9 ".=dıtfkom' 888skX PVJ Ϻov򩔅+@g. 칯\J83a,R{KѴlLI:Ak2ʡ{#`Q|cc`Q՝ ;J @4v[ʌLW(=e.8ޮ>:=[#sˆ6jϓkcjW-]RR8%Vy t~tPD/L#`jjoZH~S"(j ]ԙ5^,K߿k7/yn. Y?*aD6X20Rd(0oGG"#):-[y={U_]BdP\_{z2~| ]"XRGEn~cЕvK "rW&P?!GI:7~.MhH$)sR@kSWU KjQjSkmc-@ SyOos[#o!řU '@ЗQ=xiz\h4u`\c ck{%~ī{)^!2(Fy}WSк~Ý/u2|~*wr8J+)Hf(|/K9oooO?S?%x [B dÜe<>0BΝ;hk7Xݥ % j` 4+LZLw"wκD6%Jϔ8érДzvӕZ/=vtFFF/_Եة)^wyի˼lэ{fi_n_#q꫃J|E>RɌͷvJ6@Һ[꠬ be$[ $DK![L:%H[|:V:g/0ߍ0Ioyn|*)c~š@PDb_E_S yJ6ys=2oW[ܯeJ*}PLDubu'Vlqq1-/t"wy bSo_,JЉMUAmBSHZiPj̦yRJ *p:WJIIJBX͠bbtOLSzGzް.9p%ADT*sすni}NoK㏸rg] o?`-'>mCKrss+p-xU_HA PΈ:TNA}(Lчdvf&vgY(,R" B=C.걺#seEQ A^~r_.˲Oj"QPCMT)LBDU1ÔK&ê H2j<6!W"7Zo)ȐCF_"{](&z Nw.ݿu-Xm{_,ze0D:l &zkd<Ϧ3%wlj00`9u\][0Z)'zo5ֶH!BjP+B:P6V ({heH(Š* K8J,4ꂷYciD|A#5S1+#Ӝb-~h1 勪& @Ǯsv.$Y?wYasLEv;:5swi5 G0Pǖ Gʮoe##{A<"D5NL K萻isv_\a(9s^2MLclK4ԥxntD WV5NxUMo6=/-YMa#vvӍɞ DQ#S)Iߡ)4 H*݀AhໜroC#/,p/@8Pr a)@HxxL7LJe#zNG2a8zCJ-r0w㇫/@;p@,uƒe1֐K.82*!IIL%!ߴR:C~j~՘xH>9˘ 2'ȵP!\  ؤK"Z3 JXQ"5^,Gk<.LCZ6 pB5ZM.Q&&!FEpg:*jDb˰l{]Q}hUa4mx`b9K-gELoo1 bя `{*ڶQ:`T#bv*19ð2F4J̠Ĉ2Lr.=&qPذbelKP#3ae[Qh4{j1^nƮt5ϦMb- "ԩV(=Se6$iAZ''>ooPZ'W8oYs?=kMs0*j^0I~-D.w2<~Z$_7O嬉3o^q@-U-ޕjײMZX5̝!8vu2->n |:[Tvg+ Ã;Y " W,4-Zaߠ*UVND/0OAߓX `QߤUpq&y ߶:.q&q&E5›v7xWaնȕL^j $lyCʯ`\CTVl&TmVmDI9!z.ntO"[LC(ZW3=J2z0o7|1}R^U;6n}8.z*zX~ B?ekm\M>Dx}y_GStd9Hk1Wxµs:aGH"(3#0VUsIIa~6鮮kz wť}j%X]=}-,?8 hة=h.;zV~u\nЋ{31@vrmWfGIUg0{z%F:_3RC_zbU-,-BБx ͻ]c\`lns }{z@Ъ͋ݶC۽ߨ s`_`{nޅМB Axqm7w6ԋ /*w/_T@qt7Q-mv->Y#^ĝ2%qX}پXg+qc_} nLuv؜gb7|Lf4|CY_35d<npv|k Oa9bRn˰ץk-x'P2!*NV9Ό xW,`CkFvaA .[wys"o]`YxiGCIw`jHDO[`yӵ=y=KTv Lrc5@X>!oPnUT}̉ A+F,pX~'^oվ5 867w mY"O>LD-lZQ nbҶ/LWY,FLKZȮ xg-Ͻъ˸-;ː8\0;qg0ak{!Q* NR02׶oxvzք'0Ɔq[u (b[ .J(c/"f-۳]1v2ht&;p6 |B&Œ]pZg>Pf-l |Tg e tZvS rPK q`tҰ ۃnE`xooͣ> ־96:*[nx HwN~To 󣝳3{|6?=z{yNޞ;p1uЪ-;F ::wmAkkov ׊&& ٟ7%.Y,N,d_ZձuYmtFu[hcFg6jmaeEmb=p%gga J[i`HpĈ‘XlnH>s+mmo8\t ?VQ*lՖB~dsfn\4W.^ m &[`wW$xB{K|[йmL"wT<4mPE탢`H(LJ,N!Q<?SxֵV(+Ҟ-vQvk(hE݈N(3,I׼@ G1wH@ֶd:+LVG4]2T4LP i!JDZ[-D|NGA{+Cw;UIQfa(C6\_wA}Z@ڱUA:m (*H+qÒe{-X򖊝SRjA;׳emۍOZ Gϐ8 I.tӢԾ5}$(|хs(:[$@͙J 0Obώ $0Gi0 7`=-L=gj+`i%PKIl/ቑ[ rd3V㽽<HJlnnE@R[$ 4PK. }lqma c ҢolGF qbI=۹ &RHݏg``5GJ5(H4*D(ق5i癥y R"Vmsi*{:|n#QT(=bDbELrvqr〤eW:HNZ߬nUN[$zs qJm(tY+/4WBx% mA-Ш4>gVpiP2}0$ 'tN;<ڻ=4 ,=߭%f9jDN l݊wwf?Wiu=# T *$m ~1p~^g&j[5O| 8ⶦ.Zmh0ĎY 1d!7\ ɽ g=R T\.x=dO3'iHȹ'UQs6ɼd*^P PD)"]%yʋ%É r fd+B8WJ6,ڌyNflyG**B"© g8ŠJˈ!/WFXLX"mH!"z"5Bq\3HRJH ᑤ" W Y#HWrA+/D*Zaaif(oeߨ`Ney=!A(oqUK*2"'V%Fjhpfz&aw2Q:K .:hZ%_Ӷ f8ܜD2h+,kVprGXx{%n\35<}HkߔHIwP5j4 㺲B7›bȉB> ^UqBdy~DA OO{};m<5#!F.8*0U#윝Sp'SB˅VlQzz0MH UgMx.ϼ„(}ГSEs::>&dtu=1D:H5OBm9xBbd53f ͽqtgse>ڳq@PDKp=}UzFfHXw{o!ͬff=yČ@nZe]ڐ0m4ըNTIz"*E'WO^{X[T8vf Bcci9_2|?3[^Eg %`k|khkBsf:ܞy,O_D:c ?b-ǂgU:eCi& Zoō n[Tٹ`}WLf0>mL#{r_|T3&X)f\pϷ.~a]ǬcW3GnY}; <3@M3ir6Nf:<A0˖xPJ'Pܫ|L1m;Á<0/DY=l(WLj ~~+lM'r^LV,qvq}4a`n9S2qLc }}CJԫ>"'qه.L;);@&cF|{6C\?)$\{&tV=2ۇD;ĴÓUlrL蝂dEV3pQc>iubyɆ~2$-9e;X*<*Qs`2`sEzV+DYϬ/ evN3;q֘\SЕ=1 H(F?v 7S2kApN*|G}'}5>zy"Qpмؗƕ0=e;|cd~< 9."①EĻ[kk?Vkd󎚦QGJ ɣF:EMAE:!RZ㪄t7M*L/K#EuϻڟrD qumaruMrtl_g} O2xhxIBN+z#_&ėu^5_ 15_~ N6įEF1ʹLq󰘂6Ρz!ϗZ=>c@ə fQQ*hƦi=0^%e6Qjg`^ ƚ5}^'1$84wǟJv(nP(o0-I~,0 {_&0>-Oqlka"dƽ7&I5DH~;wL,v<.z7 'c=_>n8yo$p~Rs>D_=-3`/I&G4Tr>U}ތ+=,zhfͨF8~\?kf)U&Fo:8hF "FeY4R'cVJ.Salbd7K3I{Ow,WhWoFcڜǴ\%V}{LiiM) ul`LNO>7=϶fn}c'v `ѧ;KsޙxPI%yaKDQ>hKwь֕7iX̞Q# ch;3,oĪ4*g6 ~ɺu:=nslQ]5s'zYg[%";O}} fp |U7Ln擧YFzWPMpF鬌;XDsb]q ˾5xZy`-s_ã>~m#cRzY|j/+~ɣqhur1ffiJR6i/d׽zvF7|ظz= 'YƞCn'4=R9E^g2g]E3{+s^Nq>љ9ytf>t{tfN|60MGgϣ3onpϣ333sPG|tf<:3!3Edӧ 85>S>L1zXh֝Lc֙ײNfݻerq".X0=kjvƺD,GGT|H3}SaEukn*C) fZd!.L}ͽu`vn{θ9}ցy~}2^KVAYװ zg/P_bIAjșXiQSzQ&8^S^8[c=O7ϯ-y`vfڴy`*?Dž}KA_fH \ .=?SLudO' z(lÞYYq_}.)#)ӝQҍWQ~K A߶${ٮ!K2Ͱ>gh8-+B|B:e ; >>3Gй՗B3%Lw$Ĕ=y䳼u5+M8~rJG㣯wFS_SH|I`9mlpr|Hykd  /RP 1^2x~İM5|?dJxfNǚ׃=POjieg ~,L6K9.dg~EHL$ tcx7iܝw7މtC[OvD bdj \%ʸBj!`p` pI|LG(x#bgձu- ;5-B e^1 dbz43qP`o~}U.o 2%+T 2toл+י-Ͽ~6{"%:ӵRU nBsY)VʆXC fnƣ369n;!*i9u-2>I6„c`i(&-0KqU` 5ɤ>t0Ŋ^.?hʕ^+I^%@C`eW^*"X!_}XưvPā~]~G<Ĵ6cAwz=}t zd5"r4QHM n$;Sl$>) p*Y$2 OFp`MN2 gpl,;GF(Ny xTCeC~p # '^|bst1 N11 l~tC"b*gՠM r`NNAט*Yzսh[z<M+f6Sn^q&!2mjM7pdƃcU8dQ*fEH ā.+pL kkfmMh( pei =QȘ(TKOIP@Ty(Ip?hh|LV/K KDqqMkkTB*mz8qi kzF)3l 7*"&T0rp { ж| e jK&mlkjq藃X{X 'Ep^42ykg0]( #YF[1 /):"wϸE)R>](S]*(*5g`Rfr 3D ufV1+lj934Mش/8`uaj80lFi(VvRвXlhh33vIQu)Hu[)Fj"9%FX 9p$qDYK+y'LOâS(?"Xrd \'~[v‚Oh$9(]>^H@!,~aD>FZ/l4pC>jK":%EpP-+kkd> V#%S#Hg{դ]ǽ"]+k7uM{hz6qꥊ̬#&mcK`]7D+U$(njϵMt5h.R,Q0Së.*R#D'' l3wU+38TϜƋPt`||͙"3*/-0޹CĽ.<@.qB(+i$ƫp޼%`.S=̜H|ʋZG ث={44Jbca.FMTm>c}M7k JNxɪUa+%CP35luu JX4~߇B*d/K?7L uW7g=A p8?3IgzvhU[Vhb <-P]?(kRE~nͅ'hj ]PĹZ%y6|0`×DV Y YD"n` ?B G,57L'.tEB!1us.l/؎$udII)^ZSOePoE9uyjGiaFSs<!n}uvvJUVp0~BeѪhrZ`Cabc)kEC JmM]tYMMSTNK7a BL}g6;'IP8u$p$7er8*bW}e\Np QJ:puXheT:NĂ"L&QqlEῆKzNxuw~?@fq{|5TEp`o.Qvx vYk5iGC?x}oйdזxF?W@/GԎu*u;.:|r ZM۠ T.ȇhK-Rǒ"E4i.|(HzA|^@ޡ 8|i4_FJsWkjCnHoR]@[xQ8P,f{ѷh:!1 ,X^j p} |q}[)^L?C}[%wƫUCJb$0w\7lmUsoRLh6q44s"v,Hg#>.Q^H`7p"E|ͨHbyC_ͮ&ćOa?1/-^AmD1 w y%|'2#yEV@̈́R\FHraAi"KRHĝcmk ׍<4vmBvb dO'GՄi1+] ̑{Di=:T%|Qg1ŮԂr"]D5WBW ,c -Rc ERhޥU-lޒ"QC$+e12|+Z4Ќݙ})c/1+e{3Z^aD+8>rkވj׵V!y֛D8m"&Až"aV'بl S!KOp3-]X?c쇬ȎXz{dn~đe'Aǁp4NT}:fZú֥lEX$IJ2ֳVg)KД\ց+uuriMޑִyrsf:1/etFoTeCM4)idUѭOU" \l^D!A6,D!gFfiR.(ƕD<3# QɈB$Jonwjw%y(b{^n%MPŔ첿Mb8`牧ÓMћ"[8Nxt۲{vpko9n˶Z9,cJ7NjB]ÃU(%rQɨ@$JoT+<߶P,dN*#rְ!] o>Z4M%b`*EXJHF>>y(C 9y$ J<y 'gԁ.9%[2?¤ȏJOYtRЅOч8iBiz11{d\1=c+[Xv0$WP\]ncK*v\ ؎2ȥxs(hq[<\q;VL[=M-ָ%8~k h>'{h*blhl@Zc1XlJ +`=*FXve0`EoЍg.ǠEc1P:QٍsNb{EOV+Mƃ7G?UG#p8v]#4#!8m2"pNtتW9ŵ|;ri9):+W2$e,FFJ6rd2(*A-#7IwBytdť &GȽBж 1 ts(0yzv;x0 E:><9"<mg4EuFkș/XujY>$E\BdUr!rU)uZJ&\Br1ti D9kQߡ 91rvm.Dʪ\}α"iX,FZ1vh#(a#]0vx#J7FJ`F伪}ѡV4s5x_kt :?^h:zO>%卤IZt V3Gaq[ʹCRҶ4\;لɠ6MG ǥM;,UƑ(^ind KDi)LRnErn m/%aʵoJ㍓pDl+9+ }q^t' '{An IjS] \4.Fhᒉp)?Bm &@b"\ɍ;&@zh|.tɼ56񅟝g2㺸$U_}t9I,YrGX֠@f7l 3)j&&vpԐވKgAWTghEl ؽ/Su|_ȧ xn[3rLJL" @"%VugRR#3J8%qc'W s>~&}Tkw-t .i'YA\$n 8PF܄9a%&0Lq(C>,@0R&i#X7b9RjLŔ!\掆Od@ңMN؜iG4ӟPh>n`xx:F:5x&-45ƭô`L1noN`h>{}sB^km |J`3Aޥ;? MNY0q+(bZS6&QYLRu'Јeg2U)xvi 7*F<|Xn&H禔,YI@" Di|s1,rZ?nnb}BlErqdG "#)yIs&ȏ6d[,?bhJ9FO_{~ ,;=Qw FNINY3.eS<8-*olz@|lnh[-=ƣGuB32uR;q_FPM.lLFʰ+&2?6ĚBl)éxur+#dx$eL!"sag| eqm (є2[981kʢHy`܌N"\/ۤˎPD7X;}oomN ubj/i ,ݔSwʋoiߘ.KyZx~Q)#St/LL;Z<Îm~n)(qv NGԝŧT 3ԼaJ9: {^SqyC?ڿ9pt{ӥOu)W!蘄Ip`\zҘpQCQ,O:7-OƫW*lkؐғ< !5"yDBjqNKHM8TPHtB!}Id\_8wHIK D'!23Q!%-F ID𭺙a(iyfyg"rsQLU5qY ]u&o\qaEХy(Ľۑ0jŴk@ 1v'h oÏdϵB]RXZc`QWİ Ԧ/өoTԆ3RZmrQfdMe+5ynCKTxV>`Ϫ*}Iot նBn?7(@ IHïR@M.9d n$t&aT*@Wx [Ҥ,_$K[͆$穋B4yaXB.v MMD8nZ]8D*)_u%`r[GV0RWٝrlyE};6[n;C폇i1Gv/A#wA]P7.o  7W@b&ԙS*" E\28x z/`"_ތܳil'M<4%Hov.(O[ڹ!dJLutNfUcrnD1QzVӔ4 Nд4;?oH(kf"HkHrNmq;Mfv%@r@f?D${߼\-H!%IQT E&rޝRt; ч&%ՍHĚ%U2EƟڒS"%NT£@w ab%!ol 'V*4d+9c>=o̮H KCa%!3\1륁hEo|B'}8 SMF9y6*6< q=UK^ЃȒ"og+"uf*'"kuNt3q77k W_Do(lӈ!5n%+h@^zP0l r,*κLPs.iNlܭ x߇bĤq ɤ‰ {U${yv"E"ejQ =3q]; %cXSž5:1>ZZ"'U0FTv~Bn8ǸQ+7>,ќza#Ry$S'j Ns™MˈգQ<ކL:hyCn4VWδ[JҕhϋnD"QpĆ/@yR3S =zQd9`UEOuo2t7QANDtNNYić Qj66.(uxwP*=#8ښ}\%1C(Gw|24#{|Xn&hOVY¤*3Pskx?6DrtBYDC:A[$5M3W74Fmy[..m vrt8"k7omr vrB2|~0t_{Goqaz2h@M؁a_onnjwPN]4we뾪al}(1et\B猆hm$rZ7=evϾe]+ w ?NvyW EyLC2x`}/ D6B D <{("B\v?_*āE& Dk&wg̡"QEt},"3q d+VHKY 9/H۟GH qy|o&8@3e q<2%ʍ=r% oB;-K '+RRbpD@Վ@Rh%Du2z\TO)(G :kP.!dp c<LbK@( u{]">C=T.ަǙ jF5An&tSvsU= #V/'@zmzY˓L%TrI,}(Ba @FLj#!b.`q17* )x@MJ:ߤw:[]guj{zqs}q ] Q[~'-h)4!Wx~;:>9?3pįʷWb8ACJq>pץ5Mi;iL/2t,?(Kjs? `q+Z 6Dva*ly^kmnne}~ww?|@l͟`Mچﭟ!n{ 2d لv61=\ ;;$?nV!Dnm;B"ͷBW ƞ,eq'[r9?tXS%9>y{{vE?9T'?&??*6dqg?C@~vΎt)DoB[_!ǀB_/?ßC9e7-a&:Wnҽ~lORk Īn;׿bCB 3z36!B+ś~W ?'g^?a{ysHC^Ǖr]vglIɵh=p޽qKbְBT2bYppE fUT^V 9L6fQ1"*4Q?mmۿtOe;Ƞ uRb}-^@F͑$+^/DT U3d1fo~Wl_32P.@7h+館c\c kk}d.×-`M^;5kQ"W}uoY@<`אA} [vr#.IM AlWrdD ;-M![-bɱ x]NCxgKg{)rjlVtFû+ d>K˨Kx#rޠKgd[ƼG׏TSqgJܹݼt:5h-w[߰z7sFV☱ц(V#IgԈx""AEk-p$CU9q)4G<$P27rù0ڃ.ԋ,w1/缇 2'µ($xq|$`Y弧*<2N}*ENk4]-"oj"!HZ''Wl 0rMDzjJW4ZlKi0*7mjm[:='r|V߉k8,R(`oy_][݁Бi(+`uĔ4!#k UKe9) }ʔVZVy%Ɛd% aj*,2ׂI^l^VztˌyCϯ9lFcQXߞƴA\/Y kUѦ< Z ɀxpQMB䏸|,QjZD+aho2B'];* ܹju"ǺAʶqQXh @Xx>0)MJx.qȺoMlT@wgA^_d9ҟUL &w Fi'diń}`3sNXHB+M8 u 9&x57 d Y e9Jd܂ Gm'6D,U sy-0;nIޠ%!$}1rB>p3'DiBa=С}:HP3jw=յq~ Erw3-Jg\TM}rMn\PjCbAyzK OpR 9b+u(&I nih`:c0d*?6@P#/l#oUvYvۉG?]m82x͵Z6X]*^j\l6b~ 9@[cL1C”:r^ e^ɖgs"}2TYFibx%f)'&k5.'Sz%3kXB8޿*-cu#sڢC0iFL yȷD(r!lmG* xV>:X gufeՅ t6;եTr:d aֳ[Π6,u*++ hC^02U\Xjh]n>< ,k'j#K wdwU+hB @ Lrxt9dv. %+q W >41v׷;uue${Yu_Б:YAXd2VR[X"(h{~*K䅞鼑A )(xy%}j|H?"G+qtS3O!\nѫkpb9ҲX HkPڗҪ4鮡(S7ʫT$ٰM$ꚮ#Yhm<(MF!C}P/~fIm㇒A+d>!_OE~!}|>r"LP?*sydQp7V: @.9?q;QL` E:B`y4wR˜M ILӂ넁0j2Mϵ܁1̲(|b \UYl&ń27KvLnpi78`ąqnUs!c<\/mW8P9Ia ֒J`%e ]wS!EpNɃ|BmaY5!-nj;6#tVPcG[]EK yΡoM,@z xxZAI,i$n0D$4ǷBG [ D3712U?+jQ(r,h_.A0zM! Sh3uK]sb>:\ Jjgmt .:+ lA돖M&X@sI+qZ*^[yBjZ/W>S-rS@k2>*|X},4V+<֛{$Nmbh a~9V;=`Ȣ`k Ѷ:0z՜SdwC&g\5u} AG6nbg"G3sjpY СGaZN 8Vj+גCK/LY-ShbO4?9zq`BlqVT$gl&Q̈́c9ٖw3"/s,S1G2/sZ5l̆=Gh-܇=;][;DN#3!X ؟7%.Y <1rKAsYNlAҊ|ϷIiͭHjDi1ǻx.<BBuGv c ҢolGF qbIX ȣSUl5jLjbE/_Q<VFMz,%?LVw^:alǝCHow9?MĈ $H(E(]I`fN&Jn +yx:+Q`D`Iזpb2*(NQX UVf%q!}](-mvE $4II lƵkX TJv| zo,ڐz/$}^chJhBH%\r9iSr{ЖE*`@%N74lȲ'ij!ct [1raZwKvg Ha |x2OOnt#v"ENܯtkE";/}S?WVYD=<$׬6q%Z܋V \8*3tDdexg^ :w_PaSX@*.`I\*D6'rIuiJ9t4]1r$l%$m?F3A G̷(]IN.Wn#`6I!;bzT :*.bD,r\x%6xrP&x8d KҢK)!^ >fCt]I`tunedTW:KK5:" QJw7u݈B={.Uv/ޞa2k lL5DD5X3/ݏ MqL(yb7;PrPD~Z 4)$.IDjKdOPŲo!^Бg QTF4? 1=6+RեD;-pF o ѕˇe،!g;m_]Awf?҃tˊ`tS=2O9y |p{fRqDW[R5- MҁQYU8&Yؚ Ǻtj'%¯t'@ѓdhln Q@'&jm D &OK4nhN&UUuVQU2\1F.V OIs$ADxT6D#9 |D "F,tD,>!F4!k֕(Tg#}CN"{dD|D Bh@Ni~ GMHhD 5nQ ftqvk˽ZBᥫ<wt<?F0/{ga,<0ge?YyИy2%WL<~s521wd)\ΓG1b̓y#E}(V<;fdϓ~Nb3F*.Flz2ϧ\DS$RNFAU9#d^I2B(^PΆn(Mm"TyԮ\fF3ȖdsK_bl3>UZe4*^\ڰFS.W} -VY+xM'ƋHʃ7V|#睷TZ+Nc9ݐ~S{=&16Jak>͕rͨVaf,ҌyFF3dfEea,Hy:MJ. Je7\.+#UT)Lǩ,172fšzCi,Lo8Ho8䑕Hoq^~3KKn%Jod"+ DE_fw gH7)JhY hsUdXVAxg_M揢ɮO(>@}t<W@>CK:l[$e(|5H|<+q9ofw Xxey; /cY0fyrbwF_* E-|ul1qzHVh*+C4x.cwgOxUR 2]V$|:lF!(LN1jЬg&b:gA+uo u)V,ޛ I3F ԁ6iq-OJ"o}#Nw8tHu@' eϑ43GPLm5:]ڟcd Ssf5 7yhgs[dE/Gt`[\TR/ 8\\ԕh\XIܺ>`s5k,譩Y_}ߔ̥]Upx%n-xjҤc bBg=*@'W%ʪU[@M+2EԁA 9|BVRKeb$/P_~NThA3vm,DQx- IN+8zJ;j~3+{>՟[޵[P*;:5j6*,b=K5&b?i8~tz.~t,/Ŋ@V_} 4t<ܛ5ul}X35w܏u0` #EuYǫh%[REBf~1`eb¾U}ۤ/]r2fQDFNH7a~Q뉫[xoխn ֵ;3ړ:ɧ><rni:Kihbq~w OQ%7p' VFޕvAW^e̮%MK*=-(C%^/nқO Mn(-՛+خ29ΑP J˩r$J鹣 t}!wȫ[eNp64Z†RyLpL)\G{lZyQYv) iJ`UsD5|̰>8^/d>q}MFFr{6Oitr$+|lcqgI)S̭JsN56_/C6 ;E`%*Ldr/meN~1VFY_ eQz=DG(/C2J.33C:y3L6[TR8wvs۾d=]ա|$u>7?efnY;M Z!IOHfP_!,i 3e굂=5 ;A n܌YyP#33:{f]W3\n|[[NR%KGHruJY.:?N㭙):gZ_ό]gT k>Iy\49uNdDLT˲}ceNdr?r#kiaƙg1e彧;}>Ʃ/ˍ-ڵ[݃E;i >igvozoRQxwc焟JVVR=ǂY.6={ eەܗ;ӴC3ЛA~ M[[i5JiiaFϺ@KMbtF3+sIX!̙іa%jg.γvNg}qLӪcDڷ&Ɋ0dw[  f1(d뎳lRGc>d=3mG7\?wX?zVA4Yc68ChD̯Q&KH>/&6θ?W?&?sc~ՏsctI[^ֱ1 GxXxߖkN$3~S}jpI#=YM;`Zwa)۱\ӊۍ2$R[?Qȅ\'r!*d=s`>E.eB 2A3A"lg:t~CnTI$I=6X3{rԝCb=ţ/ .o ޼ɹ~1T%(RUx'h{]q\z䊑Vsܗz?υ_5߽vinf-zm[.e2㥞S8Z-Oafxslk 4iJy) cΖ8*ogtz3vްL$ r[~EKsXXΥ,^Ӌg漜<2|n'a̝iϝ3OKθ;33wf{X;3'>;3g̜;3s EBkSB3@[*Qh%][o}ؠ.~sx7-{J;wyqݽ•QQ`yxJn?B]ƜP5ҋRp[YO{q|T觛Gosr|ݦ6YT~/}|zv8( uٌɡ^sp0w:;S:w$^4n۸gVsܖq[E?`2ݹ L)7MOVѭ%t klP- fsܳ[4Xv?=>G W;>>3Gص5gKHҘ]WE>ϚJoSZpsRIJGG_(5TV |$7$hVwRgkq_XVWj2UoCq>Rk^ȶj^T GMRkX;3nƽVƎʡvZvB%eE dVOkIEЬN@0 O{^$~/E B&WT΃A4/RĽVQp\ 'kEhP5cf|zЬx⊍AIjŸ^-+ 8JBX4UL4@E^Eic$^RBɍ&U:D,P 0+sy `@IEWb^]@@ OppAW+ hH>h|XoK !%?5~hC`v;YD蹘4Д R[UE΋H19TZpP1$DT!ZVVb E\ CXӐj+Y> ^ֳgn{G4qSo~d&!Et5Jn><:^$CPYJɵI(RMY{^*4&YI(XU\"s{{ui4~p-&seD2CU OyH㠠(ezKrRD#Yj^VVx5oc- 񉮣߭V}Q*H>T7&S*("reds g| K0IKjsWؕNx`t`LAN^sAA)W?N:aHmz{U- i%B,(F۴ʨMr)I֫TcO@菢 RA< moʼnjUJn5,ꐍd>0*^ [Ov0=jaЂJ<+wj8>*N`2/]hTf٠U5Yb #_'r^%o:{@0Z|Xhdz`T.*<.>4Ka1E7A[ /i<-wWTm..M" 5}1gQ\` 3\efV3kbo/^,f4u"UQWÁ h z&$լѥ]x6jŁϺlر'AjDq̣DhĆ *b )W8R8-~qbڱNi0.ف@7E[ *G*~`[~̂Rx94MB;k,2pȋ 07mGSI$y p-oo[KÅ2zw B~:ט x$^QM:}ywD/zQ>2 <_ZXX.3Umz>b29PEa}q$C[rj 7 GP#D4 J6$J`ᧆqSw*[e&'lUF# g: O*yʬ:YAC[MPiL6>XS<12| 3j/-P>.v ZWYm !M 20 , d`;fXy @,DPpokΦ nthVMiaPhRxINom#xpajH0hxl  /D.uz] 4izHf?~AV# U񕥤R ($UX695z1ſQsɻ jxyǠeTlIxR+Кbalg%m:Hzm^r9ZBC1f,nIz^M?Zf4ݵdZЊqT| 1V)TǠ]I2Rc_E`6nMFM¨8gK* Ζ̖T=|N[qOʝc*mkfĬ'(&d:R\bUZLΦ^a|v87hQoP"pL4x#77nf ڟaOwLR,MH`rCcO~#Ys"tÿW?;(n,>ݾ۱*Wu%6ǓOÓc͌Sޛ,tJ͊7;6 !W]8M,G\\X" p8E4R5WM@oR[A.= 1n*iӑgY*h[*VV+.Ux|u1ȶ6IbtF7`ߠ5_ qj:-1vQU?I얙sɚjiې^\39cyײ{1  {i;TաgeYNWǯJ OVPn0468dIu=_| Rmᩤ&fkj&ʉdžJ(i5=?zhE=Ҋe=O#7z,;019 磇kN),1NLQ4TzF1e}eN3?mQqCYINNRVt]H]A>+q=%g3O5m 6 Li-SRiږ@YYZ}/^ե,XZ UMSbRڲJ)6w$dM*fM*:SB]2s\`"Ne.3=j8\8fWO|i?i |4j((KѠX4 aDc-FWG٨(v ^fl mPx s(E'wx\5ߏ%zm+=(=Gh5 ƥxaYP,L/32C`,~OA j'qej'`lЍjfxi'q j'@id#4w H;\km`/?Q6F`8ND iÖʭ x X]c{7h"cs*W2eբ,&ZK7l?~yyXlL$ѓ/8xzRx!5gK9X\ )e#^ h[۝ `hsgZhmXPl?۳,}0Ec;Gydj1uZkb!3rd]3r\]qqTK|ˮc\D4㑚߱9v0ƎrvoǏX1W R }%`G6\Tl솫IC3Jqp nq7XB7iop6\x=+]yaƄzYh,4Qӂ1l4,q1@h89}9KP;c-AIiIjgTq'  ݱZ3ޢr(Xj=Z֡PM zӴ0=ڴ#*FJ2$Oi"0$s_mhN9jbfzUUu4D#Xȥ_A<{Z8FU&ވOR,V`WW hU:,Y,p,pp |ap! ,\ӈ46Yr~ۧLduqW|_}nVY%GڑC%͘2zPM<[=#D}g2LUmV{9DM'MGM*D]֋ޫeEI%*2qidrQ̧_YBp2[=>Ox)D:1"pKgAtghYMt =4UW_K7`_7jzRܶx0M*08Z1Ƙǒyj2i'ǚXM0Q U gcM2k_ !C0sbb`%TolZ5*A,װ$攫 !qP'W#9/~>wzN~޿ICoQCeM;zoK Z΍ޖ$ĭ=WmzLKQ-[Iqo$[ү"]WPKvKw MN੄YU*igu0*NduewVYݩ94ՙmwRR;rs#Ya1F6BN֦*nY^@{^.L'0LYw'?(]L?0 EW/NS 9:=<=O4 y&f"Sj|2i1zf4+LE+8hŠg'ʵa*%NX^M-ƙl?4 \4b 'OR~]a7C(`+z@&zz~~*|.'q)P Cz٬V( !{2: ZY ;E<꣭UpW5̠Ýj)"ng`uOMbLdR0T!6U+ם#$=d j:طkfI2f oDErzgPVfPV0Pmn+b 3kC"fY3YC5̚P,dLde25*"eG$_`ĸJ5g,$>cr7PBM9=YdXL]kQGg%Q[Vd}mYɴi$JN6 1F64E} +%S,V["c(9q gAWbcG߁)=)uB%yxK:8 ȕo7?(lѣL@@PwL]A׶0Dy&fVc6fW˨ZpXS-sY|aN%S_XV5ZQYki3I$CXβ IE"(ԒRp`kJ^&r3vZnx&]v,*yCt -"6KHŝ%ma!vJ.]u-ſT[*h[NŔ鍩V;u]8|رWVEnMtb1D5{C 5o>3ѹ5:04>,WCwy8:7ۇF#5>x)Z/ ֬ɼ?.+&W.N¢94s׉af#Kt\ٺ*al[O#(mT[O1ag(mS' *;x\֓|I;S2~~R{5&'VO$tM~;B PI>4M A,H77“*>1w!88o lyNKpfxp33R`ݞ7fLeh:ip#vM1gA⌖*#\?`AitCx$NiO0:3<2q' ;kRO~%g kO.C&ݶ(i. w*K׊#As|T_.Ki(E_(eKĥܦ_Lҹ2sȝ^uD5s 篙Ó{ \ΫGiXyA2|F NQjQok(Dive왁%'P_/\Q$,;nLDF+Z /T7qk֠>;Yn@]^ڐ<}QH n^%Ým,dVhjl2!ECWgʅðeqys+N鲨Tod^N_s''N:KNw$y=efdʲaMYCw] lAž]Z%Exe^^/ <\'eUWV 'ڮ&*F[[^O(9l>vũlPu8.usa\D"h\ FWNXy(%F&0T~lM<ܳ lg_KSP ;9Q{2_j\; 霘twɍDf9N7ˬ<G<63Co]ywn((K0s3 p Τ2a;'w*!FS2BU?`;L B!1Lz[uxD)r~L [vҚʔy o:(-|F7#6iRrdzK2WB\b&1oK2R\ң@w lu-C[éBedA+nZ?ʿdn띫Ӗʚ^\1~wjbAU9 SJ,8ooj+2Dw6<.F`G1wNw, t:-$S'T{4NsދJ6%^z \&DZ#gy x{BD:0h *;KB1~^e& g TV68/ Yy 3ZEVe4Gy>4ؠ"{q lkI$DTcW ^Qw`^L2a+ /pzO YPV꯼tdhf Ӣ$^4EFȸ.Nch)GG//f(P`zoNOi/H&ǟ<> SsȂq5&IZxjL**)+)W1 jG ŴR@27^2f\T̩(G 5Wt5BK*;|~6NXW]tw,xY Q@ԍL,2ya2y![R@砋D^.E kxtysl4/Hxsg /^0Ig!: F9Ն GOnT9+'UI"$S#SxY|{2]<Ǖ FAn&tSuO)h6[U'T@qlJ\0Dx+'K\*$ >dt!T!cIXKHKJ1`, *PrAzXGoR頯$tBbkHiWY~tgn\wYDgk;`op[t{pG뫩7h@mpx{l<įʷWr_FQ BB|)'v.PLk' %>0/Cwa4!^ZeUl$oEt+, N 75aM|w5[c>w_ϷGyyj@7^V[ C |`sk ~q"8>ޮ7G姭݃ݣM{XmF/5L=\ŏi[C#7Ԁ7oj~x÷M5x8c ?t$lX@'T ~|{T?R/7(䋙|Tų~0gZ]. #{_7׃8{F[>q~'`=bTqFu!ړRh|k{*^+3o+VFl FiHWt VEC#\NM5!Ì`U7 bX*8VvAsCr|ގFàQz(^r1~7l\zYz!o8ϭ%!nʓJ*~Fj?TA`@ G8N:PG=yV>yW2kV0|~䝚KɶsګuED4`k`H_l40Ɩ)ZTKʦmf#ׄvdDF1Np0j 9ʐc (NCD/aot#k`ȩ-?y]g_0'DPr4r6-5o^kT'7+'̑whm t͋^ؠ3a{r^x37ѥd8hzLw`==4!bTk `CWA1 G@\2A&y]5'@WEWhQV%0JڐT (D+;ւY^lJBH-.B9U\󕽸"h>.Y4*㝣tUk4H+eB Dvzƕ.bExdD4Y#F6%m"T-ˇͪVPvқԇ!osޓg l:6 T]UY|9.C;cWGp`%M]-ȮQlT7*X[[Y^]R[ ^#͂ ѳTҟUB6\`AoL5l/f2,\SJ%#?0m̮y7.5<X映^j.rȸ4lN!rg%j0lqMsBZ&#w=9{TAHExA ;OuK\_#/^&xƒĤ^Ŝm1A';a"Ah R|(#bG;_xxF/.@d-W_ie3kbt1t.Ɠg)@ A[-j-GD]}lT-'OMW&n AP%PGh>3u~M"| ҏi Q&ט"ar.eWVK蓭g$}RTYXYwW~}ΪxJ3TzcZKfˌfju>ʎsL6()F3{'N" 8}U(Ic[ 53;{: P_t3]MN}թS5~Aw]on1N]T2~ސ+, ]tT%3p'6I`x=?/: }0NOW}.̿ii]I[$!kY,Dž}'*w~]l $c_5Tc#v,ݻeU  oZﻊB07N /_+W*7a5>(5Ur_|dV|*J %XD] ^,=ՙj kBFe}l d_fI5bVWV,D E?"qjL!̷kϿ"2@c5{iE[aA!%PKUAk&jE6RgYLבꀝA[V5Cy>%qb8eLdbO b,i4<׎=c0R 'ϴFkt\PFe#..z n .O^8&ٵtT |'ڌ^R [%(=a,`l+\^D 5h#_<ѐxɳ7hxX.]DhI쇨j^ig| ߌSv&Ai`?AW4ZӴYӣ9 SV͵$hNr Ӻ:y,}̺1Q":(Y3F+KZrp>ңCA };9|fwm]l4{6v(!GHEԵ1I.rO7o7[i]"[Jfͬ1+Y$srńd(P#Q붘#4]'o-E$3rH2$U6~8IЯml]־pi#M Ό= oa )Tw#n;o#<Г>Zq{;:r7`ᘍhչAVjkD 9ȕWf AhyIIyLJb$IM>Tق4h\p!=iNm]&u~xk?70(1߆qɎBCӾ}:Dxy~y/̂ϰ`$|WBvR2Pe%a 4Lc a٭˖S&>:\J! o#=Al -G˧f!֒* %'K4 h*޸ьBQo w >?)]_q>rX=0fIc q#$F|ت_NT/O?@KBnwdqz]٠x\|̹NLdCߠ#+cYxG~szA'ϪiQ2D\;R&Eؗ,t|'*ſtDlԫdbPIϿIpoh'Ȱݓ_QP=9>Ħ8ģ޽<w܏}բ1aP_Y 5i1\|>>qj.уVy580|+%ȳԅx'O?jjTxT[o0~y)$$@ ։mҪMhڣqĚcGӔc:UjI<9[XZ> ]K |d+tk%|FBeDנ<܅pZg:NjhRtY_Ev+#aɽإ𡄝c|𖏟׿X?3V;$/fis(tQNYg$y,IH>/̧lg\BZb%5\}_}[ߔ Xz[#ly~pL=t`z}0 ´4H[7¬a)報1+5;cJ9pAj\n'YT[襯ZjjtK ;6sTOmedV<E3cBigu˛9xl[ANH3i==Zj."wjSg~;ĶExw`u"o'n _$1K)i:bF4t#ՀqGl}2jɣx(nkPJlNk'Wc{[,t*0fqL0<g"YleyLXſ'2K, L02'0!@BYÕZ*Wmgpy o'Eg3I‰tvXx}EG_ -z4U_+xѓ! Va:O*xF=?nwI*xJ@O1*ɉI A#)wQ_`ٔ&&QnRE9efv"A*6g5 Ɋ*h_z^i:~>8;?w#87uJIǷyYdCJOgW sdvvV)N\eJ&cqa579Q&\qA:ͤ;00z0r3]oZP_E o;}yְ݃9-W1G< xuQO0)!HfqA3 A$0'54n-v$ԧrQ9R+bIta|.J+"=!3m| ]ύJ6A^bf##2$5ц Df|",^{.sqq9<ka4JE_L"yy{h#JeO2+v~Oue`|w9;5bߣtq8zw{g_"o#WVžc27"ĶxN_k0|ϧ8Jt6YD FmIh}ӎ$w\cC+J I&ǧQ0v>y[`QSx?%C^:+0'b&X!ONi0l=׻ nf%;p3°g.vNk-qSf4Nrztʈ_s't=6-;㺞+qvK;qt父?b7~(xJ0сRSYe-6#M-lkkہ#*C]&ᤂs@h.j $ߥ&}s2۱Lӽqm{`[8B 8d}hdy`tw^™`ٮAjdRyʨ!^Y^B6r:"xF>$xƪA H8Rm=͋a>Pc_SFGX}1G(׾!xJ0ҋ4]cK0Jd^9@MJݍXfu&PRc/Akcas|!8WI yƁ'Ie16J8ZH4:~mjq =n@ ڝCg}Q<߯($h |~9mۦ䏭(Omb#gf !~j-= U$=.MO<G2F{D|~3qu[ړiH-'d@l}x]O0ٯ4|` Q ײ!l+jڋm9o䜜'$ 7KS#l?;uKZgPT! ͽqrTcWAyh&π?z@lr+@veϡKa&txcx1sفN#>>+ۗ!W|PkNǹe奦*.D[gw~ʲ,nGR0"(@;s`Dzג2iH46TRx)tmwC/]I(LX榭BI6,̏j{F[jjnf$B!3IT$]s7# 3!M1f"K)]/ݖ}q7x$ȔISje/\)GQ%WD"G?BC*k_ԽqxTmo0_qʢ K[([*TԮjT$V;Zo9 ~=~LgKq$H1cpAd i% U *F;5fw^Aٴa2 e4 ,t&4(&FL2@N @{$q!Ouތ F#C$ǛAnbN$3ũ! $Cu\)q`T*jCn)5cj֑C(w|߇Ivjk}^xE y:a].F߮أq{o<- ~p!sS3] G_VH;ڄ*{#+MǵUn-f" j(mj_jO6*a p?)V5۵%;+,kXh[<=[a F5{ުv]!1HLL ҕeR]4 veApwa'״\rhwzP90Ց[ ^ĶεaiŽr(|㌉bwz9o]dTk>c:"ޭ e@)߆ pN4Ο- 6r$d^hMdJ[o\]mg&;v-żً.N*O\cZ!w[A^Ӑ Һ_̌9\xTmO0_qҤ P`lBi&ƒc{~)DN6D>{y]iB$с-v 57ڞ55w e7ѨSb-lҖ}L=xR!+ᥑ,2X wo#Ȇlƀ*wf/xJX,*05!ێeO]>.wrq"DŽD ;3%}vr!{XpK(ᦏ+:sAT;:QDc9/(ڠut''Dה:jm?aM-.'+4*-*} wV +"(iT%̵4P{WZh᳊Xx>[,/ 6{z [NG^6j{ư\.FiAE.OLY*RW8*rڑv.q-ڏ: R Bͭ 2uEp D%8Tc1LAa X; $ ·;Qw)xw/0ژ4Bh3 2b 0c>AĜK49`sDuqMߎ, \ P:  AhY<ѠoI ǙqC%t|w(eNftBpKQ2]} kx31T9j?"ufNb|Q1nϐ9&`Tb9՜1J𗥄4֣x31Ғ̜bggvՋ?>]0(Igt^cɣ}. .(K,bXq[}{!^]A',.x340075Uptu+K-*aI O+ORg{C̼Ĝ Jg 잳9%zUVxVoH; w S]t,F{U׷m Џ\b-{w̛7cN~iJlx?;+ۇ7Qpf\c%(RF|L>kJ"Q#,aD"Z~`[6Á]Kg4@`;a!xknm`bhqI3{ ~0ƈ\>M7 HS.<߁7u7>3.!`E0 >b<18b:r0#=ŌM 'vBsQCĔ]P>[ViUcNY\' Ցj6UbRl?JB*& x䚄b +uBs۬xBFYrױh޼jᄺԤ_) lJ2uai*22zyL=F 9Ks&-$gn ,km74h%YH0{zKۉ\<=E~rz{S{4JLTt>U^+5uUT=pV eo~Ik0Y_NI~ eGՏ>}>)-)D Sj(,+eSWd*E0YZt*&i8'jA"VQ^ J#Rrx%$x_}GTW~:X Y"T>@HIUfD{v[hm/)R^A7b.smu 꾽%zϝupTeC 8vdGD9crŸ3DF'JLl5SO=|xEj0C4 F SF'cjIh qz4i5D.R0}=@u0a8n{=c|0'$կ;M⌘:xw"IY&|vB]9 ~UJhnK(l Ƿ-q(Y.NCK'Qg$L׵Bmju.u$\Bk6tu=\<1{h`E`h gt=T'\Vp| V8p@'05+GW!7Ksԯ=[=/7H&GCCKM6q}B9%ٚ/¡/W$1cLѥzگ [=_C%wSni2# fat=KyG${-(=$"XGԏ2QAg] x-A 0E=XݶG(UPZiL`L[۽',pQ4d]) LdEaM>澮ՍAVJ.=kՙD(G &t"\[ں3Y x340075Uptu+K-*aI O+ORg{C̼Ĝ _5+]t*3<F/{Ԯe)sUY( ){),{Vt+>jxA 0E9XmD @a08 7M\Y<zz1b"tlw]`cr1Ƌ'pR`O7J_IX`^'A29%L?stm%rޔd>Lgz:HUcAjx" Y,FM }*2l< kapDJ`PJ]P(Ձk K2 pP+28~CURyڢ!4u =iuPx340031Q qaXx(Cov?m;=QCsSSG]Ԣ4pԸ+ul񀽷[~^@Q U$Y|ϛyo}=Py%99yz Z_3-QB?Ndݢ$rkF vQ_m2x 1 G /Z.²gE'/ڽR\L^>)x=?o1 w} Ek:)&E%] ZIH9tA{{D \`A=D|93W v^}<Θ !B_?Bɘxm0 |cl ;}ؽ`ƴ.\RYjSL;b蝖VT 8> s@4*@Ob6um4КO=Ƕ{{f_8luRUɘta=Qug܄P=`@ 2 ښ#1DuI,Vr=Ss( ʮ)8#FTvd*aT~3'J+ mr銅6*f7Q^sNp"6;מd^SI;쵢 ? C;xβeB 'ޓ;Ȩx340075Upt+K-*aX,{Ӽ7>plC̼Ĝ sQ_?hX,~OMw:\LL  rRRK dɄeuis_H}2ܻ x50 Dw¥3Dt/j""؁/z-w׋YT V}Qi7(_ ].Ѽ$1mArH's<CB}|% RCAjnqL¥~[ĵLM1H:7Q';tko[j$>>SPR2`~eVڵ Ҋ~};cu^I܅s&&l;{)&$3F)ZRE;>Ĵ=TM^NHŠ4qoWV ))|ZM˜OUHNSvm;Y:)6t}JPE :8ӎhF8ڝX `;zLAi|P(HMgw#{p X ̖">Y̋\\ePU~ 5>|حZ:bz̍&EHxZ_o g)P{i\s Z/@ĕšHv)7so}d(ȶo@}fv)1H]pݝowo{_!v 6۾ #Z;24Z^WmJ_Dݞ帵mkl{0JCA 'мW63ϯ0h~EsQ<9M8)Ɨz>F:P&߰<\,SC)MIjYh$auα9¯I;7ߍT P-c_{ǥ&}eʔ5𶣣! ,Jdk'N:#HzrLy%w j;sUWZP!é~}K{Ԓ~e 0Y݌ʀ| V1 /5$ H'eNخ@#C|/kv+Swr,>q4. )ē$-c;+PI*< A//8"wq&z+~y 5]KR˹Xj9J .vDѮ"vc_>: 8ߌVDqB4gBGz6=\so;|Ÿw(l"i=2 xՀ ]\ͨ6Xs)R@ =uc!$ ڥ4٫AE!)A.f)V)I$| C?Y<_$C[%#%6WPL/Xkad| 23&wEHh)gpe77KWGB}:L!oYl70qڌ5˙pLk]#o<;/.g>7YU:5ѣ<0-zKA3/,O9MSkWs:y @0GHyT_0$ۏxgiݟ[?` n5!_yi T+~Tldk>A Ts׌ 4^b~ dW/~twa.š*O9 p(}ߛH5 JG#s~}bա*R/[`H},X4<Pw7u [\N8&iŠ{aK7հ+Xڒʝ&y] NMDQ^iC"_fNA[u;2ݠ+)s5Z.獫#sU(7l=kWIQ7KQY"J9ӓZjSf:KlF\ pdOzM@["~LW3%/C-2b# ͪ }U0  #eo'엊mwg)#3m򭭇lD=ℂcb+MX.զ!:b8_ 徹a9NCϮ^}Waϯ[Am8,Z:Z+mdu:V 4֣Uu<{VUi0uh>B_%/lGrKu d($! XB?%cѦcı%. Ҳ: I\(ʢO*pXiV9aTUJ{@ȉT?T1ON( tj8Nr%{Kt|XXW3X]|9a~oMdϘ /6[m joqZ3P?We%_sT.^ѫpsIݏ$orHaMT̓y;( YXS|P&4Sc\Uq{QzB~DF0Ϭ[Ζ#yLKFV8w>]#VәLW 'C1Ph1#e:ɦЅmtJo-o >+%'V(Nb4O*MIoS$BQV=QUQhUI|[څ{MYe\萏8đd{10/v ڞ)\1uK\n -$#&NtKsC$) Y J<\ot4l+oL(/1">O&-\+Sx0Uz uV}#ulG`ɡ.Z jScp*[l)EIׅwI~ёʿuQsx!)b$YF բK*mÁwڣ%9KXu QwqE>ڳ>(<]7ádoxU,Fuqa;Aجz\+bp-: TFa:u K QzbnB+ aGb} IaϑJU 3i~d.ZDZVc[q04]Ȍz8b!=PISmǠdl̍>Kmg&]\t/*ˇ,Za4m ?-fYW6gGķb;??{wi)aVn!(^K@Z FJ] .-^.._Yȵ_䅇4ǪkidX6E_>'elYѪEݜ/^dM4oTS] &=aR}-˻Xkt1-+goFCرJ=Œа+L`" -d" 3Y{15z[;i27^$#RNI3'_hS^aRE$T7pfqdYדKDFkrs½Y逥h`Ɏt$ 0P9pC YJyDğo}:R6IB-Sɩx\Y̭/#zsŧDu)Sź+nC ]){S|XyVxXn} ` / M_nd@ƀN7&ْo 6?SEMu Mu?U}wnǪ >ߊNI/KSߖ5V5R6 3=ir^T^s=9 sPNQA q,tUF$1rAtہ.Jm_qoUU3wG{!RS qZvBi#+.yx-JKa7]+q:ȯ2lOȒX|p!޴nm&k'Xekq%+)K8F3.ZGSa.7D)笃5ぬcU=>eYi@.֪.kd.La%\זo 6bGjEjҁP+W#a(4z cW|i[unM+0A[#A^.WRBX2e֙ZRcVy8.1uPCt?bؙY[ q)(3#߾ns=MM?Ye۲!NŰ[<0d"w<\OP 2#&Ept=F$6 u\A.vl?ZoG~G|b_ӡ4$ x R Fl&k QER*^C`wQ 26j{PTdI1}>?q.K̚fB@tl$nwˤZ,k+-˜f* G$Rl|u )vӮPBZyQbc\{vfd Ԙ!%W`ZRkt9 2tp |jqffHy}-2*J< 3LϤ*b^zj^ۭZmM)bte :..]%PLn/lkTvʐ{Pkw rOA~Ŗr5,"gsb E^72sg43\D1h.}訥H$uϞ)826r[}Hr*ei>T&IE`J8T(!Ej^48(]HMG#etҭ(&ϩyC/P"|Z^ lJ{f1sk $ۺgUibs+qQsUǙ_q/ 戾d{G`P Y:=@t*hS)4~ y&SΦ<{٣u+' HlU}"UUmP~ŊOaERבH'GW/O#lڞEUKq| - CfmUE7E^>,”FFD%/3hqoT>G(] Sip5?DPfΐ) q.=K/iQ:@SȌ950 ۅ3 _FaᮘɡXM=V\5G6]wl!{i U zi8$PSY% m0@mR]H˃g;̘n7oo0kQ1 :# ˨ GW #T [*;ؚu9Id?DC(~/Qƶ;/Ws.](%HgxP~ȋ{L%⾺"/uqz]||I3 .TS$Y~X i.}cV 3#l#ǡv< YiF'"˳8n`Z0e3R(־EZ" gd6[#}Ztb$mg:Mq^8,T@]eF__q$>?FK%ЛBb/F(MhCU3KJ3z-K0O @\nMr|ufoڕAN%4ejrCj҃.(31!Tw|sf۱XaqUl~olXI0{#ްxX? %۹K{u4HiP Jv5ɕN}3$EÙy{WߙCQѝj7g؇ZuiU'B1T %W߮5UR" dĝ`Y6w+ʓw¿G@R PP^)aVP mʦ⾍4^l+!M%w<(Ѧ`;h]a[4<_WkJOmƭȄug [" d;,B9Dx*54 8{YY|&{m] } Zm~5q=_t[6~]+:wiORFjۛj^T! 09Xyը,"7])t=Bü|`-@^=h<کFÿ %Wm^Hyu;~]^*:B#|c'6Bo&7w8pەa@ iUTV3ka-]Fm*"aeb+e(`Qr !av ;8KgJް&!e_ix k *ja,U&ZP"_6lGdO%Kh zUE*xB~K*׈{v;[s2b]83#4-J-Dew@JǮnQPa"rT%$e|gKŐ;M3 -ai: IV=,6ۢ©҉t q.xsZd.];oI"Ax ֖\r;L:Nu ;McG{2^cƋIC':J5{E_?mY/]x ] HMܼ+cWe{[$/N}J^ ,mX.hueJ/hEQ43{8|qwAǺ=r$:\'0=$JzX@HY&͇ ˸1"[JNj~@/Si1Pf0*bT#b6`i2&A]_TJSF F2;^w EEU/>8IJby,:7~Uc0i/)RebC2z){7Z.{򾱦`47xSmlζȳ۔jt2WN= >rFsȸU1eE4Fݴr #Ep!fkgJ!3OU1ޚǁ,6|54PcT6 'jys9Jϑ*ity\Δ%M!6H 0-g\5eKyQVSGW{3܌DNΛ\)kVX8knD,TJDul"^(q&Zq4#Nu. ϏE'/3;^JlTR %\; :YaㄶIMHMreiqץ6Bf*cD}K,XFɠĞBx30ٽ*a;$ji!19]%>${T/G*DgU6YkۧHkwCFDpQ6nQuDvL|rLO (E`Uvn5)^ /[ζzKWU:%/k}weAłn ޽t*8٪:Bd/tQvPPyXD,]1uQKw!D|2I+س`1Ia#k jeFfA<1 D9zBجe3dĐtp*GW0ˎ3|0qYU%d\xK7{o l9RF, )Q^Ym=)PKBʲ:Οcd`E$сVE]߅vʣSƋTR`3sA;G TFargXZUވsmf[ُt}iɨȩUvTN[rP"42zr2C % qno/8݉Uz@5ѝ% h rVX?֚sPP $QqJA #?2EwIRfȻ]Us2DA/q5nXq#S,O"(בx`慺EA c 72ɮ*\m{#7 6ls{fR"="5Y5]9_h{5;̰@W(b?g<{"r9f 0;p*HQ=v=A=LՄHLU_O|ٖ&GL{3_0,T߾n' ]E 63]lot`_R .ӝ嫷WLQr/|m`~]%Qw{-{ ;7gOo^ weDpSELYܦMzo? 5,W$3ǟ S<9۫Ʊv6(=z.8`6MLA%r)ډ8P vΡ̼I`4ʀOP*`O>+WܵФ@⯋߈{?Z/'O2l_SҌ'aqLq O!Йa1_5A? Wh4R44A+CVo=G\êOEUo|EX*LpI2䜛; z%wHb{͉ž}yK*]1XPclF QAg)dv5mɍ {eF_V]ށ;ۄm!=qUbs>{$x=o ,g#d[dA˟.őmiljs2tRn<ֶFK."WOI {a j{t*t0'[ˮ?]vlO0p/5:3/] M{"*8Vx\ qAXdxPkcy`p \Y`UIԃ@ h\rHIJ:rMw"j*@Hn%MU /fe<LKŗb(_0v8ѐLRFj4/[S86O.Ob-pus14XDAk4u֑O OYUPC_S.V1}wۄNLi7)@NVuSzy7LSLtx2ʨ{&7ͮaKX`n ?Q=xYn7} ``3x4!ή֎vb`149#d?/8OF^=f_f4$-u7ź{eYpx̓mctOO&0 qͷKzgiY% ]`|cB̫a \GɌ 魒sz4g5$%*To >xe0…dv3 >,LRGF2ᵼymKKYst 9ZB>}-l@xW$}kvuHBFV>k6LIֺnIOxB9n-Y=㵄+ؽOq21?fbMZ-v>DYbLF_F#qOk5R8)ꨃZDXv>0'^9 `Z2RG #RƮJk6j _+ D-:HzrrEĠ8.pRDS6ε IH'}Z%B! hPsR "+sF ꏊuW{-4>\(ֶjei̳6Ҡ dc| 'Y3L~VPT )w_#JUSiҠB#eϺł?rnvjx?C@j_?ջ0-P!gAnVOm1PKwZ߫=f0p+4;BY@Nc S7ۦ лMmH %zeGR"etޕt$L]mA2߾BO(PhZPh ,uP,2RFW^nQ(ca Suc]HK"j4\mJ^0yQܢQCڢ9gA:;|*+?y(9Q+}v,`*MhA[B`%eRd]5c?yc4}g&8bGa?%R{ſ"XsS Es00:>? B6XN+ !5UQ%M_gܙ'kJ 1J)}Z8K< з$P}OSqéu̹<{q>ܞ/ $篾nFAv^[F:E|.ap^f'˗N/OϏMOPI5AWLkGj yհA|2ވiH表==4ف׍W?˞JC2oe nFΤC*}C-&v#Thr|P;; TCW1CQjLΙjBA.1t'p 1_Yo+SƤ-(6"Zą:\A.^W=EQII8(0 ?=ݥ]Z&kT*4nhFZ"RsQ"jw#SW =HFQǴ>K:z:#nH#j 1@R܃EXOwj Q2+]W':Lr,^ޠR1Bta64p$%]. 5ւݠZ' pLJb?F/x0ZbT89v\PC合J AマTSgZEr8m=a21܂vK z3U]v m2j5Nqa?dVa`/ztT/+>J<kȮ-!/^rT 9:>O Uý[;ۯQNؠ8G_̋izJszzeSL!6Yq,y\z#_-[[.},y떥p"?"tMx#?A: DE!ӼCh0%Geݜ.S~KatGvvYԞ!:t8o üښnqJ$#Pb'8+V Mr-ٍ[l2B |ׇ1q􊲨$], SE?*MZ\K>:8Z-m~:zҸ^ʍ@]MQu_8wpIV\E5\خw*`mm ;o^s;{gBM"-Ḧ́Ob!&A&â$ &1` ptt&œ`y~TS"_ƥi~"##c#R{}1TW:<]'喚Vt1pn|.dQb{7w5tVo'-]Op hqN)!UW cd GD~Β7f7s$8-xXnXwQݸ(Xk8K~\_^ |p8~3>y'╓f8idl?߼'/w6R7Ҷ˾l3l2hkNVOӐvJD?D*DIuQ87Rld*c n{ OIS5$ۇ8Fx|'KEtT3tWʾ(iS6ZjlHWKz PJ!vU ֺAũNx%Uk'[,jwgU#]pTlݢ4T^I %+d^6"[?,6/ z X??/vƐdo[`) TV5f9* [NrE ݪn[^XjMOudVm$` hc3ֺaHt cbЍhc63eJ[fF c5^wt<ݰ{pϳ4# jMPQt"%S,H+ 6KT\C ` p{>6KI;jhKGp*?_V/eAn;^5*08lD CІ եHiհ4SinCLj(x6 |iQoLȁ]hˤ%S@8B;&e+vBfS`tPY;3 *{ޢg)/XieU?8F2Ό9RvSiX2. s!i 0$@P'(U ˣ^Ž˞\}qՐDF9rR wdؾ i7RSU d]^j:-&gܮ486#54Jϑ944CIWŔe~AM(Df/s8n[$N+we)e"=~[5sKtvMQظV#xNv R`!DYwld +/HI\m{#<^LqfDSҲDQq=y_\l1+Jd021)Up&CkKœHWI]yv.[:2%MyCvKOzpEXfEhw{q H12$Em‡gOT0qͨJ5 l1/ 9#y9MgK/(Z&C+JSl RWt|QP@c:b$J+'琷Q?电4uV N}J[P\c g^ nqrg)!Y!8Th7HTe}%ɣbWoOnX?Dl,G1 ެ *icRicYzxb⊅Mn8TAn_9΢H#Im_OeWDln$2#K5P3I Rן_5uLs]n+*}wE5mp:;wܱB+ZX:p,:bS^?9l,Y˕KKxNcH/",هT}U k;´}Ȍc:ϚQKJӅӂ:QFZeWthkj٤QTQ;g(r1 +ds~mRyCYI-'aʵ д("5ǘ5/`7Il(`b1{$9OJ ke6A}\#N* c{d ]F*߷{} }߫t\3ܠa&rAOɸ#pTLbp r h)¾}B-klPfIu1CHW֫Jq*<|7?ArNӹ8i "2q8%ϰ:x5tLxp'RBƅ7ɏ-re`QQ-߰q~]ʯ <&{3,ߟ;J\ŢmfO{LbM= -lH>$ŸT>e57RH|e0U\*JZ7G$ "L:3 qQ)&b3`s *:ylтbowm5sZ&G?R2-Xĉ0 ]dO{I6[bgykF56x$u?Nߞ/H]m0n%rf8gF/^ Jrͮ[e;-ش\eiE?8g˵SKyۗazVO'*x8{nfƇxb|'m_xRBh&$Q@x%'GA %1I]*78%bOu%JG fcR _N ;6Aܖ=@x d?LJVHG;oy}XX p?^Q"ݲ+"E+%Y[^mzOƶ TUy$GhC wˢ핗x[CjOfЈ\;aLJSZD SrYh)eC HBo'{k$o\0ɶ3U9.^6BHA7W %:~aV-? \{krF(# Di2DNPctʄû"yxͰpb4,0g|ɍOI㽂BTF F0U2XqCX{ 'QBH {{`dQ:Ƙ^RʗAa(U+xqv Yl9MbJ/f]i~<"坕+]VM9&,%!l襫+m U+CI['NG%FA]% D5ČS\)FB4TX(GF{NŁc <&6h/YG7$h6Vupͺ0H$a#jN:is]8!v{(%vi;iqAEHBGcQ`mT52Ȏ?DAhǻ›CC1iX8PKC!@qEPdfayzThƚف>K`Q9XMڅ]E2'9['pn 8UhSl댮Hb'CK^'Pk0'fwXfKW}E9:I .Ʌ8)+RaIEkP*RP`8E)9D hNՙ5= *kFگ/0]\Rk/:ISE> BQO}ʡI/5,[e1 w1$is[T:0!#G̬a8 8Q&|mt8cI(T#=r ŧ-HP2z|>>z; roq= SR'Ef (IF9r[tK̺2?]V^_. (nn_ZS. h:bf"(D]SuCxd\++ a+v+"e ƃg8x+3pǰňsMވs]ͪɊs<DŽ]0urg(>(vejbFcD0|WsGDf[w'l>S%,0 7F O3Ⱥ@Ai?ʤ t "ڊ/]Yʂt*sZB=ꍝwt [j&iE8vT6T` M Lӥ[|!iCr_t'83yW_R,uEVW}#EwyyםT4ݢʡRVzevކu}Fg);[čpb&уl m||k Ɇ 6JrIeIbKH)ͶjPlCmd_( l򦇦^%H8w5&*ۉ#M[ @QJ [IO;`'s?Ű8CZcEG?'^*( ݈ A!UxkC㯋6Jc0(0dwvЊL0Εpaiab5-3–a\T6YTDŽPldCVSv!HK`8(V'zR>kXd-|:-BHJ)[Sr$d21nNA ZtNR{Lw1m>BٰZ0[%/znShsb@ɪD9 PJQR3eUm6~\rFf!ŞZ.ahzS)ٚD e৩h%DQd`t ͔>^Ǿ>WrzƴynuA]6ɮ1~)zk KeN҈ 50`='r±IQQSi J-v汯8Ǒ:rሰh4حN> Oƫq/ J0݈w' #јn3;@kaq)ޤ0O3"{ZwjմUa3$^U+8EidsFBlvwC&G)z4yfǏkauFH0$xb7 Lp:IDS7L-REgRLmcbhlZ&Z/a3/F/ &@Ht5Rc&Ij*ax;VSQ Pҹ>$9aB(5ۛ[n*.fvQϳYaCXq'ig{ :28<5l]g&.^a՝|).QV!QC<w>b2p빋tGk8̃-dK:ˇ߾YE QBfߟ0u11vܲ9$]%y!),t{fyѮD"(y9 bޡ v?XS<  -1xӏ9»7KH}aON}AVU71LB[O揎tHmg'8Ʋ'}1Q\,Q("8qCNB"pT9f-%xdPjg}9ū =΢Be壄tLܫc  glUhZ<SWeS̖ԡtKdjH;^P,]mPb |[I|\Lth9 ĭo4pk"k1ݷ⛴׌@ 2$.@L.getѼq>1g͘bL< >ؠsxƖ  4C3si~-E9£<,Ǧ,[H-'hH(lHx{Q,4s.hRЧKaj~[20ğ4\p)<;:֏3<]k_Ŝx9rWW./s6Pj*6dEAW:P_ v kkky벲&ծ0mv==/%0qE1继lw" $'Ӻݕ|~UubAt oߞ?km:}CF.]F{z~ed]by&x$#izVѩ7"y6ڔDiw{tlau&eTօk biRw_ZY.Eڲ\5u D̂u"V_ Oڭ^.^s, ^"j8t-Zk  ic< iA8O yEYww[[DEopJkBk _f྽cj^cBBg=k^U=d2û ;KyFg5q:LwWp^ّj8/$*p[@1ǐT>M ⽬D8RIщ%)J$T܈HHdz\;҂%>HcG9NMŁ"&m-ש^6I$ ׌DBl}Jd-iS JsfREeG ;,[[tWCYF}$%hr ݻJ SPq(/>F c\Ǔ u}H|S2bfDR+TZ:uԐ^PITJo V߰WVYx0@\Say(s*9$(B1xV (!T;I ,gZk$_2% o`y8 0s/##J}s^5-QVAkcg:ݽtv$v P#pu >#hCyLm(AM>rW6T7*L%Jd WZ޶dt\g>M{p]y @FGB796\*UiC۴C$FT>QtOH{<#٩e|M{EQWyo w+ jC%ROv%olB r(\5Eu%'{FG lԈofED@ eo\m@bC!#zLW~%(.A@uU, c'edؖDe QۨM! F0L40I%M5<ƺAr ?+itBֵeXߢgm7%V Unڇ ]bֺ2wR2<ʱ=)@蜲q M.=߳_ v5y5r_ؠn8`܃ueE$za2mȜPy$} f2q&7ϛc( c5{)zOݾw|W~41)ػ =Q?C\w4YRse@44Mc="=Yuw_Nd_?љb 2f=Cmx&:{ ќ\!@\fO#(ϚyObT%7=En6T%1cV߰3.7WV+ÛյNVVڬS$)xdE^oci\~/ ӄUYlf[ иŌKƬCBd}"ؠ \D#ZTٜU?$XlO+/q#{F=UjgCc:@ YxsP;rbrC xx zAy nE*<"y2Sv| %Mv#nMGǠB_)CH硽[,58Ɠ9]?C $ӭh(*L(T9}, hJQT4|ߥg>B9Pt$b(IO$`b2 EZ&l/ƞ147׫:P uPu@Mx}?D&XxXݎܶS0PE6u"qlAocYz%R&ٵ&E zy~P431<</~N*ër2jy-NnT҂h[3{~Nz}qNK`B:jY V%u#nQ{ilQwOtҺJƮ;!X获 G]r&7ڛʐXPG2 {^eUu0Q' 96|zΗ1 tV&q t=Vy%qG0_v>6@O|q68oJT4"9(8$h`/vlZX~Y:&??o6e^@*xv•0upĝ5ºele`:qV;\-ylR`;#d]Eg:M ]"BۼD,XSWL]Gyijcwsظo 1k_:f2ǔ۟*or>Tm˖2LT3-~tsYօ5߀$oYTLJf7pW%f)90 e_}Bd殛J'#2 #ek'm]AT$vjQXSJ)kDR&g7&Ϩ XBՕ&(g+$xp&H[4H$x~Jy!9婚i Gܕz9Jrt-Ys!E!R-jJ`W$>\7mL2OۨFh<( @ @`6C Cځg>c36Dnyk8r#A֞uZJZ~FVFdATVf>,&9n "R^7Ք6exU$- (;u-.A(sI*FZ5EkQ8q/2ƀGLb(f)1K˪a,\Zw;D+t@ȋ,/y`K`FvBTp 9"/eG5Q?E:re[^کnz?P}aJӶ$BqǎE%|Ag^f$ 3s'?uK_mqNc8F+$Rc:t .n}.H}1l@hW ]4$7“ԂNOS/rjV~.(v0gt֠C~g^31N)LRyn/['ZwnnѶ1fK-U&Lw>mJ{e +yd$͛"5zL (?_}8A¥ͪ8Awsb S7)W/r]j1DkڻuOڸ>.c^c)=dNy7G8)#mG8F[Gn3 ]߹FaԇUFX(So!nE{?-Vre a+e+C [@)LH5y(sH[gfBę#wg<\_>? !5Miзxy?bC(܏>X3+Cmz"ڤ!~x̍=ujP/Gb2A*+U𰄥~[LCd6u[641#N=$GЌ6?sy3'xtRydɁrUQZFLWD ϔ W,B./CU')ppc7SCO .]4墹b-OWpPTl1VrWBOpO4]J8Cߩ+gF;|rb O)5A lId"7 16(&SOcD^0OV~, ^u"19RqXkR?[܎鳡,\.Lw$Qx<lIU۵m_Դ4tMcE?ׁedCIm(}B7O~!z]"}Y("Aidx~I!(lH(Qkw4`1{S6rS F.O|{u>QQkxXm$۹:IS(P@R:/_gsi|8 'O_DJq.~[VWѧ˭ʈx6y ɫslۿȨ;w^*/'Pb+^5;T$A8mR^dЩJ0\8u磌˦O&En:Y<iL; % ZA kA"N /6;'=x0B+!0D\.SF^u?^oŦϟ 5(Zc<BSwbP\Ne*yP>cn-YՑ||x&uwc?5LHX3șȢ!YN8!JE|!ǽg?%I#B BuM= J ht9QrhjfjdLu^rxt[S$8,6QQϡ,*n<<'(.c{EiӎmmOYh Wm'Iuq`}zx';I9J )_)Jם"/BR䷓f1&o.cV)B$DM~LfݔHš>umEIL{L'5ɭJuSXx0ЀrC}. Cׁu#OnD r7G6aH qwhV{卸R1ϗmLaKu 3xջ( t a`}ra'FNSJ(Z8NhZ7Xf&=^^o4·K «(n43rpGpaiA?HK ׍q)iF֩0x= rC{͗m(T9,XVY'SᄀIͨWqf($OW&Z rO-r`)C9%~1'?%){:04 z 2QyS>*ۋKطp0uVsFA!?z/8ٹ8J=P Hio~YtI).d%J i}=2l[3ufHBVRT2mo>@kv]"R3<tQm:<18uS~:2Ҩ#o&6PU 0q&hT6rZ;&Q;I5un@VP,lZ tlC^+K3<✵-`K^56iXe*a,M^s쩢r3^ ;lj5D,0&+WFs% _ UJy.4Ȣƛ½K!ѡZ#d!!z Ƨd9Ln&]X˺@Y7)PկK_MNCD-ŋ UdY?G8_.QEMB݊3wL`7kWVWmܹ3]ϴVyNp1WfSl{[0ؗs~XU[ߗxsX20&/Lv~v`r(s^[4#nf;v$`2o=:|U+3CZ㰥5]7E.⃼ 3w5QGfPzO|ZzJwsgi4dhh7{e\7C5D(}cғ0KifIi —Ź-Hxӑ7q:|l-4xMyr DgUn CR^$o5@{$S0>Ok31s<+uZ'%# :=8́\iz`А="sG`9(Җ%匔|xXpsJ=SȖL,`]Qԝ 4P _ijq :r,CibܨdhjaZ:X9q>кSW$*v[T $MY5,ގYn/=ѺX-x=3seAD ϳ?3Zn6.*WWI6xr-$rg혁jIV<]o 4TȚefJMwd5ƒ]uAOi[ݱ{Z>p=˱>2P0%کk҉6<>Mʲ`rǞ0|3>v:D'CÁM/%ZhEUve {\?#0h^'DR!bbDtz,c=C߸}b{ܳ]<ϭ};62*(˔^6 {HoF=+Le<Ӧ;WHtw3wlw5M(=F߻eK'0HVU43@[Z1@Jd#}\߾v]~#Syݫh ƸhPO92!FsJ=FRvlě<Lg/[?rbK7 %՚[B:SI]Qmk;+WlrPS%7K΢+z /م&+WF=r? EV0+̽wӚa+0I®zQ:޵UNˌ܌b bx>PHSqK\d9RWP9`  q] %"5*>_-:o6?]ècɛj^jr~8// 'Zπo"pņi-s ^7n+y-sou{> ZfUgM*m=+2ƇK/Xy[V($7{ T! 9~-jy`jrCuf6>s993h٭nTyZ*e5 Rf]YAhlզR)ǵZfЅ2lpЭ`+E1Rk{󸏻& Z9o[Jmn7{=}xqZcL.s%bӜv\ݵT ȉ<^I[UZ&ZY^{N.O[Ca? my^|aIǯw7q';8mz(jDhLCmCbдo-7q3u%2X5TZRO˻O`J'iՐ ߐ LeZm*E\pwjFhmؠdR}i]xhZ͓ eNž4tM[=.L+ԫ-;}v'D=?(_Y3 $.114Up`j2z֦ ^QEЛ7ݪ(?/ݺ]kaUb*ԇvA;RВZwzFXHO)|#b]B| KNEAnhөGHxM+hL*c XIM%9[jƻb%9;%<A;4R1$OB|\l\n)t3,$ %Q'Mk8x(Mn?)8G/*-< |(+f#wݵ%mCeے :WyEO!Wo$֮$8`&Xā{i jgbnjbr_f?gOӘ_lNDjG|}%~]79Z9ڜX5|_:XMEt( R <}j>:aW+c^dxte{1szz6{ht/i{+%Z%ueBv6!CM뷐wfj_2')ޟժϡi6:y%zdkՕ\$yOB3|ffi-=1Cޛ1ksX b+WVtw2-oRX `qY NZc4}' Ce4GT#胲 .\!,|_ͤsE-DIɴxsBrc@Dr,=* S #V(YWd]G5EָcbxEʪn?eRGb,O[[hOkY/oRee֧]ȴ144<I!<_NY,/-ۈ2rB* YҔ*EG( w`ۅQ VbZTAJ>fM#M[ռ:a|=F ͷu)@ ΊF]UjPèHC,^n7@i)yr8A.WxީX́|O")KXz}y; 'ETNs)Ϗ= IP["jA咊$@撉a.3)gig|mge%rx9C7Jފ/zJ]ꑓb2A4q5kڣYs ډ+,h[jvf$3# Gl)g.b# _!+zjg)ߕ1ɨ44嘙\$l|ޅ>耝fn[nђU| N0ːΨVyhX Жeۯ !,zФj<٤ߟroɪzS7 Ky"b3)) ^m6r[A 10nmIfeM MBϐʌ־Nǫg ^euh8UcRB2 mCi 0͒T v74ЛB6U3u]ظR(AM9=N3]njRd_t|P~[X7QovWvA~Q_]D[qhWT};AkL'r MW @w f}0qR΁ |iXkmzs}&eȏTqfR^P;:x/Ƙ4kT=y(ej +?"bҫj;3Bwz.Ё$пu3c220Mܻߛw7B= =˧ƄĭR/ nm\h6>ƶIt\_[g&F=y"28o<+ds |CAVW!shqLKemBbyUj5%6/I%'R.a[d*غw:L2ˌIq-.Y&(:̚{AS'7;}YU- `lDR`6OAGNa)tޖ5;p04,IFMqڔa&îg̈́&1 OW%feҵ֨0hĽÑәRt( gVB0[r-斫r(VlNL ƲN|όt$ cٌslKOJ' wi-Ir@8553v 7XHp#eFV@#YQua3%`b۲+$J؜Z@Ph_X'@€Գ pi7Knv,$z6dsUSˣmeKV4Fp-5ly*譱lKxluƆcYJi> 5wQd}iW-{ BYo;J;P&XO=B4xZkwȑֱIJ09CK#6%q6gOhh 8gU YWUݺuӭ}?ᡠ_l9 ESIJVWeM.jc :LYdZ63YF*gFK#LwXG1OeME-?UdbU+'baJԵ/ZщdT̔JȢ(MQj(] ﮮnũ8N_!=,u4s%ED&_)?+E2#*^0T|oM; |q1զ\vέȅ=tb<<(mB("b B`&Zq&HZ hc%\z]n4uMOTDJ1qT !MS+/YֺH|ES44"L`pl&l>tYg%aߏI&uF&A|/J3QHTz-cU#]<Ȩޝ<5|J5@|'}$/# mTJL>]4{{qÉ$&,c5+" עĿ"{=CM0I˵Yz*ZRL`La4璠Tzxu;c;x%dZ(-_3_Z܄;sd[gs& Veĉ`FLzLaï iZ΁A@) Wt+j_mΏ#XSh"V_f%!h]SvǨ&,YX(j^E!ofޚXq r|cLB?2o{l.`3Ԡ#AcU%\ԏ_k#[o@unf'•{:P/?Z+K 5duBwȱ$LpbN&xk#9ۗyHe1Lvu+6ZĆQ{bXH؈6&Fi1)|K{L(INش#<{f1mBv0|0m$s. "mͥ0ESE0zn2RO W4kT0(3zX9V똙i3T$r!֠Ot -Rq\) ,d $tL(chb?oaQ$vj:HwO=\=,CҌr4 z5t9!P?0^?N  -e?l;TpQIUࡄbqWM0&]@`L"ua_*GI`H6"S/ P]%ȵ[j2yf2Ĩ֯M#lbÑfgK(ڹ+91dsQUS=*SڠVL" ?TH/nkZA8jW[q/K=g)Q R v"/m652QeR)*u=RW4+4U8{f80 Ir{n3/݈mFRun9}l&_Rs^-CXfVL5DrH q΁f_rE=!kmgmFLM"ʚ!=zHa3)虑IL_m]=b &`U!PE2p @QE!KpkKq|*;f|G`Q*>CEo.GS7ڍM@T3t~!tD0oF^ԑJNRlIG!Y7%}d8Å^ģ?5Y݄B2CbT0 fcʪ+wd;,_I &ϺU*x Hwtt!!݁6ɲNcG,}Ԉ.צG%_Yʣ3 ]4Oׯ𥁏BN&%+XSeêͶFF$%n_զp F%T=`3W; B?L(A$Kqg7bIRZ" eY4YRrYGo,%$R't|55$݊=nv}2|Dyv AūgL/RqRZZ=Rٰ̕zqٟԵxu2DmjOD;bzg ݮ,;GM?mtdbh\t=jD1ܠ ]а4 tf 8ב]&GH(qVa^AifF"@K륋Am%-bjsZwgg_ܞ|xu?W];hUQnk%n`^E!kCaj4Ȇ.iҘ w62%&d]btlnA"42;=HΪzY%WӜꨡW@|bBшvi\JtgpO4FxVO&Q)Nm\]sNjp}J]|DO}>98)AGQٔjKg {[ @~#BBYtہq=Fc)ۧCq4x~UGѭ19|DRf.>i$#6.NOe䵻p :R 9pzzrͥ@ʾBdw T'HwWS4#ݑL%sqD"ƬsRLqU 8bco][l#x0`ܕ:HNVMO<ڒ?VgG-ql]g)_ofHmܠ-Ҙ,1 kM"S>dJ75\uQMc<_6sza9F5c&|]+85 9~ YHĻd&O- tyrA_&+?vզuѱjII)gwǙ~{OlfM4ߥF֣ߞz/%,FNzc5sꎺȋ{zPat=VRbU81ޟ^D6Yf4MS4;yf2>*bf5F|os;Ū@<\ǣg!9BH{K? *CcO7-QeD`P7A+zl}᠙\!6RoWPFS=WTcT)hе7@h)gX/qrM~ cEPsỜuh}W:5a{jq8)o}z@eJ0oe^o4JU7e.T#/ ϺAN&CӀoG'?/n_X_R/QZ' nĩ?1OcE xePKJA%HV%($H•ƜffLO]АxK{UU7/{8om*E 0cͲ(@ [׍D\b^ֳ`ZFWW! dyphVC@d61I:Vң#![߀DBSe*K EM >?sǍx`[Mw7OӬ=I[e4[(64A@\[o0'`A ·1SrT C tyMs[׳IoW6-Y42qgjd]w>plbx]q1F#gx{J YL?|{xkiՙh11&UP$H/H9>5>5(OLPpyD=xiAuĖ_/( Nxs+t &ōl l|^k^ ȳo~wFLbLn3BZՠ0x31T/?c.r'I뎿1g2YVQx!x31Ғ̜bWB5.|4zIwL JRsBi{K'k钌Ҽ"Do;NDyO|6(x340075Uptu+K-*aXXwf&kس Q"v\X`QW\WP3s֝:_oJ}VPul7x{*Tt9F\!Mjx[ȸqĺ33YÞH7t‚ WxG8=a~̙V\1GZָР100755 PACPL-Konvert,!y0LF/:0[o-Ju{lNx[%Jx9F"Nߨx340075Upt+K-*a#XismV u ! 3Ksr3E}}п>b?e6p231Q(HL.KI-./`8%չ{kyNl0hjixkf6fc33 x]+ڷ5>5(OLP`yDfxj|ri_-p+eIO4(Hubuntu.shJ#/m,7100755 mod-install.sh{b1ނdqdhjZ$/#xre4FҤҼsmSS S PuL.}>cxTv0 @s.vcd|}!ɖ'9q^]`꫇~ !'p$b) 0r12%@g 2BI 7Gg04pYpl-,3@,Itl]75!X֘ٻX׮KGHxH=jU).L$H:QڷМ!rg~& ^[ZJW(<mv+6Y_j :Z4NVww0~ĭiԔue'⇷>(n_T0,JmEzGQh D m}nXC-zdRΰDx?Qq3=+;'ZUD)X_:ZAV(_h!P OCY7 eceVˇL+{B]a{6=0:Ͳ{9rA #Qv-˫$b4r4ƿg-ZQ,؃L -d2){9#0k:3ڷҾpz?qnAMoz}Ea@ndf"Ek6U368gNxʺ ysxk9 )̛0_fb4hn`xg҅"v ŕ%J e 1J*)E*i9z*%1J 0F2RpzZF2JUf遈\k9ei@:F]c2TRRSRK2l5bTjbb4cbT ӭc`F]n#͌ H̘X]1KBl[Є2zLQ me\6 eAat!鹖L <=@ṖLB0hnxx|.txtF$C榓QyE]B.p #5Vד(|/&^ yc]a8s%KsfbFI"Ġp;$pnkQL贓<x ,P+V(/ʯpHMKķ kdx;pwK!?lZx!YjC9=!nx340031QrutuK()Jd)?^@;69 0DQR.}:)ϔ{_ob*LK-HMMK+`h3ngɰrCTeNfRb\aq vӑ+vhThnjT73$1'G44,t%󖿸8oMϘ@*_JJr_H[}81 'U/L%O fzNYnjZxuLUhj^x2eďR4kIx{¯;Y!;n}jϯa,~d-j~ %}{2N"Bfn2-^1EdME(Pj(x[mŒ324xkiՙt>E `z6jaxa}g9NЯo (90100755 configurerm7D'UP9eVqfzgr8m#7,Mxkc6(9kIgkU|IK7JeZdn$R%%_6߹ @R'sZ .0 oD<kɅTI".^&Jaǐ+:}q}{DV1vxyJ4&=^uuFCu Fݠw#1TT O1PƁ7C5VeҴR j4_D8H8ۯ[N}mSף( %R0AOd,*(?KIs.gĒ? pHeS_` zF G4|:خcSqҏĿH\EqW$A0a_@_?}W*yU\] 8;+&Bl  # c\BБ^"*}jn_RuQыvՋ:^⋳%"*2SLxyVFQ\,S )67e 1x8%pPwב#CvSR/xbtb/kFhQ$1MU߹n?WX~]@$1 I0%&@c?{C'm楸 z 5̅Ρ'?0/^4yQ6HIh|qP3B@TbB$ꐦ>KMBUhpvK6j@+,S\5ET@KDy ##:%EZyԽ>,8"T^+l9l͋$a9k%RuZ6T^ܯ62i΀VJ͕e牪 2u<yW] MU+2$>1QW(l70e=F;} у%3 Y* h9dnʻI4qKs8i:^MEvZ}0&q7.E`6r+N!{AIQ-w3OnEzUs BJ bF k7^cXw+ =3hH" BZeΑR}崥h7mBMcWq:`!DlANFAZq1(r h|duفzIJOB}s dW(G  >W> F y iF1-^Y(-Z,\Nl"o#~e)(d0: PfD Ɋ* uZʤ r(ٍBhD^)ä `@ "$T 9 v,y< jqԽutp8v 2{6<(D/+^\R9M+r \WL_ū7{(,9Y'aHY>gZ>}pRMF,Ihu#JM?M[&qI !bP4)Xj(Iյ響Fk4鏤pA (uň#b\RX"^!deTp̘w!>n2,]AZvxPV_R5;×/w0qUG˟3p D&0Ο.`C2ph ABX+pBH ` @h\NIsɿ;*\5kX(}0 ڰ̼H^L::{n fB),ksG1 G~O*첱xm.. Ԯ3`D 4h \yd'斺{ <%\#~8bVʎ?ԍ:jV5U8oL.OZP++ KN5W.2VkEPX@33Yl7ݑC5CXf0 0LD0 Ȝ{tq<ޘQ!:n1x f^*534J6~P)}4ٮ<KšipQc dc!C\*e71;'6(f&gs,x礱izĴJ.51-{DTXPݺ+w˴ 3̔xhb9SCB dD*-oɤ"LHLcC,,u_ VҏBNga53nVyߵʛ͙/YldPGBT0_^a"!D[SI^Z$(\Po7KXtFvxd$YTt`5a{D6Xa^6ԲU;9Hc>1WRT`%~r \^s>|)BD-Q̡BpYVőx^Bb.z/2ĿWM%|'r$b yI~9=ʢ:kJ%ky> [51"X.M_/Q b!\ ^Iэů nnpU!&lo(zeD@Ll4[0[xj@)50jYr2JJVxfGډ;ԷipIk[˵JOk@Z\sZĪ)j$3"+Z@G~?3X9/2AjmSɑӬq*V|6IDmt7rvr $ai0a2'Hb;C -X{;3)"3L)B(Ёh V,Kj|ڋ*. Y1rUdTFm0Vb v}:/4dt/=HXE PC &ѕ@*@'~hm`1+7)Y%q4NQcucQ-h[0 |}Ёxt G}W_ǮbT+۬ ezߟ]C}4/2 v {S  8yYV Gex((ǾZ&ؒ@@'v1f21-(N*`ISdBI^VNne 4%!ąZKͦЬIkE=^k-BrF}>U|~ْkJiɓ{9DCh.&#X.렎 u`; / hG'W7qeӝfm}??8<:ߓo/UB-[-82k7c_oN ľ 3ˊG'fVm:z#ݶn}kf@p ;vOŋN};Uq9.`X~ZeǿZn&"*Fea҆zDkﹱ5κ琢֤sH@k*5<V졎Q N"l ۆV+&˵zknTiBU3r< a]A&sX>콎U6GͽBi.8lcs RABF7GU"APzӁHHoF.>b,bHWj^U ȼ=! :dsW;kĈN 1#Q~*o"0!0Kw $b1-/"cr!]#ZB@A$ ^ H ZKUQb]RJIpR .wV*`ҪT9@;[~4>SGT•eMb<,+0wsS8a碉ws},D`ʠ\! Nյ3HxJZKUmPȁmTGeǠ*^SWEK&LEQI_Zt/Q2FPTiդmX٧$G!J}|~4J6deqo G7θn}HXU__|y|,fd^ ?$+jgbd|QB 2Y5eA@n uF2:qдʎ51)CPѝ(әŽb:ի,dTp!*PEp"2VFjD`5[Y Oo /%cuݕ*3Ai3:aM/Јl-D$vg4H"[#L}{ x7I.2|h4N'V?\=[+l:\p{MԅV/w&b/U x3ey3<:k$nB82(vڪْܕpQ_ f]G3(\ ku&v>tѾNtjы6a5DhL `w4~ݑA/OXF^:Ǎ_/wڇK]y8)uӓ×2$xG'NsJ`$ 5a S0FQl4O؜G;9liwp਽oğF7^jQiTlyo#31V+dלXQQοvNs~kttCvM56v&w:ǰLyqt߀o;'N5㯝݃㝗n[ !ݖt;;o\c3jb4R/_˗T~c{o#?/wmrzOơss I0qyiGp8hh7lO_zьď׎7lQB8B_0QFcsY4cvΘ˓ƁC_4FKxpȁ=e愂 Ar[G[}GNK5^ P-HNFT{?64`mw ^0̶&Ks(ex@W(߃hIlΧP|%ße?aQt`|sPdwϛY(ƞh,r &x& -PLqYka'cK_7xJ׭ Ě <vNT8nǓ4s܇?t؛$qgV'&& a}KmiF;hgq~# -Ƹo_Q]k/R8u0!qb5:XWv#Q`(eE':xNZw0j.A@npLI/gk=Y9EQ:c6R1{̎ǽdXdʛ\_ǝ*Uy?# -9I.+"B7I[chwd7uhgKXR.1Ԕw2$uI@&*)FϮ5Rn 636Sa(]kI2ֵYtyZ:gW5R .NJɎJ1.x9<8ŕ+c.YFuё/j|ٳtCa*X+ՙǙK*%}ɫ>kR3UB?EnRT>:|z{J4/sHqF,޲I-٨ozƢyZcu'1لU7aHlll+t@!8a*Oi)VrARl,EM +<A0dYP㊋;gB* 3BcTp!V 7Ze+2b>/rc`D4C* nk˦hL|g;+aӠFCb?mVrYL.TQ>R9bB/}b@F4o'mZtWb!8;e~}j+']՗njPB1 c2;Ko 5vPԠE L* H.uHoK A(+&t0i ͋noM]">/CWiPTnQ7PdPFdOc&4:ɨHy$diPT l.e~4"υ2g:d#)1Rb0?BEf*D'UOiPrP(JlD4hcd#l􈪦WB~F8\]TVkWlЙo Ei٩1و+ui}F'4Foh5Jт|9:6-mZ_VjD}*a* _EjaӠj,<ΒmɸModl*è" Raѧa d7C<N6(0iP4~鑠uBBefd#4ii}FC* &IYLg%ߨ|1Ul̷i}eiPT@41Z٠7풵 4C*0u #mgGbto3jL\DBHc|\L6"9~zdZT.&4Df=( V 0+,Agd#=(ރءFLRC+yjʬbS) 8k.ΆQ,g1]V$63ę=?S *6"e/Ȝ͊lو,X2Q` ͌:+<AҸs\R/1K 24C?0gA5lREq٠ Y.14C* nJ,IJ(2?AyId2V bD5و̷`~4CfQP{ٯJA;"^5Ys1وHv06nOXj\@0EY 0XkAR!6Aqŀg~4CxZ'5S>/#N:7Ҵ>Ԁo%Q6"mB1fN:,9ol'L%AR?vMsc%4C*`/h%T0N:Ġ0Hf1N:Y2P@0{-SeyiOI+@}rѢ3eK)ITX葨pReoz!$6Y:d;2?v^RPT^p;rIkk̷i,5]pTkq#?]+N,74ARlǥKdd#8;e~4vfB7٨*Y -7D,e{@s.y!xr sgS?D߁ة^H5J- ]yg+ᄆXZ.ܒ(is%R<E de)v`gC: C?.gr-R}-ϻy89;|AN%fLd*ؼdU ʫCѝVȨ$HJZ`F>ǼL(w1$N"r̾C+^V+^lEvt|#/'Un]Ka. 0 h{;MD(2kPظ\naC\W>0'8C禪 bQR%´yo9O(~cQ؇! U2Q6SW+Y+Jj!ӽ(z9:q Rg1DRK9[tVf:&yZ5la:~*^G~N֌m|L D%I/yB`&b+Bq΋9?g9zNuDiC],OmH|I}ʗ,8?N7Yy>p;WE/0p =]!^tRq5#w=*|k\/<`aR@;@b:w+={H<v Gtc-K${'Ū" _7Hܰ@B0!uene )L$xVm$^炰r|:Dֱ>׫[*ݙɢdUh#J}I_`d]EÉn=zy )}oa~޼)ٞYk"Z c $j%C;QzJ8c\{[gPWmz|+~.\c(p+P3 M :bwrDHj8\Psڅ*6eFRIŪu6PhU&o$~&DOHHm@nxM"|{ILƬH4_v\$\[`t&'"ކyt=mdhLKQ?<2|&"/$zX`X  AiW\XFyA^Gyu$ T):BMm# .pS~gڬuluEe,:k FE wzz\dv6 [=tB)3sIB_ΔD t;0lէÂZ$QHѨ}a1>;6<؍:DUc[f̨]zb Pf|  YvI4.iG`$1uֆBWu8mޓ~U_ IL!4U()(#Fɴ2RRՒkKEKB{$NZ7 2률L)P*qQLx8i|' w1^G'!OTLN'4(݆dN4mT'Jdɹ*P 6JJ]v{!GfᥭEA<΃ψ[D8}u jB%.gB RV6]qyѨ%|oa1BEY^M± 1)0.Mn!ApyBC7RJ!ŗ ~8K`S(cQlAg`ȓ8+ͲJߩEU,4y#܃}wP7H7LK5Q~VZВ򅉋6Pb F:rMq)n˸5&.{FcOգ(.mVciq8N@{p\bn$s7q OMf5*Th9Je%:Q>l Z(_WRTpy/KQ+Ja,Az{zWFԎ~̖i.J @Ne h>5piw˲qt1l+TkƪC%O!2vv%a7{Jg>>hRZn_JR9FwZ eT*-߳Kܠ(ZjI *S*yͬuUixSsJW84y07N /7 Oκ(N76-=&Y񈎺G'@;|ư뗨=YNü#ZXdSj-BLnNHd fPg5S29fj >S~e֟O֖E=8\JZaes:G*OxJV(% 0㍳ 1]jE?Ya=E\N?`;>(t$un,Dȝ1](}o֣֫KuhF2$LU:Uj䓳]rTPN+~ DnV *q#SAat*7YXFV_ObrMU&*T ~zLB]kBkVk=- ziN*лgt4Jp CcJܙV:X!-PEROF* ]ƃ?dOF8u|Eo7]+x6ζ\㷣_=5$ӇTP}d2b3 ?UfneLr2f[8j;M,0ҹ[yYIAPX+@ MX4,Lhf^&l1< KW$rIuBI@SIRLօ񋒁D~2n৒ 'Ļ{zl e^u]6wʶـZȆK=1ϒn# 2U8 g?<>H)#)XAůOʍ uLc2XhZ7Bu܈92ڜ#T\~&,yҪo^yl<:5؎c{C k=b=DO'_c_ rdp:$C|!; eMP-^5} jc|5Nqtw;B RH[kb)K%.?FxEjC nMUk%VzYς!rW mztޭCڦ[s[ܭWg)rMJpeuUu̴kVaYDm195'L!?@p@*On'Q^?S̓q%Fz MKfi%O'/eEswUdMV̶*? Zi7QZyBS\!r.SD<6Q@>Pn}84'm~.*6PFdOF( v5nwU#7ւWOHoߨ]Е/@i #+Փڈ >Ip ^oQ{_7sP,fۼxNFa>磊. н6/sTSW*boY{rXH#k]ϧˀ|B}[/0=:`1ٔ%DRg,\cq=* 0x\ W,뚴<[Cٚdp%[Kʏm@Y]Af̱DϖP5Nl ]huУ.V ,P?$[/E7Pe:-F6D"rZ3u6Jٻ/K]tk Q^>% c\?}ZƓ q=RRНs/ 1$(oƧĴD6u "(P/~iQJo\b/? <l߇$PN)keoU3` (Be&kgwFEvOL3 wst99_Bnw:W7.k9!iNMz UhЕ{+FпJʈ@yVsgMgtW):0Z(u0A5nF?O[◀]3^dFzCRVQ0&}2u6@wlز2Twr@bOnqM+D5%8#d$ܾkawFYdU,2X^IK#FF.㒊"~}`8Oy‡}hӕY!}:XM=5=ovrlftb=LD(uK'}/]wr>Jǽnb!оZR-Gj2ADpeYx_]>r}"d0 G?Lȯׁ:7TIȉQ$FKԘ8POC8v8Y߂ٜ~&KhKKk %%#_dCNxp#ҹ(of  d:YwF[ނ !?".a.mJR)-ͥ20jdHL>˃*oO ]!+kv?ԥj:n؆h/Zu ӝ59fW~2vt3ȫmܵʌ*Zo'_Jf3@,坢;FU\sJvUXi.n+U6rm8tFUJ0OOvGIӵΣk69Id*(v5+]=w'be cXJBhH,lT?W۪@y̯Mc/І.xz 2gpL`4M57oc,W{P"ɀPv# f@;Â̆*zE5R6.Iwϗz^ÜD(7n8NPgb2&ZdoiCyY A@֛ ݬDkߒ&QSwVds70.5 J++3E(·ht_' [:O z#K( tg>Bؕ zUbBQ L ke<&;]'I<[tLa)2&~MF 4^uJ%邴 mp{z8j0>L`(h\`!Q|U N]u MFUp2'U4|VM]1Q6,w*X&>ۜ~yWl֏ |Y o"DVw+G$_HӉ&!ۖ.%Ppz2WT d-=`WSڻjcf:~ A$;:Z TF:Nj},L'jʡjXQq]u$O>kG{tՙۚŪ`doD_ƹU5mpaI:ԖH (B)RM[:dTIʺ@iʩ% eR2 ӺϞp?GIhVC \[u;P[h/Gx ,] @7H2+:| %!@Zx7 /Dz6"$F5]l} tw`**f$b,08&1+Ab4L%²[TbÚQL UOR<=ȲOT_m/-Xr oXntHcSz*\Tb걧c3t3۪B[%yN*wՒnsY*J/d¤8?1rq/߭.?+GʾPAzIi7CTRnY+vM=AG#:Lљ5ЭA 2 q2:KVWUu9V7ȓMiQLJj[ڳgfRۤZu`lORݗuE3&vG? >YoKO駞IJ(6װg;k6_ʍZo[5Pe뉔$zUH\3)j CgZ+!ƹ΁Yj-SOM8x J#Xʿ5JR@& `Y@lTڔ>Caf(??1܏|e:_zm5}qν'v⨝粚}f_9|%He --=]Urndc"}LDf@&6ŏh2U ]PJ}—y!a ݗRI~d+IiAsB[!; WFnbsIۘY#&Ƶwf)_ViM~(c>STwwSdO<_?7hoދѿ, mp<2L_][YV"KYR0^{kij-x(Sݙ,Hg.3;uW[}r9+]x>zfyWc0{.̵;eLnhR(?C|S23}?u,2VɻmiR NTP׈DHQw8^ؚS!z2Pڨ'FYkV,ƀ=U7*c"NS:H.X6'&?ۺ:uSzi 0 k߭;V>\o6KV WƉ><ޣZ FbDNj㍇ϧ%(L]ڂdNI*$>Ang^G枿&h納YsfQAW҇qOT9,5sRyFxTՍqe%V)QfkWj?jǤKhB|m٦yI#DB-/HXK0ˢqm?Eh/{՟0ރ/8 kY x'8K/6tw)8hRm.օ斱tg'Ɨ^4NK<] F5ڍ12[vǿ!T kn*z j qƑK:%nFμUBw+c6R(@R뺋ܛEs2~jl-o/iң-ɼfٞ:l4Rk ӫDxo$|};( T##YwQ,-f]z )vKit3Szpc]2 3tX?jÒ#Coס+`\ 5^ &" ."ERU/; ?@ ַw{$Z ªы)ۚ>ZOyb G颹T褖bc,} bA؇jl]ũ~16jA/I5`E5|UUOmÿ*&E@־@HDlc%JsQ2^DQO< W/ 8mn<-OdY@%6.ds|Mt$BR~q2SdK|"-]'\VFe't=eA|]c=9T5tH#VxąZQ4"L$*|"v#!&at -m4Ù[wa0+kݧv5mx{(ÔeDK 漆|CmtĴƩ7K*g-_7ׯArPѴ h^L#<@\&Rԫv>&q% B: >k芃EA%eHNˮY)o<]{41y*_HPf_bB8YBv㡫<*~Gb ۴,*>/1yTu&?b{J2a4uarw](%8o*p!zPRrA@8<%/B# wJυTB#_?A=C<ׄ+ . i88ih :DK# cxz74_!FO5vW[G:yd(zdHaU:IWBGbqףX-̱!ܷnֻk[˵J-UVk-c;g#2ffN{| kMkZF \}dkq!wT q+w~G˷LjZgG^-Vwc@sp!Ը:nd3S!pd/:N&e xr(GOn[x!wQƖ4 .e !#-pԟ,.s [0qs%ߍ`N CCdwrpphټm~B𾀣0>"*WC/pE-G/b/ 3##'_j԰gja# e8%Ga?ifAx=/² Ȅ~9=2!G¸;ܒaݟ.DXn닀œ0s܏Ȯd:<649 %dK}wa|2EE\yzF I/5NZקD<;;7g[L8@_usF,@7vz))_ uxt S'4>Y&LJ8R93cϦ,23QE~MM\ӣRli4㜟>uo-ԴWX: _SI_ \ y0.fxG.p+x\MxS0x3 Y.p>>lJa흝í` T!'Pu##/ Z(f*B)d59Bq/0BNIu LH9<$pٯ$3<3J.y|H<3̧ZHsxfEs|"̗_u揀Z\WZRzqϘHyLل0PTei \t i*Bfs$VY.0(<< .hi(nF8>1r<~j3N,ά4Fٴ=Ѝۇdb8gkXF\s 9Л&[oFWsnTEPs |xV#yr#m̄zo.n7 B u8|R93c?ә,2\E~>on~<>2hrOB*9z3dx[ 5VYz눑=OtDYuQ/oV' 72SfuΩz֬n.ܬnffu3;_6gxͩu 6OOuc@/SPR]y3ޥ}PS]"U$9ޤ}BG͙]\j7Ǎ8Z gL{kªԙMJ2L\rdE_>#9Ly ^kB\s 94dUﱇ^0+h ?4w: ;\a}w[ VR;iݹPmS=_$x/.r .q+<-{6?o7bUP,}:K~"ZN83H:3|"3UjLZM]\t|iKy uI/V2KQw 76^xLAGa> DD/~35G~R&ag[/O!xpSjLA_qc"`IL(i1'BxM]aAԗ*._7" 7G @`~7i**(ֽ)'uZ8 O֨@xnLM t :rUw![7ǤuL?‡nDávD `L3qYvNNN6t4 #XaeAJ^q _U4}a2yUM.X.29 $VIlMp冁V&7Q4i2̠FLۼhtPO,*༰*W>q%\a5叜 I3/grwSJU#0DX`;x`v &-\wGH!% fH[]0C %mVOs=m[ BQX: K5⿦b?~oa\rxvN{ 9'u?}Z/*tf"OWuE1҄^rtY).A&-5T]M7 ]F"-33aNN~Ssh΂sѳCO`N+ϔo2ej%ı$* N xbR?{)Tπ D\k A kEZ+ +K8F-Tӊ&5^꺩u"- 2:Ҫ,FUǻR:unLSyO͌=}=X%PۺcA!Aaj *lS:x:㵠_D}o:c/$QbE= ؃OVm-3he1!sd&ϓqw#j4O?\riXA<XћgR_ezbEkY+aόEh2Cfu*9 i*Vs [Ӌ M'M Nmz"< E~i{&1Z&$7R(@ry?akm y 2Y Psi *U76 –7 :2>I)3Ltn n11Z|* 9=:Y-tBt4!ğ1,Q8#219Nn#x p!R}RYANmxꇗ^ҋD,v^*n.tO"UO+TtEA/I~9F/ +r &~RuISDT*&a0{_V,+yg"$6$ s0ɳ%_w)tֳQy[B8,I4FKGful@ ZЧLΓq000-V4R$ŷ'\,캵ag5UW{xYT A9zP}Smt"AeC3 NC7 C:u=Z[b^5 yQ OP3zʣIjEbz0j+~ހsmx-x,͕MaBoAi`d +tRV#G(gp@t"k>F zDvpjU4"-F|-gd ?#TT/o6QP:uqY˽C m"qڐ\?`Q+ Az8JA3 Y H\$,A՝ s I^B"#]^ܟ A>LWCx}K| WA⯒1ObJ((૸UMu6H:GG:"YE,\]uĹώԒI_}D_yJa( 9ֲLD&\lp$ADV>9,7Ά ߟ,-j}ta.CAzr\/B,t'W@ bZ֝\27ʃ<:wRX;R{/^^-0N"p\X"QcʯHt^FHw[3aEWjZۄ`5*d{Үl?p"LeL'lLȄ`a [r$ݭJU stR֭pAco<v;VU<#Vqko;)amtK6֊4Ӈg,oH`Υ` @UCt0P I bڕ+j t@|+=a"WТRJy{'yb>ꀖz?N,­e-x`*~Y­8v dpaǃC,ϐGrhzIҳh܆,Cy搽G|p4*r<_uHwe\5@|f~x'S$>nV| e$!Zc~ sL2+]"tWRk*Ш+o:(_kVe/lQjߺ]P/ob%LQsS/7zT]^ccI5ݝ[aZ (Gb;Z#;c DMR T2E^ip>{M7[*{_lo-aGG|لJiql8R2at4j 8K{.7#֋>H)ǀDɅn L8A4GĬ)?.Dlooyj kIX'BK4U6ժ"n XE@œT1P91<)a&FZ_b 7 :Wۻ><{͎HbB"yUK6TUWi>8_s-UhD+6HAI$13k$ 0O2%eQteU}gARcГ}Eӿ/05-[0iȓF #!@peģ1v0ی $l"^#? 3$.* B@Ӝ0ׯ3I%Ov+>V?U-h'/A0]8騂u>;RQڻh8W Xb9ae9 _հeVKFYUihō(c-M{ [Y!N9_ jG]dGY&QOil7zvCkS&!p%̴*qAjeGSٳAd8Hr<ݷR7>˘u'XW/)ל9pQ 4oRV}g0}I}nUM#6%BqHAI@/4lAFtd>ER  ,08K TTֱ}cWuк$b HIdY>qG,Xţ-*Jc8SҞgxoTV@sk/Z2<G@u ǫt("|Bw,ϊ5I#h>`::h=Cw ,0i =~cxKc*@?u`voy<02x( bUhr>ƊRD/$N Ei] nXB :t"DnȮY 9h(iF4WC0 9a?^k߅k[;HTa:?N4 t 5\#㢚X01P^G5[9G)X^8 n h7!=}8l< dx^7j``*\vdX5*RTi Ɍy,}h8=nÓVHFkg{O%S؃.775{;>lza} z/^#gۖ'HuG×ܼ?Ⱥ|9HVu$ z)D%TsI0=*y9pRm*㤋;6 tNxBLi5q{o iֱ:U+v %L_Ԛza'%*-[Wo{@og[yF&ZrDž|`ڻR,fL55Ջ'; SvA^o Ki4,d\4GB>1'N͙&H)xfO3L3! ~Qlzj@7nyL)EƻYd ei8Ap\’~؍[V!S(}ECh]~ ]$A%Y&K6+5FO!ACԑHXЦSE#<,=C.ܤ|qdp\@+/Ө'ҢHESč; L+9YZq#g38ZE!eZIVZ +P*Rhp1ـb6o{)gdAyG12WTFΓFgf; R栽Ĺϕ_h=PDkBi dn?V (qz[6|sI]o[^5Cr6h52LưylDwQG8"!0q Hd𿟇$@nxŻVl^o7;on~׿MVZq*8p$koL|Ï?M!X b<͖}/}GEH^-!K_+Gp~Y.0&[Wv@HXTWw(UilnXO?㱱~;쩶DР + X?"K[{:֞Y6Pr-灤gtI) _,xEΐuZn#4/?S@*"%3Gd,N`dNs7QoQ gGJjX.?^}~F:A%6]h9_xf=Wg*"fh`[ 2_5qсO|tǪ6~pE=U[߷gCN$!籸@ | :1;KҙyXa4]e Y}VẄ#f8aҕBR3!@RXHR|4܈{2( 9NWiցE/l4? P }D;`D)2\- 큁JXN-(&hrøXTP$)9 }%Z->un,mBo!7Vo|;rGnvZhG w^Ln{N\X+V'_MmV0YC舡9s+0Y " (u \kNJtEuœXI1X ` y_d.9;Ғ(Bl@ӚSPN)hlɐA Y7HUOOxivкxғ޺OWՃ-&ƣF'?)ax|]vc/)iaVxEZSLh0C(d~2J{y:\l]lKMmT*g.shۋW^\ԏI?/,PJع' ({J^] 2f$[RbΩIt0 0I6b~)lJIپ ,_ wshV849s{hts  OA~lJ+?' cyw%GHBX4AU&k{ciMz 7HP4/U؅8SW(PE @\(9%@="f#nV,R4/fH|ܕ5 {}ɂɻYG /Ik"(g?]tRbfӄLm?ޮplt~;iخ{K{/þ_$"'^"%~Xx > VIM(,hETu*д *B]4n_|EI cHwH&gl!+gL-g#Y3rurOK% 'A:pYSXYM[ٱl_F.E fpyB6J:zP%ڬn x6T1# ND =͜Qpڥ#BiX(~v]S떢iBە6)YLP>SB^ځƂA?jgG"ö+fC#[ɮܻfLIaiVΦNVQxV1V# 4!pOŬyB{\[ޯEZTaE&X6pJXæsە~}҈ G)X ,'㠊]e  .͓:,++.#,-- ‘ ǵ];(k>I|Zuo)ڧ+u #0P?y=(>Q5!l/'?ՐBdojX:^>awĕ5o,$%a])a41z|-p}X\ql3b'H{B1z 33wa`~\?9?ǴU G7t%/Q?ASm0uJ$񰇷2{S(E%PBeqPը L] 4%;2Dgv0 ̈́]{T:._3jʉ$yC=HZe3k6';مCI /5Wbsϫs:>2'/|-_䩳!A;+B|KrױtSI/ɽ ]͏/_oob8|]7!Am{]S9XiT)s*771aP 8 A*-h՚"y$K)`; "\>׽];lC*˽!ݰMx4ba@@d%2HǬ*3CK*}q* d C,q-#]G[ Yu, 'XE#?yH^-JX[ eL/` FkE=nxWq]35.9Nx=G2bPvV5X)K؎p0\^My^U {a8vAakN2N&3])}Զwh0)QחKj'>!vnpnG4z@E]Lca+ql▿Ҿ$'qm(;ZL.-&&9 m7@j֚zY:K۬D;6ii10.1wC=5w#>!:۝BsBf\ BL<3Cĝe@/htGl.l 21^\@N:6P T}ǁ..z餱\pl2%>13‖p3V(z?Qz^a{ Ū,%[v :zM(D%v[9m$Ϣg5hz%4\eb[9 ,:<}Oci5)AKڼt0w b8w4)N$n3ExH]R!tZ\LnTg-XBe_W-Sݣ4SBM@Lmjroַywܕ6lvyu8ְYShtoM,MV4t9zES/LzeEeqZpt\?<xu+Sx|S_ҮyFS42L06Cρ!@22H}CS  3̙pDDW.W4K|$p{%tM':Lfa}*nOAKjj>Kb:?4"OA'~X'?ʘ<$m^j!vH~`B(jq(,UěX &0_ Ic-/-_ҤG'T^qatDvڞIҕMJPPvX:w0'۟usܡr>gstKXxP8>j U[~s5) )Yi\\Tm Z+Һf/\^x'Eˇᝃ*ΈDS860ܤ:9ٮEśݻ7h߄ܜ1 `: vn/ HIjVE $z!*+^}clpg8g ?9 ;JGoDG(p"&xs lzz3._e5I3yy ƲN}ȑ!Idɬg`qƢ 0 2emoȑ`k`0 Fq.1NƸ4F.7n[Ě[2= P1tՌR@uӃW30jN[ `LSTLSP)*ͫV gq7#7sjа9`ơ o3.|bzcFNu[aS\fnxw&Wtd;f*"q[9֢S9NЯo (90100755 configurerm7D'UP9eVqfzgr8m#76ex{{l/2MaY 6x95`AY1jo3?~ȩmsd4Y"ؓex =ꓐ<bbblxͺu|F7Ex340031Qp  fPR噸̝=&MOؽ? ϝaʷLfzK#f>LIFb^zO~:46JwFhymT_p$*RoWyzƔ3b%J|S2sR<iZXrMry45z b 8_5Է2l9f߫{!ز듰ĝewA3ו! nĉj̟<8UUGQpG7^ZT8* wg3W0հq{md{}S-MMaKKJMŕke]Tw%م!Q2m܅$, T0WP-1%S,1 \'S+J;f.;4>3P2-`Xⷡ"$ [6*783/mLJVu,~1h[^TIAbrACFUеƩ⭫jHך5B] Vg^t}>?dl iz:MamgvbJAQLl OEfze2:g{OrBU PvNyGpKaٳ^)n&$ K3R>;2xJM&݀)M$ Gf.7wWP nEd:]N Wr[P+suSRWI]TP}0\z, xG2uǴHȉY f[#Z;\F"!mK_qdΓk+rq+`tbN/8CsĊ9I.܍»rc|o!+7Zzq $ `iM [ӷ@ýrY_r{ %;[zup3ᘴO^kLFpҁȍ|Z;^\QFڏؒϟyW2|oEz G{FÛ.uL Mm&̜N:[ԂJqX8rUh}{6,š QڦmqC/ `^8=,# S G$\!L%)r}& U?ǔLEȚHlNqPXLs ,\nvŬщdd,jԤEawGbIju}a0}F&6_[̋g6βIș\qBVuz^*0-?łK@'Ja'@~Rۧx -yt8Y/XPl30b- P%Vpfo`w'o*s It8+hWyAX?/fGi3(tbX|BÓq_BMhZL^o:)B&t 5k,i_gvXKWq՛qTmhq'[9SqNy\ e5:em˙bhfqf Aݸ| EH^fTTtCu{88(:3hw;jmruaXa?PzoeH6pň9[ ifZ)ZuZqי@ cQ-A^~* bJmyɵ h 8DS?{?Iy_F{0kq7E{3@@?pɚ}O@LWX.4oACAиT 䁱`%JVaƭ=-~&qʖjIZdXg|ּ`fUt~-x 5NW>޲pX,$-0(A36 ְz'5$b:3MIMP98pi zɈQ [OH{8,Ur22 O|Ah&$XPi (*ǝ(?8(SZwn@l \=0dT^m%Fr a@ L8kr@j5^wG=49ȆL[QX|Vt:l̇*Tnu.9 #r#M,g|-n :{5hZD F whRTZQmߵ$h站Ku<R|k`NCtHmH:]`k9nDq;k1]iº,Xf8z鄮NVp#n{ƐO;n~GfO~4qD-?^`RHðNWf_cE''bAQDiRƕJlRP`$Rf,fjU] @g7 aWpmg+|IЏ3CQo Vj-.Usmҙθ&o;92.xu:өt."t8䪧M-2/(INӁR0ǬY|[;( B$f;W8Q0 FL3lglt=2+*hn0>X'!k "Upyp%0]?jtd3,\:5euMI13R`|aEv f.g7@ʓASTk!I^ټdWk<(FX@)ͳh᱖R"z-K)cY[kb - ʊ4Rdrg+FpOk!NBL+g G5޻UǏ7)!6hTqRU-δϞIjẖӺ&,()Kb,B~"G^`hX;qi<D]U;0Xy'WL$,7 V]52$(W٨wz"¥klz:KV@Z`Ps @C5>c v,ƣ6BoV-o!T:k1b`flG*LB{/0]!.Ol-Q lϡϔIg[Cպ!MH@эnde f:pecf.DGz).Os;v o)_g_t PjAj-5>9=>~LXt yC9lh9ِm$9E gFLό~D;<'T+E?w:zO1!V#2)Bn,u 8#8 tB@9I7vƎʔu-DqCmCcC~.Zye@RUw7!DW )E&dB+'C|2A+-sWO9o"3i[ؘi }봦3I} ސI%~ Fm{u ~&czB4$,+CyfoxeW?`e[-1/(IbןxL(^Av螖PΈrlqjvn]^];_h__sτ=ievDl 3YLk r7gV$i~^R2 pYgo;w#wMq`;& GcE#>\yPG(D{H2׈r"(c^D{Pܵ!ز^Z%yX9j%ml<"g%ibs!PuT[|HIZ'_DD$-*nHpVNwks+ri2z1dZm!6KOͦ)EʳgKͺ4yE?o[VW5pS+ڡ*XV@Bg-4V$!7"9+ r6So\5;r Vq 4k/6TB|9~\ö2'yOccIߝ'Ě㛜bBT[U㫤u4<:..lߣW2t^Ǯjfm]Lֶn k2VvLP0o~ѷE OW}),+=بʮO֙i$N{o>rw.+N jXKy*5V*"4DfD-!(lڊ%z**w8jIee_ŔwRb9ޑ"X|hR;mq:}KKf+qӤXL^Ɍ j kKU٠?x+KuODn;[1K$$J:=DXyf yJӖBs [ F1.k=%"ض.p˝ .,-i?Jػǰ-e7q1uW3lu>Rɧ` ] ~UOZ0;IӇ]BƳsCa mA5S *3OAfe:V,l^ RP8t23]6C 8f_&.{MҒDIjʲ4˖)ʒPNF XGי \Ye'Z(ׄX3)a<ϧ@x/G4Iz.9C&⬂,4)|#!B1GLdjzU$K_U3Vйg"GMYSޕ*Q,UYbYTѨd9e3o CUwX~{Lб^U~TqNP^# A}}U7;9r){C=hX^qyğo]~EՉyM)$ھb_C-Naʼ#=1βDvuX/{&v_,ka"KZuʒyO)}s>q$x܎3^|+/Bth,aUe=76rwe-dڣTӤY$F%<\7]z}<5ut}Z؂XPٝh= Ֆ*Tet 򒮶QS $g>q6ϝy*d ߫Q/;#M_a0#jĥ\V.7 i4p{!gQdvP#gJHB2p%voʅf*FTIM8j*]$]gې2Ύ)-5 fYHZUjlޅALR/ϭO;T{C``,peEuLDxz~O6N%Hvq{=4vv]9>v>⛜ ? ߺxZošVR-.ЙJ( 2 mw5=vJ;i;ya~l~lq{Slo; '@z=S w=ܹ$Ŀ8@E[lt_@nk]1z#؎NNs 2zUoBzt+}?{Bfzۨ#4ρcnmM3OyVƩ6;|Q LfW 2\YnXxwJ+mv{>vŔVU,Pcyb 2 UEpgS|pPJxx{S֩j[39}02`&0Ǔg)bp4*1Z9.ρ_٩t;T.>9\Zw: Ůޭtn nW˶|sJmcmTmɻmۜ:R)jO,XCڕoe۬vnK\()?R\]{,rHNd6CF^gCW q^o0?P 9$x G0^Ά*G!vp |ھgۿН~pxm8!ʦ [?qd`=9k}90".tk$z}:ynzGnq l] fԚMqWkUn? FSko'%l'FU5ZM"Ԫr)]$h͢9ɷC ]␰;Pc2U2eruOoQl0kPY\22KFq}dA>7Moo`0xbk+2r'٣̧Ss6\[zH'a:F`9 Kk:@cy^JXЫyr3=F4GZhó@Z~'Awyw?Jax;@Du@ß~JErw6D~ʷW9o z8^n"KgKpq?O ]3ws)9\ݠޕ1WSG$!%|, $wb9]d [;3,y 3 )jqeDTHucLG\t}K,.([dCԧ5`a'4(jNō ^#eV2bC/lh)'C&?9,9ȡks"4kU t[ȺWI:&m?"?ېѾQElfG|`_(RC|QTQ sCWrP̟(ݨ|WMOp&*@>LH%da@@ Gw5)E x}wHDED1(x]2!6v5v&32kHGw%yw]]]]]]]U]]IA&֚C?P\܉A"Ps2H(b>B/8ùn̓(ft b-\hoE1b1/q=,(OF" 6HIٲY}MA/U,Z¹,VmkI2ogQ<TjҊbm ^%b? 7 ec`t|1b_q<VAӋo4Zۍn^ I*kĥ]3L\Ba}|o7 I|FGA 7i:Zh=DP 9`IsPOg;iᗋmaϔB}kƇ;|+ph's'"(cӦ8nҗFik>ܳ Q)۠ĻH_=eM sDL0 lt3dYcLbp /"PW`Wrc  N-0,(y'`B&dV_!cic0~:4;qQzg^.1U ->pkn@zpM?҈![JUqWPjjpH~X.hS<Лx|TtEjr8@Nxjhz$``a02pp",R~)NoRq~N0*dZ bȒ;aw7 b-&s[LbГ2%T(菴rUY 3 i? ߢ?Rm4G·7#\C"NBHcZp3[HS밻Uwë`dVW AOoWk~ZIciTı+[^~}F Ԏ>I7Oyt9v^wZ˭vws e׹rUa]4eIB]C k)GE, )jlFW9I&(8!-Nj7]HTKR5EvBTe/֓`,ʙ7U|%!p\!)j-0C$Po^)ChupG AfDF QSaV?.DP;Χ3f@+%oMbBb?N 5HO-#&hz La Jwt &I5*Jqgǒl^GD ڀ6? HI7V|J4U`= ,׍Fko6aERu|t=dzŝ{DCv4!pzk`GFkDy0Q&o "y8C/̧)A4i~7 V_#xw.EZk-C;XB:f+Էjz{3U-Ǣ?̡^j lTb17FcXSASy,x?؂d|X^Xh<m" O}vi<)wh8>Lff$rG bHAӜ-ԃX] F ꈬyqR eS>uo{e`w(3t~U\~? HˏaO&.@ݚ✣ij[@yl_<c4ap?g܏] `_u5K7w_ j7un{~Z'_Tb-d:)dHa0/^K!&bP2(e5wuAm{,s#Azgs{8}yj+ЦŃB CW+ !qrOr`>įʹx#P{Kj-BGy1V ѥMCU kO/RVfS\0P4@GZd鶯VtRb -}K1}ya(b~q4JFq*?Z[dLJCj&J!1 s:8LѪLLgJ'(?J|\;> @: (q0|\1 ʴ%I^n.5՚q%#zvNg'CDqx (bFIFdNAB;0-a20bnM9g dAPOC60Ea]dTBo6v@LY´rX(Gh]Baֲ(vobX:$/<1S2MFSorp] [3ݕπS(n9sݡy@v-5$!Φꡰ[t<񘙌 ɖ!Չ~B=!Ž$R2퓙?Fqܠ 2I-]S{9 X<"D[ǥvZ=nͳU0'VRZKL#kt*IY\ˁ lK U# Qp[Ǵ#zCBJWC6 +$f Uܲkd>6]tkLQ&X%vch4RAqNyއz&-R?װ$8ތ@&v|Gd0݉`.'av3;nEsK\b$,`Xm1[-cPc|?sػr4 J9JG`0LS/ #?eǺ\6c@_HU7Ta&Ka/Ri;y\rON?1,YV:f$()E'h^ ytG. ̦tb4)i_WanPGRrq`(E+{C~R bsԃQMMbSv&7{ԃp3jz)k.Z?9f$'RRYK \pIRue:9̘pR*[Dv(y" eJe  ' q*?' ǔyy&mAEӸW-qH̼.l͊cO/%gǦ AǤl$ڲK[N 71 Go' 3P 59fk)Լ SWd60jGS$szZ<%7oK<k2vYKܲ[rL|f ޱ[n?G[}Yree~MB8y5EvFlXR蒬{$ĶՊ-QJ,PEP 0Vvt)˦#J1qnfPv4)6&g,2~<>*:3#sV8٭{9C8sj@C$M\yIi1uǟ:.NWKZuץJS7'D&S:Z&r7}M ݉9+1C#=L`E'诏=<"w |t:!vwa6;iu|ʌ}N;3@w[aOr29 Mݮsx5¢\^ho/i;jrɾ`C|O_vv2hu9N4A0BoZ1<:ȔS*P*y}y-ڐҌFP `:\*iG6@HF=zx8iw\Z,-/*X i?·Q H4ĊzмSC#ZA,AC:%g ӻأnhT_SbL&/HL7Y JSWYoWpsf:w<+;U}%´ LmiG fK"Q^N Q{fs Q>Af*e7'GeVË рWQWI,5 1Xpa0$u%0KR8|φ`e9VSW! gF%2*EcM ܄!F vH.DQIğx\0ӵ zTs;w5| Bݳw`OwAy '720uR BŒ?Hd>5wJv*qm}'ԍ_w B8_x493-b S O F*[-sk:w<\'YQեo 5xQHiџg(3QHFA.B9.6l"ڢm2 E KQ!WM-B}f/^g >>YEٚ^f)QSr.Lzz;i+nMh闚x7JdKNVD(AG|1zKd|+хG4ɃxZc Q&1kmRq[gt :.kkt3V#2F૭ q/XY6SxZq68JE9zZJ7tl_ 4)aE*On7,uu uXDI\dCJE<@`}ԉ($;sFŨaS)kUuFAУ NVeJ"9 Ь(O.ktS}d;n)Ò$T관G++U Pi>1Q%.` ~`ӯSJDxy) QJT_VtPLu5Z!#i(q0-!K*s`$L @$d'`#`.,$8ÏLjzP˛'q-W3?yd6YĠkЩRСhskp9CNڈs7Nrslý%U)ǎ~DQ+IΟdRZIم\GR $LIU&¾&|J0)\&ހ.˜ldFh\=GѻކPViDHgmsM{er*S\\uι"E/aϣ4oAzLRH%C3fGCtb -<\RWT]ʶXyyiI?t}I%y댆^-wMf^0-(墔~aZ 8L7z9S*P7{NcC +ik!r&4{YȠ.s_K-w(#in|?J UCKԶ%|{zU^t99Pj;|yv֚Ƌ[wU+GF.Ii0/@Xx4dnT$h{_T*ԪkQg0oJC5gcDz9B晴q+y(QprV@P,!z9scTs(d[ϧG SIui=Ÿn^ab %c.E-U x\zqhaaEٯѩW(?S/K:xta%os{R6s j%PrTˁ?t=ә ge4;B1K:\5K5܃JJIp|ŠEjٖmhIz]JGE9`*F}qoe|`|e=ѥtwM"% h2Ct5>^JznrWueݭ@1O}[Ww/޹AcqKx!}R'>kq,_F$o%O(íR_Wʅ-Lv"KFK-&^Pթ3ݳ'9Зj讀 /_|T_3Mx{_F8w*Sw}tPpIy. $fʶl%W!4a_sΙFȖd}ck̜9}M{Ƕ?|[ƶ'=c;{eo|;ːwʳ_ɥ3tՍ~x,gzeK'`cֈ׾o,ƛ29A;Ih3'dk{>y=Kg,7 ק/^k֐L:C^9] lfA&{#J<Ǚ{P:l}}oD"l0ԭ7Ɯˀ Za Qc{qKo ͺ2p:6v2lBrps}+et /=Hl^3([nxme_:8Ώ)f'ۧ;_mק'g{-lDEL> g_a@qc֕ ݵ+@b]ɋ;xԣA^``e<bVR^epC/;v o l}vN.RD~pĂ !yC˵QV8΃L{U\9}V7dZ+ eŪ{`dgd#GBoٹ5(dhTɓuHHFw%RQ;/D9/v(ßnY&HsvϦ0=.Aet* k-bsecl_1ri7$0] lqܞO\ڡzg"׾#ns|oPʏJ-wШ`@k!d-sv'k[߭ ňE% E%зWn'3 $-خ/˰Ęq79]pG FoܳjkE$`c Xvmx?[cw$Иb:k06X'h۾ XC ʸr,v rtJ={ ]fWkˈk68 Kmz#Ԯݙ!ȃ! } I4s25 ܾ3ԧ-|_dFOOEoF;~q~Fݽ3*d/J'l#H^T9{5JȎ^ItvΧs|xU.$$X1`{_oR?b~މAz$[EH/C ֺi0X#_^G" ijXu$^]*@i@ٹ̽^%EnAfy?n9(y{ov'Eлl秽Èc[>kǡc`]F*!D ݽE"D^\l. =4bR$ A莱wʕ*TbK B`C["`4*-PŔ L˱xE@e^- PJ<_Eܴ;iHHUʮPz\>ћ?ݶ[H[BE zCoˡי+Z*BoU^mRr=(R 2iU-v7 wrp ekz-q@00K(Qo7o]z,M!WH?`[bi׿ij톖, &4WL_Yr%k+NlHvUÛ$)U q%jWˀ8NXo o7b[}E!߃ԵeBvk wTHP(T) IH+¹H(gKv``!ijsGU7" nHj#:Jb$$>-'#LX΂ ڿ} ؂xHS m-6}t-C[Ow$a8fr̕뭦"%HH`ZҚA؊h'NX@t P!KP!D}UVr[{ZzϐX:vFz }t"# %j(HFsϵ,7>6RFV#/"2ok`EPF@)uX8 !B2>vOQ0\, q!9q8_$8PVz= J0I(I 7Fאtt/Qx,Cvͅ0boa U r1zK(\K;<_~~ `IP{KSj bצ$-?)%-xt^(x4(g*dhG1s$󩙌GKb.B%GKG 6P"x#mGK]Fyw^3&ZcygX ьK,M@ 伋j6hI &`ͨs"5KH&BX gX69GK|Ew9i8+QÍ<yubL^ 17\('Χb^]5wi_xzo- Rc|y瞲Γ_8er-)]_\i2rzZJyMd#Dεr! y5^igZiTzIg+"` 1_k!X0BK!nC2K|`=L>ߟnT -VZW;eV/%Yi];#>MgW&Sn.F}x~[DT7k(rdvh/ ̃WQ9pO~Q7Jv<]純2@  lo6;hf ψ~'L(J$N*3Qg KyB)gZAQ6kZ>W `Ű$ !ȋW'~0ڻ%"唜.ސLkmUdxϷK.2I).Ģ> ")so*_]NW>D_l?#r28W%A牐Dmf4d&Ypp!p֓/P]pe)D8 scdTl*Ч=odBޜrtݗII|է|G}y'>0=w8POfg0RӅϏ{$N!ק_`; 2vO՛խS'A:N!"]/3R:ϪDJE}*xX.-3/\/fG* 9?zSlp=78?g}qlQy"ʻ?0e$nԹGvg؟t̕Y?~Xn~rL|*eˢ_:Ó' j4~r37$Wq&5܃Yv,ąulii6lֳ9eqt,YB5xԟc?%3W[u.Y)g3ܬ'CSSt=-_ 0O nnRuj]٨V8±С'pQbsRq͵ΰ흿~UHN4eg=.w,^87L;H9w,fHBg PqWp)d0͏nk@aQ$6Ke6$VgÕfee$ wA;a^hy􃧚[jڧ0ciigμpӠ>] \??%j3қ״ͿvSؽWZC-.G-@JI IKu4qئO,F;]X"ɘ>[М_݉%3s_ j_ľ+YS-(Az~AZѩ+:Qyybg? ~*b^&2z9,2ă)`Jd=_)`@<Ӟ{d@W^onA/( J=rFL<͏b%3"gK#_8tF u%&/'x2`Mk3?xXXst[ejײN?HB'[*enHE5驙!j9CŒKֳhO2^)s;\{=sOƅw/tg=A1&~PLd=B_=C?Bp+Tl SR>q߀7ȸ l7p3,6v8E9+,ZC`YƯA/Mf>dFd{P,d$Ú(:+8_ͭe7'W}Hܲuօ|/t-̂ށ?5_2t\Q 7Ks!^3F Ei/rA"'u> sYb]/t1gѫF# b#,jAY$ H՟/݀gvWZ,>wx!h|""ŞbА~4|"6N_CHc>iH>FeO`T/ӂKș.燶0Hc%z /rfh2,L͈;z0D5Gz`5\=s3>&2?[ C'/~eX5 yH.!Ӟ;Mܠ7C _<;G W: =(vݗA:,9pqVrn|D:_!0~]m(| wC~>ޗL9gVp2xg%Pkǯ_q[X`6ms>Pe^z١=_\tدtgGc';:rtS?v ֍B  azSS}IKuqxOzGS;\ aN}C&n<|*(P)nŔ'ÎDYҔ]-[vdI}.=ѭߧ%|/O:I3G\nd%ED8R%牴͂.NPݽKE*J[WWI=dU5C;Yn؏Δ:_moȪ2(\jG@!սdЬ˻E8:4"5~p-mL!@rivF@ U.nsṗ,#s2Yd[IK4m^h4*RȜw>p `W4VP @Ii6(ތ#ac+g{,`,Ȼrl̜\iÿ-# 2x ӛ`3ʯ=Ly=uK VGO";_X14U}mwFYP2Mȉ/VFPƘ(AY)FiPB`)NՅDRxq@1Y'4 dx¥ݳ,,|"LʝLц6V-lֳAIBifȪ]l_[E5tv)g/q5"==%N`:1=>Nei"kǪIі T] NYX]4,bVGvrb&٧cf4Y住s~ZNLRKLcM8 \]y]01cÿت5~GFO ^FAk^v=5@Ì|[,.|lU{50flwU {:Wo3HfP$ e(1'`aX|B0,rwS꧚\MPFoEi&3ȍ(<nC1N!-@}oԗqbnZpP7o^~ǬLJ^dAx1 wHyNF P`cBfAPr{ |lo8p\N%E!R\_Pu0qU!%ELʵ hBCr&T7X Za~V"/jDesv PNXLL jftwo`/1¸&j:AKk-!nH,gנm Q @P]άLD8DLu &0h`jHMUl"ƾh2 O#AIi}K1AV 3u.xo$@O{E͞|5V=pU9#VZ{gc%ʠj| Gjw̚Wm١*ض%^"G_%}(L{t"‹D5I|{7P?x'*"I6S9~}ItGqΣrJ cIIKQʎX53eG%ܠliF:IL)$A^ [V7M~x\e 64e`[MdJC"f2I +;h|mu&8ĤD.pDGJATS>n'"ݖX ݃%R@b*xM\DzM5.S,MC/UʴۣqxBۨ?ni=ք<R%|Bx7Ez) rC/ʳv8] XҒZb Vފ7qRKgZD-Ҩ^h+"tqmC)\ +,u: W-0DG9LbOfeQp!9hQ 'pPݷ{lue=utPaȦܔcMHE=~ @A s.WA9jLP]ط l˧ *ֱص OR&_+4!16R[[n}L'-Ty6Y@mcl& {((ʖXF1!GY}zP% |zg %$"+^s~{~B D_p0ņʉ92i`.Bkpqi3(yQqB0~i1ohS&mڷ({L;|A0Hl^~88:W$3q~Vk][WY0=A62)Q-cZ0X= nmQӐp#:Gr&x9 -d~Tݏ*x{aoߢaR[DQ ;9<t{ d^,}w\Phu|x,4G]Y / 9Pfo L/3s\ʄS2CFʰg﬌ZWRO+"tGī } aI0SU&sYΡ2@ӴԴ/oeJIL:̚*E4x@2BF*VVSJᅞ4i9t)4HcJez2h p#MK9:Q=}f] i)mbȴQ 6L hM-3fzgs[6khL*wKVpJѩG-svUCtQ;:LN?܈E 3ҝJ⠫$h VyI,k|t\c:'뼝{88@ `wu0 3 [&6I: TwF^[Ƕ]6Z]QK&Mo#;Ss@Z4iq}[7 " \)Z^L 7A㲼!>ĺV4*.RIe6ƞG ?Q>Iz'dX(Osss4 2T녴]T7Otblo:!H)z fsl85Ɠ1&@=~u}W/AiQ(McQfȞdjSjeqԩW2Lghn(.!W0q0@aP 7]<j?JEZ~9t$I* Z<(4VNa(Z-LTe+{!m̂d[yA&l*J"twUGZ$AXp<JZ2q5 ܭadȰ\HEkd-l ɜ.3vB$i=SUoKY1Z6Z8a 3!}G) ä3 UVltb5FH,؉Zᐕ<(@_39XVpD=c߳yGa`bY I\$+e_%9 (b`n7ִ%y'$YaqhMR+>TPZJ4>^>>+-##h5/_EnVs`e LFldJ7bè#cH$w;߿)(7R-Fjqyb5 jɋ5heQC^aMT(jx)6՝629Kd!QR)EIGUqCruWXN󼥇0SQ&g Hƾ /',އ=…ڬ[۳^Q48 5GVH5C $,:R/Wǻ{mwAG|R߬yjTb"t0Ydž۵+oo!"!jR >&Wq3@$5g t=ᘋ.ʞA'"J.x+,01* Gũe`zqEu|RxY4@K_ɱ1|C ,)QYEJ nz}BT:ߍ]"DM.yRt_;*MdRtO=*))^%Gț1OqBs2"Q[ [)<~v8klI:؇%ƫM7m}>Ou*SbH&;2oڿDgԜ+bnE⢫'$wlgr|( 7H;C5X 7JyS{b܊kC!zb>K+,;GmdR]%\3Kz<%9_f_[C[ ]6YI4s2U:Z)c'V>LZ)ǐVkҤ<(Un iTZ(S4 ^ BGۜ>ojO>MUCo q@GEڃo*S_0UoKV3tTΡ5d5:GnjߖFgܨmռ qdVklSONN|\{KJH~UzS `XQœj6PYzR=+HԦ^Rh ֋Ud}"tT:9YT3jC}?jnTB'LE& =׊LH?ˀZN l.{5Q]1wszpr~p|U=i *8L$-@D%dq-zjK[ML&OKW׌Lg83(c?L9NJ:ə219/y-Pɓs;~Fj)\ul)WXP NVU?̊[vjA{;O^IBHʠ|իKFU-׻x4a?4.٬vk@og|sfj&k>[,TUmY_5Dդ4Ya)~toFtVwo5inx\SLno1Cj%b$CV CVȐU.C5Q]s$D=C,XP}(dҠ!@,AB `:[n,XZ` ’2#.gȅYaZMeYȺH0vCu0ʖZZ3EJopO/\bIXW9ՔDekV&Vl[26Gm=)!2'L.O ^a2T:Z QՉ e!yܜ-3ukȃQwF^G!26G>Msժ lgE]6zꨘ 򐙙$cߊYz-zPlGj-Zbԛ&ҫg7 Q1œVKlN:Vn%TfaHZ%֦IV"%Q,]bq$n"drƋF5 lE;cǍN` vZl`hK ˠ݅JiߙҮCquH!cUn9iEX .9xhŮ8|ص`.=pɾ iK,5˵o?(RJaeXm~EnбٸM+wZmQwNUƷ^~%ek=\ ak=%SMeXOnRZOJA ZOIjvG}إ;KXx8&vk!hxahqy<"}q9c=Q|鼇+Kx0!>ELo5kC1lso7k1s-{byT iYj"0l +B6$050.^?RB1(oVysV9 TCT~:|zK_4s-?"tD4d$LErEWɑb0Չ(ɫT*\*].в_x_|%fL`nOq/ ,q-ث$3q}謞+gFV2g (բ$G6A|pph)"%3?sVt#6Z ^q熻=;1ɭVt]F}wxSح9}b7x&~67XU{l^Z5ߨsՅxib_IEF(sm玁m6hyhWO`z6Y<8&r y b1t;_"\CبZ5&ouϢ:]w&wܼ>ۻ}+{j70[CFt{OzXWC{BpXb J\̖RwɑBŔ$ ;(It15(hYᄮ x1cɻ2\E^*nvgE j[d3rPU׊:ug P0{L0%[Pq0y1$< q秾8c]m%/jS7^{Go>t|/ fU_Wp y1YQ]e[ѯS/Hz:xCn,VbYoxCI$&wj/57(Ӟ:2IC{hx*Mқp/Aә(`ed~t8pܡ!d q ˜Yi3fQ2;[Ummϭ6kd5晴5ǟ=W>nIi*@ulTZg }4BI+GlV@PK9gQIvio|w =k\:CPدn<7TŲZk˷[MJmU $2qB|~mix 0)l%Cw=NK/)| ;{._T%]!<$^VT'4 E@q PENBH[B z͂p%h.!6$'Pф^kf,6 Uihu6w\4r o|ߺ *qcpԛ}j[gg2e؏B;F~KM<;QTDD0=uFd l_^ 2z?8ĩCWd#{*OaTAcEsbӂ6  =-9IeV)\J`lAiq)_2A[BekP\KxT{&EZ")}aq߄@_I]7t;iyB*+H,uT$Z\;ڽT6/At2ꎇ6wb;|z^ q^PW&i6oCWezt|rvpEާ[q-~[S0Tw'Ϋ`)oHmL{,&(ty&?XZA(ZлƲx2˜OZ=yy`wc |잟>|/4|nT567}XC>Wې{yv 9~9>lCH=8نxnޥO?|'k?0d?3vq|?_b/_6 }r Nma| 5AOGqe.ch)f}v )P? c(,7ͫ +krA}u(1rM4WN;> v bkmls?ß=;w7; )<:Ïqrt3 plދCAbO,l D$GRD /V%4X qN]ObT ( &i0^;y%Bywz\z ^#k:C jT;^ʑ=%Bc GRR Ȫ?; n;k‘``@lu]Rbƛ522u˘YL'-q`GU}x"wm\8E mc#5 kEn0Ժ* "(Пt*Hniw#e 0:ȃ2YsڗnOW`"jHt+`(58zvT&[[ofGZ!(!+{zjȾ6@Zc\R!G(>1~] &<ݓ݂djj5Rx THJȞFtw TcJdI/Q]LHé?ȰxcE#kl.eyyh!ڄpE"Ɔ .f7 .9ڌݔ )DQh5X ZVӆoP DZ{ض3N;  4,6RrcH–vmb[:#'@GR5=q&^ns"&gP\o\YÉnj>p"PG̟@Wt,=/4* D}b }.Zmev|MK+J7l "w E05{gA`F7!1 ֲR^d{GqN ;Ovk)&ziLʙ  ~_]M,XiŸ  *#IE ދ4VQI $4MKJ>A1|Vvmݵ5MeCo5mef#:8XY<^ J\{!$q]6?-ެ6Օ<`*򆿏 @ KQ\O\L`6U&t=GSL*!b.p.J)Z*/_̪0#T{E|6 E~$z(Q;'PhܪqoBR[?27$,}og{!QB8GEG.a|7\Ώ52!7]͛Av +oFо%!ju3(*NJ\rSvJa \\htnk)ZPLGZ<{i\Nʙ1_az$4BEC\JR~4W.%J0ὠp_3p9oFY.1>-٨gI9$\4`SO8gS۱&}3rے&w>% > r• HjEguٮ=OXy=TjhJ`g8t8X{.|;vdFzj}n⬪a ) JF 1>Տfߪ.'ZDfEgXII^ v(6C a!-잊F&t<,P',} Z J]:`1 5͵@6{ (os&hL{ iX ~S6 --]͟@BW_"ybž's`v w1}l|7h6ƄadWWo5"dkt54WW:,%s@3-m~9AEN9ne|={j}-l|xdY$󯮮Agk5Yts{ߣd#>5,)i h"r&cKVT~iQGOh{}1u!Q2' N\W׾&ࠂ@0iFcl A8 ;i@tER^mu#<䏎eF 7 H|uPS#@-Wif)4 <:{t) VP.h>VH:&EDl B02をWM|CH@1^aA,^.2CQb]WlRu-vE0trq \a ߒaM <Ë=Ǝ`5h؉ee4QJqD(ZzזK~7 G:#N,q~WD>ԋLj׶V4RP:ߍ3.%3 l ss-#±! :/]i<{`IHr;<:_Z$j.`;_@ӻIG$}-D6QP\P=DpPNh"- z]BBtmLa6x;ksAiM =Ftye_m W kYמ+k|˃oi 8ظ t|&>cTs$ң*R~=~R~}݉x49b^wtYh?OÖ́KHe$fZjh>!-@geK9Q?ƕG* &%P`E6TQkE'' 򤵈c 0a)gP2;}l&n,Iǂ1 )264X}A8$'t*X\OE1dDvP="KQVY,!22Tq T3]ZQ_Yab5nicq˜cSz!GZ7! B6 `Zۃ-ZYCYM*@8?7Z֊xik'اǙ@PzWIXǶ_&A߸%~ 1"˿/"8ѳGTRHە%Z*WDyQNK?֍"Un9)¸6 nxno 5~E\[Wc>q>Mxɩ!:b΄bb+{`9 xuwtIlu}8{2iC͈v<9dеiεU،O` dxDle"`KԌY( J09'/c 0J78jWO,XX0 bQAk__^ '.i׸WNw~Eɾp~wvO6;w^>e'OOlWt'_@"%Έ,NGbAݙcTpNOZFAq[ض"˷ D??g?$Oxus- ӣ7ocTHKQ(K-*lhy[5gr~BAbIWnJ&)*(9i`~AbrA^A^f1^Լ 2MkC2d1fnof%ĒY/_*$'33MA<71$1]׮:$:}OF+z~HQbr_inRjz-&t @9IE%%Xu!˃tYN mEàHO7p̂<ڑA-_3}F.e|dj"Xte Z0ʺbQ~>0L0Qpr6sέ/G21Y3ZlbbM3uyx6Z[{s۶_n#)팛d"ۉk9NTJ$6|;vw@$ݩy@ $ęۮ+NB6b,^}qdu nN/t85kz@bŽ"\_M?5k!$@y+#fUġ=qbnDx ƜH:Oe1z-W/d4Hפf-1P%NO4_rÀ NBZۑ=Od$c?Pj!]Ibn{uʹ?f?PXE*wF-\L"Hi4Hd 9uRT U3Hg1C'@ܕ-Va!,:cJ2 >~օRh?͏Ř YC}ԛpZ Nß_a]HLO?1]mu ӸߟM.Ql!-4i X&Pw`9BGSa}y64z>^ULcni^z/N]Di&yԂVZY4ߚ%ݪ67TxMB>uA%#=YY"zj{;ukicj,s 5A1 >ʈxvśϯHSj)AŰMkf [ `.DbTAiBPvݔ'm\XLkdp8jGa(\3g^,X\#D#(h5ĈdAwLcA_(~$F\UwW9J,㟍^lYw'br15Bb#N}<'Lh_䈢63vZ_IBW%wGo:~LJj +PULc F/m7,iz%z'%bO--lXi&Of?fe6o{g;eŽOtz6"o)y CjN:z٤MYoP#y3:i#vy&5oH¤R--Qy9!-([znLH0FDQoFDTG-Ϧ\ȺMgmg< Iz .&p4QثOic")svo|M(yl cgQ;8ooߧ?LMĵ :`h먬 /7G7%^e#"̣FMqLBDqcG.a?n#{ɻiYX =NaZ3eGN^{7iXG e>`<߉n n}䜡\qwl[=4TSR*A4~S+'ϳIi8K&Dȣ@Yƌ pH!.&|sAHkz{z)sM 5fov= z|Ex\4.&chyr 4usT7 Y= WB;sB~ML%{YH~L׶HwM(=u>f^rK?v׫[=/,/j#^N{ )5 +F]좰 VzJpU!O_6|458'::(Ĺ_klqJ3K1Cyv"s-YY0e|Z;s"(c`NS\8A,kHnWog'F}a%vW]?fX=)eB0~uis hS>s[0/X8ˍZ;M%sr}Tz3z-J2@bvY5RnqD4b~57zv V*e;CQ\+ 5w&hs*+kbG0h‰ChUV ]+VD7CH Ӷ [ cugGFPa$CʃQF~rv-vum+6v:u͐eG92@"Vyѕi>u'E(ЮA|كʜ3(Ӽ#g +˾ӯud2ﰽv 5&ׂ:0Tc)iyD>".OŐܑyQ|=mQHZ}uw CPfF)\ eLqbÐw+r`rӒ'͂ 4N:K-J\rWK( x" v䜑ޯI2EVt_*-OM~kVAЇst_%ypD'L NU{9%TU1`*S"RڨYR]*h7pU\>9$#e/l0p6p%ܧ>[޸*gA>Q$^A"S^g,ki k;Z.E9-NRELe̅Kj Γ4#(U{cuT)󳢪fVC[8Ek8St6(i4JQ'͝J{ % ^HQ.3X}/g2#$AQꓖм5|$ES5@y'bHe vRrJGѮgsE_F~4B# s0_۾DZ"W%Ҧi0UArY $HW4z͊\}zEW1=OՁ{u¬O< ^gQҺ[gKxxi#:-[+Yڨ`v%bn򵝶*퉗 ^Nc^:S} Q6!:bU?zۯ,syh[V+WҨlviעjidj24vA[ ?*|gBwN:6+;̞g -89/f2߭x 3K(xa{9Y gu/-D䵑lB8˲syƕ<42۴&2נn UqqnQx3@=L"Y}&N?lk>%Z"CtĈNv)'Dzn>L֌-K>9;L|alr Vs Zk0~=5Bx]%ե8ϮsSƊ}ukTMd ʣK d')s@D`] }9Iʦw:m{Bv$b|*25Թ,h=v‰\,(ArG:OP2t#"5gaB-}ʹ.`uPpFD1tҿ %v,5.IN-qcO[:#դmje'."_-]`M6s D0ky0ʨh}> ft<㤦d󡠿eZ.iu(ldr/_3B~@2}ƙD DH‰j e$,iV8%`[?kHt-1KI k5׎VAh<"2*Ŗ Z/H \B%ڷ,J>g#![5mȭɵr OCNثz)|qi1 }x{]Z*dw24 ؠ2kڳ m 6-}= t=D!ک}韞:Gh꟨3772QՊDG;rp!ʈ \:abۭU;cwwOJW }+ M w-!@ʱ(q=qHscOe7"z4ȞshAC;šg#h7,< θ{h豢kF{TCţמUӃV"]]zqӫ&Pf5XheSR\Fk~j5.Yis>, %0K%g:Qɇ^Mxj9""¤O1'yXAcS ZǣecGmmLeO4\R8^ V\ȗ45[ssб\)`ؙmBE?睾 f7K7OnqƗieH;wuj-&\Pok~ӆ;A*ڴuFCSD}ʼn#_gˆF/cT'&Fy4Bc0s^dН\vv#{ =OA;TE@8F9ն7VYȬv݋ +dB3aSpjA눘voC+o[*3v$\$dܙQd72jt|tBhI$,̵J3AXr\!e9#Jӫbs>6ޖe[5@rNO#[aF+0LwzjuC!yjLb}=Y oOO^?+?b~?"lrL,u']CVJ ).4.wĎ0C:0V?vy(Z0Di7tI톡;awMA1dk q}%[ O}+AxE-B媥4 P-p<,bP*n8WG"> OEN E9뎆ox亡 U]W|>OqR i܋plh݆6_7ӑr{er~JE͈gMx{_F8w*.)滾IY(Iy. $f [6ؒ+9E3HIH>5gf̜ܾ3Ιwn8}[C6'=/`[ᆱ`|z5Svx 1{uk\#hgf܋8 3b.~|: &,t{^$v3u׿%ۉsC E,ӏKwCg'gC^y]׏\@&:w{Ly^ " uz2~GQd!/ĈȂ1\Љ^HcOşch9 CvI'&//'?>a_66O~]]x;HU,Z`m(93puRu tds9W볅gIPfX}\?vhȁu-;qE^ ݈;| ){OCcP*jk{(esΖw(s/ :2GOKT]ZúM d1ƹpqFn(ޘ9wC ,\^xN|z"o'nBF)PʏJЬa@"cEǟ>nX,F,(O^,*YCq"&#0q:e΀3 {1 ^mZp{^i,t C O:c;w.  1 t CdlFpNq0#%/Aq9]1@9{Ur5zR_/0Ӗ`5Jz- ?ݳ J<Aw;Dq͐B(;PA+)S;a̰`R! ";<8:=-7c 73l88<9V +BvtX\̀l oI<=9nDq9Ab?5:@wNII,i^D ^-AmAfy>}j9)kwI;ov'=лYx망c:!kgan%)!D D^\l. = )Pw$u ÏU/@=P!UUPw0*CE)MEw!Tژ#[u9=0Y/Uqx˶[`!@6 J L˧O{;ם6uBح}^!Vs݊!08+Z:YBo^uVMWLPkK;lUY[/rp %mz+q@00M(QooHX"C02;n|ۏ-tZڒ(;po_1~eA+瀮 g8q!V TV6`4N̶w`],` zq6 YZ7vca5L騡%-`ka!wTX`K!qaRDTZlv,SR|KIJu?H>goNJhL:0aTho}%ȸWP( B? ħ0HK9TOk^SXWTXY=pQV<-mpP.~;xf0A6j(6+HN1'(.^ҍMb0@ 0pM\KQ`I=<%^ 1IWQTN~ [VЄRH+$1Nƻ+ףҍW,`#ZوG5kĢȖV_& x#ACMoObEfO(xCDH2Q@oh3IL*GCSDmD FKo0Q* O7Ƃ`W)Xo(Fo(Fo:%-XI[!V1'k O#Ec$Go%CѺG!%"N@/EOhTGd;zp d:$}q^ j.3.8GjZj PVl H[L1Xh m 2Wq;ClۢIB߁rzj*r|y-ƥ|qʘ@b`28gI0O[żyZ|A*fIg_ f: r08{遟u{A5DIP!e ߵYGUR9|R!>y]ˌK>g^hU| j~㳿3gBD ˬtي rG'qfA0Vr2-`ZKZAZ%883'twҀ\ WL2 =YX$y"( ^@ =0¥}!5N(Ial<.G;,gr+ @l~EK~@`]ﭫ"ϽaŐpO}k{܊-[WV^RBОttcReyJGIjv~JtP<k|+t"*e VEWu4SL-hchuhM}5J_B{dPQ[-U-es5eEZ)Eh=G{Qիnz ' G-'p#uyFK8v 9gGV>.@|q6hz2Ez{2kGZ]<*DʜhNur6R YmXGs`!~B չiyp"sWDY0 Lջu׬$?gq+yJ3J-S}z{~Na}}3N/T;8Пb䊘E9lєf \hM$˗60Iy"4 }69=e'f+q䚟Sƻf*mQϵ6LVk%K% R%gY9*(9˴ҨH;.yϜWDvw{AC[SBVfΥB]A2K|`Z=L_nT-VYW{UVϣYe] ;#>M&J]1],FvFn!5 PF !hъ!5_!~OY|d%sp;~mo< weB_R%(@Vr{QR:SG˶"yF>gDY%P 'qRHi%M>KVZBJt<" ZR76^zܯ`sP,O"=<L;|G Y]"PNyrO VUI|K"ZRnC,] ?w&EKnuC- 3ņ@Pe?"$^t.:K$Ah3i$;6yϜ#$K$≛js;*'E5ńjMY(ݙSn?) /D{fgʜ=l}\j:!3Cv)dw lo.}jskm'ԭS'Aޔ:N>R"]/3R9ϪEJE(Gy_B 8DK"?+g'Ewl 5d']{L(jǞ?`[sk4^-c}GVF?ܟ [;GlvWNbʹgک='8ΨƉ"geń>}c0rF>K|@P3D1A>?#̀Q2[ARơgj}y&]norEFv3U<=0i".(42W.S מ z[n-<cm խMX{< peG7Ͽyx¥kk ?)gC >9 {sC\UX oQXenyC-~ Wŗ[.ؗm7G* 9?zSlp78;g}qlQY"ʻ/>0U˭$nԹCvg؟t̕plT2{E3u{N~>yސBq`ʿCǵHzsfvֱ5ڰ)疣cj:3ZւisPfTX4{@X3nֹdp7=9Oy\qYZ\>U>.)qz3KvSnwab[aCݿO܅ ^cka[4n wi:4{?!3Xipa۝!2srX̌l/T~uU 1,{&,Rt7&[+;?e3OGPa[(qV5\[W!Y9y/87U}\O{˾BgjjOlkH.>}Ktnu\Vczt'cx(oAsñ?~/lKg:gg,tԾ<}WW-[7}^6₴1SKWu-pU:n-T9M`{s`0wԏEt{`a`u8WH;=vy̲96)o|^Pȃ$ 1Zeޔ}M{Sޔ{ZSހ7 =wȀȾ~^_` QZzt>xJvDp~gU*4Q#A2.};Џ зA&f%B^+^٧b{)yfAM֨`ݢg1(ω_׀ge|e7~Mfh @п|Ylz4)%7D٬?rNFR}=氡wvgޗ|skn+M%@ȕ`_-7$InYS{NtQfvoA̯O}~R9ug/ňk*"4 h:~йt@궗HA]:_`TE,N$Yo@3w; -V? X;UrWo;hHG >?'->҈}s4}qsH|#ƼiP'9P!{#@=(Pu+b~Mk@;9@/ɬdYݪ)c=q^*WOy®ۺt.*hTfO-*jWei!Ih;,B%E9^lrOPMy &ނ6/9)Xlrg+_L_2 v];-;$pd6$[mQILmD7%lIƬ^t$S;7a f{ݚ5cwQ%}Aޢwϧ Lڂ*SeZt9%:صi B~ᥖW M.^Ӟ9qK-Yy(HyU)H5^W eb=}+u8$oVXBr ܂xl/b 0$ެ T8t7V3g3On2r^LT%a0UUuLJwvTN5<d+KEAY7J1`B6NfM)>M}.';ԭ?MeTs: V9N]A9@CH+S;ufESvl)؛ +:3nM>y}:gI rSd״'׬("5Vő,1?O&ԌT_n/^ZվqNOpuGt?GPUC\3ëNL)j؎&~^:5X(^|Rak:s5K^ԡD#"NCʸ i9(C@? _PǬ9A01y ׅP)F˭ 9rõFڼ8(4k q]]k΀z?`Abg a7ը 44NuoIv܀sWc7"6s! ~q>}nwYA աrz3xcQE\gr^DuOėq4Er-$@U@_g<(o&Sbb'#]51bJip28 l%5 /X]hD('KT`@)o@-\>'()LmM=la  HHs}}|ADV:/gw-QodC-1>v)"ۡ4&U %T:'C[vb/QRu8nb"abX[Q;>7frE`rPMx}J/13,sttmHRV5~z|ƒ%PQZpc >P1;a6 v޶[YZF0'1Xmӱ. ^ C:g!S>h8RHw{ ɱK8츚9d>hTJ2mc.PEJeI($WFW9y3LE_"k{7a&Z4!y#T׷X Za.D^ESG+zB%{v P^L`O jy`/6`^nW]BȁX}93&;9IAۚ9rμ2Ae*&+X*=p /Hq̛Br[LS9x}򂗓Jㄇ"8SU*4jvNJAdӬt}QF9UI8*>rڜd$:' i0t«ĞFDdK84x?L p0.\YhA9.jRtH" 8uۻGMK QTpN\譱oLCp26hJhvA䪔iC+kwGJ-ַIe?p^im՞=ք<R'|Bx7%z) eP9^_!C7>E \PiIZN-FbmaIjt|Z3E8qyUT4Jx%\.^x^@)kk\ + \:+ FGL'E3IٲkILPDMn</`W=kkuyђ;i:|gnwjvUbSnJ'DNn?F W9+ 5#TgpAEq\v7Ӯ;rH 4.,u޾}L'+Ty[6Y@`& vÎu{P(ʗ}#k %STGH NhbP01>'FP!d}d) Ȍe s/b0Cp$P! )O=l JJݺ0t{6\.;-q3;0 ڔ';'; 7K`FauƞC.%ћ5 )T$Y@MOILEǰYrT[>sgߥ\gQ{nrNi[RJ. orQL( <]W9ѻ9G_2i N`%/Bo@Ac߶ڌst6G}cϽ&=>㠦$6ǻ/?)|CE\оt.az!jYXϥDi b.uddGLNS|W+->wb9KQ{:}1Z*4ytRq /25OE#<)\(Bͨs:gs[ϴzQu?:oBޙtzSJ>} &2U=XoaЕvWY{0({ o=PVJW"(׏ЂG8fu!wr Y&mg.1;m5j ,}68^>%wB)k 5^|Z-ad,NC7a-k=EDǀ*Kysb Eg=M K!ğia0!oZ9 saze0ZJf :DсxJ0 ` .t6?;3ws:}璳*KXO+XJb)A9#p9ĺD#D .qUӭcx |HWtei44"bAYD:ID 2q re::.N,U!+Þarzxj]i:!-4%L!_;Dnșg6N ħi3i_6˔C:횭*e4x@2AF*9SI+ @M\ڃҖuNSc1%b?ҏ2 z2h pMK9:Q=}f] i60dVǨ&&| ZSsKLC7vsٜAa Wf}U0piZ.II0: Q`ub^tja^s)iœt,Ҧ8*IUt^K\'*k;s]N<3rI"~9pB/DFG.{Oz;-c\dOfWʯwU,--qFвFŕ4,bHh@'G I1fgh, B%4zHj*3z!+y ) ]<;^ R ;Ed P_Yf%( zZ51cբXR*GOL?M[©*}ܨS|k!Uɷz%O=`BT̺I)Kx{ {紑|.V2rBdux` E)8 G؂5j2)6?+Lo$Ta%h&Q\B;a,`N@Xuy 9Ԧ2ts 1HFT$#ዥySmIQ*iQ^[Yp,VC֘XyJ&l*J"tj:#- ,8PH %e3 f]@Gͭ%wm 2,7@"W$ :v2cg?9>zZ)G6x"`%kRv\z lRi8r`ha)eF?Ƌa_߇!lL:="״])5Td* ,) %dXhV}LRUF/n4W.N9?I'`|`^5bY?oKp8x}[DZ UDtGo _mja[y~@,/sv`8xR^+#Ryɨ88 gL71(D]g2o8t n2#kn z"Ʋmۥuk_.`Iz 0&aOCT۪#mAlZ/ Tฦs]ky"rƗ1~9`4VY <ŔZ"?j$q*وhrpxr,ؘ`iP$kHH씻^RuaS3௄2IMtGBz5-. i'M NkkAD) JMґFgYޠ ${VVV*{̩Vb$7wb P99zCW*M3"?%Փ&e1-+}^/> rcr㩪B Dz-^YvJ+CT ծaR9Cv [-7:F͖R% vóZm8deDf8[ 9<(8\Ρ5J z .Q̣C "y^Ԡ#c=ބ;/o:KI6Bi'C]|L[m(r)-_68@,蓡xt~j6T΅b>H9?^Cg %}Fl~ȍ{қUX'ClYɪTZVhe(ƚ,gIVo*zZD{jgwp@t D@G''`,{&uo&ugȀ /wr*F]9U2Wlq)dŖ;9k-)\zEK-.ASfa.xY1:o޹u}lł0V_B'؎ [(qݰᎩC.t [`GxN+4x~L{aKq{Ws#n:&yV#dȯrzEa뿭:c r:NO#IҊUOIL\کVyMV `nT^Ae K8`(1hq@ϧ=*,$T& 2_n$gH9)#CˮڣmU?BjCGw/:<; ?^hy@߄9ѿ]{O#:i\y-[[)[fVVKGzyʖYzy˖9'zyOʖ /R^7A`0 NQ&SU\g|Z> 5lަJ#Y?RIZihu{.I*_&er.T&[֊Cރ<|E&܈kKE2|UڔdVEI0f}Ǔ ܧPܧ )ez emo{L!asɣJfϾ[aMsM&?~,ui7@"~i7\(b܊"% ~SO25$wr~( \7H;C5n C/&g])rs+V_(?Bp'#lR˲9߸s*+UXx7ɡ"UO_^Vy}kSѬ?t0 K1|hkd-}#k82tcr"fNNZJu[G+8cd*֧YSu)WO>oXtc'c٨EY7V1Ӽ{X5V1aqҕHITmr\by顅s$.Zrc{>F- lE{cO}^.`# nYKʯXt/hǠ ˠ̓swHixӦBq̴q y m[J_ .^khvnʮН„eD2,=Mn޺ov.~kno4} Gȣ]`zL˪Wp}d,Y! qAq_ɍ=D Zi;8m˷oj-H֚˃*n =lߖM_aٮ6_Z2Cu.Z7bl$B_[0֍Bz^Bf!*$L Qu u=-P/s3kb-lvFzU=STFao{z>VS\T)!THMj*Q>Q=]%/yaM1&yƒHr`Q]D x*Y..ɅKhY7+W0}n ѕ~Ե ~Xkh9=?!^sO:чۼ fd -q9~2-JyRn3Y7 ~ K O)3Z2-h%h5Q}e~>\Mn۶;|pn!&3Иwnus7R/ 4nk{wAյ"z$ЭFn.K[5JJ.2G._-mۨߡM*?mj}id}\7įS]U3Ml 5AQcfYTS. ;[UTp}v ؂`t>sZĠ j 7rzNÃ#Kzf,;ovvd 4xyE&o:Bj?0̸SRm2B%q@rf)~1*hk7)5ӈ$ɉa@ ͇0\~ƺړ}#˝RbDVOʄgLMЯo O^K]0 ;#U=,}R"Da];K +UuZnSw{ e)' pdɭ^/ق 0Kw+Q%A/;?W~M]dxT|h4o}k{̛Dwe/ADJOdgdJZ"?ŗ"u ?rr΢Zm+_tqck zZ]^yϽ!(WWj'bE?o- m~ &l%.*$.FbB~>m nN ^FpN=' tD`M[Et&@8y9f 5#&q1\&q%20Z1ć_=e:E xE'Qd!8ZkV_ayHA/]"ɣ- smmk\p'-%+g d Q&3H -@o[ \~UM OY@(`?` ^E="0Kʂ|&LD 50^̨ӓ6H|% |.[;lA.ߒ-|#?M2kOFm1F;<=7>Vo ^lbn?f&ІOhBbXSֳHOa-%BZ_c[Ҩ񫺱A6w0*1j?_ f Q:.B34Tڗ+F,qh0.YhBRVO53Htꅺ\4tbsh{>`A9h:a\E5 yy oj$8x>A‹u5-l2f؏B;F~KM<;ITDD0=uNd l_ 2tk2p~= VǠ9l xM$(%'LJe+L`fH(n 3w(fT{6EZ*)}aq߄@_I]7t;iyB*+H-uZ\;=>=6At0鎇6wb[|zv^ p^PW&uh6+@7Tepx{Eާ֫g_b[b+oU~fìVgܟg[v!-3ޏ$vݘojj\kˡEX, >ڣMa==~&܂G}r /^+?@3l&mx Umm6zIۛ'%lك?MūMȎv<>?m5mmw6_o=UxtP1d;@^qp?_b/_6!}xMa| 5COe.h)V}|)'''P? (,7ͫ!+kA}GT(1rM2^ +< v akMlw?虽fw7[ g1?Əqxݴ3spl=Aal !D$GRDҋV%4ٙ }"#ZCQQLdx3;(0#+Xw5(KB_-s @ ?a$vjR[ނKwGA|⃼+WhAYJY"{vۍk!/p$[|]c`, &Dvtĩ{ME2fvvF&Vx`3qc`5#v>b@.A E|A@" 6|ĩzᚄuV7 jCF  RNt#7ŲV }MAMk5f`vFGS+`"0t|fuF΂ `#(58 z vT[]ofGZ!(! wzjg߽@9c-\^YRNt WP|:cF!?AWMxlݓ߂tjiRx THJȞFt5 T Nh$w^]cb|k&g$ʃԟ LdX5r6X{tٍ]B&AcCy`y3TmmIYԔhAD B]nviH7ؽMl[gvrULFUOQ)1$`K.uvנiZ8/93(sW||.KH5CָDl<#PO̟@Wt,=I(4* D}\xɕsM[+J7<E`jFdA`F7!1 ֲR^dkEqN ;Ovk+&zΑ JgHHAFWzy*[&Lz, n3"b/JE''DĽ,/T MӒAP ]ZǍF}lMP& 9P561l] 4>+T)`2$ecz?^Y^f]\#o/!Aa)k Vʾ_ЄhI%DCl’EEɓP[Y<`~/Q:(Fa dX2Vb 5*F1+sj QpE2 &gC &1*Vh…8 R(1x]t3D[J܄"y3;v 82D=Z~E(75kwAI1" YDPg#G-\8arש)I\n@R;9vei.Rgá ߳u *6SW'uU&gU55, ]HiR-b'~y~t6REd:tA$ED뵈P`b3ɡl4m̦Ld:Id-;` ?mhf,<}߫Fd|ތܞ7%[dcHÊ'GL(lm3v6(2h g <<w ż=֋CZi )h-Ȯ,1jD"s5,V,%s@3%~JU˼PFAgm$pǶb(;90|2qw)sD}8S{l^A%Y̿ WR~bi{9aJ"꒍hdT&&@rD+~(Lǖ1ҢOGGѺk&~.s^pTP 4J6 Ġ t֝4p O6s)6ˋ:ǙdF ? H|uPS#@-WYf), <:{t)VQ.h>NL:&EDl$B02 MAɫ&ӏN GH@1^aA,^.23cQb]#W\RumvE0trq \a ߖaM <Ë=Ǝ`5i؉e5e4QJqD(ZzO~opA=n0tG$F594vyC/]ׯi|l!Տ-` f"\KlgAj!(ZB0RcS2t<_f^~&1= .'aTt~߹O*_M&g$IKIfMbSqaS!AE0..8K1Lmv~.}uHR٫"7g偖}-_f)` gg]}͗/w_>P~3 `Fv܎os,!HghآWGQKْ,ʎHKūMi)wńq>0&Y~ 1لbb #x`9 x Ilu}8{2i]͈;<2:bj֍O속O` dx| <(r.R3Rd4tk  眼x6t$_;]=鳜ca%Bh&Ztmb=vaOۼą>Aso>}{+J';dxRWGpKڔ hBWDWѾQ#Eh@\0{b4{SDZo.oRxg| vTl|v|x9 ԷTQVuY t{3?~ȩmsd4Y"ؓed Nx}- l: eEřy j @*3/-(7djn H4 $CVAI?$Y 1 Bo`g,ëxwD&ڜz{k" 0TL@25ʋ2KRˌLl#]է3bTĶ]]g9 pxOWX[p+n :k6[P  R}wcl100644 Makefile.ins9nfPUҎ100644 NEWS0ĥ^K 9K\(u 3{L8?G~3&IqTVN*٨ eWM*k)xkBfeƋ*!AxZq1Fc~Q.N _M" x ) x{J sD8U4|5tT4\]<47 gi Vx30505204QU/Rp*MWpˬPJIM,N211OKLLQ033PHLNLO)NQcH9xss- fL*eCOf)}j#ogkd)&N1`?F/A"_2ZO~:# ߀DPchP-t]jTF&1)88@CS ~'<` πOZ4MHR`K꥙xn}(fxf49kz&B_0jOv9>#?U(8y6d \LA9OroRxͺyF-L-c* xm+b˩jϪqhbsF^m$s* ox:i9[3?ޭ7x340031Qp  fPR噸̝=&MOؽ? ϝaʷLfzK#f>LIFb^zO~:ãx>n=JGbWw@y80,|1Ob!xgL9>S-V71;5-3'{n+KN윶zb9hjsj)?Q/.Ы٨S]Yf׮rSO{]B8_A3l?Ec9z,'lrutue.q⮚*,,NU/QT0џM>q2NB]J_~=ǵvߴO'&''0rt0O޴S?Zmb0E _q*ϳ)MP聚\pߺ3_k1 gMM@E %N(U\ʹ:&]?6U̠TdnM/΋/ݎuр*(Y&Y\&-ɇZW\[RoCEIyXl,ua1TUnfqqf^:Cۊ?RkXbѶr [; d .|C] VG52h<~{-]w w=+:yfB gm]tiR|[J=smzlKP;suSRWI]TP}0\,\\xmBHGy~gvq }4);1hA7w67.4KK5}oh``fb^Z̠!ouW/ʜXy`G+ PH()JdXYtnVhONf ѺwzRFGYΟ|)(*$9#a 5g8]n1K[#1 4=3eߧ=h(FnsgAfm~5x˱ )~8D.$т5yqMVד2tPòw3U4|>\ xvs% us8:{;y۪$&(Lnq|ˡȇ`o0J9`e򛅖>dd4a,Fv^!BL|ہ_Xta''7mxkiҙh>1&t>E `zƅ  s x{@qC x̆F6۳Nbd42&e3c'a(1%3,cl.q\lڮx31T }c-oNIe9{͗O"9__cx31Ғ̜b'\=%cS5+b|'3[\7[ϽAQ*.tIFi^bU}~:!_Ag?~(x340075Uptu+K-*aE[$w!^I[03$1'G8g;uNIf 8o/l>x{*Tt9F\!Hqx[ȸq+B'O^gJO5+& ?^xG8=KK^?2by100755 PACPL-Konvert!t6Th0g\RZNJڇu{VlUx[%Jx9F"Nިx340075Upt+K-*ahW,1 0H bu03$1'G8\,_SfӝW*33Y2nY{k\f1&/Nx#e0vЯy:C`pkQx2Aj3+{E xvs% 5ks8:{;y۪$&(Lnr|ˡ`w09`%Lc6;,?h-ĸ[)`;P +Tc:d.$Sxkiԙh21&T`y0h82aFC x=RjE絯s޿iQܧ`xl51Ӆ$_!Q!/\avmJ=4RTͱ3'axb u0.1x##Xq^yQ W;*);`%nomeI,JJtMyV|%vXxkdidP,royZ:^9Zv׋U^x#eV^\({#2+} :C2ͮx31TK~տừ83";‘&`T"2%:߮;en]bvxKN/6SZy{{N'e {x8d6 1]`y/lLlJx{*Tt9F\!9x340075Upt+K-*a8k"OK=D!Daf^qIbN^qùY,̦;@Uf&& 9z)% gdݲ:x|/cy3|l^x[%Jx9F"N>Fx۶qR M6~gd4G7>A+17>,> ^VAEI9MoQ?=47L@@Mv+`WZT̼t]ݢ<]C=CDLQ s r tr ws9XKKz=\]\il+*DU٩`op9]2xrh3@RP,He] 6KbT'ҲJ ή~Pk%At7@h0Dj vc$A:73- +18(9%( vRj5&K'eAPz>dI݂plV݂d q^ZJM./L-R'7S(5-vL,%ɓUFg$B,<]us>{gw TH,|Dw3qH2%df^/s&F.>J'y|\+< }'LTT-,x MTA ߸J2Ksrt rJӁl+`j+CO# Ѝ*x:x31T5ѡ?-?SRĢVwȔ|Ǘ}ӻ8x31Ғ̜b-=GD=u~Nֻ9&% Ϲǯ ΊooV %yE >fj4y='x340075Uptu+K-*aHyiaE +?03$1'G8g;uNIf 8 x[ȸqHN3G c/JXY?e5+xa-;oRZ`Yu{-xmN&gZ%[z >?{:{Y }x;t s[30ogd- rLXumXڞ.!cpacpl-code/.git/objects/d1/0000775000175100017510000000000014010524124014706 5ustar viriiviriipacpl-code/.git/objects/d1/550e0faf3f38c4c10e995de78ab5643f9193250000444000175100017510000000132614010524131021773 0ustar viriiviriixTO0g'M@i M"}Xrl? Ѵ}g'TcH /{y% F9 VYܡ@(5BÕkd=+=j+pL6aeOҊdT+w>nJG|,s{F,`fٌ=AX*!q= X:Xxm[\`K ^C n--"d J~Pr$*ؙ.D㷓5%\wPZç9P 5QEcXq_PhÀ2z&8nxF;%Vý%Oy[+|J4b,\aڻg@^H:ٙPyǁeOX^?aZ`n꠸%9u:%5bwNrb{} ']WNQ%J݅2Cَ[:@8$ "##HAb/=@uj!(cL^SiS7h$s@`"]ɖKƹܖv/_}{}קӚr/}}y"GΙ GjU}ط4RWpacpl-code/.git/objects/4b/0000775000175100017510000000000014010546243014715 5ustar viriiviriipacpl-code/.git/objects/4b/7ee1f600ec868dc7e8a04d6a1b9b2cdbf708400000444000175100017510000000145614010546243022272 0ustar viriiviriix+)JMU46b040031QK,L/Je8_]Ez-({kI*`b7;~]QuaK"#J"=|kYi&!4ra[d$楧38_ZҢR9oo.\u/8LJayk+<=cjP%٩i9z oBS-dp)2~SN;<υI/m=7,N0^w!1~Pe~ >5gnuQ7= rutue0rN)Ӵ92{ {B/7oy?0q:UpyiS^WfGWj;AssrM_џ8N{OW&/Z`b PE _q*ϳ)MP聚\k+OdlAx[MM@hp+ѕU_] 7 H/1!y߭gKMWV%2Tf͸QSݛw$|u[yD_C-+.I-`Xⷡ"$ [6*783/mLJVu,~1h[^A9w\5Me9)E0; k7zK6sCQSZ.²gE'/ڽR\L K3Rnm4mL^w^jMa?g@/-} *dA3\!sTմѕN}P\CFԛCtGM @A5[u+Sy6 |=PsSRbݯILM1%'(乆PH>3o۾aƯz-͂*KLf,=[Ϻ>gKO*(m\Š-9{%쑷ۓDe$g0TPjjwV-v]X UY\жC:sx\ꠂλu.w|æ۲Ŕ M:`կCS,QĤuw w=+:yfBUXZP0Mƫ0hZI[OAU䔦=pPi3i眥M[gO#~`F|y"2l.L+-(ԥ9ٺ) +&خ;pѡC~B qxpacpl-code/.git/objects/a1/0000775000175100017510000000000014010524045014705 5ustar viriiviriipacpl-code/.git/objects/a1/e89e18ad20c227845f2099cb9894c799265d190000444000175100017510000001500314010524131021574 0ustar viriiviriix]oWECXvFI,8`Ɏ,`cٚ}ުsًͅ#Jԩު:\WɿMY[TeuMKj{[6}p0}Ot_?8oO ?>~yWWӓ+~rZ.fI,UtY DqٙDU^MzUS^Um6TXմ67E˴(Y6ˢomnom]KktU[,rör7y}/gizEJkVʚi'Qq:+ي#HE?gM0EG'_g:.\5n6IG*V]n_Nm朤 BI~z徝-|l:uN2VVw=6hid~˰*^.f7y٦(RJ Wy֢/˜ӭ V[9Xä&/,.[%eț&mv:Ex)˫&]dez)#W%Kp{>rT/=r!EF͢.(lF*^uئ7ٚfQuM6m&ś>lqMIy)#/Kөi*D3Xfhd|z4yhjJ/o5Frq#YZp8Dq,s :X$@ qybf V @M2fH=' JeR8ѕ]X^,, ̾S$c嶾MxQU6JOQSST |:ďVWWޅMe%kgѓX!Y> W2ܢ]Z1&wgL9.V-jzsJ˪(8"4(X|SXXAvY9l_%bHU2<1IqLMYV =xx˶*,؋\DsKW¨IWF?aɛnH 66\|J-rs+ ā/qgz}@[|h8汨~ns1t'ۊRe~tYށZv7KJ7FZtM[@۸Ae % IWV+sZ}*% VU4o)HTTwvL9YCԣEj$=j W=8 a<:&4γ2-ǖw)`bm{/^y#7uA)Zr:h%D tB.mISQvJ(tc5eK;Yݼfž+a`B}11k_4ogߛhNliBf]\Flc~/CehC1L!v*56 t*\uSa4ր"( OCEѻoX@9LMHJ4}I_C%ԶN4> ?=}'$J៣VRgg,%R=Zx !lT:<%.thd#zsnh:#[}&jDVhCkE}6C6]C5Xs8*R{H \8G`Q.qM\xI[D '1hzԿeq]i~ƶ3ivt7f o1UPfKv0C$V|(˰,oTOkzvx_j5( 'kf\h>3{> hҝhO2z@A9T#}Pg?dp*e^=ɗt G_DdS-)%#;b\NO; {)'jy9iؤqV/X01;C1ffźB(Nl)ǥ]~ /gҊu-P8&tTӺc u\4PAȲNWsZtnQOjGy6\Ic{c7NVEnҨU_t9Ip¡l3/c'7 ln{,?tɈl7;F; 3O=>(k͒|hKȋ=m{1F_DCpR 8<s4VHI9`FS6I.'l lgߐ`\8+ꢞf :IRdaՉvH>>;GPr1K2nݬUZ?WU*$vH/\/^ӕOhBԙJ ɞMtӣ׿}z* Lr'Դ_^t;ͫS>y-ԋ*5dc0l=0[c.kHRV]ކ`vK*_YUEN67涭Ƕq'8xՇ!N xgHN\ؓb04pM?==洄|aP֎“8RL;FA]DS:MCeC1>S?@d^\峰'$Lg,PRm-vCd> L?K89Sa[/G%bfQ%F63o#X_ea3+wGۦg$ƣ=c#^8:"2vOcs/oac!Us<2Yc09$L/Cefgtn뀄8^NG_D]cZxLX;䐎s-̺pOկWu;&}m H$ [оYêy'Ta$+zӾmn,P*qP.GP<%d5aާdXdj!牻52ۄ(\‹T 7b'`ß_Nilpt2>5]Imi7*._FNq+Mp,NM zg~q/-yʨp38[Zk4Q Gs~=>mhˬNv';1ʜ/b#uP_īHuHZ_M(ZZb0kj-TJjVnpptg< DVI> fXˤHQ?+p> XreBV5{M7v(Rf%k(Ֆ,w6H A%PS+ێAP?J%v{JVi Q]X蜜<yl{ >j=Utd}Zls` a O l9v CoERQp]P[LG5.~#,ܿh=Rw:ݝY\jvtQjekk#;j1Q{ctr >0aOUSjYyܥ객dC)E5/1 KC~zSx޿x:ڥg\"t|oQ](Q}6w\s"Dep/Ћ}Hy^둭x'dHz$ kV^vyY5>4%T0UҀc .pacpl-code/.git/objects/a1/c267e549a0c250a7d98be04d8056ceacf5de150000444000175100017510000000065414010524131022175 0ustar viriiviriix=R;o0_qCQCCbAѤHKqNcGH;Bx!{_\輇 ɨ<D_F`Pj".e`;cn6Rz=dnrr0s>cm,n*S[,6o7z:EJ:cbvZ+U$H6;Ƙ/hC/ _wZʶh? 3|TԌ{Rщ \wyLwJQ(:RjaY$Ӭ'I#؉%vD2pzYapIqG EʼnTF=5b}۳Yf` E\&ࡖ+j7v| u dJOjR H!lV' ٘dpacpl-code/.git/objects/63/0000775000175100017510000000000014010546217014641 5ustar viriiviriipacpl-code/.git/objects/63/b44a26c7fb8511cd7597fe9e2d8ff623c3f6e80000444000175100017510000000364714010546217022175 0ustar viriiviriixXoF_͝d]JlXU6 f9s}g1$63 -Ӈ?~yz$MQR BlpQFKQ'=0bOUzIgbM 1 V ct~z  b<(E=M~߫ Bѣ~_4fI,$ $IZdr{q8$ 'kٴ&pCC)i9> ޺s"T|)aM}ij?ijS6\g?poKTI\iat%X eK^?DW㫉7h3W5В&(BDIr"(WXt{>R_QS(2@$mm]/42JTJJ4em<@! ՠ>q%Z=2T (*`<-CmeF2Z"dJcB]ƸպM v qT&tK'tͪ]+(m^; xa췯<&&V5z}j(7لm!~$I"m]ZŪ1^W@' TҤOPe } eb´umKܹ,]}ٰ|-}_ZuGj68i䳙;dIqWa%G$ЯXEz]ͼ٧jh;c!Qa5]_;]1U}PdK@𚑌hhzh 1.0t 臵G W'8 I8MirHRSb,,%b]QWlc4<տn0]  fɦFHy@(5AUYh(%,NY] H(4 sea<܊ɪxK}Iua~L6jIq4C۷eF+33ږv0'Y_\ Ga{eQ./Q@C?bt$HG Һ Y2ٯDC\C_ňUUF!& SK-믺*]ƫv{P!q_z͍4cٵm {x}&Y& <ҕQ'S Υ ‘X H*Fq|3>aR( 6DYd0BYQ-E IQ2Ohù^3QM z_'AgPvSUW'I*;38 <}rbNg}>׊Gem:FfLodZZU\_P L>pZ/##W4O8(g1HaF1 wp]3_x=D:ʽ{pvQ^0o c66\m56Bc@?4 CzT= ^U۷Ub\~XЪdN Bz 4x XV઴8ch ĜDpX_'̍$>pZ޹B/ 5Ks.0|lg {^+K6>i_IAwpacpl-code/.git/objects/a4/0000775000175100017510000000000014010524045014710 5ustar viriiviriipacpl-code/.git/objects/a4/ed29cdf3ee663584a0b83d4181ff78fd5336e40000444000175100017510000000122014010524131022132 0ustar viriiviriixT;s0  4F>v3E2|q~}Aɖ $=Y>44w8AґCv) @p$ћb)IA##M)a<.bdJ΀%Q_,PEмz/p`kg);Ȗ%.-?N`5fn8'$R1VzUQmN 3=OܑDҽ 8 w{I[rsӐ<^a ӌ%fM(צՖJ*{;N2577P?tj:2βs|ʽ:5oʸ}+ aFޢVN\ΕrU"^Jڍp{>}ZN*5mb"[hѾ*{;i~U*UⳘɼy:h%ŋ*}HidN]cE^x/jSuqU.Vf]P%ə^BۈcZS _ׯQr歃*Q|i;,տg緭K rKE0p=VLԊWgӎ{1dixkN*V̌c_xLkeps~1JW\.*>MCZnR(]Oߚ|dpacpl-code/.git/objects/43/0000775000175100017510000000000014010546217014637 5ustar viriiviriipacpl-code/.git/objects/43/0719980d7266b0873bf6a5235f8fc555c9cd8f0000444000175100017510000000076314010524131021656 0ustar viriiviriix]O0eK5DG7ntظe XQ^=9`ₚiwFcT e€6=Z\oTqUl60=?v<<ց f`B>K7_Zh9s ;RYy0Fcp t3,l!&=O"4-e.C/b8g8lEskX/J-U\"o] l2*E1Ɯ8w'q%)wF MZzf$U73d+߹w:wf%UFQ:ɶc|}˻n3S!/j^D5K6:-UiU7e"U<1>W[z~rF'Rm)g-`&QZԍβ(133*-n*=2mm.dJ9XZ"Qv![cs݇Е\ svf uհx/j!Lslb\7j=mgnJKcmVG/85894zA[\Y\M$.3l0Ok̲ľgghLM] pZ|\RŕH웝}'mUJS&^r3fbLZ-TzH$gi674 ШÀ9(i. Y&p%NXUu1L0͖au(` Ηڢipv/{/:gOww}gzUUZ!}`loJR)ۖm2qcU:6*֨Ϧ2:7˙ns5omaGͷ8_fHK{:Qq;:8Tp#&!8~ ௫1&P |Wʒ݄_]^j^`\)UtcPNkK໑Gyi. ~Dqv}/V`{lY79V4 MmaˣK]%k>a0^=̰%(Gz ȇ[/xKl'<] yԐUzefs:r`y#p3GķH5 M|BapS_6F# 7v$x;%# ]; eemMX֦wAF*o&ibڶ|A.Ϗ'GO;[Ҭn$NEV Da?AUyTKA}Kۣ;Yk!1 8GM̺>] KAt;.K/ INnڷ],ԕf00$~z.'N~:>ou`DŽ;VLB4:U׿N8~;Rىv=rO4F3ʹϞy "VlKZZYRJԥOR^";#Љ8s^ͿWC?dK*WU8f^׉ZpQ׃ǝhg76,bZA;X_qCzdWU0pL'A=Aq;]@~ ZMM5P -c>o%0*>q(g.ޣڬBdS?9'zCoLyt#f?0/,9y I6W8p }glK|fgZTcH·VƔq,x|X/F*餐`CF E>rYNy- re4lY0'A6~Fو·kc@g"ʟmaR +ni}dKSIJGkB Sj* *_/I;/ 9ԭyPV ʹxD i;!mAeڢ6ʠ`1 ߣTgoBADF ^ZE"+ș50 %m+K7YagKg4 wƧxgw N,4ݬY: U6q͙I@C( &Kx /&N7t7N4 S|B]*%) URaQbc@/eoƚ8KP5, 0fGQLQB0 }ʟW }-h{}|cT{rD3)5  T8oT's 0cf,>&ns ⵹4@bQN?ap8VlzLMYб:X+(ki9Ao '?5dlȅ]+~:9< &.\BP0LQ8FW~’^A$\ "o,|טCp`Ղ#逊^>Ќwu("I&"˿!gwG\u&UhluxT̷f&aTqy)hW F@%! D؄:G"T8^B8$H!ќSn@V[|8kn%.X82:LA[e݌QbFa=\FĮ Hr~lP"S%i=Ksib/'%%'p\يFgFloRh8>ah;l+x|Iy4hAӢVSi9Q %uZ-R;ߪGYHg|?n? צ bI>nzpkS*^=8`rv|ɶKKKiNu0E֨xW=+ t4 |# H$#&{O+Z覨\J_ :(ud$Å;&hƽchR-("1\PʑxC)vרz9㹖Eovu)reS*`/#`ovW!yB4HLQGqКhe4Wc5\6MYxlgHN$B_'A7Ⱦ]O8rQN] )H#ܡɗ||֠*/fl xx/켳Mfm3*8\aִ֬_V :3q}^>=: f5~_Gthp{}|şe3 ru+;A^]T-,>)c'jԸ {_nztodI{[p~CM,?uQD\_c~.ih~{Q(HθAߒ2X4S>t!7Z>BN)tnǎp%l eѪW8\ PBë k^trEUZbY$4j6?tâx'l0zDŽ0V4n*3`ΐJ@x2hj5݅e/Ӧg{z =R}Wz㋧[4;0~ é  uÖ]=ڻڕhppacpl-code/.git/objects/a7/0000775000175100017510000000000014010524045014713 5ustar viriiviriipacpl-code/.git/objects/a7/197a26771885318d28f2ac21b68d90925ea80a0000444000175100017510000000045414010524131021553 0ustar viriiviriixN0 9)v Dn$ e3r%I&mO7@Ҋkص5\L.gqCM ؙaG cd4Nl<<;UIw{H|}#)(qK4=:0Z&$h%&QK`rθo,OIWe^͟`۰BԊBC.Nтdz;t\R`K#d\xޖa|M!*OyRA7l,[n㇑i+(Skx-_SdY0GK#[KNG־&e_wC6pacpl-code/.git/objects/f3/0000775000175100017510000000000014010546217014721 5ustar viriiviriipacpl-code/.git/objects/f3/7162e93d49b084a3628d3833aed0615f99e6c70000444000175100017510000001661314010546217021662 0ustar viriiviriix\}{9ݟB t8&8l03C t48v^߯J%=ͳT*JR5B=ۣd>GӰjb GF VdN_Ke_,*ޟU0Lq4Y-~WCc-,RJj_>zCME&x4XFI|_5aF.4:Qzz "`DWaV4EyEiY2QCPOjEtZ*ZR&%h j$2d 16UEpaH&zyF +"/y`1t.BJjJ&{>jzYt^/x׶ݚ><6Gx깢|b/oT2V'N0V4kZFUvvGU15jgjGuN:tIyYFQ-2\x5 xϐ2FsռIT]%u0 ieJzbpMnb3'ecyn EplyO<|LU%YL|CZ^V{ԡ p-o0>CI{8W.U*HYfȦ+fƃi>J8Cb3 Y.VwxQtV~A(`tQs.<ѝim_xbQ<Zt 7Ai9XL¥h4J*^&j8xNă dA4Z3BU:!Ì a#0 u Ɖ8dj$=,hg6]ݏ=,D)!AV& ]N;?{w~ wX3=j!>PMB");(gS4r/՞&>N7ICrٯ+|3/ @o rQ"3"wF-ܘeVe{>`2|QRV8.6C`yd[Ѷ7awmoC!yM;NŐ m~4 ח[3u k"dFI,SBFi,hqcֽ4cQLV!yI73žK~pZ=D\ Uх:C'T]8ljGt†|z}֗Sʗuux^S%=(N鴟^*OTy3G\NS=BukioPUzaDD<8qdtk?’jwN; wک8s 2欵>jҕT%i0&?{ ]&@J>Uh5 lNa`jg k vi k?[GVQ=Z]NUk[L!2q)*%^*i4?:i֬W[fi**5`_Ʉˀ4Ø.tދBG6w !9">IEC j yTZ=kr@Ş$& Gˁ\;g@mmjqf1PhM)4hK25zn\rp˵Ѱٽ9/xZU>heU BU`S-n|v @J dU9N>pjܜi8a_r+_Qx+\F2d^т'S7R ՚Gaz@Aj׍ֱ]Id1&UU“:ˬ)##itJp%Xku%sT.{Gȅ^"%WO[fEIq jݜW=|*/o]?2"T45yT?O_TqD'A.ƹl0Nqo#{8b '鲿:fUf/،ekL>zoz\5S@9ʓќc;o6,}E[E5;jnvߋ?+d.³,]uI 2% Ey8 +'H1O{l.~03Lliݥ!^;CHYZ" ]=tu3TF ] t -/s{҄L>f%Ja)bGx.:Qe@8 ;zYR[%-\^=Vy vӓ1׹@o'u=J,MxNA8NoIi֋z/YodҔXӂ'W]==u2<x(IEz 4N|G ZSbPmiJaeźB\<S>/ ,HQ-DNn*hHRO(!*j]f jYΦHbN,&j."Sn6@E1gC "@wA>x3<]B{44/s5 5 ]B !%jGеփAJUNÜjख़XImxYC-Bf"I/g$ӓ^9PB2$CSAOz>މQ2\ktJ.}k{t'#>O{bv/O+g)q?m7Z|MIB?FBA4] KaޏBMH'jbh_-V;žJ8 +>=o}L<;?[+p,O/eS`|aCCb)lz}LM5j-c b .zW =Oc*{&%efcˀ,B] 9LS%Ibi{жtۚ}AѢ&``蜢+$ˡ3Ȉ|NPV/}f׀Y=ʃUgO6^ջ8(eX=\شo'8 {ڼ|pF;a4s*"zBBTakGbY?oT$Xx8`Nzx-"*B pqKeD.3^Y`Ji'B" n.i"6Rdx5#Go6J'N8ݪ;_! %~r0lOoPRnQ$B)a59]OBy-zy_Gvd* xސ+5S'P&.K}r YZ1 u9͝]Q&  Hq,j=_ւkBv;VDzeL@1^yGp~~wOqيoC:Ihԁ#8,ā FTC9YA4| 4Mz la574_m2=CN.@;fnw57 OYs0@SJeMVp2 3_ 0ulc CfodiڿAt DYnxXy 8.džm<{ ;Fodm-Jǃ;o)LGߧ4^yE*[>G~ogϵve vY2&CoH!bA{1 .plAQSņAHr£0#Հ ߞ@"H ďX wDc SCH TUѯXeۑ+1y HH{b-N>˶SB +\1?ҿwM,PC NN^QѰ\X^ 00BQf;A|cWѕU/{<`kH4Ir`_)␧BTP?ؘ6hqpP~+ܷ!N_EK2duHvws(^w~QY{%61C]'<=ǚE`v8c6e+,"ܚO6x}/,APХSr " ĺm i76 HPaQ,u΂C 6blDSQܿ L<Õ17lpۅ{n4o9"t٦ oK~?'\-/pG-0w69 ({;)<--7Vprqݕ]娘y̒|͕l3(T_)1ر(?V8 6>ԎMK.d y+.K\3^GQ;$ް|ƑS2KSbjlY_KzU,9zZ򤰝5*gXۼfwg''ȓ*7@q7켨!=),XS$jk5Cf nž0εMp 3#CFT| 9I 98Lc1ɧ:IHoaP4%A`_k"\C5}װW!kzÊY_FZԭ"dm&6"HY˾Fž@L@bK .W`6A&bc;лPp<Х~Q^[vp >O'Ά#xoU욨.B pZIHtob+5b:Ӑ MeW8L# )n *5˦*X_$(ۥ#C1N@p;emw[hf|݁hZKZ3Ш rh58N zB`]wS8R55-|h:@hMఋ;62G(E(|Oy +!e86H RldeƑ6P&zzb`Z˹!#YYVpcFڭ|Zɉ؁M;҇=:,#*NiC!M]3w:Q1.qK˽ѣQ%Ìeͮ9Z44#7Vf|^Mf5KCEz: %EY] Tʯ_ngeQhOXHRU$ΒHXVLfrř|( *<~ET N%a Si ("kYq8NAkO˦ NU9WTk -e]*Y0'+G*=Oe%<2)>NOxnEjxÅZCfʒ#{v<,jhR!dƐbxa2شRf !SwY|Nm(=,JM[+41kΉ=ɎMs͕ "d"X70k3-c7L |Bo`T/E~#Uo*D?H?=$aB?<'эjs9@ҦM ,ÙU{hѽI_( "I fgx= CH*^ծo gpacpl-code/.git/objects/02/0000775000175100017510000000000014010533130014620 5ustar viriiviriipacpl-code/.git/objects/02/229b9c5a6e13bed32d716d3dc3350e226d01390000444000175100017510000000254314010534622021664 0ustar viriiviriixVkoHg! Vy4U] ͣ"c0x=vM 61u{νf9?멌s#ZQ7\]' v֊K\<0".P*Cwh\(a>!ɊRDmͮf‰3 hh7atF:=aP'Kc_6L;6ړ1:\g'V:-P q::Wa6 uBRw[:W4cѺզnasFCӦ`5w1iʄeaMLMvNGc¹[p81+F#S(/&6tbjL0%k"…\Ǥ-@'Mʄ˅{tV j%bqL-& D^(7_#OH(`iwV\/ 50ڄTtWM .H*4^0e)JS6%"LV4dNaw', g[uT>) 瀣o'|u`|f=*1mhv[w{TBS0|.| Uu%7܆}]qH^ґ|z"yX,:rtFWhcR2߈2 9J QF_nͼtͬ+~#vV|oC]Iaɣ3y1K)}fDUZ|";i:%,Uؘx9*:5 ;ϭ,XxJWJzA,qBti7`i٨BJbO6p:15µ"G(arx}00H"(]*CSLqqAτ?g7# B?S%.(`R:(׮"KAt-0341~,V/`wqCq98ZYPq8*g2Ȭ7Uz9OIq .)Vud}1Qsb|eHj0!qF$1FSӴAx17 _0Nq,&g":D,^-2BMӁꈪf@rRK[' G+8ѳE?y P"  ON΋pz2$f^ d40H|8&+ E?8STS}*vdQ5Q3>ŦCI42<2t࿊K"~c8+,R{3E#C)*PXt,UޢN:CR1\wzK,yt͇Nvp~ Ymh4W?-(%"ܼ^ywxsuxociYW#޶Q7zYR]Jv-ʓ ۹51W|5x_ QM-.M@=vEx#ԏ.l,8f!얺٦سסu")J5 yBOR Gs~M[W#خYASk t` 5)z(re7rH! 5(ej) )9xsD[Y@e>n ؿ@Z=%Շ\`S''|!>GC>ǢwBa-wnQ71欃`X~S3 Ka<#-Ta2" n$V ɔO1N?x41O{rșD{03pg;C&9dBT p=MRhΧїMeO~>v4Aw.Ԧf*F 5"lG͉CO!7тWnKOU\]O˗͊#FJ$/f$:휋8&'_ Uׄ.8[[-[ []ȝ_.2N}ʴ6\qw![_3;AI+0Kϊ{Ob4z#iUq6&aڼh__:y)#h""Oj\ΊIm^._SزI֩>^GJS`5Yx;Qx qzH:k|snS.%>q;no*rqx:Ynpacpl-code/.git/objects/ce/5af5e08faf6fc13ca3165fa3f7f26982dc88450000444000175100017510000000023314010524131022274 0ustar viriiviriix5 0D=+znBAk=H=$]LhlW\y3ړz9r$ R+UnPg /F %ٓLviY Dh6h SPU¨LbF^2U 2Y2c)@Npacpl-code/.git/objects/ce/23b87d138a4ee9131dcd1593a2bba9172fae990000444000175100017510000001230214010524131022174 0ustar viriiviriixX VjI}G&&ΑG ?o}~pA(2H_l.T<~_\jD›fH<$rV|kQyS˵{ғSMglom&Ð-L䍇(>mL<<Ljiia̔ncz!evSkpwvIg[m[MLz,,r"9gq,Ѱ<.8SE JDJ_@E;BrvyCw'G=*cĒхX܁=_{6(RZٙl󳡘`HܿwhQ숙gdUb[.סni1gq&7I$6?\4 ."B{Q_Դ߯<<;,uM>ceob){Y| v.[L? P*X`[>,4x>UZpn#P [QYYYGΊ|6Y ]uMl%UgAg&fg233]i،| S4,ZF"]Ȋ"Yl e UMvxN&_q*0?n7k8QC (95B&kk5lH4LnNc:(5 6M"73ŕG]\\~D@>DVo{":T"ʊ/S W0"}7t`ss|ƕ̏Wo}JRs|S&[k.Q=u*raԥOwG29-9zxJ͈cG[Hk4}RV"˦Ѽ/y:(q wzu^{GIlIu s \sw풺`$u # |j;A €9w`5&>8VuK}3!I}ոfۺ7$aRq9Sl-//`AGx՞dYL"2LVuQDrbvm,|j{t*f)$<4b`1%RYG 󁼓٘XiZi)"I$@`kq8A׎jw@'6"uG[);|E+HƯo,_@l/Mv%JRdOBD"Y n ֍mYd#@¹?T)6v1fD/7 ʨ硭 ~CX1Z?E )/s~ ?~\y1E##q(hI8ޣI2Zbi%R$tx4- Ƕ  nk Iӯ̫g_yjpMԪyw$ZcJOA0!Y.T.>a=1s)bgM@c_1NV+ _s KO Ϗy D$A#n9%.c j?'v>UcC#7e> J@X;t.v93F4H96\y Y_ġԻ>xlC3 $yQrm읻[۸krK@CKLt8zQ &nbP i+ QG.@igM(89<Vv/qK[lԹ;UOL0A2o"0 %dAB/DTb^Aesi%m$!S9B )'endtaYOhF(mU|oHXNb "lh 75&\Y 9==٩ݩ(a.*P+cy~ '/0vsKOb:TfX_̱ĢQ>&2Ix@5᱃Q7#8K(]rݱ)D$  zO+DZ{PQilsK7U!O [p48.3''T70-nߤ<;K_jiѮ+7"'jhP$ޞD-#~Gyޮք3Twg]K Zim#ktʧm\BlS.I:@oakE_MMMʛǀ'?F?f@vnDf)]!pCi:Bw@``E^z1}k9qji(a ?g9{O8 `o0l \W/? -Ng @.-?_io S7*`mF'n@Gn,% ,9!Zz`"Qhk5{{oYx`*ɡ˩!c^i=lt lju.l|=CݏݐRUuJMCCVwт d:y,u9] r3Vmw|*ekJ'9!ŀ;>+0;WLԀyjxk!x NຌRtT!g'phX]Ug Gʍ-ei+yОseZ?cksO%Fh\**%?hM)`.nesa@1|9#`h|'|_929<4T2| p3{;?S椟' i=߿_}kµRms{aHoU;!??!h `8rpUQrSM>~aAp52>pWMeXk",kT7%mc3k脄-]2\m@.y0X D. TyP0ik0eоMc_ӿ&NiQ@_ƀ_H>\^4`% Rn4 ޸:j~PАa<ռ0g"/sY8_ wh:6StֳK7wpN322B~򥮅|pXҟ׮I)\z= _hqafLm>r5$/to[M-+\N(`FVNv(80/l3vhꔸ_yOkТb mgmX霽|7Bg('(WމUR"˦<:95CPDeboE_Syp69s=2OWx5X[[2-6(&"Rٺ]S1z#n@m[MI<&8L]yêTӗtdGS!FP뮐(}訚GA5ͦzPJ \+pWJIIJBX͢bbtbc''yM(yU7KN=$.|Y:߂x`&[Sf}#.YB[q͉ uCKrSz^spacpl-code/.git/objects/2d/0000775000175100017510000000000014010524124014707 5ustar viriiviriipacpl-code/.git/objects/2d/dde128862713c319eea24f898e6e21b07820f30000444000175100017510000000045314010524131021707 0ustar viriiviriixuN@FާBŖ?I5@PԐLac$wC ՙ̜ih;JD.ŃXB94XK}Qgu3Љ04ze"0q"2o"5 LrQwl8Y鏷7m뛞ǰEY "-osFRҼ<}swBrTQTBd;[ܺ10ì=SNT@Pw{? z_oyu/A~dpacpl-code/.git/objects/5e/0000775000175100017510000000000014010534661014722 5ustar viriiviriipacpl-code/.git/objects/5e/2726338e0c9a1e8c4492ad66b9c7ce21b8f1830000444000175100017510000000042214010534661022000 0ustar viriiviriix+)JMU062a040031Q qaXx(Cov?m;=QsSSG]Ԣ4pԸ+ul񀽷[~^뤂[SmX $"JoKžeϗyfgΛ-߃Ma9Qy.6Se+.IMM+`?xDiְ̎=9 Mmv X%%[7r\jFP%(x  r ){),{Vt+.~Xpacpl-code/.git/objects/ee/0000775000175100017510000000000014010524131014771 5ustar viriiviriipacpl-code/.git/objects/ee/8b7249ac4faf39bf0e731318df135d03e477440000444000175100017510000000033714010546243022060 0ustar viriiviriix+)JMU021`040031Q qaXx(Cov?m;=QsSSG]ԢXF. Y.N~4E7T7;'|\ҽ/@f$g0[wr{ePo;eR<ǝSANE/"p/w*mH#}W)UUcV}lZp8;36)n+%͇ %y!_0t,LzM1\~(jsh9`F_ѺZhԓ)bZ}r +wkeӆe2vgWT[g8BuΫdFUV> RNҝ`ȇ/vy#5Z` FO hkVi JPD*DN(ڠJ(%jP?]TF̮%ޠ4GK,,nLG@rWyI5 ] 6m 9P |%@aE NhPBa0%V,ɑRmY7Ld!8!IB$ij]2T:f4r}"I*B=L P,rVOr):>Ӟ!AnE=vJ.|X *:T-|+oPK9X42'8R В3 P;;vqY0ܤ}Eq狗///p~hwou~Ə_A5_9ʒ?`eGUy7Q]P/ACF`ջh!1%,DH*UNfGZ9~SS[fP% &&Bӥׄ5L!hJ{I=N21([9W:x/E}YW=Idk?8n!S^ pde*?U @l4VJ"!md5?؂ tMLKzEapp*TYnH?tZhOz ^LH 8Ps7R2{笣p3E:v|ɿODoScj4'3&pVLN|*$>|'bpl_mcg(k=@gC="|awh)9$SQh\rwbEA?CC`P[G%E:SĢKFŋ=+pq“!jӹoWCb)s ^EEԼ|&mla7]AE7wNs~3i>n"PyOrOĝp( =uJyS$wM 8nPu›jbm˅oڅXEY9Xs]k-69JƢY()cߠd$XX4яGXPL>ˤ'$#ZB_(=faW#9\a,0y; 70+(4π_Γ$#2f}SiRvK<7~_debE,U>R\Aw}+TkqSlELc CzOW8A_3]#zK໶ s=)0 SEzoGp_D\V8W&X87;v$ O2'~pZmu=9kJnUPN ʈne)al`A0b"Qwl r+ %rn2BiR [F/' KlЦ;P44Npl3!M)vs:SԵQ`[pXUעXbMD[+nxlÌm čGւD! d"AϘ,[7+nZ&;Cv:(p݃Yh!7QpQ|g,ڴ]5aRuAv5]29~+p#S΃R쌭Jԕ&i^E맙šJJGǵB? `#0 ĻnSX *fI;JHPT5rDX%;gR=QCB\msjN+ԠǑMzvNJ,DM{ ef^<)9xBYʶ }|a}Nex6ۣ=;LqtTR𗼃 {dncA# B| J'xљ^Fv|LBsNa`T쑮X-ORN! |R#jV*菝J8#{/Ρ}pLL;"&R8)29!ߑܑu@0Tm#' MemIb X$2YSqŗpj%魰M(R%tsyft4qd"J W&(l :?rg)d;3 b}[.ZE{Ewmf8E>pkPzG6R"zb2se; MD"oI+KgA8EKy6ԏ&X1p`ψ +N8z]P%~df.LޑwK;j+Knh\H} J8qmITb׷xڱ- b)K 5BoXGbmB@;6'j*8x NLE̯MXzXQB& ~W3h6O57 TT=B#①pw^C<(EƱ֔(=MA8`AS?lN5](n(N"pCF"9`+w])Qcw0"0G] MЍ( ؃\>|i9p+v-ܯŏXHU!Ss r%aC~g'J=oү d>JÄv+hBwdM&b* JwB$QaDnJs`,G$?:c΍^@• |c^d |3vs?drylK` O?Jb2|"GTA"[>Gf 0:CMŋ/'YGD'"s Q5`@Vtexug{+<]U3ͼ)gN̶ɭ8 EG@;ڪ ƃz=I.[(_>'-F\SO:F}@O/>͚r\² v;xhVnf+hbB47ⶒ}]I&¹5a! 'jpb&e(>Dy1a)7U !a:Y<I8|(F/Tj3$@O;^ҐLB vŔ4>}0t M>E"Ʊ;up֑nU%4Ó EBV^פ|&pȸ+;x@qCMxCJy+ unqs\E( ܩF\{]MY-v$33+ 1 ?G6apll fωwY0)R.%Tef^qIbN^qùY,̦;@Uf&& 9z)% gdݲ:x|/cBypacpl-code/.git/description0000664000175100017510000000011114010522500015204 0ustar viriiviriiUnnamed repository; edit this file 'description' to name the repository. pacpl-code/.git/index0000664000175100017510000001644214010546243014020 0ustar viriiviriiDIRCI`"X!'S`"X!'S dݺ5#rʍw.ڲ .gitignore`"!]cV]_M][و%}DbdbAUTHORS`"!l+]_NKM8Yy6.Yh˵COPYING`"̉ ek`"̉ ek*C*&  ۳q ChangeLog`"!l+]_O= '_ ˘Ǚ&]INSTALL`"S h`"S hPUeC8gh }߂l Makefile.am`"a`"aUSqb=Ib83a_ Makefile.in`"!l+]_Q⛲CK)wZSNEWS`"!l+]_R 82Cdtu1V])README`"!l+]_S/QJ*/ P0y^B README.md`"X!'S`"X!'S Ә%,5 6k[y+BTODO`"ʄ<U`"ʄ<Un|/&^ yc aclocal.m4`"!l+]_V&0%?U34âbqaclocal/ax_prog_perl_modules.m4`"$Ŷ`"$ŶW,!-=!tpWX codecs.conf`"協`"協 ki zH configure`"B D `"B D XcJ&u-# configure.ac`""}]_a[x6 /=10dNܳextra/README.chromebook`""}]_ZQ罤fhdxextra/README.extra`""}]_[ӄW4î{{wKׂQextra/README.module`""}]_\8Aۆm=C _extra/ffmpeg-conf.sh`""}]_]R{–~3fwextra/libav-conf.sh`"_5`"_5^G..?_hE YgYsߚ)]extra/mod-install-debian.sh`""}]__z&w1(!^ extra/mod-install.sh`""}]_`1yp"IKZKextra/sample.m`""}]_b6$Nxe4U?ݞ rУ install-sh`""}]_c(j1ª&Gaņw.xmissing`""}]_df.Fök̹d pacpl.conf`"8`"8L{ʉ 9P>;Ґ-Fpacpl.in`"#$]_f#}N/ pacpl.png`"#$]_h Il@%eD6T'8Gpatches/0001-Fix-installation-under-different-prefix-and-or-DESTD.patch`"%-]_i7{]B=hRԎ patches/80-fix_enforce_outdir_switch_if_p_switch_is_used.patch`"%jm]_lj\)@f.&cnBD"patches/add_alac_decoder_m4a.patch`"%jm]_m-('On!x patches/configure-exit0.patch`"%jm]_n!IrJ (E' patches/fix_config_value_0.patch`"%jm]_o+P=hXDs(patches/fix_decoding_string_ffmpeg.patch`"%jm]_pn7W}BĤF0patches/fix_destination_always_overwritten.patch`"%jm]_qC rf;#_U͏patches/fix_wma_tag_names.patch`"< Y:`"%* 5T&}!n &gpatches/flac_decoding.patch`"%jm]_ruW~D0 @1#patches/multiple-format-input.patch`"%jm]_sU?8]犵d?%patches/typos.patch`"A|t`"A|tw ]*(&cQuDzR=$plugins/gnome/nautilus/PACPL-Convert`"%jm]_xy "/< ^!plugins/gnome/nautilus/install.sh`"u`"uz ]*(&cQuDzR= plugins/gnome/nemo/PACPL-Convert`"%A]_{ MHo_|@fplugins/gnome/nemo/install.sh`"%A]_|~42C&j"~o L$plugins/gnome/nemo/pacpl.nemo_action`"%A]_}#}N/plugins/gnome/nemo/pacpl.png`"%A]_gIPًMVάplugins/gnome/thunar/INSTALL`""a`""a ]*(&cQuDzR="plugins/gnome/thunar/PACPL-Convert`"a`"a wnMܹY`#"plugins/gnome/thunar/PACPL-Konvert`"% ]_7WήX|iA`%plugins/gnome/thunar/install-gnome.sh`"% ]_7"ږ?>Zy<(R#plugins/gnome/thunar/install-kde.sh`"% ]_#}N/plugins/gnome/thunar/pacpl.png`" ']`" '] VkKK@6plugins/kde/PACPL-Konvert`"% ]_Zo<_i܈Eplugins/kde/install.sh`"&.f]_WjWWFj|K8 plugins/kde/pacpl.desktop`"'7:]_$~Kb@^(.JBy7po/GR.po`"'7:]_?(E3Y\o*M YvApo/ca.po`"'7:]_lN^K UkO7ȓpo/de.po`"'7:]_,$iFqr po/en_US.po`"'7:]_~"Z}Ɉ-|'9(a1po/es.po`"'7:]_T03/[7v:o*po/et.po`"'S@]_]혫ntc`F X po/fr_FR.po`"'S@]_"Tbxo֭_Cˤ5 po/it_IT.po`"'S@]_*x$mޯlԫQ po/nl_NL.po`"'S@]_ۧȣX`< [po/ro.po`"'S@]_&oh [YK`QD3R po/ru_RU.po`"'S@]_\8YSy㦑Svpo/tr.po`"'S@]_)l{g4-m) po/zh_CN.po`"'S@]_;2p=π@ ] h slack-descTREEN73 5 K~속Mj,@po15 0 2Xhlv 4 cFRmextra8 0 yj|zAKnWخ aclocal1 0 %kw! wn/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi dnl The trailing newline in this macro's definition is deliberate, for dnl backward compatibility and to allow trailing 'dnl'-style comments dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2018 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR pacpl-code/.gitignore0000664000175100017510000000015214010534601014077 0ustar viriivirii.git/ autom4te.cache/ config.log config.status Makefile pacpl pacpl.1.gz patches/ pacpl.in.orig configure pacpl-code/missing0000755000175100017510000002415213527600265013526 0ustar viriivirii#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2012-01-06.13; # UTC # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, # 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file yacc create \`y.tab.[ch]', if possible, from existing .[ch] Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and \`g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # normalize program name to check for. program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). This is about non-GNU programs, so use $1 not # $program. case $1 in lex*|yacc*) # Not GNU programs, they don't have --version. ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG=\${$#} case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG=\${$#} case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit $? fi ;; makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: pacpl-code/plugins/0000755000175100017510000000000013527600265013604 5ustar viriiviriipacpl-code/plugins/gnome/0000755000175100017510000000000013527600265014711 5ustar viriiviriipacpl-code/plugins/gnome/nemo/0000755000175100017510000000000014010535364015642 5ustar viriiviriipacpl-code/plugins/gnome/nemo/install.sh0000755000175100017510000000034513527600265017656 0ustar viriivirii#!/usr/bin/bash echo echo "Installing Nemo Action Script......" echo sleep 2 cp -v PACPL-Convert /usr/share/nemo/actions cp -v pacpl.nemo_action /usr/share/nemo/actions cp -v pacpl.png /usr/share/icons echo sleep 2 echo "Done.."pacpl-code/plugins/gnome/nemo/pacpl.png0000644000175100017510000001243613527600265017462 0ustar viriiviriiPNG  IHDR00WIDATxZ{tյ9'C^$$  X"iŢV]PRo*ڋ꽮Zv-v)!U(! $@H&: [ΚYə!C(dp M^n݌MSJ'BŽBN+rڶ_W>YfMGII`MMܚ !8! |^w܉֥/@ pEyyH$@ P(`0G6А8~wl]bF!BA)\\!@޽{nݺvttFg̘bD"0 I À(DQhJ4L裏|>oܹ=so <0sPJi*⭭;۝VϚ5 DSJiTUU( ( @Q0i 1R)عs'_{?sw <RN+W^ooKjkkQQQ!(RJM!1UU*Ebt]렔 EQD2---hnnSL_|r! (xٶ]wucǎ窫L2  4M Mc >󞪪 u] J)CG<ϣ &8Bh*կ޼}&O<֥*s*2 2 !,N{7x▖gBmJ8l-BUUR:|>B^, cp]ę3g H(b8~ӟff ?NAu]-Ruw+&OǡHmC4\sqQlٲ#J19(*b18aH| {u֭XhTU?p?Al۶mϗUTVVz`0|>x<}{?>lRjjj0sLyxu%{[۶QSSX,L&qDZ|r444`ppBB!ZSS㕗߼lٲ|A)mo@!죏>w0.4ig@ l6p8UVK_٬<pR ,c !\b6c0sLCuA8ݻw/NR\Q&9x۷o[aD&!+WDmm-2 ƇQ&q 9c a@UU?y3 r9u}H(y˗㢋.pQrIǵW_}޶6S!87@x/~x"પq7ccc^u] qx%,8J)TUEOO8Ey q!p5`ttPUZMlZfՌ1^4g RqymT\\Md022ӧcɒ%r/H$QRGAUU^ErH&(..ƪU8# Ç|7A>m(..^I1'L 4M#Li+ rYA4Myq8l6{!%1L&9ڰo>[OLìYdP(Dwƍ1NB@!\b1A|8s N>S#c BTUU! ²,?q<Q{СC @UUf~$1L8QFuݹU<ضm쒒B!!gCGG,FFFև(  $C:طo?:(~l+XC]q-h1p,9}T*uNٴiPWWvڵ ,ۜsr9`um-ke,CEQ`vmD`jD&ĵlRċiW4 e!#̙3>5˿A~^PJIBRYvA 9rc!^qL%rΑd~r- <$F(>BB%# jBqbEQDkq/RO? `ܹaYl׮]2dI>*" Q#\E((>K Ѩ/.Dj&BߏH$˲`L8ccc(N:Շd`&<σii``D4C L\ŤI؈T*|!BH&0 \N6p]i5$cŊ~Ht: EQ`oe !HUUJKK?-P?mhoo Fq% ,!|8 @:(gQj(ػw/ad6mM  # J)K&ޏ~K/KKKK( FFFpq_}՘={]} !`۶5uݍAB)E0_{@94ݍ'Nz  cBӦMPey?(uwy'088P(T*UU*k?9Ji1u]XjJy0}]}:EA6+AJYtR<b8z( @ 9 )R Bix7q!躎2166&,MRTUU'R(nO#ɠ/F:F:?rmg1u]}˲|j*ݻ`R)>| .|!8?#2n&q߷ySNٳgK{/T*B8D` !k~c&N8+WOXp!"ɲ웷vۦ *hg|ZX<,^x٤I>3nMAQ^^.L"qL&Bd2SORQYY)DEE())DB2QTT$EII,4Me˖;ӛ1cz]wEƟn[,{MMMJ,"v:c(**Bmm-,X'Ob۶mB4KҩK]3o<{PUK.EuucvjM6lhe/8\%ݻwg3fXw}q~Qyftuu!HRqA?-%dC1)cԩhjjcmiiQZ[[W^ 6l,i%gH/}Xv]lݺu !܌>(++?fy9"͂sH$磱Q;v{V^/6l{Z~}q(߽L M zmmmXv===VSSs%KH}}=b/~H&]QB" )>44ߏ'M}O% 8Csx^9bn[lhiyy?Ϩ@MM 9-G__zzzi+VؿtRYs<3\.,Kp)(qΕ3˲F9::Z `( x<W% ^\>LӃ9?iZ:<7oW U~;z+ 0n܌&@ Bؘ BK(.sMιQ, )LA!Zp(s"8hٿo"KxEssq^'RZ+pΙ^8*FQ}!B^0 !\!Dp(yjgR9<Cᎌ8?O8=?J)˲ˉeY ߈qaXނ=UU]qopUUc _~g~gIENDB`pacpl-code/plugins/gnome/nemo/PACPL-Convert0000775000175100017510000000534514010535306020052 0ustar viriivirii#!/usr/bin/perl # # Copywrite (C) Philip Lyons 2013-2021 (vorzox@gmail.com) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . use strict; use warnings; use File::Spec::Functions qw(rel2abs); my $debug = 0; my $input = ''; my $name = "Perl Audio Converter"; my $formats = "FALSE 3G2 FALSE 3GP FALSE 8SVX FALSE AAC FALSE AC3 FALSE ADTS FALSE AIF FALSE AIFF FALSE AL FALSE AMB FALSE AMR FALSE APE FALSE AU FALSE AVR FALSE BONK FALSE CAF FALSE CDR FALSE CVU FALSE DAT FALSE DTS FALSE DVMS FALSE F32 FALSE F64 FALSE FAP FALSE FLA FALSE FLAC FALSE FSSD FALSE GSRT FALSE HCOM FALSE IMA FALSE IRCAM FALSE LA FALSE M4A FALSE MAT FALSE MAT4 FALSE MAT5 FALSE MAUD FALSE MMF FALSE MP2 FALSE MP3 FALSE MP3HD FALSE MP4 FALSE MPC FALSE MPP FALSE NIST FALSE OFF FALSE OFR FALSE OFS FALSE OGA FALSE OGG FALSE OPUS FALSE PAF FALSE PRC FALSE PVF FALSE RA FALSE RAW FALSE RF64 FALSE RM FALSE SD2 FALSE SF FALSE SHN FALSE SMP FALSE SND FALSE SOU FALSE SPX FALSE TTA FALSE TXW FALSE VMS FALSE VOC FALSE W64 FALSE WAV FALSE WMA FALSE WV"; # main sub sub process_files { # sort through input files and discard those with unsupported formats (excluding directories) foreach (@ARGV) { chomp($_); $_ = rel2abs($_); my $input_ext = `echo \"$_\" | awk -F"." '{print \$NF}'`; print "\"$_\" has the ext $input_ext\n" if $debug == 1; if (-f $_ and not `pacpl --formats | grep $input_ext`) { print "$_ has unrecognized extension, skipping...\n" if $debug == 1; `notify-send \"$name\" \"Unable to convert $_ (unsupported format)\"`; next; } else { $input = "$input \"$_\""; } } # invoke pacpl and start conversion process if ($input) { my $out_format = `zenity --title \"$name\" --width 250 --height 300 --list --radiolist --column 'Select' --column 'Output Format' $formats`; chomp($out_format); print "pacpl --to $out_format $input --gui --gnome\n" if $debug == 1; system("pacpl --to $out_format $input --gui --gnome"); } } # start main process_files(); pacpl-code/plugins/gnome/nemo/pacpl.nemo_action0000644000175100017510000000057613527600265021173 0ustar viriivirii[Nemo Action] Name=Perl Audio Converter Comment=Perl Audio Converter Exec=/usr/share/nemo/actions/PACPL-Convert %F Icon-Name=pacpl Selection=Any Extensions=dir;3G2;3GP;AAC;AC3;ADTS;AIF;AIFF;AMR;APE;AU;AVR;BONK;CAF;CDR;DTS;FAP;FLA;FLAC;IRCAM;LA;M4A;MAT;MAT4;MAT5;MMF;MP2;MP3;MP3HD;MP4;MPC;MPP;NIST;OFF;OFR;OFS;OGG;OPUS;PAF;PVF;RA;RAW;RM;SD2;SF;SHN;SMP;SND;SPX;TTA;VOC;W64;WAV;WMA;WV pacpl-code/plugins/gnome/nautilus/0000755000175100017510000000000014010535364016550 5ustar viriiviriipacpl-code/plugins/gnome/nautilus/install.sh0000755000175100017510000000023413527600265020561 0ustar viriivirii#!/usr/bin/bash echo echo "Installing Nautilus Action Script......" echo cp -v PACPL-Convert $HOME/.local/share/nautilus/scripts echo sleep 1 echo "Done.."pacpl-code/plugins/gnome/nautilus/PACPL-Convert0000775000175100017510000000534514010535271020761 0ustar viriivirii#!/usr/bin/perl # # Copywrite (C) Philip Lyons 2013-2021 (vorzox@gmail.com) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . use strict; use warnings; use File::Spec::Functions qw(rel2abs); my $debug = 0; my $input = ''; my $name = "Perl Audio Converter"; my $formats = "FALSE 3G2 FALSE 3GP FALSE 8SVX FALSE AAC FALSE AC3 FALSE ADTS FALSE AIF FALSE AIFF FALSE AL FALSE AMB FALSE AMR FALSE APE FALSE AU FALSE AVR FALSE BONK FALSE CAF FALSE CDR FALSE CVU FALSE DAT FALSE DTS FALSE DVMS FALSE F32 FALSE F64 FALSE FAP FALSE FLA FALSE FLAC FALSE FSSD FALSE GSRT FALSE HCOM FALSE IMA FALSE IRCAM FALSE LA FALSE M4A FALSE MAT FALSE MAT4 FALSE MAT5 FALSE MAUD FALSE MMF FALSE MP2 FALSE MP3 FALSE MP3HD FALSE MP4 FALSE MPC FALSE MPP FALSE NIST FALSE OFF FALSE OFR FALSE OFS FALSE OGA FALSE OGG FALSE OPUS FALSE PAF FALSE PRC FALSE PVF FALSE RA FALSE RAW FALSE RF64 FALSE RM FALSE SD2 FALSE SF FALSE SHN FALSE SMP FALSE SND FALSE SOU FALSE SPX FALSE TTA FALSE TXW FALSE VMS FALSE VOC FALSE W64 FALSE WAV FALSE WMA FALSE WV"; # main sub sub process_files { # sort through input files and discard those with unsupported formats (excluding directories) foreach (@ARGV) { chomp($_); $_ = rel2abs($_); my $input_ext = `echo \"$_\" | awk -F"." '{print \$NF}'`; print "\"$_\" has the ext $input_ext\n" if $debug == 1; if (-f $_ and not `pacpl --formats | grep $input_ext`) { print "$_ has unrecognized extension, skipping...\n" if $debug == 1; `notify-send \"$name\" \"Unable to convert $_ (unsupported format)\"`; next; } else { $input = "$input \"$_\""; } } # invoke pacpl and start conversion process if ($input) { my $out_format = `zenity --title \"$name\" --width 250 --height 300 --list --radiolist --column 'Select' --column 'Output Format' $formats`; chomp($out_format); print "pacpl --to $out_format $input --gui --gnome\n" if $debug == 1; system("pacpl --to $out_format $input --gui --gnome"); } } # start main process_files(); pacpl-code/plugins/gnome/thunar/0000755000175100017510000000000014010535364016205 5ustar viriiviriipacpl-code/plugins/gnome/thunar/pacpl.png0000644000175100017510000001243613527600265020025 0ustar viriiviriiPNG  IHDR00WIDATxZ{tյ9'C^$$  X"iŢV]PRo*ڋ꽮Zv-v)!U(! $@H&: [ΚYə!C(dp M^n݌MSJ'BŽBN+rڶ_W>YfMGII`MMܚ !8! |^w܉֥/@ pEyyH$@ P(`0G6А8~wl]bF!BA)\\!@޽{nݺvttFg̘bD"0 I À(DQhJ4L裏|>oܹ=so <0sPJi*⭭;۝VϚ5 DSJiTUU( ( @Q0i 1R)عs'_{?sw <RN+W^ooKjkkQQQ!(RJM!1UU*Ebt]렔 EQD2---hnnSL_|r! (xٶ]wucǎ窫L2  4M Mc >󞪪 u] J)CG<ϣ &8Bh*կ޼}&O<֥*s*2 2 !,N{7x▖gBmJ8l-BUUR:|>B^, cp]ę3g H(b8~ӟff ?NAu]-Ruw+&OǡHmC4\sqQlٲ#J19(*b18aH| {u֭XhTU?p?Al۶mϗUTVVz`0|>x<}{?>lRjjj0sLyxu%{[۶QSSX,L&qDZ|r444`ppBB!ZSS㕗߼lٲ|A)mo@!죏>w0.4ig@ l6p8UVK_٬<pR ,c !\b6c0sLCuA8ݻw/NR\Q&9x۷o[aD&!+WDmm-2 ƇQ&q 9c a@UU?y3 r9u}H(y˗㢋.pQrIǵW_}޶6S!87@x/~x"પq7ccc^u] qx%,8J)TUEOO8Ey q!p5`ttPUZMlZfՌ1^4g RqymT\\Md022ӧcɒ%r/H$QRGAUU^ErH&(..ƪU8# Ç|7A>m(..^I1'L 4M#Li+ rYA4Myq8l6{!%1L&9ڰo>[OLìYdP(Dwƍ1NB@!\b1A|8s N>S#c BTUU! ²,?q<Q{СC @UUf~$1L8QFuݹU<ضm쒒B!!gCGG,FFFև(  $C:طo?:(~l+XC]q-h1p,9}T*uNٴiPWWvڵ ,ۜsr9`um-ke,CEQ`vmD`jD&ĵlRċiW4 e!#̙3>5˿A~^PJIBRYvA 9rc!^qL%rΑd~r- <$F(>BB%# jBqbEQDkq/RO? `ܹaYl׮]2dI>*" Q#\E((>K Ѩ/.Dj&BߏH$˲`L8ccc(N:Շd`&<σii``D4C L\ŤI؈T*|!BH&0 \N6p]i5$cŊ~Ht: EQ`oe !HUUJKK?-P?mhoo Fq% ,!|8 @:(gQj(ػw/ad6mM  # J)K&ޏ~K/KKKK( FFFpq_}՘={]} !`۶5uݍAB)E0_{@94ݍ'Nz  cBӦMPey?(uwy'088P(T*UU*k?9Ji1u]XjJy0}]}:EA6+AJYtR<b8z( @ 9 )R Bix7q!躎2166&,MRTUU'R(nO#ɠ/F:F:?rmg1u]}˲|j*ݻ`R)>| .|!8?#2n&q߷ySNٳgK{/T*B8D` !k~c&N8+WOXp!"ɲ웷vۦ *hg|ZX<,^x٤I>3nMAQ^^.L"qL&Bd2SORQYY)DEE())DB2QTT$EII,4Me˖;ӛ1cz]wEƟn[,{MMMJ,"v:c(**Bmm-,X'Ob۶mB4KҩK]3o<{PUK.EuucvjM6lhe/8\%ݻwg3fXw}q~Qyftuu!HRqA?-%dC1)cԩhjjcmiiQZ[[W^ 6l,i%gH/}Xv]lݺu !܌>(++?fy9"͂sH$磱Q;v{V^/6l{Z~}q(߽L M zmmmXv===VSSs%KH}}=b/~H&]QB" )>44ߏ'M}O% 8Csx^9bn[lhiyy?Ϩ@MM 9-G__zzzi+VؿtRYs<3\.,Kp)(qΕ3˲F9::Z `( x<W% ^\>LӃ9?iZ:<7oW U~;z+ 0n܌&@ Bؘ BK(.sMιQ, )LA!Zp(s"8hٿo"KxEssq^'RZ+pΙ^8*FQ}!B^0 !\!Dp(yjgR9<Cᎌ8?O8=?J)˲ˉeY ߈qaXނ=UU]qopUUc _~g~gIENDB`pacpl-code/plugins/gnome/thunar/install-kde.sh0000755000175100017510000000106713527600265020764 0ustar viriivirii#!/bin/bash # # Thunar Perl Audio Converter Context Menu Script CONFIG=${HOME}/.config/Thunar/uca.xml cp -v PACPL-Konvert /usr/bin/ # Insert lines at end of Thunars $CONFIG sed -i 's/<\/actions>//' $CONFIG sed -i '/^$/d' $CONFIG echo " /etc/pacpl/pacpl.png Perl Audio Converter /usr/bin/PACPL-Konvert %F Linux Audio Converter / Tagger/ Ripper * " >> $CONFIG sed -i '/^$/d' $CONFIG pacpl-code/plugins/gnome/thunar/PACPL-Convert0000775000175100017510000000534514010535332020414 0ustar viriivirii#!/usr/bin/perl # # Copywrite (C) Philip Lyons 2013-2021 (vorzox@gmail.com) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . use strict; use warnings; use File::Spec::Functions qw(rel2abs); my $debug = 0; my $input = ''; my $name = "Perl Audio Converter"; my $formats = "FALSE 3G2 FALSE 3GP FALSE 8SVX FALSE AAC FALSE AC3 FALSE ADTS FALSE AIF FALSE AIFF FALSE AL FALSE AMB FALSE AMR FALSE APE FALSE AU FALSE AVR FALSE BONK FALSE CAF FALSE CDR FALSE CVU FALSE DAT FALSE DTS FALSE DVMS FALSE F32 FALSE F64 FALSE FAP FALSE FLA FALSE FLAC FALSE FSSD FALSE GSRT FALSE HCOM FALSE IMA FALSE IRCAM FALSE LA FALSE M4A FALSE MAT FALSE MAT4 FALSE MAT5 FALSE MAUD FALSE MMF FALSE MP2 FALSE MP3 FALSE MP3HD FALSE MP4 FALSE MPC FALSE MPP FALSE NIST FALSE OFF FALSE OFR FALSE OFS FALSE OGA FALSE OGG FALSE OPUS FALSE PAF FALSE PRC FALSE PVF FALSE RA FALSE RAW FALSE RF64 FALSE RM FALSE SD2 FALSE SF FALSE SHN FALSE SMP FALSE SND FALSE SOU FALSE SPX FALSE TTA FALSE TXW FALSE VMS FALSE VOC FALSE W64 FALSE WAV FALSE WMA FALSE WV"; # main sub sub process_files { # sort through input files and discard those with unsupported formats (excluding directories) foreach (@ARGV) { chomp($_); $_ = rel2abs($_); my $input_ext = `echo \"$_\" | awk -F"." '{print \$NF}'`; print "\"$_\" has the ext $input_ext\n" if $debug == 1; if (-f $_ and not `pacpl --formats | grep $input_ext`) { print "$_ has unrecognized extension, skipping...\n" if $debug == 1; `notify-send \"$name\" \"Unable to convert $_ (unsupported format)\"`; next; } else { $input = "$input \"$_\""; } } # invoke pacpl and start conversion process if ($input) { my $out_format = `zenity --title \"$name\" --width 250 --height 300 --list --radiolist --column 'Select' --column 'Output Format' $formats`; chomp($out_format); print "pacpl --to $out_format $input --gui --gnome\n" if $debug == 1; system("pacpl --to $out_format $input --gui --gnome"); } } # start main process_files(); pacpl-code/plugins/gnome/thunar/PACPL-Konvert0000775000175100017510000000465214010535353020427 0ustar viriivirii#!/usr/bin/perl # # Copywrite (C) Philip Lyons 2013-2021 (vorzox@gmail.com) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . use strict; use warnings; use File::Spec::Functions qw(rel2abs); my $debug = 0; my $input = ''; my $name = "Perl Audio Converter"; my $formats = "3G2 3GP 8SVX AAC AC3 ADTS AIF AIFF AL AMB AMR APE AU AVR BONK CAF CDR CVU DAT DTS DVMS F32 F64 FAP FLA FLAC FSSD GSRT HCOM IMA IRCAM LA M4A MAT MAT4 MAT5 MAUD MMF MP2 MP3 MP3HD MP4 MPC MPP NIST OFF OFR OFS OGA OGG OPUS PAF PRC PVF RA RAW RF64 RM SD2 SF SHN SMP SND SOU SPX TTA TXW VMS VOC W64 WAV WMA WV"; # main sub sub process_files { system("kdialog --title 'Ooops...' --error 'Perl Audio Converter Not Installed. Exiting...'") if not `which pacpl`; exit 1 if not `which pacpl`; # sort through input files and discard those with unsupported formats (excluding directories) foreach (@ARGV) { chomp($_); $_ = rel2abs($_); my $input_ext = `echo \"$_\" | awk -F"." '{print \$NF}'`; print "$_ has the ext $input_ext\n" if $debug == 1; if (-f $_ and not `pacpl --formats | grep $input_ext`) { print "$_ has unrecognized extension, skipping...\n" if $debug == 1; system("kdialog --passivepopup '$name' Unable to convert '$_' (unsupported format)"); next; } else { $input = "$input \"$_\""; } } # invoke pacpl and start conversion process if ($input) { my $out_format = `kdialog --title \"$name\" --combobox 'Output Format' $formats`; chomp($out_format); print "pacpl --to $out_format $input --gui --kde\n" if $debug == 1; system("pacpl --to $out_format $input --gui --kde"); } } # start main process_files(); pacpl-code/plugins/gnome/thunar/INSTALL0000644000175100017510000000122413527600265017242 0ustar viriiviriiYou will have to install the plugin manually using the following: 1) sudo ./install-gnome.sh This will modify ${HOME}/.config/Thunar/uca.xml and copy the supporting application/icon to their respective locations. 2) You will also need to edit /etc/pacpl/pacpl.conf and change ZEN_DIR & ZEN_OPTS to 1 and make sure KDE_DIR & KDE_OPTS = 0 Note: this version can be used with the kde plugin on any system that supports multiple desktop choices (Slackware for example) if need be. You will just need to run the install-kde.sh script instead and do the exact opposite of the step 2) above. Restart Thunar (if already open) to see the changes take effect. pacpl-code/plugins/gnome/thunar/install-gnome.sh0000755000175100017510000000106713527600265021326 0ustar viriivirii#!/bin/bash # # Thunar Perl Audio Converter Context Menu Script CONFIG=${HOME}/.config/Thunar/uca.xml cp -v PACPL-Convert /usr/bin/ # Insert lines at end of Thunars $CONFIG sed -i 's/<\/actions>//' $CONFIG sed -i '/^$/d' $CONFIG echo " /etc/pacpl/pacpl.png Perl Audio Converter /usr/bin/PACPL-Convert %F Linux Audio Converter / Tagger/ Ripper * " >> $CONFIG sed -i '/^$/d' $CONFIG pacpl-code/plugins/kde/0000755000175100017510000000000014010534704014337 5ustar viriiviriipacpl-code/plugins/kde/install.sh0000755000175100017510000000027313527600265016356 0ustar viriivirii#!/usr/bin/bash echo echo "Installing KDE Konqueror/Dolphin Action Script......" echo cp -v PACPL-Konvert /usr/bin cp -v pacpl.desktop /usr/share/kde4/services echo sleep 1 echo "Done.."pacpl-code/plugins/kde/pacpl.desktop0000644000175100017510000000052713527600265017045 0ustar viriivirii[Desktop Entry] Type=Service ServiceTypes=KonqPopupMenu/Plugin MimeType=audio/*;video/*;application/x-flash-video;inode/directory Icon=/etc/pacpl/icon.png Actions=PACPL-Convert X-KDE-StartupNotify=false X-KDE-Priority=TopLevel [Desktop Action PACPL-Convert] Name=Perl Audio Converter Icon=/etc/pacpl/pacpl.png Exec=/usr/bin/PACPL-Konvert %F pacpl-code/plugins/kde/PACPL-Konvert0000775000175100017510000000465214010534415016562 0ustar viriivirii#!/usr/bin/perl # # Copywrite (C) Philip Lyons 2013-2019 (vorzox@gmail.com) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . use strict; use warnings; use File::Spec::Functions qw(rel2abs); my $debug = 0; my $input = ''; my $name = "Perl Audio Converter"; my $formats = "3G2 3GP 8SVX AAC AC3 ADTS AIF AIFF AL AMB AMR APE AU AVR BONK CAF CDR CVU DAT DTS DVMS F32 F64 FAP FLA FLAC FSSD GSRT HCOM IMA IRCAM LA M4A MAT MAT4 MAT5 MAUD MMF MP2 MP3 MP3HD MP4 MPC MPP NIST OFF OFR OFS OGA OGG OPUS PAF PRC PVF RA RAW RF64 RM SD2 SF SHN SMP SND SOU SPX TTA TXW VMS VOC W64 WAV WMA WV"; # main sub sub process_files { system("kdialog --title 'Ooops...' --error 'Perl Audio Converter Not Installed. Exiting...'") if not `which pacpl`; exit 1 if not `which pacpl`; # sort through input files and discard those with unsupported formats (excluding directories) foreach (@ARGV) { chomp($_); $_ = rel2abs($_); my $input_ext = `echo \"$_\" | awk -F"." '{print \$NF}'`; print "$_ has the ext $input_ext\n" if $debug == 1; if (-f $_ and not `pacpl --formats | grep $input_ext`) { print "$_ has unrecognized extension, skipping...\n" if $debug == 1; system("kdialog --passivepopup '$name' Unable to convert '$_' (unsupported format)"); next; } else { $input = "$input \"$_\""; } } # invoke pacpl and start conversion process if ($input) { my $out_format = `kdialog --title \"$name\" --combobox 'Output Format' $formats`; chomp($out_format); print "pacpl --to $out_format $input --gui --kde\n" if $debug == 1; system("pacpl --to $out_format $input --gui --kde"); } } # start main process_files(); pacpl-code/pacpl.in0000664000175100017510000047573514010551237013571 0ustar viriivirii#!/usr/bin/perl # # Perl Audio Converter # # Copyright (C) 2005-2021 Philip Lyons (vorzox@gmail.com) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . use strict; use warnings; use Getopt::Long; use File::Basename; use File::Find; use File::Spec::Functions qw(rel2abs); use Parallel::ForkManager; use String::ShellQuote; use feature qw(switch say); no if $] >= 5.018, warnings => "experimental::smartmatch"; # Tagging modules use MP3::Tag; use Audio::FLAC::Header; use Audio::Scan; # CDDB module use CDDB_get qw(get_cddb); # non-encoder/decoder related options my ( $to, $recursive, $preserve, $rip, $help, $longhelp, $verbose, $verinfo, $dryrun, $delete, $keep, $overwrite, $formats, $topdir, $only, $first_run, @file, @dir, %run, %lang, ); my $silent = "> /dev/null 2>&1"; # tagging options my ( $title, $track, $artist, $album, $comment, $year, $genre, $taginfo, ); # name and version my $name = "Perl Audio Converter"; my $version = "6.1.3"; # If these options are toggled, messages/errors will be displayed # via kdialog or zenity/notify-send (depending on environment) my ($gui, $kde, $gnome); # Debugging (for developer use only) my $debug = 0; # default configuration. my %config = ( IMPORTM => 0, JOBS => 4, DEFOPTS => 1, EOPTS => '', DOPTS => '', NOPTS => '', BITRATE => 128, FREQ => 44100, CHANNELS => 2, EFFECT => '', FCOMP => 2, PCOMP => 3, ACOMP => 3000, OGGQUAL => 3, SPXQUAL => 8, AACQUAL => 100, MPCQUAL => 'radio', OFMODE => 'normal', OFOPT => 'fast', BRATIO => 2, BQUANL => 1.0, BPSIZE => 128, USE_CDDB => 1, CDDB_HOST => 'freedb.freedb.org', CDDB_PORT => 8880, CDDB_MODE => 'cddb', CDDB_INPUT => 1, DEVICE => '/dev/dvd', NSCHEME => '%ar - %ti', ZEN_DIR => 1, ZEN_OPTS => 1, KDE_DIR => 1, KDE_OPTS => 1, ); # location of configuration file my $conf_path = "@sysconfdir@/pacpl"; my $po_dir = "@pkgdatadir@/locale"; my $mod_dir = "$conf_path/modules"; my $conf_file; # Icon path my $icon_path = "$conf_path/pacpl.png"; # load the appropriate locale file load_lang(); # try to load configuration file in this order... my @conf_locations = ( "$ENV{HOME}/.pacplrc", # Local "$conf_path/pacpl.conf", # Global "$ENV{PWD}/pacpl.conf", # Current Directory ); # try to load conf file from one of the above locations foreach my $i (@conf_locations) { if (not $conf_file and -e $i) { $conf_file = $i; say "$lang{debug} $lang{loaded_config} $conf_file" if $debug == 1; } } say "$lang{no_config}" if not $conf_file; # open config file. if ($conf_file and -e $conf_file) { open(CONF, "$conf_file") or die "$lang{opening_file} $conf_file - $!\n"; my @conf_opts = ; @conf_opts = grep(!/^#|^$/, @conf_opts); close(CONF); # now read config file options and change default values accordingly. foreach (@conf_opts) { chomp; my ($k, $v) = split(/\s*=\s*/); $config{$k} = $v if exists($config{$k}) and length($v); say "$lang{debug} $k = $v" if $debug == 1 and exists($config{$k}); } } my $codecs_conf = "$conf_path/codecs.conf"; # set default encoders/decoders sub load_codecs { open(CODECS, "$codecs_conf") or die "$lang{opening_file} $codecs_conf - $!\n"; my @codecs = ; @codecs = grep(!/^$|^#/, @codecs); @codecs = grep(s/^\s*|\s*$//, @codecs); close(CODECS); foreach (@codecs) { chomp; my ($k, $v) = split(/\s*=\s*/); my ($e, $d) = split(/,/, $v); $k =~ tr/A-Z/a-z/; $run{$k}{DEFAULT_ENCODER} = $e if (exists($run{$k}{DEFAULT_ENCODER})); $run{$k}{DEFAULT_DECODER} = $d if (exists($run{$k}{DEFAULT_DECODER})); } } # load po file and store in %lang hash sub load_lang { my $po = "$po_dir/$ENV{LANG}.po"; $po =~ s/\.UTF-8//i if $po =~ /UTF-8/i; $po =~ s/\.utf8//i if $po =~ /utf8/i; $po =~ s/_\w+// if not -e $po; $po = "$po_dir/en_US.po" if not -e $po; open(LANG, "< $po") or die "error: could not open - $po\n$!\n"; my @data = ; @data = grep(!/^#|^$/, @data); close(LANG); foreach (@data) { chomp; s/=/__EQ__/; my ($k, $v) = split(/\s*__EQ__\s*/, $_); $lang{$k} = $v; } } my $banner = 1; # print error messages sub perror { my ($key, $msg) = @_; say "$name - $version\n"; say "$lang{error}: $lang{$key} $msg" . "\n"; system("kdialog --title \"$name\" --error \"$lang{error}: $lang{$key} $msg\" &") if $gui and $kde; system("zenity --title \"$name\" --error \"$lang{error}: $lang{$key} $msg\" &") if $gui and $gnome; die "$lang{seek_help}\n"; } # print notices/warnings sub pnotice { my ($key, $msg, $nm) = @_; say "$name - $version\n" if $banner == 1; print "$lang{$key} $msg"; say '' if $nm == 1; say "\n" if $nm == 2; $banner = 0; } # defaults for user variables. my $outfile; my $outdir; my $defopts = $config{DEFOPTS}; my $eopts = $config{EOPTS}; my $dopts = $config{DOPTS}; my $nopts = $config{NOPTS}; my $normalize = $config{NOPTS}; my $bitrate = $config{BITRATE}; my $freq = $config{FREQ}; my $channels = $config{CHANNELS}; my $effect = $config{EFFECT}; my $fcomp = $config{FCOMP}; my $acomp = $config{ACOMP}; my $oggqual = $config{OGGQUAL}; my $spxqual = $config{SPXQUAL}; my $aacqual = $config{AACQUAL}; my $mpcqual = $config{MPCQUAL}; my $ofmode = $config{OFMODE}; my $ofopt = $config{OFOPT}; my $bratio = $config{BRATIO}; my $bquanl = $config{BQUANL}; my $bpsize = $config{BPSIZE}; my $cdinfo; my $nocddb; my $noinput; my $device = $config{DEVICE}; my $nscheme = $config{NSCHEME}; my $my_encoder; my $my_decoder; my $encoder; my $decoder; my $jobs = $config{JOBS}; # command line options GetOptions ( 't|to=s' => \$to, 'r|recursive' => \$recursive, 'p|preserve' => \$preserve, 'h|help' => \$help, 'l|longhelp' => \$longhelp, 'v|verbose' => \$verbose, 'f|formats' => \$formats, 'o|only=s' => \$only, 'k|keep' => \$keep, 'j|jobs=n' => \$jobs, 'taginfo' => \$taginfo, 'version' => \$verinfo, 'dryrun' => \$dryrun, 'delete' => \$delete, 'overwrite' => \$overwrite, 'normalize' => \$normalize, 'encoder=s' => \$my_encoder, 'decoder=s' => \$my_decoder, 'title=s' => \$title, 'track=n' => \$track, 'artist=s' => \$artist, 'album=s' => \$album, 'comment=s' => \$comment, 'year=n' => \$year, 'genre=s' => \$genre, 'gui' => \$gui, 'kde' => \$kde, 'gnome' => \$gnome, 'eopts=s' => \$eopts, 'dopts=s' => \$dopts, 'defopts=n' => \$defopts, 'nopts=s' => \$nopts, 'outfile=s' => \$outfile, 'outdir=s' => \$outdir, 'bitrate=n' => \$bitrate, 'freq=n' => \$freq, 'channels=n' => \$channels, 'effect=s' => \$effect, 'fcomp=n' => \$fcomp, 'acomp=n' => \$acomp, 'oggqual=n' => \$oggqual, 'spxqual=n' => \$spxqual, 'aacqual=n' => \$aacqual, 'mpcqual=s' => \$mpcqual, 'ofmode=s' => \$ofmode, 'ofopt=s' => \$ofopt, 'bratio=n' => \$bratio, 'bquanl=n' => \$bquanl, 'bpsize=n' => \$bpsize, 'rip=s' => \$rip, 'nocddb' => \$nocddb, 'noinput' => \$noinput, 'device=s' => \$device, 'nscheme=s' => \$nscheme, 'cdinfo' => \$cdinfo, ); if (defined($preserve) && !defined($outdir)) { die "You must specify --outdir when you use --preserve option. See man page.\n"; } $silent = '' if $verbose; my $opts; my $total_converted = 0; my $total_failed = 0; # Initialize the fork manager with a count set through pacpl.conf or via the command line my $pm = Parallel::ForkManager->new($jobs); # conversion options. when adding a new format, # wild card %i = input file and %o = output file %run = ( '3g2' => { DEFAULT_ENCODER => 'ffmpeg', DEFAULT_DECODER => 'ffmpeg', ENCODER => { ffmpeg => { NAME => 'ffmpeg', ESTR => sub { $opts = "-ar 8000 -ac 1" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { NONE => 0, }, }, avconv => { NAME => 'avconv', ESTR => sub { $opts = "-ar 8000 -ac 1" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { NONE => 0, }, }, }, DECODER => { ffmpeg => { NAME => 'ffmpeg', DSTR => sub { "-y -i %o $dopts %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "-y -i %o %dopts %o" }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, '3gp' => { DEFAULT_ENCODER => 'ffmpeg', DEFAULT_DECODER => 'ffmpeg', ENCODER => { ffmpeg => { NAME => 'ffmpeg', ESTR => sub { $opts = "-ar 8000 -ac 1" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { NONE => 0, }, }, avconv => { NAME => 'avconv', ESTR => sub { $opts = "-ar 8000 -ac 1" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { NONE => 0, }, }, }, DECODER => { ffmpeg => { NAME => 'ffmpeg', DSTR => sub { "-y -i %o $dopts %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "-y -i %o %dopts %o" }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, aac => { DEFAULT_ENCODER => "faac", DEFAULT_DECODER => "faad", ENCODER => { faac => { NAME => "faac", ESTR => sub { $opts = "-q $aacqual" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts $opts %i -o %o" }, PROMPT => { AACQUAL => 1 }, }, ffmpeg => { NAME => 'ffmpeg', ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, avconv => { NAME => 'avconv', ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 1, }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, }, DECODER => { faad => { NAME => "faad", DSTR => sub { "$dopts -o %i %o" }, }, ffmpeg => { NAME => "ffmpeg", DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %o" }, }, mplayer => { NAME => "mplayer", DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, ac3 => { DEFAULT_ENCODER => "ffmpeg", DEFAULT_DECODER => "ffmpeg", ENCODER => { ffmpeg => { NAME => "ffmpeg", ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, avconv => { NAME => "avconv", ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, aften => { NAME => "aften", ESTR => sub { $opts = "-v 1 -q $bitrate -2" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts $opts %i %o" }, PROMPT => { BITRATE => 1, }, }, }, DECODER => { mplayer => { NAME => "mplayer", DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, ffmpeg => { NAME => "ffmpeg", DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => "avconv", DSTR => sub { "$dopts -y -i %i %o" }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, adts => { DEFAULT_ENCODER => 'ffmpeg', DEFAULT_DECODER => 'ffmpeg', ENCODER => { ffmpeg => { NAME => 'ffmpeg', ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libfaac" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $opts $eopts -strict -2 %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, avconv => { NAME => 'avconv', ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libfaac" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $opts $eopts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, }, DECODER => { ffmpeg => { NAME => 'ffmpeg', DSTR => "$dopts -y -i %i %o", }, avconv => { NAME => 'avconv', DSTR => "$dopts -y -i %i %o", }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, ape => { DEFAULT_ENCODER => "mac", DEFAULT_DECODER => "mac", ENCODER => { mac => { NAME => "mac", ESTR => sub { $opts = "-c$acomp" if $defopts == 1; $opts = '' if $defopts == 0; "%i %o $opts $eopts" }, PROMPT => { ACOMP => 1 }, }, }, DECODER => { mac => { NAME => "mac", DSTR => sub { "%i %o -d $dopts" }, }, ffmpeg => { NAME => 'ffmpeg', DSTR => sub { "-y -i %i %dopts %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "-y -i %i $dopts %o" }, }, }, TAGS => { READ => 1, WRITE => 0, MODULE => "Audio::Scan", }, }, amr => { DEFAULT_ENCODER => "ffmpeg", DEFAULT_DECODER => "ffmpeg", ENCODER => { ffmpeg => { NAME => "ffmpeg", ESTR => sub { $opts = "-ar 8000 -ac 1" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { NONE => 0, }, }, avconv => { NAME => "avconv", ESTR => sub { $opts = "-ar 8000 -ac 1" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { NONE => 0, }, }, }, DECODER => { ffmpeg => { NAME => 'ffmpeg', DSTR => sub { "-y -i %i $dopts %o" }, }, avconv => { NAME => 'ffmpeg', DSTR => sub { "-y -i %i %dopts %o" }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, bonk => { DEFAULT_ENCODER => "bonk", DEFAULT_DECODER => "bonk", ENCODER => { bonk => { NAME => "bonk", ESTR => sub { $opts = "-q $bquanl -b $bratio -s $bpsize" if $defopts == 1; $opts = '' if $defopts == 0; "encode $eopts $opts %i -o %o" }, PROMPT => { BQUANL => 1, BRATIO => 1, BPSIZE => 1, }, }, }, DECODER => { bonk => { NAME => "bonk", DSTR => sub { "decode %i -o %o" }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, dsf => { DEFAULT_ENCODER => undef, DEFAULT_DECODER => "sacd", DECODER => { sacd => { NAME => "sacd", DSTR => sub { "-i %i" }, }, }, TAGS => { READ => 1, WRITE => 0, MODULE => "Audio::Scan", }, }, dts => { DEFAULT_ENCODER => 'ffmpeg', DEFAULT_DECODER => 'ffmpeg', ENCODER => { ffmpeg => { NAME => 'ffmpeg', ESTR => sub { $opts = '' if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $opts $eopts -strict -2 -codec:a libfaac %o" }, PROMPT => { NONE => 0, }, }, avconv => { NAME => 'avconv', ESTR => sub { $opts = '' if $defopts == 1 or $defopts == 0; "-y -i %i $opts $eopts -codec:a libfaac %o", }, PROMPT => { NONE => 0, }, }, dcaenc => { NAME => 'dcaenc', ESTR => sub { $opts = "$bitrate" if $defopts == 0; $opts = '' if $defopts == 1; "%i %o $opts" }, PROMPT => { NONE => 0, }, }, }, DECODER => { ffmpeg => { NAME => 'ffmpeg', DSTR => "$dopts -y -i %i %o", }, avconv => { NAME => 'avconv', DSTR => "$dopts -y -i %i %o", }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, flac => { DEFAULT_ENCODER => "flac", DEFAULT_DECODER => "flac", ENCODER => { flac => { NAME => "flac", ESTR => sub { $opts = "-$fcomp" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts -f $opts %i -o %o" }, PROMPT => { FCOMP => 1 }, }, flake => { NAME => "flake", ESTR => sub { $opts = "-$fcomp" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts $opts %i -o %o" }, PROMPT => { FCOMP => 1 }, }, ffmpeg => { NAME => "ffmpeg", ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, avconv => { NAME => 'avconv', ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 1; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, }, DECODER => { flac => { NAME => "flac", DSTR => sub { "$dopts -f -d %i -o %o" }, }, ffmpeg => { NAME => "ffmpeg", DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %o" }, }, mplayer => { NAME => "mplayer", DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, }, TAGS => { READ => 1, WRITE => 1, MODULE => "Audio::FLAC::Header", }, }, fla => { DEFAULT_ENCODER => "flac", DEFAULT_DECODER => "flac", ENCODER => { flac => { NAME => "flac", ESTR => sub { $opts = "-$fcomp" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts -f $opts %i -o %o" }, PROMPT => { FCOMP => 1 }, }, }, DECODER => { flac => { NAME => "flac", DSTR => sub { "$dopts -f -d %i -o %o" }, }, mplayer => { NAME => "mplayer", DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, }, TAGS => { READ => 1, WRITE => 1, MODULE => "Audio::FLAC::Header", }, }, la => { DEFAULT_ENCODER => "la", DEFAULT_DECODER => "la", ENCODER => { la => { NAME => "la", ESTR => sub { "-overwrite $eopts %i %o" }, PROMPT => { NONE => 0, }, }, }, DECODER => { la => { NAME => "la", ESTR => sub { "-console $dopts %i > %o" }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, mp2 => { DEFAULT_ENCODER => "ffmpeg", DEFAULT_DECODER => "ffmpeg", ENCODER => { ffmpeg => { NAME => 'ffmpeg', ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, avconv => { NAME => 'avconv', ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, toolame => { NAME => 'toolame', ESTR => sub { $opts = "-b $bitrate" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts $opts %i %o" }, PROMPT => { BITRATE => 1, }, }, twolame => { NAME => 'twolame', ESTR => sub { $opts = "-b $bitrate -s $freq" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts $opts %i %o" }, PROMPT => { BITRATE => 1, FREQ => 1, }, }, sox => { NAME => 'sox', ESTR => sub { $opts = "-c $channels -r $bitrate" if $defopts == 1; $opts = '' if $defopts == 0; "%i $eopts $opts %o" }, PROMPT => { BITRATE => 1, CHANNELS => 1, }, }, }, DECODER => { ffmpeg => { NAME => 'ffmpeg', DSTR => "$dopts -y -i %i %o", }, avconv => { NAME => 'avconv', DSTR => "%dopts -y -i %i %o", }, mplayer => { NAME => 'mplayer', DSTR => "-vc null -vo null -ao pcm:file=%o %i", }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, mp3 => { DEFAULT_ENCODER => "lame", DEFAULT_DECODER => "lame", ENCODER => { lame => { NAME => "lame", ESTR => sub { $opts = "--resample $freq -b $bitrate -h" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts $opts %i %o" }, PROMPT => { BITRATE => 1, FREQ => 1, }, }, bladeenc => { NAME => "bladeenc", ESTR => sub { $opts = "-br $bitrate" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts $opts %i %o" }, PROMPT => { BITRATE => 1 }, }, ffmpeg => { NAME => "ffmpeg", ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts -y -i %i $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, avconv => { NAME => 'avconv', ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, sox => { NAME => "sox", ESTR => sub { $opts = "-r $freq -c $channels" if $defopts == 1; $opts = '' if $defopts == 0; "%i $eopts $opts %o" }, PROMPT => { FREQ => 1, CHANNELS => 1, }, }, }, DECODER => { lame => { NAME => "lame", DSTR => sub { "$dopts --decode %i %o" }, }, ffmpeg => { NAME => "ffmpeg", DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %O" }, }, mplayer => { NAME => "mplayer", DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, sox => { NAME => "sox", DSTR => sub { "%i $dopts %o" }, }, }, TAGS => { READ => 1, WRITE => 1, MODULE => "MP3::Tag", }, }, mp3hd => { DEFAULT_ENCODER => "mp3hdEncoder", DEFAULT_DECODER => "mp3hdDecoder", ENCODER => { mp3hdEncoder => { NAME => "mp3hdEncoder", ESTR => sub { $opts = "-br $bitrate" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts $opts -if %i -of %o" }, PROMPT => { BITRATE => 1 }, }, }, DECODER => { mp3hdDecoder => { NAME => "mp3hdDecoder", DSTR => sub { "$dopts -if %i -of %o" }, }, }, TAGS => { WRITE => 1, READ => 1, MODULE => "MP3::Tag", }, }, mp4 => { DEFAULT_ENCODER => "faac", DEFAULT_DECODER => "faad", ENCODER => { faac => { NAME => "faac", ESTR => sub { $opts = "-q $aacqual" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts -w $opts %i -o %o" }, PROMPT => { AACQUAL => 1 }, }, ffmpeg => { NAME => "ffmpeg", ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PRIMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, avconv => { NAME => 'avconv', ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, }, DECODER => { faad => { NAME => "faad", DSTR => sub { "$dopts -o %o %i" }, }, ffmpeg => { NAME => "ffmpeg", DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %o" }, }, mplayer => { NAME => "mplayer", DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, }, TAGS => { READ => 1, WRITE => 1, MODULE => "Audio::Scan", }, }, # m4a container with AAC codec mp4a => { DEFAULT_ENCODER => "faac", DEFAULT_DECODER => "faad", ENCODER => { faac => { NAME => "faac", ESTR => sub { $opts = "-q $aacqual" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts -w $opts %i -o %o" }, PROMPT => { AACQUAL => 1 }, }, ffmpeg => { NAME => "ffmpeg", ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts -y -i %i $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, avconv => { NAME => 'avconv', ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, }, DECODER => { faad => { NAME => "faad", DSTR => sub { "$dopts -o %o %i" }, }, ffmpeg => { NAME => "ffmpeg", DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %o" }, }, mplayer => { NAME => "mplayer", DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, }, ESTR => sub { "$eopts -w -q $aacqual %i -o %o" }, TAGS => { READ => 1, WRITE => 1, MODULE => "Audio::Scan", }, }, # m4a container with ALAC codec alac => { DEFAULT_ENCODER => undef, DEFAULT_DECODER => "alac-decoder", DECODER => { 'alac-decoder' => { NAME => "alac-decoder", DSTR => sub { "$dopts -f %o %i" }, }, ffmpeg => { NAME => "ffmpeg", DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %o" }, }, mplayer => { NAME => "mplayer", DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, }, TAGS => { READ => 1, WRITE => 0, MODULE => "Audio::Scan", }, }, m4b => { DEFAULT_ENCODER => undef, DEFAULT_DECODER => "faad", DECODER => { faad => { NAME => "faad", DSTR => sub { "$dopts -o %o %i" }, }, mplayer => { NAME => "mplayer", DSTR => sub { "$dopts -vc null -vo null -ao pcm:file=%o %i" }, }, ffmpeg => { NAME => 'ffmpeg', DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %o" }, }, }, TAGS => { READ => 0, WRITE => 1, MODULE => undef, }, }, mpc => { DEFAULT_ENCODER => "mpcenc", DEFAULT_DECODER => "mpcdec", ENCODER => { mpcenc => { NAME => "mpcenc", ESTR => sub { $opts = "--$mpcqual" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts --overwrite $opts %i %o" }, PROMPT => { MPCQUAL => 1 }, }, }, DECODER => { mpcdec => { NAME => "mpcdec", DSTR => sub { "$dopts %i %o" }, }, ffmpeg => { NAME => 'ffmpeg', DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %o" }, }, mplayer => { NAME => "mplayer", DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, }, TAGS => { READ => 1, WRITE => 1, MODULE => "Audio::Scan", }, PROMPT => { MPCQUAL => 1, }, }, mpp => { DEFAULT_ENCODER => "mpcenc", DEFAULT_DECODER => "mpcdec", ENCODER => { mpcenc => { NAME => "mpcenc", ESTR => sub { $opts = "--$mpcqual" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts --overwrite $opts %i %o" }, PROMPT => { MPCQUAL => 1 }, }, }, DECODER => { mpcdec => { NAME => "mpcdec", DSTR => sub { "$dopts %i %o" }, }, ffmpeg => { NAME => 'ffmpeg', DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %o" }, }, mplayer => { NAME => "mplayer", DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, }, TAGS => { READ => 1, WRITE => 1, MODULE => "Audio::Scan", }, }, off => { DEFAULT_ENCODER => 'off', DEFAULT_DECODER => 'off', ENCODER => { off => { NAME => 'off', ESTR => sub { $opts = "--mode $ofmode --optimize $ofopt" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts --overwrite $opts %i --output %o" }, PROMPT => { OFMODE => 1, OFOPT => 1, }, }, }, DECODER => { off => { NAME => 'off', DSTR => sub { "$dopts --overwrite --decode %i --output %o" }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, ofr => { DEFAULT_ENCODER => "ofr", DEFAULT_DECODER => "ofr", ENCODER => { ofr => { NAME => "ofr", ESTR => sub { $opts = "--mode $ofmode --optimize $ofopt" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts --overwrite $opts %i --output %o" }, PROMPT => { OFMODE => 1, OFOPT => 1, }, }, }, DECODER => { ofr => { NAME => "ofr", DSTR => sub { "$dopts --overwrite --decode %i --output %o" }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, ofs => { DEFAULT_ENCODER => "ofs", DEFAULT_DECODER => "ofs", ENCODER => { ofs => { NAME => "ofs", ESTR => sub { $opts = "--mode $ofmode --optimize $ofopt" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts --overwrite $opts %i --output %o" }, PROMPT => { OFMODE => 1, OFOPT => 1, }, }, }, DECODER => { ofs => { NAME => "ofs", DSTR => sub { "$dopts --overwrite --decode %i --output %o" }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, oga => { DEFAULT_ENCODER => 'oggenc', DEFAULT_DECODER => 'oggdec', ENCODER => { oggenc => { NAME => 'oggenc', ESTR => sub { $opts = "--resample $freq -q $oggqual" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts $opts %i %o" }, PROMPT => { FREQ => 1, OGGQUAL => 1, }, }, ffmpeg => { NAME => "ffmpeg", ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libvorbis" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, avconv => { NAME => 'avconv', ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libvorbis" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, sox => { NAME => "sox", ESTR => sub { $opts = "-r $freq -c $channels" if $defopts == 1; $opts = '' if $defopts == 0; "%i $eopts $opts %o" }, PROMPT => { FREQ => 1, CHANNELS => 1, }, }, }, DECODER => { oggdec => { NAME => "oggdec", DSTR => sub { "$dopts %i --output %o" }, }, ffmpeg => { NAME => "ffmpeg", DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %o" }, }, mplayer => { NAME => "mplayer", DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, sox => { NAME => "sox", DSTR => sub { "%i $dopts %o" }, }, }, TAGS => { READ => 1, WRITE => 1, MODULE => "vorbiscomment", }, }, ogg => { DEFAULT_ENCODER => "oggenc", DEFAULT_DECODER => "oggdec", ENCODER => { oggenc => { NAME => "oggenc", ESTR => sub { $opts = "--resample $freq -q $oggqual" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts $opts %i -o %o" }, PROMPT => { FREQ => 1, OGGQUAL => 1, }, }, ffmpeg => { NAME => "ffmpeg", ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libvorbis" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, avconv => { NAME => 'avconv', ESTR => sub { $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libvorbis" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, FREQ => 1, CHANNELS => 1, }, }, sox => { NAME => "sox", ESTR => sub { $opts = "-r $freq -c $channels" if $defopts == 1; $opts = '' if $defopts == 0; "%i $eopts $opts %o" }, PROMPT => { FREQ => 1, CHANNELS => 1, }, }, }, DECODER => { oggdec => { NAME => "oggdec", DSTR => sub { "$dopts %i --output %o" }, }, ffmpeg => { NAME => "ffmpeg", DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %o" }, }, mplayer => { NAME => "mplayer", DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, sox => { NAME => "sox", DSTR => sub { "%i $dopts %o" }, }, }, TAGS => { READ => 1, WRITE => 1, MODULE => "vorbiscomment", }, }, opus => { DEFAULT_ENCODER => "opusenc", DEFAULT_DECODER => "opusdec", ENCODER => { opusenc => { NAME => 'opusenc', ESTR => sub { $opts = "--bitrate $bitrate" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts $opts %i %o" }, PROMTP => { BITRATE => 1, }, }, }, DECODER => { opusdec => { NAME => 'opusdec', DSTR => sub { "--force-wav %i %o" }, PROMPT => { NONE => 0 }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, raw => { DEFAULT_ENCODER => "sox", DEFAULT_DECODER => "sox", ENCODER => { sox => { NAME => 'sox', ESTR => sub { $opts = "-r $freq -c $channels" if $defopts == 1; $opts = '' if $defopts == 0; "%i $opts $eopts %o $effect" }, PROMPT => { FREQ => 1, CHANNELS => 1, }, }, }, DECODER => { sox => { NAME => 'sox', DSTR => sub { "-w -s -r $freq -c $channels $dopts %i %o" }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, rm => { DEFAULT_ENCODER => 'ffmpeg', DEFAULT_DECODER => 'ffmpeg', ENCODER => { ffmpeg => { NAME => 'ffmpeg', ESTR => sub { $opts = "-ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { FREQ => 1, CHANNELS => 1, }, }, avconv => { NAME => 'avconv', ESTR => sub { $opts = "-ar $freq -ac $channels" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { FREQ => 1, CHANNELS => 1, }, }, }, DECODER => { mplayer => { NAME => 'mplayer', DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, ffmpeg => { NAME => 'ffmpeg', DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %o" }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, shn => { DEFAULT_ENCODER => "shorten", DEFAULT_DECODER => "shorten", ENCODER => { shorten => { NAME => "shorten", ESTR => sub { $opts = "-c $channels" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts $opts %i %o" }, PROMPT => { CHANNELS => 1 }, }, }, DECODER => { shorten => { NAME => "shorten", DSTR => sub { "-x %i %o" }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, spx => { DEFAULT_ENCODER => "speexenc", DEFAULT_DECODER => "speexdec", ENCODER => { speexenc => { NAME => "speexenc", ESTR => sub { $opts = "--quality $spxqual" if $defopts == 1; $opts = '' if $defopts == 0; "$eopts $opts %i %o" }, PROMPT => { SPXQUAL => 1 }, }, ffmpeg => { NAME => 'ffmpeg', ESTR => sub { $opts = "--bitrate $bitrate.k" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i %i $eopts $opts %o" }, PROMPT => { BITRATE => 1, }, }, avconv => { NAME => 'avconv', ESTR => sub { $opts = "--bitrate $bitrate.k" if $defopts == 1; $opts = '' if $defopts == 0; "-y -i $eopts $opts %o" }, PROMPT => { BITRATE => 1, }, }, }, DECODER => { speexdec => { NAME => "speexdec", DSTR => sub { "$dopts %i %o" }, }, ffmpeg => { NAME => 'ffmpeg', DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %o" }, }, }, TAGS => { READ => 1, WRITE => 1, MODULE => undef, }, }, tta => { DEFAULT_ENCODER => "ttaenc", DEFAULT_DECODER => "ttaenc", ENCODER => { ttaenc => { NAME => "ttaenc", ESTR => sub { "$eopts -e %i -o %o" }, PROMPT => { NONE => 0, }, }, }, DECODER => { ttaenc => { NAME => "ttaenc", DSTR => sub { "$dopts -d %i -o %o" }, }, ffmpeg => { NAME => "ffmpeg", DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %o" }, }, mplayer => { NAME => "mplayer", DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, wav => { DEFAULT_ENCODER => "mv", DEFAULT_DECODER => "cp", ENCODER => { mv => { NAME => "mv", ESTR => sub { "%i %o" }, PROMPT => { NONE => 0, }, }, }, DECODER => { cp => { NAME => "cp", DSTR => sub { "%i %o" }, } }, TAGS => { READ => 0, WRITE => 0, MODULE => undef, }, }, wv => { DEFAULT_ENCODER => "wavpack", DEFAULT_DECODER => "wvunpack", ENCODER => { wavpack => { NAME => "wavpack", ESTR => sub { "$eopts -h -y %i -o %o" }, PROMPT => { NONE => 0, }, }, ffmpeg => { NAME => 'ffmpeg', ESTR => sub { "-y -i %i $eopts %o" }, PROMPT => { NONE => 0, }, }, avconv => { NAME => 'avconv', ESTR => sub { "-y -i %i $eopts %o" }, PROMPT => { NONE => 0, }, }, }, DECODER => { wvunpack => { NAME => "wvunpack", DSTR => sub { "$dopts -y %i -o %o" }, }, ffmpeg => { NAME => "ffmpeg", DSTR => sub { "$dopts -y -i %i %o" }, }, avconv => { NAME => 'avconv', DSTR => sub { "$dopts -y -i %i %o" }, }, mplayer => { NAME => "mplayer", DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, }, TAGS => { READ => 1, WRITE => 1, MODULE => "Audio::Scan", }, }, ); # supported ffmpeg/avconv formats (decode only) my @ffmpeg_codecs = ( "mmf", "ra", "wma" ); my @ffmpeg_forks = ( "avconv", "ffmpeg" ); foreach my $fork (@ffmpeg_forks) { foreach my $codec (@ffmpeg_codecs) { $run{$codec}{DEFAULT_ENCODER} = $fork; $run{$codec}{DEFAULT_DECODER} = $fork; $run{$codec}{ENCODER}{$fork}{NAME} = $fork; $run{$codec}{DECODER}{$fork}{NAME} = $fork; $run{$codec}{DECODER}{$fork}{DSTR} = sub {"-y -i %i $dopts %o"}; $run{$codec}{ENCODER}{$fork}{ESTR} = sub {"-y -i %i $eopts -ab $bitrate.k -ar $freq -ac $channels %o"}; $run{$codec}{TAGS}{READ} = 0; $run{$codec}{TAGS}{WRITE} = 0; $run{$codec}{TAGS}{MODULE} = undef; } } # support reading of WMA tags via Audio::Scan $run{wma}{TAGS}{READ} = 1; $run{wma}{TAGS}{MODULE} = "Audio::Scan"; # supported video to audio types my @movie_codecs = ( "rv", "asf", "avi", "divx", "mkv", "mpg", "mpeg", "mov", "ogm", "qt", "vcd", "vob", "wmv", "flv", "svcd", "m4v", "nsv", "nuv", "psp", "smk", "ogv", "webm", "vp9", "mpeg4", # decode only audio formats "vqf", "tak", ); foreach (@movie_codecs) { $run{$_}{DEFAULT_ENCODER} = undef; $run{$_}{DEFAULT_DECODER} = "ffmpeg"; $run{$_}{DECODER}{mplayer}{NAME} = "mplayer"; $run{$_}{DECODER}{ffmpeg}{NAME} = "ffmpeg"; $run{$_}{DECODER}{mplayer}{DSTR} = sub { "$dopts -vc null -vo null -ao pcm:file=%o %i" }; $run{$_}{DECODER}{ffmpeg}{DSTR} = sub { "$dopts -i %i %o"; }; $run{$_}{TAGS}{READ} = 0; $run{$_}{TAGS}{WRITE} = 0; $run{$_}{TAGS}{MODULE} = undef; } # supported sndfile-convert formats my @sndfile = ( "pvf", "caf", "sf", "paf", "fap", "sd2", "mat4", "mat5", "mat", "ircam", "w64", "nist", "rf64", ); foreach (@sndfile) { $run{$_}{DEFAULT_ENCODER} = "sndfile-convert"; $run{$_}{DEFAULT_DECODER} = "sndfile-convert"; $run{$_}{ENCODER}{"sndfile-convert"}{NAME} = "sndfile-convert"; $run{$_}{DECODER}{"sndfile-convert"}{NAME} = "sndfile-convert"; $run{$_}{ENCODER}{"sndfile-convert"}{ESTR} = sub { "$eopts %i %o" }; $run{$_}{DECODER}{"sndfile-convert"}{DSTR} = sub { "$dopts %i %o" }; $run{$_}{TAGS}{READ} = 0; $run{$_}{TAGS}{WRITE} = 0; $run{$_}{TAGS}{MODULE} = undef; } # supported sox formats my @sox_codecs = ( "aiff", "aif", "au", "snd", "voc", "smp", "avr", "cdr", "8svx", "amb", "dat", "dvms", "f32", "f64", "fssd", "gsrt", "hcom", "txw", "vms", "al", "sou", "ima", "prc", "cvu", "maud", ); foreach (@sox_codecs) { $run{$_}{DEFAULT_ENCODER} = "sox"; $run{$_}{DEFAULT_DECODER} = "sox"; $run{$_}{ENCODER}{sox}{NAME} = "sox"; $run{$_}{DECODER}{sox}{NAME} = "sox"; $run{$_}{ENCODER}{sox}{ESTR} = sub { "%i -r $freq -c $channels $eopts %o $effect" }; $run{$_}{DECODER}{sox}{DSTR} = sub { "%i $dopts %o" }; $run{$_}{TAGS}{READ} = 0; $run{$_}{TAGS}{WRITE} = 0; $run{$_}{TAGS}{MODULE} = undef; $run{$_}{ENCODER}{sox}{PROMPT}{FREQ} = 1; $run{$_}{ENCODER}{sox}{PROMPT}{CHANNELS} = 1; } # load codecs.conf file load_codecs() if -e $codecs_conf; my $out_name = $outfile; my $out_dir = $outdir; my $first_message = 1; my %files; my $number = 0; # process all files and directories sub proc_input { $to =~ tr/A-Z/a-z/; perror("bad_input","") unless(exists($run{$to})); proc_preserve_dir($dir[0]) if @dir and $preserve; # process recursive directory preservation (sends to proc_files proc_dirs() if @dir and not $preserve; # process directories including recursively (sends to proc_files) proc_files() if @file; # process all files fork_files(); # start the conversion process. } # process all files (all roads lead to rome) sub proc_files { if (@file) { foreach my $i (sort(@file)) { my ($file, $dir, $ext) = fileparse("$i", qr/\.[^.]*/); $ext =~ s/^\.//; $dir = rel2abs($dir); $outdir = $dir if not defined($out_dir) and not $preserve; $outdir = $out_dir if $preserve; my $if = $ext; $if =~ tr/A-Z/a-z/; $only =~ tr/A-Z/a-z/ if $only; next if $only and $if ne $only; $encoder = $my_encoder if defined($my_encoder); $decoder = $my_decoder if defined($my_decoder); $encoder = $run{$to}{DEFAULT_ENCODER} if not $my_encoder; my $codec = ( $if eq "m4a" ? Audio::Scan->scan_info($i)->{info}->{tracks}[0]->{encoding} : $if ); $decoder = $run{$codec}{DEFAULT_DECODER} if not $my_decoder; if (-e "$dir/$file.$to" and not $overwrite) { pnotice("overwrite","$file.$to",1); $total_failed++; next; } if (check_input($file,$dir,$codec) == 0) { pnotice("unk_encoder","$file.$ext",1), next unless(exists($run{$to}{ENCODER}{$encoder})); pnotice("unk_decoder","$file.$ext",1), next unless(exists($run{$codec}{DECODER}{$decoder})); get_visual_opts($to,$outdir) if $gui and not defined($first_run); $first_run = 1; perror("multi_out","") if (defined($out_name) and $#file gt 0 or defined($out_name) and @dir); perror("no_outdir","") if (not -e $outdir and not -d $outdir); $outfile = "$file" if not $out_name; if ($keep and $if eq $to) { my $source_q = shell_quote "$dir/$file.$ext"; my $dest_q = shell_quote "$outdir/$outfile.$ext"; system("cp -v $source_q $dest_q") if $outdir ne $dir and not -e "$outdir/$outfile.$ext"; next if $outdir eq $dir; } else { $files{"FILE$number"}{FILE} = "$dir/$file"; $files{"FILE$number"}{OUTF} = "$outdir/$outfile"; $files{"FILE$number"}{EXT} = "$ext"; $files{"FILE$number"}{CODEC} = "$codec"; $files{"FILE$number"}{NAME} = "$file"; $files{"FILE$number"}{OUTD} = "$outfile"; $files{"FILE$number"}{DECODER} = "$decoder"; $number++; } } } } undef(@file); } # process directories and push all to @file arrary sub proc_dirs { if (@dir) { my @tmp_dir = @dir; undef(@dir); $topdir = $tmp_dir[0]; if (not $recursive) { undef(@file); foreach my $d (@tmp_dir) { opendir(DIR, "$d") or perror("opening_dir","$d: $!"); my @dir_files = readdir(DIR); closedir(DIR); perror("empty_dir","$d") if $#dir_files <= 1; foreach my $f (@dir_files) { if (not -d $f and not -d "$d/$f") { push(@file, "$d/$f"); undef($out_name); } } } proc_files(); return 0; } elsif ($recursive) { if (not $preserve) { undef(@file); foreach my $r (@tmp_dir) { $r = rel2abs($r); find ( sub { my $rfile = $File::Find::name; push(@file, $rfile) if not -d $rfile; }, $r ); } proc_files(); return 0; } } } } # preserve directory structuer (revised 10-7-2013) my $out_dir_original = rel2abs($outdir) if $outdir and -d $outdir; sub proc_preserve_dir { $topdir = rel2abs($dir[0]); perror("no_outdir","") if not defined($out_dir_original); perror("no_outdir","") if not -d $out_dir_original; undef(@file); # clear the array before we begin. find ( sub { my $val = $File::Find::name; $val =~ s/(\$)/\\\$/g; if ($val ne $topdir) { $val =~ s/$topdir\///; # create mirrored directories in output directory if (not -f fileparse("$topdir/$val") and not -d "$out_dir_original/$val") { say "creating directory $out_dir_original/$val" if not -f "$topdir/$val" and $verbose; mkdir("$out_dir_original/$val", 0755) if not -f "$topdir/$val"; } # this will list all files in their original directories if (-f "$topdir/$val") { say "$lang{debug} pushing to \@file: $topdir/$val" if $debug == 1; push(@file, "$topdir/$val"); } # set $out_dir to the $out_dir = "$out_dir_original/" . dirname($val) if -f "$topdir/$val"; # send file, and output dir to proc_files(); proc_files(); } }, $topdir ); } # convert input to destination format sub convert { my ($inf, $outf, $infmt, $iname, $oname, $codec, $dec) = @_; my $if = $infmt; $if =~ tr/A-Z/a-z/; clear_tag_hash() if not $rip; # check to see if encoder/decoder exists. if not, see if we have one # that supports the desired input/output formats. $decoder = $dec; check_encoder(); check_decoder($codec); my $wavf = "$outf.$$.wav"; my $wavf_q = shell_quote $wavf; my $decode_string = $run{$codec}{DECODER}{$decoder}{DSTR}->(); my $inf_q = shell_quote "$inf.$infmt"; $decode_string =~ s/%i/$inf_q/; if ( $decode_string =~ m/%o/ ) { $decode_string =~ s/%o/$wavf_q/; } else { $wavf = "$outf.wav"; $wavf_q = shell_quote $wavf; } pnotice("debug","\n$run{$codec}{DECODER}{$decoder}{NAME} $decode_string", 2) if $dryrun; # catch ^C. will have to be pressed repeatedly to exit the process. $SIG{INT} = sub { unlink("$wavf"); kill 9, $$; }; # decode input file to temporary wav system("$run{$codec}{DECODER}{$decoder}{NAME} $decode_string $silent") if not $dryrun; # remove temporary wav file and die if decode fails if ($? > 0) { unlink("$wavf") if -e "$wavf"; say ""; $banner = 0; pnotice("decode_failed","$inf.$infmt: try with --verbose",1); return 1; } # normalize wav file before encoding to output format perror("no_app","normalize") if $normalize and not `which normalize 2>/dev/null`; system("normalize $nopts $wavf_q") if $normalize; # copy meta-data from input file to %tag_name read_tags("$inf.$infmt", "$codec") if $run{$codec}{TAGS}{READ} == 1 and not $dryrun; my $tag_opts = format_tags($to); # tag options for mp4/m4a/m4b/mpc/mpp/bonk/spx/wv my $outf_q = shell_quote "$outf.$to"; my $encode_string = $run{$to}{ENCODER}{$encoder}{ESTR}->(); $encode_string =~ s/%i/$tag_opts $wavf_q/ if $to =~ /mpc|mpp|mp4|m4a/ and $encoder eq "faac" or $encoder eq "mpcenc"; $encode_string =~ s/%i/$wavf_q $tag_opts/ if $to =~ /mpc|mpp|mp4|m4a/ and $encoder eq "ffmpeg" or $encoder eq "avconv"; $encode_string =~ s/%i/$wavf_q/ if $to !~ /mpc|mpp|mp4|m4a/; $encode_string =~ s/%o/$tag_opts $outf_q/ if $tag_opts ne " " and $to !~ /mpc|mpp|mp4|m4a/; $encode_string =~ s/%o/$outf_q/ if $tag_opts eq " " or $to =~ /mpc|mpp|mp4|m4a/; # read tag options from command line if present get_user_tags(); pnotice("debug","\n$run{$to}{ENCODER}{$encoder}{NAME} $encode_string", 2) if $dryrun; # encode temporary WAV to desired output format. system("$run{$to}{ENCODER}{$encoder}{NAME} $encode_string $silent") if not $dryrun; # remove partially encoded output file and temporary wav if encoding fails if ($? > 0) { unlink("$outf.$to") if -e "$outf.$to"; unlink("$wavf") if -e "$wavf"; say ""; $banner = 0; pnotice("encode_failed","$outf.$to: $?",1); return 1; } # write meta-data to output file from %tag_name hash write_tags("$outf.$to", "$to") if $run{$to}{TAGS}{WRITE} == 1 and $tag_opts eq " " and not $dryrun; unlink("$wavf") if not $dryrun; unlink("$inf.$infmt") if $delete and not $dryrun; pnotice("removed_tmp","$wavf","2") if $verbose; pnotice("removed_src","$inf.$infmt", "2") if $delete and $verbose; } $pm->run_on_finish ( sub { my $pid = shift; my $exit_code = shift; my $ident = shift; if (-e "$ident.$to") { $total_converted++; } say "$lang{debug} PID: $pid EXIT_CODE: $exit_code IDENTITY: \"$ident.$to\"" if $debug == 1; } ); # convert all files that have been placed in the %files hash through various procs* sub fork_files { say "\n$name - $version\n" if not $gui and $banner == 1; foreach (sort(keys(%files))) { $pm->start($files{$_}{OUTF}) and next; my $msg = "$lang{converting}" . " " . basename($files{$_}{FILE}) . ".$files{$_}{EXT} -> $to"; say "$msg" if not $gui; system("kdialog --icon $icon_path --title \"$name\" --passivepopup \"$msg\" 10 &") if $gui and $kde; system("notify-send \"$name\" \"$msg\" -t 35 -i $icon_path &") if $gui and $gnome; convert("$files{$_}{FILE}","$files{$_}{OUTF}","$files{$_}{EXT}","$files{$_}{NAME}","$files{$_}{OUTD}","$files{$_}{CODEC}","$files{$_}{DECODER}"); $pm->finish; } $pm->wait_all_children; $total_failed = $number - $total_converted if $total_converted < $number; my $finished_msg = "\n$lang{total_converted} $total_converted, $lang{failed} $total_failed\n"; say "$finished_msg" if not $gui; system("kdialog --icon $icon_path --title \"$name\" --passivepopup \"$finished_msg\" 10 &") if $gui and $kde; system("notify-send \"$name\" \"$finished_msg\" -t 35 -i $icon_path &") if $gui and $gnome; } # if the default encoder does not exist, cycle through the supported # encoders until we find one that does. sub check_encoder { if (not `which $encoder 2>/dev/null`) { my $first_encoder = $encoder; foreach (keys %{$run{$to}{ENCODER}}) { $encoder = $_ and return if `which $_ 2>/dev/null`; } perror("no_encode_app","$to") if $encoder eq $first_encoder; } else { return 0; } } # if the default decoder does not exist, cycle through the supported # decoders until we find one that does. sub check_decoder { my $from = shift; if (not `which $decoder 2>/dev/null`) { my $first_decoder = $decoder; foreach (keys %{$run{$from}{DECODER}}) { $decoder = $_ and return if `which $_ 2>/dev/null`; } perror("no_decode_app","$from") if $decoder eq $first_decoder; } else { return 0; } } # make sure encoding/decoding is supported. sub check_input { my $file = shift; my $dir = shift; my $codec = shift; perror("no_encoder","$to") unless(defined($run{$to}{ENCODER})); unless(defined($run{$codec}{DECODER})) { pnotice("no_decoder","$codec",2) if $verbose or not $only; $total_failed++; return 1; } return 0; } ######################################## # GUI options for KDE & Gnome Plugins # ######################################## my $kdialog = "kdialog --title \"$name\""; my $zenity = "zenity --title \"$name\" --list --radiolist --width 100 --height 300 --column '' --column "; sub get_visual_opts { my ($to_fmt,$od) = @_; # escape illegal characters in output directory name $od =~ s/( |'|\(|\)|"|\\)/\\$1/g; $outdir = `kdialog --getexistingdirectory $od` if $config{KDE_DIR} == 1 and $kde; $outdir = `zenity --title \"$lang{gui_outdir}\" --file-selection --directory --filename=\`pwd\`` if $config{ZEN_DIR} == 1 and $gnome; chomp($outdir); $out_dir = $outdir; exit(1) if not $outdir; if ($config{KDE_OPTS} == 1 or $config{ZEN_OPTS} == 1) { foreach (keys %{$run{$to_fmt}{ENCODER}{$encoder}{PROMPT}}) { prompt_user($_); } } } sub prompt_user { my $opt = shift; given ($opt) { when (/^BITRATE/) { $bitrate = `$kdialog --default $bitrate --combobox \"$lang{gui_bitrate}\" 56 112 128 160 192 256 320` if $kde; $bitrate = `$zenity \"$lang{gui_bitrate}\" FALSE 56 FALSE 112 FALSE 128 FALSE 160 TRUE 192 FALSE 256 FALSE 320` if $gnome; chomp($bitrate); exit(1) if not $bitrate; } when (/^FREQ/) { $freq = `$kdialog --default $freq --combobox \"$lang{gui_freq}\" 32000 44100 48000` if $kde; $freq = `$zenity \"$lang{gui_freq}\" FALSE 32000 TRUE 44100 FALSE 48000` if $gnome; chomp($freq); exit(1) if not $freq; } when (/^CHANNELS/) { $channels = `$kdialog --default $channels --combobox \"$lang{gui_chans}\" 1 2` if $kde; $channels = `$zenity \"$lang{gui_chans}\" FALSE 1 TRUE 2` if $gnome; chomp($channels); exit(1) if not $channels; } when (/^FCOMP/) { $fcomp = `$kdialog --default $fcomp --combobox \"$lang{gui_fcomp}\" 0 1 2 3 4 5 6 7 8` if $kde; $fcomp = `$zenity \"$lang{gui_fcomp}\" FALSE 0 FALSE 1 TRUE 2 FALSE 3 FALSE 4 FALSE 5 FALSE 6 FALSE 7 FALSE 8` if $gnome; chomp($fcomp); exit(1) if not $fcomp; } when (/^ACOMP/) { $acomp = `$kdialog --default $acomp --combobox \"$lang{gui_acomp}\" 1000 2000 3000 4000 5000` if $kde; $acomp = `$zenity \"$lang{gui_acomp}\" FALSE 1000 FALSE 2000 TRUE 3000 FALSE 4000 FALSE 5000` if $gnome; chomp($acomp); exit(1) if not $acomp; } when (/^OGGQUAL/) { $oggqual = `$kdialog --default $oggqual --combobox \"$lang{gui_oggqual}\" 0 1 2 3 4 5 6 7 8 9 10` if $kde; $oggqual = `$zenity \"$lang{gui_oggqual}\" FALSE 0 FALSE 1 FALSE 2 TRUE 3 FALSE 4 FALSE 5 FALSE 6 FALSE 7 FALSE 8 FALSE 9 FALSE 10` if $gnome; chomp($oggqual); exit(1) if not $oggqual; } when (/^SPXQUAL/) { $spxqual = `$kdialog --default $spxqual --combobox \"$lang{gui_spxqual}\" 0 1 2 3 4 5 6 7 8 9 10` if $kde; $spxqual = `$zenity \"$lang{gui_spxqual}\" FALSE 0 FALSE 1 FALSE 2 FALSE 3 FALSE 4 FALSE 5 FALSE 6 FALSE 7 TRUE 8 FALSE 9 FALSE 10` if $gnome; chomp($spxqual); exit(1) if not $spxqual; } when (/^AACQUAL/) { $aacqual = `$kdialog --default $aacqual --combobox \"$lang{gui_aacqual}\" 100 200 300 400 500` if $kde; $aacqual = `$zenity \"$lang{gui_aacqual}\" TRUE 100 FALSE 200 FALSE 300 FALSE 400 FALSE 500` if $gnome; chomp($aacqual); exit(1) if not $aacqual; } when (/^MPCQUAL/) { $mpcqual = `$kdialog --default $mpcqual --combobox \"$lang{gui_mpcqual}\" thumb radio standard xtreme insane braindead` if $kde; $mpcqual = `$zenity \"$lang{gui_mpcqual}\" FALSE thumb TRUE radio FALSE standard FALSE xtreme FALSE insane FALSE braindead` if $gnome; chomp($mpcqual); exit(1) if not $mpcqual; } when (/^OFMODE/ ) { $ofmode = `$kdialog --default $ofmode --combobox \"$lang{gui_ofmode}\" fast normal high extra best highnew extranew bestnew` if $kde; $ofmode = `$zenity \"$lang{gui_ofmode}\" FALSE fast TRUE normal FALSE high FALSE extra FALSE best FALSE highnew FALSE extranew FALSE bestnew` if $gnome; chomp($ofmode); exit(1) if not $ofmode; } when (/^OFOPT/) { $ofopt = `$kdialog --default $ofopt --combobox \"$lang{gui_ofopt}\" none fast normal high best` if $kde; $ofopt = `$zenity \"$lang{gui_ofopt}\" FALSE none TRUE fast FALSE normal FALSE high FALSE best` if $gnome; chomp($ofopt); exit(1) if not $ofopt; } when (/^BRATIO/) { $bratio = `$kdialog --default $bratio --combobox \"$lang{gui_bratio}\" 1 2 3 4 5` if $kde; $bratio = `$zenity \"$lang{gui_bratio}\" FALSE 1 TRUE 2 FALSE 3 FALSE 4 FALSE 5` if $gnome; chomp($bratio); exit(1) if not $bratio; } when (/^BQUANL/) { $bquanl = `$kdialog --default $bquanl --combobox \"$lang{gui_bquanl}\" 1.00 1.25 1.50 1.75 2.00` if $kde; $bquanl = `$zenity \"$lang{gui_bquanl}\" TRUE 1.00 FALSE 1.25 FALSE 1.50 FALSE 1.75 FALSE 2.00` if $gnome; chomp($bquanl); exit(1) if not $bquanl; } when (/^BPSIZE/) { $bpsize = `$kdialog --default $bpsize --combobox \"$lang{gui_bpsize}\" 10 128` if $kde; $bpsize = `$zenity \"$lang{gui_bpsize}\" FALSE 10 TRUE 128` if $gnome; chomp($bpsize); exit(1) if not $bpsize; } default { return 0; } } } # all copied tags will be stored here for furture use my %tag_name = ( title => undef, track => undef, artist => undef, album => undef, comment => undef, year => undef, genre => undef, ); # override tags read from input file if any of the tagging # options are specified by the user during conversion. sub get_user_tags { $tag_name{title} = $title if $title; $tag_name{track} = $track if $track; $tag_name{artist} = $artist if $artist; $tag_name{album} = $album if $album; $tag_name{comment} = $comment if $comment; $tag_name{year} = $year if $year; $tag_name{genre} = $genre if $genre; } # the formats MP4/M4A/M4B/MPC/MPP/WV/BONK have no tag writing module. # tags therefore have to be written during encode via various # command line args. sub format_tags { my $type = shift; given ($type) { when (/^mp4$|^m4a$|^m4b$/) { if ($run{$to}{ENCODER}{$encoder}{NAME} eq "ffmpeg" or $run{$to}{ENCODER}{$encoder}{NAME} eq "avconv") { $tag_name{track} = 0 if not $tag_name{track}; $tag_name{year} = 0 if not $tag_name{year}; return "-metadata TITLE=\"$tag_name{title}\" -metadata TRACK=\"$tag_name{track}\" -metadata ARTIST=\"$tag_name{artist}\" -metadata ALBUM=\"$tag_name{album}\" -metadata COMMENT=\"$tag_name{comment}\" -metadata YEAR=\"$tag_name{year}\" -metadata GENRE=\"$tag_name{genre}\""; } else { return "--title \"$tag_name{title}\" --track \"$tag_name{track}\" --artist \"$tag_name{artist}\" --album \"$tag_name{album}\" --comment \"$tag_name{comment}\" --year \"$tag_name{year}\" --genre \"$tag_name{genre}\""; } } when (/^mpc$|^mpp$/) { return "--artist \"$tag_name{artist}\" --title \"$tag_name{title}\" --album \"$tag_name{album}\" --track \"$tag_name{track}\" --genre \"$tag_name{genre}\" --year \"$tag_name{year}\" --comment \"$tag_name{comment}\""; } when (/^wv$/) { return "-w \"Title=$tag_name{title}\" -w \"Track=$tag_name{track}\" -w \"Artist=$tag_name{artist}\" -w \"Album=$tag_name{album}\" -w \"Comment=$tag_name{comment}\" -w \"Year=$tag_name{year}\" -w \"Genre=$tag_name{genre}\""; } when (/^bonk$/) { return "-t \"$tag_name{title}\" -a \"$tag_name{artist}\" -c \"$tag_name{comment}\""; } when (/^spx$/) { return "--author \"$tag_name{artist}\" --title \"$tag_name{title}\" --comment \"year=$tag_name{year}\" --comment \"tracknumber=$tag_name{track}\" --comment \"album=$tag_name{album}\" --comment \"genre=$tag_name{genre}\" --comment \"comment=$tag_name{comment}\""; } default { return " "; } } } # meta-data is read based on input file extension. # all tags which are present will be copied to # the %tag_name hash. sub read_tags { my $in_file = shift; my $in_format = shift; my $tag_module = $run{$in_format}{TAGS}{MODULE}; given ($in_format) { when (/^mp3$|^mp3hd$/) { my $mp3tag = $tag_module->new($in_file); my @tags = $mp3tag->autoinfo(); $tag_name{title} = "$tags[0]" if $tags[0]; $tag_name{track} = "$tags[1]" if $tags[1]; $tag_name{artist} = "$tags[2]" if $tags[2]; $tag_name{album} = "$tags[3]" if $tags[3]; $tag_name{comment} = "$tags[4]" if $tags[4]; $tag_name{year} = "$tags[5]" if $tags[5]; $tag_name{genre} = "$tags[6]" if $tags[6]; return 0; } when (/^ogg$|^oga$/) { my $ogg_tag = Audio::Scan->scan_tags($in_file)->{tags}; $tag_name{title} = $ogg_tag->{TITLE} if $ogg_tag->{TITLE}; $tag_name{track} = $ogg_tag->{TRACKNUMBER} if $ogg_tag->{TRACKNUMBER}; $tag_name{artist} = $ogg_tag->{ARTIST} if $ogg_tag->{ARTIST}; $tag_name{album} = $ogg_tag->{ALBUM} if $ogg_tag->{ALBUM}; $tag_name{comment} = $ogg_tag->{COMMENT} if $ogg_tag->{COMMENT}; $tag_name{year} = $ogg_tag->{YEAR} if $ogg_tag->{YEAR}; $tag_name{genre} = $ogg_tag->{GENRE} if $ogg_tag->{GENRE}; return 0; } when (/^spx$/) { my $pid = open(SPX, "speexdec \"$in_file\" tmp1-$$.wav 2>&1 |") or perror("opening_file","$in_file"); my @data = ; @data = grep(!/^$|^#/, @data); close(SPX); foreach (@data) { next unless /=/; chomp; my ($k, $v) = split /=/; $k =~ tr/A-Z/a-z/; $tag_name{$k} = $v if exists($tag_name{$k}); $tag_name{artist} = $v if $k =~ /^author/i; $tag_name{track} = $v if $k =~ /^tracknumber/i; } unlink("tmp-$$.wav"); return 0; } when (/^flac$|^fla$/) { my $flac_file = Audio::FLAC::Header->new($in_file); my $flac_tag = $flac_file->tags(); $tag_name{title} = $flac_tag->{TITLE} if $flac_tag->{TITLE}; $tag_name{track} = $flac_tag->{TRACKNUMBER} if $flac_tag->{TRACKNUMBER}; $tag_name{artist} = $flac_tag->{ARTIST} if $flac_tag->{ARTIST}; $tag_name{album} = $flac_tag->{ALBUM} if $flac_tag->{ALBUM}; $tag_name{comment} = $flac_tag->{COMMENT} if $flac_tag->{COMMENT}; $tag_name{year} = $flac_tag->{DATE} if $flac_tag->{DATE}; $tag_name{genre} = $flac_tag->{GENRE} if $flac_tag->{GENRE}; return 0; } when (/^(mp4|m4b|alac|mp4a)$/) { my $mp4_tag = $tag_module->scan_tags($in_file)->{tags}; $tag_name{title} = $mp4_tag->{NAM} if $mp4_tag->{NAM}; $tag_name{track} = $mp4_tag->{TRKN} if $mp4_tag->{TRKN}; $tag_name{artist} = $mp4_tag->{ART} if $mp4_tag->{ART}; $tag_name{album} = $mp4_tag->{ALB} if $mp4_tag->{ALB}; $tag_name{comment} = $mp4_tag->{CMT} if $mp4_tag->{CMT}; $tag_name{year} = $mp4_tag->{DAY} if $mp4_tag->{DAY}; $tag_name{genre} = $mp4_tag->{GNRE} if $mp4_tag->{GNRE}; return 0; } when (/^dsf$/) { my $dsf_tag = $tag_module->scan_tags($in_file)->{tags}; $tag_name{title} = $dsf_tag->{TIT2} if $dsf_tag->{TIT2}; $tag_name{track} = $dsf_tag->{TRCK} if $dsf_tag->{TRCK}; $tag_name{artist} = $dsf_tag->{TPE1} if $dsf_tag->{TPE1}; $tag_name{album} = $dsf_tag->{TALB} if $dsf_tag->{TALB}; $tag_name{comment} = $dsf_tag->{COMM} if $dsf_tag->{COMM}; $tag_name{year} = $dsf_tag->{TYER} if $dsf_tag->{TYER}; $tag_name{genre} = $dsf_tag->{TCON} if $dsf_tag->{TCON}; return 0; } when (/^ape$|^mpc$|^mpp$|^wv$/) { my $audio_tag = $tag_module->scan_tags($in_file)->{tags}; $tag_name{title} = $audio_tag->{TITLE} if $audio_tag->{TITLE}; $tag_name{track} = $audio_tag->{TRACK} if $audio_tag->{TRACK}; $tag_name{artist} = $audio_tag->{ARTIST} if $audio_tag->{ARTIST}; $tag_name{album} = $audio_tag->{ALBUM} if $audio_tag->{ALBUM}; $tag_name{comment} = $audio_tag->{COMMENT} if $audio_tag->{COMMENT}; $tag_name{year} = $audio_tag->{YEAR} if $audio_tag->{YEAR}; $tag_name{genre} = $audio_tag->{GENRE} if $audio_tag->{GENRE}; return 0; } when (/^wma$/) { my $wma_tag = $tag_module->scan_tags($in_file)->{tags}; $tag_name{title} = $wma_tag->{Title} if $wma_tag->{Title}; $tag_name{track} = $wma_tag->{'WM/TrackNumber'} if $wma_tag->{'WM/TrackNumber'}; $tag_name{artist} = $wma_tag->{'WM/AlbumArtist'} if $wma_tag->{'WM/AlbumArtist'}; $tag_name{album} = $wma_tag->{'WM/AlbumTitle'} if $wma_tag->{'WM/AlbumTitle'}; $tag_name{comment} = $wma_tag->{'WM/Description'} if $wma_tag->{'WM/Description'}; $tag_name{year} = $wma_tag->{'WM/Year'} if $wma_tag->{'WM/Year'}; $tag_name{genre} = $wma_tag->{'WM/Genre'} if $wma_tag->{'WM/Genre'}; return 0; } default { return 1; } } } # write meta-data stored in %tag_name to output file. sub write_tags { my $out_file = shift; my $out_format = shift; my $tag_m; given ($out_format) { when (/^mp3$|^mp3hd$/) { $tag_m = MP3::Tag->new("$out_file"); # ID3v2 Tags unless(exists($tag_m->{ID3v2})) { $tag_m->new_tag("ID3v2"); } $tag_m->{ID3v2}->add_frame("TIT2", "$tag_name{title}") if defined($tag_name{title}); $tag_m->{ID3v2}->add_frame("TRCK", "$tag_name{track}") if defined($tag_name{track}); $tag_m->{ID3v2}->add_frame("TPE1", "$tag_name{artist}") if defined($tag_name{artist}); $tag_m->{ID3v2}->add_frame("TALB", "$tag_name{album}") if defined($tag_name{album}); $tag_m->{ID3v2}->comment("$tag_name{comment}") if defined($tag_name{comment}); $tag_m->{ID3v2}->add_frame("TYER", "$tag_name{year}") if defined($tag_name{year}); $tag_m->{ID3v2}->add_frame("TCON", "$tag_name{genre}") if defined($tag_name{genre}); $tag_m->{ID3v2}->write_tag; # ID3v1 Tags unless(exists($tag_m->{ID3v1})) { $tag_m->new_tag("ID3v1"); } $tag_m->{ID3v1}->title("$tag_name{title}") if defined($tag_name{title}); $tag_m->{ID3v1}->track("$tag_name{track}") if defined($tag_name{track}); $tag_m->{ID3v1}->artist("$tag_name{artist}") if defined($tag_name{artist}); $tag_m->{ID3v1}->album("$tag_name{album}") if defined($tag_name{album}); $tag_m->{ID3v1}->comment("$tag_name{comment}") if defined($tag_name{comment}); $tag_m->{ID3v1}->year("$tag_name{year}") if defined($tag_name{year}); $tag_m->{ID3v1}->genre("$tag_name{genre}") if defined($tag_name{genre}); $tag_m->{ID3v1}->write_tag; return 0; } when (/^ogg$|^oga$/) { $tag_m = ''; $tag_m = "$tag_m -t \"TITLE=$tag_name{title}\"" if $tag_name{title}; $tag_m = "$tag_m -t \"TRACKNUMBER=$tag_name{track}\"" if $tag_name{track}; $tag_m = "$tag_m -t \"ARTIST=$tag_name{artist}\"" if $tag_name{artist}; $tag_m = "$tag_m -t \"ALBUM=$tag_name{album}\"" if $tag_name{album}; $tag_m = "$tag_m -t \"COMMENT=$tag_name{comment}\"" if $tag_name{comment}; $tag_m = "$tag_m -t \"YEAR=$tag_name{year}\"" if $tag_name{year}; $tag_m = "$tag_m -t \"GENRE=$tag_name{genre}\"" if $tag_name{genre}; my $out_file_q = shell_quote $out_file; system("vorbiscomment -w $tag_m $out_file_q") if $tag_m ne ''; return 0; } when (/^fla$|^flac$/) { $tag_m = Audio::FLAC::Header->new("$out_file"); my $tag_i = $tag_m->tags(); $tag_i->{TITLE} = "$tag_name{title}" if $tag_name{title}; $tag_i->{TRACKNUMBER} = "$tag_name{track}" if $tag_name{track}; $tag_i->{ARTIST} = "$tag_name{artist}" if $tag_name{artist}; $tag_i->{ALBUM} = "$tag_name{album}" if $tag_name{album}; $tag_i->{COMMENT} = "$tag_name{comment}" if $tag_name{comment}; $tag_i->{DATE} = "$tag_name{year}" if $tag_name{year}; $tag_i->{GENRE} = "$tag_name{genre}" if $tag_name{genre}; $tag_m->write(); return 0; } default { perror("no_write_tag","$out_file"); } } } # this is necessary when converting multiple files. # it prevents old tags from the previous file being # copied over to the next file in line. sub clear_tag_hash { foreach (keys(%tag_name)) { $tag_name{$_} = ''; } } # display meta-data for selected file(s) sub show_taginfo { perror("no_input","") if $#file < 0; foreach my $i (@file) { my ($file, $dir, $ext) = fileparse("$i", qr/\.[^.]*/); $ext =~ s/^\.//; my $from = $ext; $from =~ tr/A-Z/a-z/; if ($run{$from}{TAGS}{READ} == 1) { clear_tag_hash(); read_tags("$dir/$file.$ext","$from"); say ''; pnotice("tag_info","$file.$ext",2); say " Artist: $tag_name{artist}"; say " Title: $tag_name{title}"; say " Album: $tag_name{album}"; say " Track: $tag_name{track}"; say "Comment: $tag_name{comment}"; say " Year: $tag_name{year}"; say " Genre: $tag_name{genre}"; say ''; } else { pnotice("no_read_tag","$file.$ext",2); } } } # write tags to file supplied by the user sub write_user_tags { perror("no_input","") if $#file < 0; say ''; say "$name - $version\n"; foreach (@file) { my ($file, $dir, $ext) = fileparse("$_", qr/\.[^.]*/); $ext =~ s/^\.//; my $from = $ext; $from =~ tr/A-Z/a-z/; if ($run{$from}{TAGS}{WRITE} == 1) { clear_tag_hash(); read_tags("$dir/$file.$ext","$from"); $tag_name{title} = $title if $title; $tag_name{track} = $track if $track; $tag_name{artist} = $artist if $artist; $tag_name{album} = $album if $album; $tag_name{comment} = $comment if $comment; $tag_name{year} = $year if $year; $tag_name{genre} = $genre if $genre; write_tags("$dir/$file.$ext","$from"); say "$lang{write_tag_i} $file.$ext"; } else { perror("no_write_tag","$file.$ext"); } } say ''; } # print out list of supported encode & decode formats sub show_formats { say "\n$name - $version\n"; say "EXT E D ENCODER DECODER TAG-READ TAG-WRITE"; say "----------------------------------------------------------------------"; my $enc_count = 0; my $dec_count = 0; foreach (sort(keys(%run))) { my $e = "N"; $e = "Y" if defined($run{$_}{DEFAULT_ENCODER}); my $d = "N"; $d = "Y" if defined($run{$_}{DEFAULT_DECODER}); my $r = "N"; $r = "Y" if $run{$_}{TAGS}{READ} == 1; my $w = "N"; $w = "Y" if $run{$_}{TAGS}{WRITE} == 1; my $enc = ''; $enc = $run{$_}{DEFAULT_ENCODER} if defined($run{$_}{DEFAULT_ENCODER}); my $dec = ''; $dec = $run{$_}{DEFAULT_DECODER} if defined($run{$_}{DEFAULT_DECODER}); printf("%-9s %-3s %-3s %-15s %-18s %-10s %s\n", $_, $e, $d, $enc, $dec, $r, $w); ++$enc_count if $enc ne ''; ++$dec_count if $dec ne ''; } say "\n$lang{enc_fmts} $enc_count --- $lang{dec_fmts} $dec_count\n"; } # show encoders for output format sub show_encoders { say "\n$name - $version\n\n$lang{show_encoders}: $my_encoder\n"; foreach (sort(keys %{$run{$my_encoder}{ENCODER}})) { print "$_ -> "; print "installed" if `which $_ 2>/dev/null`; print "not found" if not `which $_ 2>/dev/null`; print " (default)" if $_ eq $run{$my_encoder}{DEFAULT_ENCODER}; say ''; } say ''; } # show decoders for input format sub show_decoders { say "\n$name - $version\n\n$lang{show_decoders}: $my_decoder\n"; foreach (sort(keys %{$run{$my_decoder}{DECODER}})) { print "$_ -> "; print "installed" if `which $_ 2>/dev/null`; print " (default)" if $_ eq $run{$my_decoder}{DEFAULT_DECODER}; say ''; } say ''; } ################# # cd ripping... # ################# # get total number of tracks from cdparanoia query sub get_total_tracks { open(CDINFO, "cdparanoia -Q 2>&1 |") or die "can't fork: $!\n"; my @cdquery = ; close(CDINFO); my $fmt_tracks = $cdquery[-3]; $fmt_tracks =~ s/\s//g; my @ttracks = split(/\./, $fmt_tracks); return "$ttracks[0]"; } my (%cd, %ripconfig, @cdtrack, $track_total); # setup the cddb config sub get_cddb_config { $config{USE_CDDB} = 0 && return if $nocddb; $config{CDDB_INPUT} = 0 if $noinput; $ripconfig{CDDB_HOST} = $config{CDDB_HOST}; $ripconfig{CDDB_PORT} = $config{CDDB_PORT}; $ripconfig{CDDB_MODE} = $config{CDDB_MODE}; $ripconfig{DEVICE} = $device; $ripconfig{CDDB_INPUT} = $config{CDDB_INPUT}; print $ripconfig{CDDB_HOST}; %cd = get_cddb(\%ripconfig); if (not $cd{title}) { pnotice("no_cddb","",2); $config{USE_CDDB} = 0; } else { @cdtrack = @{$cd{track}}; $track_total = $cd{tno}; } } # check to see if a disc is present sub query_disc { system("cdparanoia -q -d $device -Q > /dev/null 2>&1"); perror("no_disc","$device") if $? > 0; } # set tag info from cddb sub tag_track { my $tno = shift; $tag_name{artist} = $cd{artist} if $cd{artist}; $tag_name{title} = $cdtrack[$tno-1] if $cdtrack[$tno-1]; $tag_name{genre} = $cd{cat} if $cd{cat}; $tag_name{track} = $tno; $tag_name{album} = $cd{title} if $cd{title}; $tag_name{year} = $cd{year} if $cd{year}; $tag_name{comment} = ''; } # process and convert ripped track sub rip_cd { my ($on,$tno) = @_; $outdir = $ENV{HOME}; $to =~ tr/A-Z/a-z/; get_visual_opts($to,$out_dir) if $gui and not defined($first_run); $first_run = 1; pnotice("ripping_track","$tno",2); $on =~ s/\//_/g; say "\ncdparanoia -d $device $tno $on.wav\n" if $dryrun; my $on_q = shell_quote "$on.wav"; system("cdparanoia -d $device $tno $on_q >/dev/null 2>&1") if not $dryrun; if ($to !~ /wav/i) { push(@file, "$on.wav"); tag_track($tno); proc_input(); clear_tag_hash(); undef(@file); unlink("$on.wav") if not $dryrun; pnotice("removed_tmp","$on.wav",2) if $verbose; } } # rip selected tracks or all from disc sub proc_cd { perror("no_app","cdparanoia") if not `which cdparanoia 2>/dev/null`; query_disc(); get_cddb_config(); my $total_tracks = get_total_tracks(); if ($rip eq "all") { if ($config{USE_CDDB} ne 1) { for(my $i=1;$i<=$total_tracks;$i++) { rip_cd($i, $i); } } elsif ($config{USE_CDDB} eq 1) { my $n = 1; foreach my $i (@cdtrack) { my $out_string = $nscheme; chomp($cdtrack[$n-1]); $out_string =~ s/%ar/$cd{artist}/; $out_string =~ s/%ti/$cdtrack[$n-1]/; $out_string =~ s/%tr/$n/; $out_string =~ s/%ab/$cd{title}/; $out_string =~ s/%yr/$cd{year}/; rip_cd($out_string, $n); ++$n; } } } else { my @tracks = split(/,/, $rip); foreach my $i (@tracks) { next if $i > $total_tracks or $i < 1; my $out_string = $nscheme; $out_string =~ s/%ar/$cd{artist}/; $out_string =~ s/%ti/$cdtrack[$i-1]/; $out_string =~ s/%tr/$i/; $out_string =~ s/%ab/$cd{title}/; $out_string =~ s/%yr/$cd{year}/; rip_cd($out_string, $i) if $config{USE_CDDB} == 1; rip_cd($i, $i) if $config{USE_CDDB} == 0; } } } # get/print cddb information from disc sub cdinfo { query_disc(); get_cddb_config(); say "$name - $version\n"; say "Artist = $cd{artist}"; say "Album = $cd{title}"; say "Genre = $cd{genre}"; say "Tracks = $cd{tno}"; say "Year = $cd{year}\n"; my $n = 1; foreach (@cdtrack) { say "Track $n: $_"; ++$n; } exit(0); } # version / license information sub version { say " $name - $version Copyright (C) 2005-2021 Philip Lyons This is free software. You may redistribute copies of it under the terms of the GNU General Public License . There is NO WARRANTY, to the extent permitted by law. "; } # help & longhelp menu sub help_menu { say "\n$name - $version"; say " -t, --to $lang{to} -r, --recursive $lang{recursive} -p, --preserve $lang{preserve} -f, --formats $lang{formats} -o, --only $lang{only} -k, --keep $lang{keep} -j, --jobs $lang{jobs} -h, --help $lang{help} -l, --longhelp $lang{longhelp} -v, --verbose $lang{verbose} "; say "$lang{user_opts} --defopts $lang{defopts} --eopts $lang{eopts} --dopts $lang{dopts} --nopts $lang{nopts} --outfile $lang{outfile} --outdir $lang{outdir} --dryrun $lang{dryrun} --overwrite $lang{overwrited} --normalize $lang{normalize} --delete $lang{delete} --encoder $lang{encoder} --decoder $lang{decoder} --version $lang{version} $lang{enc_opts} --bitrate $lang{bitrate} --freq $lang{freq} --channels $lang{channels} --effect $lang{effect} --fcomp $lang{fcomp} --acomp $lang{acomp} --oggqual $lang{oggqual} --spxqual $lang{spxqual} --aacqual $lang{aacqual} --mpcqual $lang{mpcqual} --ofmode $lang{ofmode} --ofopt $lang{ofopt} --bratio $lang{bratio} --bquanl $lang{bquanl} --bpsize $lang{bpsize} $lang{tag_opts} --artist $lang{artist} --title $lang{title} --track $lang{track} --year $lang{year} --album $lang{album} --genre $lang{genre} --comment $lang{comment} --taginfo $lang{taginfo} $lang{tag_usage} $lang{rip_opts} --rip $lang{rip} --nocddb $lang{nocddb} --noinput $lang{noinput} --nscheme $lang{nscheme} --cdinfo $lang{cdinfo} --device $lang{device} $lang{rip_usage}" if $longhelp; say "\n$lang{usage}\n"; } sub load_module { my ($file) = @_; my $return; unless($return = do $file) { perror("opening_file","$file: $@ $!") if $@ or !defined($return) or not !$return; } } sub import_module { my ($format_ref) = @_; my $format_name=$format_ref->{NAME}; $run{$format_name} = $format_ref; } # load all user modules sub load_user_modules { my @imported_mods; opendir(DIR, "$mod_dir") or perror("opening_dir","$mod_dir: $!"); foreach (readdir(DIR)) { load_module("$mod_dir/$_") if $_ !~ /^\./; push(@imported_mods, $_) if $_ !~ /^\./; } closedir(DIR); say "$lang{imported} @imported_mods"; } # place files/directories in their respective arrays if (@ARGV) { foreach (@ARGV) { if (-f $_) { push(@file,$_); print "$lang{debug} adding $_ to \@file\n" if $debug == 1; } elsif (-d $_) { push(@dir, $_); print "$lang{debug} adding $_ to \@dir\n" if $debug == 1; } else { perror("no_infile","$_"); } } } load_user_modules() if $config{IMPORTM} == 1; if ($to and @ARGV and not $rip) { proc_input(); exit $total_failed; } elsif ($to and $rip) { proc_cd(); } elsif ($my_encoder and not $to) { show_encoders(); } elsif ($my_decoder and not $to) { show_decoders(); } elsif ($verinfo) { version(); } elsif ($longhelp) { help_menu(); } elsif ($formats) { show_formats(); } elsif ($cdinfo) { cdinfo(); } elsif ($taginfo and not $to) { show_taginfo(); } elsif ($title or $track or $artist or $album or $comment or $year or $genre) { write_user_tags(); } else { help_menu(); } __END__ =head1 NAME pacpl - Perl Audio Converter, a multi purpose converter/ripper/tagger =head1 SYNOPSIS pacpl --to [file(s)/directory(s)] =head1 DESCRIPTION Perl Audio Converter A Linux CLI tool for converting multiple audio types from one format to another. It supports the following audio formats: ======================================== 3G2, 3GP, 8SVX, AAC, AC3, ADTS, AIFF, AL, AMB, AMR, APE, AU, AVR, BONK, CAF, CDR, CVU, DAT, DSF, DTS, DVMS, F32, F64, FAP, FLA, FLAC, FSSD, GSRT, HCOM, IMA, IRCAM, LA, MAT, MAUD, MAT4, MAT5, M4A, MP2, MP3, MP4, MPC, MPP, NIST, OFF, OFR, OFS, OPUS, OGA, OGG, PAF, PRC, PVF, RA, RAM, RAW, RF64, SD2, SF, SHN, SMP, SND, SOU, SPX, SRN, TAK, TTA, TXW, VOC, VMS, VQF, W64, WAV, WMA, and WV. It can also extract audio from the following video extensions: ============================================================== RM, RV, ASF, DivX, MPG, MKV, MPEG, AVI, MOV, OGM, OGV, QT, VCD, SVCD, M4V, NSV, NUV, PSP, SMK, VOB, FLV, WEBM and WMV. Parallel Processing, a CD ripping function with CDDB support, batch conversion, tag preservation for most supported formats, independent tag reading & writing, service menus for KDE Dolphin/Konqueror, GNOME Nautilus script, and action scripts for Nemo/Thunar are also provided. =head1 OPTIONS B<-t, --to> I set encode format for the input file(s) or directory(ies). you can see a complete list of supported encode formats by using the B<--formats> option. B<-r, --recursive> recursively scan and convert input folder(s) to destination format. B<-p, --preserve> when recursively converting a directory, preserve the input folders directory structure in the specified output directory. such as: pacpl --to ogg -r -p /home/mp3s --outdir /home/oggs in the example above, let's assume the directory structure was: =over 21 =item /home/mp3s/Alternative =item /home/mp3s/Alternative/New =item /home/mp3s/Rap =item /home/mp3s/Country =item /home/mp3s/Techno/ =back the output directory will now contain: =over 4 =item /home/oggs/Alternative =item /home/oggs/Alternative/New =item /home/oggs/Rap =item /home/oggs/Country =item /home/oggs/Techno =back with all files in each sub-folder converted to ogg. B<-o, --only> I only convert files matching extension. this option is useful when you have a directory or batch of files with mixed audio types and only need to convert one specific type. B<-k, --keep> do not re-encode files with extensions matching the destination extension. instead...copy them to the output folder, or skip to the next file. B<-j, --jobs> number of simultanious jobs to run at once. the default limit is set to 4 in pacpl.conf. You can modify this value on the fly using --jobs= or set it perminately in the configuration file =over 4 =item B<-f, --formats> show a list of supported encode/decode formats. =item B<-h, --help> show the short help menu. =item B<-l, --longhelp> display the complete list of options. =item B<--version> show version and licensing information. =back =head1 USER OPTIONS B<--defopts> I<1/0> to turn off default encoder options use --defopts 0. this option gives you more control when using the --eopts command. defopts is set to 1 by default. you can also toggle this option in /etc/pacpl/pacpl.conf. B<--eopts> I this option allows you to use encoder options not implemented by pacpl. an example would be: pacpl --to mp4 --eopts="-c 44100 -I 1,2" YourFile.mp3 B<--dopts> I this option allows you to use decoder options not implemented by pacpl. an example would be: pacpl --to mpc --dopts="--start 60" YourFile.ogg B<--outfile> I set the output file name to I. B<--outdir> I place all encoded files in I. B<--dryrun> show what would be done without actually converting anything. this is a good way to trouble shoot, or to see what would be done without actually touching your files. B<--overwrite> replace the output file if it already exists. B<--normalize> adjusts volume levels of audio files. B<--nopts> I this allows you to specify normalize options not implemented by pacpl B<--delete> remove source/input file after the conversion process has finished. B<--encoder> I specify an alternate encoder for the selected output file(s) you can see a list of supported encoders by using the following: pacpl --encoder I B<--decoder> I specify an alternate decoder for the selected input file(s) you can see a list of supported decoders by using the following: pacpl --decoder I B<-v, --verbose> show detailed information about the encoding process and what's actually being done. =head1 ENCODER OPTIONS B<--bitrate> I set the bitrate to I. default is 128. this option does not apply to all formats. B<--freq> I set the frequency to I. default is 44100. this option does not apply to all formats. B<--channels> I set the number of audio channels in the output file to I. this option does not apply to all formats. B<--effect> I see B(1). this option only applies to the following: AIFF, AU, SND, RAW, VOC, SMP, AVR, and CDR B<--fcomp> I set flac compression level to I. fastest -0, highest -8, default -2 =over 4 =item 1 = fast =item 2 = simple =item 3 = medium (default) =item 4 = high =item 5 = extra high, =back B<--acomp> I set ape compression level to I. =over 4 =item 1000 = fast =item 2000 = normal =item 3000 = high (default) =item 4000 = extra high =item 5000 = insane =back B<--oggqual> I set ogg quality level to I. -1, very low and 10 very high, default 3 B<--spxqual> I set speex quality level to I. 0-10, default 8 (use --bitrate when using ffmpeg/avconv as encoder) B<--aacqual> I set aac, mp4, m4a, or m4b quality level to I. default 300 B<--mpcqual> I set mpc/mpp quality level to I. =over 4 =item thumb low quality/internet, (typ. 58... 86 kbps) =item radio medium (MP3) quality, (typ. 112...152 kbps - default) =item standard high quality (dflt), (typ. 142...184 kbps) =item xtreme extreme high quality, (typ. 168...212 kbps) =back B<--ofmode> I set off/ofr/ofs compression mode to I. normal, extra, and extranew modes are recommended for general use. available options are: =over 4 =item fast =item normal (default) =item high =item extra =item best =item highnew =item extranew =item bestnew =back B<--ofopt> I set off/ofr/ofs optimization level to I. specify the optimization level in the engine. In order to achieve optimal compression at all sample types, sample rates, and audio content, the core compression engine has the possibility to find the optimal values for its parameters, at the cost of slightly increased compression time only. The default recommended value is fast. do not use normal (or even high or best) for this parameter unless encoding time does not matter and you want to obtain the smallest possible file for a given compression mode. The difference between the optimize levels fast and best (which is up to three times slower than fast) is very small, generally under 0.05%, but may be also larger in some rare cases. Note that the none optimize level is forced by the encoder to fast optimize level for the extra, best, highnew, extranew, and bestnew modes. available options are: =over 4 =item none =item fast (default) =item normal =item high =item best =back B<--bratio> I set bonk down sampling ratio. default 2 B<--bquanl> I set bonk quantanization level. default 1.0 B<--bpsize> I set bonk predictor size. default 128 =head1 TAGGING OPTIONS B tagging outside of the encoding process can only be performed on the following audio types: =over 4 =item MP3 =item OGG =item FLA =item FLAC =back B<--artist> I set artist information to I. B<--title> I set title information to I. B<--track> I set track information to I. B<--year> I set year/date information to I. B<--album> I set album information to I. B<--genre> I set genre information to I. B<--comment> I set comment information to I. B<--taginfo> I show tagging information for I. multiple files can be specified at once. =head1 RIPPING OPTIONS B<--rip> I rip selected tracks separated by comma or all from current disc. =over 4 =item pacpl --rip all --to flac =item pacpl --rip 1,3,9,15 --to flac =back B<--nocddb> disable cddb. use this option if you do not want tagging based on cddb. B<--noinput> disable cddb interactivity. this is enabled by default. B<--nscheme> I set naming scheme to I. default is %ar - %ti available options are: =over 4 =item %ar = artist =item %ti = song title =item %tr = track =item %yr = year =item %ab = album =back B --nscheme="(%tr)-%ti" B<--device> I set device to I. default is /dev/dvd B<--cdinfo> show cddb information for current disc. =head1 SEE ALSO =over 4 =item B(1) B(1) B(1) B(1) B(1) =item B(1) B(1) B(1) B(1) B(1) =item B(1) B(1) B(1) B(1) =item B(1) B(1) B(1) =item B(1) B(1) B(1) B(1) =item B(1) B(1) =back =head1 BUGS Report all bugs to Philip Lyons (vorzox@gmail.com) =head1 LICENSING This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . =head1 AUTHOR <<<<<<< HEAD Copyright (C) 2005-2021 Philip Lyons (vorzox@gmail.com) ======= Copyright (C) 2005-2019 Philip Lyons (vorzox@gmail.com) >>>>>>> cc4eb189828ef15228da02c14a39e484294126ec pacpl-code/install-sh0000755000175100017510000003325613527600265014140 0ustar viriivirii#!/bin/sh # install - install a program, script, or datafile scriptversion=2011-01-19.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 # Protect names problematic for `test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for `test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for `test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: pacpl-code/pacpl.conf0000644000175100017510000001034513527600265014074 0ustar viriivirii######################################################### # # Perl Audio Converter - Configuration File # ######################################################### ################################################## # Import User Modules # # # # by default this function is tured off. set to # # 1 to enable module loading. # # # # you can find an example in /etc/pacpl/modules # ################################################## IMPORTM = 0 ############################################################ # Default Normalize Options # # e.g.: --peak # # # # see 'man normalize' for a list of options # ############################################################ NOPTS = ########################### # Default Encoder Options # ########################### ##################################### # Audio Bitrate # # Default: 320 # voice = 56kbps/mono # fm/radio/tape = 112kbps # mp3 = 128kbps # hifi = 160kbps # cd = 192kbps # studio = 256kbps # high = 320kbps # BITRATE = 320 #################### # Sampling Frequency # FREQ = 44100 ######################## # Audio Channels # CHANNELS = 2 ############################### # Ogg quality level # # Sets encoding quality to n, between -1 (low) and 10 # (high). This is the default mode of operation, with # a default quality level of 3. Fractional quality # levels such as 2.5 are permitted. Normal quality # range is 0 - 10. # OGGQUAL = 10 ##################### # Speex quality level # # (0-10), default 8 # SPXQUAL = 10 ######################## # FLAC compression level # # 1-8 (0 = fastest & 8 = highest ) # FCOMP = 2 ###################################### # APE compression level # # fast: 1000 # normal: 2000 # high: 3000 # extra high: 4000 # insane: 5000 # ACOMP = 3000 ########################### # AAC/MP4/M4A quality level # AACQUAL = 100 ################### # MPC/MPP compression level # # thumb low quality/internet, (typ. 58... 86 kbps) # radio medium (MP3) quality, (typ. 112...152 kbps) # standard high quality (dflt), (typ. 142...184 kbps) # xtreme extreme high quality, (typ. 168...212 kbps) # insane extreme high quality, (typ. 232...268 kbps) # braindead extreme high quality, (typ. 232...278 kbps) # MPCQUAL = standard ########################## # OptimFrog (OFR/OFS) mode # OFMODE = normal ################################## # OptimFrog (OFR/OFS) optimization # OFOPT = fast ######################### # BONK downsampling ratio # BRATIO = 2 ######################### # BONK quantization level # BQUANL = 1.0 ##################### # BONK predictor size # BPSIZE = 128 ############################## # Default CD Ripping Options # ############################## # 1: use cddb # 0: disable cddb # USE_CDDB = 1 CDDB_HOST = freedb.freedb.org CDDB_PORT = 8880 # cddb or http CDDB_MODE = cddb # 1: ask user if more than one possibility # 0: no user interaction # CDDB_INPUT = 1 DEVICE = /dev/dvd ############################# ZENITY options for Gnome # ############################# # Output directory # # 1: prompt # 0: use input file directory # ZEN_DIR = 0 # Encoder options # # 1: prompt # 0: use default encoder options # ZEN_OPTS = 0 # Extra Options (preserve, recursive, etc) # # This applies to both gnome/kde plugins # # 1: prompt # 0: no prompt # EXTRA_OPTS = 0 ########################################### # KDIALOG options for Dolphin & Konqueror # ########################################### # Output directory # # 1: prompt # 0: use input file directory # KDE_DIR = 1 # Encoder options # # 1: prompt # 0: use default encoder options # KDE_OPTS = 1 ################################################## # Use default encoder options 1 = yes / 0 = false# ################################################## # DEFOPTS = 1 ################################################### # Set the number of proceess (jobs) you would like # to run simultaneously. You probably shouldn't # exceed the number of cores * 2. # JOBS = 4 pacpl-code/Makefile.in0000664000175100017510000005252314010545701014170 0ustar viriivirii# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Perl Audio Converter # # Copyright (C) 2005-2021 Philip Lyons (vorzox@gmail.com) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = . am__aclocal_m4_deps = $(top_srcdir)/aclocal/ax_prog_perl_modules.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in AUTHORS COPYING ChangeLog \ INSTALL NEWS README install-sh missing DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AFTEN = @AFTEN@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AVCONV = @AVCONV@ AWK = @AWK@ BLADEENC = @BLADEENC@ BONK = @BONK@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ # # Default KDE directory # DESTDIR = ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ FAAC = @FAAC@ FAAD = @FAAD@ FFMPEG = @FFMPEG@ FLAC = @FLAC@ GNOMEDIR = /usr GZIP = @GZIP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_DOLP = @INSTALL_DOLP@ INSTALL_KONQ = @INSTALL_KONQ@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ KDEDIR = /usr KDIALOG = @KDIALOG@ LA = @LA@ LAME = @LAME@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAC = @MAC@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MPCDEC = @MPCDEC@ MPCENC = @MPCENC@ MPLAYER = @MPLAYER@ NAUTILUS = @NAUTILUS@ NEMO = @NEMO@ OFF = @OFF@ OFR = @OFR@ OFS = @OFS@ OGGDEC = @OGGDEC@ OGGENC = @OGGENC@ OPUSDEC = @OPUSDEC@ OPUSENC = @OPUSENC@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PERL = @PERL@ POD2HTML = @POD2HTML@ # # Compiler tools definitions... # POD2MAN = @POD2MAN@ RM = @RM@ -f SET_MAKE = @SET_MAKE@ SHELL = /bin/sh SHORTEN = @SHORTEN@ SNDFILE = @SNDFILE@ SOX = @SOX@ SPEEXDEC = @SPEEXDEC@ SPEEXENC = @SPEEXENC@ STRIP = @STRIP@ TOOLAME = @TOOLAME@ TTAENC = @TTAENC@ TWOLAME = @TWOLAME@ VERSION = @VERSION@ WAVPACK = @WAVPACK@ WVUNPACK = @WVUNPACK@ ZENITY = @ZENITY@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_prefix_program = @ac_prefix_program@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ ACLOCAL_M4 = ./aclocal.m4 # # Modules & Documentation # DOCS = INSTALL README AUTHORS TODO NEWS ChangeLog COPYING LANG_MODS = po/* EXTRAS = extra/* # # Plugin directories # NAUTILUS_PLUGIN_DIR = plugins/gnome/nautilus NEMO_PLUGIN_DIR = plugins/gnome/nemo KDE_PLUGIN_DIR = plugins/kde # # Target KDE directories # KDE_INSTALL_DIR = $(DESTDIR)$(KDEDIR)/share/kde4/services NAUTILUS_INSTALL_DIR = $(DESTDIR)$(HOME)/.local/share/nautilus/scripts NEMO_INSTALL_DIR = $(DESTDIR)$(GNOMEDIR)/share/nemo/actions ICON_DIR = $(DESTDIR)$(GNOMEDIR)/share/icons # # Configuration files directories and other # CONF_DIR = $(DESTDIR)$(sysconfdir)/$(PACKAGE_NAME) PO_DIR = $(DESTDIR)$(pkgdatadir)/locale MOD_DIR = $(CONF_DIR)/modules DOC_DIR = $(DESTDIR)$(docdir) MAN_DIR = $(DESTDIR)$(mandir)/man1 EXTRA_DIR = $(CONF_DIR)/extra edit = sed \ -e 's|@pkgdatadir[@]|$(pkgdatadir)|g' \ -e 's|@sysconfdir[@]|$(sysconfdir)|g' all: all-am .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-am all-am: Makefile installdirs: install-exec: install-exec-am install-data: install-data-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean-am: clean-generic mostlyclean-am distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am am--refresh check check-am clean clean-generic \ cscopelist-am ctags-am dist dist-all dist-bzip2 dist-gzip \ dist-lzip dist-shar dist-tarZ dist-xz dist-zip distcheck \ distclean distclean-generic distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am .PRECIOUS: Makefile all : pacpl.1.gz pacpl: pacpl.in Makefile rm -f $@ $@.tmp $(edit) '$@.in' >$@.tmp mv $@.tmp $@ chmod +x $@ pacpl.1.gz : pacpl $(POD2MAN) $< | $(GZIP) -9 > $@ touch $@ install: all main install-plugins main: $(INSTALL) -d $(DESTDIR)$(bindir) $(INSTALL) -d $(CONF_DIR) $(INSTALL) -d $(PO_DIR) $(INSTALL) -d $(MOD_DIR) $(INSTALL) -d $(MAN_DIR) $(INSTALL) -d $(DOC_DIR) $(INSTALL) -d $(EXTRA_DIR) $(INSTALL) pacpl $(DESTDIR)$(bindir) $(INSTALL_DATA) pacpl.conf codecs.conf pacpl.png $(CONF_DIR) $(INSTALL_DATA) $(LANG_MODS) $(PO_DIR) $(INSTALL_DATA) pacpl.1.gz $(MAN_DIR) $(INSTALL_DATA) $(DOCS) $(DOC_DIR) $(INSTALL_DATA) $(EXTRAS) $(EXTRA_DIR) install-plugins: @INSTALL_KDE_TRUE@ $(INSTALL) -d $(KDE_INSTALL_DIR) @INSTALL_KDE_TRUE@ $(INSTALL) $(KDE_PLUGIN_DIR)/PACPL-Konvert $(DESTDIR)$(bindir) @INSTALL_KDE_TRUE@ $(INSTALL_DATA) $(KDE_PLUGIN_DIR)/pacpl.desktop $(KDE_INSTALL_DIR) @INSTALL_KDE_TRUE@ sed -i 's/KDE_DIR = 0/KDE_DIR = 1/' $(CONF_DIR)/pacpl.conf @INSTALL_KDE_TRUE@ sed -i 's/KDE_OPTS = 0/KDE_OPTS = 1/' $(CONF_DIR)/pacpl.conf @INSTALL_NAUTILUS_TRUE@ $(INSTALL) -d $(NAUTILUS_INSTALL_DIR) @INSTALL_NAUTILUS_TRUE@ $(INSTALL) $(NAUTILUS_PLUGIN_DIR)/PACPL-Convert $(NAUTILUS_INSTALL_DIR) @INSTALL_NEMO_TRUE@ $(INSTALL) -d $(NEMO_INSTALL_DIR) @INSTALL_NEMO_TRUE@ $(INSTALL) $(NEMO_PLUGIN_DIR)/PACPL-Convert $(NEMO_INSTALL_DIR) @INSTALL_NEMO_TRUE@ $(INSTALL_DATA) $(NEMO_PLUGIN_DIR)/pacpl.nemo_action $(NEMO_INSTALL_DIR) @INSTALL_NEMO_TRUE@ $(INSTALL_DATA) $(NEMO_PLUGIN_DIR)/pacpl.png $(ICON_DIR) @ENABLE_GNOME_NAUTILUS_TRUE@ sed -i 's/ZEN_DIR = 0/ZEN_DIR = 1/' $(CONF_DIR)/pacpl.conf @ENABLE_GNOME_NAUTILUS_TRUE@ sed -i 's/ZEN_OPTS = 0/ZEN_OPTS = 1/' $(CONF_DIR)/pacpl.conf @ENABLE_GNOME_NEMO_TRUE@ sed -i 's/ZEN_DIR = 0/ZEN_DIR = 1/' $(CONF_DIR)/pacpl.conf @ENABLE_GNOME_NEMO_TRUE@ sed -i 's/ZEN_OPTS = 0/ZEN_OPTS = 1/' $(CONF_DIR)/pacpl.conf clean: $(RM) pacpl.1.gz distclean: clean $(RM) config.log $(RM) config.status $(RM) Makefile $(RM) pacpl find . -name '*~' -exec $(RM) '{}' \; uninstall: uninstall-plugins $(RM) $(DESTDIR)$(bindir)/pacpl $(RM) $(MAN_DIR)/pacpl.1.gz $(RM) -r $(CONF_DIR)/pacpl $(RM) -r $(DOC_DIR)/pacpl $(RM) -r $(DESTDIR)$(pkgdatadir) uninstall-plugins: @INSTALL_KDE_TRUE@ $(RM) $(KDE_INSTALL_DIR)/pacpl.desktop @INSTALL_KDE_TRUE@ $(RM) $(DESTDIR)$(bindir)/PACPL-Konvert @INSTALL_NAUTILUS_TRUE@ $(RM) $(NAUTILUS_INSTALL_DIR)/PACPL-Convert @INSTALL_NEMO_TRUE@ $(RM) $(NEMO_INSTALL_DIR)/PACPL-Convert @INSTALL_NEMO_TRUE@ $(RM) $(NEMO_INSTALL_DIR)/pacpl.nemo_action @INSTALL_NEMO_TRUE@ $(RM) $(ICON_DIR)/pacpl.png # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: pacpl-code/ChangeLog0000644000175100017510000002540414010551310013662 0ustar viriivirii================= [**** 6.1.3 ****] ================= % fixed the following thanks to Matteo Cypriani (mcy@lm7.fr) % Fix FLAC header decoding * updated mod-install-debian.sh in extra/ to use apt * other small changes and bug fixes + added vp9 and mpeg4 video to audio conversion ================= [**** 6.1.2 ****] ================= * updated version to 6.1.2 * updated mod-install-debian.sh in extra/ % fixed the following thanks to Reuben Thomas (rrt@sc3d.org) % rename ChangeLog.txt back to ChangeLog % fixed typo in formats DFS to DSF % change FLAC tag module from Audio::Scan back to Audio::FLAC::Header + this version has been tested and now works on Chromebooks with crostini ================= [**** 6.1.1 ****] ================= % incorporated patches from Paulo Marcel Coelho Aragao - added ability to decode dsf files - implemented String::ShellQuote - patch to show total failures (if any) as exit code % renamed mod-install-ubuntu.sh to mod-install-debian.sh % renamed Changelog.txt back to Changelog + added String::ShellQuote to mod-install scripts in extra ================= [**** 6.1.0 ****] ================= * updated version to 6.1.0 % fixed kdialog ouput directory space issue thanks to Jeremy Rehbaum (JRehbaum@juno.com) % incorporated patches from Paulo Marcel Coelho Aragão - fix blank WMA tags - fix decoder not working for WMA - fix overwrite check to act more appropriately - fix DEFOPTS = 0 to work as intended + added alac-decoder support for .mp4 files + added .gitignore % fixed handling of m4a (AAC) codec handling % incoporated patches from Reuben Thomas (rrt@sc3d.org) - fix installaton under different prefix and/or DESTDIR - fix hardwired pathes in pacpl %note: with above patches pacpl is now pacpl.in which will be renamed after configure % updated Makefile.am to remove pacpl with "make distclean" ================= [**** 5.1.0 ****] ================= * updated version to 5.1.0 + added patches directory. below updates and incorporations are included. % incorporated the following patches Matteo Cypriani (mcy@lm7.fr) - typos - configure exit - enforce outdir when preserve is utilized - multiple input source decode * updated README.module documentation thanks to Cristian Greco ================= [**** 5.0.2 ****] ================ %fixed regex to detect directory names with spaces thanks to Dmitry Klimov ================= [**** 5.0.1 ****] ================= [01-04-2014] * updated ogg vorbis & spx tags to use TRACKNUMBER instead of TRACK % fixed coverting to "wma, ra, & mmf" thanks to bug report by Timothy E. Harris % fixed missing semicolon bug in nemo/nautilus/thunar script % fixed overwrite message to show output file, not source. % fixed Thunar PACPL-Konvert script thanks to Timothy E. Harris - removed support for .src and .ram extenions (no longer supported) ================= [**** 5.0.0 ****] ================= [11-1-2013] ** 5.0.0 Official Stable Release ** * minor code optimizations/changes * updated README program description % fixed amr encoding % fixed mmf, ra, wma, other codecs supported by ffmpeg + added a few obscure audio formats supported by sox/sndfile-convert including: rf64 (sndfile) 8svx amb dat dvms f32 f64 fssd gsrt hcom txw vms [10-12-2013] % fixed encoding to .mp4/.m4a using ffmpeg/avconv % fixed configure error when enabling nemo - removed use of Ogg::Vorbis::Header. tag writing for oga and ogg is now done via vorbiscomment (part of vorbis-tools) + added oga extension for ogg vorbis audio + added ogv audio extract support + added webm audio extract support * updated oga/ogg tag reading to use Audio::Scan [10-10-2013] % changed the kde plugin to popup a combobox for selecting the output format to keep things somewhat consistent with the rest of the platforms. % flip-flopped on the use 5.18.0 statement. seems other (*buntu*) distros consider that release "experimental". worked around it with a simple: no if $] >= 5.018, warnings => "experimental::smartmatch"; % re-wrote preserve directory function. it actually works again... + added parallel processing. about time we put those cores to use! + added use of Parallel::ForkManager module you can install it via: 1) perl -MCPAN -e 'install Parallel::ForkManager' 2) sudo apt-get install libparallel-forkmanager-perl + added option -j,--jobs option to specify concurrent jobs to process + added JOBS varible in pacpl.conf. default is set to 4 + added jobs description to locale files (need translations!) + added support for the Thunar file manager (tested under Xbuntu 13.04) see plugins/gnome/thunar/INSTALL for more information [10-1-2013] + added the use 5.18.0; requriement to pacpl. to those using earlier versions, you can remove this line but YMMV. % fixed configure script to work properly when different gui dialog / file managers are installed - removed support for lpac/pac (obsolete) - removed support for gogo (obsolete) [9-30-2013] + added GNOMEDIR variable to the Makefile in case your gnome installation is not located in the default /usr directory * updated directory structure for plugins * updated configure script to use the following: --enable-kde (for the KDE service menu) --enable-nautilus (for the nautilus script) --enable-nemo (for the nemo action script) the kde and nautilus/nemo options cannot be used together. you can however use both nemo and nautilus (assuming you have both installed) by default none of the options are enabled - removed install.sh & README for nemo script directory [9-24-2013] # bumped version to 5.0.0. with the amount of time passed since the last release and all the feature additons/changes I feel its warranted: For now we're still in the nightly/pre-release testing stage + GNOME Support Added: Note: Tested and tailored for 13.04 Unity, it will however work on earlier versions and other debian based distros using the Gnome desktop which have zenity & notify-send installed + added PACPL-Convert (Nautilus/Nemo) script + added support for running the script through Nemo on Linux Mint or other distributions that use that file manager tested on Linux Mint 15 "Olivia" Cinnamon (64-bit) - removed use of Audio::WMA - removed use of MP4::Info - removed use of Audio::Musepack - removed use of Audio::APETags the above four modules have been replaced by Audio::Scan for reading the tags from the various formats including flac. + added use of perl module Audio::Scan + added support for reading .ape tags + added support for TAK audio format (decode only) + added cdparanoia to mod-install-ubuntu.sh as part of the basic tools + added new string to .po files (gui_outdir) - **translators needed** % fixed changed FLAC tag DESCRIPTION to COMMENT % fixed FLAC upper/lower case issue by reading tags with Audio::Scan % fixed cd ripping - $out_dir should be $outdir in order run correctly % fixed encoding to .mp4 & .m4a. Had same issue as Musepack files. * updated configure for gnome & kde - neither is installed by default. you will need to --enable-kde or --enable-gnome if you would like to have eiher of the plugins installed. * updated extra/mod-install*.sh to reflect module changes * updated %run (put all codedcs in alphabetical order) a little house cleaning.. * updated default bitrate in pacpl.conf to 192kbps for formats that support it * updated pacpl.conf - changed default disc device to /dev/dvd & modified all lang/*.po files to reflect change. - removed RAM from codecs.conf (has no encoder) [9-21-2013] + added --enable-kde (adds Konqueror/Dolphin pacpl.desktop) + added --enable-gnome (nautilus script in the works) ***not included...yet*** + added support for amr audio format + added support for 3gp audio format + added support for 3g2 audio format = Note: The above three formats only work if your version of ffmpeg/avconv supports them. see extra/ffmpeg-conf.sh / extra/libav-conf.sh (requires libopencore-amr) % fixed spacing error in codecs.conf for DTS - removed --enable-konqueror & --enable-dolphin options [9-18-2013] + added ffmpeg-conf.sh and libav-conf.sh to extra/ dir. this shows what libs and options are needed for full support for pacpl + added support for libav (avconv) encoder/decoder - ffmpeg fork + added ffmpeg/avconv support to various formats as available encoder/decoder + added support for adts audio format % fixed mpc tagging using the new SV7/SV8 releases. (options have to come BEFORE the input and output file) % fixed all ffmpeg encode instances to apply $eopts (user options) when --defopts=0 to the output file as opposed to the input. * updated codecs.conf to include new formats that can be configured * updated extra/README.extra * update Makefile.am * use wildcard * for LANG_MODS instead of listing them individually * remove -t flag for $(INSTALL_DATA) [9-14-2013] * updated extra/mod-install.sh (removed Switch module) * updated extra/mod-install-kubuntu.sh (renamed to mod-install-ubuntu.sh) - removed liboggvorbis-perl + added various required modules/libs for Ogg::Vorbis::Header + added section to install basic encoders/decoders + added section to fix apt repository /var/lib/apt/lists to be able to install restricted-extras package. = tested in both Ubuntu & Kubuntu 13.04 Note: When running the script choose the default [yes] for all prompts [9-12-2013] + added support for lowercase tags when writing/reading flac metadata + added git repository (https://github.com/vorzox/pacpl) + added support for dcaenc (dts) encoder (requires multi-channel wav as input) + added support for dts (default encoder/decoder=ffmpeg) [9-10-2013] + added support for mp3HD audio format + added support for aften ac3 encoder + added support for twolame mp2 encoder + added support for opus audio format + added support for off (OptimumFrog - Float) audio format + added support for TwinVQ (vqf) audio format (decode only) + added Greek/Hellenic translation thanks to Evangelos Apostolakos + added required module CDDB (this goes along with CDDB_get) - removed amarok support - removed pacpl gui KMDR - removed support for d3lphin (obsolete) - removed --enable-all configuration option (obsolete) - removed deprecated use of Switch in favor of given-when-default * updated README to include new/updated URLs for applications * updated website pacpl.sourceforge.net (vorzox.wix.com/pacpl) * update Makefile.am and configure.ac to comply with current standards * updated slack-desc: changes layout and includes new formats % fixed ffmpeg ac3 encoding. specified bitrate was in bits not kilobits % fixed ffmpeg tag handling...again...thanks to Dave Allen Barker Jr. % fixed pacpl.desktop to include missing formats % fixed return 1 when encoding fails % fixed added MP3::Tag->config(write_v24 => 'YES') to allow updating & modifying of newer ID3v2 tags. pacpl-code/NEWS0000644000175100017510000000000013527600265012610 0ustar viriiviriipacpl-code/INSTALL0000644000175100017510000003660013527600265013161 0ustar viriiviriiInstallation Instructions ************************* Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without warranty of any kind. Basic Installation ================== Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular user, and only the `make install' phase executed with root privileges. 5. Optionally, type `make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a regular user, particularly if the prior `make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 7. Often, you can also type `make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. 8. Some packages, particularly those that use Automake, provide `make distcheck', which can by used by developers to test that all other targets like `make install' and `make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. This is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. In general, the default for these options is expressed in terms of `${prefix}', so that specifying just `--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the correct locations to `configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the `make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each affected directory. For example, `make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of `${prefix}'. Any directories that were specified during `configure', but not in terms of `${prefix}', must each be overridden at install time for the entire installation to be relocated. The approach of makefile variable overrides for each directory variable is required by the GNU Coding Standards, and ideally causes no recompilation. However, some platforms have known limitations with the semantics of shared libraries that end up requiring recompilation when using this method, particularly noticeable in packages that use GNU Libtool. The second method involves providing the `DESTDIR' variable. For example, `make install DESTDIR=/alternate/directory' will prepend `/alternate/directory' before all installation names. The approach of `DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even when some directory options were not specified in terms of `${prefix}' at `configure' time. Optional Features ================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Some packages offer the ability to configure how verbose the execution of `make' will be. For these packages, running `./configure --enable-silent-rules' sets the default to minimal output, which can be overridden with `make V=1'; while running `./configure --disable-silent-rules' sets the default to verbose, which can be overridden with `make V=0'. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. HP-UX `make' updates targets which have the same time stamps as their prerequisites, which makes it generally unusable when shipped generated files such as `configure' are involved. Use GNU `make' instead. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" On Solaris, don't put `/usr/ucb' early in your `PATH'. This directory contains several dysfunctional programs; working variants of these programs are available in `/usr/bin'. So, if you need `/usr/ucb' in your `PATH', put it _after_ `/usr/bin'. On Haiku, software installed for all users goes in `/boot/common', not `/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf bug. Until the bug is fixed you can use this workaround: CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. pacpl-code/COPYING0000644000175100017510000010451313527600265013162 0ustar viriivirii GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . pacpl-code/patches/0000755000175100017510000000000014010543074013542 5ustar viriiviriipacpl-code/patches/configure-exit0.patch0000644000175100017510000000074013527600265017604 0ustar viriiviriiDescription: Have configure script quit with exit code 0 Author: Matteo Cypriani Origin: vendor Last-Update: 2016-10-13 --- a/configure +++ b/configure @@ -5381,4 +5381,4 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: make && make install" >&5 $as_echo "$as_me: make && make install" >&6;} -exit 1 +exit 0 --- a/configure.ac +++ b/configure.ac @@ -211,4 +211,4 @@ AC_MSG_NOTICE() AC_MSG_NOTICE([make && make install]) -exit 1 \ No newline at end of file +exit 0 pacpl-code/patches/fix_wma_tag_names.patch0000644000175100017510000000372313527600265020250 0ustar viriiviriidiff --git a/pacpl.in b/pacpl.in index 5b9f7c2..341e680 100644 --- a/pacpl.in +++ b/pacpl.in @@ -2965,13 +2965,13 @@ when (/^ape$|^mpc$|^mpp$|^wv$/) { when (/^wma$/) { my $wma_tag = $tag_module->scan_tags($in_file)->{tags}; - $tag_name{title} = $wma_tag->{TITLE} if $wma_tag->{TITLE}; - $tag_name{track} = $wma_tag->{TRACKNUMBER} if $wma_tag->{TRACKNUMBER}; - $tag_name{artist} = $wma_tag->{AUTHOR} if $wma_tag->{AUTHOR}; - $tag_name{album} = $wma_tag->{ALBUMTITLE} if $wma_tag->{ALBUMTITLE}; - $tag_name{comment} = $wma_tag->{DESCRIPTION} if $wma_tag->{DESCRIPTION}; - $tag_name{year} = $wma_tag->{YEAR} if $wma_tag->{YEAR}; - $tag_name{genre} = $wma_tag->{GENRE} if $wma_tag->{GENRE}; + $tag_name{title} = $wma_tag->{Title} if $wma_tag->{Title}; + $tag_name{track} = $wma_tag->{'WM/TrackNumber'} if $wma_tag->{'WM/TrackNumber'}; + $tag_name{artist} = $wma_tag->{'WM/AlbumArtist'} if $wma_tag->{'WM/AlbumArtist'}; + $tag_name{album} = $wma_tag->{'WM/AlbumTitle'} if $wma_tag->{'WM/AlbumTitle'}; + $tag_name{comment} = $wma_tag->{'WM/Description'} if $wma_tag->{'WM/Description'}; + $tag_name{year} = $wma_tag->{'WM/Year'} if $wma_tag->{'WM/Year'}; + $tag_name{genre} = $wma_tag->{'WM/Genre'} if $wma_tag->{'WM/Genre'}; return 0; } pacpl-code/patches/fix_config_value_0.patch0000644000175100017510000000070613527600265020324 0ustar viriiviriidiff --git a/pacpl.in b/pacpl.in index 5c28750..436e140 100644 --- a/pacpl.in +++ b/pacpl.in @@ -175,7 +175,7 @@ if ($conf_file and -e $conf_file) { foreach (@conf_opts) { chomp; my ($k, $v) = split(/\s*=\s*/); - $config{$k} = $v if exists($config{$k}) and $v; + $config{$k} = $v if exists($config{$k}) and length($v); say "$lang{debug} $k = $v" if $debug == 1 and exists($config{$k}); } } pacpl-code/patches/80-fix_enforce_outdir_switch_if_p_switch_is_used.patch0000644000175100017510000000124113527600265026345 0ustar viriiviriiDescription: If the user use the --preserve flag, he must use the --outdir flag too, we enforce that. Author: Maxime Chatelle Last-Updated: 2014-10-29 Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=697519 Forwarded: no Index: git/pacpl =================================================================== --- git.orig/pacpl 2014-10-29 11:18:15.544344979 +0100 +++ git/pacpl 2014-10-29 11:27:13.592321550 +0100 @@ -352,6 +352,10 @@ 'cdinfo' => \$cdinfo, ); +if (defined($preserve) && !defined($outdir)) { + die "You must specify --outdir when you use --preserve option. See man page.\n"; +} + $silent = '' if $verbose; my $opts; pacpl-code/patches/fix_destination_always_overwritten.patch0000644000175100017510000000103613527600265024012 0ustar viriiviriidiff --git a/pacpl.in b/pacpl.in index 341e680..3c16141 100644 --- a/pacpl.in +++ b/pacpl.in @@ -2343,7 +2343,7 @@ sub proc_files { $encoder = $run{$to}{DEFAULT_ENCODER} if not $my_encoder; $decoder = $run{$if}{DEFAULT_DECODER} if not $my_decoder; - if (-e "$file.$to" and not $overwrite) { + if (-e "$dir/$file.$to" and not $overwrite) { pnotice("overwrite","$file.$to",1); $total_failed++; next; pacpl-code/patches/typos.patch0000644000175100017510000000270513527600265015755 0ustar viriiviriiDescription: Fixes some typos in the manpage Author: Matteo Cypriani Origin: vendor Last-Update: 2016-10-13 --- a/pacpl +++ b/pacpl @@ -2384,7 +2384,7 @@ undef(@file); } -# process directorys and push all to @file arrary +# process directories and push all to @file arrary sub proc_dirs { if (@dir) { @@ -3569,19 +3569,19 @@ Parallel Processing, a CD ripping function with CDDB support, batch conversion, tag preservation for most supported formats, independent tag reading & writing, -service menus for KDE Dolphin/Konqueror, Gnome Nautilus script, and action +service menus for KDE Dolphin/Konqueror, GNOME Nautilus script, and action scripts for Nemo/Thunar are also provided. =head1 OPTIONS B<-t, --to> I -set encode format for the input file(s) or directory(s). you can see a +set encode format for the input file(s) or directory(ies). you can see a complete list of supported encode formats by using the B<--formats> option. B<-r, --recursive> -recursively scan and convert input folder(s) to desination format. +recursively scan and convert input folder(s) to destination format. B<-p, --preserve> @@ -3626,7 +3626,7 @@ B<-o, --only> I -only convert files matching extenstion. this option is useful when you have +only convert files matching extension. this option is useful when you have a directory or batch of files with mixed audio types and only need to convert one specific type. pacpl-code/patches/flac_decoding.patch0000664000175100017510000000162314010536045017330 0ustar viriiviriiDescription: Fix FLAC header decoding Converting from FLAC failed because the header decoding used the wrong method name from Audio::FLAC::Header. Author: Matteo Cypriani Origin: vendor Forwarded: Philip Lyons Last-Update: 2021-01-08 --- a/pacpl.in +++ b/pacpl.in @@ -2993,7 +2993,8 @@ } when (/^flac$|^fla$/) { - my $flac_tag = Audio::FLAC::Header->scan_tags($in_file)->{tags}; + my $flac_file = Audio::FLAC::Header->new($in_file); + my $flac_tag = $flac_file->tags(); $tag_name{title} = $flac_tag->{TITLE} if $flac_tag->{TITLE}; $tag_name{track} = $flac_tag->{TRACKNUMBER} if $flac_tag->{TRACKNUMBER}; pacpl-code/patches/30_readme_module.patch0000644000175100017510000000251713527600265017704 0ustar viriiviriiAuthor: Cristian Greco Description: Better documentation for README.module (in particular, specify where to install user modules). Index: git/extra/README.module =================================================================== --- git.orig/extra/README.module 2014-10-29 10:58:38.608397451 +0100 +++ git/extra/README.module 2014-10-29 11:06:03.428377620 +0100 @@ -1,8 +1,14 @@ USER MODULES: -The best way to incorporate you own module is to copy the sample.m -to a new file and change the various values accordinly. If you're -familiar with Perl and hashes, then writing your own shouldn't be a +You can use modules to extend pacpl conversion features adding new supported +file formats. + +The best way to incorporate you own module is to copy the sample.m to a new +file and change the various values accordingly. Then place the module in +/etc/pacpl/modules and it will be automatically detected next time you run +pacpl. + +If you're familiar with Perl and hashes, then writing your own shouldn't be a problem. Wild card %i will be the input file, and wild card %o will be @@ -11,7 +17,5 @@ ESTR = string used to encode the temporary .wav file DSTR = string used to decode to the temporary .wav file - - It should be noted that for the time being --dopts and --eopts will no longer work with imported codecs. pacpl-code/patches/0001-Fix-installation-under-different-prefix-and-or-DESTD.patch0000644000175100017510000000540513527600265026773 0ustar viriiviriiFrom 3f7aa5a851ef842d1d38d0f37db7dc21e60df3b8 Mon Sep 17 00:00:00 2001 From: Reuben Thomas Date: Mon, 22 Jan 2018 13:11:43 +0000 Subject: [PATCH 1/2] Fix installation under different --prefix and/or DESTDIR Use DESTDIR consistently. Use sysconfdir and pkgdatadir to track user-configured prefix. Remove unnecessary re-definitions of automake variables from Makefile.am. --- Makefile.am | 21 ++++----------------- Makefile.in | 11 ++++------- 2 files changed, 8 insertions(+), 24 deletions(-) diff --git a/Makefile.am b/Makefile.am index f52a21e..d3506f1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -65,23 +65,10 @@ RM = @RM@ -f SHELL = /bin/sh # -# Configured directories... -# - -prefix = @prefix@ -exec_prefix = @exec_prefix@ -bindir = @bindir@ -datarootdir = @datarootdir@ -includedir = @includedir@ -libdir = @libdir@ -mandir = @mandir@ -docdir = @docdir@ - -# # Configuration files directories and other # -CONF_DIR = $(DESTDIR)/etc/$(PACKAGE_NAME) -PO_DIR = $(DESTDIR)/usr/share/pacpl/locale +CONF_DIR = $(DESTDIR)$(sysconfdir)/$(PACKAGE_NAME) +PO_DIR = $(DESTDIR)$(pkgdatadir)/locale MOD_DIR = $(CONF_DIR)/modules DOC_DIR = $(DESTDIR)$(docdir) MAN_DIR = $(DESTDIR)$(mandir)/man1 @@ -157,7 +144,7 @@ uninstall: uninstall-plugins $(RM) $(MAN_DIR)/pacpl.1.gz $(RM) -r $(CONF_DIR) $(RM) -r $(DOC_DIR) - $(RM) -r $(DESTDIR)/usr/share/pacpl + $(RM) -r $(DESTDIR)$(pkgdatadir) uninstall-plugins: if INSTALL_KDE @@ -173,4 +160,4 @@ if INSTALL_NEMO $(RM) $(NEMO_INSTALL_DIR)/PACPL-Convert $(RM) $(NEMO_INSTALL_DIR)/pacpl.nemo_action $(RM) $(ICON_DIR)/pacpl.png -endif \ No newline at end of file +endif diff --git a/Makefile.in b/Makefile.in index 04dbeb4..ff102dc 100644 --- a/Makefile.in +++ b/Makefile.in @@ -269,13 +269,10 @@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ - -# -# Configured directories... -# prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -311,8 +308,8 @@ ICON_DIR = $(DESTDIR)$(GNOMEDIR)/share/icons # # Configuration files directories and other # -CONF_DIR = $(DESTDIR)/etc/$(PACKAGE_NAME) -PO_DIR = $(DESTDIR)/usr/share/pacpl/locale +CONF_DIR = $(DESTDIR)$(sysconfdir)/$(PACKAGE_NAME) +PO_DIR = $(DESTDIR)$(pkgdatadir)/locale MOD_DIR = $(CONF_DIR)/modules DOC_DIR = $(DESTDIR)$(docdir) MAN_DIR = $(DESTDIR)$(mandir)/man1 @@ -698,7 +695,7 @@ uninstall: uninstall-plugins $(RM) $(MAN_DIR)/pacpl.1.gz $(RM) -r $(CONF_DIR) $(RM) -r $(DOC_DIR) - $(RM) -r $(DESTDIR)/usr/share/pacpl + $(RM) -r $(DESTDIR)$(pkgdatadir) uninstall-plugins: @INSTALL_KDE_TRUE@ $(RM) $(KDE_INSTALL_DIR)/pacpl.desktop -- 2.7.4 pacpl-code/patches/0002-Fix-hardwired-installation-paths-in-pacpl.patch0000644000175100017510000120434013527600265025170 0ustar viriiviriiFrom c497331621c0a6c128169945f67b552e81ab539f Mon Sep 17 00:00:00 2001 From: Reuben Thomas Date: Mon, 22 Jan 2018 13:21:55 +0000 Subject: [PATCH 2/2] Fix hardwired installation paths in pacpl --- Makefile.am | 10 + configure | 16 +- configure.ac | 2 +- pacpl | 4034 ---------------------------------------------------------- pacpl.in | 4034 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 4059 insertions(+), 4037 deletions(-) delete mode 100755 pacpl create mode 100755 pacpl.in diff --git a/Makefile.am b/Makefile.am index d3506f1..ee5503b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -74,8 +74,18 @@ DOC_DIR = $(DESTDIR)$(docdir) MAN_DIR = $(DESTDIR)$(mandir)/man1 EXTRA_DIR = $(CONF_DIR)/extra +edit = sed \ + -e 's|@pkgdatadir[@]|$(pkgdatadir)|g' \ + -e 's|@sysconfdir[@]|$(sysconfdir)|g' + all : pacpl.1.gz +pacpl: pacpl.in Makefile + rm -f $@ $@.tmp + $(edit) '$@.in' >$@.tmp + mv $@.tmp $@ + chmod +x $@ + pacpl.1.gz : pacpl $(POD2MAN) $< | $(GZIP) -9 > $@ touch $@ diff --git a/configure b/configure index 49a871d..0423607 100755 --- a/configure +++ b/configure @@ -582,7 +582,7 @@ PACKAGE_BUGREPORT='' PACKAGE_URL='' ac_default_prefix=/usr -ac_unique_file="pacpl" +ac_unique_file="pacpl.in" ac_subst_vars='LTLIBOBJS LIBOBJS DESTDIR @@ -687,6 +687,7 @@ infodir docdir oldincludedir includedir +runstatedir localstatedir sharedstatedir sysconfdir @@ -758,6 +759,7 @@ datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' +runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' @@ -1010,6 +1012,15 @@ do | -silent | --silent | --silen | --sile | --sil) silent=yes ;; + -runstatedir | --runstatedir | --runstatedi | --runstated \ + | --runstate | --runstat | --runsta | --runst | --runs \ + | --run | --ru | --r) + ac_prev=runstatedir ;; + -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ + | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ + | --run=* | --ru=* | --r=*) + runstatedir=$ac_optarg ;; + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ @@ -1147,7 +1158,7 @@ fi for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ - libdir localedir mandir + libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. @@ -1300,6 +1311,7 @@ Fine tuning of the installation directories: --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] diff --git a/configure.ac b/configure.ac index 281f31f..887f580 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_SUBST(KDEDIR) AC_PREFIX_DEFAULT(/usr) AC_PREFIX_PROGRAM(pacpl) -AC_CONFIG_SRCDIR(pacpl) +AC_CONFIG_SRCDIR(pacpl.in) AC_PROG_INSTALL diff --git a/pacpl b/pacpl deleted file mode 100755 index 2ad3b74..0000000 --- a/pacpl +++ /dev/null @@ -1,4034 +0,0 @@ -#!/usr/bin/perl -# -# Perl Audio Converter -# -# Copyright (C) 2005-2017 Philip Lyons (vorzox@gmail.com) -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -use strict; -use warnings; -use Getopt::Long; -use File::Basename; -use File::Find; -use File::Spec::Functions qw(rel2abs); -use Parallel::ForkManager; - -use feature qw(switch say); - -no if $] >= 5.018, warnings => "experimental::smartmatch"; - -# Tagging modules -use MP3::Tag; -use Audio::FLAC::Header; -use Audio::Scan; - -# CDDB module -use CDDB_get qw(get_cddb); - -# non-encoder/decoder related options -my -( - $to, - $recursive, - $preserve, - $rip, - $help, - $longhelp, - $verbose, - $verinfo, - $dryrun, - $delete, - $keep, - $overwrite, - $formats, - $topdir, - $only, - $first_run, - - @file, - @dir, - - %run, - %lang, -); - -my $silent = "> /dev/null 2>&1"; - -# tagging options -my -( - $title, - $track, - $artist, - $album, - $comment, - $year, - $genre, - $taginfo, -); - -# name, version & icon information -my $name = "Perl Audio Converter"; -my $version = "5.1.0"; -my $icon_path = "/etc/pacpl/pacpl.png"; - -# If these options are toggled, messages/errors will be displayed -# via kdialog or zenity/notify-send (depending on environment) -my ($gui, $kde, $gnome); - -# Debugging (for developer use only) -my $debug = 0; - -# default configuration. -my %config = ( - - IMPORTM => 0, - JOBS => 4, - - DEFOPTS => 1, - EOPTS => '', - DOPTS => '', - NOPTS => '', - - BITRATE => 128, - FREQ => 44100, - CHANNELS => 2, - EFFECT => '', - FCOMP => 2, - PCOMP => 3, - ACOMP => 3000, - OGGQUAL => 3, - SPXQUAL => 8, - AACQUAL => 100, - MPCQUAL => 'radio', - OFMODE => 'normal', - OFOPT => 'fast', - BRATIO => 2, - BQUANL => 1.0, - BPSIZE => 128, - - USE_CDDB => 1, - CDDB_HOST => 'freedb.freedb.org', - CDDB_PORT => 8880, - CDDB_MODE => 'cddb', - CDDB_INPUT => 1, - DEVICE => '/dev/dvd', - NSCHEME => '%ar - %ti', - - ZEN_DIR => 1, - ZEN_OPTS => 1, - KDE_DIR => 1, - KDE_OPTS => 1, - - ); - -# location of configuration file -my $conf_path = "/etc/pacpl"; -my $po_dir = "/usr/share/pacpl/locale"; -my $mod_dir = "$conf_path/modules"; - -my $conf_file; - -# load the appropriate locale file -load_lang(); - -# try to load configuration file in this order... -my @conf_locations = ( - "$ENV{HOME}/.pacplrc", # Local - "$conf_path/pacpl.conf", # Global - "$ENV{PWD}/pacpl.conf", # Current Directory - ); - -# try to load conf file from one of the above locations -foreach my $i (@conf_locations) { - if (not $conf_file and -e $i) { - $conf_file = $i; - say "$lang{debug} $lang{loaded_config} $conf_file" if $debug == 1; - } -} - -say "$lang{no_config}" if not $conf_file; - -# open config file. -if ($conf_file and -e $conf_file) { - - open(CONF, "$conf_file") or die "$lang{opening_file} $conf_file - $!\n"; - - my @conf_opts = ; - @conf_opts = grep(!/^#|^$/, @conf_opts); - - close(CONF); - - # now read config file options and change default values accordingly. - foreach (@conf_opts) { - chomp; - my ($k, $v) = split(/\s*=\s*/); - $config{$k} = $v if exists($config{$k}) and $v; - say "$lang{debug} $k = $v" if $debug == 1 and exists($config{$k}); - } -} - -my $codecs_conf = "$conf_path/codecs.conf"; - -# set default encoders/decoders -sub load_codecs { - - open(CODECS, "$codecs_conf") or die "$lang{opening_file} $codecs_conf - $!\n"; - - my @codecs = ; - @codecs = grep(!/^$|^#/, @codecs); - @codecs = grep(s/^\s*|\s*$//, @codecs); - - close(CODECS); - - foreach (@codecs) { - - chomp; - my ($k, $v) = split(/\s*=\s*/); - my ($e, $d) = split(/,/, $v); - - $k =~ tr/A-Z/a-z/; - - $run{$k}{DEFAULT_ENCODER} = $e if (exists($run{$k}{DEFAULT_ENCODER})); - $run{$k}{DEFAULT_DECODER} = $d if (exists($run{$k}{DEFAULT_DECODER})); - } -} - -# load po file and store in %lang hash -sub load_lang { - - my $po = "$po_dir/$ENV{LANG}.po"; - $po =~ s/\.UTF-8//i if $po =~ /UTF-8/i; - $po =~ s/\.utf8//i if $po =~ /utf8/i; - $po =~ s/_\w+// if not -e $po; - $po = "$po_dir/en_US.po" if not -e $po; - - open(LANG, "< $po") or die "error: could not open - $po\n$!\n"; - - my @data = ; - @data = grep(!/^#|^$/, @data); - - close(LANG); - - foreach (@data) { - chomp; - s/=/__EQ__/; - my ($k, $v) = split(/\s*__EQ__\s*/, $_); - $lang{$k} = $v; - } - -} - -my $banner = 1; - -# print error messages -sub perror { - my ($key, $msg) = @_; - say "$name - $version\n"; - say "$lang{error}: $lang{$key} $msg" . "\n"; - system("kdialog --title \"$name\" --error \"$lang{error}: $lang{$key} $msg\" &") if $gui and $kde; - system("zenity --title \"$name\" --error \"$lang{error}: $lang{$key} $msg\" &") if $gui and $gnome; - die "$lang{seek_help}\n"; -} - -# print notices/warnings -sub pnotice { - - my ($key, $msg, $nm) = @_; - - say "$name - $version\n" if $banner == 1; - print "$lang{$key} $msg"; - say '' if $nm == 1; - say "\n" if $nm == 2; - - $banner = 0; -} - -# defaults for user variables. -my $outfile; -my $outdir; -my $defopts = $config{DEFOPTS}; -my $eopts = $config{EOPTS}; -my $dopts = $config{DOPTS}; -my $nopts = $config{NOPTS}; -my $normalize = $config{NOPTS}; -my $bitrate = $config{BITRATE}; -my $freq = $config{FREQ}; -my $channels = $config{CHANNELS}; -my $effect = $config{EFFECT}; -my $fcomp = $config{FCOMP}; -my $acomp = $config{ACOMP}; -my $oggqual = $config{OGGQUAL}; -my $spxqual = $config{SPXQUAL}; -my $aacqual = $config{AACQUAL}; -my $mpcqual = $config{MPCQUAL}; -my $ofmode = $config{OFMODE}; -my $ofopt = $config{OFOPT}; -my $bratio = $config{BRATIO}; -my $bquanl = $config{BQUANL}; -my $bpsize = $config{BPSIZE}; - -my $cdinfo; -my $nocddb; -my $noinput; -my $device = $config{DEVICE}; -my $nscheme = $config{NSCHEME}; -my $my_encoder; -my $my_decoder; -my $encoder; -my $decoder; - -my $jobs = $config{JOBS}; - -# command line options -GetOptions -( - 't|to=s' => \$to, - 'r|recursive' => \$recursive, - 'p|preserve' => \$preserve, - 'h|help' => \$help, - 'l|longhelp' => \$longhelp, - 'v|verbose' => \$verbose, - 'f|formats' => \$formats, - 'o|only=s' => \$only, - 'k|keep' => \$keep, - 'j|jobs=n' => \$jobs, - - 'taginfo' => \$taginfo, - - 'version' => \$verinfo, - 'dryrun' => \$dryrun, - 'delete' => \$delete, - 'overwrite' => \$overwrite, - 'normalize' => \$normalize, - 'encoder=s' => \$my_encoder, - 'decoder=s' => \$my_decoder, - - 'title=s' => \$title, - 'track=n' => \$track, - 'artist=s' => \$artist, - 'album=s' => \$album, - 'comment=s' => \$comment, - 'year=n' => \$year, - 'genre=s' => \$genre, - - 'gui' => \$gui, - 'kde' => \$kde, - 'gnome' => \$gnome, - - 'eopts=s' => \$eopts, - 'dopts=s' => \$dopts, - 'defopts=n' => \$defopts, - 'nopts=s' => \$nopts, - 'outfile=s' => \$outfile, - 'outdir=s' => \$outdir, - - 'bitrate=n' => \$bitrate, - 'freq=n' => \$freq, - 'channels=n' => \$channels, - 'effect=s' => \$effect, - 'fcomp=n' => \$fcomp, - 'acomp=n' => \$acomp, - 'oggqual=n' => \$oggqual, - 'spxqual=n' => \$spxqual, - 'aacqual=n' => \$aacqual, - 'mpcqual=s' => \$mpcqual, - 'ofmode=s' => \$ofmode, - 'ofopt=s' => \$ofopt, - 'bratio=n' => \$bratio, - 'bquanl=n' => \$bquanl, - 'bpsize=n' => \$bpsize, - - 'rip=s' => \$rip, - 'nocddb' => \$nocddb, - 'noinput' => \$noinput, - 'device=s' => \$device, - 'nscheme=s' => \$nscheme, - 'cdinfo' => \$cdinfo, -); - -if (defined($preserve) && !defined($outdir)) { - die "You must specify --outdir when you use --preserve option. See man page.\n"; -} - -$silent = '' if $verbose; - -my $opts; -my $total_converted = 0; -my $total_failed = 0; - -# Initialize the fork manager with a count set through pacpl.conf or via the command line -my $pm = Parallel::ForkManager->new($jobs); - -# conversion options. when adding a new format, -# wild card %i = input file and %o = output file -%run = ( - - '3g2' => { - - DEFAULT_ENCODER => 'ffmpeg', - DEFAULT_DECODER => 'ffmpeg', - - ENCODER => { - ffmpeg => { - NAME => 'ffmpeg', - ESTR => sub { - $opts = "-ar 8000 -ac 1" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { NONE => 0, }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { - $opts = "-ar 8000 -ac 1" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { NONE => 0, }, - }, - - }, - - DECODER => { - ffmpeg => { - NAME => 'ffmpeg', - DSTR => sub { "-y -i %o $dopts %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "-y -i %o %dopts %o" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - - }, - - '3gp' => { - - DEFAULT_ENCODER => 'ffmpeg', - DEFAULT_DECODER => 'ffmpeg', - - ENCODER => { - ffmpeg => { - NAME => 'ffmpeg', - ESTR => sub { - $opts = "-ar 8000 -ac 1" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { NONE => 0, }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { - $opts = "-ar 8000 -ac 1" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { NONE => 0, }, - }, - - }, - - DECODER => { - ffmpeg => { - NAME => 'ffmpeg', - DSTR => sub { "-y -i %o $dopts %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "-y -i %o %dopts %o" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - - }, - - aac => { - - DEFAULT_ENCODER => "faac", - DEFAULT_DECODER => "faad", - - ENCODER => { - faac => { - NAME => "faac", - ESTR => sub { - $opts = "-q $aacqual" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts $opts %i -o %o" - }, - PROMPT => { AACQUAL => 1 }, - }, - - ffmpeg => { - NAME => 'ffmpeg', - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 1, - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - }, - - DECODER => { - faad => { - NAME => "faad", - DSTR => sub { "$dopts -o %i %o" }, - }, - - ffmpeg => { - NAME => "ffmpeg", - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - mplayer => { - NAME => "mplayer", - DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - ac3 => { - - DEFAULT_ENCODER => "ffmpeg", - DEFAULT_DECODER => "ffmpeg", - - ENCODER => { - ffmpeg => { - NAME => "ffmpeg", - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - avconv => { - NAME => "avconv", - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - aften => { - NAME => "aften", - ESTR => sub { - $opts = "-v 1 -q $bitrate -2" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts $opts %i %o" - }, - - PROMPT => { - BITRATE => 1, - }, - }, - - }, - - DECODER => { - mplayer => { - NAME => "mplayer", - DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, - }, - - ffmpeg => { - NAME => "ffmpeg", - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => "avconv", - DSTR => sub { "$dopts -y -i %i %o" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - adts => { - - DEFAULT_ENCODER => 'ffmpeg', - DEFAULT_DECODER => 'ffmpeg', - - ENCODER => { - ffmpeg => { - NAME => 'ffmpeg', - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libfaac" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $opts $eopts -strict -2 %o" - }, - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libfaac" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $opts $eopts %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - }, - - DECODER => { - ffmpeg => { - NAME => 'ffmpeg', - DSTR => "$dopts -y -i %i %o", - }, - - avconv => { - NAME => 'avconv', - DSTR => "$dopts -y -i %i %o", - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - ape => { - - DEFAULT_ENCODER => "mac", - DEFAULT_DECODER => "mac", - - ENCODER => { - mac => { - NAME => "mac", - ESTR => sub { - $opts = "-c$acomp" if $defopts == 1; - $opts = '' if $defopts == 0; - "%i %o $opts $eopts" - }, - - PROMPT => { ACOMP => 1 }, - }, - }, - - DECODER => { - mac => { - NAME => "mac", - DSTR => sub { "%i %o -d $dopts" }, - }, - - ffmpeg => { - NAME => 'ffmpeg', - DSTR => sub { "-y -i %i %dopts %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "-y -i %i $dopts %o" }, - }, - }, - - TAGS => { - READ => 1, - WRITE => 0, - MODULE => "Audio::Scan", - }, - }, - - amr => { - - DEFAULT_ENCODER => "ffmpeg", - DEFAULT_DECODER => "ffmpeg", - - ENCODER => { - ffmpeg => { - NAME => "ffmpeg", - ESTR => sub { - $opts = "-ar 8000 -ac 1" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { NONE => 0, }, - }, - - avconv => { - NAME => "avconv", - ESTR => sub { - $opts = "-ar 8000 -ac 1" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { NONE => 0, }, - }, - - }, - - DECODER => { - ffmpeg => { - NAME => 'ffmpeg', - DSTR => sub { "-y -i %i $dopts %o" }, - }, - - avconv => { - NAME => 'ffmpeg', - DSTR => sub { "-y -i %i %dopts %o" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - - }, - - bonk => { - - DEFAULT_ENCODER => "bonk", - DEFAULT_DECODER => "bonk", - - ENCODER => { - bonk => { - NAME => "bonk", - ESTR => sub { - $opts = "-q $bquanl -b $bratio -s $bpsize" if $defopts == 1; - $opts = '' if $defopts == 0; - "encode $eopts $opts %i -o %o" - }, - - PROMPT => { - BQUANL => 1, - BRATIO => 1, - BPSIZE => 1, - }, - }, - }, - - DECODER => { - bonk => { - NAME => "bonk", - DSTR => sub { "decode %i -o %o" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - dts => { - - DEFAULT_ENCODER => 'ffmpeg', - DEFAULT_DECODER => 'ffmpeg', - - ENCODER => { - ffmpeg => { - NAME => 'ffmpeg', - ESTR => sub { - $opts = '' if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $opts $eopts -strict -2 -codec:a libfaac %o" - }, - - PROMPT => { NONE => 0, }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { - $opts = '' if $defopts == 1 or $defopts == 0; - "-y -i %i $opts $eopts -codec:a libfaac %o", - }, - PROMPT => { NONE => 0, }, - }, - - dcaenc => { - NAME => 'dcaenc', - ESTR => sub { - $opts = "$bitrate" if $defopts == 0; - $opts = '' if $defopts == 1; - "%i %o $opts" - }, - - PROMPT => { NONE => 0, }, - }, - }, - - DECODER => { - ffmpeg => { - NAME => 'ffmpeg', - DSTR => "$dopts -y -i %i %o", - }, - - avconv => { - NAME => 'avconv', - DSTR => "$dopts -y -i %i %o", - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - flac => { - - DEFAULT_ENCODER => "flac", - DEFAULT_DECODER => "flac", - - ENCODER => { - flac => { - NAME => "flac", - ESTR => sub { - $opts = "-$fcomp" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts -f $opts %i -o %o" - }, - PROMPT => { FCOMP => 1 }, - }, - - flake => { - NAME => "flake", - ESTR => sub { - $opts = "-$fcomp" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts $opts %i -o %o" - }, - PROMPT => { FCOMP => 1 }, - }, - - ffmpeg => { - NAME => "ffmpeg", - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 1; - "-y -i %i $eopts $opts %o" - }, - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - }, - - DECODER => { - flac => { - NAME => "flac", - DSTR => sub { "$dopts -f -d %i -o %o" }, - }, - - ffmpeg => { - NAME => "ffmpeg", - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - mplayer => { - NAME => "mplayer", - DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, - }, - }, - - TAGS => { - READ => 1, - WRITE => 1, - MODULE => "Audio::FLAC::Header", - }, - }, - - fla => { - - DEFAULT_ENCODER => "flac", - DEFAULT_DECODER => "flac", - - ENCODER => { - flac => { - NAME => "flac", - ESTR => sub { - $opts = "-$fcomp" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts -f $opts %i -o %o" - }, - PROMPT => { FCOMP => 1 }, - }, - }, - - DECODER => { - flac => { - NAME => "flac", - DSTR => sub { "$dopts -f -d %i -o %o" }, - }, - - mplayer => { - NAME => "mplayer", - DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, - }, - }, - - TAGS => { - READ => 1, - WRITE => 1, - MODULE => "Audio::FLAC::Header", - }, - }, - - la => { - - DEFAULT_ENCODER => "la", - DEFAULT_DECODER => "la", - - ENCODER => { - la => { - NAME => "la", - ESTR => sub { "-overwrite $eopts %i %o" }, - PROMPT => { NONE => 0, }, - }, - }, - - DECODER => { - la => { - NAME => "la", - ESTR => sub { "-console $dopts %i > %o" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - mp2 => { - - DEFAULT_ENCODER => "ffmpeg", - DEFAULT_DECODER => "ffmpeg", - - ENCODER => { - ffmpeg => { - NAME => 'ffmpeg', - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - toolame => { - NAME => 'toolame', - ESTR => sub { - $opts = "-b $bitrate" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts $opts %i %o" - }, - - PROMPT => { - BITRATE => 1, - }, - }, - - twolame => { - NAME => 'twolame', - ESTR => sub { - $opts = "-b $bitrate -s $freq" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts $opts %i %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - }, - }, - - sox => { - NAME => 'sox', - ESTR => sub { - $opts = "-c $channels -r $bitrate" if $defopts == 1; - $opts = '' if $defopts == 0; - "%i $eopts $opts %o" - }, - - PROMPT => { - BITRATE => 1, - CHANNELS => 1, - }, - }, - }, - - DECODER => { - - ffmpeg => { - NAME => 'ffmpeg', - DSTR => "$dopts -y -i %i %o", - }, - - avconv => { - NAME => 'avconv', - DSTR => "%dopts -y -i %i %o", - }, - - mplayer => { - NAME => 'mplayer', - DSTR => "-vc null -vo null -ao pcm:file=%o %i", - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - mp3 => { - - DEFAULT_ENCODER => "lame", - DEFAULT_DECODER => "lame", - - ENCODER => { - lame => { - NAME => "lame", - ESTR => sub { - $opts = "--resample $freq -b $bitrate -h" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts $opts %i %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - }, - }, - - bladeenc => { - NAME => "bladeenc", - ESTR => sub { - $opts = "-br $bitrate" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts $opts %i %o" - }, - PROMPT => { BITRATE => 1 }, - }, - - ffmpeg => { - NAME => "ffmpeg", - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts -y -i %i $opts %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - sox => { - NAME => "sox", - ESTR => sub { - $opts = "-r $freq -c $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "%i $eopts $opts %o" - }, - - PROMPT => { - FREQ => 1, - CHANNELS => 1, - }, - }, - }, - - DECODER => { - lame => { - NAME => "lame", - DSTR => sub { "$dopts --decode %i %o" }, - }, - - ffmpeg => { - NAME => "ffmpeg", - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "$dopts -y -i %i %O" }, - }, - - mplayer => { - NAME => "mplayer", - DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, - }, - - sox => { - NAME => "sox", - DSTR => sub { "%i $dopts %o" }, - }, - }, - - TAGS => { - READ => 1, - WRITE => 1, - MODULE => "MP3::Tag", - }, - }, - - mp3hd => { - - DEFAULT_ENCODER => "mp3hdEncoder", - DEFAULT_DECODER => "mp3hdDecoder", - - ENCODER => { - mp3hdEncoder => { - NAME => "mp3hdEncoder", - ESTR => sub { - $opts = "-br $bitrate" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts $opts -if %i -of %o" - }, - PROMPT => { BITRATE => 1 }, - }, - }, - - DECODER => { - mp3hdDecoder => { - NAME => "mp3hdDecoder", - DSTR => sub { "$dopts -if %i -of %o" }, - }, - }, - - TAGS => { - WRITE => 1, - READ => 1, - MODULE => "MP3::Tag", - }, - }, - - mp4 => { - - DEFAULT_ENCODER => "faac", - DEFAULT_DECODER => "faad", - - ENCODER => { - - faac => { - NAME => "faac", - ESTR => sub { - $opts = "-q $aacqual" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts -w $opts %i -o %o" - }, - PROMPT => { AACQUAL => 1 }, - }, - - ffmpeg => { - NAME => "ffmpeg", - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PRIMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - }, - - DECODER => { - - faad => { - NAME => "faad", - DSTR => sub { "$dopts -o %o %i" }, - }, - - ffmpeg => { - NAME => "ffmpeg", - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - mplayer => { - NAME => "mplayer", - DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, - }, - }, - - TAGS => { - READ => 1, - WRITE => 1, - MODULE => "Audio::Scan", - }, - }, - - m4a => { - - DEFAULT_ENCODER => "faac", - DEFAULT_DECODER => "faad", - - ENCODER => { - - faac => { - NAME => "faac", - ESTR => sub { - $opts = "-q $aacqual" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts -w $opts %i -o %o" - }, - PROMPT => { AACQUAL => 1 }, - }, - - ffmpeg => { - NAME => "ffmpeg", - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts -y -i %i $opts %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - }, - - DECODER => { - - faad => { - NAME => "faad", - DSTR => sub { "$dopts -o %o %i" }, - }, - - ffmpeg => { - NAME => "ffmpeg", - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - mplayer => { - NAME => "mplayer", - DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, - }, - - }, - - ESTR => sub { "$eopts -w -q $aacqual %i -o %o" }, - - TAGS => { - READ => 1, - WRITE => 1, - MODULE => "Audio::Scan", - }, - }, - - m4b => { - - DEFAULT_ENCODER => undef, - DEFAULT_DECODER => "faad", - - DECODER => { - faad => { - NAME => "faad", - DSTR => sub { "$dopts -o %o %i" }, - }, - - mplayer => { - NAME => "mplayer", - DSTR => sub { "$dopts -vc null -vo null -ao pcm:file=%o %i" }, - }, - - ffmpeg => { - NAME => 'ffmpeg', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 1, - MODULE => undef, - }, - }, - - mpc => { - - DEFAULT_ENCODER => "mpcenc", - DEFAULT_DECODER => "mpcdec", - - ENCODER => { - - mpcenc => { - NAME => "mpcenc", - ESTR => sub { - $opts = "--$mpcqual" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts --overwrite $opts %i %o" - }, - PROMPT => { MPCQUAL => 1 }, - }, - }, - - DECODER => { - - mpcdec => { - NAME => "mpcdec", - DSTR => sub { "$dopts %i %o" }, - }, - - ffmpeg => { - NAME => 'ffmpeg', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - mplayer => { - NAME => "mplayer", - DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, - }, - }, - - TAGS => { - READ => 1, - WRITE => 1, - MODULE => "Audio::Scan", - }, - - PROMPT => { - MPCQUAL => 1, - }, - }, - - mpp => { - - DEFAULT_ENCODER => "mpcenc", - DEFAULT_DECODER => "mpcdec", - - ENCODER => { - - mpcenc => { - NAME => "mpcenc", - ESTR => sub { - $opts = "--$mpcqual" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts --overwrite $opts %i %o" - }, - PROMPT => { MPCQUAL => 1 }, - }, - }, - - DECODER => { - - mpcdec => { - NAME => "mpcdec", - DSTR => sub { "$dopts %i %o" }, - }, - - ffmpeg => { - NAME => 'ffmpeg', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - mplayer => { - NAME => "mplayer", - DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, - }, - }, - - TAGS => { - READ => 1, - WRITE => 1, - MODULE => "Audio::Scan", - }, - }, - - off => { - DEFAULT_ENCODER => 'off', - DEFAULT_DECODER => 'off', - - ENCODER => { - off => { - NAME => 'off', - ESTR => sub { - $opts = "--mode $ofmode --optimize $ofopt" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts --overwrite $opts %i --output %o" - }, - - PROMPT => { - OFMODE => 1, - OFOPT => 1, - }, - }, - }, - - DECODER => { - off => { - NAME => 'off', - DSTR => sub { "$dopts --overwrite --decode %i --output %o" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - ofr => { - - DEFAULT_ENCODER => "ofr", - DEFAULT_DECODER => "ofr", - - ENCODER => { - ofr => { - NAME => "ofr", - ESTR => sub { - $opts = "--mode $ofmode --optimize $ofopt" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts --overwrite $opts %i --output %o" - }, - - PROMPT => { - OFMODE => 1, - OFOPT => 1, - }, - }, - }, - - DECODER => { - ofr => { - NAME => "ofr", - DSTR => sub { "$dopts --overwrite --decode %i --output %o" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - ofs => { - - DEFAULT_ENCODER => "ofs", - DEFAULT_DECODER => "ofs", - - ENCODER => { - ofs => { - NAME => "ofs", - ESTR => sub { - $opts = "--mode $ofmode --optimize $ofopt" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts --overwrite $opts %i --output %o" - }, - - PROMPT => { - OFMODE => 1, - OFOPT => 1, - }, - }, - }, - - DECODER => { - ofs => { - NAME => "ofs", - DSTR => sub { "$dopts --overwrite --decode %i --output %o" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - - oga => { - DEFAULT_ENCODER => 'oggenc', - DEFAULT_DECODER => 'oggdec', - - ENCODER => { - oggenc => { - NAME => 'oggenc', - ESTR => sub { - $opts = "--resample $freq -q $oggqual" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts $opts %i %o" - }, - PROMPT => { - FREQ => 1, - OGGQUAL => 1, - }, - }, - - ffmpeg => { - NAME => "ffmpeg", - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libvorbis" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libvorbis" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - sox => { - NAME => "sox", - ESTR => sub { - $opts = "-r $freq -c $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "%i $eopts $opts %o" - }, - - PROMPT => { - FREQ => 1, - CHANNELS => 1, - }, - }, - }, - - DECODER => { - oggdec => { - NAME => "oggdec", - DSTR => sub { "$dopts %i --output %o" }, - }, - - ffmpeg => { - NAME => "ffmpeg", - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - mplayer => { - NAME => "mplayer", - DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, - }, - - sox => { - NAME => "sox", - DSTR => sub { "%i $dopts %o" }, - }, - }, - - TAGS => { - READ => 1, - WRITE => 1, - MODULE => "vorbiscomment", - }, - }, - - ogg => { - - DEFAULT_ENCODER => "oggenc", - DEFAULT_DECODER => "oggdec", - - ENCODER => { - oggenc => { - NAME => "oggenc", - ESTR => sub { - $opts = "--resample $freq -q $oggqual" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts $opts %i -o %o" - }, - - PROMPT => { - FREQ => 1, - OGGQUAL => 1, - }, - }, - - ffmpeg => { - NAME => "ffmpeg", - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libvorbis" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { - $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libvorbis" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { - BITRATE => 1, - FREQ => 1, - CHANNELS => 1, - }, - }, - - sox => { - NAME => "sox", - ESTR => sub { - $opts = "-r $freq -c $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "%i $eopts $opts %o" - }, - - PROMPT => { - FREQ => 1, - CHANNELS => 1, - }, - }, - }, - - DECODER => { - oggdec => { - NAME => "oggdec", - DSTR => sub { "$dopts %i --output %o" }, - }, - - ffmpeg => { - NAME => "ffmpeg", - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - mplayer => { - NAME => "mplayer", - DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, - }, - - sox => { - NAME => "sox", - DSTR => sub { "%i $dopts %o" }, - }, - }, - - TAGS => { - READ => 1, - WRITE => 1, - MODULE => "vorbiscomment", - }, - }, - - opus => { - - DEFAULT_ENCODER => "opusenc", - DEFAULT_DECODER => "opusdec", - - ENCODER => { - opusenc => { - NAME => 'opusenc', - ESTR => sub { - $opts = "--bitrate $bitrate" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts $opts %i %o" - }, - PROMTP => { - BITRATE => 1, - }, - }, - }, - - DECODER => { - opusdec => { - NAME => 'opusdec', - DSTR => sub { "--force-wav %i %o" }, - PROMPT => { NONE => 0 }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - raw => { - - DEFAULT_ENCODER => "sox", - DEFAULT_DECODER => "sox", - - ENCODER => { - sox => { - NAME => 'sox', - ESTR => sub { - $opts = "-r $freq -c $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "%i $opts $eopts %o $effect" - }, - - PROMPT => { - FREQ => 1, - CHANNELS => 1, - }, - }, - }, - - DECODER => { - sox => { - NAME => 'sox', - DSTR => sub { "-w -s -r $freq -c $channels $dopts %i %o" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - rm => { - - DEFAULT_ENCODER => 'ffmpeg', - DEFAULT_DECODER => 'ffmpeg', - - ENCODER => { - ffmpeg => { - NAME => 'ffmpeg', - ESTR => sub { - $opts = "-ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { - FREQ => 1, - CHANNELS => 1, - }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { - $opts = "-ar $freq -ac $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { - FREQ => 1, - CHANNELS => 1, - }, - }, - }, - - DECODER => { - mplayer => { - NAME => 'mplayer', - DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, - }, - - ffmpeg => { - NAME => 'ffmpeg', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - shn => { - - DEFAULT_ENCODER => "shorten", - DEFAULT_DECODER => "shorten", - - ENCODER => { - shorten => { - NAME => "shorten", - ESTR => sub { - $opts = "-c $channels" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts $opts %i %o" - }, - PROMPT => { CHANNELS => 1 }, - }, - }, - - DECODER => { - shorten => { - NAME => "shorten", - DSTR => sub { "-x %i %o" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - spx => { - - DEFAULT_ENCODER => "speexenc", - DEFAULT_DECODER => "speexdec", - - ENCODER => { - speexenc => { - NAME => "speexenc", - ESTR => sub { - $opts = "--quality $spxqual" if $defopts == 1; - $opts = '' if $defopts == 0; - "$eopts $opts %i %o" - }, - PROMPT => { SPXQUAL => 1 }, - }, - - ffmpeg => { - NAME => 'ffmpeg', - ESTR => sub { - $opts = "--bitrate $bitrate.k" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i %i $eopts $opts %o" - }, - - PROMPT => { - BITRATE => 1, - }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { - $opts = "--bitrate $bitrate.k" if $defopts == 1; - $opts = '' if $defopts == 0; - "-y -i $eopts $opts %o" - }, - PROMPT => { - BITRATE => 1, - }, - }, - }, - - DECODER => { - speexdec => { - NAME => "speexdec", - DSTR => sub { "$dopts %i %o" }, - }, - - ffmpeg => { - NAME => 'ffmpeg', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - }, - - TAGS => { - READ => 1, - WRITE => 1, - MODULE => undef, - }, - }, - - tta => { - - DEFAULT_ENCODER => "ttaenc", - DEFAULT_DECODER => "ttaenc", - - ENCODER => { - ttaenc => { - NAME => "ttaenc", - ESTR => sub { "$eopts -e %i -o %o" }, - PROMPT => { NONE => 0, }, - }, - }, - - DECODER => { - ttaenc => { - NAME => "ttaenc", - DSTR => sub { "$dopts -d %i -o %o" }, - }, - - ffmpeg => { - NAME => "ffmpeg", - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - mplayer => { - NAME => "mplayer", - DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, - }, - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - wav => { - - DEFAULT_ENCODER => "mv", - DEFAULT_DECODER => "cp", - - ENCODER => { - mv => { - NAME => "mv", - ESTR => sub { "%i %o" }, - PROMPT => { NONE => 0, }, - }, - }, - - DECODER => { - cp => { - NAME => "cp", - DSTR => sub { "%i %o" }, - } - }, - - TAGS => { - READ => 0, - WRITE => 0, - MODULE => undef, - }, - }, - - wv => { - - DEFAULT_ENCODER => "wavpack", - DEFAULT_DECODER => "wvunpack", - - ENCODER => { - wavpack => { - NAME => "wavpack", - ESTR => sub { "$eopts -h -y %i -o %o" }, - PROMPT => { NONE => 0, }, - }, - - ffmpeg => { - NAME => 'ffmpeg', - ESTR => sub { "-y -i %i $eopts %o" }, - PROMPT => { NONE => 0, }, - }, - - avconv => { - NAME => 'avconv', - ESTR => sub { "-y -i %i $eopts %o" }, - PROMPT => { NONE => 0, }, - }, - }, - - DECODER => { - wvunpack => { - NAME => "wvunpack", - DSTR => sub { "$dopts -y %i -o %o" }, - }, - - ffmpeg => { - NAME => "ffmpeg", - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - avconv => { - NAME => 'avconv', - DSTR => sub { "$dopts -y -i %i %o" }, - }, - - mplayer => { - NAME => "mplayer", - DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, - }, - }, - - TAGS => { - READ => 1, - WRITE => 1, - MODULE => "Audio::Scan", - }, - }, -); - -# supported ffmpeg/avconv formats (decode only) -my @ffmpeg_codecs = ( "mmf", "ra", "wma" ); -my @ffmpeg_forks = ( "avconv", "ffmpeg" ); - -foreach my $fork (@ffmpeg_forks) { - - foreach my $codec (@ffmpeg_codecs) { - - $run{$codec}{DEFAULT_ENCODER} = $fork; - $run{$codec}{DEFAULT_DECODER} = $fork; - $run{$codec}{ENCODER}{$fork}{NAME} = $fork; - $run{$codec}{DECODER}{$fork}{NAME} = $fork; - $run{$codec}{DECODER}{$fork}{DSTR} = sub {"-y %i $dopts %o"}; - $run{$codec}{ENCODER}{$fork}{ESTR} = sub {"-y -i %i $eopts -ab $bitrate.k -ar $freq -ac $channels %o"}; - $run{$codec}{TAGS}{READ} = 0; - $run{$codec}{TAGS}{WRITE} = 0; - $run{$codec}{TAGS}{MODULE} = undef; - } - -} - -# support reading of WMA tags via Audio::Scan -$run{wma}{TAGS}{READ} = 1; -$run{wma}{TAGS}{MODULE} = "Audio::Scan"; - -# supported video to audio types -my @movie_codecs = ( - "rv", "asf", "avi", "divx", - "mkv", "mpg", "mpeg", "mov", - "ogm", "qt", "vcd", "vob", - "wmv", "flv", "svcd", "m4v", - "nsv", "nuv", "psp", "smk", - "ogv", "webm", - - # decode only audio formats - "vqf", "tak", - ); - -foreach (@movie_codecs) { - $run{$_}{DEFAULT_ENCODER} = undef; - $run{$_}{DEFAULT_DECODER} = "ffmpeg"; - $run{$_}{DECODER}{mplayer}{NAME} = "mplayer"; - $run{$_}{DECODER}{ffmpeg}{NAME} = "ffmpeg"; - $run{$_}{DECODER}{mplayer}{DSTR} = sub { "$dopts -vc null -vo null -ao pcm:file=%o %i" }; - $run{$_}{DECODER}{ffmpeg}{DSTR} = sub { "$dopts -i %i %o"; }; - $run{$_}{TAGS}{READ} = 0; - $run{$_}{TAGS}{WRITE} = 0; - $run{$_}{TAGS}{MODULE} = undef; -} - -# supported sndfile-convert formats -my @sndfile = ( - "pvf", "caf", "sf", "paf", "fap", "sd2", - "mat4", "mat5", "mat", "ircam", "w64", "nist", - "rf64", - ); - -foreach (@sndfile) { - - $run{$_}{DEFAULT_ENCODER} = "sndfile-convert"; - $run{$_}{DEFAULT_DECODER} = "sndfile-convert"; - $run{$_}{ENCODER}{"sndfile-convert"}{NAME} = "sndfile-convert"; - $run{$_}{DECODER}{"sndfile-convert"}{NAME} = "sndfile-convert"; - $run{$_}{ENCODER}{"sndfile-convert"}{ESTR} = sub { "$eopts %i %o" }; - $run{$_}{DECODER}{"sndfile-convert"}{DSTR} = sub { "$dopts %i %o" }; - $run{$_}{TAGS}{READ} = 0; - $run{$_}{TAGS}{WRITE} = 0; - $run{$_}{TAGS}{MODULE} = undef; -} - -# supported sox formats -my @sox_codecs = ( - "aiff", "aif", "au", "snd", "voc", - "smp", "avr", "cdr", "8svx", "amb", - "dat", "dvms", "f32", "f64", "fssd", - "gsrt", "hcom", "txw", "vms", "al", - "sou", "ima", "prc", "cvu", - "maud", - ); - -foreach (@sox_codecs) { - - $run{$_}{DEFAULT_ENCODER} = "sox"; - $run{$_}{DEFAULT_DECODER} = "sox"; - $run{$_}{ENCODER}{sox}{NAME} = "sox"; - $run{$_}{DECODER}{sox}{NAME} = "sox"; - $run{$_}{ENCODER}{sox}{ESTR} = sub { "%i -r $freq -c $channels $eopts %o $effect" }; - $run{$_}{DECODER}{sox}{DSTR} = sub { "%i $dopts %o" }; - $run{$_}{TAGS}{READ} = 0; - $run{$_}{TAGS}{WRITE} = 0; - $run{$_}{TAGS}{MODULE} = undef; - - $run{$_}{ENCODER}{sox}{PROMPT}{FREQ} = 1; - $run{$_}{ENCODER}{sox}{PROMPT}{CHANNELS} = 1; - -} - -# load codecs.conf file -load_codecs() if -e $codecs_conf; - -my $out_name = $outfile; -my $out_dir = $outdir; -my $first_message = 1; -my %files; -my $number = 0; - -# process all files and directories -sub proc_input { - - $to =~ tr/A-Z/a-z/; - - perror("bad_input","") unless(exists($run{$to})); - - proc_preserve_dir($dir[0]) if @dir and $preserve; # process recursive directory preservation (sends to proc_files - proc_dirs() if @dir and not $preserve; # process directories including recursively (sends to proc_files) - proc_files() if @file; # process all files - fork_files(); # start the conversion process. -} - -# process all files (all roads lead to rome) -sub proc_files { - - if (@file) { - - foreach my $i (sort(@file)) { - - my ($file, $dir, $ext) = fileparse("$i", qr/\.[^.]*/); - - $ext =~ s/^\.//; - $dir = rel2abs($dir); - $outdir = $dir if not defined($out_dir) and not $preserve; - $outdir = $out_dir if $preserve; - - my $if = $ext; - $if =~ tr/A-Z/a-z/; - - $only =~ tr/A-Z/a-z/ if $only; - - next if $only and $if ne $only; - - $encoder = $my_encoder if defined($my_encoder); - $decoder = $my_decoder if defined($my_decoder); - - $encoder = $run{$to}{DEFAULT_ENCODER} if not $my_encoder; - $decoder = $run{$if}{DEFAULT_DECODER} if not $my_decoder; - - if (-e "$file.$to" and not $overwrite) { - pnotice("overwrite","$file.$to",1); - $total_failed++; - next; - } - - if (check_input($file,$dir,$if) == 0) { - - pnotice("unk_encoder","$file.$ext",1), next unless(exists($run{$to}{ENCODER}{$encoder})); - pnotice("unk_decoder","$file.$ext",1), next unless(exists($run{$if}{DECODER}{$decoder})); - - get_visual_opts($to,$outdir) if $gui and not defined($first_run); - - $first_run = 1; - - perror("multi_out","") if (defined($out_name) and $#file gt 0 or defined($out_name) and @dir); - perror("no_outdir","") if (not -e $outdir and not -d $outdir); - - $outfile = "$file" if not $out_name; - - if ($keep and $if eq $to) { - system("cp -v \"$dir/$file.$ext\" \"$outdir/$outfile.$ext\"") if $outdir ne $dir and not -e "$outdir/$outfile.$ext"; - next if $outdir eq $dir; - } - - else { - $files{"FILE$number"}{FILE} = "$dir/$file"; - $files{"FILE$number"}{OUTF} = "$outdir/$outfile"; - $files{"FILE$number"}{EXT} = "$ext"; - $files{"FILE$number"}{NAME} = "$file"; - $files{"FILE$number"}{OUTD} = "$outfile"; - $files{"FILE$number"}{DECODER} = "$decoder"; - - $number++; - } - - } - } - } - undef(@file); -} - -# process directories and push all to @file arrary -sub proc_dirs { - - if (@dir) { - - my @tmp_dir = @dir; - undef(@dir); - $topdir = $tmp_dir[0]; - - if (not $recursive) { - - undef(@file); - - foreach my $d (@tmp_dir) { - - opendir(DIR, "$d") or perror("opening_dir","$d: $!"); - my @dir_files = readdir(DIR); - closedir(DIR); - perror("empty_dir","$d") if $#dir_files <= 1; - - foreach my $f (@dir_files) { - - if (not -d $f and not -d "$d/$f") { - push(@file, "$d/$f"); - undef($out_name); - } - } - } - - proc_files(); - return 0; - - } - - elsif ($recursive) { - - if (not $preserve) { - - undef(@file); - - foreach my $r (@tmp_dir) { - - $r = rel2abs($r); - - find ( sub { - my $rfile = $File::Find::name; - push(@file, $rfile) if not -d $rfile; - }, $r - ); - } - - proc_files(); - return 0; - - } - } - - } -} - -# preserve directory structuer (revised 10-7-2013) -my $out_dir_original = rel2abs($outdir) if $outdir and -d $outdir; - -sub proc_preserve_dir { - -$topdir = rel2abs($dir[0]); - -perror("no_outdir","") if not defined($out_dir_original); -perror("no_outdir","") if not -d $out_dir_original; - -undef(@file); # clear the array before we begin. - -find ( sub { - my $val = $File::Find::name; - $val =~ s/(\$)/\\\$/g; - - if ($val ne $topdir) { - - $val =~ s/$topdir\///; - - # create mirrored directories in output directory - if (not -f fileparse("$topdir/$val") and not -d "$out_dir_original/$val") { - say "creating directory $out_dir_original/$val" if not -f "$topdir/$val" and $verbose; - mkdir("$out_dir_original/$val", 0755) if not -f "$topdir/$val"; - } - - # this will list all files in their original directories - if (-f "$topdir/$val") { - say "$lang{debug} pushing to \@file: $topdir/$val" if $debug == 1; - push(@file, "$topdir/$val"); - } - - # set $out_dir to the - $out_dir = "$out_dir_original/" . dirname($val) if -f "$topdir/$val"; - - # send file, and output dir to proc_files(); - proc_files(); - } - - }, $topdir - ); -} - -# convert input to destination format -sub convert { - - my ($inf, $outf, $infmt, $iname, $oname, $dec) = @_; - - my $if = $infmt; - $if =~ tr/A-Z/a-z/; - - clear_tag_hash() if not $rip; - - # catch ^C. will have to be pressed repeatedly to exit the process. - $SIG{INT} = sub { - unlink("$outf.$$.wav"); - kill 9, $$; - }; - - # check to see if encoder/decoder exists. if not, see if we have one - # that supports the desired input/output formats. - $decoder = $dec; - check_encoder(); - check_decoder($infmt); - - my $decode_string = $run{$if}{DECODER}{$decoder}{DSTR}->(); - $decode_string =~ s/%i/\"$inf.$infmt\"/; - $decode_string =~ s/%o/\"$outf.$$.wav\"/; - $decode_string =~ s/(\$|\\)/\\$1/g; - - pnotice("debug","\n$run{$if}{DECODER}{$decoder}{NAME} $decode_string", 2) if $dryrun; - - # decode input file to temporary wav - system("$run{$if}{DECODER}{$decoder}{NAME} $decode_string $silent") if not $dryrun; - - # remove temporary wav file and die if decode fails - if ($? > 0) { - unlink("$outf.$$.wav") if -e "$outf.$$.wav"; - say ""; - $banner = 0; - pnotice("decode_failed","$inf.$infmt: try with --verbose",1); - return 1; - } - - # normalize wav file before encoding to output format - perror("no_app","normalize") if $normalize and not `which normalize 2>/dev/null`; - system("normalize $nopts \"$outf.$$.wav\"") if $normalize; - - # copy meta-data from input file to %tag_name - read_tags("$inf.$infmt", "$if") if $run{$if}{TAGS}{READ} == 1 and not $dryrun; - - my $tag_opts = format_tags($to); # tag options for mp4/m4a/m4b/mpc/mpp/bonk/spx/wv - - my $encode_string = $run{$to}{ENCODER}{$encoder}{ESTR}->(); - $encode_string =~ s/%i/$tag_opts \"$outf.$$.wav\"/ if $to =~ /mpc|mpp|mp4|m4a/ and $encoder eq "faac" or $encoder eq "mpcenc"; - $encode_string =~ s/%i/\"$outf.$$.wav\" $tag_opts/ if $to =~ /mpc|mpp|mp4|m4a/ and $encoder eq "ffmpeg" or $encoder eq "avconv"; - $encode_string =~ s/%i/\"$outf.$$.wav\"/ if $to !~ /mpc|mpp|mp4|m4a/; - $encode_string =~ s/%o/$tag_opts \"$outf.$to\"/ if $tag_opts ne " " and $to !~ /mpc|mpp|mp4|m4a/; - $encode_string =~ s/%o/\"$outf.$to\"/ if $tag_opts eq " " or $to =~ /mpc|mpp|mp4|m4a/; - $encode_string =~ s/(\$|\\)/\\$1/g; - - # read tag options from command line if present - get_user_tags(); - - pnotice("debug","\n$run{$to}{ENCODER}{$encoder}{NAME} $encode_string", 2) if $dryrun; - - # encode temporary WAV to desired output format. - system("$run{$to}{ENCODER}{$encoder}{NAME} $encode_string $silent") if not $dryrun; - - # remove partially encoded output file and temporary wav if encoding fails - if ($? > 0) { - unlink("$outf.$to") if -e "$outf.$to"; - unlink("$outf.$$.wav") if -e "$outf.$$.wav"; - say ""; - $banner = 0; - pnotice("encode_failed","$outf.$to: $?",1); - return 1; - } - - # write meta-data to output file from %tag_name hash - write_tags("$outf.$to", "$to") if $run{$to}{TAGS}{WRITE} == 1 and $tag_opts eq " " and not $dryrun; - - unlink("$outf.$$.wav") if not $dryrun; - unlink("$inf.$infmt") if $delete and not $dryrun; - - pnotice("removed_tmp","$outf.$$.wav","2") if $verbose; - pnotice("removed_src","$inf.$infmt", "2") if $delete and $verbose; -} - -$pm->run_on_finish -( sub { - my $pid = shift; - my $exit_code = shift; - my $ident = shift; - - if (-e "$ident.$to") { - $total_converted++; - } - say "$lang{debug} PID: $pid EXIT_CODE: $exit_code IDENTITY: \"$ident.$to\"" if $debug == 1; - } -); - -# convert all files that have been placed in the %files hash through various procs* -sub fork_files { - - say "\n$name - $version\n" if not $gui and $banner == 1; - - foreach (sort(keys(%files))) - { - $pm->start($files{$_}{OUTF}) and next; - my $msg = "$lang{converting}" . " " . basename($files{$_}{FILE}) . ".$files{$_}{EXT} -> $to"; - say "$msg" if not $gui; - system("kdialog --icon $icon_path --title \"$name\" --passivepopup \"$msg\" 10 &") if $gui and $kde; - system("notify-send \"$name\" \"$msg\" -t 35 -i $icon_path &") if $gui and $gnome; - convert("$files{$_}{FILE}","$files{$_}{OUTF}","$files{$_}{EXT}","$files{$_}{NAME}","$files{$_}{OUTD}","$files{$_}{DECODER}"); - $pm->finish; - } - - $pm->wait_all_children; - $total_failed = $number - $total_converted if $total_converted < $number; - - my $finished_msg = "\n$lang{total_converted} $total_converted, $lang{failed} $total_failed\n"; - - say "$finished_msg" if not $gui; - system("kdialog --icon $icon_path --title \"$name\" --passivepopup \"$finished_msg\" 10 &") if $gui and $kde; - system("notify-send \"$name\" \"$finished_msg\" -t 35 -i $icon_path &") if $gui and $gnome; - -} - -# if the default encoder does not exist, cycle through the supported -# encoders until we find one that does. -sub check_encoder { - - if (not `which $encoder 2>/dev/null`) { - my $first_encoder = $encoder; - foreach (keys %{$run{$to}{ENCODER}}) { $encoder = $_ and return if `which $_ 2>/dev/null`; } - perror("no_encode_app","$to") if $encoder eq $first_encoder; - } - - else { return 0; } -} - -# if the default decoder does not exist, cycle through the supported -# decoders until we find one that does. -sub check_decoder { - - my $from = shift; - - if (not `which $decoder 2>/dev/null`) { - my $first_decoder = $decoder; - foreach (keys %{$run{$from}{DECODER}}) { $decoder = $_ and return if `which $_ 2>/dev/null`; } - perror("no_decode_app","$from") if $decoder eq $first_decoder; - } - - else { return 0; } -} - -# make sure encoding/decoding is supported. -sub check_input { - - my $file = shift; - my $dir = shift; - my $ext = shift; - - perror("no_encoder","$to") unless(defined($run{$to}{ENCODER})); - - unless(defined($run{$ext}{DECODER})) { - pnotice("no_decoder","$ext",2) if $verbose or not $only; - $total_failed++; - return 1; - } - - return 0; -} - -######################################## -# GUI options for KDE & Gnome Plugins # -######################################## - -my $kdialog = "kdialog --title \"$name\""; -my $zenity = "zenity --title \"$name\" --list --radiolist --width 100 --height 300 --column '' --column "; - -sub get_visual_opts { - - my ($to_fmt,$od) = @_; - - # escape illegal characters in output directory name - $od =~ s/('|\(|\)|"|\\)/\\$1/g; - - $outdir = `kdialog --getexistingdirectory $od` if $config{KDE_DIR} == 1 and $kde; - $outdir = `zenity --title \"$lang{gui_outdir}\" --file-selection --directory --filename=\`pwd\`` if $config{ZEN_DIR} == 1 and $gnome; - - chomp($outdir); - $out_dir = $outdir; - exit(1) if not $outdir; - - if ($config{KDE_OPTS} == 1 or $config{ZEN_OPTS} == 1) { - foreach (keys %{$run{$to_fmt}{ENCODER}{$encoder}{PROMPT}}) { - prompt_user($_); - } - } -} - -sub prompt_user { - - my $opt = shift; - - given ($opt) { - - when (/^BITRATE/) { - $bitrate = `$kdialog --default $bitrate --combobox \"$lang{gui_bitrate}\" 56 112 128 160 192 256 320` if $kde; - $bitrate = `$zenity \"$lang{gui_bitrate}\" FALSE 56 FALSE 112 FALSE 128 FALSE 160 TRUE 192 FALSE 256 FALSE 320` if $gnome; - chomp($bitrate); - exit(1) if not $bitrate; - } - - when (/^FREQ/) { - $freq = `$kdialog --default $freq --combobox \"$lang{gui_freq}\" 32000 44100 48000` if $kde; - $freq = `$zenity \"$lang{gui_freq}\" FALSE 32000 TRUE 44100 FALSE 48000` if $gnome; - chomp($freq); - exit(1) if not $freq; - } - - when (/^CHANNELS/) { - $channels = `$kdialog --default $channels --combobox \"$lang{gui_chans}\" 1 2` if $kde; - $channels = `$zenity \"$lang{gui_chans}\" FALSE 1 TRUE 2` if $gnome; - chomp($channels); - exit(1) if not $channels; - } - - when (/^FCOMP/) { - $fcomp = `$kdialog --default $fcomp --combobox \"$lang{gui_fcomp}\" 0 1 2 3 4 5 6 7 8` if $kde; - $fcomp = `$zenity \"$lang{gui_fcomp}\" FALSE 0 FALSE 1 TRUE 2 FALSE 3 FALSE 4 FALSE 5 FALSE 6 FALSE 7 FALSE 8` if $gnome; - chomp($fcomp); - exit(1) if not $fcomp; - } - - when (/^ACOMP/) { - $acomp = `$kdialog --default $acomp --combobox \"$lang{gui_acomp}\" 1000 2000 3000 4000 5000` if $kde; - $acomp = `$zenity \"$lang{gui_acomp}\" FALSE 1000 FALSE 2000 TRUE 3000 FALSE 4000 FALSE 5000` if $gnome; - chomp($acomp); - exit(1) if not $acomp; - } - - when (/^OGGQUAL/) { - $oggqual = `$kdialog --default $oggqual --combobox \"$lang{gui_oggqual}\" 0 1 2 3 4 5 6 7 8 9 10` if $kde; - $oggqual = `$zenity \"$lang{gui_oggqual}\" FALSE 0 FALSE 1 FALSE 2 TRUE 3 FALSE 4 FALSE 5 FALSE 6 FALSE 7 FALSE 8 FALSE 9 FALSE 10` if $gnome; - chomp($oggqual); - exit(1) if not $oggqual; - } - - when (/^SPXQUAL/) { - $spxqual = `$kdialog --default $spxqual --combobox \"$lang{gui_spxqual}\" 0 1 2 3 4 5 6 7 8 9 10` if $kde; - $spxqual = `$zenity \"$lang{gui_spxqual}\" FALSE 0 FALSE 1 FALSE 2 FALSE 3 FALSE 4 FALSE 5 FALSE 6 FALSE 7 TRUE 8 FALSE 9 FALSE 10` if $gnome; - chomp($spxqual); - exit(1) if not $spxqual; - } - - when (/^AACQUAL/) { - $aacqual = `$kdialog --default $aacqual --combobox \"$lang{gui_aacqual}\" 100 200 300 400 500` if $kde; - $aacqual = `$zenity \"$lang{gui_aacqual}\" TRUE 100 FALSE 200 FALSE 300 FALSE 400 FALSE 500` if $gnome; - chomp($aacqual); - exit(1) if not $aacqual; - } - - when (/^MPCQUAL/) { - $mpcqual = `$kdialog --default $mpcqual --combobox \"$lang{gui_mpcqual}\" thumb radio standard xtreme insane braindead` if $kde; - $mpcqual = `$zenity \"$lang{gui_mpcqual}\" FALSE thumb TRUE radio FALSE standard FALSE xtreme FALSE insane FALSE braindead` if $gnome; - chomp($mpcqual); - exit(1) if not $mpcqual; - } - - when (/^OFMODE/ ) { - $ofmode = `$kdialog --default $ofmode --combobox \"$lang{gui_ofmode}\" fast normal high extra best highnew extranew bestnew` if $kde; - $ofmode = `$zenity \"$lang{gui_ofmode}\" FALSE fast TRUE normal FALSE high FALSE extra FALSE best FALSE highnew FALSE extranew FALSE bestnew` if $gnome; - chomp($ofmode); - exit(1) if not $ofmode; - } - - when (/^OFOPT/) { - $ofopt = `$kdialog --default $ofopt --combobox \"$lang{gui_ofopt}\" none fast normal high best` if $kde; - $ofopt = `$zenity \"$lang{gui_ofopt}\" FALSE none TRUE fast FALSE normal FALSE high FALSE best` if $gnome; - chomp($ofopt); - exit(1) if not $ofopt; - } - - when (/^BRATIO/) { - $bratio = `$kdialog --default $bratio --combobox \"$lang{gui_bratio}\" 1 2 3 4 5` if $kde; - $bratio = `$zenity \"$lang{gui_bratio}\" FALSE 1 TRUE 2 FALSE 3 FALSE 4 FALSE 5` if $gnome; - chomp($bratio); - exit(1) if not $bratio; - } - - when (/^BQUANL/) { - $bquanl = `$kdialog --default $bquanl --combobox \"$lang{gui_bquanl}\" 1.00 1.25 1.50 1.75 2.00` if $kde; - $bquanl = `$zenity \"$lang{gui_bquanl}\" TRUE 1.00 FALSE 1.25 FALSE 1.50 FALSE 1.75 FALSE 2.00` if $gnome; - chomp($bquanl); - exit(1) if not $bquanl; - } - - when (/^BPSIZE/) { - $bpsize = `$kdialog --default $bpsize --combobox \"$lang{gui_bpsize}\" 10 128` if $kde; - $bpsize = `$zenity \"$lang{gui_bpsize}\" FALSE 10 TRUE 128` if $gnome; - chomp($bpsize); - exit(1) if not $bpsize; - } - - default { return 0; } - } - -} - -# all copied tags will be stored here for furture use -my %tag_name = -( - title => undef, - track => undef, - artist => undef, - album => undef, - comment => undef, - year => undef, - genre => undef, -); - -# override tags read from input file if any of the tagging -# options are specified by the user during conversion. -sub get_user_tags -{ - $tag_name{title} = $title if $title; - $tag_name{track} = $track if $track; - $tag_name{artist} = $artist if $artist; - $tag_name{album} = $album if $album; - $tag_name{comment} = $comment if $comment; - $tag_name{year} = $year if $year; - $tag_name{genre} = $genre if $genre; -} - -# the formats MP4/M4A/M4B/MPC/MPP/WV/BONK have no tag writing module. -# tags therefore have to be written during encode via various -# command line args. -sub format_tags { - - my $type = shift; - - given ($type) { - - when (/^mp4$|^m4a$|^m4b$/) { - - if ($run{$to}{ENCODER}{$encoder}{NAME} eq "ffmpeg" or $run{$to}{ENCODER}{$encoder}{NAME} eq "avconv") { - - $tag_name{track} = 0 if not $tag_name{track}; - $tag_name{year} = 0 if not $tag_name{year}; - - return "-metadata TITLE=\"$tag_name{title}\" -metadata TRACK=\"$tag_name{track}\" -metadata ARTIST=\"$tag_name{artist}\" -metadata ALBUM=\"$tag_name{album}\" -metadata COMMENT=\"$tag_name{comment}\" -metadata YEAR=\"$tag_name{year}\" -metadata GENRE=\"$tag_name{genre}\""; - - } else { - - return "--title \"$tag_name{title}\" --track \"$tag_name{track}\" --artist \"$tag_name{artist}\" --album \"$tag_name{album}\" --comment \"$tag_name{comment}\" --year \"$tag_name{year}\" --genre \"$tag_name{genre}\""; - - } - } - - when (/^mpc$|^mpp$/) { return "--artist \"$tag_name{artist}\" --title \"$tag_name{title}\" --album \"$tag_name{album}\" --track \"$tag_name{track}\" --genre \"$tag_name{genre}\" --year \"$tag_name{year}\" --comment \"$tag_name{comment}\""; } - when (/^wv$/) { return "-w \"Title=$tag_name{title}\" -w \"Track=$tag_name{track}\" -w \"Artist=$tag_name{artist}\" -w \"Album=$tag_name{album}\" -w \"Comment=$tag_name{comment}\" -w \"Year=$tag_name{year}\" -w \"Genre=$tag_name{genre}\""; } - when (/^bonk$/) { return "-t \"$tag_name{title}\" -a \"$tag_name{artist}\" -c \"$tag_name{comment}\""; } - when (/^spx$/) { return "--author \"$tag_name{artist}\" --title \"$tag_name{title}\" --comment \"year=$tag_name{year}\" --comment \"tracknumber=$tag_name{track}\" --comment \"album=$tag_name{album}\" --comment \"genre=$tag_name{genre}\" --comment \"comment=$tag_name{comment}\""; } - - default { return " "; } - } -} - -# meta-data is read based on input file extension. -# all tags which are present will be copied to -# the %tag_name hash. -sub read_tags { - - my $in_file = shift; - my $in_format = shift; - - my $tag_module = $run{$in_format}{TAGS}{MODULE}; - - given ($in_format) { - - when (/^mp3$|^mp3hd$/) { - my $mp3tag = $tag_module->new($in_file); - my @tags = $mp3tag->autoinfo(); - - $tag_name{title} = "$tags[0]" if $tags[0]; - $tag_name{track} = "$tags[1]" if $tags[1]; - $tag_name{artist} = "$tags[2]" if $tags[2]; - $tag_name{album} = "$tags[3]" if $tags[3]; - $tag_name{comment} = "$tags[4]" if $tags[4]; - $tag_name{year} = "$tags[5]" if $tags[5]; - $tag_name{genre} = "$tags[6]" if $tags[6]; - - return 0; - } - - when (/^ogg$|^oga$/) { - my $ogg_tag = Audio::Scan->scan_tags($in_file)->{tags}; - - $tag_name{title} = $ogg_tag->{TITLE} if $ogg_tag->{TITLE}; - $tag_name{track} = $ogg_tag->{TRACKNUMBER} if $ogg_tag->{TRACKNUMBER}; - $tag_name{artist} = $ogg_tag->{ARTIST} if $ogg_tag->{ARTIST}; - $tag_name{album} = $ogg_tag->{ALBUM} if $ogg_tag->{ALBUM}; - $tag_name{comment} = $ogg_tag->{COMMENT} if $ogg_tag->{COMMENT}; - $tag_name{year} = $ogg_tag->{YEAR} if $ogg_tag->{YEAR}; - $tag_name{genre} = $ogg_tag->{GENRE} if $ogg_tag->{GENRE}; - - return 0; - } - - when (/^spx$/) { - my $pid = open(SPX, "speexdec \"$in_file\" tmp1-$$.wav 2>&1 |") or perror("opening_file","$in_file"); - my @data = ; - @data = grep(!/^$|^#/, @data); - - close(SPX); - - foreach (@data) { - - next unless /=/; - chomp; - - my ($k, $v) = split /=/; - $k =~ tr/A-Z/a-z/; - $tag_name{$k} = $v if exists($tag_name{$k}); - $tag_name{artist} = $v if $k =~ /^author/i; - $tag_name{track} = $v if $k =~ /^tracknumber/i; - } - - unlink("tmp-$$.wav"); - return 0; - } - - when (/^flac$|^fla$/) { - my $flac_tag = Audio::Scan->scan_tags($in_file)->{tags}; - - $tag_name{title} = $flac_tag->{TITLE} if $flac_tag->{TITLE}; - $tag_name{track} = $flac_tag->{TRACKNUMBER} if $flac_tag->{TRACKNUMBER}; - $tag_name{artist} = $flac_tag->{ARTIST} if $flac_tag->{ARTIST}; - $tag_name{album} = $flac_tag->{ALBUM} if $flac_tag->{ALBUM}; - $tag_name{comment} = $flac_tag->{COMMENT} if $flac_tag->{COMMENT}; - $tag_name{year} = $flac_tag->{DATE} if $flac_tag->{DATE}; - $tag_name{genre} = $flac_tag->{GENRE} if $flac_tag->{GENRE}; - - return 0; - } - - when (/^mp4$|^m4a$|^m4b$/) { - my $mp4_tag = $tag_module->scan_tags($in_file)->{tags}; - - $tag_name{title} = $mp4_tag->{NAM} if $mp4_tag->{NAM}; - $tag_name{track} = $mp4_tag->{TRKN} if $mp4_tag->{TRKN}; - $tag_name{artist} = $mp4_tag->{ART} if $mp4_tag->{ART}; - $tag_name{album} = $mp4_tag->{ALB} if $mp4_tag->{ALB}; - $tag_name{comment} = $mp4_tag->{CMT} if $mp4_tag->{CMT}; - $tag_name{year} = $mp4_tag->{DAY} if $mp4_tag->{DAY}; - $tag_name{genre} = $mp4_tag->{GNRE} if $mp4_tag->{GNRE}; - - return 0; - } - -when (/^ape$|^mpc$|^mpp$|^wv$/) { - my $audio_tag = $tag_module->scan_tags($in_file)->{tags}; - - $tag_name{title} = $audio_tag->{TITLE} if $audio_tag->{TITLE}; - $tag_name{track} = $audio_tag->{TRACK} if $audio_tag->{TRACK}; - $tag_name{artist} = $audio_tag->{ARTIST} if $audio_tag->{ARTIST}; - $tag_name{album} = $audio_tag->{ALBUM} if $audio_tag->{ALBUM}; - $tag_name{comment} = $audio_tag->{COMMENT} if $audio_tag->{COMMENT}; - $tag_name{year} = $audio_tag->{YEAR} if $audio_tag->{YEAR}; - $tag_name{genre} = $audio_tag->{GENRE} if $audio_tag->{GENRE}; - - return 0; - } - - when (/^wma$/) { - my $wma_tag = $tag_module->scan_tags($in_file)->{tags}; - - $tag_name{title} = $wma_tag->{TITLE} if $wma_tag->{TITLE}; - $tag_name{track} = $wma_tag->{TRACKNUMBER} if $wma_tag->{TRACKNUMBER}; - $tag_name{artist} = $wma_tag->{AUTHOR} if $wma_tag->{AUTHOR}; - $tag_name{album} = $wma_tag->{ALBUMTITLE} if $wma_tag->{ALBUMTITLE}; - $tag_name{comment} = $wma_tag->{DESCRIPTION} if $wma_tag->{DESCRIPTION}; - $tag_name{year} = $wma_tag->{YEAR} if $wma_tag->{YEAR}; - $tag_name{genre} = $wma_tag->{GENRE} if $wma_tag->{GENRE}; - - return 0; - } - - default { return 1; } - } -} - -# write meta-data stored in %tag_name to output file. -sub write_tags { - - my $out_file = shift; - my $out_format = shift; - - my $tag_m; - - given ($out_format) { - - when (/^mp3$|^mp3hd$/) { - $tag_m = MP3::Tag->config(write_v24 => 'YES'); - $tag_m = MP3::Tag->new("$out_file"); - - # ID3v2 Tags - unless(exists($tag_m->{ID3v2})) { $tag_m->new_tag("ID3v2"); } - - $tag_m->{ID3v2}->add_frame("TIT2", "$tag_name{title}") if defined($tag_name{title}); - $tag_m->{ID3v2}->add_frame("TRCK", "$tag_name{track}") if defined($tag_name{track}); - $tag_m->{ID3v2}->add_frame("TPE1", "$tag_name{artist}") if defined($tag_name{artist}); - $tag_m->{ID3v2}->add_frame("TALB", "$tag_name{album}") if defined($tag_name{album}); - $tag_m->{ID3v2}->comment("$tag_name{comment}") if defined($tag_name{comment}); - $tag_m->{ID3v2}->add_frame("TYER", "$tag_name{year}") if defined($tag_name{year}); - $tag_m->{ID3v2}->add_frame("TCON", "$tag_name{genre}") if defined($tag_name{genre}); - - $tag_m->{ID3v2}->write_tag; - - # ID3v1 Tags - unless(exists($tag_m->{ID3v1})) { $tag_m->new_tag("ID3v1"); } - - $tag_m->{ID3v1}->title("$tag_name{title}") if defined($tag_name{title}); - $tag_m->{ID3v1}->track("$tag_name{track}") if defined($tag_name{track}); - $tag_m->{ID3v1}->artist("$tag_name{artist}") if defined($tag_name{artist}); - $tag_m->{ID3v1}->album("$tag_name{album}") if defined($tag_name{album}); - $tag_m->{ID3v1}->comment("$tag_name{comment}") if defined($tag_name{comment}); - $tag_m->{ID3v1}->year("$tag_name{year}") if defined($tag_name{year}); - $tag_m->{ID3v1}->genre("$tag_name{genre}") if defined($tag_name{genre}); - - $tag_m->{ID3v1}->write_tag; - - return 0; - - } - - when (/^ogg$|^oga$/) { - $tag_m = ''; - - $tag_m = "$tag_m -t \"TITLE=$tag_name{title}\"" if $tag_name{title}; - $tag_m = "$tag_m -t \"TRACKNUMBER=$tag_name{track}\"" if $tag_name{track}; - $tag_m = "$tag_m -t \"ARTIST=$tag_name{artist}\"" if $tag_name{artist}; - $tag_m = "$tag_m -t \"ALBUM=$tag_name{album}\"" if $tag_name{album}; - $tag_m = "$tag_m -t \"COMMENT=$tag_name{comment}\"" if $tag_name{comment}; - $tag_m = "$tag_m -t \"YEAR=$tag_name{year}\"" if $tag_name{year}; - $tag_m = "$tag_m -t \"GENRE=$tag_name{genre}\"" if $tag_name{genre}; - - system("vorbiscomment -w $tag_m \"$out_file\"") if $tag_m ne ''; - - return 0; - } - - when (/^fla$|^flac$/) { - $tag_m = Audio::FLAC::Header->new("$out_file"); - my $tag_i = $tag_m->tags(); - - $tag_i->{TITLE} = "$tag_name{title}" if $tag_name{title}; - $tag_i->{TRACKNUMBER} = "$tag_name{track}" if $tag_name{track}; - $tag_i->{ARTIST} = "$tag_name{artist}" if $tag_name{artist}; - $tag_i->{ALBUM} = "$tag_name{album}" if $tag_name{album}; - $tag_i->{COMMENT} = "$tag_name{comment}" if $tag_name{comment}; - $tag_i->{DATE} = "$tag_name{year}" if $tag_name{year}; - $tag_i->{GENRE} = "$tag_name{genre}" if $tag_name{genre}; - - $tag_m->write(); - - return 0; - } - - default { perror("no_write_tag","$out_file"); } - } - -} - -# this is necessary when converting multiple files. -# it prevents old tags from the previous file being -# copied over to the next file in line. -sub clear_tag_hash { - foreach (keys(%tag_name)) { - $tag_name{$_} = ''; - } -} - -# display meta-data for selected file(s) -sub show_taginfo { - - perror("no_input","") if $#file < 0; - - foreach my $i (@file) { - - my ($file, $dir, $ext) = fileparse("$i", qr/\.[^.]*/); - - $ext =~ s/^\.//; - - my $from = $ext; - $from =~ tr/A-Z/a-z/; - - if ($run{$from}{TAGS}{READ} == 1) { - - clear_tag_hash(); - read_tags("$dir/$file.$ext","$from"); - - say ''; - - pnotice("tag_info","$file.$ext",2); - - say " Artist: $tag_name{artist}"; - say " Title: $tag_name{title}"; - say " Album: $tag_name{album}"; - say " Track: $tag_name{track}"; - say "Comment: $tag_name{comment}"; - say " Year: $tag_name{year}"; - say " Genre: $tag_name{genre}"; - - say ''; - - } else { pnotice("no_read_tag","$file.$ext",2); } - } -} - -# write tags to file supplied by the user -sub write_user_tags { - - perror("no_input","") if $#file < 0; - - say ''; - say "$name - $version\n"; - - foreach (@file) { - - my ($file, $dir, $ext) = fileparse("$_", qr/\.[^.]*/); - - $ext =~ s/^\.//; - my $from = $ext; - $from =~ tr/A-Z/a-z/; - - if ($run{$from}{TAGS}{WRITE} == 1) { - - clear_tag_hash(); - read_tags("$dir/$file.$ext","$from"); - - $tag_name{title} = $title if $title; - $tag_name{track} = $track if $track; - $tag_name{artist} = $artist if $artist; - $tag_name{album} = $album if $album; - $tag_name{comment} = $comment if $comment; - $tag_name{year} = $year if $year; - $tag_name{genre} = $genre if $genre; - - write_tags("$dir/$file.$ext","$from"); - say "$lang{write_tag_i} $file.$ext"; - - } else { perror("no_write_tag","$file.$ext"); } - } - say ''; -} - -# print out list of supported encode & decode formats -sub show_formats { - -say "\n$name - $version\n"; -say "EXT E D ENCODER DECODER TAG-READ TAG-WRITE"; -say "----------------------------------------------------------------------"; - -my $enc_count = 0; -my $dec_count = 0; - - foreach (sort(keys(%run))) { - - my $e = "N"; $e = "Y" if defined($run{$_}{DEFAULT_ENCODER}); - my $d = "N"; $d = "Y" if defined($run{$_}{DEFAULT_DECODER}); - my $r = "N"; $r = "Y" if $run{$_}{TAGS}{READ} == 1; - my $w = "N"; $w = "Y" if $run{$_}{TAGS}{WRITE} == 1; - - my $enc = ''; $enc = $run{$_}{DEFAULT_ENCODER} if defined($run{$_}{DEFAULT_ENCODER}); - my $dec = ''; $dec = $run{$_}{DEFAULT_DECODER} if defined($run{$_}{DEFAULT_DECODER}); - - printf("%-9s %-3s %-3s %-15s %-18s %-10s %s\n", $_, $e, $d, $enc, $dec, $r, $w); - - ++$enc_count if $enc ne ''; - ++$dec_count if $dec ne ''; - - } - - say "\n$lang{enc_fmts} $enc_count --- $lang{dec_fmts} $dec_count\n"; - -} - -# show encoders for output format -sub show_encoders { - say "\n$name - $version\n\n$lang{show_encoders}: $my_encoder\n"; - foreach (sort(keys %{$run{$my_encoder}{ENCODER}})) { - print "$_ -> "; - print "installed" if `which $_ 2>/dev/null`; - print "not found" if not `which $_ 2>/dev/null`; - print " (default)" if $_ eq $run{$my_encoder}{DEFAULT_ENCODER}; - say ''; - } - say ''; -} - -# show decoders for input format -sub show_decoders { - say "\n$name - $version\n\n$lang{show_decoders}: $my_decoder\n"; - foreach (sort(keys %{$run{$my_decoder}{DECODER}})) { - print "$_ -> "; - print "installed" if `which $_ 2>/dev/null`; - print " (default)" if $_ eq $run{$my_decoder}{DEFAULT_DECODER}; - say ''; - } - say ''; -} - -################# -# cd ripping... # -################# - -# get total number of tracks from cdparanoia query -sub get_total_tracks { - - open(CDINFO, "cdparanoia -Q 2>&1 |") or die "can't fork: $!\n"; - my @cdquery = ; - close(CDINFO); - - my $fmt_tracks = $cdquery[-3]; - $fmt_tracks =~ s/\s//g; - - my @ttracks = split(/\./, $fmt_tracks); - - return "$ttracks[0]"; - -} - -my (%cd, %ripconfig, @cdtrack, $track_total); - -# setup the cddb config -sub get_cddb_config { - - $config{USE_CDDB} = 0 && return if $nocddb; - - $config{CDDB_INPUT} = 0 if $noinput; - - $ripconfig{CDDB_HOST} = $config{CDDB_HOST}; - $ripconfig{CDDB_PORT} = $config{CDDB_PORT}; - $ripconfig{CDDB_MODE} = $config{CDDB_MODE}; - $ripconfig{DEVICE} = $device; - $ripconfig{CDDB_INPUT} = $config{CDDB_INPUT}; - - print $ripconfig{CDDB_HOST}; - - %cd = get_cddb(\%ripconfig); - - if (not $cd{title}) { - pnotice("no_cddb","",2); - $config{USE_CDDB} = 0; - } - else { - @cdtrack = @{$cd{track}}; - $track_total = $cd{tno}; - } - -} - -# check to see if a disc is present -sub query_disc { - system("cdparanoia -q -d $device -Q > /dev/null 2>&1"); - perror("no_disc","$device") if $? > 0; -} - -# set tag info from cddb -sub tag_track { - - my $tno = shift; - - $tag_name{artist} = $cd{artist} if $cd{artist}; - $tag_name{title} = $cdtrack[$tno-1] if $cdtrack[$tno-1]; - $tag_name{genre} = $cd{cat} if $cd{cat}; - $tag_name{track} = $tno; - $tag_name{album} = $cd{title} if $cd{title}; - $tag_name{year} = $cd{year} if $cd{year}; - $tag_name{comment} = ''; - -} - -# process and convert ripped track -sub rip_cd { - - my ($on,$tno) = @_; - - $outdir = $ENV{HOME}; - $to =~ tr/A-Z/a-z/; - - get_visual_opts($to,$out_dir) if $gui and not defined($first_run); - $first_run = 1; - pnotice("ripping_track","$tno",2); - - $on =~ s/\//_/g; - - say "\ncdparanoia -d $device $tno $on.wav\n" if $dryrun; - system("cdparanoia -d $device $tno \"$on.wav\" >/dev/null 2>&1") if not $dryrun; - - if ($to !~ /wav/i) { - - push(@file, "$on.wav"); - tag_track($tno); - proc_input(); - clear_tag_hash(); - undef(@file); - unlink("$on.wav") if not $dryrun; - pnotice("removed_tmp","$on.wav",2) if $verbose; - - } -} - -# rip selected tracks or all from disc -sub proc_cd { - - perror("no_app","cdparanoia") if not `which cdparanoia 2>/dev/null`; - - query_disc(); - get_cddb_config(); - - my $total_tracks = get_total_tracks(); - - if ($rip eq "all") { - - if ($config{USE_CDDB} ne 1) { - - for(my $i=1;$i<=$total_tracks;$i++) { - rip_cd($i, $i); - } - - } elsif ($config{USE_CDDB} eq 1) { - - my $n = 1; - - foreach my $i (@cdtrack) { - - my $out_string = $nscheme; - - chomp($cdtrack[$n-1]); - - $out_string =~ s/%ar/$cd{artist}/; - $out_string =~ s/%ti/$cdtrack[$n-1]/; - $out_string =~ s/%tr/$n/; - $out_string =~ s/%ab/$cd{title}/; - $out_string =~ s/%yr/$cd{year}/; - - rip_cd($out_string, $n); - - ++$n; - } - } - - } else { - - my @tracks = split(/,/, $rip); - - foreach my $i (@tracks) { - - next if $i > $total_tracks or $i < 1; - - my $out_string = $nscheme; - - $out_string =~ s/%ar/$cd{artist}/; - $out_string =~ s/%ti/$cdtrack[$i-1]/; - $out_string =~ s/%tr/$i/; - $out_string =~ s/%ab/$cd{title}/; - $out_string =~ s/%yr/$cd{year}/; - - rip_cd($out_string, $i) if $config{USE_CDDB} == 1; - rip_cd($i, $i) if $config{USE_CDDB} == 0; - } - } -} - -# get/print cddb information from disc -sub cdinfo { - - query_disc(); - get_cddb_config(); - - say "$name - $version\n"; - - say "Artist = $cd{artist}"; - say "Album = $cd{title}"; - say "Genre = $cd{genre}"; - say "Tracks = $cd{tno}"; - say "Year = $cd{year}\n"; - - my $n = 1; - - foreach (@cdtrack) { - say "Track $n: $_"; - ++$n; - } - - exit(0); -} - -# version / license information -sub version { - -say " -$name - $version - -Copyright (C) 2005-2017 Philip Lyons - -This is free software. You may redistribute copies of it under the terms of -the GNU General Public License . -There is NO WARRANTY, to the extent permitted by law. -"; - -} - -# help & longhelp menu -sub help_menu { - -say "\n$name - $version"; - -say " --t, --to $lang{to} --r, --recursive $lang{recursive} --p, --preserve $lang{preserve} --f, --formats $lang{formats} --o, --only $lang{only} --k, --keep $lang{keep} --j, --jobs $lang{jobs} --h, --help $lang{help} --l, --longhelp $lang{longhelp} --v, --verbose $lang{verbose} -"; - -say "$lang{user_opts} - ---defopts $lang{defopts} ---eopts $lang{eopts} ---dopts $lang{dopts} ---nopts $lang{nopts} ---outfile $lang{outfile} ---outdir $lang{outdir} ---dryrun $lang{dryrun} ---overwrite $lang{overwrited} ---normalize $lang{normalize} ---delete $lang{delete} ---encoder $lang{encoder} ---decoder $lang{decoder} ---version $lang{version} - -$lang{enc_opts} - ---bitrate $lang{bitrate} ---freq $lang{freq} ---channels $lang{channels} ---effect $lang{effect} ---fcomp $lang{fcomp} ---acomp $lang{acomp} ---oggqual $lang{oggqual} ---spxqual $lang{spxqual} ---aacqual $lang{aacqual} ---mpcqual $lang{mpcqual} ---ofmode $lang{ofmode} ---ofopt $lang{ofopt} ---bratio $lang{bratio} ---bquanl $lang{bquanl} ---bpsize $lang{bpsize} - -$lang{tag_opts} - ---artist $lang{artist} ---title $lang{title} ---track $lang{track} ---year $lang{year} ---album $lang{album} ---genre $lang{genre} ---comment $lang{comment} ---taginfo $lang{taginfo} - -$lang{tag_usage} - -$lang{rip_opts} - ---rip $lang{rip} ---nocddb $lang{nocddb} ---noinput $lang{noinput} ---nscheme $lang{nscheme} ---cdinfo $lang{cdinfo} ---device $lang{device} - -$lang{rip_usage}" if $longhelp; - -say "\n$lang{usage}\n"; - -} - -sub load_module { - my ($file) = @_; - my $return; - unless($return = do $file) { - perror("opening_file","$file: $@ $!") if $@ or !defined($return) or not !$return; - } -} - -sub import_module { - my ($format_ref) = @_; - my $format_name=$format_ref->{NAME}; - $run{$format_name} = $format_ref; -} - -# load all user modules -sub load_user_modules { - my @imported_mods; - opendir(DIR, "$mod_dir") or perror("opening_dir","$mod_dir: $!"); - foreach (readdir(DIR)) { - load_module("$mod_dir/$_") if $_ !~ /^\./; - push(@imported_mods, $_) if $_ !~ /^\./; - } - closedir(DIR); - say "$lang{imported} @imported_mods"; -} - -# place files/directories in their respective arrays -if (@ARGV) { - foreach (@ARGV) { - if (-f $_) { push(@file,$_); print "$lang{debug} adding $_ to \@file\n" if $debug == 1; } - elsif (-d $_) { push(@dir, $_); print "$lang{debug} adding $_ to \@dir\n" if $debug == 1; } - else { perror("no_infile","$_"); } - } -} - -load_user_modules() if $config{IMPORTM} == 1; - -if ($to and @ARGV and not $rip) { proc_input(); } - -elsif ($to and $rip) { proc_cd(); } -elsif ($my_encoder and not $to) { show_encoders(); } -elsif ($my_decoder and not $to) { show_decoders(); } -elsif ($verinfo) { version(); } -elsif ($longhelp) { help_menu(); } -elsif ($formats) { show_formats(); } -elsif ($cdinfo) { cdinfo(); } -elsif ($taginfo and not $to) { show_taginfo(); } -elsif ($title or $track or $artist or $album or $comment or $year or $genre) { write_user_tags(); } - -else { help_menu(); } - -__END__ - -=head1 NAME - -pacpl - Perl Audio Converter, a multi purpose converter/ripper/tagger - -=head1 SYNOPSIS - -pacpl --to [file(s)/directory(s)] - -=head1 DESCRIPTION - -Perl Audio Converter - -A Linux CLI tool for converting multiple audio types from one format to another. - -It supports the following audio formats: - -======================================== - -3G2, 3GP, 8SVX, AAC, AC3, ADTS, AIFF, AL, AMB, AMR, APE, AU, -AVR, BONK, CAF, CDR, CVU, DAT, DTS, DVMS, F32, F64, FAP, FLA, -FLAC, FSSD, GSRT, HCOM, IMA, IRCAM, LA, MAT, MAUD, MAT4, MAT5, -M4A, MP2, MP3, MP4, MPC, MPP, NIST, OFF, OFR, OFS, OPUS, OGA, -OGG, PAF, PRC, PVF, RA, RAM, RAW, RF64, SD2, SF, SHN, SMP, SND, -SOU, SPX, SRN, TAK, TTA, TXW, VOC, VMS, VQF, W64, WAV, WMA, -and WV. - -It can also extract audio from the following video extensions: - -============================================================== - -RM, RV, ASF, DivX, MPG, MKV, MPEG, AVI, MOV, OGM, OGV, QT, VCD, -SVCD, M4V, NSV, NUV, PSP, SMK, VOB, FLV, WEBM and WMV. - -Parallel Processing, a CD ripping function with CDDB support, batch conversion, -tag preservation for most supported formats, independent tag reading & writing, -service menus for KDE Dolphin/Konqueror, GNOME Nautilus script, and action -scripts for Nemo/Thunar are also provided. - -=head1 OPTIONS - -B<-t, --to> I - -set encode format for the input file(s) or directory(ies). you can see a -complete list of supported encode formats by using the B<--formats> option. - -B<-r, --recursive> - -recursively scan and convert input folder(s) to destination format. - -B<-p, --preserve> - -when recursively converting a directory, preserve the input folders directory -structure in the specified output directory. such as: - -pacpl --to ogg -r -p /home/mp3s --outdir /home/oggs - -in the example above, let's assume the directory structure was: - -=over 21 - -=item /home/mp3s/Alternative - -=item /home/mp3s/Alternative/New - -=item /home/mp3s/Rap - -=item /home/mp3s/Country - -=item /home/mp3s/Techno/ - -=back - -the output directory will now contain: - -=over 4 - -=item /home/oggs/Alternative - -=item /home/oggs/Alternative/New - -=item /home/oggs/Rap - -=item /home/oggs/Country - -=item /home/oggs/Techno - -=back - -with all files in each sub-folder converted to ogg. - -B<-o, --only> I - -only convert files matching extension. this option is useful when you have -a directory or batch of files with mixed audio types and only need to -convert one specific type. - -B<-k, --keep> - -do not re-encode files with extensions matching the destination extension. -instead...copy them to the output folder, or skip to the next file. - -B<-j, --jobs> - -number of simultanious jobs to run at once. the default limit -is set to 4 in pacpl.conf. You can modify this value on the fly -using --jobs= or set it perminately in the configuration file - -=over 4 - -=item B<-f, --formats> show a list of supported encode/decode formats. - -=item B<-h, --help> show the short help menu. - -=item B<-l, --longhelp> display the complete list of options. - -=item B<--version> show version and licensing information. - -=back - -=head1 USER OPTIONS - -B<--defopts> I<1/0> - -to turn off default encoder options use --defopts 0. this option gives you -more control when using the --eopts command. - -defopts is set to 1 by default. you can also toggle this option in -/etc/pacpl/pacpl.conf. - -B<--eopts> I - -this option allows you to use encoder options not implemented by pacpl. -an example would be: - -pacpl --to mp4 --eopts="-c 44100 -I 1,2" YourFile.mp3 - -B<--dopts> I - -this option allows you to use decoder options not implemented by pacpl. -an example would be: - -pacpl --to mpc --dopts="--start 60" YourFile.ogg - -B<--outfile> I - -set the output file name to I. - -B<--outdir> I - -place all encoded files in I. - -B<--dryrun> - -show what would be done without actually converting anything. this is a -good way to trouble shoot, or to see what would be done without actually -touching your files. - -B<--overwrite> - -replace the output file if it already exists. - -B<--normalize> - -adjusts volume levels of audio files. - -B<--nopts> I - -this allows you to specify normalize options not implemented by pacpl - -B<--delete> - -remove source/input file after the conversion process has finished. - -B<--encoder> I - -specify an alternate encoder for the selected output file(s) - -you can see a list of supported encoders by using the following: - -pacpl --encoder I - -B<--decoder> I - -specify an alternate decoder for the selected input file(s) - -you can see a list of supported decoders by using the following: - -pacpl --decoder I - -B<-v, --verbose> - -show detailed information about the encoding process and what's actually -being done. - -=head1 ENCODER OPTIONS - -B<--bitrate> I - -set the bitrate to I. default is 128. this option does not apply -to all formats. - -B<--freq> I - -set the frequency to I. default is 44100. this option does not apply -to all formats. - -B<--channels> I - -set the number of audio channels in the output file to I. this option -does not apply to all formats. - -B<--effect> I - -see B(1). this option only applies to the following: - -AIFF, AU, SND, RAW, VOC, SMP, AVR, and CDR - -B<--fcomp> I - -set flac compression level to I. fastest -0, highest -8, default -2 - -=over 4 - -=item 1 = fast - -=item 2 = simple - -=item 3 = medium (default) - -=item 4 = high - -=item 5 = extra high, - -=back - -B<--acomp> I - -set ape compression level to I. - -=over 4 - -=item 1000 = fast - -=item 2000 = normal - -=item 3000 = high (default) - -=item 4000 = extra high - -=item 5000 = insane - -=back - -B<--oggqual> I - -set ogg quality level to I. -1, very low and 10 very high, default 3 - -B<--spxqual> I - -set speex quality level to I. 0-10, default 8 (use --bitrate when using ffmpeg/avconv as encoder) - -B<--aacqual> I - -set aac, mp4, m4a, or m4b quality level to I. default 300 - -B<--mpcqual> I - -set mpc/mpp quality level to I. - -=over 4 - -=item thumb low quality/internet, (typ. 58... 86 kbps) - -=item radio medium (MP3) quality, (typ. 112...152 kbps - default) - -=item standard high quality (dflt), (typ. 142...184 kbps) - -=item xtreme extreme high quality, (typ. 168...212 kbps) - -=back - -B<--ofmode> I - -set off/ofr/ofs compression mode to I. normal, extra, and extranew modes -are recommended for general use. available options are: - -=over 4 - -=item fast - -=item normal (default) - -=item high - -=item extra - -=item best - -=item highnew - -=item extranew - -=item bestnew - -=back - -B<--ofopt> I - -set off/ofr/ofs optimization level to I. - -specify the optimization level in the engine. In order to achieve -optimal compression at all sample types, sample rates, and audio -content, the core compression engine has the possibility to find the -optimal values for its parameters, at the cost of slightly increased -compression time only. The default recommended value is fast. -do not use normal (or even high or best) for this parameter unless -encoding time does not matter and you want to obtain the smallest -possible file for a given compression mode. The difference between -the optimize levels fast and best (which is up to three times slower -than fast) is very small, generally under 0.05%, but may be also -larger in some rare cases. Note that the none optimize level is -forced by the encoder to fast optimize level for the extra, best, -highnew, extranew, and bestnew modes. - -available options are: - -=over 4 - -=item none - -=item fast (default) - -=item normal - -=item high - -=item best - -=back - -B<--bratio> I - -set bonk down sampling ratio. default 2 - -B<--bquanl> I - -set bonk quantanization level. default 1.0 - -B<--bpsize> I - -set bonk predictor size. default 128 - -=head1 TAGGING OPTIONS - -B - -tagging outside of the encoding process can only be performed on the -following audio types: - -=over 4 - -=item MP3 - -=item OGG - -=item FLA - -=item FLAC - -=back - -B<--artist> I - -set artist information to I. - -B<--title> I - -set title information to I. - -B<--track> I - -set track information to I. - -B<--year> I - -set year/date information to I. - -B<--album> I - -set album information to I. - -B<--genre> I - -set genre information to I. - -B<--comment> I - -set comment information to I. - -B<--taginfo> I - -show tagging information for I. multiple files can be specified -at once. - -=head1 RIPPING OPTIONS - -B<--rip> I - -rip selected tracks separated by comma or all from current disc. - -=over 4 - -=item pacpl --rip all --to flac - -=item pacpl --rip 1,3,9,15 --to flac - -=back - -B<--nocddb> - -disable cddb. use this option if you do not want tagging based on cddb. - -B<--noinput> - -disable cddb interactivity. this is enabled by default. - -B<--nscheme> I - -set naming scheme to I. default is %ar - %ti - -available options are: - -=over 4 - -=item %ar = artist - -=item %ti = song title - -=item %tr = track - -=item %yr = year - -=item %ab = album - -=back - -B --nscheme="(%tr)-%ti" - -B<--device> I - -set device to I. default is /dev/dvd - -B<--cdinfo> - -show cddb information for current disc. - -=head1 SEE ALSO - -=over 4 - -=item B(1) B(1) B(1) B(1) B(1) - -=item B(1) B(1) B(1) B(1) B(1) - -=item B(1) B(1) B(1) B(1) - -=item B(1) B(1) B(1) - -=item B(1) B(1) B(1) B(1) - -=item B(1) B(1) - -=back - -=head1 BUGS - -Report all bugs to Philip Lyons (vorzox@gmail.com) - -=head1 LICENSING - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . - -=head1 AUTHOR - -Copyright (C) 2005-2017 Philip Lyons (vorzox@gmail.com) diff --git a/pacpl.in b/pacpl.in new file mode 100755 index 0000000..3690069 --- /dev/null +++ b/pacpl.in @@ -0,0 +1,4034 @@ +#!/usr/bin/perl +# +# Perl Audio Converter +# +# Copyright (C) 2005-2017 Philip Lyons (vorzox@gmail.com) +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +use strict; +use warnings; +use Getopt::Long; +use File::Basename; +use File::Find; +use File::Spec::Functions qw(rel2abs); +use Parallel::ForkManager; + +use feature qw(switch say); + +no if $] >= 5.018, warnings => "experimental::smartmatch"; + +# Tagging modules +use MP3::Tag; +use Audio::FLAC::Header; +use Audio::Scan; + +# CDDB module +use CDDB_get qw(get_cddb); + +# non-encoder/decoder related options +my +( + $to, + $recursive, + $preserve, + $rip, + $help, + $longhelp, + $verbose, + $verinfo, + $dryrun, + $delete, + $keep, + $overwrite, + $formats, + $topdir, + $only, + $first_run, + + @file, + @dir, + + %run, + %lang, +); + +my $silent = "> /dev/null 2>&1"; + +# tagging options +my +( + $title, + $track, + $artist, + $album, + $comment, + $year, + $genre, + $taginfo, +); + +# name, version & icon information +my $name = "Perl Audio Converter"; +my $version = "5.1.0"; +my $icon_path = "/etc/pacpl/pacpl.png"; + +# If these options are toggled, messages/errors will be displayed +# via kdialog or zenity/notify-send (depending on environment) +my ($gui, $kde, $gnome); + +# Debugging (for developer use only) +my $debug = 0; + +# default configuration. +my %config = ( + + IMPORTM => 0, + JOBS => 4, + + DEFOPTS => 1, + EOPTS => '', + DOPTS => '', + NOPTS => '', + + BITRATE => 128, + FREQ => 44100, + CHANNELS => 2, + EFFECT => '', + FCOMP => 2, + PCOMP => 3, + ACOMP => 3000, + OGGQUAL => 3, + SPXQUAL => 8, + AACQUAL => 100, + MPCQUAL => 'radio', + OFMODE => 'normal', + OFOPT => 'fast', + BRATIO => 2, + BQUANL => 1.0, + BPSIZE => 128, + + USE_CDDB => 1, + CDDB_HOST => 'freedb.freedb.org', + CDDB_PORT => 8880, + CDDB_MODE => 'cddb', + CDDB_INPUT => 1, + DEVICE => '/dev/dvd', + NSCHEME => '%ar - %ti', + + ZEN_DIR => 1, + ZEN_OPTS => 1, + KDE_DIR => 1, + KDE_OPTS => 1, + + ); + +# location of configuration file +my $conf_path = "@sysconfdir@/pacpl"; +my $po_dir = "@pkgdatadir@/locale"; +my $mod_dir = "$conf_path/modules"; + +my $conf_file; + +# load the appropriate locale file +load_lang(); + +# try to load configuration file in this order... +my @conf_locations = ( + "$ENV{HOME}/.pacplrc", # Local + "$conf_path/pacpl.conf", # Global + "$ENV{PWD}/pacpl.conf", # Current Directory + ); + +# try to load conf file from one of the above locations +foreach my $i (@conf_locations) { + if (not $conf_file and -e $i) { + $conf_file = $i; + say "$lang{debug} $lang{loaded_config} $conf_file" if $debug == 1; + } +} + +say "$lang{no_config}" if not $conf_file; + +# open config file. +if ($conf_file and -e $conf_file) { + + open(CONF, "$conf_file") or die "$lang{opening_file} $conf_file - $!\n"; + + my @conf_opts = ; + @conf_opts = grep(!/^#|^$/, @conf_opts); + + close(CONF); + + # now read config file options and change default values accordingly. + foreach (@conf_opts) { + chomp; + my ($k, $v) = split(/\s*=\s*/); + $config{$k} = $v if exists($config{$k}) and $v; + say "$lang{debug} $k = $v" if $debug == 1 and exists($config{$k}); + } +} + +my $codecs_conf = "$conf_path/codecs.conf"; + +# set default encoders/decoders +sub load_codecs { + + open(CODECS, "$codecs_conf") or die "$lang{opening_file} $codecs_conf - $!\n"; + + my @codecs = ; + @codecs = grep(!/^$|^#/, @codecs); + @codecs = grep(s/^\s*|\s*$//, @codecs); + + close(CODECS); + + foreach (@codecs) { + + chomp; + my ($k, $v) = split(/\s*=\s*/); + my ($e, $d) = split(/,/, $v); + + $k =~ tr/A-Z/a-z/; + + $run{$k}{DEFAULT_ENCODER} = $e if (exists($run{$k}{DEFAULT_ENCODER})); + $run{$k}{DEFAULT_DECODER} = $d if (exists($run{$k}{DEFAULT_DECODER})); + } +} + +# load po file and store in %lang hash +sub load_lang { + + my $po = "$po_dir/$ENV{LANG}.po"; + $po =~ s/\.UTF-8//i if $po =~ /UTF-8/i; + $po =~ s/\.utf8//i if $po =~ /utf8/i; + $po =~ s/_\w+// if not -e $po; + $po = "$po_dir/en_US.po" if not -e $po; + + open(LANG, "< $po") or die "error: could not open - $po\n$!\n"; + + my @data = ; + @data = grep(!/^#|^$/, @data); + + close(LANG); + + foreach (@data) { + chomp; + s/=/__EQ__/; + my ($k, $v) = split(/\s*__EQ__\s*/, $_); + $lang{$k} = $v; + } + +} + +my $banner = 1; + +# print error messages +sub perror { + my ($key, $msg) = @_; + say "$name - $version\n"; + say "$lang{error}: $lang{$key} $msg" . "\n"; + system("kdialog --title \"$name\" --error \"$lang{error}: $lang{$key} $msg\" &") if $gui and $kde; + system("zenity --title \"$name\" --error \"$lang{error}: $lang{$key} $msg\" &") if $gui and $gnome; + die "$lang{seek_help}\n"; +} + +# print notices/warnings +sub pnotice { + + my ($key, $msg, $nm) = @_; + + say "$name - $version\n" if $banner == 1; + print "$lang{$key} $msg"; + say '' if $nm == 1; + say "\n" if $nm == 2; + + $banner = 0; +} + +# defaults for user variables. +my $outfile; +my $outdir; +my $defopts = $config{DEFOPTS}; +my $eopts = $config{EOPTS}; +my $dopts = $config{DOPTS}; +my $nopts = $config{NOPTS}; +my $normalize = $config{NOPTS}; +my $bitrate = $config{BITRATE}; +my $freq = $config{FREQ}; +my $channels = $config{CHANNELS}; +my $effect = $config{EFFECT}; +my $fcomp = $config{FCOMP}; +my $acomp = $config{ACOMP}; +my $oggqual = $config{OGGQUAL}; +my $spxqual = $config{SPXQUAL}; +my $aacqual = $config{AACQUAL}; +my $mpcqual = $config{MPCQUAL}; +my $ofmode = $config{OFMODE}; +my $ofopt = $config{OFOPT}; +my $bratio = $config{BRATIO}; +my $bquanl = $config{BQUANL}; +my $bpsize = $config{BPSIZE}; + +my $cdinfo; +my $nocddb; +my $noinput; +my $device = $config{DEVICE}; +my $nscheme = $config{NSCHEME}; +my $my_encoder; +my $my_decoder; +my $encoder; +my $decoder; + +my $jobs = $config{JOBS}; + +# command line options +GetOptions +( + 't|to=s' => \$to, + 'r|recursive' => \$recursive, + 'p|preserve' => \$preserve, + 'h|help' => \$help, + 'l|longhelp' => \$longhelp, + 'v|verbose' => \$verbose, + 'f|formats' => \$formats, + 'o|only=s' => \$only, + 'k|keep' => \$keep, + 'j|jobs=n' => \$jobs, + + 'taginfo' => \$taginfo, + + 'version' => \$verinfo, + 'dryrun' => \$dryrun, + 'delete' => \$delete, + 'overwrite' => \$overwrite, + 'normalize' => \$normalize, + 'encoder=s' => \$my_encoder, + 'decoder=s' => \$my_decoder, + + 'title=s' => \$title, + 'track=n' => \$track, + 'artist=s' => \$artist, + 'album=s' => \$album, + 'comment=s' => \$comment, + 'year=n' => \$year, + 'genre=s' => \$genre, + + 'gui' => \$gui, + 'kde' => \$kde, + 'gnome' => \$gnome, + + 'eopts=s' => \$eopts, + 'dopts=s' => \$dopts, + 'defopts=n' => \$defopts, + 'nopts=s' => \$nopts, + 'outfile=s' => \$outfile, + 'outdir=s' => \$outdir, + + 'bitrate=n' => \$bitrate, + 'freq=n' => \$freq, + 'channels=n' => \$channels, + 'effect=s' => \$effect, + 'fcomp=n' => \$fcomp, + 'acomp=n' => \$acomp, + 'oggqual=n' => \$oggqual, + 'spxqual=n' => \$spxqual, + 'aacqual=n' => \$aacqual, + 'mpcqual=s' => \$mpcqual, + 'ofmode=s' => \$ofmode, + 'ofopt=s' => \$ofopt, + 'bratio=n' => \$bratio, + 'bquanl=n' => \$bquanl, + 'bpsize=n' => \$bpsize, + + 'rip=s' => \$rip, + 'nocddb' => \$nocddb, + 'noinput' => \$noinput, + 'device=s' => \$device, + 'nscheme=s' => \$nscheme, + 'cdinfo' => \$cdinfo, +); + +if (defined($preserve) && !defined($outdir)) { + die "You must specify --outdir when you use --preserve option. See man page.\n"; +} + +$silent = '' if $verbose; + +my $opts; +my $total_converted = 0; +my $total_failed = 0; + +# Initialize the fork manager with a count set through pacpl.conf or via the command line +my $pm = Parallel::ForkManager->new($jobs); + +# conversion options. when adding a new format, +# wild card %i = input file and %o = output file +%run = ( + + '3g2' => { + + DEFAULT_ENCODER => 'ffmpeg', + DEFAULT_DECODER => 'ffmpeg', + + ENCODER => { + ffmpeg => { + NAME => 'ffmpeg', + ESTR => sub { + $opts = "-ar 8000 -ac 1" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { NONE => 0, }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { + $opts = "-ar 8000 -ac 1" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { NONE => 0, }, + }, + + }, + + DECODER => { + ffmpeg => { + NAME => 'ffmpeg', + DSTR => sub { "-y -i %o $dopts %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "-y -i %o %dopts %o" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + + }, + + '3gp' => { + + DEFAULT_ENCODER => 'ffmpeg', + DEFAULT_DECODER => 'ffmpeg', + + ENCODER => { + ffmpeg => { + NAME => 'ffmpeg', + ESTR => sub { + $opts = "-ar 8000 -ac 1" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { NONE => 0, }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { + $opts = "-ar 8000 -ac 1" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { NONE => 0, }, + }, + + }, + + DECODER => { + ffmpeg => { + NAME => 'ffmpeg', + DSTR => sub { "-y -i %o $dopts %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "-y -i %o %dopts %o" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + + }, + + aac => { + + DEFAULT_ENCODER => "faac", + DEFAULT_DECODER => "faad", + + ENCODER => { + faac => { + NAME => "faac", + ESTR => sub { + $opts = "-q $aacqual" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts $opts %i -o %o" + }, + PROMPT => { AACQUAL => 1 }, + }, + + ffmpeg => { + NAME => 'ffmpeg', + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 1, + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + }, + + DECODER => { + faad => { + NAME => "faad", + DSTR => sub { "$dopts -o %i %o" }, + }, + + ffmpeg => { + NAME => "ffmpeg", + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + mplayer => { + NAME => "mplayer", + DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + ac3 => { + + DEFAULT_ENCODER => "ffmpeg", + DEFAULT_DECODER => "ffmpeg", + + ENCODER => { + ffmpeg => { + NAME => "ffmpeg", + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + avconv => { + NAME => "avconv", + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + aften => { + NAME => "aften", + ESTR => sub { + $opts = "-v 1 -q $bitrate -2" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts $opts %i %o" + }, + + PROMPT => { + BITRATE => 1, + }, + }, + + }, + + DECODER => { + mplayer => { + NAME => "mplayer", + DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, + }, + + ffmpeg => { + NAME => "ffmpeg", + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => "avconv", + DSTR => sub { "$dopts -y -i %i %o" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + adts => { + + DEFAULT_ENCODER => 'ffmpeg', + DEFAULT_DECODER => 'ffmpeg', + + ENCODER => { + ffmpeg => { + NAME => 'ffmpeg', + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libfaac" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $opts $eopts -strict -2 %o" + }, + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libfaac" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $opts $eopts %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + }, + + DECODER => { + ffmpeg => { + NAME => 'ffmpeg', + DSTR => "$dopts -y -i %i %o", + }, + + avconv => { + NAME => 'avconv', + DSTR => "$dopts -y -i %i %o", + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + ape => { + + DEFAULT_ENCODER => "mac", + DEFAULT_DECODER => "mac", + + ENCODER => { + mac => { + NAME => "mac", + ESTR => sub { + $opts = "-c$acomp" if $defopts == 1; + $opts = '' if $defopts == 0; + "%i %o $opts $eopts" + }, + + PROMPT => { ACOMP => 1 }, + }, + }, + + DECODER => { + mac => { + NAME => "mac", + DSTR => sub { "%i %o -d $dopts" }, + }, + + ffmpeg => { + NAME => 'ffmpeg', + DSTR => sub { "-y -i %i %dopts %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "-y -i %i $dopts %o" }, + }, + }, + + TAGS => { + READ => 1, + WRITE => 0, + MODULE => "Audio::Scan", + }, + }, + + amr => { + + DEFAULT_ENCODER => "ffmpeg", + DEFAULT_DECODER => "ffmpeg", + + ENCODER => { + ffmpeg => { + NAME => "ffmpeg", + ESTR => sub { + $opts = "-ar 8000 -ac 1" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { NONE => 0, }, + }, + + avconv => { + NAME => "avconv", + ESTR => sub { + $opts = "-ar 8000 -ac 1" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { NONE => 0, }, + }, + + }, + + DECODER => { + ffmpeg => { + NAME => 'ffmpeg', + DSTR => sub { "-y -i %i $dopts %o" }, + }, + + avconv => { + NAME => 'ffmpeg', + DSTR => sub { "-y -i %i %dopts %o" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + + }, + + bonk => { + + DEFAULT_ENCODER => "bonk", + DEFAULT_DECODER => "bonk", + + ENCODER => { + bonk => { + NAME => "bonk", + ESTR => sub { + $opts = "-q $bquanl -b $bratio -s $bpsize" if $defopts == 1; + $opts = '' if $defopts == 0; + "encode $eopts $opts %i -o %o" + }, + + PROMPT => { + BQUANL => 1, + BRATIO => 1, + BPSIZE => 1, + }, + }, + }, + + DECODER => { + bonk => { + NAME => "bonk", + DSTR => sub { "decode %i -o %o" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + dts => { + + DEFAULT_ENCODER => 'ffmpeg', + DEFAULT_DECODER => 'ffmpeg', + + ENCODER => { + ffmpeg => { + NAME => 'ffmpeg', + ESTR => sub { + $opts = '' if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $opts $eopts -strict -2 -codec:a libfaac %o" + }, + + PROMPT => { NONE => 0, }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { + $opts = '' if $defopts == 1 or $defopts == 0; + "-y -i %i $opts $eopts -codec:a libfaac %o", + }, + PROMPT => { NONE => 0, }, + }, + + dcaenc => { + NAME => 'dcaenc', + ESTR => sub { + $opts = "$bitrate" if $defopts == 0; + $opts = '' if $defopts == 1; + "%i %o $opts" + }, + + PROMPT => { NONE => 0, }, + }, + }, + + DECODER => { + ffmpeg => { + NAME => 'ffmpeg', + DSTR => "$dopts -y -i %i %o", + }, + + avconv => { + NAME => 'avconv', + DSTR => "$dopts -y -i %i %o", + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + flac => { + + DEFAULT_ENCODER => "flac", + DEFAULT_DECODER => "flac", + + ENCODER => { + flac => { + NAME => "flac", + ESTR => sub { + $opts = "-$fcomp" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts -f $opts %i -o %o" + }, + PROMPT => { FCOMP => 1 }, + }, + + flake => { + NAME => "flake", + ESTR => sub { + $opts = "-$fcomp" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts $opts %i -o %o" + }, + PROMPT => { FCOMP => 1 }, + }, + + ffmpeg => { + NAME => "ffmpeg", + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 1; + "-y -i %i $eopts $opts %o" + }, + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + }, + + DECODER => { + flac => { + NAME => "flac", + DSTR => sub { "$dopts -f -d %i -o %o" }, + }, + + ffmpeg => { + NAME => "ffmpeg", + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + mplayer => { + NAME => "mplayer", + DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, + }, + }, + + TAGS => { + READ => 1, + WRITE => 1, + MODULE => "Audio::FLAC::Header", + }, + }, + + fla => { + + DEFAULT_ENCODER => "flac", + DEFAULT_DECODER => "flac", + + ENCODER => { + flac => { + NAME => "flac", + ESTR => sub { + $opts = "-$fcomp" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts -f $opts %i -o %o" + }, + PROMPT => { FCOMP => 1 }, + }, + }, + + DECODER => { + flac => { + NAME => "flac", + DSTR => sub { "$dopts -f -d %i -o %o" }, + }, + + mplayer => { + NAME => "mplayer", + DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, + }, + }, + + TAGS => { + READ => 1, + WRITE => 1, + MODULE => "Audio::FLAC::Header", + }, + }, + + la => { + + DEFAULT_ENCODER => "la", + DEFAULT_DECODER => "la", + + ENCODER => { + la => { + NAME => "la", + ESTR => sub { "-overwrite $eopts %i %o" }, + PROMPT => { NONE => 0, }, + }, + }, + + DECODER => { + la => { + NAME => "la", + ESTR => sub { "-console $dopts %i > %o" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + mp2 => { + + DEFAULT_ENCODER => "ffmpeg", + DEFAULT_DECODER => "ffmpeg", + + ENCODER => { + ffmpeg => { + NAME => 'ffmpeg', + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + toolame => { + NAME => 'toolame', + ESTR => sub { + $opts = "-b $bitrate" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts $opts %i %o" + }, + + PROMPT => { + BITRATE => 1, + }, + }, + + twolame => { + NAME => 'twolame', + ESTR => sub { + $opts = "-b $bitrate -s $freq" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts $opts %i %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + }, + }, + + sox => { + NAME => 'sox', + ESTR => sub { + $opts = "-c $channels -r $bitrate" if $defopts == 1; + $opts = '' if $defopts == 0; + "%i $eopts $opts %o" + }, + + PROMPT => { + BITRATE => 1, + CHANNELS => 1, + }, + }, + }, + + DECODER => { + + ffmpeg => { + NAME => 'ffmpeg', + DSTR => "$dopts -y -i %i %o", + }, + + avconv => { + NAME => 'avconv', + DSTR => "%dopts -y -i %i %o", + }, + + mplayer => { + NAME => 'mplayer', + DSTR => "-vc null -vo null -ao pcm:file=%o %i", + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + mp3 => { + + DEFAULT_ENCODER => "lame", + DEFAULT_DECODER => "lame", + + ENCODER => { + lame => { + NAME => "lame", + ESTR => sub { + $opts = "--resample $freq -b $bitrate -h" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts $opts %i %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + }, + }, + + bladeenc => { + NAME => "bladeenc", + ESTR => sub { + $opts = "-br $bitrate" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts $opts %i %o" + }, + PROMPT => { BITRATE => 1 }, + }, + + ffmpeg => { + NAME => "ffmpeg", + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts -y -i %i $opts %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + sox => { + NAME => "sox", + ESTR => sub { + $opts = "-r $freq -c $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "%i $eopts $opts %o" + }, + + PROMPT => { + FREQ => 1, + CHANNELS => 1, + }, + }, + }, + + DECODER => { + lame => { + NAME => "lame", + DSTR => sub { "$dopts --decode %i %o" }, + }, + + ffmpeg => { + NAME => "ffmpeg", + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "$dopts -y -i %i %O" }, + }, + + mplayer => { + NAME => "mplayer", + DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, + }, + + sox => { + NAME => "sox", + DSTR => sub { "%i $dopts %o" }, + }, + }, + + TAGS => { + READ => 1, + WRITE => 1, + MODULE => "MP3::Tag", + }, + }, + + mp3hd => { + + DEFAULT_ENCODER => "mp3hdEncoder", + DEFAULT_DECODER => "mp3hdDecoder", + + ENCODER => { + mp3hdEncoder => { + NAME => "mp3hdEncoder", + ESTR => sub { + $opts = "-br $bitrate" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts $opts -if %i -of %o" + }, + PROMPT => { BITRATE => 1 }, + }, + }, + + DECODER => { + mp3hdDecoder => { + NAME => "mp3hdDecoder", + DSTR => sub { "$dopts -if %i -of %o" }, + }, + }, + + TAGS => { + WRITE => 1, + READ => 1, + MODULE => "MP3::Tag", + }, + }, + + mp4 => { + + DEFAULT_ENCODER => "faac", + DEFAULT_DECODER => "faad", + + ENCODER => { + + faac => { + NAME => "faac", + ESTR => sub { + $opts = "-q $aacqual" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts -w $opts %i -o %o" + }, + PROMPT => { AACQUAL => 1 }, + }, + + ffmpeg => { + NAME => "ffmpeg", + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PRIMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + }, + + DECODER => { + + faad => { + NAME => "faad", + DSTR => sub { "$dopts -o %o %i" }, + }, + + ffmpeg => { + NAME => "ffmpeg", + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + mplayer => { + NAME => "mplayer", + DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, + }, + }, + + TAGS => { + READ => 1, + WRITE => 1, + MODULE => "Audio::Scan", + }, + }, + + m4a => { + + DEFAULT_ENCODER => "faac", + DEFAULT_DECODER => "faad", + + ENCODER => { + + faac => { + NAME => "faac", + ESTR => sub { + $opts = "-q $aacqual" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts -w $opts %i -o %o" + }, + PROMPT => { AACQUAL => 1 }, + }, + + ffmpeg => { + NAME => "ffmpeg", + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts -y -i %i $opts %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + }, + + DECODER => { + + faad => { + NAME => "faad", + DSTR => sub { "$dopts -o %o %i" }, + }, + + ffmpeg => { + NAME => "ffmpeg", + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + mplayer => { + NAME => "mplayer", + DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, + }, + + }, + + ESTR => sub { "$eopts -w -q $aacqual %i -o %o" }, + + TAGS => { + READ => 1, + WRITE => 1, + MODULE => "Audio::Scan", + }, + }, + + m4b => { + + DEFAULT_ENCODER => undef, + DEFAULT_DECODER => "faad", + + DECODER => { + faad => { + NAME => "faad", + DSTR => sub { "$dopts -o %o %i" }, + }, + + mplayer => { + NAME => "mplayer", + DSTR => sub { "$dopts -vc null -vo null -ao pcm:file=%o %i" }, + }, + + ffmpeg => { + NAME => 'ffmpeg', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 1, + MODULE => undef, + }, + }, + + mpc => { + + DEFAULT_ENCODER => "mpcenc", + DEFAULT_DECODER => "mpcdec", + + ENCODER => { + + mpcenc => { + NAME => "mpcenc", + ESTR => sub { + $opts = "--$mpcqual" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts --overwrite $opts %i %o" + }, + PROMPT => { MPCQUAL => 1 }, + }, + }, + + DECODER => { + + mpcdec => { + NAME => "mpcdec", + DSTR => sub { "$dopts %i %o" }, + }, + + ffmpeg => { + NAME => 'ffmpeg', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + mplayer => { + NAME => "mplayer", + DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, + }, + }, + + TAGS => { + READ => 1, + WRITE => 1, + MODULE => "Audio::Scan", + }, + + PROMPT => { + MPCQUAL => 1, + }, + }, + + mpp => { + + DEFAULT_ENCODER => "mpcenc", + DEFAULT_DECODER => "mpcdec", + + ENCODER => { + + mpcenc => { + NAME => "mpcenc", + ESTR => sub { + $opts = "--$mpcqual" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts --overwrite $opts %i %o" + }, + PROMPT => { MPCQUAL => 1 }, + }, + }, + + DECODER => { + + mpcdec => { + NAME => "mpcdec", + DSTR => sub { "$dopts %i %o" }, + }, + + ffmpeg => { + NAME => 'ffmpeg', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + mplayer => { + NAME => "mplayer", + DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, + }, + }, + + TAGS => { + READ => 1, + WRITE => 1, + MODULE => "Audio::Scan", + }, + }, + + off => { + DEFAULT_ENCODER => 'off', + DEFAULT_DECODER => 'off', + + ENCODER => { + off => { + NAME => 'off', + ESTR => sub { + $opts = "--mode $ofmode --optimize $ofopt" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts --overwrite $opts %i --output %o" + }, + + PROMPT => { + OFMODE => 1, + OFOPT => 1, + }, + }, + }, + + DECODER => { + off => { + NAME => 'off', + DSTR => sub { "$dopts --overwrite --decode %i --output %o" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + ofr => { + + DEFAULT_ENCODER => "ofr", + DEFAULT_DECODER => "ofr", + + ENCODER => { + ofr => { + NAME => "ofr", + ESTR => sub { + $opts = "--mode $ofmode --optimize $ofopt" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts --overwrite $opts %i --output %o" + }, + + PROMPT => { + OFMODE => 1, + OFOPT => 1, + }, + }, + }, + + DECODER => { + ofr => { + NAME => "ofr", + DSTR => sub { "$dopts --overwrite --decode %i --output %o" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + ofs => { + + DEFAULT_ENCODER => "ofs", + DEFAULT_DECODER => "ofs", + + ENCODER => { + ofs => { + NAME => "ofs", + ESTR => sub { + $opts = "--mode $ofmode --optimize $ofopt" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts --overwrite $opts %i --output %o" + }, + + PROMPT => { + OFMODE => 1, + OFOPT => 1, + }, + }, + }, + + DECODER => { + ofs => { + NAME => "ofs", + DSTR => sub { "$dopts --overwrite --decode %i --output %o" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + + oga => { + DEFAULT_ENCODER => 'oggenc', + DEFAULT_DECODER => 'oggdec', + + ENCODER => { + oggenc => { + NAME => 'oggenc', + ESTR => sub { + $opts = "--resample $freq -q $oggqual" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts $opts %i %o" + }, + PROMPT => { + FREQ => 1, + OGGQUAL => 1, + }, + }, + + ffmpeg => { + NAME => "ffmpeg", + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libvorbis" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libvorbis" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + sox => { + NAME => "sox", + ESTR => sub { + $opts = "-r $freq -c $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "%i $eopts $opts %o" + }, + + PROMPT => { + FREQ => 1, + CHANNELS => 1, + }, + }, + }, + + DECODER => { + oggdec => { + NAME => "oggdec", + DSTR => sub { "$dopts %i --output %o" }, + }, + + ffmpeg => { + NAME => "ffmpeg", + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + mplayer => { + NAME => "mplayer", + DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, + }, + + sox => { + NAME => "sox", + DSTR => sub { "%i $dopts %o" }, + }, + }, + + TAGS => { + READ => 1, + WRITE => 1, + MODULE => "vorbiscomment", + }, + }, + + ogg => { + + DEFAULT_ENCODER => "oggenc", + DEFAULT_DECODER => "oggdec", + + ENCODER => { + oggenc => { + NAME => "oggenc", + ESTR => sub { + $opts = "--resample $freq -q $oggqual" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts $opts %i -o %o" + }, + + PROMPT => { + FREQ => 1, + OGGQUAL => 1, + }, + }, + + ffmpeg => { + NAME => "ffmpeg", + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libvorbis" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { + $opts = "-ab $bitrate.k -ar $freq -ac $channels -codec:a libvorbis" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { + BITRATE => 1, + FREQ => 1, + CHANNELS => 1, + }, + }, + + sox => { + NAME => "sox", + ESTR => sub { + $opts = "-r $freq -c $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "%i $eopts $opts %o" + }, + + PROMPT => { + FREQ => 1, + CHANNELS => 1, + }, + }, + }, + + DECODER => { + oggdec => { + NAME => "oggdec", + DSTR => sub { "$dopts %i --output %o" }, + }, + + ffmpeg => { + NAME => "ffmpeg", + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + mplayer => { + NAME => "mplayer", + DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, + }, + + sox => { + NAME => "sox", + DSTR => sub { "%i $dopts %o" }, + }, + }, + + TAGS => { + READ => 1, + WRITE => 1, + MODULE => "vorbiscomment", + }, + }, + + opus => { + + DEFAULT_ENCODER => "opusenc", + DEFAULT_DECODER => "opusdec", + + ENCODER => { + opusenc => { + NAME => 'opusenc', + ESTR => sub { + $opts = "--bitrate $bitrate" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts $opts %i %o" + }, + PROMTP => { + BITRATE => 1, + }, + }, + }, + + DECODER => { + opusdec => { + NAME => 'opusdec', + DSTR => sub { "--force-wav %i %o" }, + PROMPT => { NONE => 0 }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + raw => { + + DEFAULT_ENCODER => "sox", + DEFAULT_DECODER => "sox", + + ENCODER => { + sox => { + NAME => 'sox', + ESTR => sub { + $opts = "-r $freq -c $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "%i $opts $eopts %o $effect" + }, + + PROMPT => { + FREQ => 1, + CHANNELS => 1, + }, + }, + }, + + DECODER => { + sox => { + NAME => 'sox', + DSTR => sub { "-w -s -r $freq -c $channels $dopts %i %o" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + rm => { + + DEFAULT_ENCODER => 'ffmpeg', + DEFAULT_DECODER => 'ffmpeg', + + ENCODER => { + ffmpeg => { + NAME => 'ffmpeg', + ESTR => sub { + $opts = "-ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { + FREQ => 1, + CHANNELS => 1, + }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { + $opts = "-ar $freq -ac $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { + FREQ => 1, + CHANNELS => 1, + }, + }, + }, + + DECODER => { + mplayer => { + NAME => 'mplayer', + DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, + }, + + ffmpeg => { + NAME => 'ffmpeg', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + shn => { + + DEFAULT_ENCODER => "shorten", + DEFAULT_DECODER => "shorten", + + ENCODER => { + shorten => { + NAME => "shorten", + ESTR => sub { + $opts = "-c $channels" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts $opts %i %o" + }, + PROMPT => { CHANNELS => 1 }, + }, + }, + + DECODER => { + shorten => { + NAME => "shorten", + DSTR => sub { "-x %i %o" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + spx => { + + DEFAULT_ENCODER => "speexenc", + DEFAULT_DECODER => "speexdec", + + ENCODER => { + speexenc => { + NAME => "speexenc", + ESTR => sub { + $opts = "--quality $spxqual" if $defopts == 1; + $opts = '' if $defopts == 0; + "$eopts $opts %i %o" + }, + PROMPT => { SPXQUAL => 1 }, + }, + + ffmpeg => { + NAME => 'ffmpeg', + ESTR => sub { + $opts = "--bitrate $bitrate.k" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i %i $eopts $opts %o" + }, + + PROMPT => { + BITRATE => 1, + }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { + $opts = "--bitrate $bitrate.k" if $defopts == 1; + $opts = '' if $defopts == 0; + "-y -i $eopts $opts %o" + }, + PROMPT => { + BITRATE => 1, + }, + }, + }, + + DECODER => { + speexdec => { + NAME => "speexdec", + DSTR => sub { "$dopts %i %o" }, + }, + + ffmpeg => { + NAME => 'ffmpeg', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + }, + + TAGS => { + READ => 1, + WRITE => 1, + MODULE => undef, + }, + }, + + tta => { + + DEFAULT_ENCODER => "ttaenc", + DEFAULT_DECODER => "ttaenc", + + ENCODER => { + ttaenc => { + NAME => "ttaenc", + ESTR => sub { "$eopts -e %i -o %o" }, + PROMPT => { NONE => 0, }, + }, + }, + + DECODER => { + ttaenc => { + NAME => "ttaenc", + DSTR => sub { "$dopts -d %i -o %o" }, + }, + + ffmpeg => { + NAME => "ffmpeg", + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + mplayer => { + NAME => "mplayer", + DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, + }, + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + wav => { + + DEFAULT_ENCODER => "mv", + DEFAULT_DECODER => "cp", + + ENCODER => { + mv => { + NAME => "mv", + ESTR => sub { "%i %o" }, + PROMPT => { NONE => 0, }, + }, + }, + + DECODER => { + cp => { + NAME => "cp", + DSTR => sub { "%i %o" }, + } + }, + + TAGS => { + READ => 0, + WRITE => 0, + MODULE => undef, + }, + }, + + wv => { + + DEFAULT_ENCODER => "wavpack", + DEFAULT_DECODER => "wvunpack", + + ENCODER => { + wavpack => { + NAME => "wavpack", + ESTR => sub { "$eopts -h -y %i -o %o" }, + PROMPT => { NONE => 0, }, + }, + + ffmpeg => { + NAME => 'ffmpeg', + ESTR => sub { "-y -i %i $eopts %o" }, + PROMPT => { NONE => 0, }, + }, + + avconv => { + NAME => 'avconv', + ESTR => sub { "-y -i %i $eopts %o" }, + PROMPT => { NONE => 0, }, + }, + }, + + DECODER => { + wvunpack => { + NAME => "wvunpack", + DSTR => sub { "$dopts -y %i -o %o" }, + }, + + ffmpeg => { + NAME => "ffmpeg", + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + avconv => { + NAME => 'avconv', + DSTR => sub { "$dopts -y -i %i %o" }, + }, + + mplayer => { + NAME => "mplayer", + DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, + }, + }, + + TAGS => { + READ => 1, + WRITE => 1, + MODULE => "Audio::Scan", + }, + }, +); + +# supported ffmpeg/avconv formats (decode only) +my @ffmpeg_codecs = ( "mmf", "ra", "wma" ); +my @ffmpeg_forks = ( "avconv", "ffmpeg" ); + +foreach my $fork (@ffmpeg_forks) { + + foreach my $codec (@ffmpeg_codecs) { + + $run{$codec}{DEFAULT_ENCODER} = $fork; + $run{$codec}{DEFAULT_DECODER} = $fork; + $run{$codec}{ENCODER}{$fork}{NAME} = $fork; + $run{$codec}{DECODER}{$fork}{NAME} = $fork; + $run{$codec}{DECODER}{$fork}{DSTR} = sub {"-y %i $dopts %o"}; + $run{$codec}{ENCODER}{$fork}{ESTR} = sub {"-y -i %i $eopts -ab $bitrate.k -ar $freq -ac $channels %o"}; + $run{$codec}{TAGS}{READ} = 0; + $run{$codec}{TAGS}{WRITE} = 0; + $run{$codec}{TAGS}{MODULE} = undef; + } + +} + +# support reading of WMA tags via Audio::Scan +$run{wma}{TAGS}{READ} = 1; +$run{wma}{TAGS}{MODULE} = "Audio::Scan"; + +# supported video to audio types +my @movie_codecs = ( + "rv", "asf", "avi", "divx", + "mkv", "mpg", "mpeg", "mov", + "ogm", "qt", "vcd", "vob", + "wmv", "flv", "svcd", "m4v", + "nsv", "nuv", "psp", "smk", + "ogv", "webm", + + # decode only audio formats + "vqf", "tak", + ); + +foreach (@movie_codecs) { + $run{$_}{DEFAULT_ENCODER} = undef; + $run{$_}{DEFAULT_DECODER} = "ffmpeg"; + $run{$_}{DECODER}{mplayer}{NAME} = "mplayer"; + $run{$_}{DECODER}{ffmpeg}{NAME} = "ffmpeg"; + $run{$_}{DECODER}{mplayer}{DSTR} = sub { "$dopts -vc null -vo null -ao pcm:file=%o %i" }; + $run{$_}{DECODER}{ffmpeg}{DSTR} = sub { "$dopts -i %i %o"; }; + $run{$_}{TAGS}{READ} = 0; + $run{$_}{TAGS}{WRITE} = 0; + $run{$_}{TAGS}{MODULE} = undef; +} + +# supported sndfile-convert formats +my @sndfile = ( + "pvf", "caf", "sf", "paf", "fap", "sd2", + "mat4", "mat5", "mat", "ircam", "w64", "nist", + "rf64", + ); + +foreach (@sndfile) { + + $run{$_}{DEFAULT_ENCODER} = "sndfile-convert"; + $run{$_}{DEFAULT_DECODER} = "sndfile-convert"; + $run{$_}{ENCODER}{"sndfile-convert"}{NAME} = "sndfile-convert"; + $run{$_}{DECODER}{"sndfile-convert"}{NAME} = "sndfile-convert"; + $run{$_}{ENCODER}{"sndfile-convert"}{ESTR} = sub { "$eopts %i %o" }; + $run{$_}{DECODER}{"sndfile-convert"}{DSTR} = sub { "$dopts %i %o" }; + $run{$_}{TAGS}{READ} = 0; + $run{$_}{TAGS}{WRITE} = 0; + $run{$_}{TAGS}{MODULE} = undef; +} + +# supported sox formats +my @sox_codecs = ( + "aiff", "aif", "au", "snd", "voc", + "smp", "avr", "cdr", "8svx", "amb", + "dat", "dvms", "f32", "f64", "fssd", + "gsrt", "hcom", "txw", "vms", "al", + "sou", "ima", "prc", "cvu", + "maud", + ); + +foreach (@sox_codecs) { + + $run{$_}{DEFAULT_ENCODER} = "sox"; + $run{$_}{DEFAULT_DECODER} = "sox"; + $run{$_}{ENCODER}{sox}{NAME} = "sox"; + $run{$_}{DECODER}{sox}{NAME} = "sox"; + $run{$_}{ENCODER}{sox}{ESTR} = sub { "%i -r $freq -c $channels $eopts %o $effect" }; + $run{$_}{DECODER}{sox}{DSTR} = sub { "%i $dopts %o" }; + $run{$_}{TAGS}{READ} = 0; + $run{$_}{TAGS}{WRITE} = 0; + $run{$_}{TAGS}{MODULE} = undef; + + $run{$_}{ENCODER}{sox}{PROMPT}{FREQ} = 1; + $run{$_}{ENCODER}{sox}{PROMPT}{CHANNELS} = 1; + +} + +# load codecs.conf file +load_codecs() if -e $codecs_conf; + +my $out_name = $outfile; +my $out_dir = $outdir; +my $first_message = 1; +my %files; +my $number = 0; + +# process all files and directories +sub proc_input { + + $to =~ tr/A-Z/a-z/; + + perror("bad_input","") unless(exists($run{$to})); + + proc_preserve_dir($dir[0]) if @dir and $preserve; # process recursive directory preservation (sends to proc_files + proc_dirs() if @dir and not $preserve; # process directories including recursively (sends to proc_files) + proc_files() if @file; # process all files + fork_files(); # start the conversion process. +} + +# process all files (all roads lead to rome) +sub proc_files { + + if (@file) { + + foreach my $i (sort(@file)) { + + my ($file, $dir, $ext) = fileparse("$i", qr/\.[^.]*/); + + $ext =~ s/^\.//; + $dir = rel2abs($dir); + $outdir = $dir if not defined($out_dir) and not $preserve; + $outdir = $out_dir if $preserve; + + my $if = $ext; + $if =~ tr/A-Z/a-z/; + + $only =~ tr/A-Z/a-z/ if $only; + + next if $only and $if ne $only; + + $encoder = $my_encoder if defined($my_encoder); + $decoder = $my_decoder if defined($my_decoder); + + $encoder = $run{$to}{DEFAULT_ENCODER} if not $my_encoder; + $decoder = $run{$if}{DEFAULT_DECODER} if not $my_decoder; + + if (-e "$file.$to" and not $overwrite) { + pnotice("overwrite","$file.$to",1); + $total_failed++; + next; + } + + if (check_input($file,$dir,$if) == 0) { + + pnotice("unk_encoder","$file.$ext",1), next unless(exists($run{$to}{ENCODER}{$encoder})); + pnotice("unk_decoder","$file.$ext",1), next unless(exists($run{$if}{DECODER}{$decoder})); + + get_visual_opts($to,$outdir) if $gui and not defined($first_run); + + $first_run = 1; + + perror("multi_out","") if (defined($out_name) and $#file gt 0 or defined($out_name) and @dir); + perror("no_outdir","") if (not -e $outdir and not -d $outdir); + + $outfile = "$file" if not $out_name; + + if ($keep and $if eq $to) { + system("cp -v \"$dir/$file.$ext\" \"$outdir/$outfile.$ext\"") if $outdir ne $dir and not -e "$outdir/$outfile.$ext"; + next if $outdir eq $dir; + } + + else { + $files{"FILE$number"}{FILE} = "$dir/$file"; + $files{"FILE$number"}{OUTF} = "$outdir/$outfile"; + $files{"FILE$number"}{EXT} = "$ext"; + $files{"FILE$number"}{NAME} = "$file"; + $files{"FILE$number"}{OUTD} = "$outfile"; + $files{"FILE$number"}{DECODER} = "$decoder"; + + $number++; + } + + } + } + } + undef(@file); +} + +# process directories and push all to @file arrary +sub proc_dirs { + + if (@dir) { + + my @tmp_dir = @dir; + undef(@dir); + $topdir = $tmp_dir[0]; + + if (not $recursive) { + + undef(@file); + + foreach my $d (@tmp_dir) { + + opendir(DIR, "$d") or perror("opening_dir","$d: $!"); + my @dir_files = readdir(DIR); + closedir(DIR); + perror("empty_dir","$d") if $#dir_files <= 1; + + foreach my $f (@dir_files) { + + if (not -d $f and not -d "$d/$f") { + push(@file, "$d/$f"); + undef($out_name); + } + } + } + + proc_files(); + return 0; + + } + + elsif ($recursive) { + + if (not $preserve) { + + undef(@file); + + foreach my $r (@tmp_dir) { + + $r = rel2abs($r); + + find ( sub { + my $rfile = $File::Find::name; + push(@file, $rfile) if not -d $rfile; + }, $r + ); + } + + proc_files(); + return 0; + + } + } + + } +} + +# preserve directory structuer (revised 10-7-2013) +my $out_dir_original = rel2abs($outdir) if $outdir and -d $outdir; + +sub proc_preserve_dir { + +$topdir = rel2abs($dir[0]); + +perror("no_outdir","") if not defined($out_dir_original); +perror("no_outdir","") if not -d $out_dir_original; + +undef(@file); # clear the array before we begin. + +find ( sub { + my $val = $File::Find::name; + $val =~ s/(\$)/\\\$/g; + + if ($val ne $topdir) { + + $val =~ s/$topdir\///; + + # create mirrored directories in output directory + if (not -f fileparse("$topdir/$val") and not -d "$out_dir_original/$val") { + say "creating directory $out_dir_original/$val" if not -f "$topdir/$val" and $verbose; + mkdir("$out_dir_original/$val", 0755) if not -f "$topdir/$val"; + } + + # this will list all files in their original directories + if (-f "$topdir/$val") { + say "$lang{debug} pushing to \@file: $topdir/$val" if $debug == 1; + push(@file, "$topdir/$val"); + } + + # set $out_dir to the + $out_dir = "$out_dir_original/" . dirname($val) if -f "$topdir/$val"; + + # send file, and output dir to proc_files(); + proc_files(); + } + + }, $topdir + ); +} + +# convert input to destination format +sub convert { + + my ($inf, $outf, $infmt, $iname, $oname, $dec) = @_; + + my $if = $infmt; + $if =~ tr/A-Z/a-z/; + + clear_tag_hash() if not $rip; + + # catch ^C. will have to be pressed repeatedly to exit the process. + $SIG{INT} = sub { + unlink("$outf.$$.wav"); + kill 9, $$; + }; + + # check to see if encoder/decoder exists. if not, see if we have one + # that supports the desired input/output formats. + $decoder = $dec; + check_encoder(); + check_decoder($infmt); + + my $decode_string = $run{$if}{DECODER}{$decoder}{DSTR}->(); + $decode_string =~ s/%i/\"$inf.$infmt\"/; + $decode_string =~ s/%o/\"$outf.$$.wav\"/; + $decode_string =~ s/(\$|\\)/\\$1/g; + + pnotice("debug","\n$run{$if}{DECODER}{$decoder}{NAME} $decode_string", 2) if $dryrun; + + # decode input file to temporary wav + system("$run{$if}{DECODER}{$decoder}{NAME} $decode_string $silent") if not $dryrun; + + # remove temporary wav file and die if decode fails + if ($? > 0) { + unlink("$outf.$$.wav") if -e "$outf.$$.wav"; + say ""; + $banner = 0; + pnotice("decode_failed","$inf.$infmt: try with --verbose",1); + return 1; + } + + # normalize wav file before encoding to output format + perror("no_app","normalize") if $normalize and not `which normalize 2>/dev/null`; + system("normalize $nopts \"$outf.$$.wav\"") if $normalize; + + # copy meta-data from input file to %tag_name + read_tags("$inf.$infmt", "$if") if $run{$if}{TAGS}{READ} == 1 and not $dryrun; + + my $tag_opts = format_tags($to); # tag options for mp4/m4a/m4b/mpc/mpp/bonk/spx/wv + + my $encode_string = $run{$to}{ENCODER}{$encoder}{ESTR}->(); + $encode_string =~ s/%i/$tag_opts \"$outf.$$.wav\"/ if $to =~ /mpc|mpp|mp4|m4a/ and $encoder eq "faac" or $encoder eq "mpcenc"; + $encode_string =~ s/%i/\"$outf.$$.wav\" $tag_opts/ if $to =~ /mpc|mpp|mp4|m4a/ and $encoder eq "ffmpeg" or $encoder eq "avconv"; + $encode_string =~ s/%i/\"$outf.$$.wav\"/ if $to !~ /mpc|mpp|mp4|m4a/; + $encode_string =~ s/%o/$tag_opts \"$outf.$to\"/ if $tag_opts ne " " and $to !~ /mpc|mpp|mp4|m4a/; + $encode_string =~ s/%o/\"$outf.$to\"/ if $tag_opts eq " " or $to =~ /mpc|mpp|mp4|m4a/; + $encode_string =~ s/(\$|\\)/\\$1/g; + + # read tag options from command line if present + get_user_tags(); + + pnotice("debug","\n$run{$to}{ENCODER}{$encoder}{NAME} $encode_string", 2) if $dryrun; + + # encode temporary WAV to desired output format. + system("$run{$to}{ENCODER}{$encoder}{NAME} $encode_string $silent") if not $dryrun; + + # remove partially encoded output file and temporary wav if encoding fails + if ($? > 0) { + unlink("$outf.$to") if -e "$outf.$to"; + unlink("$outf.$$.wav") if -e "$outf.$$.wav"; + say ""; + $banner = 0; + pnotice("encode_failed","$outf.$to: $?",1); + return 1; + } + + # write meta-data to output file from %tag_name hash + write_tags("$outf.$to", "$to") if $run{$to}{TAGS}{WRITE} == 1 and $tag_opts eq " " and not $dryrun; + + unlink("$outf.$$.wav") if not $dryrun; + unlink("$inf.$infmt") if $delete and not $dryrun; + + pnotice("removed_tmp","$outf.$$.wav","2") if $verbose; + pnotice("removed_src","$inf.$infmt", "2") if $delete and $verbose; +} + +$pm->run_on_finish +( sub { + my $pid = shift; + my $exit_code = shift; + my $ident = shift; + + if (-e "$ident.$to") { + $total_converted++; + } + say "$lang{debug} PID: $pid EXIT_CODE: $exit_code IDENTITY: \"$ident.$to\"" if $debug == 1; + } +); + +# convert all files that have been placed in the %files hash through various procs* +sub fork_files { + + say "\n$name - $version\n" if not $gui and $banner == 1; + + foreach (sort(keys(%files))) + { + $pm->start($files{$_}{OUTF}) and next; + my $msg = "$lang{converting}" . " " . basename($files{$_}{FILE}) . ".$files{$_}{EXT} -> $to"; + say "$msg" if not $gui; + system("kdialog --icon $icon_path --title \"$name\" --passivepopup \"$msg\" 10 &") if $gui and $kde; + system("notify-send \"$name\" \"$msg\" -t 35 -i $icon_path &") if $gui and $gnome; + convert("$files{$_}{FILE}","$files{$_}{OUTF}","$files{$_}{EXT}","$files{$_}{NAME}","$files{$_}{OUTD}","$files{$_}{DECODER}"); + $pm->finish; + } + + $pm->wait_all_children; + $total_failed = $number - $total_converted if $total_converted < $number; + + my $finished_msg = "\n$lang{total_converted} $total_converted, $lang{failed} $total_failed\n"; + + say "$finished_msg" if not $gui; + system("kdialog --icon $icon_path --title \"$name\" --passivepopup \"$finished_msg\" 10 &") if $gui and $kde; + system("notify-send \"$name\" \"$finished_msg\" -t 35 -i $icon_path &") if $gui and $gnome; + +} + +# if the default encoder does not exist, cycle through the supported +# encoders until we find one that does. +sub check_encoder { + + if (not `which $encoder 2>/dev/null`) { + my $first_encoder = $encoder; + foreach (keys %{$run{$to}{ENCODER}}) { $encoder = $_ and return if `which $_ 2>/dev/null`; } + perror("no_encode_app","$to") if $encoder eq $first_encoder; + } + + else { return 0; } +} + +# if the default decoder does not exist, cycle through the supported +# decoders until we find one that does. +sub check_decoder { + + my $from = shift; + + if (not `which $decoder 2>/dev/null`) { + my $first_decoder = $decoder; + foreach (keys %{$run{$from}{DECODER}}) { $decoder = $_ and return if `which $_ 2>/dev/null`; } + perror("no_decode_app","$from") if $decoder eq $first_decoder; + } + + else { return 0; } +} + +# make sure encoding/decoding is supported. +sub check_input { + + my $file = shift; + my $dir = shift; + my $ext = shift; + + perror("no_encoder","$to") unless(defined($run{$to}{ENCODER})); + + unless(defined($run{$ext}{DECODER})) { + pnotice("no_decoder","$ext",2) if $verbose or not $only; + $total_failed++; + return 1; + } + + return 0; +} + +######################################## +# GUI options for KDE & Gnome Plugins # +######################################## + +my $kdialog = "kdialog --title \"$name\""; +my $zenity = "zenity --title \"$name\" --list --radiolist --width 100 --height 300 --column '' --column "; + +sub get_visual_opts { + + my ($to_fmt,$od) = @_; + + # escape illegal characters in output directory name + $od =~ s/('|\(|\)|"|\\)/\\$1/g; + + $outdir = `kdialog --getexistingdirectory $od` if $config{KDE_DIR} == 1 and $kde; + $outdir = `zenity --title \"$lang{gui_outdir}\" --file-selection --directory --filename=\`pwd\`` if $config{ZEN_DIR} == 1 and $gnome; + + chomp($outdir); + $out_dir = $outdir; + exit(1) if not $outdir; + + if ($config{KDE_OPTS} == 1 or $config{ZEN_OPTS} == 1) { + foreach (keys %{$run{$to_fmt}{ENCODER}{$encoder}{PROMPT}}) { + prompt_user($_); + } + } +} + +sub prompt_user { + + my $opt = shift; + + given ($opt) { + + when (/^BITRATE/) { + $bitrate = `$kdialog --default $bitrate --combobox \"$lang{gui_bitrate}\" 56 112 128 160 192 256 320` if $kde; + $bitrate = `$zenity \"$lang{gui_bitrate}\" FALSE 56 FALSE 112 FALSE 128 FALSE 160 TRUE 192 FALSE 256 FALSE 320` if $gnome; + chomp($bitrate); + exit(1) if not $bitrate; + } + + when (/^FREQ/) { + $freq = `$kdialog --default $freq --combobox \"$lang{gui_freq}\" 32000 44100 48000` if $kde; + $freq = `$zenity \"$lang{gui_freq}\" FALSE 32000 TRUE 44100 FALSE 48000` if $gnome; + chomp($freq); + exit(1) if not $freq; + } + + when (/^CHANNELS/) { + $channels = `$kdialog --default $channels --combobox \"$lang{gui_chans}\" 1 2` if $kde; + $channels = `$zenity \"$lang{gui_chans}\" FALSE 1 TRUE 2` if $gnome; + chomp($channels); + exit(1) if not $channels; + } + + when (/^FCOMP/) { + $fcomp = `$kdialog --default $fcomp --combobox \"$lang{gui_fcomp}\" 0 1 2 3 4 5 6 7 8` if $kde; + $fcomp = `$zenity \"$lang{gui_fcomp}\" FALSE 0 FALSE 1 TRUE 2 FALSE 3 FALSE 4 FALSE 5 FALSE 6 FALSE 7 FALSE 8` if $gnome; + chomp($fcomp); + exit(1) if not $fcomp; + } + + when (/^ACOMP/) { + $acomp = `$kdialog --default $acomp --combobox \"$lang{gui_acomp}\" 1000 2000 3000 4000 5000` if $kde; + $acomp = `$zenity \"$lang{gui_acomp}\" FALSE 1000 FALSE 2000 TRUE 3000 FALSE 4000 FALSE 5000` if $gnome; + chomp($acomp); + exit(1) if not $acomp; + } + + when (/^OGGQUAL/) { + $oggqual = `$kdialog --default $oggqual --combobox \"$lang{gui_oggqual}\" 0 1 2 3 4 5 6 7 8 9 10` if $kde; + $oggqual = `$zenity \"$lang{gui_oggqual}\" FALSE 0 FALSE 1 FALSE 2 TRUE 3 FALSE 4 FALSE 5 FALSE 6 FALSE 7 FALSE 8 FALSE 9 FALSE 10` if $gnome; + chomp($oggqual); + exit(1) if not $oggqual; + } + + when (/^SPXQUAL/) { + $spxqual = `$kdialog --default $spxqual --combobox \"$lang{gui_spxqual}\" 0 1 2 3 4 5 6 7 8 9 10` if $kde; + $spxqual = `$zenity \"$lang{gui_spxqual}\" FALSE 0 FALSE 1 FALSE 2 FALSE 3 FALSE 4 FALSE 5 FALSE 6 FALSE 7 TRUE 8 FALSE 9 FALSE 10` if $gnome; + chomp($spxqual); + exit(1) if not $spxqual; + } + + when (/^AACQUAL/) { + $aacqual = `$kdialog --default $aacqual --combobox \"$lang{gui_aacqual}\" 100 200 300 400 500` if $kde; + $aacqual = `$zenity \"$lang{gui_aacqual}\" TRUE 100 FALSE 200 FALSE 300 FALSE 400 FALSE 500` if $gnome; + chomp($aacqual); + exit(1) if not $aacqual; + } + + when (/^MPCQUAL/) { + $mpcqual = `$kdialog --default $mpcqual --combobox \"$lang{gui_mpcqual}\" thumb radio standard xtreme insane braindead` if $kde; + $mpcqual = `$zenity \"$lang{gui_mpcqual}\" FALSE thumb TRUE radio FALSE standard FALSE xtreme FALSE insane FALSE braindead` if $gnome; + chomp($mpcqual); + exit(1) if not $mpcqual; + } + + when (/^OFMODE/ ) { + $ofmode = `$kdialog --default $ofmode --combobox \"$lang{gui_ofmode}\" fast normal high extra best highnew extranew bestnew` if $kde; + $ofmode = `$zenity \"$lang{gui_ofmode}\" FALSE fast TRUE normal FALSE high FALSE extra FALSE best FALSE highnew FALSE extranew FALSE bestnew` if $gnome; + chomp($ofmode); + exit(1) if not $ofmode; + } + + when (/^OFOPT/) { + $ofopt = `$kdialog --default $ofopt --combobox \"$lang{gui_ofopt}\" none fast normal high best` if $kde; + $ofopt = `$zenity \"$lang{gui_ofopt}\" FALSE none TRUE fast FALSE normal FALSE high FALSE best` if $gnome; + chomp($ofopt); + exit(1) if not $ofopt; + } + + when (/^BRATIO/) { + $bratio = `$kdialog --default $bratio --combobox \"$lang{gui_bratio}\" 1 2 3 4 5` if $kde; + $bratio = `$zenity \"$lang{gui_bratio}\" FALSE 1 TRUE 2 FALSE 3 FALSE 4 FALSE 5` if $gnome; + chomp($bratio); + exit(1) if not $bratio; + } + + when (/^BQUANL/) { + $bquanl = `$kdialog --default $bquanl --combobox \"$lang{gui_bquanl}\" 1.00 1.25 1.50 1.75 2.00` if $kde; + $bquanl = `$zenity \"$lang{gui_bquanl}\" TRUE 1.00 FALSE 1.25 FALSE 1.50 FALSE 1.75 FALSE 2.00` if $gnome; + chomp($bquanl); + exit(1) if not $bquanl; + } + + when (/^BPSIZE/) { + $bpsize = `$kdialog --default $bpsize --combobox \"$lang{gui_bpsize}\" 10 128` if $kde; + $bpsize = `$zenity \"$lang{gui_bpsize}\" FALSE 10 TRUE 128` if $gnome; + chomp($bpsize); + exit(1) if not $bpsize; + } + + default { return 0; } + } + +} + +# all copied tags will be stored here for furture use +my %tag_name = +( + title => undef, + track => undef, + artist => undef, + album => undef, + comment => undef, + year => undef, + genre => undef, +); + +# override tags read from input file if any of the tagging +# options are specified by the user during conversion. +sub get_user_tags +{ + $tag_name{title} = $title if $title; + $tag_name{track} = $track if $track; + $tag_name{artist} = $artist if $artist; + $tag_name{album} = $album if $album; + $tag_name{comment} = $comment if $comment; + $tag_name{year} = $year if $year; + $tag_name{genre} = $genre if $genre; +} + +# the formats MP4/M4A/M4B/MPC/MPP/WV/BONK have no tag writing module. +# tags therefore have to be written during encode via various +# command line args. +sub format_tags { + + my $type = shift; + + given ($type) { + + when (/^mp4$|^m4a$|^m4b$/) { + + if ($run{$to}{ENCODER}{$encoder}{NAME} eq "ffmpeg" or $run{$to}{ENCODER}{$encoder}{NAME} eq "avconv") { + + $tag_name{track} = 0 if not $tag_name{track}; + $tag_name{year} = 0 if not $tag_name{year}; + + return "-metadata TITLE=\"$tag_name{title}\" -metadata TRACK=\"$tag_name{track}\" -metadata ARTIST=\"$tag_name{artist}\" -metadata ALBUM=\"$tag_name{album}\" -metadata COMMENT=\"$tag_name{comment}\" -metadata YEAR=\"$tag_name{year}\" -metadata GENRE=\"$tag_name{genre}\""; + + } else { + + return "--title \"$tag_name{title}\" --track \"$tag_name{track}\" --artist \"$tag_name{artist}\" --album \"$tag_name{album}\" --comment \"$tag_name{comment}\" --year \"$tag_name{year}\" --genre \"$tag_name{genre}\""; + + } + } + + when (/^mpc$|^mpp$/) { return "--artist \"$tag_name{artist}\" --title \"$tag_name{title}\" --album \"$tag_name{album}\" --track \"$tag_name{track}\" --genre \"$tag_name{genre}\" --year \"$tag_name{year}\" --comment \"$tag_name{comment}\""; } + when (/^wv$/) { return "-w \"Title=$tag_name{title}\" -w \"Track=$tag_name{track}\" -w \"Artist=$tag_name{artist}\" -w \"Album=$tag_name{album}\" -w \"Comment=$tag_name{comment}\" -w \"Year=$tag_name{year}\" -w \"Genre=$tag_name{genre}\""; } + when (/^bonk$/) { return "-t \"$tag_name{title}\" -a \"$tag_name{artist}\" -c \"$tag_name{comment}\""; } + when (/^spx$/) { return "--author \"$tag_name{artist}\" --title \"$tag_name{title}\" --comment \"year=$tag_name{year}\" --comment \"tracknumber=$tag_name{track}\" --comment \"album=$tag_name{album}\" --comment \"genre=$tag_name{genre}\" --comment \"comment=$tag_name{comment}\""; } + + default { return " "; } + } +} + +# meta-data is read based on input file extension. +# all tags which are present will be copied to +# the %tag_name hash. +sub read_tags { + + my $in_file = shift; + my $in_format = shift; + + my $tag_module = $run{$in_format}{TAGS}{MODULE}; + + given ($in_format) { + + when (/^mp3$|^mp3hd$/) { + my $mp3tag = $tag_module->new($in_file); + my @tags = $mp3tag->autoinfo(); + + $tag_name{title} = "$tags[0]" if $tags[0]; + $tag_name{track} = "$tags[1]" if $tags[1]; + $tag_name{artist} = "$tags[2]" if $tags[2]; + $tag_name{album} = "$tags[3]" if $tags[3]; + $tag_name{comment} = "$tags[4]" if $tags[4]; + $tag_name{year} = "$tags[5]" if $tags[5]; + $tag_name{genre} = "$tags[6]" if $tags[6]; + + return 0; + } + + when (/^ogg$|^oga$/) { + my $ogg_tag = Audio::Scan->scan_tags($in_file)->{tags}; + + $tag_name{title} = $ogg_tag->{TITLE} if $ogg_tag->{TITLE}; + $tag_name{track} = $ogg_tag->{TRACKNUMBER} if $ogg_tag->{TRACKNUMBER}; + $tag_name{artist} = $ogg_tag->{ARTIST} if $ogg_tag->{ARTIST}; + $tag_name{album} = $ogg_tag->{ALBUM} if $ogg_tag->{ALBUM}; + $tag_name{comment} = $ogg_tag->{COMMENT} if $ogg_tag->{COMMENT}; + $tag_name{year} = $ogg_tag->{YEAR} if $ogg_tag->{YEAR}; + $tag_name{genre} = $ogg_tag->{GENRE} if $ogg_tag->{GENRE}; + + return 0; + } + + when (/^spx$/) { + my $pid = open(SPX, "speexdec \"$in_file\" tmp1-$$.wav 2>&1 |") or perror("opening_file","$in_file"); + my @data = ; + @data = grep(!/^$|^#/, @data); + + close(SPX); + + foreach (@data) { + + next unless /=/; + chomp; + + my ($k, $v) = split /=/; + $k =~ tr/A-Z/a-z/; + $tag_name{$k} = $v if exists($tag_name{$k}); + $tag_name{artist} = $v if $k =~ /^author/i; + $tag_name{track} = $v if $k =~ /^tracknumber/i; + } + + unlink("tmp-$$.wav"); + return 0; + } + + when (/^flac$|^fla$/) { + my $flac_tag = Audio::Scan->scan_tags($in_file)->{tags}; + + $tag_name{title} = $flac_tag->{TITLE} if $flac_tag->{TITLE}; + $tag_name{track} = $flac_tag->{TRACKNUMBER} if $flac_tag->{TRACKNUMBER}; + $tag_name{artist} = $flac_tag->{ARTIST} if $flac_tag->{ARTIST}; + $tag_name{album} = $flac_tag->{ALBUM} if $flac_tag->{ALBUM}; + $tag_name{comment} = $flac_tag->{COMMENT} if $flac_tag->{COMMENT}; + $tag_name{year} = $flac_tag->{DATE} if $flac_tag->{DATE}; + $tag_name{genre} = $flac_tag->{GENRE} if $flac_tag->{GENRE}; + + return 0; + } + + when (/^mp4$|^m4a$|^m4b$/) { + my $mp4_tag = $tag_module->scan_tags($in_file)->{tags}; + + $tag_name{title} = $mp4_tag->{NAM} if $mp4_tag->{NAM}; + $tag_name{track} = $mp4_tag->{TRKN} if $mp4_tag->{TRKN}; + $tag_name{artist} = $mp4_tag->{ART} if $mp4_tag->{ART}; + $tag_name{album} = $mp4_tag->{ALB} if $mp4_tag->{ALB}; + $tag_name{comment} = $mp4_tag->{CMT} if $mp4_tag->{CMT}; + $tag_name{year} = $mp4_tag->{DAY} if $mp4_tag->{DAY}; + $tag_name{genre} = $mp4_tag->{GNRE} if $mp4_tag->{GNRE}; + + return 0; + } + +when (/^ape$|^mpc$|^mpp$|^wv$/) { + my $audio_tag = $tag_module->scan_tags($in_file)->{tags}; + + $tag_name{title} = $audio_tag->{TITLE} if $audio_tag->{TITLE}; + $tag_name{track} = $audio_tag->{TRACK} if $audio_tag->{TRACK}; + $tag_name{artist} = $audio_tag->{ARTIST} if $audio_tag->{ARTIST}; + $tag_name{album} = $audio_tag->{ALBUM} if $audio_tag->{ALBUM}; + $tag_name{comment} = $audio_tag->{COMMENT} if $audio_tag->{COMMENT}; + $tag_name{year} = $audio_tag->{YEAR} if $audio_tag->{YEAR}; + $tag_name{genre} = $audio_tag->{GENRE} if $audio_tag->{GENRE}; + + return 0; + } + + when (/^wma$/) { + my $wma_tag = $tag_module->scan_tags($in_file)->{tags}; + + $tag_name{title} = $wma_tag->{TITLE} if $wma_tag->{TITLE}; + $tag_name{track} = $wma_tag->{TRACKNUMBER} if $wma_tag->{TRACKNUMBER}; + $tag_name{artist} = $wma_tag->{AUTHOR} if $wma_tag->{AUTHOR}; + $tag_name{album} = $wma_tag->{ALBUMTITLE} if $wma_tag->{ALBUMTITLE}; + $tag_name{comment} = $wma_tag->{DESCRIPTION} if $wma_tag->{DESCRIPTION}; + $tag_name{year} = $wma_tag->{YEAR} if $wma_tag->{YEAR}; + $tag_name{genre} = $wma_tag->{GENRE} if $wma_tag->{GENRE}; + + return 0; + } + + default { return 1; } + } +} + +# write meta-data stored in %tag_name to output file. +sub write_tags { + + my $out_file = shift; + my $out_format = shift; + + my $tag_m; + + given ($out_format) { + + when (/^mp3$|^mp3hd$/) { + $tag_m = MP3::Tag->config(write_v24 => 'YES'); + $tag_m = MP3::Tag->new("$out_file"); + + # ID3v2 Tags + unless(exists($tag_m->{ID3v2})) { $tag_m->new_tag("ID3v2"); } + + $tag_m->{ID3v2}->add_frame("TIT2", "$tag_name{title}") if defined($tag_name{title}); + $tag_m->{ID3v2}->add_frame("TRCK", "$tag_name{track}") if defined($tag_name{track}); + $tag_m->{ID3v2}->add_frame("TPE1", "$tag_name{artist}") if defined($tag_name{artist}); + $tag_m->{ID3v2}->add_frame("TALB", "$tag_name{album}") if defined($tag_name{album}); + $tag_m->{ID3v2}->comment("$tag_name{comment}") if defined($tag_name{comment}); + $tag_m->{ID3v2}->add_frame("TYER", "$tag_name{year}") if defined($tag_name{year}); + $tag_m->{ID3v2}->add_frame("TCON", "$tag_name{genre}") if defined($tag_name{genre}); + + $tag_m->{ID3v2}->write_tag; + + # ID3v1 Tags + unless(exists($tag_m->{ID3v1})) { $tag_m->new_tag("ID3v1"); } + + $tag_m->{ID3v1}->title("$tag_name{title}") if defined($tag_name{title}); + $tag_m->{ID3v1}->track("$tag_name{track}") if defined($tag_name{track}); + $tag_m->{ID3v1}->artist("$tag_name{artist}") if defined($tag_name{artist}); + $tag_m->{ID3v1}->album("$tag_name{album}") if defined($tag_name{album}); + $tag_m->{ID3v1}->comment("$tag_name{comment}") if defined($tag_name{comment}); + $tag_m->{ID3v1}->year("$tag_name{year}") if defined($tag_name{year}); + $tag_m->{ID3v1}->genre("$tag_name{genre}") if defined($tag_name{genre}); + + $tag_m->{ID3v1}->write_tag; + + return 0; + + } + + when (/^ogg$|^oga$/) { + $tag_m = ''; + + $tag_m = "$tag_m -t \"TITLE=$tag_name{title}\"" if $tag_name{title}; + $tag_m = "$tag_m -t \"TRACKNUMBER=$tag_name{track}\"" if $tag_name{track}; + $tag_m = "$tag_m -t \"ARTIST=$tag_name{artist}\"" if $tag_name{artist}; + $tag_m = "$tag_m -t \"ALBUM=$tag_name{album}\"" if $tag_name{album}; + $tag_m = "$tag_m -t \"COMMENT=$tag_name{comment}\"" if $tag_name{comment}; + $tag_m = "$tag_m -t \"YEAR=$tag_name{year}\"" if $tag_name{year}; + $tag_m = "$tag_m -t \"GENRE=$tag_name{genre}\"" if $tag_name{genre}; + + system("vorbiscomment -w $tag_m \"$out_file\"") if $tag_m ne ''; + + return 0; + } + + when (/^fla$|^flac$/) { + $tag_m = Audio::FLAC::Header->new("$out_file"); + my $tag_i = $tag_m->tags(); + + $tag_i->{TITLE} = "$tag_name{title}" if $tag_name{title}; + $tag_i->{TRACKNUMBER} = "$tag_name{track}" if $tag_name{track}; + $tag_i->{ARTIST} = "$tag_name{artist}" if $tag_name{artist}; + $tag_i->{ALBUM} = "$tag_name{album}" if $tag_name{album}; + $tag_i->{COMMENT} = "$tag_name{comment}" if $tag_name{comment}; + $tag_i->{DATE} = "$tag_name{year}" if $tag_name{year}; + $tag_i->{GENRE} = "$tag_name{genre}" if $tag_name{genre}; + + $tag_m->write(); + + return 0; + } + + default { perror("no_write_tag","$out_file"); } + } + +} + +# this is necessary when converting multiple files. +# it prevents old tags from the previous file being +# copied over to the next file in line. +sub clear_tag_hash { + foreach (keys(%tag_name)) { + $tag_name{$_} = ''; + } +} + +# display meta-data for selected file(s) +sub show_taginfo { + + perror("no_input","") if $#file < 0; + + foreach my $i (@file) { + + my ($file, $dir, $ext) = fileparse("$i", qr/\.[^.]*/); + + $ext =~ s/^\.//; + + my $from = $ext; + $from =~ tr/A-Z/a-z/; + + if ($run{$from}{TAGS}{READ} == 1) { + + clear_tag_hash(); + read_tags("$dir/$file.$ext","$from"); + + say ''; + + pnotice("tag_info","$file.$ext",2); + + say " Artist: $tag_name{artist}"; + say " Title: $tag_name{title}"; + say " Album: $tag_name{album}"; + say " Track: $tag_name{track}"; + say "Comment: $tag_name{comment}"; + say " Year: $tag_name{year}"; + say " Genre: $tag_name{genre}"; + + say ''; + + } else { pnotice("no_read_tag","$file.$ext",2); } + } +} + +# write tags to file supplied by the user +sub write_user_tags { + + perror("no_input","") if $#file < 0; + + say ''; + say "$name - $version\n"; + + foreach (@file) { + + my ($file, $dir, $ext) = fileparse("$_", qr/\.[^.]*/); + + $ext =~ s/^\.//; + my $from = $ext; + $from =~ tr/A-Z/a-z/; + + if ($run{$from}{TAGS}{WRITE} == 1) { + + clear_tag_hash(); + read_tags("$dir/$file.$ext","$from"); + + $tag_name{title} = $title if $title; + $tag_name{track} = $track if $track; + $tag_name{artist} = $artist if $artist; + $tag_name{album} = $album if $album; + $tag_name{comment} = $comment if $comment; + $tag_name{year} = $year if $year; + $tag_name{genre} = $genre if $genre; + + write_tags("$dir/$file.$ext","$from"); + say "$lang{write_tag_i} $file.$ext"; + + } else { perror("no_write_tag","$file.$ext"); } + } + say ''; +} + +# print out list of supported encode & decode formats +sub show_formats { + +say "\n$name - $version\n"; +say "EXT E D ENCODER DECODER TAG-READ TAG-WRITE"; +say "----------------------------------------------------------------------"; + +my $enc_count = 0; +my $dec_count = 0; + + foreach (sort(keys(%run))) { + + my $e = "N"; $e = "Y" if defined($run{$_}{DEFAULT_ENCODER}); + my $d = "N"; $d = "Y" if defined($run{$_}{DEFAULT_DECODER}); + my $r = "N"; $r = "Y" if $run{$_}{TAGS}{READ} == 1; + my $w = "N"; $w = "Y" if $run{$_}{TAGS}{WRITE} == 1; + + my $enc = ''; $enc = $run{$_}{DEFAULT_ENCODER} if defined($run{$_}{DEFAULT_ENCODER}); + my $dec = ''; $dec = $run{$_}{DEFAULT_DECODER} if defined($run{$_}{DEFAULT_DECODER}); + + printf("%-9s %-3s %-3s %-15s %-18s %-10s %s\n", $_, $e, $d, $enc, $dec, $r, $w); + + ++$enc_count if $enc ne ''; + ++$dec_count if $dec ne ''; + + } + + say "\n$lang{enc_fmts} $enc_count --- $lang{dec_fmts} $dec_count\n"; + +} + +# show encoders for output format +sub show_encoders { + say "\n$name - $version\n\n$lang{show_encoders}: $my_encoder\n"; + foreach (sort(keys %{$run{$my_encoder}{ENCODER}})) { + print "$_ -> "; + print "installed" if `which $_ 2>/dev/null`; + print "not found" if not `which $_ 2>/dev/null`; + print " (default)" if $_ eq $run{$my_encoder}{DEFAULT_ENCODER}; + say ''; + } + say ''; +} + +# show decoders for input format +sub show_decoders { + say "\n$name - $version\n\n$lang{show_decoders}: $my_decoder\n"; + foreach (sort(keys %{$run{$my_decoder}{DECODER}})) { + print "$_ -> "; + print "installed" if `which $_ 2>/dev/null`; + print " (default)" if $_ eq $run{$my_decoder}{DEFAULT_DECODER}; + say ''; + } + say ''; +} + +################# +# cd ripping... # +################# + +# get total number of tracks from cdparanoia query +sub get_total_tracks { + + open(CDINFO, "cdparanoia -Q 2>&1 |") or die "can't fork: $!\n"; + my @cdquery = ; + close(CDINFO); + + my $fmt_tracks = $cdquery[-3]; + $fmt_tracks =~ s/\s//g; + + my @ttracks = split(/\./, $fmt_tracks); + + return "$ttracks[0]"; + +} + +my (%cd, %ripconfig, @cdtrack, $track_total); + +# setup the cddb config +sub get_cddb_config { + + $config{USE_CDDB} = 0 && return if $nocddb; + + $config{CDDB_INPUT} = 0 if $noinput; + + $ripconfig{CDDB_HOST} = $config{CDDB_HOST}; + $ripconfig{CDDB_PORT} = $config{CDDB_PORT}; + $ripconfig{CDDB_MODE} = $config{CDDB_MODE}; + $ripconfig{DEVICE} = $device; + $ripconfig{CDDB_INPUT} = $config{CDDB_INPUT}; + + print $ripconfig{CDDB_HOST}; + + %cd = get_cddb(\%ripconfig); + + if (not $cd{title}) { + pnotice("no_cddb","",2); + $config{USE_CDDB} = 0; + } + else { + @cdtrack = @{$cd{track}}; + $track_total = $cd{tno}; + } + +} + +# check to see if a disc is present +sub query_disc { + system("cdparanoia -q -d $device -Q > /dev/null 2>&1"); + perror("no_disc","$device") if $? > 0; +} + +# set tag info from cddb +sub tag_track { + + my $tno = shift; + + $tag_name{artist} = $cd{artist} if $cd{artist}; + $tag_name{title} = $cdtrack[$tno-1] if $cdtrack[$tno-1]; + $tag_name{genre} = $cd{cat} if $cd{cat}; + $tag_name{track} = $tno; + $tag_name{album} = $cd{title} if $cd{title}; + $tag_name{year} = $cd{year} if $cd{year}; + $tag_name{comment} = ''; + +} + +# process and convert ripped track +sub rip_cd { + + my ($on,$tno) = @_; + + $outdir = $ENV{HOME}; + $to =~ tr/A-Z/a-z/; + + get_visual_opts($to,$out_dir) if $gui and not defined($first_run); + $first_run = 1; + pnotice("ripping_track","$tno",2); + + $on =~ s/\//_/g; + + say "\ncdparanoia -d $device $tno $on.wav\n" if $dryrun; + system("cdparanoia -d $device $tno \"$on.wav\" >/dev/null 2>&1") if not $dryrun; + + if ($to !~ /wav/i) { + + push(@file, "$on.wav"); + tag_track($tno); + proc_input(); + clear_tag_hash(); + undef(@file); + unlink("$on.wav") if not $dryrun; + pnotice("removed_tmp","$on.wav",2) if $verbose; + + } +} + +# rip selected tracks or all from disc +sub proc_cd { + + perror("no_app","cdparanoia") if not `which cdparanoia 2>/dev/null`; + + query_disc(); + get_cddb_config(); + + my $total_tracks = get_total_tracks(); + + if ($rip eq "all") { + + if ($config{USE_CDDB} ne 1) { + + for(my $i=1;$i<=$total_tracks;$i++) { + rip_cd($i, $i); + } + + } elsif ($config{USE_CDDB} eq 1) { + + my $n = 1; + + foreach my $i (@cdtrack) { + + my $out_string = $nscheme; + + chomp($cdtrack[$n-1]); + + $out_string =~ s/%ar/$cd{artist}/; + $out_string =~ s/%ti/$cdtrack[$n-1]/; + $out_string =~ s/%tr/$n/; + $out_string =~ s/%ab/$cd{title}/; + $out_string =~ s/%yr/$cd{year}/; + + rip_cd($out_string, $n); + + ++$n; + } + } + + } else { + + my @tracks = split(/,/, $rip); + + foreach my $i (@tracks) { + + next if $i > $total_tracks or $i < 1; + + my $out_string = $nscheme; + + $out_string =~ s/%ar/$cd{artist}/; + $out_string =~ s/%ti/$cdtrack[$i-1]/; + $out_string =~ s/%tr/$i/; + $out_string =~ s/%ab/$cd{title}/; + $out_string =~ s/%yr/$cd{year}/; + + rip_cd($out_string, $i) if $config{USE_CDDB} == 1; + rip_cd($i, $i) if $config{USE_CDDB} == 0; + } + } +} + +# get/print cddb information from disc +sub cdinfo { + + query_disc(); + get_cddb_config(); + + say "$name - $version\n"; + + say "Artist = $cd{artist}"; + say "Album = $cd{title}"; + say "Genre = $cd{genre}"; + say "Tracks = $cd{tno}"; + say "Year = $cd{year}\n"; + + my $n = 1; + + foreach (@cdtrack) { + say "Track $n: $_"; + ++$n; + } + + exit(0); +} + +# version / license information +sub version { + +say " +$name - $version + +Copyright (C) 2005-2017 Philip Lyons + +This is free software. You may redistribute copies of it under the terms of +the GNU General Public License . +There is NO WARRANTY, to the extent permitted by law. +"; + +} + +# help & longhelp menu +sub help_menu { + +say "\n$name - $version"; + +say " +-t, --to $lang{to} +-r, --recursive $lang{recursive} +-p, --preserve $lang{preserve} +-f, --formats $lang{formats} +-o, --only $lang{only} +-k, --keep $lang{keep} +-j, --jobs $lang{jobs} +-h, --help $lang{help} +-l, --longhelp $lang{longhelp} +-v, --verbose $lang{verbose} +"; + +say "$lang{user_opts} + +--defopts $lang{defopts} +--eopts $lang{eopts} +--dopts $lang{dopts} +--nopts $lang{nopts} +--outfile $lang{outfile} +--outdir $lang{outdir} +--dryrun $lang{dryrun} +--overwrite $lang{overwrited} +--normalize $lang{normalize} +--delete $lang{delete} +--encoder $lang{encoder} +--decoder $lang{decoder} +--version $lang{version} + +$lang{enc_opts} + +--bitrate $lang{bitrate} +--freq $lang{freq} +--channels $lang{channels} +--effect $lang{effect} +--fcomp $lang{fcomp} +--acomp $lang{acomp} +--oggqual $lang{oggqual} +--spxqual $lang{spxqual} +--aacqual $lang{aacqual} +--mpcqual $lang{mpcqual} +--ofmode $lang{ofmode} +--ofopt $lang{ofopt} +--bratio $lang{bratio} +--bquanl $lang{bquanl} +--bpsize $lang{bpsize} + +$lang{tag_opts} + +--artist $lang{artist} +--title $lang{title} +--track $lang{track} +--year $lang{year} +--album $lang{album} +--genre $lang{genre} +--comment $lang{comment} +--taginfo $lang{taginfo} + +$lang{tag_usage} + +$lang{rip_opts} + +--rip $lang{rip} +--nocddb $lang{nocddb} +--noinput $lang{noinput} +--nscheme $lang{nscheme} +--cdinfo $lang{cdinfo} +--device $lang{device} + +$lang{rip_usage}" if $longhelp; + +say "\n$lang{usage}\n"; + +} + +sub load_module { + my ($file) = @_; + my $return; + unless($return = do $file) { + perror("opening_file","$file: $@ $!") if $@ or !defined($return) or not !$return; + } +} + +sub import_module { + my ($format_ref) = @_; + my $format_name=$format_ref->{NAME}; + $run{$format_name} = $format_ref; +} + +# load all user modules +sub load_user_modules { + my @imported_mods; + opendir(DIR, "$mod_dir") or perror("opening_dir","$mod_dir: $!"); + foreach (readdir(DIR)) { + load_module("$mod_dir/$_") if $_ !~ /^\./; + push(@imported_mods, $_) if $_ !~ /^\./; + } + closedir(DIR); + say "$lang{imported} @imported_mods"; +} + +# place files/directories in their respective arrays +if (@ARGV) { + foreach (@ARGV) { + if (-f $_) { push(@file,$_); print "$lang{debug} adding $_ to \@file\n" if $debug == 1; } + elsif (-d $_) { push(@dir, $_); print "$lang{debug} adding $_ to \@dir\n" if $debug == 1; } + else { perror("no_infile","$_"); } + } +} + +load_user_modules() if $config{IMPORTM} == 1; + +if ($to and @ARGV and not $rip) { proc_input(); } + +elsif ($to and $rip) { proc_cd(); } +elsif ($my_encoder and not $to) { show_encoders(); } +elsif ($my_decoder and not $to) { show_decoders(); } +elsif ($verinfo) { version(); } +elsif ($longhelp) { help_menu(); } +elsif ($formats) { show_formats(); } +elsif ($cdinfo) { cdinfo(); } +elsif ($taginfo and not $to) { show_taginfo(); } +elsif ($title or $track or $artist or $album or $comment or $year or $genre) { write_user_tags(); } + +else { help_menu(); } + +__END__ + +=head1 NAME + +pacpl - Perl Audio Converter, a multi purpose converter/ripper/tagger + +=head1 SYNOPSIS + +pacpl --to [file(s)/directory(s)] + +=head1 DESCRIPTION + +Perl Audio Converter + +A Linux CLI tool for converting multiple audio types from one format to another. + +It supports the following audio formats: + +======================================== + +3G2, 3GP, 8SVX, AAC, AC3, ADTS, AIFF, AL, AMB, AMR, APE, AU, +AVR, BONK, CAF, CDR, CVU, DAT, DTS, DVMS, F32, F64, FAP, FLA, +FLAC, FSSD, GSRT, HCOM, IMA, IRCAM, LA, MAT, MAUD, MAT4, MAT5, +M4A, MP2, MP3, MP4, MPC, MPP, NIST, OFF, OFR, OFS, OPUS, OGA, +OGG, PAF, PRC, PVF, RA, RAM, RAW, RF64, SD2, SF, SHN, SMP, SND, +SOU, SPX, SRN, TAK, TTA, TXW, VOC, VMS, VQF, W64, WAV, WMA, +and WV. + +It can also extract audio from the following video extensions: + +============================================================== + +RM, RV, ASF, DivX, MPG, MKV, MPEG, AVI, MOV, OGM, OGV, QT, VCD, +SVCD, M4V, NSV, NUV, PSP, SMK, VOB, FLV, WEBM and WMV. + +Parallel Processing, a CD ripping function with CDDB support, batch conversion, +tag preservation for most supported formats, independent tag reading & writing, +service menus for KDE Dolphin/Konqueror, GNOME Nautilus script, and action +scripts for Nemo/Thunar are also provided. + +=head1 OPTIONS + +B<-t, --to> I + +set encode format for the input file(s) or directory(ies). you can see a +complete list of supported encode formats by using the B<--formats> option. + +B<-r, --recursive> + +recursively scan and convert input folder(s) to destination format. + +B<-p, --preserve> + +when recursively converting a directory, preserve the input folders directory +structure in the specified output directory. such as: + +pacpl --to ogg -r -p /home/mp3s --outdir /home/oggs + +in the example above, let's assume the directory structure was: + +=over 21 + +=item /home/mp3s/Alternative + +=item /home/mp3s/Alternative/New + +=item /home/mp3s/Rap + +=item /home/mp3s/Country + +=item /home/mp3s/Techno/ + +=back + +the output directory will now contain: + +=over 4 + +=item /home/oggs/Alternative + +=item /home/oggs/Alternative/New + +=item /home/oggs/Rap + +=item /home/oggs/Country + +=item /home/oggs/Techno + +=back + +with all files in each sub-folder converted to ogg. + +B<-o, --only> I + +only convert files matching extension. this option is useful when you have +a directory or batch of files with mixed audio types and only need to +convert one specific type. + +B<-k, --keep> + +do not re-encode files with extensions matching the destination extension. +instead...copy them to the output folder, or skip to the next file. + +B<-j, --jobs> + +number of simultanious jobs to run at once. the default limit +is set to 4 in pacpl.conf. You can modify this value on the fly +using --jobs= or set it perminately in the configuration file + +=over 4 + +=item B<-f, --formats> show a list of supported encode/decode formats. + +=item B<-h, --help> show the short help menu. + +=item B<-l, --longhelp> display the complete list of options. + +=item B<--version> show version and licensing information. + +=back + +=head1 USER OPTIONS + +B<--defopts> I<1/0> + +to turn off default encoder options use --defopts 0. this option gives you +more control when using the --eopts command. + +defopts is set to 1 by default. you can also toggle this option in +/etc/pacpl/pacpl.conf. + +B<--eopts> I + +this option allows you to use encoder options not implemented by pacpl. +an example would be: + +pacpl --to mp4 --eopts="-c 44100 -I 1,2" YourFile.mp3 + +B<--dopts> I + +this option allows you to use decoder options not implemented by pacpl. +an example would be: + +pacpl --to mpc --dopts="--start 60" YourFile.ogg + +B<--outfile> I + +set the output file name to I. + +B<--outdir> I + +place all encoded files in I. + +B<--dryrun> + +show what would be done without actually converting anything. this is a +good way to trouble shoot, or to see what would be done without actually +touching your files. + +B<--overwrite> + +replace the output file if it already exists. + +B<--normalize> + +adjusts volume levels of audio files. + +B<--nopts> I + +this allows you to specify normalize options not implemented by pacpl + +B<--delete> + +remove source/input file after the conversion process has finished. + +B<--encoder> I + +specify an alternate encoder for the selected output file(s) + +you can see a list of supported encoders by using the following: + +pacpl --encoder I + +B<--decoder> I + +specify an alternate decoder for the selected input file(s) + +you can see a list of supported decoders by using the following: + +pacpl --decoder I + +B<-v, --verbose> + +show detailed information about the encoding process and what's actually +being done. + +=head1 ENCODER OPTIONS + +B<--bitrate> I + +set the bitrate to I. default is 128. this option does not apply +to all formats. + +B<--freq> I + +set the frequency to I. default is 44100. this option does not apply +to all formats. + +B<--channels> I + +set the number of audio channels in the output file to I. this option +does not apply to all formats. + +B<--effect> I + +see B(1). this option only applies to the following: + +AIFF, AU, SND, RAW, VOC, SMP, AVR, and CDR + +B<--fcomp> I + +set flac compression level to I. fastest -0, highest -8, default -2 + +=over 4 + +=item 1 = fast + +=item 2 = simple + +=item 3 = medium (default) + +=item 4 = high + +=item 5 = extra high, + +=back + +B<--acomp> I + +set ape compression level to I. + +=over 4 + +=item 1000 = fast + +=item 2000 = normal + +=item 3000 = high (default) + +=item 4000 = extra high + +=item 5000 = insane + +=back + +B<--oggqual> I + +set ogg quality level to I. -1, very low and 10 very high, default 3 + +B<--spxqual> I + +set speex quality level to I. 0-10, default 8 (use --bitrate when using ffmpeg/avconv as encoder) + +B<--aacqual> I + +set aac, mp4, m4a, or m4b quality level to I. default 300 + +B<--mpcqual> I + +set mpc/mpp quality level to I. + +=over 4 + +=item thumb low quality/internet, (typ. 58... 86 kbps) + +=item radio medium (MP3) quality, (typ. 112...152 kbps - default) + +=item standard high quality (dflt), (typ. 142...184 kbps) + +=item xtreme extreme high quality, (typ. 168...212 kbps) + +=back + +B<--ofmode> I + +set off/ofr/ofs compression mode to I. normal, extra, and extranew modes +are recommended for general use. available options are: + +=over 4 + +=item fast + +=item normal (default) + +=item high + +=item extra + +=item best + +=item highnew + +=item extranew + +=item bestnew + +=back + +B<--ofopt> I + +set off/ofr/ofs optimization level to I. + +specify the optimization level in the engine. In order to achieve +optimal compression at all sample types, sample rates, and audio +content, the core compression engine has the possibility to find the +optimal values for its parameters, at the cost of slightly increased +compression time only. The default recommended value is fast. +do not use normal (or even high or best) for this parameter unless +encoding time does not matter and you want to obtain the smallest +possible file for a given compression mode. The difference between +the optimize levels fast and best (which is up to three times slower +than fast) is very small, generally under 0.05%, but may be also +larger in some rare cases. Note that the none optimize level is +forced by the encoder to fast optimize level for the extra, best, +highnew, extranew, and bestnew modes. + +available options are: + +=over 4 + +=item none + +=item fast (default) + +=item normal + +=item high + +=item best + +=back + +B<--bratio> I + +set bonk down sampling ratio. default 2 + +B<--bquanl> I + +set bonk quantanization level. default 1.0 + +B<--bpsize> I + +set bonk predictor size. default 128 + +=head1 TAGGING OPTIONS + +B + +tagging outside of the encoding process can only be performed on the +following audio types: + +=over 4 + +=item MP3 + +=item OGG + +=item FLA + +=item FLAC + +=back + +B<--artist> I + +set artist information to I. + +B<--title> I + +set title information to I. + +B<--track> I + +set track information to I. + +B<--year> I + +set year/date information to I. + +B<--album> I + +set album information to I. + +B<--genre> I + +set genre information to I. + +B<--comment> I + +set comment information to I. + +B<--taginfo> I + +show tagging information for I. multiple files can be specified +at once. + +=head1 RIPPING OPTIONS + +B<--rip> I + +rip selected tracks separated by comma or all from current disc. + +=over 4 + +=item pacpl --rip all --to flac + +=item pacpl --rip 1,3,9,15 --to flac + +=back + +B<--nocddb> + +disable cddb. use this option if you do not want tagging based on cddb. + +B<--noinput> + +disable cddb interactivity. this is enabled by default. + +B<--nscheme> I + +set naming scheme to I. default is %ar - %ti + +available options are: + +=over 4 + +=item %ar = artist + +=item %ti = song title + +=item %tr = track + +=item %yr = year + +=item %ab = album + +=back + +B --nscheme="(%tr)-%ti" + +B<--device> I + +set device to I. default is /dev/dvd + +B<--cdinfo> + +show cddb information for current disc. + +=head1 SEE ALSO + +=over 4 + +=item B(1) B(1) B(1) B(1) B(1) + +=item B(1) B(1) B(1) B(1) B(1) + +=item B(1) B(1) B(1) B(1) + +=item B(1) B(1) B(1) + +=item B(1) B(1) B(1) B(1) + +=item B(1) B(1) + +=back + +=head1 BUGS + +Report all bugs to Philip Lyons (vorzox@gmail.com) + +=head1 LICENSING + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . + +=head1 AUTHOR + +Copyright (C) 2005-2017 Philip Lyons (vorzox@gmail.com) -- 2.7.4 pacpl-code/patches/add_alac_decoder_m4a.patch0000644000175100017510000000125613527600265020535 0ustar viriiviriidiff --git a/pacpl.in b/pacpl.in index 0f862f9..611bb2d 100644 --- a/pacpl.in +++ b/pacpl.in @@ -1403,6 +1403,11 @@ my $pm = Parallel::ForkManager->new($jobs); DSTR => sub { "-vc null -vo null -ao pcm:file=%o %i" }, }, + 'alac-decoder' => { + NAME => "alac-decoder", + DSTR => sub { "$dopts -f %o %i" }, + }, + }, ESTR => sub { "$eopts -w -q $aacqual %i -o %o" }, pacpl-code/patches/multiple-format-input.patch0000644000175100017510000000343513527600265021056 0ustar viriiviriiDescription: Allow converting from multiple source formats When multiple source formats are used, e.g. by running `pacpl -t mpc myflac.flac myogg.ogg`, the same decoder is used for all the files. This patch fixes this bug. Author: Matteo Cypriani Origin: vendor Last-Update: 2016-10-14 --- a/pacpl +++ b/pacpl @@ -2374,6 +2374,7 @@ $files{"FILE$number"}{EXT} = "$ext"; $files{"FILE$number"}{NAME} = "$file"; $files{"FILE$number"}{OUTD} = "$outfile"; + $files{"FILE$number"}{DECODER} = "$decoder"; $number++; } @@ -2490,7 +2491,7 @@ # convert input to destination format sub convert { - my ($inf, $outf, $infmt, $iname, $oname) = @_; + my ($inf, $outf, $infmt, $iname, $oname, $dec) = @_; my $if = $infmt; $if =~ tr/A-Z/a-z/; @@ -2505,6 +2506,7 @@ # check to see if encoder/decoder exists. if not, see if we have one # that supports the desired input/output formats. + $decoder = $dec; check_encoder(); check_decoder($infmt); @@ -2597,7 +2599,7 @@ say "$msg" if not $gui; system("kdialog --icon $icon_path --title \"$name\" --passivepopup \"$msg\" 10 &") if $gui and $kde; system("notify-send \"$name\" \"$msg\" -t 35 -i $icon_path &") if $gui and $gnome; - convert("$files{$_}{FILE}","$files{$_}{OUTF}","$files{$_}{EXT}","$files{$_}{NAME}","$files{$_}{OUTD}"); + convert("$files{$_}{FILE}","$files{$_}{OUTF}","$files{$_}{EXT}","$files{$_}{NAME}","$files{$_}{OUTD}","$files{$_}{DECODER}"); $pm->finish; } pacpl-code/patches/fix_decoding_string_ffmpeg.patch0000644000175100017510000000121113527600265022122 0ustar viriiviriidiff --git a/pacpl.in b/pacpl.in index 436e140..68619f9 100644 --- a/pacpl.in +++ b/pacpl.in @@ -2209,7 +2209,7 @@ foreach my $fork (@ffmpeg_forks) { $run{$codec}{DEFAULT_DECODER} = $fork; $run{$codec}{ENCODER}{$fork}{NAME} = $fork; $run{$codec}{DECODER}{$fork}{NAME} = $fork; - $run{$codec}{DECODER}{$fork}{DSTR} = sub {"-y %i $dopts %o"}; + $run{$codec}{DECODER}{$fork}{DSTR} = sub {"-y -i %i $dopts %o"}; $run{$codec}{ENCODER}{$fork}{ESTR} = sub {"-y -i %i $eopts -ab $bitrate.k -ar $freq -ac $channels %o"}; $run{$codec}{TAGS}{READ} = 0; $run{$codec}{TAGS}{WRITE} = 0; pacpl-code/slack-desc0000644000175100017510000000303513527600265014060 0ustar viriivirii# HOW TO EDIT THIS FILE: # The "handy ruler" below makes it easier to edit a package description. Line # up the first '|' above the ':' following the base package name, and the '|' # on the right side marks the last column you can put a character in. You must # make exactly 11 lines for the formatting to be correct. It's also # customary to leave one space after the ':'. |-----handy-ruler------------------------------------------------------| pacpl: Perl Audio Converter pacpl: pacpl: A Linux CLI tool for converting multiple audio types from one format pacpl: to another. papcl: pacpl: It supports the following audio formats: pacpl: pacpl: 3G2, 3GP, 8SVX, AAC, AC3, ADTS, AIFF, AL, AMB, AMR, APE, AU, pacpl: AVR, BONK, CAF, CDR, CVU, DAT, DFS, DTS, DVMS, F32, F64, FAP, FLA, pacpl: FLAC, FSSD, GSRT, HCOM, IMA, IRCAM, LA, MAT, MAUD, MAT4, MAT5, pacpl: M4A, MP2, MP3, MP4, MPC, MPP, NIST, OFF, OFR, OFS, OPUS, OGA, pacpl: OGG, PAF, PRC, PVF, RA, RAM, RAW, RF64, SD2, SF, SHN, SMP, SND, pacpl: SOU, SPX, SRN, TAK, TTA, TXW, VOC, VMS, VQF, W64, WAV, WMA, pacpl: and WV. pacpl: pacpl: It can also extract audio from the following video extensions: pacpl: pacpl: RM, RV, ASF, DivX, MPG, MKV, MPEG, AVI, MOV, OGA, OGM, OGV, QT, VCD, pacpl: SVCD, M4V, NSV, NUV, PSP, SMK, VOB, FLV, WEBM and WMV. pacpl: pacpl: Parallel processing, a CD ripping function with CDDB support, batch pacpl: conversion, tag preservation for most supported formats, independent tag pacpl: reading & writing, and extensions for Dolphin & Konqueror are pacpl: also provided.pacpl-code/aclocal/0000755000175100017510000000000013527600265013521 5ustar viriiviriipacpl-code/aclocal/ax_prog_perl_modules.m40000644000175100017510000000431313527600265020175 0ustar viriivirii# =========================================================================== # http://www.gnu.org/software/autoconf-archive/ax_prog_perl_modules.html # =========================================================================== # # SYNOPSIS # # AX_PROG_PERL_MODULES([MODULES], [ACTION-IF-TRUE], [ACTION-IF-FALSE]) # # DESCRIPTION # # Checks to see if the given perl modules are available. If true the shell # commands in ACTION-IF-TRUE are executed. If not the shell commands in # ACTION-IF-FALSE are run. Note if $PERL is not set (for example by # calling AC_CHECK_PROG, or AC_PATH_PROG), AC_CHECK_PROG(PERL, perl, perl) # will be run. # # MODULES is a space separated list of module names. To check for a # minimum version of a module, append the version number to the module # name, separated by an equals sign. # # Example: # # AX_PROG_PERL_MODULES( Text::Wrap Net::LDAP=1.0.3, , # AC_MSG_WARN(Need some Perl modules) # # LICENSE # # Copyright (c) 2009 Dean Povey # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice # and this notice are preserved. This file is offered as-is, without any # warranty. #serial 7 AU_ALIAS([AC_PROG_PERL_MODULES], [AX_PROG_PERL_MODULES]) AC_DEFUN([AX_PROG_PERL_MODULES],[dnl m4_define([ax_perl_modules]) m4_foreach([ax_perl_module], m4_split(m4_normalize([$1])), [ m4_append([ax_perl_modules], [']m4_bpatsubst(ax_perl_module,=,[ ])[' ]) ]) # Make sure we have perl if test -z "$PERL"; then AC_CHECK_PROG(PERL,perl,perl) fi if test "x$PERL" != x; then ax_perl_modules_failed=0 for ax_perl_module in ax_perl_modules; do AC_MSG_CHECKING(for perl module $ax_perl_module) # Would be nice to log result here, but can't rely on autoconf internals $PERL -e "use $ax_perl_module; exit" > /dev/null 2>&1 if test $? -ne 0; then AC_MSG_RESULT(no); ax_perl_modules_failed=1 else AC_MSG_RESULT(ok); fi done # Run optional shell commands if test "$ax_perl_modules_failed" = 0; then : $2 else : $3 fi else AC_MSG_WARN(could not find perl) fi])dnl pacpl-code/extra/0000755000175100017510000000000014010543541013235 5ustar viriiviriipacpl-code/extra/README.module0000644000175100017510000000132313527600265015411 0ustar viriiviriiUSER MODULES: You can use modules to extend pacpl conversion features adding new supported file formats. The best way to incorporate you own module is to copy the sample.m to a new file and change the various values accordingly. Then place the module in /etc/pacpl/modules and it will be automatically detected next time you run pacpl. If you're familiar with Perl and hashes, then writing your own shouldn't be a problem. Wild card %i will be the input file, and wild card %o will be the output file. ESTR = string used to encode the temporary .wav file DSTR = string used to decode to the temporary .wav file It should be noted that for the time being --dopts and --eopts will no longer work with imported codecs. pacpl-code/extra/ffmpeg-conf.sh0000644000175100017510000000147013527600265015773 0ustar viriivirii#!/bin/bash # # Confiure script for ffmpeg # This is a generl configure script, use at your own risk ./configure --prefix=/usr \ --enable-nonfree \ --enable-pthread \ --mandir=/usr/man \ --disable-debug \ --enable-shared \ --enable-postproc \ --enable-libschroedinger \ --enable-slib \ --enable-gpl \ --enable-version3 \ --enable-pic \ --enable-avisynth \ --enable-libvo-aacenc \ --enable-libvo-amrwbenc \ --enable-fontconfig \ --enable-gnutls \ --enable-libfaac \ --enable-libmp3lame \ --enable-libfreetype \ --enable-libspeex \ --enable-libtheora \ --enable-libtwolame \ --enable-libvorbis \ --enable-libx264 \ --enable-libxvid \ --enable-openssl \ --enable-libfdk-aac \ --enable-libopencore-amrnb \ --enable-libopencore-amrwb \ --enable-x11grab \ pacpl-code/extra/mod-install.sh0000755000175100017510000000126213527600265016031 0ustar viriivirii#!/bin/bash # # Run this script to install the required modules for # the Perl Audio Converter. # # Update: Make sure cpan has already been initizlized before running this script perl -MCPAN -e 'install Parse::RecDescent' perl -MCPAN -e 'install Devel::Symdump' perl -MCPAN -e 'install Pod::Coverage' perl -MCPAN -e 'install Parallel::ForkManager' perl -MCPAN -e 'install Test::Pod::Coverage' perl -MCPAN -e 'install Audio::Scan' perl -MCPAN -e 'install MP3::Info' perl -MCPAN -e 'install Audio::FLAC::Header' perl -MCPAN -e 'install MP3::Tag' perl -MCPAN -e 'install IO::String' perl -MCPAN -e 'install CDDB' perl -MCPAN -e 'install CDDB_get' perl -MCPAN -e 'install String::ShellQuote' pacpl-code/extra/sample.m0000644000175100017510000000106113527600265014703 0ustar viriivirii# Sample MP5 codec - John Doe (johndoe@example.org) # # This is just a sample. my $mp5 = { NAME => 'mp5', DEFAULT_ENCODER => 'ffmpeg', DEFAULT_DECODER => 'lame', TAGS => { READ => 0, WRITE => 0, MODULE => undef }, # do not change ENCODER => { ffmpeg => { NAME => 'ffmpeg', ESTR => sub { "-y -i %i %o" }, }, }, DECODER => { lame => { NAME => 'lame', DSTR => sub { "--decode %i %o" }, }, }, }; import_module($mp5);pacpl-code/extra/README.extra0000644000175100017510000000112113527600265015243 0ustar viriivirii--------------------------------------------------------------------------- mod-install.sh: this script will attempt to install all the required perl modules for pacpl. For some it may be necessary to actually start the CPAN shell: perl -MCPAN -e 'shell' (or just 'cpan') and from there type: install Module::Name --------------------------------------------------------------------------- mod-install-debian.sh Same as above except it uses apt-get to install the distro based packages for debian based operating systems. The script will attempt ot install Ogg::Vorbis::Header manually. pacpl-code/extra/mod-install-debian.sh0000755000175100017510000000310714010543537017245 0ustar viriivirii#!/bin/bash # # This script installs the required perl modules # some necessary libraries and other useful encoders # & decoders which you will find useful while # utilizing the application # # run this script using: sudo sh ./mod-install-debian.sh # # Update: Make sure cpan has already been initizlized before running this script echo "" echo "" echo "Installing required libs and perl modules..." echo "" sleep 4 sudo apt install libvorbis-dev \ libcddb-perl \ libinline-perl \ libcddb-get-perl \ libmp3-tag-perl \ libaudio-scan-perl \ libaudio-flac-header-perl \ libstring-shellquote-perl \ libparallel-forkmanager-perl # install some default encoders / decoders echo "" echo "" echo "Installing some basic encoding/decoding tools to get you started.." echo "" sleep 4 sudo apt install vorbis-tools \ lame \ twolame \ sox \ musepack-tools \ ffmpeg \ mplayer \ cdparanoia \ flac \ faad \ opus-tools \ sndfile-programs \ speex \ wavpack \ perl-doc echo "" echo "" echo "Settign up your repository to be able to install the restricted-extras package..." echo "" sleep 4 #sudo apt-get clean #cd /var/lib/apt #sudo mv lists lists.old #sudo mkdir -p lists/partial #sudo apt-get clean #sudo apt-get update echo "" echo "" echo "Now install via apt-get ubuntu-restricted-extras or kubuntu-restricted-extras depending on your flavor" echo "" sleep 5 pacpl-code/extra/libav-conf.sh0000644000175100017510000000112213527600265015616 0ustar viriivirii#!/bin/bash # # Confiure script for libav # This is a general configuration use at your own risk ./configure --prefix=/usr \ --enable-nonfree \ --enable-gpl \ --enable-version3 \ --enable-pic \ --enable-gnutls \ --enable-libfaac \ --enable-libmp3lame \ --enable-libfreetype \ --enable-libspeex \ --enable-libtheora \ --enable-libvorbis \ --enable-libx264 \ --enable-libxvid \ --enable-openssl \ --enable-libfdk-aac \ --enable-libvo-aacenc \ --enable-libvo-amrwbenc \ --enable-libopencore-amrnb \ --enable-libopencore-amrwb \ --enable-x11grab \ pacpl-code/extra/README.chromebook0000644000175100017510000000053313527774653016273 0ustar viriiviriiIf your Chromebook supports Crostini you will need to install the following packages: sudo apt install build-essential sudo apt install autoconf --------- Afterwards go to the main pacpl director and do the following: --------- cd extra/ sh mod-install-debian.sh cd .. autoconf ./configure --prefix=/usr --sysconfdir=/etc make sudo make installpacpl-code/configure.ac0000664000175100017510000001300614010535102014374 0ustar viriivirii# Process this file with autoconf to produce a configure script. # # Copyright (C) 2007-2021 Philip Lyons (vorzox@gmail.com) AC_PACKAGE_NAME(Perl Audio Converter) AC_PACKAGE_TARNAME(pacpl-6.1.3.tar.bz2) AC_PACKAGE_VERSION(6.1.3) AC_PACKAGE_BUGREPORT(vorzox@gmail.com) m4_include([aclocal/ax_prog_perl_modules.m4]) AC_PROG_PERL_VERSION(5.18.1) AC_PREREQ([2.69]) AC_INIT([pacpl],[6.1.3]) AM_INIT_AUTOMAKE AC_SUBST(INSTALL_KONQ) AC_SUBST(INSTALL_DOLP) AC_SUBST(KDEDIR) AC_PREFIX_DEFAULT(/usr) AC_PREFIX_PROGRAM(pacpl) AC_CONFIG_SRCDIR(pacpl.in) AC_PROG_INSTALL AC_PATH_PROG(RM, rm, rm) AC_PATH_PROG(PERL, perl, perl) AC_PATH_PROG(POD2MAN, pod2man, pod2man) AC_PATH_PROG(POD2HTML, pod2html, pod2man) AC_PATH_PROG(GZIP, gzip, gzip) ######################################## # check for supported encoder/decoders # ######################################## AC_MSG_NOTICE() AC_CHECK_PROG(LAME, lame, yes) AC_CHECK_PROG(TOOLAME, toolame, yes) AC_CHECK_PROG(TWOLAME, twolame, yes) AC_CHECK_PROG(BLADEENC, bladeenc, yes) AC_CHECK_PROG(OGGENC, oggenc, yes) AC_CHECK_PROG(OGGDEC, oggdec, yes) AC_CHECK_PROG(OPUSENC, opusenc, yes) AC_CHECK_PROG(OPUSDEC, opusdec, yes) AC_CHECK_PROG(AFTEN, aften, yes) AC_CHECK_PROG(SPEEXENC, speexenc, yes) AC_CHECK_PROG(SPEEXDEC, speexdec, yes) AC_CHECK_PROG(FLAC, flac, yes) AC_CHECK_PROG(MAC, mac, yes) AC_CHECK_PROG(SHORTEN, shorten, yes) AC_CHECK_PROG(SOX, sox, yes) AC_CHECK_PROG(FAAC, faac, yes) AC_CHECK_PROG(FAAD, faad, yes) AC_CHECK_PROG(FFMPEG, ffmpeg, yes) AC_CHECK_PROG(AVCONV, avconv, yes) AC_CHECK_PROG(MPLAYER, mplayer, yes) AC_CHECK_PROG(LA, la, yes) AC_CHECK_PROG(BONK, bonk, yes) AC_CHECK_PROG(MPCENC, mpcenc, yes) AC_CHECK_PROG(MPCDEC, mpcdec, yes) AC_CHECK_PROG(OFF, off, yes) AC_CHECK_PROG(OFR, ofr, yes) AC_CHECK_PROG(OFS, ofs, yes) AC_CHECK_PROG(TTAENC, ttaenc, yes) AC_CHECK_PROG(WAVPACK, wavpack, yes) AC_CHECK_PROG(WVUNPACK, wvunpack, yes) AC_CHECK_PROG(SNDFILE, sndfile-convert, yes) ################################### # Check for required perl modules # ################################### AC_MSG_NOTICE() AC_MSG_NOTICE([checking for required perl modules...]) AC_MSG_NOTICE() AX_PROG_PERL_MODULES( Getopt::Long File::Basename File::Find Parallel::ForkManager File::Spec::Functions CDDB CDDB_get MP3::Tag Audio::Scan Audio::FLAC::Header , [], AC_MSG_ERROR([ERROR: One or more of the required modules could not be found. See extra/mod-install.sh or extra/mod-install-ubuntu.sh])) AC_MSG_NOTICE() AC_MSG_NOTICE([checking for required plugin applications...]) AC_MSG_NOTICE() AC_ARG_ENABLE([kde], [AS_HELP_STRING([--enable-kde],[Install KDE Service Menu (Dolphin/Konqueror)])], [], [enable_kde=no]) AC_ARG_ENABLE([nemo], [AS_HELP_STRING([--enable-nemo],[Install GNOME Nemo Action Script])], [], [enable_nemo=no]) AC_ARG_ENABLE([nautilus], [AS_HELP_STRING([--enable-nautilus],[Install GNOME Nautilus Script])], [], [enable_nautilus=no]) AC_CHECK_PROG([KDIALOG],[kdialog],[yes]) AC_CHECK_PROG([ZENITY],[zenity],[yes]) AC_CHECK_PROG([NAUTILUS],[nautilus],[yes]) AC_CHECK_PROG([NEMO],[nemo],[yes]) AM_CONDITIONAL([INSTALL_NAUTILUS], [test x$enable_nautilus = xyes]) AM_CONDITIONAL([INSTALL_NEMO], [test x$enable_nemo = xyes]) AM_CONDITIONAL([INSTALL_KDE], [test x$enable_kde = xyes]) AM_CONDITIONAL([ENABLE_GNOME_NAUTILUS], [test x$enable_nautilus = xyes]) AM_CONDITIONAL([ENABLE_GNOME_NEMO], [test x$enable_nemo = xyes]) if test "x$enable_nautilus" = "xyes" -o "x$enable_nemo" = "xyes"; then ENABLE_GNOME=true fi if test "x$KDIALOG" = "xyes" -a "x$enable_kde" != "xno"; then INSTALL_KDE=true else INSTALL_KDE=false fi if test "x$NAUTILUS" = "xyes" -a "x$enable_nautilus" != "xno"; then INSTALL_NAUTILUS=true else INSTALL_NAUTILUS=false fi if test "x$NEMO" = "xyes" -a "x$enable_nemo" != "xno"; then INSTALL_NEMO=true else INSTALL_NEMO=false fi if test "x$INSTALL_KDE" = "xtrue" -a "x$INSTALL_NAUTILUS" = "xtrue"; then AC_MSG_FAILURE([nautilus and kde cannot be enabled at the same time. exiting..]) fi if test "x$INSTALL_KDE" = "xtrue" -a "x$INSTALL_NEMO" = "xtrue"; then AC_MSG_FAILURE([nemo and kde cannot be enabled at the same time. exiting..]) fi if test "x$NAUTILUS" != "xyes" -a "x$enable_nautilus" = "xyes"; then AC_MSG_NOTICE() AC_MSG_FAILURE([could not find applicaiton 'nautilus': exiting..."]) AC_MSG_NOTICE() fi if test "x$NEMO" != "xyes" -a "x$enable_nemo" = "xyes"; then AC_MSG_NOTICE() AC_MSG_FAILURE([could not find application 'nemo': exiting..."]) AC_MSG_NOTICE() fi if test "x$enable_kde" != "xno"; then plugins=1 elif test "x$enable_nautilus" != "xno"; then plugins=1 elif test "x$enable_nemo" != "xno"; then plugins=1 else plugins=0 fi AC_MSG_NOTICE() AC_ARG_VAR([KDEDIR], [root directory of your KDE installation (default /usr)]) AC_ARG_VAR([GNOMEDIR], [root directory of your GNOME installation (default /usr)]) AC_ARG_VAR([DESTDIR], [root installation directory (default /)]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT() if test x$plugins = x1; then AC_MSG_NOTICE() AC_MSG_NOTICE([The following plugins will be installed:]) AC_MSG_NOTICE() if test x$INSTALL_KDE = xtrue; then AC_MSG_NOTICE([KDE Service Menu]) fi if test x$INSTALL_NAUTILUS = xtrue; then AC_MSG_NOTICE([Nautilus Script]) fi if test x$INSTALL_NEMO = xtrue; then AC_MSG_NOTICE([NEMO Action Script]) fi fi if test x$plugins = x0; then AC_MSG_NOTICE() AC_MSG_NOTICE() AC_MSG_NOTICE([no plugins have been enabled...]) AC_MSG_NOTICE() fi AC_MSG_NOTICE() AC_MSG_NOTICE([Configure finished successfully...]) AC_MSG_NOTICE() AC_MSG_NOTICE([make && make install]) exit 0 pacpl-code/configure0000775000175100017510000046542214010545714014044 0ustar viriivirii#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for pacpl 6.1.3. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='pacpl' PACKAGE_TARNAME='pacpl' PACKAGE_VERSION='6.1.3' PACKAGE_STRING='pacpl 6.1.3' PACKAGE_BUGREPORT='' PACKAGE_URL='' ac_default_prefix=/usr ac_unique_file="pacpl.in" ac_subst_vars='LTLIBOBJS LIBOBJS DESTDIR GNOMEDIR ENABLE_GNOME_NEMO_FALSE ENABLE_GNOME_NEMO_TRUE ENABLE_GNOME_NAUTILUS_FALSE ENABLE_GNOME_NAUTILUS_TRUE INSTALL_KDE_FALSE INSTALL_KDE_TRUE INSTALL_NEMO_FALSE INSTALL_NEMO_TRUE INSTALL_NAUTILUS_FALSE INSTALL_NAUTILUS_TRUE NEMO NAUTILUS ZENITY KDIALOG SNDFILE WVUNPACK WAVPACK TTAENC OFS OFR OFF MPCDEC MPCENC BONK LA MPLAYER AVCONV FFMPEG FAAD FAAC SOX SHORTEN MAC FLAC SPEEXDEC SPEEXENC AFTEN OPUSDEC OPUSENC OGGDEC OGGENC BLADEENC TWOLAME TOOLAME LAME GZIP POD2HTML POD2MAN PERL RM ac_prefix_program KDEDIR INSTALL_DOLP INSTALL_KONQ AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir runstatedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_kde enable_nemo enable_nautilus ' ac_precious_vars='build_alias host_alias target_alias KDEDIR GNOMEDIR DESTDIR' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -runstatedir | --runstatedir | --runstatedi | --runstated \ | --runstate | --runstat | --runsta | --runst | --runs \ | --run | --ru | --r) ac_prev=runstatedir ;; -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ | --run=* | --ru=* | --r=*) runstatedir=$ac_optarg ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures pacpl 6.1.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/pacpl] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of pacpl 6.1.3:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-kde Install KDE Service Menu (Dolphin/Konqueror) --enable-nemo Install GNOME Nemo Action Script --enable-nautilus Install GNOME Nautilus Script Some influential environment variables: KDEDIR root directory of your KDE installation (default /usr) GNOMEDIR root directory of your GNOME installation (default /usr) DESTDIR root installation directory (default /) Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to the package provider. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF pacpl configure 6.1.3 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by pacpl $as_me 6.1.3, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am__api_version='1.16' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='pacpl' VERSION='6.1.3' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi if test "x$prefix" = xNONE; then $as_echo_n "checking for prefix by " >&6 # Extract the first word of "pacpl", so it can be a program name with args. set dummy pacpl; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_prefix_program+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_prefix_program in [\\/]* | ?:[\\/]*) ac_cv_path_ac_prefix_program="$ac_prefix_program" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ac_prefix_program="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_prefix_program=$ac_cv_path_ac_prefix_program if test -n "$ac_prefix_program"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_prefix_program" >&5 $as_echo "$ac_prefix_program" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -n "$ac_prefix_program"; then prefix=`$as_dirname -- "$ac_prefix_program" || $as_expr X"$ac_prefix_program" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_prefix_program" : 'X\(//\)[^/]' \| \ X"$ac_prefix_program" : 'X\(//\)$' \| \ X"$ac_prefix_program" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_prefix_program" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` prefix=`$as_dirname -- "$prefix" || $as_expr X"$prefix" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$prefix" : 'X\(//\)[^/]' \| \ X"$prefix" : 'X\(//\)$' \| \ X"$prefix" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$prefix" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` fi fi # Extract the first word of "rm", so it can be a program name with args. set dummy rm; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_RM+:} false; then : $as_echo_n "(cached) " >&6 else case $RM in [\\/]* | ?:[\\/]*) ac_cv_path_RM="$RM" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_RM="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_RM" && ac_cv_path_RM="rm" ;; esac fi RM=$ac_cv_path_RM if test -n "$RM"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RM" >&5 $as_echo "$RM" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "perl", so it can be a program name with args. set dummy perl; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PERL+:} false; then : $as_echo_n "(cached) " >&6 else case $PERL in [\\/]* | ?:[\\/]*) ac_cv_path_PERL="$PERL" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PERL="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_PERL" && ac_cv_path_PERL="perl" ;; esac fi PERL=$ac_cv_path_PERL if test -n "$PERL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PERL" >&5 $as_echo "$PERL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "pod2man", so it can be a program name with args. set dummy pod2man; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_POD2MAN+:} false; then : $as_echo_n "(cached) " >&6 else case $POD2MAN in [\\/]* | ?:[\\/]*) ac_cv_path_POD2MAN="$POD2MAN" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_POD2MAN="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_POD2MAN" && ac_cv_path_POD2MAN="pod2man" ;; esac fi POD2MAN=$ac_cv_path_POD2MAN if test -n "$POD2MAN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $POD2MAN" >&5 $as_echo "$POD2MAN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "pod2html", so it can be a program name with args. set dummy pod2html; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_POD2HTML+:} false; then : $as_echo_n "(cached) " >&6 else case $POD2HTML in [\\/]* | ?:[\\/]*) ac_cv_path_POD2HTML="$POD2HTML" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_POD2HTML="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_POD2HTML" && ac_cv_path_POD2HTML="pod2man" ;; esac fi POD2HTML=$ac_cv_path_POD2HTML if test -n "$POD2HTML"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $POD2HTML" >&5 $as_echo "$POD2HTML" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "gzip", so it can be a program name with args. set dummy gzip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GZIP+:} false; then : $as_echo_n "(cached) " >&6 else case $GZIP in [\\/]* | ?:[\\/]*) ac_cv_path_GZIP="$GZIP" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_GZIP="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GZIP" && ac_cv_path_GZIP="gzip" ;; esac fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GZIP" >&5 $as_echo "$GZIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi ######################################## # check for supported encoder/decoders # ######################################## { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} # Extract the first word of "lame", so it can be a program name with args. set dummy lame; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LAME+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LAME"; then ac_cv_prog_LAME="$LAME" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LAME="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LAME=$ac_cv_prog_LAME if test -n "$LAME"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LAME" >&5 $as_echo "$LAME" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "toolame", so it can be a program name with args. set dummy toolame; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_TOOLAME+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$TOOLAME"; then ac_cv_prog_TOOLAME="$TOOLAME" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_TOOLAME="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi TOOLAME=$ac_cv_prog_TOOLAME if test -n "$TOOLAME"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $TOOLAME" >&5 $as_echo "$TOOLAME" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "twolame", so it can be a program name with args. set dummy twolame; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_TWOLAME+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$TWOLAME"; then ac_cv_prog_TWOLAME="$TWOLAME" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_TWOLAME="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi TWOLAME=$ac_cv_prog_TWOLAME if test -n "$TWOLAME"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $TWOLAME" >&5 $as_echo "$TWOLAME" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "bladeenc", so it can be a program name with args. set dummy bladeenc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_BLADEENC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$BLADEENC"; then ac_cv_prog_BLADEENC="$BLADEENC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_BLADEENC="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi BLADEENC=$ac_cv_prog_BLADEENC if test -n "$BLADEENC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $BLADEENC" >&5 $as_echo "$BLADEENC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "oggenc", so it can be a program name with args. set dummy oggenc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OGGENC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OGGENC"; then ac_cv_prog_OGGENC="$OGGENC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OGGENC="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OGGENC=$ac_cv_prog_OGGENC if test -n "$OGGENC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OGGENC" >&5 $as_echo "$OGGENC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "oggdec", so it can be a program name with args. set dummy oggdec; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OGGDEC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OGGDEC"; then ac_cv_prog_OGGDEC="$OGGDEC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OGGDEC="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OGGDEC=$ac_cv_prog_OGGDEC if test -n "$OGGDEC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OGGDEC" >&5 $as_echo "$OGGDEC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "opusenc", so it can be a program name with args. set dummy opusenc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OPUSENC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OPUSENC"; then ac_cv_prog_OPUSENC="$OPUSENC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OPUSENC="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OPUSENC=$ac_cv_prog_OPUSENC if test -n "$OPUSENC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OPUSENC" >&5 $as_echo "$OPUSENC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "opusdec", so it can be a program name with args. set dummy opusdec; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OPUSDEC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OPUSDEC"; then ac_cv_prog_OPUSDEC="$OPUSDEC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OPUSDEC="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OPUSDEC=$ac_cv_prog_OPUSDEC if test -n "$OPUSDEC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OPUSDEC" >&5 $as_echo "$OPUSDEC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "aften", so it can be a program name with args. set dummy aften; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AFTEN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AFTEN"; then ac_cv_prog_AFTEN="$AFTEN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AFTEN="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AFTEN=$ac_cv_prog_AFTEN if test -n "$AFTEN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AFTEN" >&5 $as_echo "$AFTEN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "speexenc", so it can be a program name with args. set dummy speexenc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_SPEEXENC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$SPEEXENC"; then ac_cv_prog_SPEEXENC="$SPEEXENC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_SPEEXENC="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi SPEEXENC=$ac_cv_prog_SPEEXENC if test -n "$SPEEXENC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SPEEXENC" >&5 $as_echo "$SPEEXENC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "speexdec", so it can be a program name with args. set dummy speexdec; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_SPEEXDEC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$SPEEXDEC"; then ac_cv_prog_SPEEXDEC="$SPEEXDEC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_SPEEXDEC="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi SPEEXDEC=$ac_cv_prog_SPEEXDEC if test -n "$SPEEXDEC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SPEEXDEC" >&5 $as_echo "$SPEEXDEC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "flac", so it can be a program name with args. set dummy flac; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_FLAC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$FLAC"; then ac_cv_prog_FLAC="$FLAC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_FLAC="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi FLAC=$ac_cv_prog_FLAC if test -n "$FLAC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FLAC" >&5 $as_echo "$FLAC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "mac", so it can be a program name with args. set dummy mac; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_MAC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MAC"; then ac_cv_prog_MAC="$MAC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MAC="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi MAC=$ac_cv_prog_MAC if test -n "$MAC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAC" >&5 $as_echo "$MAC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "shorten", so it can be a program name with args. set dummy shorten; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_SHORTEN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$SHORTEN"; then ac_cv_prog_SHORTEN="$SHORTEN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_SHORTEN="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi SHORTEN=$ac_cv_prog_SHORTEN if test -n "$SHORTEN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SHORTEN" >&5 $as_echo "$SHORTEN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "sox", so it can be a program name with args. set dummy sox; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_SOX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$SOX"; then ac_cv_prog_SOX="$SOX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_SOX="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi SOX=$ac_cv_prog_SOX if test -n "$SOX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SOX" >&5 $as_echo "$SOX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "faac", so it can be a program name with args. set dummy faac; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_FAAC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$FAAC"; then ac_cv_prog_FAAC="$FAAC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_FAAC="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi FAAC=$ac_cv_prog_FAAC if test -n "$FAAC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FAAC" >&5 $as_echo "$FAAC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "faad", so it can be a program name with args. set dummy faad; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_FAAD+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$FAAD"; then ac_cv_prog_FAAD="$FAAD" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_FAAD="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi FAAD=$ac_cv_prog_FAAD if test -n "$FAAD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FAAD" >&5 $as_echo "$FAAD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "ffmpeg", so it can be a program name with args. set dummy ffmpeg; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_FFMPEG+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$FFMPEG"; then ac_cv_prog_FFMPEG="$FFMPEG" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_FFMPEG="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi FFMPEG=$ac_cv_prog_FFMPEG if test -n "$FFMPEG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FFMPEG" >&5 $as_echo "$FFMPEG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "avconv", so it can be a program name with args. set dummy avconv; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AVCONV+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AVCONV"; then ac_cv_prog_AVCONV="$AVCONV" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AVCONV="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AVCONV=$ac_cv_prog_AVCONV if test -n "$AVCONV"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AVCONV" >&5 $as_echo "$AVCONV" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "mplayer", so it can be a program name with args. set dummy mplayer; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_MPLAYER+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MPLAYER"; then ac_cv_prog_MPLAYER="$MPLAYER" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MPLAYER="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi MPLAYER=$ac_cv_prog_MPLAYER if test -n "$MPLAYER"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MPLAYER" >&5 $as_echo "$MPLAYER" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "la", so it can be a program name with args. set dummy la; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LA+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LA"; then ac_cv_prog_LA="$LA" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LA="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LA=$ac_cv_prog_LA if test -n "$LA"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LA" >&5 $as_echo "$LA" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "bonk", so it can be a program name with args. set dummy bonk; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_BONK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$BONK"; then ac_cv_prog_BONK="$BONK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_BONK="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi BONK=$ac_cv_prog_BONK if test -n "$BONK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $BONK" >&5 $as_echo "$BONK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "mpcenc", so it can be a program name with args. set dummy mpcenc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_MPCENC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MPCENC"; then ac_cv_prog_MPCENC="$MPCENC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MPCENC="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi MPCENC=$ac_cv_prog_MPCENC if test -n "$MPCENC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MPCENC" >&5 $as_echo "$MPCENC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "mpcdec", so it can be a program name with args. set dummy mpcdec; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_MPCDEC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MPCDEC"; then ac_cv_prog_MPCDEC="$MPCDEC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MPCDEC="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi MPCDEC=$ac_cv_prog_MPCDEC if test -n "$MPCDEC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MPCDEC" >&5 $as_echo "$MPCDEC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "off", so it can be a program name with args. set dummy off; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OFF+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OFF"; then ac_cv_prog_OFF="$OFF" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OFF="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OFF=$ac_cv_prog_OFF if test -n "$OFF"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OFF" >&5 $as_echo "$OFF" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "ofr", so it can be a program name with args. set dummy ofr; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OFR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OFR"; then ac_cv_prog_OFR="$OFR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OFR="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OFR=$ac_cv_prog_OFR if test -n "$OFR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OFR" >&5 $as_echo "$OFR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "ofs", so it can be a program name with args. set dummy ofs; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OFS+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OFS"; then ac_cv_prog_OFS="$OFS" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OFS="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OFS=$ac_cv_prog_OFS if test -n "$OFS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OFS" >&5 $as_echo "$OFS" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "ttaenc", so it can be a program name with args. set dummy ttaenc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_TTAENC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$TTAENC"; then ac_cv_prog_TTAENC="$TTAENC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_TTAENC="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi TTAENC=$ac_cv_prog_TTAENC if test -n "$TTAENC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $TTAENC" >&5 $as_echo "$TTAENC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "wavpack", so it can be a program name with args. set dummy wavpack; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_WAVPACK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$WAVPACK"; then ac_cv_prog_WAVPACK="$WAVPACK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_WAVPACK="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi WAVPACK=$ac_cv_prog_WAVPACK if test -n "$WAVPACK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WAVPACK" >&5 $as_echo "$WAVPACK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "wvunpack", so it can be a program name with args. set dummy wvunpack; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_WVUNPACK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$WVUNPACK"; then ac_cv_prog_WVUNPACK="$WVUNPACK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_WVUNPACK="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi WVUNPACK=$ac_cv_prog_WVUNPACK if test -n "$WVUNPACK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WVUNPACK" >&5 $as_echo "$WVUNPACK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "sndfile-convert", so it can be a program name with args. set dummy sndfile-convert; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_SNDFILE+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$SNDFILE"; then ac_cv_prog_SNDFILE="$SNDFILE" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_SNDFILE="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi SNDFILE=$ac_cv_prog_SNDFILE if test -n "$SNDFILE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SNDFILE" >&5 $as_echo "$SNDFILE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi ################################### # Check for required perl modules # ################################### { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for required perl modules..." >&5 $as_echo "$as_me: checking for required perl modules..." >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} # Make sure we have perl if test -z "$PERL"; then # Extract the first word of "perl", so it can be a program name with args. set dummy perl; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_PERL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$PERL"; then ac_cv_prog_PERL="$PERL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_PERL="perl" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi PERL=$ac_cv_prog_PERL if test -n "$PERL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PERL" >&5 $as_echo "$PERL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test "x$PERL" != x; then ax_perl_modules_failed=0 for ax_perl_module in 'Getopt::Long' 'File::Basename' 'File::Find' 'Parallel::ForkManager' 'File::Spec::Functions' 'CDDB' 'CDDB_get' 'MP3::Tag' 'Audio::Scan' 'Audio::FLAC::Header' ; do { $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl module $ax_perl_module" >&5 $as_echo_n "checking for perl module $ax_perl_module... " >&6; } # Would be nice to log result here, but can't rely on autoconf internals $PERL -e "use $ax_perl_module; exit" > /dev/null 2>&1 if test $? -ne 0; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; }; ax_perl_modules_failed=1 else { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; }; fi done # Run optional shell commands if test "$ax_perl_modules_failed" = 0; then : else : as_fn_error $? "ERROR: One or more of the required modules could not be found. See extra/mod-install.sh or extra/mod-install-ubuntu.sh" "$LINENO" 5 fi else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: could not find perl" >&5 $as_echo "$as_me: WARNING: could not find perl" >&2;} fi { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for required plugin applications..." >&5 $as_echo "$as_me: checking for required plugin applications..." >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} # Check whether --enable-kde was given. if test "${enable_kde+set}" = set; then : enableval=$enable_kde; else enable_kde=no fi # Check whether --enable-nemo was given. if test "${enable_nemo+set}" = set; then : enableval=$enable_nemo; else enable_nemo=no fi # Check whether --enable-nautilus was given. if test "${enable_nautilus+set}" = set; then : enableval=$enable_nautilus; else enable_nautilus=no fi # Extract the first word of "kdialog", so it can be a program name with args. set dummy kdialog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_KDIALOG+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$KDIALOG"; then ac_cv_prog_KDIALOG="$KDIALOG" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_KDIALOG="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi KDIALOG=$ac_cv_prog_KDIALOG if test -n "$KDIALOG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $KDIALOG" >&5 $as_echo "$KDIALOG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "zenity", so it can be a program name with args. set dummy zenity; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ZENITY+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ZENITY"; then ac_cv_prog_ZENITY="$ZENITY" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ZENITY="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ZENITY=$ac_cv_prog_ZENITY if test -n "$ZENITY"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ZENITY" >&5 $as_echo "$ZENITY" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "nautilus", so it can be a program name with args. set dummy nautilus; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_NAUTILUS+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NAUTILUS"; then ac_cv_prog_NAUTILUS="$NAUTILUS" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NAUTILUS="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi NAUTILUS=$ac_cv_prog_NAUTILUS if test -n "$NAUTILUS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NAUTILUS" >&5 $as_echo "$NAUTILUS" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "nemo", so it can be a program name with args. set dummy nemo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_NEMO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NEMO"; then ac_cv_prog_NEMO="$NEMO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NEMO="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi NEMO=$ac_cv_prog_NEMO if test -n "$NEMO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NEMO" >&5 $as_echo "$NEMO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test x$enable_nautilus = xyes; then INSTALL_NAUTILUS_TRUE= INSTALL_NAUTILUS_FALSE='#' else INSTALL_NAUTILUS_TRUE='#' INSTALL_NAUTILUS_FALSE= fi if test x$enable_nemo = xyes; then INSTALL_NEMO_TRUE= INSTALL_NEMO_FALSE='#' else INSTALL_NEMO_TRUE='#' INSTALL_NEMO_FALSE= fi if test x$enable_kde = xyes; then INSTALL_KDE_TRUE= INSTALL_KDE_FALSE='#' else INSTALL_KDE_TRUE='#' INSTALL_KDE_FALSE= fi if test x$enable_nautilus = xyes; then ENABLE_GNOME_NAUTILUS_TRUE= ENABLE_GNOME_NAUTILUS_FALSE='#' else ENABLE_GNOME_NAUTILUS_TRUE='#' ENABLE_GNOME_NAUTILUS_FALSE= fi if test x$enable_nemo = xyes; then ENABLE_GNOME_NEMO_TRUE= ENABLE_GNOME_NEMO_FALSE='#' else ENABLE_GNOME_NEMO_TRUE='#' ENABLE_GNOME_NEMO_FALSE= fi if test "x$enable_nautilus" = "xyes" -o "x$enable_nemo" = "xyes"; then ENABLE_GNOME=true fi if test "x$KDIALOG" = "xyes" -a "x$enable_kde" != "xno"; then INSTALL_KDE=true else INSTALL_KDE=false fi if test "x$NAUTILUS" = "xyes" -a "x$enable_nautilus" != "xno"; then INSTALL_NAUTILUS=true else INSTALL_NAUTILUS=false fi if test "x$NEMO" = "xyes" -a "x$enable_nemo" != "xno"; then INSTALL_NEMO=true else INSTALL_NEMO=false fi if test "x$INSTALL_KDE" = "xtrue" -a "x$INSTALL_NAUTILUS" = "xtrue"; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "nautilus and kde cannot be enabled at the same time. exiting.. See \`config.log' for more details" "$LINENO" 5; } fi if test "x$INSTALL_KDE" = "xtrue" -a "x$INSTALL_NEMO" = "xtrue"; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "nemo and kde cannot be enabled at the same time. exiting.. See \`config.log' for more details" "$LINENO" 5; } fi if test "x$NAUTILUS" != "xyes" -a "x$enable_nautilus" = "xyes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "could not find applicaiton 'nautilus': exiting...\" See \`config.log' for more details" "$LINENO" 5; } { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} fi if test "x$NEMO" != "xyes" -a "x$enable_nemo" = "xyes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "could not find application 'nemo': exiting...\" See \`config.log' for more details" "$LINENO" 5; } { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} fi if test "x$enable_kde" != "xno"; then plugins=1 elif test "x$enable_nautilus" != "xno"; then plugins=1 elif test "x$enable_nemo" != "xno"; then plugins=1 else plugins=0 fi { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} ac_config_files="$ac_config_files Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' # Transform confdefs.h into DEFS. # Protect against shell expansion while executing Makefile rules. # Protect against Makefile macro expansion. # # If the first sed substitution is executed (which looks for macros that # take arguments), then branch to the quote section. Otherwise, # look for a macro that doesn't take arguments. ac_script=' :mline /\\$/{ N s,\\\n,, b mline } t clear :clear s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g t quote s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g t quote b any :quote s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g s/\[/\\&/g s/\]/\\&/g s/\$/$$/g H :any ${ g s/^\n// s/\n/ /g p } ' DEFS=`sed -n "$ac_script" confdefs.h` ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -z "${INSTALL_NAUTILUS_TRUE}" && test -z "${INSTALL_NAUTILUS_FALSE}"; then as_fn_error $? "conditional \"INSTALL_NAUTILUS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${INSTALL_NEMO_TRUE}" && test -z "${INSTALL_NEMO_FALSE}"; then as_fn_error $? "conditional \"INSTALL_NEMO\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${INSTALL_KDE_TRUE}" && test -z "${INSTALL_KDE_FALSE}"; then as_fn_error $? "conditional \"INSTALL_KDE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_GNOME_NAUTILUS_TRUE}" && test -z "${ENABLE_GNOME_NAUTILUS_FALSE}"; then as_fn_error $? "conditional \"ENABLE_GNOME_NAUTILUS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_GNOME_NEMO_TRUE}" && test -z "${ENABLE_GNOME_NEMO_FALSE}"; then as_fn_error $? "conditional \"ENABLE_GNOME_NEMO\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by pacpl $as_me 6.1.3, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE Configuration files: $config_files Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ pacpl config.status 6.1.3 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --he | --h | --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" eval set X " :F $CONFIG_FILES " shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi if test x$plugins = x1; then { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: The following plugins will be installed:" >&5 $as_echo "$as_me: The following plugins will be installed:" >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} if test x$INSTALL_KDE = xtrue; then { $as_echo "$as_me:${as_lineno-$LINENO}: KDE Service Menu" >&5 $as_echo "$as_me: KDE Service Menu" >&6;} fi if test x$INSTALL_NAUTILUS = xtrue; then { $as_echo "$as_me:${as_lineno-$LINENO}: Nautilus Script" >&5 $as_echo "$as_me: Nautilus Script" >&6;} fi if test x$INSTALL_NEMO = xtrue; then { $as_echo "$as_me:${as_lineno-$LINENO}: NEMO Action Script" >&5 $as_echo "$as_me: NEMO Action Script" >&6;} fi fi if test x$plugins = x0; then { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: no plugins have been enabled..." >&5 $as_echo "$as_me: no plugins have been enabled..." >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} fi { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: Configure finished successfully..." >&5 $as_echo "$as_me: Configure finished successfully..." >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5 $as_echo "$as_me: " >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: make && make install" >&5 $as_echo "$as_me: make && make install" >&6;} exit 0 pacpl-code/AUTHORS0000644000175100017510000000013513527600265013172 0ustar viriiviriiPhilip Lyons (vorzox@gmail.com) Thanks also to the many contributors who submitted patches!