lmms-1.0.0+bzr2569/.gitattributes0000644000000000000000000000006612064226444014626 0ustar 00000000000000.gitattributes export-ignore .gitignore export-ignore lmms-1.0.0+bzr2569/.gitignore0000644000000000000000000000005612304135474013721 0ustar 00000000000000/build /target .*.sw? *~ /CMakeLists.txt.user lmms-1.0.0+bzr2569/.mailmap0000644000000000000000000000113512271074310013343 0ustar 00000000000000Tobias Doerffel Paul Giblock Paul Giblock Andrew Kelley Andrew Kelley Janne Sinisalo Raine M. Ekman Raine M. Ekman Lukas W Vesa Jonathan Aquilina lmms-1.0.0+bzr2569/.svnignore0000644000000000000000000000007410767406056013754 0ustar 00000000000000Makefile.in *.moc .libs embedded_resources.h .deps Makefile lmms-1.0.0+bzr2569/.travis.yml0000644000000000000000000000062712301156423014040 0ustar 00000000000000language: cpp compiler: gcc before_install: sudo apt-get update install: sudo apt-get install libqt4-dev libsndfile-dev fftw3-dev libvorbis-dev libogg-dev libasound2-dev libjack-dev libsdl-dev libsamplerate0-dev libstk0-dev libfluidsynth-dev portaudio19-dev wine-dev g++-multilib libfltk1.3-dev before_script: mkdir build && cd build script: cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. && make -j8 VERBOSE=1 lmms-1.0.0+bzr2569/AUTHORS0000644000000000000000000000271012273451723013003 0ustar 00000000000000Tobias Doerffel Development Manager Jonathan Aquilina Project Manager Paul Giblock Development Danny McRae Development Javier Serrano Polo Development Lukas Wohlschläger Development Andrew Kelley Development Wong Cho Ching Development Andreas Brandmaier BitInvader plugin Juan Fabián Simón Version 0.4 plugin artwork Sebastian Tilsch Recording of many samples Gabriel Additional artwork Vesa Kivimäki UI Lead developer Gurjot Singh Developer Hannu Haahti Developer Uroš Maravić UI Developer Tobiasz Karoń (unfa) UI Developer Johannes Lorenz Developer Rubén Ibarra Pastor Developer LocoMatt 3osc skin developer Chrissy McManus UI developer Oskar Wallgren Development lmms-1.0.0+bzr2569/CMakeLists.txt0000644000000000000000000005354212313663131014475 0ustar 00000000000000CMAKE_MINIMUM_REQUIRED(VERSION 2.4.5) PROJECT(lmms) SET(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" ${CMAKE_MODULE_PATH}) IF(COMMAND CMAKE_POLICY) CMAKE_POLICY(SET CMP0005 NEW) CMAKE_POLICY(SET CMP0003 NEW) ENDIF(COMMAND CMAKE_POLICY) INCLUDE(AddFileDependencies) INCLUDE(CheckIncludeFiles) INCLUDE(FindPkgConfig) SET(VERSION_MAJOR "1") SET(VERSION_MINOR "0") SET(VERSION_PATCH "0") #SET(VERSION_SUFFIX "") SET(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}") IF(VERSION_SUFFIX) SET(VERSION "${VERSION}-${VERSION_SUFFIX}") ENDIF(VERSION_SUFFIX) INCLUDE(DetectMachine) OPTION(WANT_ALSA "Include ALSA (Advanced Linux Sound Architecture) support" ON) OPTION(WANT_CALF "Include CALF LADSPA plugins" ON) OPTION(WANT_CAPS "Include C* Audio Plugin Suite (LADSPA plugins)" ON) OPTION(WANT_CMT "Include Computer Music Toolkit LADSPA plugins" ON) OPTION(WANT_JACK "Include JACK (Jack Audio Connection Kit) support" ON) OPTION(WANT_OGGVORBIS "Include OGG/Vorbis support" ON) OPTION(WANT_PULSEAUDIO "Include PulseAudio support" ON) OPTION(WANT_PORTAUDIO "Include PortAudio support" ON) OPTION(WANT_SDL "Include SDL (Simple DirectMedia Layer) support" ON) OPTION(WANT_SF2 "Include SoundFont2 player plugin" ON) OPTION(WANT_STK "Include Stk (Synthesis Toolkit) support" ON) OPTION(WANT_SWH "Include Steve Harris's LADSPA plugins" ON) OPTION(WANT_TAP "Include Tom's Audio Processing LADSPA plugins" ON) OPTION(WANT_VST "Include VST support" ON) OPTION(WANT_VST_NOWINE "Include partial VST support (without wine)" OFF) OPTION(WANT_WINMM "Include WinMM MIDI support" OFF) IF(LMMS_BUILD_WIN32) SET(WANT_ALSA OFF) SET(WANT_JACK OFF) SET(WANT_PULSEAUDIO OFF) SET(WANT_SYSTEM_SR OFF) SET(WANT_WINMM ON) SET(LMMS_HAVE_WINMM TRUE) SET(STATUS_ALSA "") SET(STATUS_JACK "") SET(STATUS_PULSEAUDIO "") SET(STATUS_WINMM "OK") ELSE(LMMS_BUILD_WIN32) SET(STATUS_WINMM "") ENDIF(LMMS_BUILD_WIN32) CHECK_INCLUDE_FILES(stdint.h LMMS_HAVE_STDINT_H) CHECK_INCLUDE_FILES(stdlib.h LMMS_HAVE_STDLIB_H) CHECK_INCLUDE_FILES(pthread.h LMMS_HAVE_PTHREAD_H) CHECK_INCLUDE_FILES(semaphore.h LMMS_HAVE_SEMAPHORE_H) CHECK_INCLUDE_FILES(unistd.h LMMS_HAVE_UNISTD_H) CHECK_INCLUDE_FILES(sys/types.h LMMS_HAVE_SYS_TYPES_H) CHECK_INCLUDE_FILES(sys/ipc.h LMMS_HAVE_SYS_IPC_H) CHECK_INCLUDE_FILES(sys/shm.h LMMS_HAVE_SYS_SHM_H) CHECK_INCLUDE_FILES(sys/time.h LMMS_HAVE_SYS_TIME_H) CHECK_INCLUDE_FILES(sys/wait.h LMMS_HAVE_SYS_WAIT_H) CHECK_INCLUDE_FILES(sys/select.h LMMS_HAVE_SYS_SELECT_H) CHECK_INCLUDE_FILES(stdarg.h LMMS_HAVE_STDARG_H) CHECK_INCLUDE_FILES(signal.h LMMS_HAVE_SIGNAL_H) CHECK_INCLUDE_FILES(sched.h LMMS_HAVE_SCHED_H) CHECK_INCLUDE_FILES(sys/soundcard.h LMMS_HAVE_SYS_SOUNDCARD_H) CHECK_INCLUDE_FILES(soundcard.h LMMS_HAVE_SOUNDCARD_H) CHECK_INCLUDE_FILES(fcntl.h LMMS_HAVE_FCNTL_H) CHECK_INCLUDE_FILES(sys/ioctl.h LMMS_HAVE_SYS_IOCTL_H) CHECK_INCLUDE_FILES(ctype.h LMMS_HAVE_CTYPE_H) CHECK_INCLUDE_FILES(string.h LMMS_HAVE_STRING_H) CHECK_INCLUDE_FILES(process.h LMMS_HAVE_PROCESS_H) CHECK_INCLUDE_FILES(locale.h LMMS_HAVE_LOCALE_H) LIST(APPEND CMAKE_PREFIX_PATH "${CMAKE_INSTALL_PREFIX}") # check for Qt4 SET(QT_MIN_VERSION "4.3.0" COMPONENTS QtCore QtGui QtXml) FIND_PACKAGE(Qt4 REQUIRED) SET(QT_USE_QTXML 1) EXEC_PROGRAM(${QT_QMAKE_EXECUTABLE} ARGS "-query QT_INSTALL_TRANSLATIONS" OUTPUT_VARIABLE QT_TRANSLATIONS_DIR) IF(WIN32) SET(QT_TRANSLATIONS_DIR "${MINGW_PREFIX}/share/qt4/translations/") ENDIF(WIN32) IF(EXISTS "${QT_TRANSLATIONS_DIR}") MESSAGE("-- Found Qt translations in ${QT_TRANSLATIONS_DIR}") ADD_DEFINITIONS(-D'QT_TRANSLATIONS_DIR="${QT_TRANSLATIONS_DIR}"') ENDIF(EXISTS "${QT_TRANSLATIONS_DIR}") IF(NOT WIN32) STRING(REPLACE "-DQT_DLL" "" QT_DEFINITIONS "${QT_DEFINITIONS}") ENDIF(NOT WIN32) INCLUDE("${QT_USE_FILE}") # check for libsndfile PKG_CHECK_MODULES(SNDFILE REQUIRED sndfile>=1.0.11) IF(NOT SNDFILE_FOUND) MESSAGE(FATAL_ERROR "LMMS requires libsndfile1 and libsndfile1-dev >= 1.0.11 - please install, remove CMakeCache.txt and try again!") ENDIF(NOT SNDFILE_FOUND) IF(WANT_CALF) SET(LMMS_HAVE_CALF TRUE) SET(STATUS_CALF "OK") ELSE(WANT_CALF) SET(STATUS_CALF "not built as requested") ENDIF(WANT_CALF) IF(WANT_CAPS) SET(LMMS_HAVE_CAPS TRUE) SET(STATUS_CAPS "OK") ELSE(WANT_CAPS) SET(STATUS_CAPS "not built as requested") ENDIF(WANT_CAPS) IF(WANT_CMT) SET(LMMS_HAVE_CMT TRUE) SET(STATUS_CMT "OK") ELSE(WANT_CMT) SET(STATUS_CMT "not built as requested") ENDIF(WANT_CMT) IF(WANT_SWH) SET(LMMS_HAVE_SWH TRUE) SET(STATUS_SWH "OK") ELSE(WANT_SWH) SET(STATUS_SWH "not built as requested") ENDIF(WANT_SWH) IF(WANT_TAP) SET(LMMS_HAVE_TAP TRUE) SET(STATUS_TAP "OK") ELSE(WANT_TAP) SET(STATUS_TAP "not built as requested") ENDIF(WANT_TAP) # check for SDL IF(WANT_SDL) SET(SDL_BUILDING_LIBRARY TRUE) FIND_PACKAGE(SDL) IF(SDL_FOUND) SET(LMMS_HAVE_SDL TRUE) SET(STATUS_SDL "OK") ELSE(SDL_FOUND) SET(STATUS_SDL "not found, please install libsdl1.2-dev (or similiar) " "if you require SDL support") ENDIF(SDL_FOUND) ENDIF(WANT_SDL) IF(NOT LMMS_HAVE_SDL) SET(SDL_INCLUDE_DIR "") ELSE(NOT LMMS_HAVE_SDL) IF(NOT SDL_INCLUDE_DIR) SET(SDL_INCLUDE_DIR "${CMAKE_FIND_ROOT_PATH}/include") ENDIF(NOT SDL_INCLUDE_DIR) ENDIF(NOT LMMS_HAVE_SDL) # check for Stk IF(WANT_STK) FIND_PACKAGE(STK) IF(STK_FOUND) SET(LMMS_HAVE_STK TRUE) SET(STATUS_STK "OK") ELSE(STK_FOUND) SET(STK_INCLUDE_DIR "") SET(STATUS_STK "not found, please install libstk0-dev (or similiar) " "if you require the Mallets instrument") ENDIF(STK_FOUND) ENDIF(WANT_STK) # check for PortAudio IF(WANT_PORTAUDIO) FIND_PACKAGE(Portaudio) IF(PORTAUDIO_FOUND) SET(LMMS_HAVE_PORTAUDIO TRUE) SET(STATUS_PORTAUDIO "OK") ELSE(PORTAUDIO_FOUND) SET(STATUS_PORTAUDIO "not found, please install portaudio19-dev (or similiar, version >= 1.9) " "if you require PortAudio support") ENDIF(PORTAUDIO_FOUND) ENDIF(WANT_PORTAUDIO) # check for PulseAudio IF(WANT_PULSEAUDIO) FIND_PACKAGE(PulseAudio) IF(PULSEAUDIO_FOUND) SET(LMMS_HAVE_PULSEAUDIO TRUE) SET(STATUS_PULSEAUDIO "OK") ELSE(PULSEAUDIO_FOUND) SET(STATUS_PULSEAUDIO "not found, please install libpulse-dev (or similiar) " "if you require PulseAudio support") ENDIF(PULSEAUDIO_FOUND) ENDIF(WANT_PULSEAUDIO) IF(NOT LMMS_HAVE_PULSEAUDIO) SET(PULSEAUDIO_INCLUDE_DIR "") SET(PULSEAUDIO_LIBRARIES "") ENDIF(NOT LMMS_HAVE_PULSEAUDIO) # check for OGG/Vorbis-libraries IF(WANT_OGGVORBIS) FIND_PACKAGE(OggVorbis) IF(OGGVORBIS_FOUND) SET(LMMS_HAVE_OGGVORBIS TRUE) SET(STATUS_OGGVORBIS "OK") ELSE(OGGVORBIS_FOUND) SET(STATUS_OGGVORBIS "not found, libogg-dev and libvorbis-dev (or similiar) " "is highly recommended") ENDIF(OGGVORBIS_FOUND) ENDIF(WANT_OGGVORBIS) # check whether to enable OSS-support IF(LMMS_HAVE_SOUNDCARD_H OR LMMS_HAVE_SYS_SOUNDCARD_H) SET(LMMS_HAVE_OSS TRUE) SET(STATUS_OSS "OK") ELSE(LMMS_HAVE_SOUNDCARD_H OR LMMS_HAVE_SYS_SOUNDCARD_H) SET(STATUS_OSS "") ENDIF(LMMS_HAVE_SOUNDCARD_H OR LMMS_HAVE_SYS_SOUNDCARD_H) # check for ALSA IF(WANT_ALSA) FIND_PACKAGE(Alsa) IF(ALSA_FOUND) SET(LMMS_HAVE_ALSA TRUE) SET(STATUS_ALSA "OK") ELSE(ALSA_FOUND) SET(STATUS_ALSA "not found, please install libasound2-dev (or similiar) " "if you require ALSA support") ENDIF(ALSA_FOUND) ENDIF(WANT_ALSA) IF(NOT LMMS_HAVE_ALSA) SET(ASOUND_LIBRARY "") ENDIF(NOT LMMS_HAVE_ALSA) # check for JACK IF(WANT_JACK) PKG_CHECK_MODULES(JACK jack>=0.77) IF(JACK_FOUND) SET(LMMS_HAVE_JACK TRUE) SET(STATUS_JACK "OK") ELSE(JACK_FOUND) SET(STATUS_JACK "not found, please install libjack0.100.0-dev (or similiar) " "if you require JACK support") ENDIF(JACK_FOUND) ENDIF(WANT_JACK) # check for FFTW3F-library PKG_CHECK_MODULES(FFTW3F REQUIRED fftw3f>=3.0.0) # check for Fluidsynth IF(WANT_SF2) PKG_CHECK_MODULES(FLUIDSYNTH fluidsynth>=1.0.7) IF(FLUIDSYNTH_FOUND) SET(LMMS_HAVE_FLUIDSYNTH TRUE) SET(STATUS_FLUIDSYNTH "OK") ELSE(FLUIDSYNTH_FOUND) SET(STATUS_FLUIDSYNTH "not found, libfluidsynth-dev (or similiar)" "is highly recommended") ENDIF(FLUIDSYNTH_FOUND) ENDIF(WANT_SF2) # check for pthreads IF(LMMS_BUILD_LINUX OR LMMS_BUILD_APPLE) FIND_PACKAGE(Threads) ENDIF(LMMS_BUILD_LINUX OR LMMS_BUILD_APPLE) # check for WINE IF(WANT_VST) FIND_PACKAGE(Wine) IF(WINE_FOUND) SET(LMMS_SUPPORT_VST TRUE) SET(STATUS_VST "OK") ELSE(WINE_FOUND) SET(STATUS_VST "not found, please install (lib)wine-dev (or similiar) - 64 bit systems additionally need gcc-multilib and g++-multilib") ENDIF(WINE_FOUND) ENDIF(WANT_VST) IF(LMMS_BUILD_WIN32) SET(LMMS_SUPPORT_VST TRUE) SET(STATUS_VST "OK") ENDIF(LMMS_BUILD_WIN32) # check for libsamplerate PKG_CHECK_MODULES(SAMPLERATE REQUIRED samplerate>=0.1.8) CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/lmmsconfig.h.in" "${CMAKE_BINARY_DIR}/lmmsconfig.h") CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/lmmsversion.h.in" "${CMAKE_BINARY_DIR}/lmmsversion.h") CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/lmms.rc.in" "${CMAKE_BINARY_DIR}/lmms.rc") CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/plugins/zynaddsubfx/zynaddsubfx.rc.in" "${CMAKE_BINARY_DIR}/plugins/zynaddsubfx/zynaddsubfx.rc") # set compiler flags SET(WERROR_FLAGS "-Wall -Werror -Werror=unused-function -Wno-sign-compare -Wno-strict-overflow") SET(CMAKE_C_FLAGS "-O2 -g ${WERROR_FLAGS} ${CMAKE_C_FLAGS}") SET(CMAKE_CXX_FLAGS "-O2 -g -fno-exceptions ${WERROR_FLAGS} ${CMAKE_CXX_FLAGS}") set(CMAKE_C_FLAGS_DEBUG "-DLMMS_DEBUG") # people simply updating git will still have this and mess up build with it FILE(REMOVE include/lmmsconfig.h) FILE(GLOB lmms_INCLUDES "${CMAKE_SOURCE_DIR}/include/*.h") FILE(GLOB lmms_UI "${CMAKE_SOURCE_DIR}/src/gui/dialogs/*.ui" "${CMAKE_SOURCE_DIR}/src/gui/Forms/*.ui") FILE(GLOB_RECURSE lmms_SOURCES "${CMAKE_SOURCE_DIR}/src/*.cpp") SET(lmms_MOC ${lmms_INCLUDES}) # Get list of all committers from git history, ordered by number of commits FIND_PACKAGE(Git) IF(GIT_FOUND) SET(CONTRIBUTORS "${CMAKE_BINARY_DIR}/CONTRIBUTORS") EXECUTE_PROCESS( COMMAND "${GIT_EXECUTABLE}" shortlog -sne COMMAND cut -c8- OUTPUT_FILE "${CONTRIBUTORS}" WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}" TIMEOUT 1) ENDIF(GIT_FOUND) SET(lmms_EMBEDDED_RESOURCES "${CMAKE_SOURCE_DIR}/AUTHORS" "${CMAKE_SOURCE_DIR}/COPYING" "${CONTRIBUTORS}") QT4_WRAP_CPP(lmms_MOC_out ${lmms_MOC} OPTIONS -nw) QT4_WRAP_UI(lmms_UI_out ${lmms_UI}) # embedded resources stuff IF(WIN32 OR WIN64) # compile buildtools native SET(BIN2RES_CPP "${CMAKE_SOURCE_DIR}/buildtools/bin2res.cpp") SET(BIN2RES "${CMAKE_BINARY_DIR}/bin2res") ADD_CUSTOM_COMMAND(OUTPUT "${BIN2RES}" COMMAND g++ ARGS "\"${BIN2RES_CPP}\"" -o "\"${BIN2RES}\"" DEPENDS "${BIN2RES_CPP}") ELSE(WIN32 OR WIN64) ADD_EXECUTABLE(bin2res buildtools/bin2res.cpp) GET_TARGET_PROPERTY(BIN2RES bin2res LOCATION) ENDIF(WIN32 OR WIN64) SET(LMMS_ER_H "${CMAKE_CURRENT_BINARY_DIR}/embedded_resources.h") # we somehow have to make LMMS-binary depend on MOC-files ADD_FILE_DEPENDENCIES("${CMAKE_BINARY_DIR}/lmmsconfig.h" ${lmms_MOC_out}) ADD_CUSTOM_COMMAND(OUTPUT "${LMMS_ER_H}" COMMAND "${BIN2RES}" ARGS ${lmms_EMBEDDED_RESOURCES} > "\"${LMMS_ER_H}\"" DEPENDS "${BIN2RES}") IF(WIN32) SET(WINRC "${CMAKE_BINARY_DIR}/lmmsrc.obj") ADD_CUSTOM_COMMAND(OUTPUT "${WINRC}" COMMAND "${WINDRES}" "-I\"${CMAKE_SOURCE_DIR}\"" "-o\"${CMAKE_BINARY_DIR}/lmmsrc.obj\"" "-i\"${CMAKE_BINARY_DIR}/lmms.rc\"" DEPENDS "${CMAKE_BINARY_DIR}/lmms.rc") SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-attributes") ELSE(WIN32) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -DPIC") ENDIF(WIN32) # make sub-directories ADD_SUBDIRECTORY(plugins) ADD_SUBDIRECTORY(data) ADD_SUBDIRECTORY(doc) # # build LMMS-binary # IF(LMMS_BUILD_WIN32) SET(EXTRA_LIBRARIES "-lwinmm") ENDIF() # Paths relative to lmms executable FILE(RELATIVE_PATH LIB_DIR_RELATIVE "/${BIN_DIR}" "/${LIB_DIR}") FILE(RELATIVE_PATH PLUGIN_DIR_RELATIVE "/${BIN_DIR}" "/${PLUGIN_DIR}") ADD_DEFINITIONS(-D'LIB_DIR="${LIB_DIR_RELATIVE}/"' -D'PLUGIN_DIR="${PLUGIN_DIR_RELATIVE}/"' ${PULSEAUDIO_DEFINITIONS} ${PORTAUDIO_DEFINITIONS}) INCLUDE_DIRECTORIES("${CMAKE_BINARY_DIR}" "${CMAKE_BINARY_DIR}/include" "${CMAKE_SOURCE_DIR}" "${CMAKE_SOURCE_DIR}/include" ${JACK_INCLUDE_DIRS} ${SAMPLERATE_INCLUDE_DIRS} ${SNDFILE_INCLUDE_DIRS}) IF(NOT ("${SDL_INCLUDE_DIR}" STREQUAL "")) INCLUDE_DIRECTORIES("${SDL_INCLUDE_DIR}") ENDIF() IF(NOT ("${PORTAUDIO_INCLUDE_DIR}" STREQUAL "")) INCLUDE_DIRECTORIES("${PORTAUDIO_INCLUDE_DIR}") ENDIF() IF(NOT ("${PULSEAUDIO_INCLUDE_DIR}" STREQUAL "")) INCLUDE_DIRECTORIES("${PULSEAUDIO_INCLUDE_DIR}") ENDIF() IF(NOT ("${OGGVORBIS_INCLUDE_DIR}" STREQUAL "")) INCLUDE_DIRECTORIES("${OGGVORBIS_INCLUDE_DIR}") ENDIF() ADD_CUSTOM_COMMAND(OUTPUT "${CMAKE_BINARY_DIR}/lmms.1.gz" COMMAND gzip -c "\"${CMAKE_SOURCE_DIR}/lmms.1\"" > "\"${CMAKE_BINARY_DIR}/lmms.1.gz\"" DEPENDS "${CMAKE_SOURCE_DIR}/lmms.1" COMMENT "Generating lmms.1.gz") ADD_EXECUTABLE(lmms ${lmms_SOURCES} ${lmms_INCLUDES} "${LMMS_ER_H}" ${lmms_UI_out} lmmsconfig.h lmmsversion.h "${WINRC}" "${CMAKE_BINARY_DIR}/lmms.1.gz") TARGET_LINK_LIBRARIES(lmms ${CMAKE_THREAD_LIBS_INIT} ${QT_LIBRARIES} ${ASOUND_LIBRARY} ${SDL_LIBRARY} ${PORTAUDIO_LIBRARIES} ${PULSEAUDIO_LIBRARIES} ${JACK_LIBRARIES} ${OGGVORBIS_LIBRARIES} ${SAMPLERATE_LIBRARIES} ${SNDFILE_LIBRARIES} ${EXTRA_LIBRARIES}) IF(LMMS_BUILD_WIN32) SET_TARGET_PROPERTIES(lmms PROPERTIES LINK_FLAGS "${LINK_FLAGS} -mwindows") ADD_CUSTOM_COMMAND(TARGET lmms POST_BUILD COMMAND "${STRIP}" "\"${CMAKE_BINARY_DIR}/lmms.exe\"") INSTALL(TARGETS lmms RUNTIME DESTINATION "${BIN_DIR}") INSTALL(FILES "${MINGW_PREFIX}/bin/QtCore4.dll" "${MINGW_PREFIX}/bin/QtGui4.dll" "${MINGW_PREFIX}/bin/QtXml4.dll" "${MINGW_PREFIX}/bin/libsamplerate-0.dll" "${MINGW_PREFIX}/bin/libsndfile-1.dll" "${MINGW_PREFIX}/bin/libvorbis-0.dll" "${MINGW_PREFIX}/bin/libvorbisenc-2.dll" "${MINGW_PREFIX}/bin/libvorbisfile-3.dll" "${MINGW_PREFIX}/bin/libogg-0.dll" "${MINGW_PREFIX}/bin/libfluidsynth.dll" "${MINGW_PREFIX}/bin/libfftw3f-3.dll" "${MINGW_PREFIX}/bin/libFLAC-8.dll" "${MINGW_PREFIX}/bin/libportaudio-2.dll" "${MINGW_PREFIX}/bin/libpng16-16.dll" "${MINGW_PREFIX}/bin/SDL.dll" "${MINGW_PREFIX}/bin/libglib-2.0-0.dll" "${MINGW_PREFIX}/bin/libgthread-2.0-0.dll" "${MINGW_PREFIX}/bin/zlib1.dll" DESTINATION .) ELSE(LMMS_BUILD_WIN32) IF(NOT LMMS_BUILD_APPLE) SET_TARGET_PROPERTIES(lmms PROPERTIES LINK_FLAGS "${LINK_FLAGS} -Wl,-E") ENDIF(NOT LMMS_BUILD_APPLE) INSTALL(TARGETS lmms RUNTIME DESTINATION "${BIN_DIR}") INSTALL(FILES "${CMAKE_BINARY_DIR}/lmms.1.gz" DESTINATION "${CMAKE_INSTALL_PREFIX}/share/man/man1/" PERMISSIONS OWNER_READ GROUP_READ WORLD_READ) ENDIF(LMMS_BUILD_WIN32) # # rules for building localizations # FILE(GLOB lmms_LOCALES data/locale/*.ts) SET(ts_targets "") SET(qm_targets "") FOREACH(_ts_file ${lmms_LOCALES}) STRING(REPLACE "${CMAKE_SOURCE_DIR}/data/locale/" "" _ts_target "${_ts_file}") STRING(REPLACE ".ts" ".qm" _qm_file "${_ts_file}") STRING(REPLACE ".ts" ".qm" _qm_target "${_ts_target}") ADD_CUSTOM_TARGET(${_ts_target} COMMAND "${QT_LUPDATE_EXECUTABLE}" -locations none -no-obsolete ${lmms_SOURCES} ${lmms_UI} `find "\"${CMAKE_SOURCE_DIR}/plugins/\"" -type f -name '*.cpp'` -ts "\"${_ts_file}\"") ADD_CUSTOM_TARGET(${_qm_target} COMMAND "${QT_LRELEASE_EXECUTABLE}" "\"${_ts_file}\"" -qm "\"${_qm_file}\"") LIST(APPEND ts_targets "${_ts_target}") LIST(APPEND qm_targets "${_qm_target}") ENDFOREACH(_ts_file ${lmms_LOCALES}) ADD_CUSTOM_TARGET(update-locales) FOREACH(_item ${ts_targets}) ADD_DEPENDENCIES(update-locales "${_item}") ENDFOREACH(_item ${ts_targets}) ADD_CUSTOM_TARGET(finalize-locales) FOREACH(_item ${qm_targets}) ADD_DEPENDENCIES(finalize-locales "${_item}") ENDFOREACH(_item ${qm_targets}) # install headers IF(LMMS_BUILD_LINUX) INSTALL(FILES ${lmms_INCLUDES} "${CMAKE_BINARY_DIR}/lmmsconfig.h" "${CMAKE_BINARY_DIR}/lmmsversion.h" "${CMAKE_SOURCE_DIR}/src/gui/embed.cpp" DESTINATION "${CMAKE_INSTALL_PREFIX}/include/lmms/") ENDIF(LMMS_BUILD_LINUX) # package ZynAddSubFX into win32 build IF(LMMS_BUILD_WIN32) IF(EXISTS "${CMAKE_SOURCE_DIR}/extras") ADD_SUBDIRECTORY("${CMAKE_SOURCE_DIR}/extras/data/presets") FILE(GLOB ZASF_BINARIES "${CMAKE_SOURCE_DIR}/extras/plugins/zynaddsubfx/zynaddsubfx.dll" "${CMAKE_SOURCE_DIR}/extras/plugins/zynaddsubfx/remote_zynaddsubfx.exe") INSTALL(FILES "${ZASF_BINARIES}" DESTINATION "${PLUGIN_DIR}") ENDIF(EXISTS "${CMAKE_SOURCE_DIR}/extras") ENDIF(LMMS_BUILD_WIN32) # # add distclean-target # ADD_CUSTOM_TARGET(distclean COMMAND make clean COMMAND rm -rf `find -name cmake_install.cmake` `find -name Makefile` `find -type d -name CMakeFiles` CMakeCache.txt lmmsconfig.h lmms.1.gz) # # add tarball-target # SET(TMP "lmms-${VERSION}") ADD_CUSTOM_TARGET(dist COMMAND make clean COMMAND rm -rf "${TMP}" COMMAND mkdir -p "${TMP}" COMMAND cp AUTHORS build_mingw32 build_mingw64 CMakeLists.txt configure COPYING INSTALL lmms.1 lmms.rc.in lmms.spec.in lmmsconfig.h.in lmmsversion.h.in README TODO "${TMP}" COMMAND cp -r buildtools cmake data doc include plugins src "${TMP}" COMMAND rm -rf `find "${TMP}" -name cmake_install.cmake` `find "${TMP}" -name Makefile` `find "${TMP}" -type d -name CMakeFiles` "${TMP}/CMakeCache.txt" COMMAND tar cjf lmms-${VERSION}-src.tar.bz2 "${TMP}" COMMAND rm -rf "${TMP}") SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${LMMS_ER_H} ${lmms_MOC_out} ${lmms_UI_out} lmmsconfig.h lmms.1.gz") # # display configuration information # MESSAGE("\n" "Installation Summary\n" "--------------------\n" "* Install Directory : ${CMAKE_INSTALL_PREFIX}\n" ) MESSAGE( "Supported audio interfaces\n" "--------------------------\n" "* ALSA : ${STATUS_ALSA}\n" "* JACK : ${STATUS_JACK}\n" "* OSS : ${STATUS_OSS}\n" "* PortAudio : ${STATUS_PORTAUDIO}\n" "* PulseAudio : ${STATUS_PULSEAUDIO}\n" "* SDL : ${STATUS_SDL}\n" ) MESSAGE( "Supported MIDI interfaces\n" "-------------------------\n" "* ALSA : ${STATUS_ALSA}\n" "* OSS : ${STATUS_OSS}\n" "* WinMM : ${STATUS_WINMM}\n" ) MESSAGE( "Supported file formats for project export\n" "-----------------------------------------\n" "* WAVE : OK\n" "* OGG/VORBIS : ${STATUS_OGGVORBIS}\n" ) MESSAGE( "Optional plugins\n" "----------------\n" "* SoundFont2 player : ${STATUS_FLUIDSYNTH}\n" "* Stk Mallets : ${STATUS_STK}\n" "* VST-instrument hoster : ${STATUS_VST}\n" "* VST-effect hoster : ${STATUS_VST}\n" "* CALF LADSPA plugins : ${STATUS_CALF}\n" "* CAPS LADSPA plugins : ${STATUS_CAPS}\n" "* CMT LADSPA plugins : ${STATUS_CMT}\n" "* TAP LADSPA plugins : ${STATUS_TAP}\n" "* SWH LADSPA plugins : ${STATUS_SWH}\n" ) MESSAGE( "\n" "-----------------------------------------------------------------\n" "IMPORTANT:\n" "after installing missing packages, remove CMakeCache.txt before\n" "running cmake again!\n" "-----------------------------------------------------------------\n" "\n\n") INCLUDE(InstallRequiredSystemLibraries) SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "LMMS - easy music production for everyone!") SET(CPACK_PACKAGE_VENDOR "LMMS Developers") IF(LMMS_BUILD_APPLE) CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/README" "${CMAKE_BINARY_DIR}/README.txt" COPYONLY) CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/COPYING" "${CMAKE_BINARY_DIR}/COPYING.txt" COPYONLY) SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_BINARY_DIR}/README.txt") SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_BINARY_DIR}/COPYING.txt") ELSE(LMMS_BUILD_APPLE) SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR}/README") SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/COPYING") ENDIF(LMMS_BUILD_APPLE) SET(CPACK_PACKAGE_VERSION_MAJOR "${VERSION_MAJOR}") SET(CPACK_PACKAGE_VERSION_MINOR "${VERSION_MINOR}") SET(CPACK_PACKAGE_VERSION_PATCH "${VERSION_PATCH}") IF(VERSION_SUFFIX) SET(CPACK_PACKAGE_VERSION_PATCH "${VERSION_PATCH}-${VERSION_SUFFIX}") ENDIF(VERSION_SUFFIX) SET(CPACK_PACKAGE_INSTALL_DIRECTORY "LMMS") IF(WIN32) SET(CPACK_PACKAGE_ICON "${CMAKE_SOURCE_DIR}/data/nsis_branding.bmp") SET(CPACK_NSIS_MUI_ICON "${CMAKE_SOURCE_DIR}/data/lmms.ico") SET(CPACK_NSIS_INSTALLED_ICON_NAME "lmms.exe") SET(CPACK_NSIS_DISPLAY_NAME "LMMS ${VERSION}") SET(CPACK_NSIS_HELP_LINK "http:\\\\\\\\lmms.sourceforge.net") SET(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\\\\\lmms.sourceforge.net") SET(CPACK_NSIS_CONTACT "lmms-devel@lists.sourceforge.net") SET(CPACK_PACKAGE_EXECUTABLES "lmms.exe;LMMS") SET(CPACK_NSIS_MENU_LINKS "lmms.exe;LMMS") SET(CPACK_NSIS_DEFINES "!include ${CMAKE_SOURCE_DIR}/cmake/nsis/FileAssociation.nsh") SET(CPACK_PACKAGE_FILE_NAME "lmms-${VERSION}-win32") SET(CPACK_NSIS_EXTRA_INSTALL_COMMANDS " \\\${registerExtension} \\\"$INSTDIR\\\\lmms.exe\\\" \\\".mmp\\\" \\\"LMMS Project\\\" \\\${registerExtension} \\\"$INSTDIR\\\\lmms.exe\\\" \\\".mmpz\\\" \\\"LMMS Project (compressed)\\\" ") SET(CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS " \\\${unregisterExtension} \\\".mmp\\\" \\\"LMMS Project\\\" \\\${unregisterExtension} \\\".mmpz\\\" \\\"LMMS Project (compressed)\\\" ") ELSE(WIN32) SET(CPACK_STRIP_FILES "bin/lmms;${PLUGIN_DIR}/*.so") SET(CPACK_PACKAGE_EXECUTABLES "lmms" "LMMS binary") ENDIF(WIN32) IF(WIN64) SET(CPACK_PACKAGE_FILE_NAME "lmms-${VERSION}-win64") SET(CPACK_NSIS_DEFINES "${CPACK_NSIS_DEFINES} InstallDir \\\"\\\$PROGRAMFILES64\\\\${CPACK_PACKAGE_INSTALL_DIRECTORY}\\\"") ENDIF(WIN64) SET(MACOSX_BUNDLE_ICON_FILE "${CMAKE_SOURCE_DIR}/data/themes/default/icon.png") SET(MACOSX_BUNDLE_GUI_IDENTIFIER "LMMS") SET(MACOSX_BUNDLE_LONG_VERSION_STRING "${VERSION}") SET(MACOSX_BUNDLE_BUNDLE_NAME "LMMS") SET(MACOSX_BUNDLE_SHORT_VERSION_STRING "${VERSION}") SET(MACOSX_BUNDLE_BUNDLE_VERSION "${VERSION}") SET(MACOSX_BUNDLE_COPYRIGHT "Tobias Doerffel, 2008-2010") SET(CPACK_SOURCE_GENERATOR "TBZ2") SET(CPACK_SOURCE_PACKAGE_FILE_NAME "lmms-${VERSION}") INCLUDE(CPack) lmms-1.0.0+bzr2569/COPYING0000644000000000000000000004310310474423143012763 0ustar 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) 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 this service 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 make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. 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. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), 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 distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the 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 a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE 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. 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 convey 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 2 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision 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, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This 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. lmms-1.0.0+bzr2569/INSTALL0000644000000000000000000000224611602151055012756 0ustar 00000000000000Building LMMS got quite simple since 0.4.0 as everything is managed by cmake now. Therefore make sure you have CMake (>= 2.6.0 recommended) and then run mkdir build cd build cmake ../ make sudo make install If your system does not have "sudo", become root with your preferred mechanism and run the "make install" command. With the above commands an out-of-tree build is performed. You can also run "cmake ." directly in the root of source tree although this is not recommended. When performing an out-of-tree build after there's already an in-tree build, make sure to run "make distclean" before running cmake inside build-directory. If you want to use custom compiler flags simply set the environment variables CFLAGS and CXXFLAGS. After running cmake (the 3rd command above) you can see a summary of things that are going to be built into LMMS or built as plugins. Install the according libraries and development files if a certain feature is not enabled. Then remove CMakeCache.txt and run cmake again. If you want to supply an install prefix to cmake, add the flag: -DCMAKE_INSTALL_PREFIX= Where can be /usr, /usr/local, /opt, etc. The default is /usr/local. lmms-1.0.0+bzr2569/README0000644000000000000000000000703112313663131012605 0ustar 00000000000000LMMS 1.0.0 =========== Copyright (c) 2004-2014 by LMMS developers 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 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. What is LMMS? -------------- LMMS is a free cross-platform alternative to commercial programs like FL Studio (R), which allow you to produce music with your computer. This includes the creation of melodies and beats, the synthesis and mixing of sounds, and arranging of samples. You can have fun with your MIDI-keyboard and much more; all in a user-friendly and modern interface. Features --------- * Song-Editor for composing songs * A Beat+Bassline-Editor for creating beats and basslines * An easy-to-use Piano-Roll for editing patterns and melodies * An FX mixer with 64 FX channels and arbitrary number of effects allow unlimited mixing possibilities * Many powerful instrument and effect-plugins out of the box * Full user-defined track-based automation and computer-controlled automation sources * Compatible with many standards such as SoundFont2, VST(i), LADSPA, GUS Patches, and full MIDI support * Import of MIDI and FLP (Fruityloops(R) Project) files Requirements ------------ The most important requirement is for sure a fast computer, so don't try to get LMMS working on a pentium I with 60 MHz... ;-) Therefore you should have at least 500 MHz, but for really enjoying LMMS less than 1 GHz makes no sense... Required libraries: - Qt >= 4.3.0 with devel-files (4.4.x recommended) Optional, but strongly recommended: - JACK with devel-files - libvorbis & libogg with devel-files - libalsa with devel-files - SDL with devel-files - libsamplerate >= 0.1.7 with devel-files - libsndfile with devel-files - WINE + WINE-devel-files - stk, libstk + libstk-dev - libfluidsynth with devel files - fftw3 with devel-files - libfltk1.3 with devel-files (needed by ZynAddSubFx) For compiling you should have an up to date GCC with g++. If you have problems with compiling or running LMMS, find any bug or have suggestions and so on, please feel free to e-mail me (for mail-address see below)! Building --------- See INSTALL for information on how to build LMMS. Join LMMS-development ---------------------- If you are interested in LMMS, it's programming, artwork, testing, writing demo-songs, (and improving this README...) or something like that, you're welcome to participate on the development of LMMS! The project-homepage of LMMS, mailingslists and a list of things you can do can be found at http://lmms.sourceforge.net Details on development can be found at http://lmms.sourceforge.net/development.php or in the Wiki: http://lmms.sourceforge.net/wiki/ Before coding a new big feature, please ALWAYS post your idea and suggestions about your feature and about the intended implementation to the LMMS-devel-mailinglist (lmms-devel@lists.sourceforge.net) and wait for replies! Maybe there're different ideas, improvements, hints or maybe your feature is not welcome/needed at the moment. lmms-1.0.0+bzr2569/README.md0000644000000000000000000000373312267773715013233 0ustar 00000000000000Linux MultiMedia Studio ======================= [![Build Status](https://travis-ci.org/LMMS/lmms.png)](https://travis-ci.org/LMMS/lmms) What is LMMS? -------------- LMMS is a free cross-platform alternative to commercial programs like FL Studio (R), which allow you to produce music with your computer. This includes the creation of melodies and beats, the synthesis and mixing of sounds, and arranging of samples. You can have fun with your MIDI-keyboard and much more; all in a user-friendly and modern interface. Features --------- * Song-Editor for composing songs * A Beat+Bassline-Editor for creating beats and basslines * An easy-to-use Piano-Roll for editing patterns and melodies * An FX mixer with 64 FX channels and arbitrary number of effects allow unlimited mixing possibilities * Many powerful instrument and effect-plugins out of the box * Full user-defined track-based automation and computer-controlled automation sources * Compatible with many standards such as SoundFont2, VST(i), LADSPA, GUS Patches, and full MIDI support * Import of MIDI and FLP (Fruityloops(R) Project) files Building --------- See [Compiling LMMS](https://github.com/LMMS/lmms/wiki/Compiling-lmms) on our wiki for information on how to build LMMS. Join LMMS-development ---------------------- If you are interested in LMMS, it's programming, artwork, testing, writing demo-songs, (and improving this readme…) or something like that, you're welcome to participate on the development of LMMS! Information about what you can do and how can be found in the [wiki](https://github.com/LMMS/lmms/wiki). Before coding a new big feature, please _always_ [file an issue](https://github.com/LMMS/lmms/issues/new) for your idea and suggestions about your feature and about the intended implementation on GitHub or post to the LMMS-devel-mailinglist (lmms-devel@lists.sourceforge.net) and wait for replies! Maybe there're different ideas, improvements, hints or maybe your feature is not welcome/needed at the moment. lmms-1.0.0+bzr2569/TODO0000644000000000000000000000270311240264311012411 0ustar 00000000000000Version 0.4.x ============= - save tco-settings in trackContentWidget::saveSettings() etc. instead of track::... - resample sample-track-tcos when exporting at different samplerate - message to user when importing unsupported MIDI-file (track-count = 0) - piano roll: mouse cursor isn't updated correctly in selection mode (from resizing note edit area) - when you add vestige, have it automatically pop the find VST plugin dialog - try to make vestige-plugin-dlls relative - select all MIDI devices by default when you bring up the "connect to controller" window and wait for first event - then uncheck all other MIDI devices that no events were detected from - load asdlol.mmpz. if you render it without playing it, or if you play it the first time, you hear unwanted artifacts. (solution: apply automation before playing) - autosave every 30s (configurable!) and offer recovery at startup after crash - speed up painting of sampleTCO - do not process effects when playing frozen patterns - copy-pasted automation patterns have to be manually linked back to their knob for some reason - improve TrackLabelButton: split 80%-20% (80%=name, 20%=button showing a popup menu with track operations, make the midi input a top-level menu item) - when you click and drag a mixer bar, it doesn't click and drag, it sets absolutely. this is annoying See TODO file in master branch and/or the TODO list in the Wiki for details regarding the development series. lmms-1.0.0+bzr2569/build_mingw320000755000000000000000000000055212056741562014332 0ustar 00000000000000MINGW=/opt/mingw32 export PATH=$PATH:$MINGW/bin #export CFLAGS="-march=pentium3 -mtune=generic -mpreferred-stack-boundary=5 -fno-tree-vectorize" export CFLAGS="-march=pentium3 -mtune=generic -mpreferred-stack-boundary=5" export CXXFLAGS="$CFLAGS" cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/modules/Win32Toolchain.cmake -DCMAKE_MODULE_PATH=`pwd`/../cmake/modules/ lmms-1.0.0+bzr2569/build_mingw640000755000000000000000000000034212056741562014334 0ustar 00000000000000MINGW=/opt/mingw64 export PATH=$PATH:$MINGW/bin #export CFLAGS="-fno-tree-vectorize" export CXXFLAGS="$CFLAGS" cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/modules/Win64Toolchain.cmake -DCMAKE_MODULE_PATH=`pwd`/../cmake/modules/ lmms-1.0.0+bzr2569/buildtools/0000755000000000000000000000000010314533200014074 5ustar 00000000000000lmms-1.0.0+bzr2569/cmake/0000755000000000000000000000000011041343122012774 5ustar 00000000000000lmms-1.0.0+bzr2569/configure0000755000000000000000000000026011041345577013641 0ustar 00000000000000#!/bin/sh echo "" echo "Usage of configure & Co is deprecated! Please use" echo "" echo " cmake . -DCMAKE_INSTALL_PREFIX=/usr" echo "" echo "or similiar instead." echo "" lmms-1.0.0+bzr2569/data/0000755000000000000000000000000010401051475012633 5ustar 00000000000000lmms-1.0.0+bzr2569/doc/0000755000000000000000000000000012276772167012513 5ustar 00000000000000lmms-1.0.0+bzr2569/include/0000755000000000000000000000000010314533200013337 5ustar 00000000000000lmms-1.0.0+bzr2569/lmms.10000644000000000000000000000553411426644735013002 0ustar 00000000000000.\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) .TH LMMS 1 "September 28, 2006" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: .\" .nh disable hyphenation .\" .hy enable hyphenation .\" .ad l left justify .\" .ad b justify to both left and right margins .\" .nf disable filling .\" .fi enable filling .\" .br insert line break .\" .sp insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME lmms \- software for easy music production .SH SYNOPSIS .B lmms .RB "[ \--\fBrender\fP \fIfile\fP ] [options]" .br .B lmms .RB "[ \--\fBupgrade\fP \fIin\fP \fIout\fP ]" .br .B lmms .RB "[ \--\fBdump\fP \fIin\fP ]" .br .B lmms .RI "[ file ]" .SH DESCRIPTION .PP .\" TeX users may be more comfortable with the \fB\fP and .\" \fI\fP escape sequences to invode bold face and italics, .\" respectively. .B LMMS LMMS is a free cross-platform alternative to commercial programs like FL Studio®, which allow you to produce music with your computer. This includes the creation of melodies and beats, the synthesis and mixing of sounds, and arranging of samples. You can have fun with your MIDI-keyboard and much more; all in a user-friendly and modern interface. LMMS features components such as a Song Editor, a Beat+Bassline Editor, a Piano Roll, an FX Mixer as well as many powerful instruments and effects. .SH OPTIONS .IP "\fB\-r, --render\fP \fIproject-file\fP Render given file to either a wav\- or ogg\-file. See \fB\-f\fP for details .IP "\fB\-o, --output\fP \fIfile\fP render into \fIfile\fP .IP "\fB\-f, --output-format\fP \fIformat\fP Specify format of render-output where \fIformat\fP is either 'wav' or 'ogg' .IP "\fB\-s, --samplerate\fP \fIsamplerate\fP Specify output samplerate in Hz - range is 44100 (default) to 192000 .IP "\fB\-b, --bitrate\fP \fIbitrate\fP Specify output bitrate in kHz (for OGG encoding only), default is 160 .IP "\fB\-i, --interpolation\fP \fImethod\fP Specify interpolation method - possible values are \fIlinear\fP, \fIsincfastest\fP (default), \fIsincmedium\fP, \fIsincbest\fP .IP "\fB\-x, --oversampling\fP \fIvalue\fP Specify oversampling, possible values: 1, 2 (default), 4, 8 .IP "\fB\-u, --upgrade\fP \fIin\fP \fIout\fP Upgrade file \fIin\fP and save as \fIout\fP .IP "\fB\-d, --dump\fP \fIin\fP Dump XML of compressed file \fIin\fP (i.e. MMPZ-file) .IP "\fB\-v, --version Show version information and exit. .IP "\fB\-h, --help Show usage information and exit. .SH SEE ALSO .BR http://lmms.sf.net/ .BR http://lmms.sf.net/wiki/ .SH AUTHORS .BR Tobias Doerffel , Paul Giblock and others. See AUTHORS for details. lmms-1.0.0+bzr2569/lmms.rc.in0000644000000000000000000000134212313663131013627 0ustar 00000000000000lmmsicon ICON data/lmms.ico #include VS_VERSION_INFO VERSIONINFO FILEVERSION 1,0,0,0 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK FILEOS VOS_NT_WINDOWS32 FILETYPE VFT_APP FILESUBTYPE VFT2_UNKNOWN BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904E4" //language ID = U.S. English, charset = Windows, Multilingual BEGIN VALUE "Comments", "http://lmms.sf.net\0" VALUE "CompanyName", "LMMS Developers\0" VALUE "FileDescription", "LMMS\0" VALUE "FileVersion", "@VERSION@\0" VALUE "LegalCopyright", "Copyright (c) 2004-2014 LMMS Developers\0" VALUE "OriginalFilename", "lmms.exe\0" VALUE "ProductName", "LMMS\0" VALUE "ProductVersion", "@VERSION@\0" END END END lmms-1.0.0+bzr2569/lmms.spec.in0000644000000000000000000001352710662302473014171 0ustar 00000000000000# Configuration variables %define name lmms %define version 0.3.0 %define rel 1 %define release %{rel}%{?disttag}%{?repotag} # Define what you can/want to build: %define with_sdl 0%{nil} %define with_jack 1%{nil} %define with_vorbis 1%{nil} %define with_flac 1%{nil} %define with_sr 1%{nil} %define with_sf 1%{nil} # Build by setting these defines on the command line, for example: # rpmbuild --define 'disttag .EL' --define 'repotag .fc6' %{!?desktop_vendor: %{expand: %%define desktop_vendor rpmfarm}} # This can be changed at build time: # rpmbuild --define 'desktop_vendor RPMfarm' #-------------------------------------------------------------------- Name: %{name} Version: %{version} Release: %{release} Summary: powerful sequencer-, synthesizer- and sample-studio for Linux Summary(de): Leistungsfaehiges Sequenzer-, Synthesizer- und Sample-Studio fuer Linux License: GPL URL: http://lmms.sourceforge.net/ Group: Applications/Multimedia Provides: lmms = %{version}-%{release} BuildRequires: gcc gcc-c++ libstdc++-devel autoconf automake libtool make BuildRequires: alsa-lib-devel BuildRequires: qt-devel > 3.0 # ------------- BuildRequires: %if %{with_vorbis} BuildRequires: libvorbis libvorbis-devel %endif %if %{with_sdl} BuildRequires: SDL SDL-devel SDL_sound %endif %if %{with_sr} BuildRequires: libsamplerate libsamplerate-devel %endif %if %{with_sf} BuildRequires: libsndfile libsndfile-devel %endif %if %{with_jack} BuildRequires: jack-audio-connection-kit-devel %endif %if %{with_flac} BuildRequires: flac-devel %endif # ------------- Requires: Requires: qt >= 3.0 alsa-lib %if %{with_sr} Requires: libsamplerate %endif %if %{with_sf} Requires: libsndfile %endif %if %{with_jack} Requires: jack-audio-connection-kit %endif %if %{with_vorbis} Requires: libvorbis %endif %if %{with_flac} Requires: flac %endif %if %{with_sdl} Requires: SDL_sound %endif Requires: lmms-data Source: %{name}-%{version}.tar.bz2 Patch1: %{name}-%{version}-patch BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot Prefix: %{_prefix} %description LMMS aims to be a free alternative to popular (but commercial and closed- source) programs like FruityLoops, Cubase and Logic giving you the ability of producing music with your computer by creating/synthesizing sounds, arranging samples, playing live with keyboard and much more... LMMS combines the features of a tracker-/sequencer-program (pattern-/channel-/ sample-/song-/effect-management) and those of powerful synthesizers and samplers in a modern, user-friendly and easy to use graphical user-interface. LMMS is still in heavy development, so with this version please don't expect a complete, ready and bugfree program!! %description -l de LMMS ist eine freie Alternative zu bekannten (aber kommerziellen und Closed-Source-) Programmen wie FruityLoops, Cubase und Logic, die Ihnen die Moeglichkeit geben, mit Ihrem Computer Musik zu produzieren, indem Sie Klaenge kreieren/synthetisieren, Samples anordnen, mit dem Keyboard live spielen usw.... LMMS kombiniert die Funktionen eines Tracker-/Sequenzer-Programms (Pattern-/ Kanal-/Sample-/Song-/Effekt-Management) und die von leistungsfaehigen Synthesizern und Samplern in einer modernen, benutzerfreundlichen und einfach zu benutzenden grafischen Oberflaeche. Derzeit befindet sich LMMS komplett in Entwicklung. Also erwarten Sie bitte mit dieser Version nicht ein vollstaendiges, fertiges und fehlerfreies Programm!! %package data Summary: samples, presets, demo-projects and localization-files for LMMS Summary(de): Samples, Presets, Demo-Projekte und Lokalisierungsdateien fuer LMMS Group: Applications/Multimedia Provides: lmms-data = %{version}-%{release} %description data This package contains platform-independent data and resources for Linux MultiMedia Studio (LMMS), e.g. samples, presets and demo-projects. %description data -l de Dieses Paket beinhaltet plattform-unabhaengige Daten und Resourcen fuer Linux MultiMedia Studio (LMMS), wie z.B. Samples, Presets und Demo-Projekte. %prep %setup -n %{name}-%{version} %patch1 -p1 -b .EL %build %configure \ %if !%{with_jack} --without-jack \ %endif %if !%{with_sdl} --without-sdl \ --without-sdlsound \ %endif %if !%{with_vorbis} --without-vorbis \ %endif %if !%{with_flac} --without-flac \ %endif %if !%{with_sr} --without-libsrc \ %endif %if !%{with_sf} --without-libsf \ %endif %{__make} %{?_smp_mflags} # Create a desktop menu entry %{__cat} > %{name}.desktop << EOF [Desktop Entry] Name=Linux MultiMedia Studio Comment=Powerful sequencer-, synthesizer- and sample-studio for Linux Exec=lmms Icon=%{_datadir}/%{name}/themes/default/icon.png Terminal=false Type=Application Categories=Application;AudioVideo;X-Fedora;X-RPMfarm; Encoding=UTF-8 EOF %install %{__rm} -rf %{buildroot} make DESTDIR=$RPM_BUILD_ROOT install # Install menu entry %{__mkdir_p} %{buildroot}%{_datadir}/applications desktop-file-install \ --vendor %{desktop_vendor} \ --dir %{buildroot}%{_datadir}/applications \ %{name}.desktop || : %clean %{__rm} -rf %{buildroot} %files %defattr(-, root, root, 0755) %doc AUTHORS ChangeLog COPYING README TODO %{_bindir}/lmms %dir %{_libdir}/lmms %{_libdir}/lmms/* %{_mandir}/man*/lmms.* %{_datadir}/applications/%{desktop_vendor}-%{name}.desktop %files data %defattr(-,root,root) %dir %{_datadir}/lmms %{_datadir}/lmms/* %changelog * Fri Apr 13 2007 Eric Lassauge - 0.2.1-1 - build for FC6 - added dependencies and build configuration - added .desktop file * Tue Sep 20 2005 Tobias Doerffel - added JACK-dependencies * Fri Jul 22 2005 Tobias Doerffel - added more dependencies for builds under SuSE * Sat Jun 25 2005 Tobias Doerffel - splitted package into lmms and lmms-data - additional requirements - updated project-homepage and email-address of packager * Thu May 12 2005 Tobias Doerffel - created lmms.spec.in lmms-1.0.0+bzr2569/lmmsconfig.h.in0000644000000000000000000000327312050015654014644 0ustar 00000000000000#cmakedefine LMMS_BUILD_LINUX #cmakedefine LMMS_BUILD_WIN32 #cmakedefine LMMS_BUILD_WIN64 #cmakedefine LMMS_BUILD_APPLE #cmakedefine LMMS_HOST_X86 #cmakedefine LMMS_HOST_X86_64 #cmakedefine LMMS_HAVE_ALSA #cmakedefine LMMS_HAVE_FLUIDSYNTH #cmakedefine LMMS_HAVE_JACK #cmakedefine LMMS_HAVE_OGGVORBIS #cmakedefine LMMS_HAVE_OSS #cmakedefine LMMS_HAVE_PORTAUDIO #cmakedefine LMMS_HAVE_PULSEAUDIO #cmakedefine LMMS_HAVE_SDL #cmakedefine LMMS_HAVE_STK #cmakedefine LMMS_HAVE_VST #cmakedefine LMMS_HAVE_STDINT_H #cmakedefine LMMS_HAVE_STDLIB_H #cmakedefine LMMS_HAVE_PTHREAD_H #cmakedefine LMMS_HAVE_UNISTD_H #cmakedefine LMMS_HAVE_SYS_TYPES_H #cmakedefine LMMS_HAVE_SYS_IPC_H #cmakedefine LMMS_HAVE_SEMAPHORE_H #cmakedefine LMMS_HAVE_SYS_SHM_H #cmakedefine LMMS_HAVE_SYS_TIME_H #cmakedefine LMMS_HAVE_SYS_WAIT_H #cmakedefine LMMS_HAVE_SYS_SELECT_H #cmakedefine LMMS_HAVE_STDARG_H #cmakedefine LMMS_HAVE_SIGNAL_H #cmakedefine LMMS_HAVE_SCHED_H #cmakedefine LMMS_HAVE_SYS_SOUNDCARD_H #cmakedefine LMMS_HAVE_SOUNDCARD_H #cmakedefine LMMS_HAVE_FCNTL_H #cmakedefine LMMS_HAVE_SYS_IOCTL_H #cmakedefine LMMS_HAVE_CTYPE_H #cmakedefine LMMS_HAVE_STRING_H #cmakedefine LMMS_HAVE_PROCESS_H #cmakedefine LMMS_HAVE_LOCALE_H /* defines for libsamplerate */ /* Target processor clips on negative float to int conversion. */ #cmakedefine CPU_CLIPS_NEGATIVE 1 #ifndef CPU_CLIPS_NEGATIVE #define CPU_CLIPS_NEGATIVE 0 #endif /* Target processor clips on positive float to int conversion. */ #cmakedefine CPU_CLIPS_POSITIVE 1 #ifndef CPU_CLIPS_POSITIVE #define CPU_CLIPS_POSITIVE 0 #endif /* Define if you have C99's lrint function. */ #cmakedefine HAVE_LRINT 1 /* Define if you have C99's lrintf function. */ #cmakedefine HAVE_LRINTF 1 lmms-1.0.0+bzr2569/lmmsversion.h.in0000644000000000000000000000032211423065542015060 0ustar 00000000000000#define LMMS_VERSION_MAJOR @VERSION_MAJOR@ #define LMMS_VERSION_MINOR @VERSION_MINOR@ #define LMMS_VERSION_PATCH @VERSION_PATCH@ #define LMMS_VERSION_SUFFIX "@VERSION_SUFFIX@" #define LMMS_VERSION "@VERSION@" lmms-1.0.0+bzr2569/plugins/0000755000000000000000000000000010325712542013407 5ustar 00000000000000lmms-1.0.0+bzr2569/src/0000755000000000000000000000000010314533200012503 5ustar 00000000000000lmms-1.0.0+bzr2569/tests/0000755000000000000000000000000011075213742013071 5ustar 00000000000000lmms-1.0.0+bzr2569/buildtools/bin2res.cpp0000644000000000000000000001244311071132453016156 0ustar 00000000000000/* * bin2res.cpp - generate embedded resources from binary data (based on qembed) * * Copyright (c) 2005-2008 Tobias Doerffel * * 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 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 (see COPYING); if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301 USA. * */ #include #include #include #include static void embedData( const char * _input, int _size, std::ostream & _output ); static std::string convertFileNameToCIdentifier( const std::string & _s ); struct embed { unsigned int size; std::string name; std::string cname; } ; typedef std::vector stringlist; const int MAX_FILE_SIZE = 256*256*256; // = 16 MB int main( int argc, char * * argv ) { if( argc < 2 ) { std::cerr << "Usage:" << std::endl << "\t" << argv[0] << " files" << std::endl; return( 1 ); } std::cout << "// Generated by bin2res" << std::endl; std::vector embedded_data; std::cout << "#ifndef _EMBEDDED_RESOURCES_H" << std::endl; std::cout << "#define _EMBEDDED_RESOURCES_H" << std::endl; stringlist files; for( int i = 1; i < argc; ++i ) { files.push_back( std::string( argv[i] ) ); } for( stringlist::iterator it = files.begin(); it != files.end(); ++it ) { std::ifstream f( it->c_str(), std::ios::binary ); if( f.fail() ) { std::cerr << "Cannot open file " << *it << ", ignoring it" << std::endl; continue; } f.seekg( 0, std::ios::end ); int fsize = f.tellg(); f.seekg( 0 ); if( fsize == 0 || fsize > MAX_FILE_SIZE ) { std::cerr << "File " << *it << " has zero size or is " "too large to be processed with bin2res." << std::endl; } char * data = new char[fsize]; f.read( data, fsize ); embed * e = new embed; e->size = fsize; if( it->rfind( '/' ) != std::string::npos ) { e->name = std::string( it->c_str() + it->rfind( '/' ) + 1 ); } else { e->name = *it; } e->cname = convertFileNameToCIdentifier( e->name ); embedded_data.push_back( e ); std::string s; std::cout << "static const unsigned char " << e->cname << "_data[] = {"; embedData( data, fsize, std::cout ); std::cout << std::endl << "};" << std::endl << std::endl; delete[] data; } if( embedded_data.size() > 0 ) { std::cout << "static const unsigned char dummy_data[] =" "{ 0x00 };" << std::endl << std::endl; embed * dummy = new embed; dummy->size = 1; dummy->name = "dummy"; dummy->cname = convertFileNameToCIdentifier( std::string( "dummy" ) ); embedded_data.push_back( dummy ); std::cout << "#include " << std::endl << std::endl; std::cout << "#include \"embed.h\"" << std::endl << std::endl; std::cout << "static embed::descriptor embed_vec[] = {" << std::endl; /* << "{" << std::endl << " int size;" << std::endl << " const unsigned char * data;" << std::endl << " const char * name;" << std::endl << "} embed_vec[] = {" << std::endl;*/ while( embedded_data.size() > 0 ) { embed * e = embedded_data[0]; std::cout << " { " << e->size << ", " << e->cname << "_data, " << "\"" << e->name << "\" }," << std::endl; delete e; embedded_data.erase( embedded_data.begin() ); } std::cout << " { 0, 0, 0 }" << std::endl << "};" << std::endl << std::endl << "static const embed::descriptor & " "findEmbeddedData( const char * _name )" << std::endl << "{" << std::endl << " for( int i = 0; embed_vec[i].data; " "i++ )" << std::endl << " {" << std::endl << " if( strcmp( embed_vec[i].name, " "_name ) == 0 )" << std::endl << " {" << std::endl << " return( " "embed_vec[i] );" << std::endl << " }" << std::endl << " }" << std::endl /* << " printf( \"warning: embedded resource " "%s not found!\\n\", _name );" << std::endl*/ << " return( findEmbeddedData( " "\"dummy\" ) );" << std::endl << "}" << std::endl << std::endl; } std::cout << "#endif" << std::endl; return( 0 ); } std::string convertFileNameToCIdentifier( const std::string & _s ) { std::string r = _s; int len = r.length(); if ( len > 0 && !isalpha( (char)r[0] ) ) { r[0] = '_'; } for ( int i = 1; i < len; i++ ) { if ( !isalnum( (char)r[i] ) ) { r[i] = '_'; } } return( r ); } void embedData( const char * _input, int _nbytes, std::ostream & _output ) { static const char hexdigits[] = "0123456789abcdef"; std::string s; for( int i = 0; i < _nbytes; i++ ) { if( ( i%14 ) == 0 ) { s += "\n "; _output << s; s = ""; } unsigned int v = _input[i]; s += "0x"; s += hexdigits[(v >> 4) & 15]; s += hexdigits[v & 15]; if( i < _nbytes-1 ) { s += ','; } } if ( s.length() ) { _output << s; } } lmms-1.0.0+bzr2569/cmake/modules/0000755000000000000000000000000011041343122014444 5ustar 00000000000000lmms-1.0.0+bzr2569/cmake/nsis/0000755000000000000000000000000011426645542013772 5ustar 00000000000000lmms-1.0.0+bzr2569/cmake/modules/BuildPlugin.cmake0000644000000000000000000000621212266562230017702 0ustar 00000000000000# BuildPlugin.cmake - Copyright (c) 2008 Tobias Doerffel # # description: build LMMS-plugin # usage: BUILD_PLUGIN( MOCFILES EMBEDDED_RESOURCES UICFILES ) MACRO(CAR var) SET(${var} ${ARGV1}) ENDMACRO(CAR) MACRO(CDR var junk) SET(${var} ${ARGN}) ENDMACRO(CDR) MACRO(LIST_CONTAINS var value) SET(${var}) FOREACH (value2 ${ARGN}) IF (${value} STREQUAL ${value2}) SET(${var} TRUE) ENDIF (${value} STREQUAL ${value2}) ENDFOREACH (value2) ENDMACRO(LIST_CONTAINS) MACRO(PARSE_ARGUMENTS prefix arg_names option_names) SET(DEFAULT_ARGS) FOREACH(arg_name ${arg_names}) SET(${prefix}_${arg_name}) ENDFOREACH(arg_name) FOREACH(option ${option_names}) SET(${prefix}_${option} FALSE) ENDFOREACH(option) SET(current_arg_name DEFAULT_ARGS) SET(current_arg_list) FOREACH(arg ${ARGN}) LIST_CONTAINS(is_arg_name ${arg} ${arg_names}) IF (is_arg_name) SET(${prefix}_${current_arg_name} ${current_arg_list}) SET(current_arg_name ${arg}) SET(current_arg_list) ELSE (is_arg_name) LIST_CONTAINS(is_option ${arg} ${option_names}) IF (is_option) SET(${prefix}_${arg} TRUE) ELSE (is_option) SET(current_arg_list ${current_arg_list} ${arg}) ENDIF (is_option) ENDIF (is_arg_name) ENDFOREACH(arg) SET(${prefix}_${current_arg_name} ${current_arg_list}) ENDMACRO(PARSE_ARGUMENTS) MACRO(BUILD_PLUGIN) PARSE_ARGUMENTS(PLUGIN "MOCFILES;EMBEDDED_RESOURCES;UICFILES" "" ${ARGN} ) CAR(PLUGIN_NAME ${PLUGIN_DEFAULT_ARGS}) CDR(PLUGIN_SOURCES ${PLUGIN_DEFAULT_ARGS}) INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_BINARY_DIR} ${CMAKE_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR}/src/gui) ADD_DEFINITIONS(-DPLUGIN_NAME=${PLUGIN_NAME}) LIST(LENGTH PLUGIN_EMBEDDED_RESOURCES ER_LEN) IF(ER_LEN) SET(ER_H ${CMAKE_CURRENT_BINARY_DIR}/embedded_resources.h) ADD_CUSTOM_COMMAND(OUTPUT ${ER_H} COMMAND ${BIN2RES} ARGS ${PLUGIN_EMBEDDED_RESOURCES} > ${ER_H} DEPENDS ${BIN2RES}) ENDIF(ER_LEN) QT4_WRAP_CPP(plugin_MOC_out ${PLUGIN_MOCFILES}) QT4_WRAP_UI(plugin_UIC_out ${PLUGIN_UICFILES}) FOREACH(f ${PLUGIN_SOURCES}) ADD_FILE_DEPENDENCIES(${f} ${ER_H} ${plugin_MOC_out} ${plugin_UIC_out}) ENDFOREACH(f) IF(LMMS_BUILD_APPLE) LINK_DIRECTORIES(${CMAKE_BINARY_DIR}) LINK_LIBRARIES(${QT_LIBRARIES}) ENDIF(LMMS_BUILD_APPLE) IF(LMMS_BUILD_WIN32) LINK_DIRECTORIES(${CMAKE_BINARY_DIR} ${CMAKE_SOURCE_DIR}) LINK_LIBRARIES(-llmms ${QT_LIBRARIES}) ENDIF(LMMS_BUILD_WIN32) ADD_LIBRARY(${PLUGIN_NAME} MODULE ${PLUGIN_SOURCES}) INSTALL(TARGETS ${PLUGIN_NAME} LIBRARY DESTINATION "${PLUGIN_DIR}") IF(LMMS_BUILD_APPLE) SET_TARGET_PROPERTIES(${PLUGIN_NAME} PROPERTIES LINK_FLAGS "-bundle_loader ${CMAKE_BINARY_DIR}/lmms") ENDIF(LMMS_BUILD_APPLE) IF(LMMS_BUILD_WIN32) SET_TARGET_PROPERTIES(${PLUGIN_NAME} PROPERTIES PREFIX "") ADD_CUSTOM_COMMAND(TARGET ${PLUGIN_NAME} POST_BUILD COMMAND ${STRIP} ${CMAKE_CURRENT_BINARY_DIR}/${PLUGIN_NAME}.dll) ENDIF(LMMS_BUILD_WIN32) SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${ER_H} ${plugin_MOC_out}") ENDMACRO(BUILD_PLUGIN) lmms-1.0.0+bzr2569/cmake/modules/DetectMachine.cmake0000644000000000000000000000236112266562230020162 0ustar 00000000000000IF(WIN32) SET(LMMS_BUILD_WIN32 1) ELSE(WIN32) IF(APPLE) SET(LMMS_BUILD_APPLE 1) ELSE(APPLE) SET(LMMS_BUILD_LINUX 1) ENDIF(APPLE) ENDIF(WIN32) MESSAGE("PROCESSOR: ${CMAKE_SYSTEM_PROCESSOR}") SET(LMMS_HOST_X86 FALSE) SET(LMMS_HOST_X86_64 FALSE) IF(WIN32) IF(WIN64) SET(IS_X86_64 TRUE) SET(LMMS_BUILD_WIN64 TRUE) ELSE(WIN64) SET(IS_X86 TRUE) ENDIF(WIN64) ELSE(WIN32) EXEC_PROGRAM( ${CMAKE_C_COMPILER} ARGS "-dumpmachine" OUTPUT_VARIABLE Machine ) MESSAGE("Machine: ${Machine}") STRING(REGEX MATCH "i.86" IS_X86 "${Machine}") STRING(REGEX MATCH "86_64" IS_X86_64 "${Machine}") ENDIF(WIN32) IF(IS_X86) MESSAGE("-- Target host is 32 bit") SET(LMMS_HOST_X86 TRUE) ELSEIF(IS_X86_64) MESSAGE("-- Target host is 64 bit") SET(LMMS_HOST_X86_64 TRUE) ELSE(IS_X86) MESSAGE("Can't identify target host. Assuming 32 bit platform.") ENDIF(IS_X86) IF(CMAKE_INSTALL_LIBDIR) SET(LIB_DIR "${CMAKE_INSTALL_LIBDIR}") ELSE(CMAKE_INSTALL_LIBDIR) SET(LIB_DIR lib) ENDIF(CMAKE_INSTALL_LIBDIR) IF(LMMS_BUILD_WIN32) SET(BIN_DIR .) SET(PLUGIN_DIR plugins) SET(DATA_DIR data) SET(LMMS_DATA_DIR data) ELSE(LMMS_BUILD_WIN32) SET(BIN_DIR bin) SET(PLUGIN_DIR ${LIB_DIR}/lmms) SET(DATA_DIR share) SET(LMMS_DATA_DIR ${DATA_DIR}/lmms) ENDIF(LMMS_BUILD_WIN32) lmms-1.0.0+bzr2569/cmake/modules/FindAlsa.cmake0000644000000000000000000000527311076377232017157 0ustar 00000000000000# Alsa check, based on libkmid/configure.in.in. # Only the support for Alsa >= 0.9.x was included; 0.5.x was dropped (but feel free to re-add it if you need it) # It defines ... # It offers the following macros: # ALSA_CONFIGURE_FILE(config_header) - generate a config.h, typical usage: # ALSA_CONFIGURE_FILE(${CMAKE_BINARY_DIR}/config-alsa.h) # ALSA_VERSION_STRING(version_string) looks for alsa/version.h and reads the version string into # the first argument passed to the macro # Copyright (c) 2006, David Faure, # Copyright (c) 2007, Matthias Kretz # # Redistribution and use is allowed according to the terms of the BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. include(CheckIncludeFiles) include(CheckIncludeFileCXX) include(CheckLibraryExists) # Already done by toplevel find_library(ASOUND_LIBRARY asound) set(ASOUND_LIBRARY_DIR "") if(ASOUND_LIBRARY) get_filename_component(ASOUND_LIBRARY_DIR ${ASOUND_LIBRARY} PATH) endif(ASOUND_LIBRARY) check_library_exists(asound snd_seq_create_simple_port "${ASOUND_LIBRARY_DIR}" HAVE_LIBASOUND2) if(HAVE_LIBASOUND2) message(STATUS "Found ALSA: ${ASOUND_LIBRARY}") else(HAVE_LIBASOUND2) message(STATUS "ALSA not found") endif(HAVE_LIBASOUND2) set(ALSA_FOUND ${HAVE_LIBASOUND2}) find_path(ALSA_INCLUDES alsa/version.h) macro(ALSA_VERSION_STRING _result) # check for version in alsa/version.h if(ALSA_INCLUDES) file(READ "${ALSA_INCLUDES}/alsa/version.h" _ALSA_VERSION_CONTENT) string(REGEX REPLACE ".*SND_LIB_VERSION_STR.*\"(.*)\".*" "\\1" ${_result} ${_ALSA_VERSION_CONTENT}) else(ALSA_INCLUDES) message(STATUS "ALSA version not known. ALSA output will probably not work correctly.") endif(ALSA_INCLUDES) endmacro(ALSA_VERSION_STRING _result) check_include_files(sys/soundcard.h LMMS_HAVE_SYS_SOUNDCARD_H) check_include_files(machine/soundcard.h LMMS_HAVE_MACHINE_SOUNDCARD_H) check_include_files(linux/awe_voice.h LMMS_HAVE_LINUX_AWE_VOICE_H) check_include_files(awe_voice.h LMMS_HAVE_AWE_VOICE_H) check_include_files(/usr/src/sys/i386/isa/sound/awe_voice.h LMMS_HAVE__USR_SRC_SYS_I386_ISA_SOUND_AWE_VOICE_H) check_include_files(/usr/src/sys/gnu/i386/isa/sound/awe_voice.h LMMS_HAVE__USR_SRC_SYS_GNU_I386_ISA_SOUND_AWE_VOICE_H) check_include_file_cxx(sys/asoundlib.h LMMS_HAVE_SYS_ASOUNDLIB_H) check_include_file_cxx(alsa/asoundlib.h LMMS_HAVE_ALSA_ASOUNDLIB_H) check_library_exists(asound snd_pcm_resume "${ASOUND_LIBRARY_DIR}" ASOUND_HAS_SND_PCM_RESUME) if(ASOUND_HAS_SND_PCM_RESUME) set(HAVE_SND_PCM_RESUME 1) endif(ASOUND_HAS_SND_PCM_RESUME) mark_as_advanced(ALSA_INCLUDES ASOUND_LIBRARY) lmms-1.0.0+bzr2569/cmake/modules/FindOggVorbis.cmake0000644000000000000000000000657511041343122020165 0ustar 00000000000000# - Try to find the OggVorbis libraries # Once done this will define # # OGGVORBIS_FOUND - system has OggVorbis # OGGVORBIS_VERSION - set either to 1 or 2 # OGGVORBIS_INCLUDE_DIR - the OggVorbis include directory # OGGVORBIS_LIBRARIES - The libraries needed to use OggVorbis # OGG_LIBRARY - The Ogg library # VORBIS_LIBRARY - The Vorbis library # VORBISFILE_LIBRARY - The VorbisFile library # VORBISENC_LIBRARY - The VorbisEnc library # Copyright (c) 2006, Richard Laerkaeng, # # Redistribution and use is allowed according to the terms of the BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. include (CheckLibraryExists) find_path(VORBIS_INCLUDE_DIR vorbis/vorbisfile.h) find_path(OGG_INCLUDE_DIR ogg/ogg.h) find_library(OGG_LIBRARY NAMES ogg) find_library(VORBIS_LIBRARY NAMES vorbis) find_library(VORBISFILE_LIBRARY NAMES vorbisfile) find_library(VORBISENC_LIBRARY NAMES vorbisenc) if (VORBIS_INCLUDE_DIR AND VORBIS_LIBRARY AND VORBISFILE_LIBRARY AND VORBISENC_LIBRARY) set(OGGVORBIS_FOUND TRUE) set(OGGVORBIS_LIBRARIES ${OGG_LIBRARY} ${VORBIS_LIBRARY} ${VORBISFILE_LIBRARY} ${VORBISENC_LIBRARY}) set(_CMAKE_REQUIRED_LIBRARIES_TMP ${CMAKE_REQUIRED_LIBRARIES}) set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} ${OGGVORBIS_LIBRARIES}) check_library_exists(vorbis vorbis_bitrate_addblock "" HAVE_LIBVORBISENC2) set(CMAKE_REQUIRED_LIBRARIES ${_CMAKE_REQUIRED_LIBRARIES_TMP}) if (HAVE_LIBVORBISENC2) set (OGGVORBIS_VERSION 2) else (HAVE_LIBVORBISENC2) set (OGGVORBIS_VERSION 1) endif (HAVE_LIBVORBISENC2) else (VORBIS_INCLUDE_DIR AND VORBIS_LIBRARY AND VORBISFILE_LIBRARY AND VORBISENC_LIBRARY) set (OGGVORBIS_VERSION) set(OGGVORBIS_FOUND FALSE) endif (VORBIS_INCLUDE_DIR AND VORBIS_LIBRARY AND VORBISFILE_LIBRARY AND VORBISENC_LIBRARY) if (OGGVORBIS_FOUND) if (NOT OggVorbis_FIND_QUIETLY) message(STATUS "Found OggVorbis: ${OGGVORBIS_LIBRARIES}") endif (NOT OggVorbis_FIND_QUIETLY) else (OGGVORBIS_FOUND) if (OggVorbis_FIND_REQUIRED) message(FATAL_ERROR "Could NOT find OggVorbis libraries") endif (OggVorbis_FIND_REQUIRED) if (NOT OggVorbis_FIND_QUITELY) message(STATUS "Could NOT find OggVorbis libraries") endif (NOT OggVorbis_FIND_QUITELY) endif (OGGVORBIS_FOUND) #check_include_files(vorbis/vorbisfile.h HAVE_VORBISFILE_H) #check_library_exists(ogg ogg_page_version "" HAVE_LIBOGG) #check_library_exists(vorbis vorbis_info_init "" HAVE_LIBVORBIS) #check_library_exists(vorbisfile ov_open "" HAVE_LIBVORBISFILE) #check_library_exists(vorbisenc vorbis_info_clear "" HAVE_LIBVORBISENC) #check_library_exists(vorbis vorbis_bitrate_addblock "" HAVE_LIBVORBISENC2) #if (HAVE_LIBOGG AND HAVE_VORBISFILE_H AND HAVE_LIBVORBIS AND HAVE_LIBVORBISFILE AND HAVE_LIBVORBISENC) # message(STATUS "Ogg/Vorbis found") # set (VORBIS_LIBS "-lvorbis -logg") # set (VORBISFILE_LIBS "-lvorbisfile") # set (VORBISENC_LIBS "-lvorbisenc") # set (OGGVORBIS_FOUND TRUE) # if (HAVE_LIBVORBISENC2) # set (HAVE_VORBIS 2) # else (HAVE_LIBVORBISENC2) # set (HAVE_VORBIS 1) # endif (HAVE_LIBVORBISENC2) #else (HAVE_LIBOGG AND HAVE_VORBISFILE_H AND HAVE_LIBVORBIS AND HAVE_LIBVORBISFILE AND HAVE_LIBVORBISENC) # message(STATUS "Ogg/Vorbis not found") #endif (HAVE_LIBOGG AND HAVE_VORBISFILE_H AND HAVE_LIBVORBIS AND HAVE_LIBVORBISFILE AND HAVE_LIBVORBISENC) lmms-1.0.0+bzr2569/cmake/modules/FindPortaudio.cmake0000644000000000000000000000240011507737303020230 0ustar 00000000000000# - Try to find Portaudio # Once done this will define # # PORTAUDIO_FOUND - system has Portaudio # PORTAUDIO_INCLUDE_DIRS - the Portaudio include directory # PORTAUDIO_LIBRARIES - Link these to use Portaudio # PORTAUDIO_DEFINITIONS - Compiler switches required for using Portaudio # # Copyright (c) 2006 Andreas Schneider # # Redistribution and use is allowed according to the terms of the New BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. # if (PORTAUDIO_LIBRARIES AND PORTAUDIO_INCLUDE_DIRS) # in cache already set(PORTAUDIO_FOUND TRUE) else (PORTAUDIO_LIBRARIES AND PORTAUDIO_INCLUDE_DIRS) include(FindPkgConfig) pkg_check_modules(PORTAUDIO portaudio-2.0) if (PORTAUDIO_FOUND) if (NOT Portaudio_FIND_QUIETLY) message(STATUS "Found Portaudio: ${PORTAUDIO_LIBRARIES}") endif (NOT Portaudio_FIND_QUIETLY) else (PORTAUDIO_FOUND) if (Portaudio_FIND_REQUIRED) message(FATAL_ERROR "Could not find Portaudio") endif (Portaudio_FIND_REQUIRED) endif (PORTAUDIO_FOUND) # show the PORTAUDIO_INCLUDE_DIRS and PORTAUDIO_LIBRARIES variables only in the advanced view mark_as_advanced(PORTAUDIO_INCLUDE_DIRS PORTAUDIO_LIBRARIES) endif (PORTAUDIO_LIBRARIES AND PORTAUDIO_INCLUDE_DIRS) lmms-1.0.0+bzr2569/cmake/modules/FindPulseAudio.cmake0000644000000000000000000000334611041343122020327 0ustar 00000000000000# - Try to find PulseAudioSimple # Once done this will define # # PULSEAUDIO_FOUND - system has PulseAudioSimple # PULSEAUDIO_INCLUDE_DIR - the PulseAudioSimple include directory # PULSEAUDIO_LIBRARIES - the libraries needed to use PulseAudioSimple # PULSEAUDIO_DEFINITIONS - Compiler switches required for using PulseAudioSimple # IF(NO_PULSE) message(status "") ELSE(NO_PULSE) IF (PULSEAUDIO_INCLUDE_DIR AND PULSEAUDIO_LIBRARIES) # in cache already SET(PULSEAUDIO_FIND_QUIETLY TRUE) ENDIF (PULSEAUDIO_INCLUDE_DIR AND PULSEAUDIO_LIBRARIES) IF (NOT WIN32) # use pkg-config to get the directories and then use these values # in the FIND_PATH() and FIND_LIBRARY() calls INCLUDE(FindPkgConfig) pkg_check_modules(PA libpulse) set(_PASIncDir ${PA_INCLUDE_DIRS}) set(_PASLinkDir ${PA_LIBRARY_DIRS}) set(_PASLinkFlags ${PA_LDFLAGS}) set(_PASCflags ${PA_CFLAGS}) SET(PULSEAUDIO_DEFINITIONS ${_PASCflags}) ENDIF (NOT WIN32) FIND_PATH(PULSEAUDIO_INCLUDE_DIR pulse/pulseaudio.h PATHS ${_PASIncDir} PATH_SUFFIXES pulse ) FIND_LIBRARY(PULSEAUDIO_LIBRARIES NAMES pulse libpulse PATHS ${_PASLinkDir} ) IF (PULSEAUDIO_INCLUDE_DIR AND PULSEAUDIO_LIBRARIES) SET(PULSEAUDIO_FOUND TRUE) ELSE (PULSEAUDIO_INCLUDE_DIR AND PULSEAUDIO_LIBRARIES) SET(PULSEAUDIO_FOUND FALSE) ENDIF (PULSEAUDIO_INCLUDE_DIR AND PULSEAUDIO_LIBRARIES) IF (PULSEAUDIO_FOUND) IF (NOT PULSEAUDIO_FIND_QUIETLY) MESSAGE(STATUS "Found PulseAudio Simple: ${PULSEAUDIO_LIBRARIES}") ENDIF (NOT PULSEAUDIO_FIND_QUIETLY) SET(USE_PULSE_ 1) ELSE (PULSEAUDIO_FOUND) MESSAGE(STATUS "Could NOT find LibXml2") ENDIF (PULSEAUDIO_FOUND) MARK_AS_ADVANCED(PULSEAUDIO_INCLUDE_DIR PULSEAUDIO_LIBRARIES) ENDIf(NO_PULSE) lmms-1.0.0+bzr2569/cmake/modules/FindSTK.cmake0000644000000000000000000000122011150570452016714 0ustar 00000000000000FIND_PATH(STK_INCLUDE_DIR Stk.h /usr/include/stk /usr/local/include/stk ${CMAKE_INSTALL_PREFIX}/include/stk ${CMAKE_FIND_ROOT_PATH}/include/stk) FIND_LIBRARY(STK_LIBRARY NAMES stk PATH /usr/lib /usr/local/lib ${CMAKE_INSTALL_PREFIX}/lib ${CMAKE_FIND_ROOT_PATH}/lib) IF (STK_INCLUDE_DIR AND STK_LIBRARY) SET(STK_FOUND TRUE) ENDIF (STK_INCLUDE_DIR AND STK_LIBRARY) IF (STK_FOUND) IF (NOT STK_FIND_QUIETLY) MESSAGE(STATUS "Found STK: ${STK_LIBRARY}") SET(HAVE_STK TRUE) ENDIF (NOT STK_FIND_QUIETLY) ELSE (STK_FOUND) IF (STK_FIND_REQUIRED) MESSAGE(FATAL_ERROR "Could not find STK") ENDIF (STK_FIND_REQUIRED) ENDIF (STK_FOUND) lmms-1.0.0+bzr2569/cmake/modules/FindWine.cmake0000644000000000000000000000116512265532231017166 0ustar 00000000000000# - Try to find the wine libraries # Once done this will define # # WINE_FOUND - System has wine # WINE_INCLUDE_DIRS - The wine include directories # WINE_LIBRARIES - The libraries needed to use wine # WINE_DEFINITIONS - Compiler switches required for using wine # FIND_PATH(WINE_INCLUDE_DIR windows/windows.h PATH_SUFFIXES wine) FIND_LIBRARY(WINE_LIBRARY NAMES wine) set(WINE_INCLUDE_DIRS ${WINE_INCLUDE_DIR} ) set(WINE_LIBRARIES ${WINE_LIBRARY} ) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(Wine DEFAULT_MSG WINE_LIBRARIES WINE_INCLUDE_DIRS) mark_as_advanced(WINE_INCLUDE_DIR WINE_LIBRARY) lmms-1.0.0+bzr2569/cmake/modules/InstallHelpers.cmake0000644000000000000000000000222311041463134020404 0ustar 00000000000000# # install all files matching certain wildcards below ${LMMS_DATA_DIR}/ # # example: # # INSTALL_DATA_SUBDIRS("samples" "*.ogg;*.wav;*.flac") # # Copyright (c) 2008 Tobias Doerffel # # helper-macro MACRO(LIST_CONTAINS var value) SET(${var}) FOREACH (value2 ${ARGN}) IF (${value} STREQUAL ${value2}) SET(${var} TRUE) ENDIF (${value} STREQUAL ${value2}) ENDFOREACH (value2) ENDMACRO(LIST_CONTAINS) MACRO(INSTALL_DATA_SUBDIRS _subdir _wildcards) FOREACH(_wildcard ${_wildcards}) FILE(GLOB_RECURSE files ${_wildcard}) SET(SUBDIRS) FOREACH(_item ${files}) GET_FILENAME_COMPONENT(_file "${_item}" PATH) STRING(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/" "" _file "${_file}") LIST_CONTAINS(contains _file ${SUBDIRS}) IF(NOT contains) LIST(APPEND SUBDIRS "${_file}") ENDIF(NOT contains) ENDFOREACH(_item ${files}) FOREACH(_item ${SUBDIRS}) FILE(GLOB files "${_item}/${_wildcard}") FOREACH(_file ${files}) INSTALL(FILES "${_file}" DESTINATION "${LMMS_DATA_DIR}/${_subdir}/${_item}/") ENDFOREACH(_file ${files}) ENDFOREACH(_item ${SUBDIRS}) ENDFOREACH(_wildcard ${_wildcards}) ENDMACRO(INSTALL_DATA_SUBDIRS) lmms-1.0.0+bzr2569/cmake/modules/MinGWCrossCompile.cmake0000644000000000000000000000252511650607006020770 0ustar 00000000000000# this one is important SET(CMAKE_SYSTEM_NAME Windows) #this one not so much SET(CMAKE_SYSTEM_VERSION 1) # where is the target environment SET(CMAKE_FIND_ROOT_PATH ${MINGW_PREFIX}) SET(CMAKE_INSTALL_PREFIX ${MINGW_PREFIX}) SET(MINGW_TOOL_PREFIX ${MINGW_PREFIX}/bin/${CMAKE_SYSTEM_PROCESSOR}-w64-mingw32-) # specify the cross compiler SET(CMAKE_C_COMPILER ${MINGW_TOOL_PREFIX}gcc) SET(CMAKE_CXX_COMPILER ${MINGW_TOOL_PREFIX}g++) SET(CMAKE_RC_COMPILER ${MINGW_TOOL_PREFIX}gcc) IF(WIN64) # specify the cross compiler SET(MINGW_TOOL_PREFIX32 ${MINGW_PREFIX32}/bin/${CMAKE_SYSTEM_PROCESSOR32}-w64-mingw32-) SET(CMAKE_C_COMPILER32 ${MINGW_TOOL_PREFIX32}gcc) SET(CMAKE_CXX_COMPILER32 ${MINGW_TOOL_PREFIX32}g++) ENDIF() # specify location of some tools SET(STRIP ${MINGW_TOOL_PREFIX}strip) SET(WINDRES ${MINGW_TOOL_PREFIX}windres) SET(PKG_CONFIG_EXECUTABLE ${MINGW_TOOL_PREFIX}pkg-config) SET(PKG_CONFIG_FOUND TRUE) SET(QT_BINARY_DIR ${MINGW_PREFIX}/bin) SET(QT_QMAKE_EXECUTABLE ${QT_BINARY_DIR}/qmake) # search for programs in the build host directories SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) # for libraries and headers in the target directories SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) INCLUDE_DIRECTORIES(${MINGW_PREFIX}/include) LINK_DIRECTORIES(${MINGW_PREFIX}/lib ${MINGW_PREFIX}/bin) lmms-1.0.0+bzr2569/cmake/modules/Win32Toolchain.cmake0000644000000000000000000000013611423071324020217 0ustar 00000000000000SET(MINGW_PREFIX /opt/mingw32) SET(CMAKE_SYSTEM_PROCESSOR i686) INCLUDE(MinGWCrossCompile) lmms-1.0.0+bzr2569/cmake/modules/Win64Toolchain.cmake0000644000000000000000000000026611505614062020233 0ustar 00000000000000SET(MINGW_PREFIX /opt/mingw64) SET(MINGW_PREFIX32 /opt/mingw32) SET(CMAKE_SYSTEM_PROCESSOR x86_64) SET(CMAKE_SYSTEM_PROCESSOR32 i686) SET(WIN64 TRUE) INCLUDE(MinGWCrossCompile) lmms-1.0.0+bzr2569/cmake/modules/config-alsa.h.cmake0000644000000000000000000000237511041343122020066 0ustar 00000000000000/* Define to 1 if you have the header file. */ #cmakedefine LMMS_HAVE_LINUX_AWE_VOICE_H 1 /* Define to 1 if you have the header file. */ #cmakedefine LMMS_HAVE_SYS_AWE_VOICE_H 1 /* Define to 1 if you have the header file. */ #cmakedefine LMMS_HAVE__USR_SRC_SYS_GNU_I386_ISA_SOUND_AWE_VOICE_H 1 /* Define to 1 if you have the header file. */ #cmakedefine LMMS_HAVE__USR_SRC_SYS_I386_ISA_SOUND_AWE_VOICE_H 1 /* Define to 1 if you have the header file. */ #cmakedefine LMMS_HAVE_AWE_VOICE_H 1 /* Define if you have libasound.so.2 (required for ALSA 0.9.x support) */ #cmakedefine LMMS_HAVE_LIBASOUND2 1 /* Define if libasound has snd_pcm_resume() */ #cmakedefine LMMS_HAVE_SND_PCM_RESUME 1 /* Define to 1 if you have the header file. */ #cmakedefine LMMS_HAVE_ALSA_ASOUNDLIB_H 1 /* Define to 1 if you have the header file. */ #cmakedefine LMMS_HAVE_SYS_ASOUNDLIB_H 1 /* Define to 1 if you have the header file. */ #cmakedefine LMMS_HAVE_SYS_SOUNDCARD_H 1 /* Define to 1 if you have the header file. */ #cmakedefine LMMS_HAVE_MACHINE_SOUNDCARD_H 1 lmms-1.0.0+bzr2569/cmake/nsis/FileAssociation.nsh0000644000000000000000000001070612301162507017550 0ustar 00000000000000/* _____________________________________________________________________________ File Association _____________________________________________________________________________ Based on code taken from http://nsis.sourceforge.net/File_Association Usage in script: 1. !include "FileAssociation.nsh" 2. [Section|Function] ${FileAssociationFunction} "Param1" "Param2" "..." $var [SectionEnd|FunctionEnd] FileAssociationFunction=[RegisterExtension|UnRegisterExtension] _____________________________________________________________________________ ${RegisterExtension} "[executable]" "[extension]" "[description]" "[executable]" ; executable which opens the file format ; "[extension]" ; extension, which represents the file format to open ; "[description]" ; description for the extension. This will be display in Windows Explorer. ; ${UnRegisterExtension} "[extension]" "[description]" "[extension]" ; extension, which represents the file format to open ; "[description]" ; description for the extension. This will be display in Windows Explorer. ; _____________________________________________________________________________ Macros _____________________________________________________________________________ Change log window verbosity (default: 3=no script) Example: !include "FileAssociation.nsh" !insertmacro RegisterExtension ${FileAssociation_VERBOSE} 4 # all verbosity !insertmacro UnRegisterExtension ${FileAssociation_VERBOSE} 3 # no script */ !ifndef FileAssociation_INCLUDED !define FileAssociation_INCLUDED !include Util.nsh !verbose push !verbose 3 !ifndef _FileAssociation_VERBOSE !define _FileAssociation_VERBOSE 3 !endif !verbose ${_FileAssociation_VERBOSE} !define FileAssociation_VERBOSE `!insertmacro FileAssociation_VERBOSE` !verbose pop !macro FileAssociation_VERBOSE _VERBOSE !verbose push !verbose 3 !undef _FileAssociation_VERBOSE !define _FileAssociation_VERBOSE ${_VERBOSE} !verbose pop !macroend !macro RegisterExtensionCall _EXECUTABLE _EXTENSION _DESCRIPTION !verbose push !verbose ${_FileAssociation_VERBOSE} Push `${_DESCRIPTION}` Push `${_EXTENSION}` Push `${_EXECUTABLE}` ${CallArtificialFunction} RegisterExtension_ !verbose pop !macroend !macro UnRegisterExtensionCall _EXTENSION _DESCRIPTION !verbose push !verbose ${_FileAssociation_VERBOSE} Push `${_EXTENSION}` Push `${_DESCRIPTION}` ${CallArtificialFunction} UnRegisterExtension_ !verbose pop !macroend !define RegisterExtension `!insertmacro RegisterExtensionCall` !define un.RegisterExtension `!insertmacro RegisterExtensionCall` !macro RegisterExtension !macroend !macro un.RegisterExtension !macroend !macro RegisterExtension_ !verbose push !verbose ${_FileAssociation_VERBOSE} Exch $R2 ;exe Exch Exch $R1 ;ext Exch Exch 2 Exch $R0 ;desc Exch 2 Push $0 Push $1 ReadRegStr $1 HKCR $R1 "" ; read current file association StrCmp "$1" "" NoBackup ; is it empty StrCmp "$1" "$R0" NoBackup ; is it our own WriteRegStr HKCR $R1 "backup_val" "$1" ; backup current value NoBackup: WriteRegStr HKCR $R1 "" "$R0" ; set our file association ReadRegStr $0 HKCR $R0 "" StrCmp $0 "" 0 Skip WriteRegStr HKCR "$R0" "" "$R0" WriteRegStr HKCR "$R0\shell" "" "open" Skip: WriteRegStr HKCR "$R0\shell\open\command" "" '"$R2" "%1"' WriteRegStr HKCR "$R0\shell\edit" "" "Edit $R0" WriteRegStr HKCR "$R0\shell\edit\command" "" '"$R2" "%1"' Pop $1 Pop $0 Pop $R2 Pop $R1 Pop $R0 !verbose pop !macroend !define UnRegisterExtension `!insertmacro UnRegisterExtensionCall` !define un.UnRegisterExtension `!insertmacro UnRegisterExtensionCall` !macro UnRegisterExtension !macroend !macro un.UnRegisterExtension !macroend !macro UnRegisterExtension_ !verbose push !verbose ${_FileAssociation_VERBOSE} Exch $R1 ;desc Exch Exch $R0 ;ext Exch Push $0 Push $1 ReadRegStr $1 HKCR $R0 "" StrCmp $1 $R1 0 NoOwn ; only do this if we own it ReadRegStr $1 HKCR $R0 "backup_val" StrCmp $1 "" 0 Restore ; if backup="" then delete the whole key DeleteRegKey HKCR $R0 Goto NoOwn Restore: WriteRegStr HKCR $R0 "" $1 DeleteRegValue HKCR $R0 "backup_val" DeleteRegKey HKCR $R1 ;Delete key with association name settings NoOwn: Pop $1 Pop $0 Pop $R1 Pop $R0 !verbose pop !macroend !endif # !FileAssociation_INCLUDED lmms-1.0.0+bzr2569/data/CMakeLists.txt0000644000000000000000000000124612273201253015376 0ustar 00000000000000ADD_SUBDIRECTORY(backgrounds) ADD_SUBDIRECTORY(locale) ADD_SUBDIRECTORY(presets) ADD_SUBDIRECTORY(projects) ADD_SUBDIRECTORY(samples) ADD_SUBDIRECTORY(themes) IF(LMMS_BUILD_LINUX) INSTALL(FILES themes/default/icon.png DESTINATION "${DATA_DIR}/pixmaps" RENAME lmms.png) INSTALL(FILES lmms DESTINATION "${DATA_DIR}/menu") INSTALL(FILES lmms.desktop DESTINATION "${DATA_DIR}/applications") INSTALL(FILES lmms.xml DESTINATION "${DATA_DIR}/mime/packages") ENDIF(LMMS_BUILD_LINUX) IF(LMMS_BUILD_WIN32) FILE(GLOB RAWWAVES "${CMAKE_INSTALL_PREFIX}/share/stk/rawwaves/*.raw") INSTALL(FILES ${RAWWAVES} DESTINATION "${DATA_DIR}/stk/rawwaves") ENDIF(LMMS_BUILD_WIN32) lmms-1.0.0+bzr2569/data/application-x-lmms-project.svg0000644000000000000000000020341612274330634020553 0ustar 00000000000000 image/svg+xml mmpz mmpz mmpz lmms-1.0.0+bzr2569/data/backgrounds/0000755000000000000000000000000011065530735015145 5ustar 00000000000000lmms-1.0.0+bzr2569/data/lmms0000644000000000000000000000024312312171114013521 0ustar 00000000000000?package(lmms):needs="X11" section="Apps/Sound" \ title="LMMS" hints="Audio" command="/usr/bin/lmms" \ longtitle="LMMS" \ icon="/usr/share/pixmaps/lmms.png" lmms-1.0.0+bzr2569/data/lmms.desktop0000644000000000000000000000063412312577323015211 0ustar 00000000000000[Desktop Entry] Name=LMMS GenericName=music production suite GenericName[ca]=Programari de producció musical GenericName[de]=Software zur Musik-Produktion Comment=easy music production for everyone! Comment[ca]=Producció fàcil de música per a tothom! Icon=lmms Exec=env QT_X11_NO_NATIVE_MENUBAR=1 lmms Terminal=false Type=Application Categories=Qt;AudioVideo;Audio;Midi; MimeType=application/x-lmms-project; lmms-1.0.0+bzr2569/data/lmms.ico0000644000000000000000000041502612300463254014311 0ustar 00000000000000 (f`` @@ (B600 %^   h( @/6Z 6S6O 2I 3L 7O?V(N i-Q=P4N3J 2K 3O:T/Y.W=S1H *@(; &8(&8%);.C3OCZ>'MAY3L,@(:%8'&8'(<,B2KAXEEAX3L-B&8 / 3( F% P& M+ ="3))<0G 7S5Z *@ UC[3P.C'9!0/) B% O% O* A!1-(:,E7K@]$P$]@]7K,E(:!1 -+ > Yh r oc" O, 9#5$*>1H #5$, 8" O | rb# M, 8%7#*@1F 8R7e7T8R1F *@%7#, 7$ K 6G xkY' D!1 .':-D6N>Z$WEAW1J,A&8. 3) B 4E  z n]% H . 1&9,B4L:["0"0;]4J,B&8 . 2+ A _ c z!:W  wj W' A"1,(;-D 6L=c4?=c7L,C (;!1,+ > r):kmm pE7m#  } rb# M- 7%6#*?1I 8Q6bU4^ 7P/G )<#3(+ <_#W] V^{1x&o%7 ~ uf R* ;#5')>0E 5P:_%%:Y5P0E )>#4'+ :X^oll"n*t+]M@3Vy z n]% H / 2&9-B5K8Y"C5b9S1F *@$7#, 7$ L Gna WSN\A|5y,y$_ | qa# L- 6%7",A3I 7S6M$ 6M7S3I ,A$6"- 5& HKo rml!m&m,n1v.peWJ<0?Y wj X( B"2,(;-C 6N:`&5#09Z4L,B&8 . 2+ A 6Rb YTOLH[ME~<{2x){!Ko z m\& F 0 0'8-B1M?S#2TC?]0M-A'8 0 1+ @ 8Qqml m%m+n/m/m0v.pomaTF9z))9  ~ uf! R* <#4'*>0E 6O8[  -:W5M,C (:!1,+ = s%8^ ZUPLIHG[MJIC}9z0x'w6O  wi V( @!2+(<.E 6Q#4'+ ;YT^ VRMJHGHG[MJIJH@}7y.x%l 0 ~ te! Q+ :$5&*?1H 6\#L:S/H&9!- 8 U[pll"m'm-m/m.l.l.k-k.v/pooooohZL?3Qq z m\' F"2.+?3MC] !2:Y0H (</4& HDgb XSNKHGHHHG[MJJJIJF>|5y+z#[  | p_% J 0 2)<2L 2\5O)=$55 Gh rml!m'm,n/m/l.l.k-j,j,j-u.poooonondVI;.:Q wg% N#4-.E;WATCK 4P+@(<. 3Ma YUPLIGHHHHHG[MJJJJJJID~;{2x){!Fh yk" S"23,B9gR a3Komll$m*n/m/l.l.k-k-j,i,i+i,u.poooooonolaSE8v($1  zc, >)>9TJFUVi0A"2\ [ UQMIHGHHHHHHG[MJJJJJJIJIB}8z/w'u1I  }i) E(;  .fnml$m)m.m/m.l.k.k-j,i,i+h+h*g+v.pooooooooooj]OA5cl' E':4P71  Q|_ WRNJGGHHHHHHHHG[LJJJJJJJJIJG?|6y-y$i) q# N%6# Ux qml!m'n-m/m.l.l.k-j-j,i,h+h*g*f)f*v.pooooooooooongYL>4F\  l% G%82M82BZa XSOKHGHHHHHHHHHHG[MJJJJJJJJJJJJF={4y*{#Ty n! O#5$9Tiel$m,n/m/l.l.k-j,j,i,i+h+g*g*f)e(d)u.pooooooooooonomeKn|"% l% G%82M82,b ^SKIGHHHHHHHHHHHHG[MJJJJJJJJJJJJJID}9ip4Q n! O#5$7Qll%dem0l.k-k-j,i,i+h*g*g*f)e)d(b(a(u.pooooooooooooonx2}7M0# l% G%82M82)` STUHGHHHHHHHHHHHHG[MJJJJJJJJJJJJILq)n$>z,2M n! O#5$7Plk$m.j+bf k.i,i+h+h*g*f)f(e(c(b'`'^(u.poooooooooons@w/mfJ0# l% G%82M82)` TLHUSGHHHHHHHHHHHG[MJJJJJJJJJJILx5jCK>z,2M n! O#5$7Pkj#l-k-k.f#ag&h+g*f)f)e(d(b'a&_&^&\&u.poooooooonrTr(_pofJ0# l% G%82M82)` ULHHJWNGHHHHHHHHHG[LJJJJJJJJIKAjy7LIJ>z,2M n! O#5$6Pki#j,j,i+h+h,caf(e)c(b'a'`&^&]%[$Y%u.pooooooopes*KsnoofJ0# l% G%82M82(b UMIIIGNWJGHHHHHHHG[LJJJJJJJJIm"r*LIJJJ>z,2M n! O#5$6Oji"i+i+h+g*g)f)e(``a(_'^&]%\%Z$Y$V%u.poooooooz4}9rnoooofJ0# l% G%82M82(b UNJJIIIGSTHGHHHHHG[LJJJJJILs+m!HJJJJJJ>z,2M n! O#5$6Ojh!h*h*g*f)f)e(c'b'`#^^[&Z%Y$X#V#T$t.pooonsDu-jooooooofJ0# l% G%82M82'b UNJJJJIHHHUQFHHHHG[LJJJILz8j@KIJJJJJJ>z,2M n! O#5$6Nig!g)f)f)e(d(b'a'_&]%\&[\X V#U#T"Q#t.ponqXq'\qnooooooofJ0# l% G%82M82'b VOKKKJIJIIHKWMGHHG[LJJJDjw3LIJJJJJJJJ>z,2M n! O#5$5Mif f(e)d(c'a'`&^&]%[%Y$X#V$YZR!Q!O"t.poht,GsnooooooooofJ0# l% G%82M82'b VOLLKJKJJIIIGOVIGG[LJJn$q(LIJJJJJJJJJJ>z,2M n! O#5$5Mhed'c(b'`'_&]%\%Z$Y$W#U#T"R"R XUK"t.s|7{6qoooooooooooofJ0# l% G%82M82&b WPL L KLKKJJJIHIGSTG[Ot-l GJJJJJJJJJJJJJ>z,2M n! O#5$4Mgca'`'_&^&\%[%Y$X#V#U"S"Q!P!N M NVhv/goooooooooooooofJ0# l% G%82M82&c WPM L ML KKKKJIJIHHIU]m }>KIJJJJJJJJJJJJJ>z,2M n! O#5$4Lfa_&]%\%[%Z$X$W#U#T"R!P!O M LJKdlv-epooooooooooooofJ0# l% G%82M82%c XQM N M L LLLKJKJIJHJVY `~=KIJJJJJJJJJJJJJ>z,2M n! O#5$3Ld_\$[%Y$X#W#V#T"S"Q!P!N LKJXFxx2s}9z4ooooooooooooofJ0# l% G%82M82%c XQN NM M M M L KLKJKIUUHVF MjFJJJJJJJJJJJJJ>z,2M n! O#5$3Kc]Z$X$W#U#T"S!R!P!O M LIP{5ootx2poju-DsnooooooooofJ0# l% G%82M82%c XRO!N N NN M L M L KK RWLJIUGIHRr(KIJJJJJJJJJJ>z,2M n! O#5$2Kb[W#V#T"S"Q!P!O NLJLm$epnotx2ponq[q'XqnooooooofJ0# l% G%82M82%c YSO!O!O!O N M N ML PXPKKKJUI IHHIYy4LIJJJJJJJJ>z,2M n! O#5$2J`YU"T"R"P!O M LJK`Urnoootx2pooonsGt,hooooooofJ0# l% G%82M82$e YSP!P!P!O!N!O N NXTL!LLLKJVI IIIIHLb?KIJJJJJJ>z,2M n! O#5$1J_XR!Q!O!N L KJUBsnoooootx2pooooooq{6|7qooooofJ0# l% G%82M82#d ZTQ!Q!P!O!P O!VWN M M M M L KKVJ JJJIIIGOk HJJJJJJ>z,2M n! O#5$1J]UP O M KIOx1nooooooootx2poooooooogt+HsnoofJ0# l% G%82M82#d ZTQ"Q!P P"UYQO!O N NN M L ML WJKKJJJIHIHSs*LIJJJ>z,2M n! O#5$0I\TMLJLi!bpnooooooootx2poooooooonrWr']qofJ0# k& E'94N81#e ZVR"Q"SZTP!P P!O!O!O NM N M L WK!LKKKJIJIHHJ[{6LIJ>z,2M n! O#5$0I[RKK]Psnooooooooootx2poooooooooonsCv.kfJ0#d+ @)=9RGC"e [US!ZXQ#R!Q!Q P!P!P!O N!O NM M WL!L LLKJKJIIIIHLdBK>z,2M n! O#5$/IZPT>rnooooooooooootx2pooooooooooooooy4{5M0#$ R"21-C5WEj"f [ZZS!R"R"R"R"Q!Q!Q!P!O!P!O N!N M WM!M M L KLKJJJJIHIGOm"=z,2M n! O#5$.I[r$koooooooooooooootx2pooooooooooonomcMn{ #"23(>2J C]"g ^ WT"S"S!S"S"R"R"R"Q!P Q!P!O!O!O!N!XM!N M L ML KKKKJIJIHIHWq3N n! O#5$5E5Ynoooooooooooooootx2pooooooooooonfXJ=1~/F0G >[3j _[XVT"S!S"S"S"R"Q!R"Q!P P!P!P!O!WN!NM N M L LL LKJKJIJIHKT): n! O#5$5ErXnoooooooooooooootx2pooooooooooi[N@3%`nDc =^%?` Jqe^ZXU!T"T!S"R"S"R"Q"Q!Q!Q P!O!YN"N!O NM M M M L KLKJKJJIK\ *: n! O#5$;T9q#Dsnoooooooooooootx2poooooonol_RD6)r". !)M$Z b]YWU!S"T!S"S"R"R"R"Q!Q P!XO"P!O N N NN M L M L KLKKI QXV'C n! O#5$;S=ZZr'Yqnoooooooooootx2poooonomcUH:,}8L I*J"8,Bd `\YWT"S"S"S"S"R"Q!R"Q"XP"P!O!O!O!O N M N M L ML K OXOLU(B n! O#5$;S=XnsFu,ioooooooooootx2poooonfYK>0#Niv8O  R h?_f_[XV T"T!S"R"S"R"Q"YQ"P P!P!P!O!N!O NM N M MWSK KMU(B n! O#5$;S=Xnooq{6|7qoooooooootx2poooi\OA4&d- g!:aR} d^ZXU!T"T!S"R"R"YQ#Q!Q!Q!P!O!P!O N!O M VWM L L KNV(B n! O#5$;S=Xnoooogt+Isnooooootx2pol`RE7*u(5 )4?#!0_ a\YWU!S"T"R"YR#R"R"Q!P Q!P!O O"TYPN N M L M OV(B n! O#5$;S=XnoooonrWr']qnooootx2odVI;. =R S3H$L4Mf _\YVT!S"YR#S"R"Q!R"Q!P!RYSO!O!O NM N M OV(B n! O#5$:R=XnoooooonsBv.kooootv.\L?1$Tp ;X B| Gkg^[XV ZS#S"R"S"R"R!YWP!P P!P!O N!O NM PW'C n! O#5$:R=Xnooooooooooy3~;rojar#C5'iu-#0S X c^Z\U"T"T!R#XYR!Q"Q!Q!Q!P!O!P!O N!N PW(C n! O#5$:R=Xnooooooooonpds)EVIp,x-; 15N/)<c `` YWW[US"S!R"R"R"Q!P Q!P!O!O!O!QX(C n! O#5$:R=Xnooooooooooonp>n~*tCY  e+L_;[i__ [T"T"T!S"S"S"R"Q!R"Q!P Q!P!O!RX(C n! O#5$:Q=XnoooooooooooolS;d #6,,F.U ^~_ZU!U"T#T"T!S"R"S"R"Q"R!Q!Q P!RY(C n! O#5$:Q=XnoooooooooooolUrQg  X 0/,F6['Tm`ZV!U#U#U"T#S"T!S"S"R"R"R"Q!Q SY)C n! O#5$9Q=XnoooooooooonsFp 5Yz wZ 0/,F5[Sya ^ W V#V#U#T#U#T"T"S!S"S"R"Q!R"SY)C n! O#5$9P=Xnoooooooonq[q'WV8Yz wZ 0/,F5[Sxa[ZZV#U#V#U#T#T#T"T!S"R"S"R"TZ)C n! O#5$9P=Xnooooooooju-DslS9Yz wZ 0/,F5[Sxa[X"X"[ZV$U"U#U#U"T#S"T!S"R"UZ)C n! O#5$9P=Xnooooonr}9z4ooolS9Yz wZ 0/,F5[Txa\X"W#W$Y[XV#V"U#T#U"T"S"T"U[)C n! O#5$9P=XnooonsKs*epooolS9Yz wZ 0/,F5[Txb\Y"Y$X$W#W%Z[W"U#V#U#T#U#T"U[)C n! O#5$9P=Xnonp_r(TrnoooolS9Yz wZ 0/,F5[Txb\Z#Y#X$X$X$W$W$[ZV#U"V#U#T#V[*C n! O#5$9O=Xnolw/@snoooooolS9Yz wZ 0/,F5[Txb^Z#Y%Y$Y#Y$X$W$W$X![YU$V"U#W\)D n! O#5$8O=Wr=x1nooooooooolS9Yz wZ 0/,F5[Tyc^[#Z%Z$Z$Y$X#Y$X$W#W$Y\WV#X\)D n! O#5$8O??r(bpnooooooooolS9Yz wZ 0/,F5[Tyc_[#[%[%Z%Y%Z$Y$X$Y$X$X#W%Z[X])D n! O#5$6I n?rnooooooooooolS9Yz wZ 0/,F5[Tyc_\#\$[%Z%[%Z%Y%Z$Y#Y$X$X$W$W#\`*D n! O#5$1@AWnoooooooooooolS9Yz wZ 0/,F5[Tyc_]$\%[%\$[%Z%[%Z$Z%Y$Y#Y$X$W$Y!^+6 n! O#5%5H nCqnooooooooooolS9Yz wZ 0/,F5[Tyc`]$\&]&\%[$\%[%[%Z%Z$Z$Y$X#X$[a *? n! O#5$8O?;s*epnooooooooolS9Yz wZ 0/,F5[Tye`^$^&]&\%]&\%\$[%[%[%Z%Y%Z"\[^*D n! O#5$9P=Wq}:z3pooooooooolS9Yz wZ 0/,F5[Txda^$^&]&^&]&]%\%\%\$[%[%\\Y%[ _*D n! O#5$9P=Xnoju-CsnoooooolS9Yz wZ 0/,F5[Uyda_%^&_%^&^&]&]&]%\'\][#Z%Z%[!`*D n! O#5$9P=Xnonq[r'XqnoooolS9Yz wZ 0/,F5[Uxea_%`&_&_&^%^%^&] ]]\&[$[%[%[!`*D n! O#5$:Q=XnooonsGt,hoooolS9Yz wZ 0/,F5[Uyeba%`'`'_'_'_$^]^']%\%]&\%\%\!`*D n! O#5$:R=Xnooooooq{6|7qoolS9Yz wZ 0/+E-T@Uyeba%a'`&`'_^_'_%^&]&^&]&]%\%]!a+D n! O#5$:R=Xnooooooooht+HslS9Yz x^ 04-F8TAUyfca&a(__`$_'`&_'^&_%^&^&]&]&^"a+D n! O#5$;S=XnoooooooonqXq'ZU8Yz {f+ C&9#-E6J<`$\ ?7[Vzfcb"_aa'`&a'`'_'`'_&_&^%^&^&^"a+D n! O#5$;S=XnoooooooooonsAr#6Yz s[) @"4((</F 7P:h U&T9]7L.E " +Vzfb`c)b'a(b'a&`'a'`'`'_'_&_%^&^"b+D n! O#5$;S=XnoooooooooooomTqQi  tb# M, 7$5#*@1G :T2d6] 6P/E )<#4( IUpe dd&c(b(c(b'a'b'a&a'`'`'`&_'^&_"b+E n! O#5$ r%9fe fe abe*d(e(d'd(c(c(c(b'a(b'a&`'a#c+E n! O#5$W=Xnooooiu,Esnoooooosy2poneWJV 4P/D ';!1++ =m#4djgg"h(g+h+h+bg+f*g*g*g)g*f)e)e&`be*d)d(d'd(c(b$e,E n! O#5$>WW=XnsJt*fpoooooooooosx2pooonoj^PC7Su z n]% H. 2&8-C4J9Y!?!(L;Y3J*@%6!- 5' FEi nii h&h*h,i+i+i+h+h+bh,h+h*g)g*f*g*g*f*g)f(f*bae'e)e(d$f,Ek& K&8">XW2)*OA[3M+?%7 . 4( D A[pjj!j'k,j-k-k-k-k-j-j,i-j,j+i,j,i,bi-i+i*i+h+g+h+h*h*h*g)g*g(g$fghnHhڈ64S9T"l-;HVcmonooooooosx2qooooooooooooooiSo{,|$:O wj W( A"2 +(;-C 5N=[ B l /Djhc i"l+l.k.l.k.j-k,k-k-k-j-i-j,j,j,j,ci-h+i,i+h*i+h+g+h+h+g*h%g ghlZ 7M/o/.? z"1>LZgnooooooosx2qooooooooooooopz6}8fW}23x+%5  ~ td! R+ ;#4&)>1H 5N:Q$@,6\ 8N/F (<"2), <c+bjgk$l,ecl.l.l.k.l-k.j-k,k-j-k-j-i-j,j,cj-i,h,i+i,i+h*h+h*g(g"ghjg &5 -4J ZC[(4BO]joooooosy2qoooooooooonsFu,ioolBFE9f# | p`# K- 5%6!+@2J9V5@#.W=S0H +>$5$, 8" N S~okigl.l/m/l-cel/k-l.l.k.k-k-k,k-j-j-j,j-cj-i,j,i,h,i,i+h)g#ghio9PW2R% Yy,8FSalonoosx2qoooooooonqZq'ZqnoooKY]PB6No z m[& F 00'9.A2N?X2bDAX2K,A&8. 3* B ?` pkk"l)j&h"m.l/m/l.m/j(bh%l/k-l.l.k.j-k,k-k-k-k-cj.j,j+i+i,i+h&g hioKl  y,Blll l&m-n0k(h"n/m.l/m/m/l.m0g bk+l.l.k.l-k.j-k,k-k-ck.i-j,j+i'h"iil] y+.,0/? z#2?MZhosy2qooooonq|8z5pooooooooK]nomdVI;u* -  } sd! P+ :#5%*?3H 7R8R.H )<#3(, <^%anl l&m,n/o0n0k(h"n/m0n/m.l/m/m/m/m0edl.l.l.k.k-k.j-k-ck.k-i*h$hijj )9 34O[D\)5CP^ox2qooonsJs*fpoooooooooK]oonol`SE9a"  { p_% J/ 4&7"+@*?%5$- 7$ K Oxqlm$m*n/o1o1o0o/k(h"n0n0n/m/m/m.l/m/m/m/l,cfl/k-l.l.k.k.ck,i&i ijo02G vk_ |(<jmm!n'o.p1p2p1p0p1o1o1n1k)i#n0o/n0m0n0n/n0n/m.l/m/m/l.m0gbk+k*j$ejl` #9H1/@ |&qCy,s'hoooooooooooooooL\ooooooonomcVH :1b\>Pr0EQ_lonoooooooooooM[ooooooooonok`RE9\ Ksrnn&p,q1q3q2q1q2p2p2p2o1p1p1o0l(j$n1o0o1o0o/n0n0n0n0n0m/m/m/l-k(k"kjm>Qf1S  U Z|-:HUcmonoooooooooM[oooooooooooooi\OB1:I5Dpnn$o*q0r3q2r3q2p3q2q1q2q2p2p2p2p1l(j$o1o1n1o0o0o0o/n0m0n/n0m/m)k$kkpSw OjJm#W%o0>KYfnoooooooooM[oooooooooooooooiu)v(Apohfr0r4r3q2r3r3q3r3q3p2q2q1q2q2p2o1l)j$p0p1o1o1o1o1o0n0o0n/l,l%k kmc ( ~D32D }&4AO\iooooooooMZoooooooooooonsFt,fdXkp(q.r1ej!s5r4q3r2r3r3q3q3q3p2q1q2p2q2l(j%p2p1p0p1o1n1o1o1m-m(l"klm1DB*O/aIc+7ER`lonooooNZoooooooooonq[q'Yqnoom!r3s4r3s5o+dn*s5r3q3r2r3r3r3q2q3q2q1q2m(k%p2o2p1p1o0p1o/m*l$llrC`o/P ,@ _.;IVdnonooNZooooooooooju-Dsnooorn$s5s4s4s4r3t5k#eq1r4r3q2r3r3r3r3q2p2q2l(k%q2p2p2p2o0n+m%llpW} (> _;!,r!1?LZgoooNYooooooonr}9z4ooooooorn$s5s4s4s4s4s4s4s4ggs4r4r3r2r3r3q3r3q3l)k%q2p2q1o.m'm"lmg!. #'L=7K '5BP]joNYooooonsKs*epoooooooro%s5s4s4s4s4s4s4s4s4q1ek#t5r4q3r2r3r3r3m)k&q2p/n)m#mmo5KL)L:kMj,8FSaMYnoonp_r'Trnooooooooro%s5s4s4s4s4s4s4s4s4r3s5n*do,s5r3q3r2r2m)l%p,n&nmsHg y7Q Sd/[k>x1noooooooooooooro%s5s4s4s4s4s4s4s4s4s4s4s4s4s4s4fhr1o*kjnj%5 ,4?$Hg'U "m1>LYgnoooro&s5s4s4r4r3r/p)o#noc%MG//A |%4BO]joorp's5r3s4r1q+o$non.A>*Q]F`+7ESalrp's5r2q,o&nnsB^k/P ,@ \/;IVhp&q/p'n!nrV{ 4PPt l)q!2?Omp$nof+ !)O:4H ~'7lop3HI*LhKhtGf t9N  R&e!#nP!#_?_???_???/????(` 4 A4R2J /E/F5K1P  68(S#[*X8L0G /E/H 5O*H2)O*X N7S4K*="3*- ;. 7$5#,B8R8^/@8,?5T0F ':!02- < 01&9/G 8Q)D &&h$F-M9S0F )<'9* lBa Lg"| t`% D"2)+?3N=W> -F 6Q-B(;* < 1Ki:X  x mV* :%6 -C6P,L 6:[3I*>#5(" J>[ fn~1}4Nm | pY* =$6"-C5P7`)I C8T0G (9#3/eKuX^z-i(< yi O. 2(;0G 6TI/F&F,K3M+@%7"# D ,epm#n*HTCx,%4  yj Q, 5&9/D 5R0O+> $6+6X 1F)>!1+S 1L^ VNYB|4}(Z vc$ G!1 +)=2H6P 4-Q 5Q.B (< 03 ~)Nvqm"m)n.n/QmaO>^"#1  ve# J 0 .)<2J 7P3[,g/:T3M+?)<"" G(?P \QLGXMF<}0s#Cg y q\( ?#4%+A6N<^ 41S2J (<$5+Y Nt imm'm.m/l.m.Qonk\J7\ } s^' C"4'+A6P-S#P+ @!u6Q/D %7 / 6 %P XSMHHFXLJIE~9z-m:X  { m U+ 8%8/E 5U/O 5O (;  L*>knm%m,m0l.l.j-k,QonoohWE37N  } nW- 8*?7S849X/G!1.] @daUNJHGHFXLJIJIA}6}*g' xf$ L"3+.E(;&8Xsm#m*n.m/l.k-j-i,j+PoonoomcSBj(/B v^!211J GS 4 1LV YPKHGGHHFXLJJIJJG?}3z&Oy&} q$ O':.Ykm!m(n.m/m.k-k-i,i+h+h*Poooooonl`N;g$ o* =-C;Cu(<T XRLHHGHHHHFXLJJJIJJIF<{0r"Mt_"2(6Jomm&m-m0l.l-j-j,i,h*g*g)g)Qoooooooooj[I3CY  z' @+@8AS No_SNIGHHHHHHHFXLJJJJJJIJJC}8z+m&\ 0 * Wihl+m/l.k-j,i,i+g*g*f)d(d'QooooooonnqjE~4t%  z' A+A8AN%d VQHGGHHHHHHHFXLJJJJJJJJJL|;u,z(@d] 0 * Tl"k+f f k.i,i+h+g*f)e)b(a'a'QoooooooosN>cOt)  z' A+A8AN"a PKSLGHHHHHHHFXLJJJJJJIJJs,{9E7>b] 0 * Tk"k-k.g&cg&g)f)e(c'a'_&]%_&Qoooooond?YslOt)  z' A+A8AM"a PIHPPIHGHHHHFXLJJJIIJH~>p'DKH7>b] 0 * Sj!j,i,h,g*dcc"b(`&^&\%Z$[%QoonnqaLNipolOt)  z' A+A8AM!b QJIHKPOIGHHHFXLJJIJL{9w2{9LJIH7>b] 0 * Rh i*h*g*f)d(b&`^\&[%X$V#X$QonosFJgoonolOt)  z' A+A8AL!b RKJIIHJRNFGHFXLJIJDp&}=HJIIJH7>b] 0 * R~hg)f)d(c'`'_&]&["[XU"S"U"Ppm_|6arooooolOt)  z' A+A8AL!b RLKKJIIHMRJHFXLJF{:s,JJIJJJJH7>b] 0 * Q~ge)c(a'_&]&[%Z$X$V$VWSR"TXLRppnooooolOt)  z' A+A8AL b SLLKKJJIIJOOIWLy6w3}b] 0 * Q}eb'`'^&\%Z$X$V#T"R"Q!OPVt+XjooooooooolOt)  z' A+A8AK c TNL LKKJJIIHJN[t+@IJIIJJJJJJH7>b] 0 * O| b_&]%Z$Y$W#T#S!Q!O MKQo)u-WioonoooooolOt)  z' A+A8AKcTNNM MLLKKJJJPW`}?IJIIJJJJJJH7>b] 0 * N{ `[$Y$W#U#S"Q!O!M INn2XmSYKQopnooooolOt)  z' A+A8AJdUO N NMM L LKLPQKTFOh(=LJJJJJJJH7>b] 0 * Mz ]X#V#T"R"P!N K Hb[mogPpm_|8_rooooolOt)  z' A+A8AJcUP O N N MM L QTMJJTIIIQo(JJIJJJJH7>b] 0 * Lz [U"S"P!O LKW?ponogPonotHIgoonolOt)  z' A+A8AIeVQ P P O!O PVRL!L LJTJJIHHZz:HJJIJH7>b] 0 * Jy XQ O!M!ITv:`soooogPooonqbLNhpolOt)  z' A+A8AHeWQ!Q!P!RTTON MML K UJJJIIGLb#{9LJIH7>b] 0 * Iy WMJ Jj(`nonnooogPoooooone@WslOt)  y( ?,A8@HeXS!Q"VUQO!O!N N NM L UK KKJJIIHNf EKH7>b] 0 * Hx TL\NtonoooooogPoooooooosP>cOt) q. 70FENGfXTXTQ"Q!Q!P P!O!O!N M UL L LKKKJIIHTu4E7>b] 0 * Er^}AhqnoooooooogPooooooonnqjE5p# S&9#5N%;Gg [XS"S"R!R"Q!Q!P P!P O N!VM M M LLKJJJIGI\v'?a] 0 *Z~MoonooooooooogPoooooooooiYH2n ! ,/F 7U Hk ^XV!T"S"R!R"R"Q!Q P O!O!VN!NMM L LKKJJIHIU3M] 0 * WvGkooooooooooogPoooooonl_M;{(Ur " 7\. Ny _\XT!T!S"S!R"R"Q!Q!P!WO!O!O NMML LLKJIKW2I] 0 * d(>KWqonooooooogPoonoomcR?-Xx*M,F_$6N} b[VT!S"S!R!R"Q!Q"WP!P O!N N NM M L KKPQW/T] 0 * c'TlX|8jqnoooooogPonoofWD2q +T 0 p *@c^YV T"S"S!R"Q"XQ!P P!O!O N NML OTMLT0S] 0 * c'Sopp=QioonooogPonj[I7w$G`]&P Hn _]XU!T!S"R"XQ"Q!Q!P P P!O!OUTL M LU0T] 0 * c'Soooq\LPmpnongQl`N<)Kg5M*Ir d\XT!S#XR"R"R"Q!Q!P TTPM!NMMU0T] 0 * c'Sooooolb~;bqnogGS@/c6 S/ V-\ `ZVYS"S!R!R"UWQP O!O N N NV0T] 0 * c'SooooonoqDFihS}04p 4E y$F@b]]\U!T!T XUQ"Q!Q!Q!P!P O!OW0T] 0 * c'SoooooonoreD63oAW i);8 Bg e \ZXT!S"S!R"R"Q!Q P P O X0T] 0 * b'Soooooooono`;[y C(B H:` ]V!T#T"S"S"R!R"Q!Q!P Q X0T] 0 * b'Sooooooonoo[{&BV ["2)1P Wu_W U#U"U#T"S"S!R"R"R"Q Y1T] 0 * b'SoooooooqhKB8Id_"2)1P ##V `ZWU#U#U#T"T"S!S!R!R!Z1U] 0 * b'SoooonoqOCh`>Ic_"2)1P  V `Y YZW"U#U"T#T"S"S!S!Z1U ] 0 * b'Soonomg>Uqna=Ic_"2)1P  V `Y"W$X"ZXV"V#U#U#T"T![2U ] 0 * b'SoorcJLlqona=Ic_"2)1P  W `Z"Y#X$W%YYXV#U#U#T"[2U ] 0 * b'Sop@Ijoonona=Ic_"2)1P  W a["Y$Y$X#X$X#YZWU#U"\3U ] 0 * b'Q`~;eqnnooona=Ic_"2)1P  W a\"Z%Z%Z$Y$Y#X$W$ZXV!]3U ] 0 * [9Qoonooooona=Ic_"2)1P  X b\"[%[%Z%Z$Y$Y$X#W%XY_3T] 0 *\Qponoooooona=Ic_"2)1P  X c^#\%[$[$Z%Z%Y$Y$X#X$X#_4I] 0 * Vt:ioonooooona=Ic_"2)1P  X c^#]&]&\%[%[$[%Z%Z$Y#Y `4M] 0 * c)HKMkqnnooona=Ic_"2)1P  X d^#^&]&]&\&\%[$[%[!\[`3V ] 0 * b'Tne=Psoooona=Ic_"2)1P  X d`$^&^%]&]%\&\'\\["Z$a4U ] 0 * b'SoosVAdnonna=Ic_"2)1P  Y e`$_'_&_&^%^!^]!\&\%[$a4V ] 0 * b'SoonqhNMbqna=Ic_"2*0P  Y ea$`'`(_ ^^^&]&]&\&\%b4V ] 0 * c'SooonoogHIta=Icb"3-3O &J*Y!Y fa%a&___%_'_&^%]&]%\%b4V ] 0 * c'Sooooooor^|7S3L6P,m :]6Q.B&8!Y{fbc)b(b(a'a&`&`'_'_&_&d4V ] 0 * c'Soooooooonnb#5#,B7O3] *Y3O6R/F &9!1 0 pX| gd&c'c(c'b'a'a'`&`'`'_&d5V ] 0 * d'SoooooonnolSu&v*&3 zk S, 7%6.C 5S/X6 &6R1G )< / -T 7Lged%e)d(d(c'c'b(b'a&a&a&e5V ] 0 * d'SooooonorWKReP.b'(8  vf" L / 0';0H 6R4h0@5U5O*>';"! I-E[gg#d"ccd(d(d(c'c(b(b'b'a&e5V ] 0 * d'Soooonpm>XjoofEQ<_# } u`& E!2**?4L:[ *Y$;"9X6O.E%7 !14 .[gg"bg*g*e(e%bd$e*d(d'c(c(b(a'g5V ] 0 * d'SooookX|9ipnoohQk]K9@[  ~ pZ( >#4#+A5M1W 1 9"G+F8M-E (;+ 4c Gn mhh&h*cg*f)g*f*f*bbe'e)d(d(c'c'g 5W ] 0 * e'SoprRJWsonooogPpngXGq/6L x k R, 7&7.E 7S3W  0;V8U1I )<%7([ 8V dkh%h)g+h,ch+g)f*g*g)f*e&ccd&d)d(c'g 6W ] 0 * e(Sqb}8_lonnoooogPoooneTAo+"/ | xf" L/ 0(;2I 8V (@.7Z 6N*@$6%, ;0Hbii#h*i+i+h*h,ch,g*g)f*f*g*g)f)e'bce)d(h 7W Y#4 ( e(PPCoonooooooogPooonom`O>Tx  t`% E!2))=3J5S5T $=\$H7N-B&9' = wWlh"i(j,i,i+i,h+i,ch,g+g+h*g*g)f*g*g*f)d!bd&i 7W ) G'9 `|0LnoonooooooogPoooooooj]K6C`  { pY( =$5#+B5N2O 1$<4Y8U/F );$5, pCh kk j'j+j-i,j,j+i,i,i,di+h*h*g+h*h*g)f*f)g*f*e%cj9V /E!0E7J +>OamoooooooogQooooonoonhXF|44E } z l R, 6&8/G 7S&?$F'`/>[3L)=$4*" I=Wgkk&k,j,k,j-j-i-i,j+j,i-ci,i+h*h+g+g+g*g)g*f(f"gjb 7P^0BUfmoonooogPooooooonnomYx-2c  wf" J 0 .(;0G 9T'H$/ Ai 0Z 3M,@$5#$ D !/djfj(l.l.l.k-j,j,k-j-j-i,j-di-i,h,i+i*h+g+g*h%gidA] 4 U%2 ^6HZhoonoogPoooooooor^KOi^::Qu { s_% C"3(*>4L1S3: 7Y4R/C )< 0 3 .Nzmhl+k*h"g!k+l.k-k-k-j,k,k,j-j.dj-i,i+h,i+i*g'g!jkCa7 [&6 w&:L^loongQooooonopENioojMZJ6Ih | pX) <$6".B5R5N .=U0H ';"3-_ Luhm"l&h"m/m/m.k+fh$l/l.k.k-j-j,j-k.dj-j+j,i,h)h#hoX 7o/Nlz,?QcmogPooonola}9`qnoojQmgWF|1'7  zj P- 4&9/F 9Q-K3T3H)?"3) M/Hnn m'm.l,h"n0m/m/l/m0i$ej*k-l.l.k.j-k.ek.j-i*h%iia/C|$F7"Pp1DVfgQonosYJQqpnooojQlomcSA^%#2 | ud$ I 0 -*=1I ,A(;!' >'<Ypm&n-o0o0m,h#n0n0n/m.l.m/m.h"g!i'l/l.k-k.ek-j'i le8R  $;5!h 7HTNopk}9UkoonoooojQloonl`N:Z! } s^( D!14#45 v Zjm%o-o0o0n1o1m,i#o0m/m0m/m/m.l/m/l,h"fl.l.l/ej#jqKm " 0|7Lt'7:^Y=lpnooooooojQloooooj[J77O | p u >_ pn"o*p1p2o1p1p1o1m-i#o0o0n/m0m0n0m/m.l.m/k)di'k&gk[ )R2@Xp}+=gnoonoooooojQlooonoongWFl,/C2L dr"o*p0q2q2q1p2o2o1p1n,i$o1o0o0n/n0m/n/n/m/l/m.l)gn[| /Cw(M Vw4EWgoonoooookQlooooonoondRAg"#-bn o(p/q2q3q3p2p1p2p1p2o1n-j$p1n1n1o0n/n/m/n0n/l*k"lo9Q  j L"-l"7J]knoooookQlooooooonooe~9~4,qil!q1r4r3q3r3r3q3p2p2q1p2n-j$p1p0o0o1n1o0n/m-k%ljV~  +)S t6Jo&>OaloonokQloooooooqhKLgk@p+r2o-l%l&r2r4q2r2r2q3q2p2q2n-j%p2o1p1p1o1n.m(l rU$3`5O B\/BSdnookQloooonoqOChnooKr1s4s4r3p.hp-s5q3q2r3q3q3p2o-k%q2p2o2p1n*m"ni(9l @&d4FXhnkQloonomg>UqnnooKr1s4s4s4s4s5j"j!q1r4r3q2q2q3o.k%q2q1o-m%mhLm  A(6 \)9 d":L^gQlnorbKLlqoooooKr1s4s4s4r3r3s5q0k$l$q1s4r3r3o.k&p/n(oqLp &Hi.@ |*>MGkop@IjoonoooooLr2s4s4s4s4s4r3s4r3q1j!l's4r4o,kn#qc(I @ Wx|.~0QZ~;eqnnoooooooKr2s4s4s4s4s4s4s4s4r3s4n(io+m!kf#1[ %[ Q@??????(@ 7Y 1K,@-A5O$H8(T4d5M+A,A2N6O*P'%H7Q*= /5\Y. 1,A6S M@#O:U*?!03Y[+ 6*?9SI 15S+B&8*  s P"3'0F 3N6V.B(;%   tU!1+.D 7W5M/F )<! oFi st0%| l% E&83L3U )I9^ 2H )<b7Va p" 1 o# J$6!3K 7YG0R4M(< O2Jom%p+dF\!  xc* ;*=5O9c $6+F5O)<# E&:Z QQE~0\ yg( >(;5O"?5Q)=, 7-fn"m,m/o-slY>D_ vY //,B5Q5+ @5P*>"20!R UKHOMI=},Fl w]- 3+@4S4O6PVpm*m/l.j-n+rnoiR5,>  q$ K*?8W5P:V } DmZMHGHPMIJG~8x&1I  s" P)=1Ab rm'm/m.k-i,i+m*rooooeKn* s 1.AU %3P]PIGHHHPMJJJJD}3k) x- 4km%m-l/l-j,i,g*g)k)rooooona68L - 29O `RJGHHHHHPMJJJJJJAz'Cb ) 8%p!h#h$k.i+h+g*e(b(i(rooooofKPOp- 29O ]ONGHHHHHPMJJJJJGw2}KIJJJJEY) 8#f]%Z%W#T#R!O JZ |:PapnooooYOp- 29O aONMLKKIPS[!@KIJJJJEY) 8#cX#U#R"O K PGsPt]KlooooYOp- 29O aQO N ML PRJPHHg'GJJJJEY) 8#_S"P!M Jt8mooPrnsRNrnoYOp- 29O cRP O!PTNL LPJIHMq/LIJEY) 8"\N Ie)cpnooProonpLXrYOp- 2:P cS Q!URO!N NM RKKJIGTz8LEY) 8"XWSrnooooProoooofKOOp $5'C] dWVQ#Q!P P!O!N RL LKKJIG^ =Y) 8 |/rnooooooProoooon_6Ke f0H #4 j WT"S"R!R"Q!P O!SN!MM LKJJHJKw) 8$聹3goooooooProooocI.=S "L[R ^VT"S!R"Q!Q!TO!O NM L LKIOCn ) 8&NYKpnooooPrnohQ6Ut F!2^[U S"S!R"UP!P!O!N NL ORLAx ) 8&KorNRsnooPrlX=l s4OcXU!S"VQ"Q!P P!PTOM MBx ) 8&KooolJ^poPcD|(,; / 0F Gp bWWS"R!R"USO!O N NBx ) 8&Kooonp`J`92B[%$Fv"X _V VWR"Q!Q!P!O!OBx ) 8&Kooooonr7Yv a *:a WT"S"S"R"Q!P Q Cx ) 8%Kooooooh/$0c%8"=^ YU#U#T"S!R"R"R Cy ) 8%KooonpLWI'4 f%8"=^ ZYW!U#T#T"S!S!Dz) 8%KonrSMrnG'4 f%8"=^ [X$YYV#U"T"T!Dy) 8%Kq^KkoooG'4 f%8"=_ [Y$X#W%YXU#V"Ez) 8%HK`pnoooG'4 f%8"=_ ]Z%Z$Y$X$W#YXF{) 8a a"_'_'^!^]%\%[#H|) 8&KoonrNSsF'4 g&: -R*Ya a"a%__"_&^%]%\$H|) 8&KooooolJ;'5 r+ ?*?8VJ ' FS}bba a(a&`'_&^&^$I|) 8'KooooonpA ) uU!1+-D6V15Q+@'9(a d#c'c'b'a'`&`'_%I}) 8'Koooonq[;p'%3  o" J$5"1J :c 5N/G );! oB^gce*d(c'b(b'a&`%J|) 8'KoooogJcpJPg) yg' @&94P.Q*Y$<4U4M(<O0Hidg*f(cd#d)d'c(b(b&K|) 8(KonpLWrnoQq`FPq w_, 5+?7V J 99V7O)=, 7-ah!h)e g+g*f*e%cd&d(c'c&K~) 8(KsSNrnoooProlZ>8P tU!1+.D7U87T,A'9(Skh(i+h*e h+g)f*g*g*d!ce)d&L}, 6) ?JkooooooPronoiSz4#1  o" J$5"2I ;Y:[1G )< i@c ni'j,i+i,h+e h,g+h*g)f*g*f*ccL%7$|(KdooooooProooooeMg* yg( ?':5P(D$F'a2T5N)< J-Dkj%j,k-j-i,j+i,e!i,h*h+g+g*g*f(f l:Pv3L$D^6RionooProooonpaA8Ll w]- 4+?8S60 J7T*> 0 3)`jgl/l-k-j,k-j-i,f!i-h,i+h+g*g$j]  vM \>YlonProooomJ]q[Q=6M tS"1*/E 4R6R-C);%  Qp!h m/m/h!h%l/k.k-j,j-f"j-j+i,h'hi(9& 0w%q&E`nPronrORrno]giRx2, ~ m$ H%7 4L7X1I (=b>_ pm)n0i$n0m/m/l,g!j)l.k.j-g"k.i*h n;U&$F0A 0LIrqYKpnooo]fooeLb'  xe) =%8'$ E*@kn'o/n1o1j$n0m0m/m.m/j(g k-l.g"j%nOt Q$E`~(NHgoooooo]eooon_EIi u#`o%p/p2o1p1o1j%o1n/m0n0m/m.m0h#gja$}M WwB[monooo^eooonolX=.? O{s#p.q3q2p1p2p2p2j%o1n1o0n/m0n0l+k l*6  y's(Gaoooo^eoooooohFKql!m&s5q3r3q3p2q1q2j%p1o0o1o1n.k$p?\-*T 2E 2Ngoo^dooonpLWrsn)s4r3k$o,r4q2r3q3q2k&p2o1o0m(pT| Y)If;Vk_donrSMrnoso*s4s4s4p.k$q1r3q2r3k&q2o,nd))Vb BNcp^Jkooooso+s4s4s4r3s5n)l%s4r4l#n$o0E  A!-r#?D`pnooooso*s4s4s4s4s4r3s5k$l pEe 6$<2A7Phonooosp+s4s4s4s4s4r3p+qYc3On`6R=_"2E 4WWQDt**B   |N!2 -D9Y ' 3M Zp(m/k,hn_s99RvI#42N70OMPGNMH=^!,C  l# @':>.\l%n.l.j-i)goolYq2,  K.Bg(=QNIGGNLJIG{7_' 9-qm,l/k-h+g*f'gonophA4G e,? 4NWJGGHGNLJIJJBu&&7H(>o%h'h&h)e)b'a%gnoo]^YGcd,? 8_OLKGGGNLIJI~>~?|=1OG'<n%h+e(b _#Z%[#fpdSko_Ead,? 9_OIJNIFNLK~?{:HJ~@0LG&;k#d(`'\'YWV c[^pnp_Ead,? 8^PKJHMKOI|:DKIJ~@0LG%:g!]&Z$V#Q"L_ Geroop_Ead,? 9_QM LKIKRp.HKIJJ~@0LG$:aW#S"M N~F\h[]pnp_Ead,?  9_SN NL OMOL]%CKIJ~@0LG#9[O P h1hq_kpdTko_Ead,? :^UQ!PSNL PJHJn0GJ~@0LG"8Ue1Tpoo_knop]_XFc_0D:` XSSP!O!N QLKJGV!q5~>1NG&8Ikoono_konopgAC\9@_Llonno^joojPKn  Dnp&p0p2p1o/l+o0n/n/m/l.i cJn  ,BF,:['Phpoo^joooq^s5@`bt-r4q3q2p2o0m+o1n0n0n,m Hp$/? F): z3Xmp_ioopV\ow3r2o+o,r4q3q2p0n,p2o0q%[( CKi?b^jmhSlprx6s4s4p/m(q0q2q1n+p+d9T/"/Qt *<fWKKGJMG~>Gp2nCnc)^&X#S{A]png-> *<eXKILMBCJJo2n@l Y%T"Kr>T]ong-> *<e[N L NOZ%BJJo2n=j Lc.dr_q^`i,> )<d\QRM OJHd,Ho2nAjWrnp_onpN1C DdgcS Q!P QM KJK^!nU{$^pnp_pi>8N-+A /NW R"SO!N L MInX*s]ar^NJgZ,.HYVR"RRNInX)qomV[)E\;\[T Q!Q!KnX)qofO;Z 9\V T#S"MnX*n]h^!/G @]Y#XV!NnTz#dpo^!/G @_[%Z$X!QnT{$^no^!/G @`]&\&[ RnX)s`^`!1L ,L@b_$^!]&SnX*qnpO" E/G 1IBXdb&a'_&VnX*qpc[n3' w( 2<[5P [!0Fpf"d$d(b'WnX*l]jq`d],  b / #]5N\*s9\ k#g&g*f)e#d&YnMn\qnp_ooZGhQ':)E7J,Ddk,i,g&h+h*g*f%XI0_ [[LmV`k]ipajr:$t) 0(=Gus+l+n0m/j(j*i)n'Ly)KZ Uqnp`opc[, 9[q(p2p1m+o1n/m0m)[&6,C+; v8hq`oof^Bp-p.r4q2n,p2o0j5N64>W݋J^m\goNs4r3o,p0o-t(Cg dbLjLqooNs4r3s5s*Qz"1U "e,cpOs4s1c*=' 0B{8N  m5_???(  )9 xF2L'Qi,B*GQ}=R/E " 7j JB?kCYg)q9mf +wAw JGLGJ}QQ r9hn#.tA}K Lz-/ƾwg|y\nW{;hLP H@ bAD3mƺCcQc!v&;eB{[\ޚśW<.xZ;pV[,@,5dR% 0r|_0ҍ Ƚ-rVσ? yB\MeﺩgtZE~i_Ԁ ŰC bCD 6c]:@]н.:}Tp 80a fL S`zُY%酀J (%! ] ,4ֻb\:ctM4n !Amx ]lpK0(m5@J(%!Mw4֘TG?w<4M~f0SgS(18' y6w* nӼ}++vFEZ_\a oxҍe~wrPn Mcu 8E~#a/swDA U+__w/_Z9>@&(P 2DD}cӎ5oZO]#^tMO M= S|M;%?C-Lo#]Ycs;4աa BD +2\5؂.y~MK5}={P^L-!wB@8lXMa_ڊ{p/x]O&.UB@P("{FJb?)о;~@cV n"i\ ,Щ>L8t67A._Y3KTbB1,E"ƫ 'مI;&@` }\ Ȉ\Oq}64eziܥtSeu#(C %>i;)@!pbݷo"%~_c?&~;o0H"vpڃk!BLot&*Fb1\B( E?CD6e?gbqbG#: ~ :s?0<0},o!I $jir:fD7J!m|l݂h"D( E?ADŐK7V/+@7 t;LeZ1?(Hc ?fi3D?uJ+Q'9`>ub6țFEGunP(%> s#UȽmtCs,1Fvy~g@3 x?]f$n)xdsJIŁIێ"FLO4؂KBџ(P!Dt 03@@wuMF;~|1ƀYٛ>D[aa 7v"@$p-WϰõP)ભB10(PD4 ܔikx% kȮDS!G{a7~$cm|bmc*-P9J(WA.K@O7V+Ek\5K5^Sck]bϒBm/H!4OA$D4s}s\Za] Ǫg3^rYfE5ؠB(P"o(J;m x{%\m$~sD^1b].cZ~B <ՍD(7bGP\k Myq#DsF0i_KNYܢ + E!x+plߛ1(KR$tG6 |> UOR`u w#\JUKB(} EF>we:o.y~O߾Ws u?x-N?^p8eQХpUBkl>oZ0 #O+} E(> n@"z~bwߍMo.?UXڮ z*btH V8e}sjڌS!FϹ _s/wA(} E76@kܲϝ7sޮ}`iSO|gL vf箁"E}S)l @#lI~QO49](W E h%MLcf!.ϳ zоנ=29~%[yQ:gKJ(aP@p@DJ͛+.cg>i #Xol D<߀г:p&d6>{ê>@% Dy_K7}Ƚw5r-yͯytEk+ ?!T81%9pUlbCD! ij Kw5p=fgj߫8[CH_йo@²p@ #i6ͤk]0@X(١bBD!_ig4<q}o̓!zGx]6PvYl J(F DW 'X %za{%{1 _p<B6g|뤱@%#"* L6%{zWO϶}ov6E4b"0}M[5 $h%RImO\mOVe W NŠю鐋7q!wr#C,mz}o_2@k+,X5T¤M(>YTVPhdnȿ \Emz}o_ [xCC v8E[v7v". jfN5sO e;(4;2u'mz';ۦwL>04@pu /|s̓!ڭy*nQÊфa @+tc޿kM|zj;p{*b rB^0_,w.e}@7B@pE Űd(M;e x Y J;(`aI[[@xD~=l:H~Zc6M(F2J(D ҦwqޕsQZJriߛM KpŽ@>5}w/`Z'C8\WW<@m{i;l+\ՈЯ?dm}{WTRÊ!  -z?n,#5Y[}oV6о/ wbX$#> LSOY4J(2J(,Dv!p2~r\(Чa B2ͦt9s+T}bbADK zo{LA<6{ɦwG_On0LMmSx de;B_L$s_*[WP gP  <)5b?{e;%#EĸRx*aATpg7:x6dǽPÊA> Ʋ9wF 2ށ"3#HȪpm 'ˍbƞ}˘W^vX(J(" v c y\ #כullzZ޾$3߰ Yv'm[pލȫہP$lо[pՔBO$VSj/T}b(bP ڌcOt5SJPX۫ {ށbD D[ᾱDVwA:, :/[n S䓨 b@!"ZEyn^ihkBPX@ 6lmz g*+7}i;QgKqA` &̓a>]QqLr7Ӛ'bb@mz./X;F ŠX9׌0H.3Q2.'e8KFq%&-gMaA)2yNE"N#-!w\Y%: Xؠb(! mzgeߚ(:A00sQi-w!0K-䄺`NrD\mCM02}<*nl Fx>@V J("5nVGrvM5qbO5ta]:1qbw5.h sc1py!m;Pv#h:B!!.А7ݧB47H#;#=^% 8b[#egRϰmz]mm xG%Xզ 8 t659W XvL]P<*hoR@p[U!To  s=Rd@V0LBt! -lBO-6UV J("Z پ"@{<<nmz!o:`}ZM\}C5Yc((0DQ Az[+ 7 !7A(tj RD+пVfs!/b Q@qE$LcicQzxgjXRp˥OLm(``鍓FHڛ#G@i7] J,u[ag!;pV-ԍpg~Cg$vzܷbV J(z<sߙ0~GM'¸Vi+5P^X<*0}B Gc;X}?LW݋^R0(DD}cҎ5tn]se1-al}8\^7=66U'c +??h&6R`J7͝% )o4B2:gB @dLjn DkG鷑}ά>@_("Z_iwl?t=ܥy^=hƇ9 OYڦ7B^?P\&.DmӐ[ҏeH/DHц#!@L'-hLO"o#8r3:bN\ /oGv s_.[_;e;C"zK:O"ވBn:%xy=TG1qIpy?@v\k_T7ʖ`R]o )Ŝ1`0`ԟ%&k2XkZ=_k4o yWw}ݏ{/g( yĤA/8pDZ)!H(<9'-g9>sr-LߍɑΦ!1~nY6մcqP7)4:#LDZDPfYq-QVOn{8O{pS4 ] MX*N1w6_j6-3o0"5jۣH  Y?)8]} w6)vrk}ھ7؇hǖWr;6x6_@1fjZ!`jKZK^Pԏq,1F;{9ZMw1z"'p @̎ N>!WA&,ǡOkZ`OB,rΣ1/<^8RD}(HB4ֳh^ϸh]şw5Jhk0l?c/ÁۧPWՊW~ScmO{aX0m?\8߇E>0W<2K _e & ŝd;mOX1 nca(5´߸effHo )TiEWPw +>yG^;֦W eO#KS8"NCuXpx,Z;+kf| m}'P2WNGW߲KVsb--$.#PڣkaY`9n3x8Wwe=_,$V`"GL;'܁T}"5JrȀ52O]ғ&gk;Щx5wܕccppGw^²`Qa;Ti=AՖ6;_GJ?\/E[bNrϐHp@ﳣ.L%@DAYp(#Bh~a#DmS5;3&ƜFh iۼxPF Q  7#@F_Kwv{{j;X_Ke~8}[^9Y IDAT!Y(38%q7F-TmiE܄%~yNŸ [)I9xKcD..@˧¨[y}v7CX/:U33ZĤH޿8P*0Q`BDƺMBTo:;v3Yֺ5in,afbSO˻Q=/E?4w?}]ɓɓ툁 GQ,$N]D(< ۗz/nP?[E>)b|cO(F QC_^+GC#|fMfOվ7רS'6stk&bƒrl|t vUǵXf*VOn>G GBC6 s|).w{3FdpE]?'y\sd Ui'Y^+%ϲ, mD"-F+JHPvDž;W!e0zvlz=h `H.\wḽM/C&xoŠ[bʂbp]Vt<+GC0ۅP?Ib< nQ,6ڗAt_ĸ#vcmXC>ŊD:6P`CDk!0k 5pwT̗}owCi*ĝTck'd_@ }:{Òh+ǥmh:!3dO'n Ď?(q.#f &®!!:+I3/!G@nnaϵ~zɚ iP %F(D4ܙik8?r#3jߛMo<*7δ4{;EFwb2,i nvŸ$7jv_% Kн=hzCe}_H0'u~" vD{r`<͔Ko5>[pd) Q# " 2RM+AkfnRt6=)膆%'cֲrl}N콌۫pr_ _?WF#aTokEͶ-mzJp=#Y<1d:1(c? ˗w/T`[6mȻ 5~ռ-yAFJc]D'V]lz&&v,fJ σyW - v+oswC쫺ƶ魶mz eȝڍV {{1 bfاs’mEqA-V GȎ fO#i;Tk[n3U}C UB.4[9$mzuD4yX)OU8qMǸ}Kz)oAvmh8`.h7+.w+ zJ&b3/E1? vj죅( {\K#vD Vw JRn ;Tр"4֘\G7w|f^͹gӾw6# "¬嘺@xcd$}8ԍP%P5rțF ?8]3E4E0 ^<d65`P݆;[.;cby2ϯJ?w1kiP^&CŝÏ< ~ZbAȴ}їB ?n+nrL7e;e3~yU)>`J|cd;br/mz}3s+b|4nkqH=O@| 95mވ|IngmM2ܟːm0DTSy~ #;]Pհs`8%,i f.-{,hČV g}jK+2)y~wtq/.YeplovI]Mb`ɽh\>މS?!4כ-[[SOyw XV:a .(0!O{ k`=hߛMӹoYR?n 9X-GSm>xᰬtMs[0Mh$ ^,Y8hVmz= K|ȟM-.j* ܟG[a;9`N "ABpH$8p]5 ׶Hw3҅|.3C%D4o ƺ+"u/^E0qm;SPzf\U?#;.8s'` Ѝ,8,ӂ[-+*E@$"WA 0&ӐhpyG̐m;ޅFS}𧿒HSal ,{EqaH ]-8>v=c.m/_xikF ':q@(0x@Aڱ>rZ[piКM Yr6| U;qxGV2&_ LK{Lш+J2,4 ,HYv1-I9w' *=Mɕ` ;28p?O'-  b9&AS<![ F֙l7߄9ͱ!iE A19i2u0]=iۇ6(J(sN콌@kc >|W1 se9~79Q X|YƸ2,8tV \~)ތe?E?kla +!C<3 @k.)&˦X0v!@8l\v|7J"i{{zxfnߛMo炿!ܾd#^/- fcg0@R,~\-E 4ׇ' <:TALcdnGϘu:dߒ;߂Y,C }8j19iFfW|% ' Ӓ~J1mwBc7~8ԉhe 7#0j׈ssi{RҀAD9 /5׊TM CH!}Հ .+bjEI_вȀ%wNK`%O,9E>\w,>X.%=R?Tp92 ev `-h 򦻑? ˺fx@ <_O$]F@=}Z$'4B.!@2@i(-!OضĂ@jSy}'{şh9zve+~  h"MyƺEޣ9K?ѷ?]ޑj;zsQ)sW58{ 5gQ<.) 0@4*. QpA%Q]v[Bt [rŎ j#I,+pQId &GIsv1! x>U)m8ͧ/3oEGvxpQ5}|H5ȹvcwܾ7;ޡӾ/pqߌEŞ;IQ`~g[s>A}u[Gƃӷ Ba?] yY˽cȝ;%j(v8Zc6Iw[a4`0EbED(Q) pP Țf.=|68b]E'݋Wi'>`eAU(y eiǺtnY;+]Yf۾wlz(,./]y[4u‰F--G^tJ1`̀PK> &B !JH {d݈h+Ǥs-F FGO*/cѷ㡉BePn8N1a6yi DKG]άqF?HJJ\!v,4ֻ|6\bm{{Ҿ7}_FF",;o</I Dc}" H"8;hoO:WhS|9 ϊᝧai4=4$目cktaRJd2]dCYZB7@$E -+^aӾ9=Ec_ &o ;o r_PѺpOR#5, vSR vxhqFD[8&ݚoIZϮ bi+90I8SZx f._1;p6}?w偰{;cWej&q4\jEkCP>)erBM^G4$Wy.?nuf@++3jhN"@8uG`9pMtyr(ӑA%6ܟzHwK[a $( ,W[LD<Wh@ذ|R)p/_F S䓨@zTGKQw>3 p[U'7E(ʦ7ohKk?݋A|ꯖ tzE<èLwM@{j~L/`jb?6*xo ŏuI dA/ t `hS]p+O=]S v$jS$ |DU6 [Ak㈴A F/z?tl8z)O@Og~޷5 -\>s9 !(Ĝ)}IL 9n=<&o-΢#|*){ lk7&e\,6͊}z+'#M@ ݘY0ȫNЄH/ g\"H !QW2b=-jH32N0B5ޖI,Ƽ*- %yG!i:7/C]WC.G0׃J\:;T9#LYPy+0FU?a(<~-dU z^O!$/"zLOëaL. ~\H¿N죅fB+  O_Z$bbGQ4oxd$c֋|<.{}mdN=w O*kD -kSSTB %J*eҾ"'ߋR5!-Puձ K{sGφHO,1*(@=6ᷛ!"fo>}Q?I ~4D0"jMm"Yv|UB& &r  ]u ;b"o W^ pp^0Q7hǐ;%wBAzDPPO Z:"+aͭ?^vwDw[)'}Ie{x|& {SMN\"/_=~53hiPX@'aCOlV7Ty~3z/ߏgށYۜ-h3ݿ4p\C\c0[C+x$z#|^.x? ޛ* Dn_ N b-ӊ~\ue6`$/N"Mwʄ @w3q?V7 9rDGoOn  ֙i;|B 1z>]^qܟt` HBy3țŁ @I:z1Dn7CMuq4q35?68WOvC<2ݹ FMoVQ2?#p{;:[/sMgXpx,~" ו;n@5@XGS^<>W1 s# %9`V<|.5Mo#Z-*m$ E1.sdAs, &1fF&1fL"م  k"=p62{rxo2:c-I \<:b`B,0T}oB9܄…nMwe܈8&@"8ɀh,: ‚`,Nfq,K\ߗ<VɌh@D~<ߢFMu̺b^nqx=HHso :P:!wHw2oo;UDG:c'c}uYq0Qlq F Ȅ Ď? .4X.;ц{Hhc {ZOHi-$ opS7S~;X՛!Q}a4 KrgPXARt x0ZF3Յ$!d?v&`Ĺ&<ۓhs;VKCӻ.ԣh |1&> \ÁPi Pnl~4fWVH>r{CW΁ &1Ap@@<4"ܕ3`,?B]@#naϵ ;[5~1 3|R$q _(mGDT @^]պMӷB([3^owܕcct ;:;Z>EnuwU[\ Pv=x[(ˇl^M;oF&2L΢`!(JEI̾'"aA Hh4aqMH'KeA7#mV{^Q>gYW]ˠ] ^H3i9,,¾m?LlS<f/:.B^zK4H:ν̬*Tv  \!j,J"E9z&b<1==rc즧{ƞivtMܶ6k$ pF @ *Ԛ=̏r,,8d&*_Uι ܜGSHd2aY 8t `B+Q(.'~ & R6BgnC|5(}w]jߎ߶k][6>Ëv-wS%8]݀S鵖@ XCgd|_oWOb|;–O_%zNkX;痬#cѿ9ܡ^^ C0U)vɇo1`pRYㄌ'$$Z)VH 9I~:dI~6vb#%y0NHYW@?  3uk! r9m;᾿ :6jQ?yz._g[4"F ӿ"-NɅ|-o®>pJ6OWDU3?݋=/Ͻ} a]kqu=3[Ug[,p%8,^D:mÐۀSCߦ#cRȘT#!GȇZ gWBjsF RcA>6B &1VX=yz(%p'&*wz@O vTQw50 H"I|2yL'3{a"T-,XzsE'ٱ~v%_.l~yU.Fk+;*_ޯQm"ۉMof3~<8ql?ױEѿlV s24~3pJloY' 8otN:abf)ί  2Ș"S2Rc"g,9p֒ {1&&^(!8!%H sbYQLzbDCaȁ%OQKO|VJ#hqQ(yODK[φjOSd7p v E@#?gi7^* 6e"¢_kMl'[@Feb_Њ%CBq@=D _ iZڋ 7ކ'!v,=> LAH^od Ð#MMcR"FrbE6,QQDDs9*,3T 1;bJHL$lcfXeB`{c +JBܲӥ_VL`^CWߏe~iv̆j j!zT+mp:+ÿ*ać^cɦ<;9|@&uE]}9ه$U~@6.ʝԐDv] p?x:1ju">>Ɵ^ymt0}ALUS#f=6-ܝf`v~n3sz>8Vśۇ}QKq+vmq:5pCF~ Ե1`ӻ=wMq0g9yOiHOp68E<[*8vQޓ$$L.PH E(VD#T cc"bV*q`[x%*E^A T}dl!S7:uOSխ>0l:/vTMeܿvР:)e`H 9V.C/&Ο_bQw Ip]'"a3e 660&u`xI, d L,=1b% KqoaGz|..C̪֝p/AS7#M9 E-QШV  qũe;]#lF1u$D’My^68B`Q/O0T0aZ@2>A@P uN{C'm_z2}p \?+h ocKaWFukk{mz6I6`'-{ |0ś9:+Xw]<+rb(J_矡WLPs%_p-_ 8- QG0:cS EKG9v1Ž?OvdW*95)$cB4b6'H P D"`2YTI4}DؐuH ƓP쓥j귥'~SR!MZt(={DCr'ӟAdl],Bوoj{Kc/1; au Lt'ceU@`M q)'my|0)LGd2F@bBA~~[HYŧ&}GrA6=KixΙpAG8]|=_uk/ۉMdܱ 7. ac80nxjlkyj; _/ ѿ}OEh6_&S1q~& $?8")pb[{QKH|$"SYÎ2h/A}qkO`hǵE8N.?ȸjM G!ۢem$LzI ث1a0y[7D떄do1?# wJ砪)@bEp:;v 0Z X)$GOw(!K,#+Tc+\ 8ST@YBU=:OV*?fߴ+;gȪce^R˯ "[8w a˧5¶_/ n^~_z_G#?#kv5c~~c[1R[)Ыf L3FߑTRHpFNqF%"o,y{γ5Q2Mh}90P`=!qZp){Fɝ$g ftĤ) sъNF5Fˆh$ $H,$*|z|\J?El>?{+ S6KUah;UQDֶ5?G8c]Y7;g?pΑ 䡀]` ?z z? 3mz ;CtmocwpWϟ@cg[ onXqټ?+icUƸg6h<}Y Itrdmz֦סj˛TMML  Bl>(OI4['s)b{Rx3I?'B6%>4\T4&D9tT$VʱO 5A`>;VkT4V; 3O|HfۗsV/8A<XWϊW;Gމy,>!0q̭oD|`3֤58#kRHTq~2SKހ\-\QDle]Rvgk /0C D.&F'F4D1ʅhw?)E)bRԓG#u@ZB M4gw?&7pCrųѴ8 uPhH\Be~Ba]o_Wݍܜ==CMug ;0e W֏_gvx+G?Ċ{`3g=0Q 1N?kM! 7N# k[&"p(H%ysOES~@ cGmTNm,% xPƆMK0e!S n :m+vbt}H[vTӯ-h`=<0cՇг v}:p~~_Umz^`lg{R]pU|m ' ;HFTnk+P&j*i/lkȔoU(~Ũ.yZ㾳8@‚/~ e=[@S?6p7.q)> (X tv|P Ylks+2˃x;;҅x3pr_w58zb C(FB`#oq6u8?lH'1PKșx䍒l#yȴr.\8GҢvɡJ/ _`x6&ؗ,F#ҘXcav<'Շn76u%O߯,[g2tw'M? M S( {|_\U>7ű]# ܒGn7BؔCUPX *ZCC=9@h4tT(Д> ^ڏ8Ki_"V[ER)| pϾqo~^mzt\@9awc@x{poǺkOvg/ `7Ö\Q?ɾAǧ֦Hl 9VqX_ModR |Wc>ƒ }ƒUkq~K,2?2)<PkE#4a"+Xn@`;y*kZGnDgn@Ih`y" {)#˷tguT̪AL1FXզw`s=8lq" ']̕)<&(4P W 6Ԍ D/π~mD\l|./y<-݆ Xx߇[)ߑ|IWvv|>'n~lX|nRIUO`%}͎Y{q7Hd cLhf[kmzq<E:ϏL'J5G62ڄ[4$ZapSH4h`M\wz|3Rr0kF.tݳ];iMFㄵp>3t~% ߶7RfrWdzCb߿^śX݋Z7ﳶ#?}|aW';=rr8? 8`7~1C)['9cp(_|<Eg K)ij@b:19NT%JW_VϷ[]]Ɇ~@,`gN XD:؜Cʸ2UPh eǷec,А+nKprɿYT*p5"`AgsixeȚZ;DW// "* `_x?|h#Ĵ魇:=I3#E<=zq nR\eLK8_Nub^b| )^Td_{p5Yt}w.۩Mo9*{:'p}ל{o[]W`͕ۻFַhe}U_`8G'&-x!7Qo 8 n?R26(aF8Gv&Q|} O6fÆ hV~шX Hr< 3'y:TgY$B&؂Q ܘ`1 ˢȃ0c"3.M9,==/^yG*b@'M?S,Z?%P;5P˅JYK$m?Aw%ֵeӵt\ѭ8m2_tOA<=X2uﻯUϽ~ɀoj1nإ^b糇pY7yE_&(ye D0֦7:M/o<1)Eaׯf>ܧΨ 8%oܬ8|+Na=MdZ5fH$)1)*eI,ioz|F,AK[۲!t\LaĮnpCP[Tv+EW]tmM@ݦw1PS s軲U液&69z?1gj@5P)AN*xhCwAE?CV!O7^,=^|x?o}x0ִeő'e7, I LRӟaBC{_1txoq XqB5G۲iU޴G ^"jkp~%( q~}4Mٔ=1~e~R,F, ?ws1,άR>A767a(O [hd. :F=A 0Q@3Vq%ry :_d^fL 3:uPQ}L rl w_~=DB;n|Tú`N8+ @S޳!{:\ mTwN֎c \vHW`Uac[)NQGGnEqסN Da-_m ֽ6 8?R P@&qFQ] o*>Pc;e F~iD\f2T XJ~GRס{ET0ua$Ԛݫ#]TCqO \`@]PX(V qBܷ/Q2=69= yBZ_;m*;6M/_}3/~SL8c8r` #X݇ūz 8g0]|2plzUך4lIg#r8$ *8ْ<`ȑ7^0m D%1PU,~l~eiKW;02eLzlϠwmk] e?{T8 +:]co|2U_oX6F&3ja{j'U0IU MV$*W<ӽrr|K~|FW1qa"_}?}^S{02}h,6awU8?8rj7酏l^nO6   im$pp:Z $ (*TC ,wjtd: p[~/5t"0[, ?'&58sUb== @Ϳkq~ j1N/O_Bm(h^' (vb8Ŧ7IkጵN`5csLF9LS^إ`4?Jb: @͗.&ρok `?~)e<}XL攻6I(D)+GPX'JĈH %m_NO|\J駡7](ہv|p3 % 0)ɐ ŀjgc á@;PY;j=­d D!J bP=:Q@ e-!u0_؂}ע 9۲T_ 1M MG?PË \xD߶8'M8= _v5! }pod vAg6޲MIM74"|l(>SL.T1($Fە7s17BfL)qZoWIE1a *pLEa&8ȀKP6zxؓb=XL{; - n;DnZݿf>0&H4ԭ ͹8G'=]PQ` P @_Q")  UʞI΃H$K1b$>g]BNbq|H}HŽq`o͗DBSʿQZ:Ns4+ҼZ 4s]Αa~_;<M M/YF댥T yD䬍q5&#<'dҤ"KXX'GuG`v/n@T ۆcT:v ME4e8J6%aC bKx/lc96x5ns$_Hzǧ,[Q`O+E?5|o02@5 H5\ h P f}l,_P:?*$uj@KQ Y's@a͗ ?}kL⌉w,JH%+O"C݀ ؁2.XI޶vg˦b|Եw8mQPwb{[D)TlzeFUް dí5rI qpSS(!q$좼-$SRT=_4.*ݓ j%@b{̀ʅ{hWڑNv/M)D.`K6]|#Rzj(V"qFܛ =>.}vؿ~cߑ(|V`Ayzc(@*1f Ą._b?8],-ph +(<@Ya BBD`Q_ v9r.70P\JQ.] \8BqpOMEoO65Y\Ӆ1N{y OT ?k6i _XZ߹)"Nɴt ;\@=*ޖShob?`zFŝ*ڜ1`#(A irlz%B`#ƋO$B>Y:bz|SOB9{M_tۯmuLDY?g?21PC@] rmğCY~yd '}bA>e';G " Zjќ%epuNSca M11J6/cqLOc?:UW.Ɗu KyyV[d{q%Gs;g8IvGkSwTn[q~0Kܝ)KXeI(@&{?SQ߱F~OEK#F`rlC%xk ze6b8 IF=&`D }K_RǷ\D8_nG;\ h5km3dSR cl%m:k~)i |5RX-O d~A f~D8$|G@~e ͳd=J 0yC.!䊣( (=Ҝ8gf"&RwX ot˰xyye{1G矱oWZc8G0X8?(A؝T1ަ,\*y`68 IDATn/#ɕ}c}-a~@&+.? )ƍ`#0X 8"b-) yV1b!jM^ů*˺VC1~Ku+zC_1oi4#a5U>vs28GD>ʎ#ItIDFrg;N`V abPF=yC'Q/H= < Ě'KQMO|FR1h*(=2ҭo#kZaZ@myr-[ +ЀJ&< ZnqU8z` >;}r\zy1N-T!ٷg7!Np~z Cg/Vp~눐L_,"³>lz)/$3.h4?x!ۢe-E,H#a" +# [$~7pX_]j[d9:5!b! !VD"0"%clQA.^ं+nZK[=?{G\}JKn}^Y8 י8lw-_M G6v֒Fc죘cE*H.^ ,Pa1XvXkm J d+FL,=6G ^z ws}pK&?yS(ꑩָjߢr\v@v8CN/|nɿEFy%~q"{EWG0u)^KVE-eJbdaժQH"cQlqG.U?݋WžWõ[V_4:M!]1isĿ*=0v 5Mq~kq&22]]56u85qwq̅`klDTh>"e_@SFROdX``AOD~k:2hJԣ>/ށ+; LT՟5T@ ?\\MΧ>.<:}U BQ"%ojmLI29IZ2̜ӳN$nk-k%D+$$}G{_xPUcPu}~b@~nUNL`#`H@@ f&"Ef@>g'x 8j;/lź^‚Bt>ytɓ~Iu~gOJW!m:0nLrZxDF!k5~W| \@p b/易>?: V$~ixo |FWAJ~dL H O(bK F;4*d8 j矟/,0-­~ywO.8VR0 )UW=ί3:_n̽(/2LJLKX:e~L*+]ON7&Fb)4. L-H3A;%beA( ! A _ x[.k#M0HlAO0% 8<(r8"oA:K`Uج4Fԟ3;*B~k(JlLK̙ +,,-87:wg)lۄ'߂b/qEdMV_+@iZ1}w0t~1楣3t~cu~0wIL J)D#IZ+h-ᰊ0> rYKc\[I565.-F7=$C(`3 50Uo@F=Ud((?LK ulsR3_VOCA+-'<`1Bnq?։kzpb:< p4 %ݓί"|u~A pn_D* [JJmQYaFr5C R12-PFt|fCmU'LJXE^+H|!P5bA7 juz ye?,g ]R%: )K2.VonCkpvܺ܏S^wp[UZh/j d i":n߁tVaβ|:v?M(Q ͮ%6Ċ5+IPF /P\[Y3.kO!}sH|ixlQA2cfUQԏ@dȺ_{։ qKPȶóp8ЮLM,"m%BOVlfx,Tx35<]fkuAאڻ~NK]XA}RDrAf&A4Y (aH^?hwR! 4sP. mcsXg?O߾[iƓ_߂잰E!s+t7_s/F?=1ۈ`u~H0v8hQR2*Z@+ NM%o)=䌚Vn`ًoW{Qa m\u/Jx+~Ł>>o|7[1[g7"^'#M0]0$3' Pb3R) m LW^~':" )D}{'jWp q ?'ۂ-sZ2uuls뷊^u~ !PG (NA`u~'y2>l4# ZRRIm +(Ap9IIkɜkMb?wΡwPTj`# 0 L: *apߎb k\YJb*_>gqgW02[O+}x _܆EYW:SZ~>߄moF: [ d|/EB0RF9aO+%\VP0*m04Mk1:~W> \];8Y^xkU D_pKQ޻SmzrPqfvYSr7iVb88 tu 8 *o ?OVˮOo[/0 tu~2F9Vw+g1:`kBa|X1 OYKŚ44)[0&:Sسc@7(2+@@0 Oytf׻V+z2v]4+<'"XNȆtF8 NOʙn<ō8tYttd-Ng[,=0X!]!֞f~H*2P؅ x0os|~`~SO?ro=v0=`gt`0M R$dpOƿ:mzX+Ѹ߁SP{ ,).CoT,1s {S`x2+ 8ٜ9O5?xƇ]W.5 <y} ~y ?ǿ bz~qVU} Z)EhړS現 L> S&A '*̸:Œf$8%#T|R@0Fʸ&b Fxb5 yN)+? '6-֨ob-HS++#/R“mDa(f~(:HEmz7B4s^ٟdH%|")\, ll6?Ԅ^_Dg_}OlB"{|IBȨ֗C7Zc7`Bt~9 c/_8P{- e?3@,kMA$Ie r%Xb#=hn}i&qN߁\ _Ap/^ܹ:_nCߝQ|Jġa4jί ֌=Bt~3gu~e3~Ks@JJ@@Kr1p1aꠁJ(>5 IDATbZƿJϹơqL_oOloF_d* %H;3)DMS7lDmz6Οx\|U tqv5[QT1'4OY:4m~ 6VXJɜ]d&S`8p8 ZSJ;Z+:SPX@&F(ZtJ_XwYչ֩uc '![ +ADOn2$&kl;La':qFmzw;:6yn犹/οE`v=[ĉ:p[~7/cS-xٍٝ#){RNF3@f3>ϦkT(ۅ61%'!bu~oBIY`O|*> w9W }F#iXx (I)4@ZTF $Đ"Wpk/T-y* >j:y =˩vQA@0BD4Y;@? ^TѦwSԦ7|tdKȼ/ ŋ;8V~b ֎p7qD~u3v\,gOV&L4 uE߽?/E[D/V2 |~e1'N:FaTVQ F!]gekZ ȇg &m\5?MgZL}˟9 Pؘҍ8ES6ã74(o u~ACr)y$l6Ukhn^W0=_Zv дz??-/|L5HGfa:3`~s: VXy Dit|@¶Ü@hG2)5eIFSTZJxa|X MBbFoeZgn^Q$.T`&zf'Fm!`B?j[mY6b ?Pj 4movtw{Iߵ? o*of>7&}3c8_@~GvBOu~ o, FcZ|@FA)$Y{14#>q$VXbJ1ʩN\u?S߇6M֩`H|d}δb! jɘɊ287uxq 5%v8:/4˾@lׄ_˟v^lǶGVa0;? 0 6@BSKO'R2K9)p"L͌v - f J0 ZxDF!k>ĩTW| ^:~C+ilFap;5n @$v^%|/ | O|}36[ow0.}rah^_;g 0 hH*?YpHS:r +[,K9iZJV R5IRhivvZ+0X 2< `6U暗M2x.qLTyĿwށM+ Fg6@0d0zB)թ O:tӏԟP +xqR.|tI~؉qO4_0~ ?}0_0݂t$d-NmSi ~ 4. L-H3A;ю`0mJBxФdBW{>xKL.+#:M0u;ւtl3&hQ0@15Os/0O?vzl~P jQTyc=c8Aujc-#ÿ H'uN(:/(3^VX sj;<#>@$k5FtVF;kMpXGiX T0uk*.ձ?ǞToC\T:?=  }PG5HT$H2vXY?, e}9ؼ_'l^0 u;P /sCCG]} >['O\gJ*o,30P$F4CF ibbeZ24RncR'猯^a/"c\;3 % Gr}/g[j_rf7&n 4Wcq /B>uLw-K(&> 7J5)@]WKbmkV2p b Qb+kb&_@?sIO|f?jg>y,/g?(ǃ6O!2>#QaͶw180{ Cs)^YoX9n\chW&h6&0͆Pt JO OGZoɵNVBL_UW}tfLSz}9wC0o?ݿ:ML#mUтaVQYa- r nM=S7{}Ӿ/39ԟJ@jBa?@ /,iw?д:\VXb):> 0 1 rZ|`(0>##Jx+7ݙ b<}ؖ/h΂ECy { Hitu cx0&IO`ČS t~%Lg$ZbƜY'9!$+AFF{YAKrLƝФ@ C$)g|7?)?uU+K(iF׵AtaW!1i'J@$I IiIB) =e"87#Bi!ICD~'ORD:?o߁VX,)*>WΌ cu0X;ej2>lN&jУ?d 3*  5x/gT&@ do@8/bZīH4R.I CBh"$EذG2 AaT#EI___:sO VHjWF;S$(α@^`wzMxS.؆AbgX `Nw/-h\[ R?a^K@ _ HIP*)"@H@uYbL2Rd ȸ4#ĜsFƁ z2znW^M+_~>h֣8~'|_VmÆM낦% H4B ?:$()R$OB,(ERBP $FLtoXA> N a7A&G3/izBA"u7G6δ}7  6 ȫmQj\DMJfD/ Q'B/|rd I!eL %_;nH {-K- Qm d|+p @.H*V:4Rk5wKToy6j X?|l@gچ1@êJ~qnh5VBK"Od (*#}!dw4+Hqv[,E#O|,'>1sq$;jH溺#=r_K]C8Jznj*pXq+KJGu{ 7L2$HC C`#X0X IVcM=`lu~ŲZV aw4>"Pe 7 T\71m9K}_VLᣟT7;xٍT ,`ExDJn,aiXeexWBo bY̐܉:ªo1qcUaWWm@A@{7pPa8͈W)O^&rJB0 p3r0h&b,f }~NTC^λUu{2N/#~.>}VoS؆U2L O2LZ0RI;,$&`?:bܗ5PFjw6΅NFBVԟI r9dW1bCMpA+dH +Y ɱxly2,}tdX8zKX?1F1ԟ6sW⌁e+WqǓx s  !]YlX,ˉOi%_=X  5teWnVοX,; @+§ow Hi폮oFe,1bX,˄fDXkC#@6zP "杇_з49 G_kp`<6\_+X,KY?i}u{UU`vP sR/GX:1y ʚ~}3?j!%[,e)|~X! eCi`P_%tOg,i 9/GQ[G'bX,ˋRL7v`H7N%JoMW~ßfIJ07!5j“oEu}|WgX,SF?3>%jP ]Fw]z P'ϵ oX}8Jkԋ۰ze,Ų(5֭V>͘ #q8a*! Dž "+_7pW7 ®'lBbZ,e9@vy5 0H̸hi_ eom{cPӐb6bX 2Ns_> Tm" %nu{ ͜sNߟG(06ǿ˟v1G=ݲZ,eQSƫg41~0x^@ Wn͌릹3 4@ &>}:q`~m *,bX,-?օ[X0|Y`] KzOjANe;񗟒^=ۃccd hP M-:bXJMo$] Z%oF aP`*b͛1|]W1<l}$X,@?B>q*5z !9B~{;0/ h&p\_?kZ,p +.?EY?b^#c7C%(#XSXQs3PqWOuC5 [QUgZ,,nZ_k1S'r#`5d!'Xˈ5Sc2 `r:`b(WVW6e[==[,,??ǜ Ѩ8 "uPbJB~ wO0%~b >܄xVX,K)YN{33q* )LܕnPh`fܽ>Q6~ l.hk[,g~ZܼFM[z0ApKg{snt bF l~h%p\[bX,T+p?w>$hN~!pOi7Y1O8hZ b 7bX,|_:FJ9@E[y.rZXPbqgX,E zΙȘAbA_$P097J0-bF99ߞH ANA?+wgtwX,%E;9."Xuys~~EdL2X*.$T`procC+ѴtwX,eK|ow5*0.H@D 00*)4oAa8-\_ݏOb/w0>a蒃.@7 JiD@êJ4B!FaևWb5%\bX, .崾o3$/K(?dXˀ$hE&9%ݍX`kOt^×_bAnY½ IDATR9$ wgn!|mz~+6m*Z-rRЉ{Z#quk{bfY&_I 77G~. Fxoa͖z~q+WbF-da較+.Ҍ{WԻ7pW7p~c5x+,a #bL3KWe$؄:F*_߾q%|yv\c?+qX'OŁg7bY~mbX,˔iF4 ݔ(S7Qp*9 pϤl=~x{Zy#8j;/lź庵bX=///0xA0~QG!?獖X@1TocI>~*{:< p= kX,RblѫmXVӨ٥!cq _bgHوUx۰yqtltYbXRf 1]a^5n[{/:}eP \}}s%q^mP h=҉؆bϙfpáΟ&kBwY<@nZw 8-|utO l{O|} *kc@b,wo0|IbzԦW[hyqI  d$l)sUINŵ^ uH1jviT-?rrY2-Wb88 ܹ:*f$^bXd~f8w 6Smz6kToS '%Jxx5,3@&+س8+h?y?gz7ࡧ[ X,%M<.vZ!1tQ6#ʠfSPi}^堲6/n=]n[a^bXR^w/j;V&c+οpX @V7[.ǿ WgѲ_؊^bXM`\:xئwNԦcШpmz ]oƫ !te;j;Mܺ܏OZ&labYfg Emz 6iToW,οA5t='Xc]s=8-_ބOm-eɓԟHߒ 'Wmz/>KнRӐ^t+m?´labYz@Ԧ*+_ހZn ڭ< '1Sظg=5^bX1~ Z+Tn\6Jjrk@&$ևqkh=҉^ܸ؏}i_7f[,Pg9FH9` 5;5{Os_K886~r-چqt ;r& jk4ݫ,?n((oC13HS_ƅ>yC=Տ.N~qZ{`#/%9 O*)m#bFloo[5Oe_a#+ X,‘~+`@NF|:η/poP}]7vwpL:.aklAb)' cK yKHhҐ}ٔ/O6@ +]|7w`ৗqcvl?kj{rZ``WcPC!h 5Y:؂ ?P4A*<wq8 ԮĦ+%ܹ'X,K`eTnTX!669-f O *o+aîF4EN\:хq|:VԢyS:Y,K`5Da`ě *jH#sao9bB́Vc:?vw0aT7T,-eIb F* 3/9g1N%#7MŞkѼm1:!ߝ@4hX,@0" + J/N+@=ĒIMc{ņݍp= sk}nZZ,˒Cy[X$nAbɈ/6"-0pf?C@@ê*l{ *A:,=S("Ngx7Ōe6(y/O#o5RqM5l]0yH&I~ { sfJbX:D~ megd/QT%q0y._\@(+Ѹ捩t9P_z(;p H_:t*h,˲*\ck*:-/HO3%;vR4i!bT*sM\REV ng0Հ0.t8q!SI ==@uX, K]Ńo{}0 0?KH 0ŸKAYP~$5Ղ琼toy-kjdMouM0L0X29NLqR.!Gy/Pp-YG@|IL$k4nMW]U\{@ I^ȧ?wMy_'CH] :(0L d[CJۑHо;I~*|OOvJ*GlHGryxNxa>?~ȯb٨tT q)Pٵ_BhhtXć%sָ`]6 [ht  3[x;I2nma5,'[@jH[`ˬS t,5)ҭ`I7C`Y )p7hkOlOW+'g-N:Wەm;P^}!a_/̯@6AT/1 pHPwfRB"c3y vY'1 )C/`gz|{p]8؈ۮston\ce$`kRؖD-_Py @'’ mm 4Ґm)doH|dݮYG=HZaR[Nƾ6[)Z`NNxbu1*ѩ;?^,X~K|elAHōk\ݐnQeck?+k5Y@ m'KHm-v` AC7@SCӪ2:6KΧw JǾiw6#**{B$ρU;1ٍ<θ;\oO[e\`ցjS[L3H= eٚFڂ˪bfQ(Co#6`}3Gӛ M MB\F& OfMTp3i-a_|c{HHsv2{l FIŸq\6>sEӮ '}J&NĆuwX6B.r @iYrS -4]e[[<(;$N2]iK>e;;v_Wƞol'ҲSRy<ܻBh/h6Cvc2 EQPhܴq0f̓qWu&N'Zm0"S˂矱1Gm-߼̇_J `˾xz9Y I FR`inv .h"p3l#Ӳ-Ra H4L|;$>Y-餭?eojc81H'jÙl}@mЫaB(ngn}Ȉ /|U/w w"|ɾ wDDϛ4F$ԝ!94kjOl!x%T,Ī22yǭm/YY:@.4,)u̸5- NF& ;_@ˎsFHM)N_yoݿ˖iPgßyc=xXB ZkeZ%[W2ȗ-n+<ןT|O?i&NH\Ӊ $҄zխ߂זrIVƮE9λ [P4I՘OfB2Aö_.$ex;95Rdף=~ЖfSt]IeKX[gIŃR˪ "O tl! [ȣ; FcN@?yɋ7~]auA tU]hO|j'KxH|ʿ /D=o djb+>{|m S!{~j )V|z zt5z9L?&΅#;"rk.3N@.`g %Al@Q &L=JuR)Eh]8CejaCw|Cj{05T<7gs@9_RߋyXk19ddNhCH Wy7W74]1z,㣮^[W# йqwVRH- %rŁ)YJ ?((UsP@vX*w"m?I%7*oJV,onX>aYC.@&tN͍f]jrr#| yOr/O芆m)i&NIԉ]0I\5lN*Wm}]qݛqzi˃@ӛزh MhR!u)" B!B=uΒ lLًo{CR/k ?!`,fd݁@N r f ;@6{/ÎV֕r&on˾?HJ_&ؐnq@@<ٿb^'Cg|2Oayu917 &N4lc4US޷39, @&msK|9gߓV eHvز 羖֞9}$T٬2?;>KO'vI۾>Y\p3x<BCm}/mf̟:l 2δ~4~n!3 k2/D;!.Mxs_9{_߮ê*:~ Wks GQLjC>@j2_f g 2;0r; C?4GIXySJmF^9-# ­(x0K!Q-{]S{A_y|{ f/] @{P6~WL#&M)BS4Y `9W1k\]m4iS@VVOb*# (';hBԉWIdߩ)G=zj' [ʲ^۠ {@چO8yϟ6:dz+KaL\I1y*@N4D$wVTi-yT/L ,a 6qCwPx/?ԅ.ӻP*;l۹1Δ&4 .';<+eoſط%q?Ц4ȝi{hJ5ÏN z`29GcellɁ6ϯLjCmt3f(;96вڗ&}R-֮2ֿg7~bAط3"';Ce!xZ^̟9h( j{O%K63{m _{ ~ҷun ؕ"<@*].#T]}|㯜#z׭:_# f}lLv 5˙찫:XAvxM_ʛRjHwi4~ӿKd=x!D3<+DGW5K1wꂅgMOJ39 y$~GI/A7YdNg]OEܺ:ɱ~qHѷ}1~BS+T^W9*찴@ۼ7~[dnMTܓrWҷd^{_6usǷ&{B!_!P)`b<3L}5CӮd&4&$lcefu߅\P Mw3LƞzhXaPaPs [NvLpqA%qKdt~>{m.Nگ,עC~V^:u=+w>Q90Kg8Yw7p~:zLjCXa;37a&(+;,;VySJף;F,e='J"w%)C^/ Ͽӗ"9N+`M%?8as#[/ʐ+l09tv.F1,}7?&D+mI(щH?mغL{+ B论п]6 ީV[RhA= &OB$laҩKPR }<wez5]n<ދa0Ն*îր;~|7[WGe*)~~/;v[qֵa<Ϻ%ӻڐ d~EáeG[S7;NleW+|\$HVޔRc7| c\?j˰mwV';aCnOSյ!ۆs2wR(CLbį70[Ma݌(x4B)|AGX2 ;/pnla*6ܳ_ $_d▔BݟJN=CR>2I)~۪.=|LL  MFM&CXqPmG';w+`[bl`#݄_Wv87VxNO#px#@eeV(!Djc~0ZWsQGHħt|[;Q+}Z_[_kKAFّA,5k1nv>EkGÿ<Ԅ=&;D'?˭ʛRlvo|FVxX!o *\"Z#?}}Ƃa= V?킥XD= ̶ A>w 2FX1x*RōOoQ#tnc#߫_mp.# 'PNvxCC #c7ԓc@We\UɲXaS?V]lO|b'§[U[̊K|pncIauRc&bdrRCoo jj-+:ʲy:AjXtarXB޿>b}+oaRd(w?l SD|RڶS(xNy"m_?OD]]w&{WL*܁en~R)hAP_%L_$ 75 "Sc e d-`PnK`ἣ lG !2O@SFHgL aq-Ll4O 4vn~ٽ/AV`|=-[vtu.:{h8[>җgpHDcW#Y{lT{`SPNvrӜd[? GwI!tiYL㗎}Q섔"7MJ8;F99I+~y.Â@D_><- dםW%_˟f!0Ba6g`MT3D kQ̦>_̫tcKeupWMY2-PVv\m,ԎQ tR ?^ I/cY^W[L/t=:x:PjUzc EH'l.---|^=΍[DX^K&]e%"#4e2" Ȥ8A8s* G {Y! 3`6T-jSi~o|ԁ{0_{*ҷL2 Apfoa}k=Lel{`*eq-1i- f)!-M I>I`4M9aΘar +*f0U^Uy|ﲓ]$_T835 m5&:Pѕ#—pcܼt::OoaPvXH,͙T2Vز`vgƸquD35׆1}ek\m&qfed5 %2S #F9Ig=e$#_aM$d؄l/ ,zxwYW"~ܬI%w2zHqS$UUs P:R8 Af a0ORi&fe (#м.eC2Vn5AltM"4DF '0Be:TG~;V-.)A; `%$g 6 ix2(-ݿ kYLFJ_ʢm-pБrqc8)LHȤ6­<UzPѰ&sW,;ĆuwځX%k]T߅539!sdh =2)UWp4{T(Ok#bc'=jd|,_'t p~;B gV7aM;~xHI:iLXҕ:PJ HVېض)lǑҊ%h;鱤HQyPaucVr56 NzL2C?n-Yh =_>酏$:&9@3%@BXXßC͆BŎQ4uI$.2to{8}On4n}|㯜#z7 MMj&?E*5d-lǑA[-[HrRIC3ʹ~}n`txB(^\ ] 4:Ehc0Z}r`G5N/bB(K= =ՆֱR65mU(Qp$\G@jJ ӷ0u=#嬜h+Nr!WD 49>6l'I%VJslǐNF MDZ5H iKGґi6H'm.&7O N\Qj]i2'M2Sai4+*ݿ H`ZfEp3SϾ@84 u z:L* =‘h{Xr$iy߿R XA(T)8#,lqrt]ϑNF>mg2EJ`>μ=  /L X1låV`u+_]^J͊DäoR0KriP ܱB<|ĕA܈|̆k8tVmpñ~+x" tp>BCPh؎.ck4%HkKJ#e O5?e&^L1;\5DT c_g2]0HjAPo p/E `a+HbgC$@=k4syt |E",zBIkΆ_p[ qC} D\q6˫&n& LsQ &äo|0g>ƁزQ%ĝ18!ג|xzv.F*K(G !DI(rQP#tG0:_C4=xb%zȡeԨd3VT2%)|矾v) +jӷLg"X1y^c6.Ϭwe@RTAˠBMsܯzȡi8[&aQxOOs+yn0H3 |v|(4]s|/-&?Di)Ajnf@̭Q``*y PP]ml8N䐉5){'âa[=P%Kkgc[.o56=3X|Ԧ(ur=1%_d? 0Kd0[o;(/Ρ/na.pgo_^WoC_'ҲB(A8Bh: D.{-f/z)ܶ:!ذANjT'!M?1C3 Pt!(&>̆[˃篆b@|KjD* ,E6W BIRĆ$8M.~v]tc"Keqmz,wnh]s[LM d{ eSR8Bel1g5Qy/4;R{2L򑺥=ojْ"B}CCIlvTb8i'Z-L1gK*(i߭>_U*Thf(G t'm'^{8L;"cV_>˥n&\}ZrS<*A}RGlZIЙ8ÎK'~ɠa{ ί^Y\Yox;&0֤k>C&GiXyok Z (ƍNh}wI="63Nu맭ۓ^h'^'?c;HMpߑ.xbpT 5aeb>RYN_ "v$z$31v -)4=o9'4g¤nmz@c?ԄXj< Q[#O9Z][>ߑlK v!ȍK||潝|`I(|:~OS[pw2ŌGQĔVZY͐ Mi3L_5H$o6oJ#r.F[uJ+["q)KXg IDATOcE@Ey @d7(:ʴڔ>It(DrϙsQ<·uܽkKCܺ=ȑto&6zPsFy@-_ sh?A7g~w4g}$DL{-f!uM䈟YW?vB 0l Pp7Dـ\zmZ}Ox$a2s?ǿ71y'Wq70:Ȏ#fe0?]2C[hi=#q`rЇ(@IöFcy}{'?{?3nwc@Y=\{ T~f˹jSYC_o}z/Ѧ]|DLN)9\?kWa>~srR:?hyMa9fI] Yb|Dϛhz+L+MdsnK=cNR=&y-+l|+5#QU>- z%X"KsfTP6 66 Aßv`-3`ՠ`sSostU?9_LIį$R79tYqvy~G$~1]@#}O /"@E @L;<p[rǠ9TA?+ALu7y Hת悛'x!n Oг}C=slWzcд+NGcT̸䠟eȖ$t7e.)xWHndezԴ!v"WPK>BDQ6`cU~Ɲ W_`~,ph?=[[gY%Mx9s:(0LrWDܑ~00mZDI\5c%w? b4lMGԺ%3ˆhK[:3w챿ɠ6:vE|(AAu_亰 H5ZfRA`6[CbOl(8ӽ#~ﵱٖÏpLڕݲOxm<N+*TϏ/=Xߑ&zGέ"SHCU$ݿxtVwĕ I#->҂4 r.G"_ v6@2@ GZ*OH;$111tG ',wt6hwbgXqwpO4.OBݿ gE$Xaz#P>-E 0> иgIt0D2 ?>{{#yNd,û9wB7$a'<"p+>TkKaX92AP+q0 ]dgb\<+?=&=={@ԠJs#M}ޯL 䮜^ Z3]q>ZV؊O]W/N2 Ȣ#3l ;l(4sb|F R BI}I`W3gYI\J5V4WCA@s}@Oڤ[q%OG>=·x/"cYGuE8xg<܋ϯT9WbFm_PD t< 5j'1#<'>5H^+lA;W$dez3v-ެR{5NT.rQyM >|h4lctЇ_b}Wvxe{3[/ qy6Ɂ7e_zQ޿95/Q|RAQRt&Ob'CćD0[ݷFjօILg"XQ7 w8Ns߽ V/ *諬.+YcaIz4fe;z_NX |*d]}|oee/@⪏8uJ{Z >+zLcw/pkR}e>4FZ3 =v< 7M/9K|ؖ׳ɍ)<(̸VQ@.6_:ҘmȌ~ͱpU;h'< _XC&'7kԴ.Uq_l^D d_רٵ!;Әi/~qoٲ-D <)&\o#>tumn~;<փe9ZBEhcѡ k>R7MB7$=fYKS2k75!zB~5e{N (YG [Ӣr9ud# [}X3a|~粲?ԅVp8^b$k>:@6OЃey1kS io@w0[0xOxs G~Uk~bgIYۼ)vkH{ uu */>`ae5 =a2ps:>¡lؾfj_9ُn`u{ 饲a@3>7PW8|01BZq  LEcZA牁Ymp~ErhJ [W9 =ȱ2[/q8f?ǦZ9L,T'fxz];)+4CN:<ƚpW7G#z&py퉚-Ls gے4zVk-sf#;ph=A[±m{Nī\^Scc=zM&TyQd!XƆJ}1Cˁ;$FΆ5tv5| :}Oѹa3A-De(U׬(6LTrXCJE/F ``o^=x0+TfCKՋo >#IBp'AVLCꂞϵh GY@E>bjo*Pp_A۠ɭ+yߒy_ʼo~?%?OȾw'j>Ћ?R 'F͘ucnQk87\{ٵN;8u_)7/MJCbFt]ԜX,=P偳2@Z>,i+s@)-h\`V9&{=xXM(J2N5@U^][& ],A'5aq\=~{ҽ:iB#;wdO!-P>`O8V4=c Dφ_"؛IKW頣^>ݛqӜ| G`Ʀr<,'KzoJ%Nt0LzmsC?F斏Mܡgw؍ߗY= 0Y2<;EQy lcK}ϸmPA|$z6q׻Z1ɩ[[N^(/g4{<T63Jבj__e\`>8 t'm!tEf̭jsw,5h>XHTqJ"c[D"ے7G` gEv8yKg+ꦲMö8fs&R 8>œh{A7V,m[WTK+H\ ;ɸז"9+\;51MnŸm}0ASk|qKB]r`H@)_H %4Z OJX1~R7]I@`Wz(2x+qd=^bNzq>vw EDY >,qc336@It0uz"%ٚC&[}e4:Wv6fsx5(干(0%7WUP^WP0?c)x)Z`rG좙І4$*{2?Ot8wsQ| _>+ 5E,]՟YޛٴE tWްf[!ƘĿcgg7y@^1 DTʁs+ta ~YgbIgyvm)TVub}mlm^k1<ؼOlG] B}1Cj|νQ?΍O2z*JZy(|JNelZBG>> =ے& å0+\4]^6?wss\d=e纽Ɂ<,=V6꟟t +j]Qp~ْ&%7Ka? t\xm]^t.0S_B i\וs HJ(J-5={c&fcaGێiZn[R% AA؉}Bw=㾗[eVf- @~@^2os}b"PD@K0YΐǾsC5a,)Lf>1prA=:w~ss [u7uh9A4_! h/< =†j3ؘBK~ίe-¹]8 r#!v4NlsEsGL6@*j@!(SfVx>Rpn|vV f_] .ѤkRD( $ }ɦF)#~M=\bKV& % ̤sWskq]KWph9v ?8M"o ⦩]YgHh9I y9gY0tyb==9oqQli=L/) t ֶ A5. t v{H~tm4XgE|o):zxx`z >v <[0&-W &u"u,JoH#$7}qѵw8c~3p]?=C4ha׺f?9W+ۀ:ЁܩHW5L `]迱G k9?;ew`# 7;VbjBm4qQ- eTI@\7V? s 3>AMDsy[ "uw.57/{/7Na;w9xd-MLM1f__utV?ihw%9tlHN)Ts n|nvMQ9/Ċ{z@ܔNc4-L秒+"_JϣL- LF>C VH @u6m/toQ5~2l{ ®7Nskq˚&.;?0H qm ~O8=?q㷗ap=<<{0vx/r+@JـBo$kTRGе  >v{A+>7MN/oxh E `:O tw+u_wF:*;mXBrE/ig]58}Bf0k۱Kuw\ x%7*dBPDQת( L+Q۶U.h_sqXO;g)l'>/t C4hbŷz~2ۑ=,h]U@HXvW܅#/ Qߗ#XqO>^ڰ`<P2!0{g%@X @™a=;h+Lm?R0prm1'I| =XZ 9v&r k>c*_6CBw-1^i-²{pp~o7pWU7vxqeTysʫB,ds! NYzn`t.lЋVҢ}_ـ6/ga|Q4z\i%a)h2,%\?8MGcz;1}ж0[pq>`뮞Uq$@ʯLNk Dbk=zys'.yx݂{/bl(-?}_ـū/!6u~Q׉`(}i.o`LƥK6'#u:~7vbww\#Dw5m0( ){ew%I#ѶwW0u/rJBC IDAT7,kx<1_klDFɯ?JbLvdNSm+3h& .uȍ0NĄbm]8N=&p~o A%\@〫%HED`?`mٳܝnB-Jt G?`>Wa%x7oqG>­Y[\9[&jaf!kF烙ٓHj/]sTգ~µ_Y][ᑃyw!4N5/Bת+kGUz/7 td8Z0'> e{eL?YF"0c9.m89l!Lv7?`K}M41Q>῰dR;?d<h[\NEXp];1#/aɭ]~t]WP $`hJnkLO4 ar% ow@ ܍|EX}B|vr ggc ztZ;&M49p:_]UoC|҆6uY_cz4"~Ko¡p11)tV};\?)iS XƒY! v$,5e*n+\9vX*2?D7t~AyZkX}vqs5`4qU%:̬}otH q] ^m N?č~ƎfqC8} ؏E7]iuPRoaqz@t>:1}Pmk.7p-7n+q!}6i= ,ԇD|u tlLeQlѹ{dL V_&cz X|K'oWqa~ŻэuGZ3TN Ueq?`Ў?Jـ8ZfV?8@MK~x(>|8NOvܰyZ]M2h",$ jJ緄̑6dA{fri4/7T)'}xٍC q>sN`C ^N `/&"sOP3[ Gvm nKcW|P@IlL_C':\2lA5[Oskq=ͱM\"Ė@*yJ?Ecz1ݗ+ n\'r8 N3c4EI@ȩh$niJWtV0A"f;@N'P*Ys(&.\Vt%܈SF8:7l;{_.!6Ŕ_87rs=ab_'ǮqEdžK/Ҙދ+ tnŝYC>Imhdž}QUpY9^z{[&"Ȟsk-ݏ8]JG#$YqPr +quGXvM~݁>4~vb pнjD&~kTUQјS1mk2h[4cz/wtcM8ysx?=Xm@ ,NDN8*PaI$rI+D6/[࣭'p87޷^DhDJkRyCt[ݘ^ٲ8ӛ^U¸~,uS8ug?Gb=nw<4N~XA.9y'ѵ.2ITQ(H[s/$y|=߼ o={LJǁ/õw.i+k_~c~03":5:{WG>7r:([7^Q*L ڑEЂZ@򵨐LV)db" e( "hp? c0z.Wn/vu>K\Cl٢F&[{^Uw7괇Ծ1hLK? kp矬wFq!;7t`ch]pSK>1To>cL4sMI\$`gV="jl;|b}xr]ؽ$} LwݼY) 4q٢A@5 Cmȝ,+h_76q@ ,܃ŷtpQ Iax_+Ś@]5$*݄iYߧV.P^ϥ)v iW/ 7ݿn[} ?<#{˰ŗhbPrRGiAX+$t'Hou&kelx|og463c#  Oopp2gB@B迭erdUw '%KhxHxq˰8uxywcʮK}M41VWqS0HohߐB pkD[ ~_ "3`/q}xZ|\ 6.*P1D# X0JX?R'[`D`vFd (1^+FѓCߺG !5/}v} Z&$0r-УbߢuEɥy[XM &yo5խ_Sq|RgrSX (` !3#9 €%nGQH%}~J W)~ZhmaтEko]0z>w_<]XMڤeea`$=A{Hr? \(k XX ؁581t(Y,uB,FO)7k'lH 3`46+)@,-K$@I"0-Y@ ̑? :aDB?%X=ЏY>2s'0t:Eѽ9dylf>q3Drqm]_0G'ψ5<)iC HՍum88CN,҉Do5% Z>" pѾGRVр!E&uտ#`\|춒WlP =lfʶWu]1 0F@̸Xw "5̑Q ɠoYw5)ؐ`F<ؼ E˂<D1q3DdR D6L.9. ]}(y-0x]a?œ;Hv{XtSǜ䎧XѲ@m XセDYH  .stX[@Jـme9BW"b?$@Kҟ I7-Si>2048{t ~{Lv|<ߡu`X IT I$B,,ApCLԣ ߚ(TtY }-Xr9!8m-GF'"/zp܊E> Ff)abgsq}Dzh[r2ShP? ?G9WV!0V֓Ībo!ƎK5D%&}y' 5Cr܊;E(@U8.&%׋'M,C\"pWVGT.׍D@pP D ]@$=>"7`km@B^s/o}DP%H1P趈OrYL?%5pӓ&\u meBol1c}{~RM48F' <{KAOlLNw;捸$I$ ,\=V*y*~ h%WZ#9?lG mLE~UH~`%Q{L ? Ic`0+?BJX0=Y=pZhS/\`LkCXw]́ DGAnI*}2?&.5>G<k= !? ]bK`Pp(1.2rCokm?(?6 Rdڏ_n97V@0U!\*{=BlLWZR0Y0V" F #C>V SCx]pMI.EO~Ob_' w"ܶ-ɇnW%.vW +TI`u#yж+e&ʊߔ:ژ?Z ̇ym٠!d:)16).ThTKV 7ϔMN-[;?  ?Ĥ3B.0oP,Hȑamtb#RRW8yY 8E6(V_rnGs7}i3Oab~C eSkrcg^h_oG%tKkR+j?w:~~x{ \5~Ag r]F~R:+s{_hL/eʍ~N7~r-r>i0>ы`4~gJ/"K/fexaSbnJKG `aW6Z::$skw&$;0ȊZϱ{O  =v;wKw̓ȝFվ2(b=b@eM.R}Eh+5B`{/Üw`'^QYJϑ$`` QT( TDdoc#%<}R/M6_!Rsy"-hݐ6QѢ, ,4&9@,# t@P\f/ L\FѾ@߀oױ`$?~/5@8@OE3[nZaeG IXȋ/[uC, ?u/2g&^N;?ڼZ>ZWwl?Kw{:WG?yI,AeU]e`0A=ʾ+RA:Epb{ÍqY=N>YM'eL&bF?[g`yg{6y8ڒ:x;6!\A߽-DM`,JQπ(xMX +; 6ii@-Y?`m/#)tIU~LkSW[<#?y6]OV0m'DؠW6ZQ[~R|?! nY451{H,(` Zs=YgQԪ3y蟼 x{ Kbi\XwD@ƞ)k+|9{}uu~  <&Md~0QeJϏ(gR2`l9ݲP- a=΁|mȯrG5߳  ?D>+Uq(! Ak`,sV8XVxcz{ޯݿw`/ <9T`ztWH 4!&K 1k"6P0DdI[@-XRV|K^(|'ujBc#'@)OHYa/ %{dgpc:rz~v7xqcƨ[P^='Tnj˶—9!ߔ0@&}v|ʝx LoΑdIÝ+51ibȈ,,t.딱[:N% k-YcZO{]H;b캚oA#cx^Kd 3jPR#0mg. _T-նF"mb! }d;aы )hHHـbMC (E!+h(DlG"I6v_z x V7q%ᩧ{;!d!lGkZW/ٲ珳'rZ/kwE~q[AI{݃1c`, Drha@Ŗ*&꣑;MLa{/Cl0>&0I{oؐcD5k0i(ɚĬI!%H$Tx ^MXVbu.oĀў6dY'hY'Ït[@0Z /Iz.PV8b%g5"*~ގJf^]y?RZX7qy[oφ-1R8d!1*$\H0&lB0!*Eu.G.>=0Ӵ&%&VPzPh ߲%l łCPFtܩo\8 NطC}Nxl@DFti0BKa`|:czY(&~*oo0NE:BqT#;W_8G*8 bw~d04g%r·LΗvO@V[Eh6*=Rz*|s6+vl>$6&:%LC*0쑆%m`CM._}=y9Ihs[z$̟?D~H^;brVX,XSV8I{ IDATӱBޘH}xC{n0`b2X &bM CfP␘Pgr@CQ׊aDAיId/i$*&&CDO[wK)1-{0d Ɛb(eEXzK.Iߢ3 VV}LJ_o_w m U(2HͱtV 4t=ү|_;w;`J@X酢H-/`I%g.#ů@ Hq(OQ*E!y/ ! Uaa)P9vX9Cea;aVx@[v όb/ Ǎ:9%4 b &Ln3hYʳyGxzk#Fy&ђiۖI(y/M\ݛĚEdBV6 T` hc`!!XL6x"~}0A=|3Gnr-Q8!(Ace~[޾?> }t#7D(ldzP(b IqHèH HyRcy!q ġXh'5 ݏ= Y+ЄZiN0ds5Aǻ~wۮ`hs&|R֏;cw w8`Dʱ&n+,KVazczKMѾ7H1o`mRY[!*'Ĕ38 TX̔<'8oYЂYC!"֚vsrf\0~ <}a?&@<[ h=.I6ۚYX),ľ!2!#aY Iw?/A-8?5PS:0~}~.;ס890ʧÅ%;y* ٮs95Ns_}H-ϖ]0؀ccCHP@1%X=2>Zx(.< IMbV$ aIe)x ɐbHX&Ya+ kmC"X+ SO@5zgK>Dgo!|m7w?w/&qPp@A'4&Rw±cÒ| q(+hB C@bZ(aZr/o6i=zÓ `m+<@ hdLŠ^ӫvd~6$_wLo`I UҬFq~E# IGyQ*`‣$S^hɆ>&C&J&D"O$m=LNʚar> U^z1 Ob}oDb$a$_$؄Xu*Fe-{kW O_5+*"*~. aR?) mݻCfnUㄸza@M fLAzI }yl0ETh]*5*+^ج&ڊ7aYy{R RMҾɷ۞݃OZx|زi ]G * a"t}Н' ktBsABM-#H6}s*;=I,E;\[+'$EAɄP~Eh+9ЇY5-0$tN[uot_-Cuv0I@~5ꉋ#&ņ(8\QC"gf أBh ,VI/Nn!d0d$BbbZ|$HX qbDbX&-V{m+IaoʢZwă7"Pݭ 57?8{E:]*+hkQYHgHQP!{Bx}Z$ۂe@`wdkYiI cbQ]6q$CFȀYh%2 a1K k}ݺ+8_J:5oPbpa;vx&cz1ݗ~|8|jϓBvV,@ RdS!T搈\Q <Jkz8ԚodZV_ OTI;Zm><A°GVX+:À`QBXh[b)چ.Ap>_-`.oGWF[~?Gc/D[ F6:о7q[17^um+T]F~x:#K #(@ "m==>id`UmA^Aٽp?S꿉Hݴw :-]pIACz"*Z k@a(#h5n1:Yӯ#'m?Zc!3a;wCݾ8vl4v? =_+5b:(=OjGDt祿8"2@}f B(B6dHȴ(c|?-PR v;+L)8s(ZhbOӡ()-1≱>Aֈ/$'~ Eo3`4!xI/Z)qs T490czzG*< T.,ip #4<ј7?|zp!xLoL*dE*KG{TS/DQW0#dVqȠPyGڳ0:ZI$`)+#njM ȝi`nBaZ|rG (Ì5q XIۄH# ]&t `:xow$f'%^ĉ@G`:hXo}oI;1W`ԝ"dg^/ss~ *)zYV>6Id(fΑ~N$` ;29 9Hr۰iUlBQ2zJaX&!b-{E>`F⡛D/TR% y8P co)~UwJ<9-9+ %LEX=SQYUȊˤ٣p<2ڃQZ(c<. ĂN)]ąB$P OP@I֜ 0&%Bql59ϑJ;?X_BIn ΧN:MNy xm^D&$@/G1c*^ފN~:-&C+>ew:ZH~&#`R/&YHT1ـrDp.Pcz6Fl&_r{BTVQ篠\w+/$piQ,Ą^R{ `26;ow)]k& %l(HXBJڦT(6Xs1 YOxƝ'}ڷ;fRV-eAD2Lb }H}a $21e{m_h+1z, 42w$bE+ Ş'5t~cF98R^kNhaKiX_uYΌiuscyEry(ʷy5,9E+ kbQ 7$4Qb;<, ( Q! =L&1[צ T߲Rr4eEq PY^(4R*+ EXѶt+}EB)bU@o߀r!&`f^8"plhI"+x!+ (h%K#EfX;0+~]9\yq QuƋ<2)(z-rmX <gI|2勼 h' Enp5@d&U\Ht?2$1Tq{PC!^% ]VEN6u~7ۤ⨨#$CZ tYqgN&M/rQ 8-'bj.rci(cE)- -r}+Hc8+>i SLuLyBnCw[If$*\Pi[&kW c ͫFш?T<͂\g t*QVRYJi*i<6GWfMZހjJC/|EԑNё;ݿHW- %{_'`*@-dak^/p/ؘޓ#+m8:GgfÍeDQI&hWϏm= YG^bzQpPx…Zj +bćDԗm>j֎ 'CחmY?`FczM) P}o`0{-zL}ou*Kc)K~r*Ky! 9W-i4&D-YF!:E[N3`,{H|6qIJ`9PP0ՍmhLoqK`_MH4TV8wTV3GY-SJTb4x,[e9hrNM:X%l{b35  jVph/R(}hVf Vk3!lӮS{LoiqT6Ԭ0|RqP@(ʒQ>鐭Ri޿@W;_:vؤs+±gkP[͢'`|7y5S+i_Ӎ|{"*k*F1`T0Dܬ*dŎM&pQSmH*NoӕS$w;eo+\؂(tV=71g^ۋ ; ő \%_0EqnΎ9Sޯ;۵Dl"| ~l <~5(6+OܰyYQاAо7qoܟ:;=[ْ1NB" ;cGJ*BTJC1$'cw{w޳sgwdΨ9o|/W6,l;wfW,2gC$񽥕eZ'%eN=7 hy~,_s0>5K(#L+ܻelepcq{bzE.4{;uH!75Gcf(bc4h+ϡ9"2r(&֊戩.%ʢl{e/?"kRq!^M]a|dvd)kSQ|1}qm`w>t >zfǘKkpӾZ.*b_YYcHT;O:zut6ѩt\tپzJps`1OL90;\]B量+c1.^h~4<=9j~JeSTi y2؆m2=L/rf;92 w54GVӳ:,<0Vvغ֭_=f=8+\ ;|hSݏ|맯 gIDATUW>ѽ5 BRe 9Yke!g\VU$ij.]?IISѩP$VN׷>'Uy.?}\q~w`|@qn w }0.M:`Qwe 6G\!;@ `"8;}wcwcy<֮}A#z—~F][w|TNM\oU0磕czǓ>.*IIj0I&NI1:]!j ea:1N>/WylwP*_Fdx|/r"SbzCsT Mma>6GWލ- {ĊwnlbuS[1}pFH lY8<9XƏp񟞅i_Y ^XYy29sa{+kӛrh fNѩdHduD*)<쳏o6{ڻcz[h|Y2 S##5Gړà`66Gl+czyE `J5aObkF"N|?8j2P+ڍot<'8z5q{/=Xo]5푕5 ;ZYC$*لEv5]::=Lov*= N#vx @4s֭nc)rϴ{nDϬtqcy'ZƉ/;ƿͯՙ~ g azGs0L#m`(lA4G3bz?^Nad;on/"ssO<{XpVߴv<8o|5G1^ʚțl9azKW4:]k~5;_NN~ClMiű/ǎm:]wצ}- halF1G9?-ԐcPalc>,YNuv5;[\vaR{aZ|7;_ֶO|0xZͱ.8yz7~^z{;X3֋Uhe+kVVA!bBKeʊ{#P5g˯Dji; i-䫛,S,a!؏ ߨízܶ0V3_zWFl K>tbzWhM+J l a; [0m8:W}Qp8u2ٞ;V ޞ5`zpxEneII[{`I3FaJDtD}%vXu5[tfF_}[eǿW5G3czCο 6` MgͤV\MNz;ί׫'1{:c37, >YZY)ف`z9?~c^pbS󅇳+{YYIIGQ{Pt6Ӟ%n  7.bd O ͯ>٘L?&W&{Ou1BZ9yUj˫ԗa !xk@kF.h?~:[;{=ż⯪|7A-"N*G)pʲ!+k_}+.wtetڏk[0{:~U>˱9#go@?P[bz#o!cԞYڸdeQK쵕e [Y%LoRaeNL`Lb1_tOm 믅V6km19"X&c1a6)#&j*9:P@.rWlL>w6kRhFw֞Dӏ9E9Lo8YY=LX5ZYf*y1~2vRQ՞GLd}66:Uദ";/jŔt .1t# #2hOjahG#g!ldLYb=L`k-r?VG@Zz u<ω ?,E7ZY=$L/V-ąrCfe%%% jWt;,>D*J/PswF)'?B25G0w&LnlP"nԸla'ՎURs]\jA&Oo'˟Li v?̆=VVRRx;<>:ͭ:zFtNVm>ONÙ69 B&6G1/=܇=с/J픭=0;;ڄ pf?D ޓ.9rT5a|/keyCnӛ-*++))i{ ;Y;-F~SwfIqCڷGHsaGLə5Gv=fY䕱"/⤬~XW7?+ >cge(x~,Օn'ZYJ T1ŌVV&%jitB4^2c[zIu0 o' er<7f 樻Gbz{6U/6V;M\)\3)c+1Eվm,=K\UUU%- 0so1cz¨7|ie\k*vx8:;mt}VSkCQH5PeUthdR"FmR6GW r~6G({|lckE@}Vz2T$`^6.%"tD&׮BLRalRke]-$+bgNaVE,"#AG8?6GM#M`z >Lo]L~PZq}ekZq"Z;;4hm/(bн"`i1a@(J8DŽA^ce azsUNgN}W+bՊP^ NwQ8"SjtLo]͘ґ(J c> dl.TMt>"GSvRRҐfNG=09iju,$0PP)`IB|=PNM(eY7k$WK6GG-.vo76d| [w>@gdj7d >\V8A b$g*RغV}V0*&hGѩoBjtZP_@3 gbsRIT*>92mcs,uttnx`œ; 3{ekCxX*R=BOF4bo3EX{:jG #*2հ_QC-Ha>DLoflPjON-S9;ۅEF+SR8ڻR>D8B3D++$/yuRRiS%HьU*VAWA~(Y3׈=;dӑ/fg%rf^lmF iEvXFUeOF!J i,)' frSbȨ5𬞌ti ()+3e+aƢMVVRR~kѩ-x2ި0#fu"̙cg"L~)h72!XΈQbVxVQsW20Yqpȯєӻ(݅tyTPdD+1+ (1)Aa=A3; \+X ak w @:PaXaɑyk d(xe%YYIIIWfNiw  #q['kHR\C"ge27Kz0TTTEB4MN 2T VQ@fRby\-єDtxTeptبB2p-KX=e_hfիu%sZ;sm2R0.l"ۂS'8`2TXzG֕6Wr1de%%%U=۴Qc̑Ad:;YeQSϴ)p+r);,v 6<-/xR.d5-٦rfi^EmMte%))ilХX{l;R,L#[ 5595j.f_9TBܷF~"I;?~-I;vA)`.*` LMMS project Projecte LMMS lmms-1.0.0+bzr2569/data/locale/0000755000000000000000000000000010401051475014072 5ustar 00000000000000lmms-1.0.0+bzr2569/data/nsis_branding.bmp0000644000000000000000000006243612271312564016174 0ustar 00000000000000BMezl9d  BGRsTU)(or^b>Dqvpt" /.w|>;6/EDVYHN򕻘+( ')EFJC(@D󘽛?@<5>570FE^^ZZMPLRʹ?@ *)8;04GH_^UT?7$X\̻MP93?6=4>57/FD^^YYZZ\\DJ]b\_'#587<8<04GH^]YY[[QO9-! uxgj41A7?6=4=4>57/FD^^YYZZYY]\YZ@Ey| $258<6:7:8<04GH^^YYYYYY[ZLH0#;?/0<3A7>5=4=4=4>57/FD^^YYZZZZYZ[[`_PS?FӞ((5:6:7;7;7;8<04GH^^YYZZZZYYXYOOECCH؟804.;3<3>5=4=4>570FE^^YYZZ[[ZZWXPQON?Dբ 46-104597;8<8<04GH^^ZZ\\WWTTHJNO^^EIآ>4?61+5.:2<4>5>57/FD^^ZY\\WWSTIKOP``BGԡ 369<48-226599=14GH`_WXUULMKL[[[[[[DIآ<3=3?5:12,7/:2?580FD``XXTULMKLZ[[[^]AFԡ 467;7;8<16/448/3IJYYNOJKWW]]ZZYY\\DIע;2<3<2=4>56.4-805.HFXYNNIJWW^]ZZYY^^AFԡ 467;7;7;8<7;15(,94=46..(:9OQST\\[[YYZZYY^^AFԢ 467;7;7;8<486:8:=>OPUU[[[[YZZZYZ\\DIؤ;1<3;1;1;2=4<280/)-*FDVW]]ZZYYZZYY^^AFԢ 467;8<6:26<@MNOOTTTUMNLMWW]]ZZYY\\DIפ80<3;1<2<25-2,5.5.6.91=8GFXY^^YYYY^^AFԢ 578<268;IJUV`_PPPP^^XXRRNOKM[[\[[[DIץ7.:2:27.1*4,7.>36-4,@6:092>;JJ\][[]]AEӢ 1326EGST\\[[[[PPPP\\ZZ]\VVRSJKOO_`FKצ:090.(1*5.:1;2<25,3+=3=3?490;5@=PQbbAFӣ @ARRYY\\ZZZZ\\PPPP\\ZZZZZZ[ZUVRTJF<@բ1*2-4+6-8/80:1<24-2+=2;2<2>4=3:1:4EB>C֠:9\\]]YYZZZZZZ\\PPPP\\ZZYYYY[\VR7+Y\/23-=4908.8.7/:25-3+=2;1;1;2<3=3>40&!ءXYKLNO^]ZZYYZZ\\PPPP\[YX[\WVC9#/,ު~ׂ--7.;28/8.801+2+<2:1;1:1<2:10,.!آ[[ZZSSGHTU\\YY\\PPPO\]ZZJC(шY^1.<2808/3*0)91:0:1<22*0)913%٣[[\\ZZXXMNJJYY]\PPPPPL1$`b=@5-;22+0)9/803,.'7.;1<23&ؤ[[\\ZZZZ[[WWGIPQKJ2(>=Ս221+0*6-,&1*7091:1<21%إ[[\\ZZZZZZYY^_LK#($ѝ`e&$/(5-8.8.7/7/:20%ؤ[[\\ZZZZZZZY[\KHņVX-(5/5.8.8.8-70/#ץ[[[\ZZ[[YYSTKMGC&}}YZ0)+(.*4-6.7.9//"צ[[]]ZZTULNLL^_TO#ƀYZ1+5/+'(&0+4-80.#צ\\UVQQJKWW\\\]RM$ƀYZ0+1-2,1+*%*'2,-"֧SSMPQQ^^ZZYY]^RM$ƀYZ/+1-/+0+2,-(+('էDEWX^^ZZYYZY]^RM$ƀXY.)0-/+/+/+1,2-%֧TUNOOQUU]]ZY\]RM$ƀXY-'/+.)/*/+,'*('֨\\\\OONOOPXY_`RM$ƀXY,&.*.)*&)%)&,*+ר[Z\\\\WWOPLMTUTO$~~VW-'-)'#'#)%-)0,)ר[[[\ZZ[[[[UURTEB!̆Z[&"(%($+&-(,'.)'ר[[\\ZZZZZZ[Z]^KG!PQ7;&!,'*&+',',&-(&ا[[\\ZZZZZZ]\XYEE>Ety   94ԭRQ!1&A;QP]]WXOPGHXX\\YYZZIKZZYY\\__MPJP–*0 -'͈ٮD>1(LHJKTU]]ZZYYZZ[[IK[ZZZZZZZ`_]]BG^cĹϱBG %iiՎ70=4WT\][[ZZZY[[IK[[ZZZZZZYY[[dbVW;@BG  WUvv+")D-,:9[[ җ㷅Ήlmms-1.0.0+bzr2569/data/presets/0000755000000000000000000000000010401051475014320 5ustar 00000000000000lmms-1.0.0+bzr2569/data/projects/0000755000000000000000000000000010401051475014464 5ustar 00000000000000lmms-1.0.0+bzr2569/data/samples/0000755000000000000000000000000010401051475014277 5ustar 00000000000000lmms-1.0.0+bzr2569/data/themes/0000755000000000000000000000000010401051475014120 5ustar 00000000000000lmms-1.0.0+bzr2569/data/backgrounds/CMakeLists.txt0000644000000000000000000000014212273201253017672 0ustar 00000000000000FILE(GLOB PNG_FILES *.png) INSTALL(FILES ${PNG_FILES} DESTINATION "${LMMS_DATA_DIR}/backgrounds") lmms-1.0.0+bzr2569/data/backgrounds/lmms_tile.png0000644000000000000000000000067211065530735017645 0ustar 00000000000000PNG  IHDR@@.bKGD#2sIDATXÝI Cu4?K/zFYB3HO`n7f6z|lf-u=@޿FSn> g}fcIUp{Xz|&I[_՛[_՛[_՛[_՛[_՛[_՛[_՛[_ȃ(CA *"TD< *j "rU"l[y#\3;\z^ʃRAA@Awădʃȃ:< uNyY O* *b@AIENDB`lmms-1.0.0+bzr2569/data/backgrounds/newbg.png0000644000000000000000000011462112270025747016763 0ustar 00000000000000PNG  IHDRU% pHYs  tIME9kqntEXtCommentCreated with GIMPW IDATxĝmrIdP'=tj=ݎQwݞ~ׯϝ߿ku<7|yvY?^ٹvxε;@?=/|׹[+.usߺϟn{|zzzzyyxogi_>===~^K?ׯO"Oދ{\6Y{ww~Y'۾us=C?sα[+gxY5HΘjG}v(}ti9}~~k>W`@?tX ~zWZgp!~ݞ^^^,*9=Scw^DcrN^ ?:#n@^cg}rϟ??[sOI硁QϏkS#qM 0~s_{?}{SF'&{?VϙZrܷ 8'p#vA~Yc+Yn6CshW?~|jgԆmwNgסU[-͂^{{ UNst)kxͥT#.S } -B>X5zgөy|^<|zp&wN} :y~~d mpkTxI#v1jX pĹ=4ЬNRG۳___#iݏ-^A' 95U(V8÷O߯VĹg tL^;ݳ C%l32}Ǧ~]`]ĴYj)CP=_wk@m.>t^o0 #sg)H[P`3uXc!?'j:ACƓp얮ղ| g.ݠ51STgP|,\Lx2Vw8 118gwHJ׀Q:ޭ1n8m~vsZXl;INgȈΎm>lh ֵt?oZ~P#ŞVç& kiTA^GoJ o\O+pS3V<ֵrFj` 7hjC2d2k͆Nq75~:'JT(dr\Թ^ ]8߫\CϏfM.eFOkZGH0} ``ytȝ1"]W;RBžz&5bkNg9b}~w)@k#/p\M(՜Ϟ ?YDx']İF0Q@tQnz"sdCuR$'8ܚ.Ш]@wn86#|w*{8,:F d !̩19䎔mӨ3`{{{MւT^WuYmf ɱsijz4g1yua,Fv-ID,h a:Pz/ٿb5ͬi"݌zxY褗&>u֮hh0T|"#L(nV`s)4RǙ(3~6YZuGspu?}3]Bv s|z \0A ޟj>WJI'Q@"׏vN6Wߋ ys{?h zvnS̈S[wWfZKX>ְQTUj* (=i)pq3[1* wlc_H5'П+*fkJ,Dvj3\\g-k6'?׷Z  \KI-aQ{UȊYTshqlmlLȨc$[Ϻ6庲Kud>U|i^⯓<~nD5Ǚ7v0]T4&^3ެ%Ra4|̩O$ȗo 2 coS){S M8{ݏz'kZJԩqܞv1ҕi=Ѧl;&w804HI{ZϑJ%5d43 n -~B .sZ9dQ}#dCݦ I̙)q31Մ2c!M4VVwooTԜ(#YPBF0QtΈ8v&؁\RׅG<5Qx/EϮp4pRX65ܺu qusl)軤ܴ/0(HQlR͇7CsSY!ewoy)A광GJvd>!)j[tZZZХptM}PǜsustaGӌkTW/h)>7c:KW qk;M҄Ji晴F uӦZfj>#| an9&AeTm? V0BBRWk W mcަИnh'XMYtvX*pC5tMnTOl]Lz°"pv99FLc dXUcBr8(,k!ې/qFʦ|IpE$'B ǩ@0N㞜?vi\"|IS5(ʼkYN=sʪt]ݱHvA#5pGNc9H2qA51IpZ }r'(Sy sC,Ukul }\E;熈]!UoH1Lm|.:TW2s9En:i I布F2"n=ӟ5 DXd-Eyw;T^H6,_nH$h4cgؔyG%\&Þ/ 0[raYuȝIJM)F] 1H)g-(z$$Gm7k@)9b[\s=={nSk`%!rDʺcʩ=ΈLO4i(*Io#XI-ty*Y*OFwHAMۗסi'kJϑ@?ů{6jSf[;unӌ˩qbJpcL?I1%2E^T3N| 9֜$VmE7SD%b@`9'TdӷDAdC6YDMhOXjw3ZrSHͪ"̧pe\P1 خOfʯh̀.Jlڪ&cd~T\VC'|O5dgR)wTIEtϼGp#T8l R -C1A~tM 8 jMrS]SbժoW\s-o͜˄R7F:I߸əjy̙9A4K t{NGgH)+oF}!<$Pu Ov)4`IX9Q%WsWR¶/jnjanO<2S$~ƢSI 8bꭦ|u*iiD@pۚf[MdD8a)E` `mJ2c53LQhO:(*]X"DkQӨ0M."b'(4Vvhr0EZrTlo{j͔C]$޾4MgJI?GkMA_F[nsMm bl&`A:۱3o NIcRrg)UC|CEGNa\[ᾓA0Sل Z/Ij1,:F:HIaLW\wM黚N{%HdI.vA[TlZR@ٰY:6Re5zs j,8ͥ)&/5:W0V'R>$z#&"x椤gtMMcwc\Mj:+79ivU*np9lZރcj:D2YHL,niifjOՎ')-"%)ro'n`>O v;Pb'C nq2Tr\⊟n4Yz nMAb1+j""QW2ԓF111?_цyZ+Ub2帮*ZHuH"mi Ϧd!Qj*0JBi[2G@60m7'N8;M).;jtb\6' 8aɔl"s]:MM(U*6V)m>Zҽ{S].RwلLfRvݻ9?mjdӛrq]T6 VIK $ibk0-osZ&i7Vq;uj$`>NtIcǶ,#+94'${Ag:GZ.k:xLv/ e/%Y?J t=cv+#>փƝ;ݪA3Qf:WHRGܘ8_Irluԇ;DFHSEE<;?G62WzI5mjULI dqGSyCfIz]*C9pLS'.e[h6✩@[4ZtÐ#N+.(YV3r%)=s\ilM09)ҟn=7̾vc8)z c5!5Fs {v6 t4 6s0{:FD7L+;(cĴ6QNr5ᵍ첍IgO`2 5M[XO>ge{XS M&;MuM2iCZkWI'sr0.Kؐ:v[mvsI8Qu d-spԑ<ًIӽ MS%'۸nQ{ 1-E21=9% Lp%DH nXcwКj&hhɽHSfrfVZty0L~v>,dfcd'9f6gkت's4ɆL6r,6e8S2$B=77谍m){);lܼ^IYئ`xy1LMshjL^s›̑Y2ybB6c hI~a)KR)'BThp,'WY|ӲKԩ_h#j Vsb"8(mrgkSǛlkQݶ8eXMMa9K/LI=`wIݦɆ_Bdü]7t&@J!W#;َMhe0m!n8?AڮuiZٵ(4 9QVqM9|b٦QxS`VSR3 |zLmQl7ȦDIP8>I=a׀ڊN&aS`0: rh\t/ba5M=sqZ)MdӚqߤ8a TGq0E:09N]W28=~L75^6.[jvK)ǔ-Lun2qM)[ SSorRM{3I(' f~_~=ݸ8'[PP'Ɇ11lj^jN hr&h OZZo6J#] D46:L@Svq5dDb VikH2Ε:F[ɠny!OdzɡMS2l.E884I t_|D=.ND. ڤ$rU=8!IMP'y6g<6l@"n TYQfv11TAYi ] C%GNtjR ^I2G ۞߉ Lf , 6^3E> ~MKD|uIZio"v$ l'p0s t٫J jL ɸQM~jAnզ co L~w5}:LܠS6z(ގ΋%K\FnrbJ[ڙ1tSuĴ)D벥j/QcМcws#Q4E[f Yk1~h*c2i©:+ 92}Y*(:Z$]RrSMMbMgRcf|LeLk9s;nչ2&X(,%fE|nZZFO{1M`V3Hk2­= .N~$(9ͬ+usƩwSWkLkEpSIM+ϷF~sޮcW+LuNH;C99P7Ry lQ(0Ff'ߖ7֎UGXFS6[? 3J4 mb: Ο4Nm=yRTIɘk`8}eP"-lUVl&)(pMc;(74~N9/!K A8" U7g jnNZvC΍R-g[ n.'<8&'BbBuj;NV_е^{s/`㤶 _7At϶`?{F_Ɋztٹb:=- 1Oڍ Ѡs/4uF/P|3pJQl"Ղ6mU5"E&*vq0&NMDindӹQ MhGeNA98ZeR_l9eg{tr8pU`bl64r''>0g`f%v>;TZnR5LHMtz&St4}J< CRhkM:ëSvIH )z0>%sLPKʢ&qI5~jn2m^C#Hif6ef_t[{ݶGڕk\y+ 5I<8|9Gɦ'[gkOVW-QfrڿMA "=C6LR'}&h705jMN9X66m8Q60l;ӻm§ ?Uz$sBh4,'YfT{+0~>zͰ}^qsn?C-͈Бv~clFYͼUgpe& i5JKx#wp'm]_NSzm4u;yd)gA#Tj Vms~@#*z7;o)s趘}:{3-*l |W6ߟqWa AfRiii!:E~ND?e]X'˽mm[c06vVѹ=]%r9{ ʜJ7Z9]h'j=]dzZĦj;(1*yب>˚eC-q]L0Z~Gnz{^\sS:Tt(YbW3MIĕC@lx8: NT7(|#cqvw*nk mEV:#*`q RN,QSD@3aӐ>]*5ޓl%7ţȽsW͕szog<̮/{:ޘFHS,[\U%ni5I{M)mE,“WuT7 0aN9AvP9h 5ܓS(Nz1d4x G#δ@b+6W&Z0#}4VMRmbg6mHjhRBhJ[Ȇ26ն;^o$h&ujs }<Fgb%GL>? ʛ4ylQ֧O== 6bj JZL0nK eot('xǟq,v l>Zܮve;`I p %I0қ$~^٨nX6X2A MpAQ3ІNf/|>wͥ|wN.kJHp% `==:bx+mcOq:0 zs`=bw'Zq$6ǍjT(3CH5s+#IZ,vOQrWj3ߑ8˽3&GVA=ns˾]>Cj-Tnwݒ0 6I퐲f9W(neRD~ckͱ]uG*ԫ U'8Pɍp[ؕh.h-B'R {kS~m{m뛈 _hW5ծ,4# kA: ԤM$ߢ+,ƒzZLb̠'a39mt"'p"CC2k6r",qNP=I-5}һR_ڔ 8Ks+K@%(BxboC:9Q!LTpn/{SVM>?hNą-hC_ms[F̱? nզ|ȄkߕZҳfj=$H1#}Q[ٳ1MPL%vEalix8N1G'4Ai(&&81jǩ]M7WPf y /o۩ɱ-֜!E 36M;njB [x3^ʙhWt˽lۻh83l 748M N^g칁}/urj mT6FmU ŵٔNjW$6`6[$LH|n!wꯚ֨LumpSoK:6?st,#MMbzP6#s{F>Ӝ)NuF\sStb9oW}Y}Սu ?m}۾{le?~4Xj2Ø~"&l},4)cJ<75iû<7{u.o߱ZkV~'s)U1}whF[gЂ\sԠW=mAx/?_ &ua]2~ӆlҦK3QLa ~#c6.'IqJ̚AjC5R9INEqFw9C0DORvsί|~alfSrPW aMd63ޙ:ףTJIHm[XޤixW*H-qEi$ƽZο___ccjbt+n›n9NKl̏D}&L@&H3-=Ie[ksh]hC'FY0onjޠ {mQZVZphj3A_c:zM8c(5Ķt|-Z: D:ѓaG3n@3ɀ0;07|K8SR 51.(t#ݠ56䕒F]jbBgLi#WaN{ wkWs=znۖ:RVT[rJ#4%A-?wf8xl09#\$0vM1twȻ\Q$Fi/4WʢJX˲;l3YfD&puߵoZ=%'XmaNZf-ګ+c4dL؟o%%?s|̭z85vJ2ECY'x*zWYs3Ժ2V#A f&DM4+n6W8Nuw\ȕk-okM^ =CN&n2ЫsڬUQz4 a7;ׯaٵVIJ WW0+=W.v||hڝ8OAv-t $)'8#9mq]s.KN MP z^y[D8Eh19}Cuw{ޱe7H:Ty&^'꽵V5_\7R10eR͋owASIC8礪kjR;IOp3IF}/aLP/׍ T@`M}uKwzĎKk+ҷ&P1#jל4_ell'kSƶlҙ~/ul)=4- =̏<:]Nw.mTEcCaZ( S#^c0$EJYt6k{D+fUq] .r% aq+`\kKpF |S8$""GW(5UƱo>2ESFFKZO͆WWژ޷.=M&Vm -H{S4 { F+`5^5sv8 [s3.=Q`8YkjK=s4II eF 2eN{'5VMɢoγkߕfL|AtΘb43e, hhm}k{\4 \?g}a%>^'sHF]кgҨjն;*ZH_AʸV,r cuչuLs9Nu:ʶSIH87mL:N~l"2lt76ux~~ Ğc6B6-2q\ɺȈk=GAH U‰D"st::3CZ_{96;jK$c^{|Ҩ #UCF_As> YWN&M5l8JԴs@~9^:QdM@AWt\(fDR#ΉgC?HYwYr&m=Y4g01J{(A4sc4=ES{c4qx.CJMuo-PGwD:Ӏƫa)%c9MjMkMܛ@ۚ#jo wFlj%@'륩5 IDATgݻ\muJJ _ThaRʡG 7y#M.A'(F sj[]&l04iuSCwݮʍgHVCH( ~]O 89 Yszt@]n?`w 8/E VjzTiW{'yH4=ur+G5CQg@]z>8Xo_H7ljLN@#ܔ(<#y=Z89@yOdXn \N혼jUĚϙCBׄq$ֳׂxJ،i2V[A*d$ۏw7`)Mm ܌\:c:6͞\f\,\MmsrCˋ63[Fm @sMpd ¶v\@` 9@>9\ڤ4@϶}W1&1)?Hوl9&He[[j̹)RW#?WwĐ:k1ObFcX տSh<7wE# lgsZfEHm}_ M*nU1t6h\5'hz维v{J09SSMj!AF{O4^mM5+R@aD>P+UI)Nu0$9on/4;Nǭއnx:GGNmwX\f";&пK\9/1W`I{pwN{$-.׋llS[㵓$_{qϛ4fgw.=\= t!5@sاyJ(JCrC8+PjkSsxSwꐚ,Ib9ϙ:I{狴Lp"3mJ-Ĉv < ֺLa?'ׯ/Q)L&ZhUf&:l%?hʚTXZ=EG9EƹgwVy#\Kj8&+6*{5$ҙ=e 6f#*L {@Iw,47ꘛ0ݨ;3j#T5Ы# a9TWj:Di|ʛu7fYshM}9'm.oPΔeN\Rp5[m}:e$ ІلFzNyš"-cv;F#Yps`NMipyt6]ANڹH]w6v&W~1Ң:&z^z'$-h1^_n0MgwK9Ooy]FHpX3CwpI|:tI7׆&f܆yEfrlٮR f4#ц45G[񞞟?k4G~;۟aŽTOJ'wZ\3q ;FwSBAR|-dV ֝آmc"5itx߳xW9o0 &;Ƶ`l)6ιg;P\9Aq (iCiiI^VcJtlܒsDitXB:d55лvr`&?66s-R N^d/VO%ّ:5ڌ. eZ | pЙ5J\g7g"&zW&2rtKW޵hNNvNHwrC.=sMr) ṽyh\+g[VJ?edԱ0H,ǁX15G{|QaҞalgߥQ#!đ~hD5eӰ-6Xc v|":` t&x|N:ĭ UdxT=?N'Q6LԒXq:m90(Qk3LJW|Bb]ҩ0zwAisVC.ii_3zL  APqwsg#)s&R?&3i1tSK#^&.)ch5B'ܫM 9xe1n(# )ʮWA"{"#N&;2I'/5pOrEzoHn<6N 6J, 4."kw.BK#)N C`%fv1qMӈb;d܄i5f.CuF, ˸c:i8ˈiܿ;zˊhpgADQ2 Hgyc :I}Cn{{%l1H ^OOOO 4a3j`HO,)UN0kl٠qLAJN6%3.p9a4g3^ņGfdʖЌ6,껃<5$5r(fdY "NgYVw#etɬ 1ZC8܍pxTtmMec9Y|נM9v[ӷJ ̄Zt_ܜswMtք`zHc^ܾtʺ׶_{tY`dܚe͝>;n&h٥Bd*V.i{X{@nSKNM<g,d##Y :@y1ڌզ<錹٠=LIkne9MhE3VӻQg6}KL7?ߵz:wɍfYyLQ>(GuXWYi46:)47G{un&xFo"$0^& ϹIwOkS4TOj)zEѓ]qL-:a"8Zs+߻[Q٦z9JFU1Aܟgz#p ۗsz6SS-)I49s3!iynmTCjM){o8ݶ\mm=銘IsE M۔t\N_GZho$Ks~W*^tz (u:܍@as`6 );XʰhDG!v\!m; A(󓞞ެޣkjw䂓ߟq7Nِd=I+vS (c2j@LC&~%tpяcCFvY)q4d7xLa2{X@z:T/M2tMϓ>{/yg$ 5b67|בROGAnOooo1zQq8 ^&a)^Y JQ=?dSPhϭA]qD#zѐ:EwuDI5|cV7]i& n׆)[H޹K-H&T1i@'Y|>wD֞'tMNR]Ndړ DȖ~ Y"3"yV7zgݤ8IT QǍs3fMϼ:ryI1VYjftٚQHvG68k IdJsny(I%r~]#n->єl'Hx*;V&b2–cޢ]/K2VN]ߍ?סJ6H* ndbϝFl::=%O|ӈ& mކ5٠u{oIlSt6&RZ4GFv2#}`8GN>mTWuފn6sowsɠ'6,*&ۚ}O1@rzZ|yykz.sn{d K]էZO}NknԾg}IZFk.m)Q9uddqޒõ9&( tl |7TT+0)8kkYG^|M8"%?$BWC\H,Q=w( Sy&^GVKMGc6ͥQG*{ªD9qSP3C:}΁ԃȃ m1M7NM|ҞjzShY'x. ,lSF]❉O5RvXS_}\+gEw ĘaWy$;+l 6bS_ؾҿ2멶n$ Қhveoۨ=iikr>juO///u&}MeSwX>YߤQ;yr- om1Nls46F8৏U^(#n"Xp],k[MzKr&hӬ>t4nC4WkoZq߮&`HPk'ݷ?O<'t kƪR"mio$47fh> TZD?o6c M=lt3:E&k\}Gg < \1j=6Od4]DsˊAN}WS"izwҵm21,NNȝ)=3z;{Q39#~2"|ʚfljLCaセ~颹i~}+ O ̺GњspJȥ1ΆV4169陶Q} IDAT#l73rΩ(8kޗӽKmd}*;Xƽ0q}A79Fʠڇ46c"l&凩e9 9Mp8џ[zQMk86Yp5HzCKi]6tz-Zn7zMf>Ng[KM&DѴIZF~U| r.1dFbL0Ұ@fiĆ~4GmwF Wl{9.cHpkx6EWZm긚t[8 9.'|Bdf-@(S}8mݾ{9&fmC3es^~752cx= JtgeWTNIʟ_ќk=t&nV5Q_9LwSȮ\a2S:|uZi蘜պؕ5ꜷL6e;1x6BN5Z]I/Ui/mUg>eFzX ]&84DJ[ao7tTO&6ؔGZpyd$lUeI1O/U2M!^ȳif vL]u?.ui6Fۉ0IfVνy:9TpђqIu2:g~%ZhYf<Ƅ8p]ׯ_&榖:Нq\AIFF) !E.49˫,!kp6Hoc@`QWEZVj?Wz!I@eE&d]yjL.ڨ L0tsq/ltjp;A{x~iC\HDy) c?A- Qn}Gƴ1SVkmd G9Y۫.`æw9K9mVl%$uZz^Bhjf P]N{dDjj|CJ(H1%t\4;=ޛFCCi;pmqQwRv8}r6{1G٫RSsWU]]mRHմk)cRF6C:2+.9\oΖjۉ'sDrs)хM0tqEeo037eL&h]ј'cRdmmhalb'er 澓im5m=$M3mn)Jb7fB-&1١Fb6S^֜9>/Iޫ~*mrtFw#¦@aIM}1rO}@m];1MmLNt.PBGdz/ fLnZE'apm=}3M/]@}5e`X h5[qV~6% p$u0LX1SDzNRfPeSn5==ʈJjiM'reu21 ݺ3Q nh7NPPal NeI}z1ZC,ebr+ۀ8DknGMMMM&5k̴앂OOBjH]GSLžIq v {;[ؚE]w^SO gKi 6g qp׸>[i*,Y@fqͨ7rʌ~hΖ۞Ն˔ s/:mlUg*z$6\:C&F4XILכzdӚ?q"ZϹb͛NEh L)hٗXT~4k{ʸIe-fG~'B;Yt :hn-@+ڠk~~qdtSwO9inN#LdO4KP𔕦{#KԪs};SpP/fvnBکG}? aWL0@.%w,&;`!4~sӿCиt&Ɖ ՛'{bmhMd679uoFsojؿBbjk?iI6`SOOuB&eǕzy H&+Frojŵ){Ǘ7#Q^M=;i֧l)u* ~Z&V6K{(uԠ^tXuM9'1A=LYU ,jưLb_Ԙm2OLDsm E^k!⺎1:h V|lv6j@U+u{T7ԓ2LӞPBm5`tϛ?~iP#I$d $*ݼIjMS6&7)k}h[b zYo(6Nyu:)뤞Pfr5iN*uL[ߴyJ?WGZo`Og/Oɕ3)F([pP8c_ֻg|u)jodcvߤ= ~Gs2ٛgvj6#jC h]*)0lp>w[sP j:t@d:%'/uɕ)N#jtܢ %1hatpoI({a.r@c":![p461wʔ箠Y07#LS6);|#\dI1" g?nبoOՒjY jxS!֭C:\='jJsҌ({2 $lee6|dO%45O0Քuo3d6*n/k`J 'ϟ?UCڤd:}M-52y ?t4UpVWGv\sF3k'-6ЭGPՠ1CtCMNEr5[# %|4osͷ/YݶLd†LM 73RPv3ƭm*STM*ZV 4}漇,l3M(C"蹇ԐM 9M49",Hۢ{m#WEG2孠4Ogq7v>{Q\!Ҵ߿Շj@gT߰_ޤe ᢂ#htp'̈́ݫ: n{cT:Rx*1s֬R=}iMkPT65dN !tT3kA;wnb;3Ǎ m@d4G Л8#r)1LNzDnw&Gt-ao 6!vb%x?|z4:ԃ,7&\ ?l?ou( Wz@{[d׈fmtJdu-ɮnIMQm>ux)}4٤Ŷp;[haKw&I<M3O}igSQN9R]/ nFP{MHI5M/=w gwA.mFmdG} Ύ'{}:gJfQ|؎Fϡ+gSgz4>8mѶab'RVd:6pIWA ';hPAVi:Jl`e j'%)Փ͏-j' A`[P36WhFx՝CDEλ^oo6Q7PC_k5{W]-ST:sM3m7"ics܁i\3ecm:M0 :%6g{|^uTmиZ9)lѤ2+n/ّTJ#fJs{V'g'Hݗ&9zFN ϧ+u)W7 U5+t=SB>7Fٰ7#y槧W l{)<}w"S℟7ëMA|mLl:N &N =ՠ<1NA*ns IWυ~{!CFL5$InRoAUAævY"W!%HVތ`5 ~~zz}}=wi}iMA|{{[mcLqY]rۂ"t ƺVDӵ1["Af7SOmF/J`{烗o 5:MFJ<1B緝m@v^[`JnXmdlm9ܚ=1[Ѡh$ר~6HnҡK .&o6ЮTՕɷAyW:IFEtJ1m- z EP+,&` c"c$*lFLGi4cjڿYgvhLlwl~cm(5sQ'z1-f'^ӡqD;hu¼Hk71ئ{Ks0h$ ՖApp;ޤǽ$f# ReCٶ8Ir9R]dېيrZLEц/bc}e 0RLfܧAijURKsLkOIRgKcP {I05퓩و )@ tvԖJv版~sljb]%ln{˯ԨU@t}hٝAJNB. 0'FJ "eImTvʴQmH5 ROk36%7ț&kf4*:)IG89כZkjLk7};f{SӘW6nZMuaV3mі^Җ쿃֜t"9qok sz*l͋CmaKOݼԷs)MO&-6ڸ 30 Nh`{6mow.QZ׺cF3|Lç(S[jDhw2ז:o'ۙm=Sܤ)(Քi>i/uHJ[c%&6c1Z]N0Y2" GvDv4o8/M\4س!9og?9ס<9''־?eKgL]WRSR gq=5iPss%B3ĭDs!yM69e:wJ5ػ|2~>UKXscFhwGU'9RQNht  =3s8V|#)S#a<8;Cmj$Ȟ=j;a9GςcTM8iD}纎w~Wk,ݙ8>$c=~Ү3ra358 uԃ46UoNΩgP&'G! '_ؓtcJhӬ ʰhT2lu hg'ʧ;.k=4 =4 `bnW7}Su'}C%#h 'a0L1BXY3ƹnar3xjf,aV"٦m`z2Cu"$A9?p~Cϑ9OOOO7W҃TB)J?pRQzZत"x/!֐"wG QN.fmdQdK |73Nhi9(H?|Nt ;{q5SV:ADhM p h JtȐv֓pگ"GtHTzb%Uff:(يA+0w{< yfn.ҢT<\1t6q27zOpXuvԶ[CSHF|CnInӿܭ-;M3fYVCIBzdMc2'(u&a.3I{W׸zmڋz\?4&ѢBI^ :x>D2`"}zxY`H:u*bSApW(S-EW ka5 i6aq}u]6Rz7)Q&ϣU2x=$'bfd4F:wՠup91uK껜R;ΙС~SO׆J4N0ru]6nH.S`:cw9QgͰPXAG<=G;oUmλw\DH%Ӂ`DlHu s&G|I2sAATF~0.bRokir;Pe3miʂ7w;Y8%J<\iH*|Z e"=%,=MgogbWϪ; 62I$iN[eպ3v༳o9 S#>i0r9;SjܩptSAi]ciqݵT ~WbD=-*'(DL7{)G75Z$#IJ:)druIjY=5'}8[ %pӲTsLF.e"ldlUкfsD6M@ڊ넉NTX}LCFEO!5n*q;αȦox$ʚjr=:!>,<:0|/3 =UY"W~:T'5<һr"lT^j# =5ҞrU &X`>}^%Ѿ821[(~//Ta:38XtT׍C2V)x+2lPG@OXIDθ޲3.ޯ.qDa3xBIfdXq,HtݻP ٰN0eܺLai:鬶zAzhPͬM=iLԍf2:2t\7V|Ov ]_6mZraÈ[ z`1nͩsO3V}'IDuqxZbY3Afg_+;ʫ|sHYQuPǣ,_Ĺ>GN<_!Smdt OjpDXkstfLoڟjcնH~|9O$\I5Vwr0 I%2z)rJW<2 >p87Vlaq¥;5k3 QG]@C3^Q(ղ~qmuNluϔ = w2q:fxGkژiVQ8{L3XuJ.>8eBA[b="#/jfA9Rr] 6}?Ep:9MJUlP_4G[g4,7WsI)N6[ʽI5LJ3T;@)prvR%.;h*i1 Z̦{g`M:{މ66&::^uF2aq SD{&= 1^^=}CYr%xOn&- eI+x"`4ZO gU&0ub0ܤ\i Vqu 1fԦ5M1Dnj4YZ-J/qgޜH+c5PNDh|w#v~ՎYiu.dhG6P:d%y A)3̷ui3ɿW*s8$4<j4"ެ2%ƪqx5;wֽmmdQ9V]"±;(SakO7G=nzľw@pIJR9 2!,v"<3O?d4"Z߷XwK,*=(lFz$H"SBR,w{[ЉneȮM笜򁳛@=;e@fYB.9,>nzFzjl΁qNGS T&eGTw9Chǩ:^3:݉G7*(A;th=))oMFF4?zXy:2rtY#U݇\ed\."o;d1a2w6ە]JNX#p8-9"P'NAP2Jb91)W$n©|Զ9m{O5$HX*ءzؠT"܆OV]ķO22nOt}ǍcOl!L2.up6 I)RjnwA֝צ <kl$B4aX7E1J!)|O"9IIMq 0ߟklrUwst5'ǎ=K"muj Y 8dEUJ8eDkΙ(&?sWshzRTFp Q 3 sn̄c9 l9 t=ۧ^u.Gj$m_ D{a>NiA͠.^Q)I閳6G9Hx$QOߔ#=Jō&Țښ|YKیy'$Ě͢}KAt.p>Eh۝<ܯ_>O%F\={z?c+)rZ44 𹱽`(-ڱGեFM?9+fbIKxuF3vN1q6#-'HEyqîd ͂t]݁p~垙wPms̜݈i_1.9reA\טvwvQe&r>#lHSQ:y&HL8;A%zكKd}}'ڶj&y(2QYӢWW<3wW׊tȤzYF6QcL3 TgKR)=wqr2˥a:jʩ'rfQ0 RNU]ַ(E%w~1Qu aA Ĩ ᘬd=zs6"Xkpk!ш_4HQjpwkgY5rNZ)s/ֶGӍ8W@r΋.|rz}Xy9_PK`Nٔ'\pݽ&H5úxZgG!A(]] :~lܛtLX QIcGk:SR*!F=NeH+-9pk====QSJ ?~x믿#N]mR4ۨE;KeuG.;w=}Џ5rx%ͬE I > 6qES2? K73s&T~?{RsEEgo)U\6jwLS,AjD~:"+Ti<E#'(;XYpNV}3wtҏqpzCp#L\6n{֍aSut GteNH,>մ4?ͣ/FzSs1詹X +8XG~i7(t@ƜrՐ;ܻҿKu2z8{v,;0{HhG( jTYRcIx:zRL:[$N S~5ק`6=d6sl86K6צYMFl*/`Gu9ؾkSya:g )i.hCd~qF-J'jz; w7դXC QP*p6XVvx`$\F !(:*j.NH!5BvzjU |YM)VX9#6&!)ՈAlj=csـZn_uB9\ݐIm5CN['Ѿ;:^z>u</{ _g=>r)Pa@9Gv4QHƊӍ%NiUB|I{4H$RI$Ӹ:}Fń)J%mGvoG7(ԧ@gIs>?đ\0DX-z؛5[i2vܟYsgUe1Na& ]է2s=Wp-X?ucJ`(4fF$Q9_s#V+u3.cJ4NKBܝg#D:((i%5s'`C~N#/R()Q j2/IV{ЦZ: fU3B9HֆZF8!aMʈ~A   h&F8XN>eCnr0.3w]K-n4kzT$kW3TbM,em$W,]wfsvȑԿdשIsC(Dxj%n4Iʵ,:cƟ ⍚^c:[cd8.OCt$J8L0+e@,Z"4FkZ佨 ރF꘩,_ 2]>uqsJLY)w&s W-6FY^ǝsVgP1}ݿXc ]?9K{`6펒JeM} ;G5fCbRs_8LuPGgN{ 565& 5??HA#MuxnI֛!q2=95JWb6ލPXQ^dC3t,"aBFgr*J"pUټ 5 !ٳN+$ՐHA85k6Om=N+ď)gQ3N%!5 1$l#q`k3otĄv~;jD8FlPqqՠ#}P om#SƘ.iEEB;'FC{1w5^^^>:׷Fu FHڨaW,+ 0^8efYn )YYu[g1:ae/G#+ƒXUez3ʪH*ʾ|ǜSYf)i&~oo]\Wr+B.ƅY4bi[#cEaRph)bN?[W36ou8pLCjfU>-Xػ\J3auڳNv{M ! 'z'ןXQ2OŮ­U%>+9kBӀq|}xX%y)7T/QLdS*?6`Uh[tfSz2w5Mַy 4!j׀`\6|0X'*[c兙b'_D4M\Z{sǵVSpSNJ 5{Sk=.&XoC5-i0BJIENDB`lmms-1.0.0+bzr2569/data/backgrounds/vinnie.png0000644000000000000000000003612211065530735017147 0ustar 00000000000000PNG  IHDR bKGD̿ pHYs  tIME /N IDATxiwF@pўwˮ?x>9}zv\vzKVc> b DI)yNI{qW@d@ B@ !@ @ "bA* x@D& !xDHѭ@R*F@*p䴀`bǜ .XIP̺X\!!.GʲG|) v9S=M B]$\fO86рDbiB|%Gxg_pHIʢ zό+4fCF(y!!@}㙐RrRp;^ {0b$B7r-3̝Qd[R2"\FSՆfv)\W eĤ8x)==erxX Mo9OCB wV%oң)) 4Y>\#2b2.8EBan=da㓒ʡ %T `[+MBebA+"!cq6u99W&*(&1nQF-; ;ɴ>#FL t Ԭ &T1c $`Y9?P .i S!{σN7H%ƌ9"! .SpML/@}  !$4gc$,I q%&3?eE*<~`$8d) k2Ƣo0z?ߩ_z!};@81Ŵ>Ϙ8ݷp,ſ#Έ8fzrHjj$%."Wuts" S5MnfIKv!ń@V7b|lg y b~3X7 o(9CK#^!}`f%)qݦ^H'{*U7_P o$MmC@qO=_G5MAP5ܱ+:33_ 5+i21 bU^I35)ˈ) b؀X>N(eBD `x88ii<'XFpAj|,Ä̏,@ '휱-dOB*Q[EF*ʮ6JL (|H# \Up\o}º"F^ը ]c\\'  5\16ely'Pqa}J31$,$x xxdd!IwAKJD` w$BaD^0uh)7 q0A11\'nU nOցb˒36`ɘ)#bgģ!R@Nn@+DHh^'םpIH{xx@j& $,31 7Wdu,eDJbl$AIU>ORLJ@8t @)_;== 9gQ֡>e'H,zjg$- Dz!\ }`Ek'Nq < > [g{s<] .=;?ia>VO<$] ֺ@=ܹJ QBEJ-ӆdlqj@,y iS%GVsd~h*cӹBЅH):;9e8UACb|*@}j<˷RTmfK xHOӴnJdY/uBcSٱ}XOK^G?ޯv6NPuq-Ϲ`*O)5׋.!k3еW+"aFjm ǽ;Ewߓa M;~~j''&)doi`IJ1ZH\&M1""-i'@@#p#NMRuUcxgĂ2*MQxaN<TtZt%đX`w vz.Z> 5ۂH"3 k%d6x:*=ŘH^>af,Z%D,I34@1tkQ)teEin:7zou蒾vM6]qBkiKH[̺b{_ ?8?]`Ps]!fn3fWNPV:w+')kD-4oFޮGS DGN%{79:Pom;eK$ 'm*U6ӿ `l ,E7 1@86|"`sp름 Ι_7䏙5( n#&@f*)ڀ!yGPnNbHzOz8 diG{3 EIN38S5q3f,<\ƜpM2"0cyEnЦknJ&=͌@ Pi\\{_QuU |Sqoi̽3B޻U>@x4Rɨ<7l@Wb%r] vS ccJN}tGo~Ȗ}vյVkl8 yJVf@O1=#Ŏp4@o Q#Rvd= %ިWX&<ܡz_v)̬$@~\2f,v8zHp6dcI,pv7? - K.8',፴;5G\}ǯ= ͜:%/ZC6%Ym,p'(4l;8hw,Xlܤ##n [dd|]53Ϭ_* T'Bqb\zFZ)hVx8FeB~!'-@jY`-G>bFwGo݇wp["<$ud nZ12XjG J\sSd3R&u="K'Gm$vCĒr5ǵb#"L`Gф @ X3AܹuLuM]O37T- PJTֲ=k2XzlwWbrJHº-1KfL v ˵%XtCG.ʈQy7t0ᐔVj|u['zնC;t) 1W`_TS7 ,T226LсTo,U;92idK*j95gv r; M۵C՞dKC׃ۭCc߲071c%n.(_τ 2-whb3}W6=h@$oL/> tHL1w*Ƅ&׳>wXC2%xy+DtVB<#sSvinU\YEfͰ`2s]f,,\Pгq .Pσ+?Ђ 9#BZBFLj4kop>X>vD~ϭ(侅dS&#u ?LhҩenȠ&<ޭL]U" Ep|Cy?g6iơwZssŨaԢjSUJ6f,cM7i%Dckg.2gYU-:D13p&xetѼ1{qjxF@8^vs7 ;9}$ĜRhpY4NX0q,zW-Yyv(iMO*q)KmoGq=ߊX$〽Acx'HY~1??Rː1P`}~E.)nn e&e#!@ Es,E "!x]LVYrff32dMYH8tSf!Vh0L{Nxҩ -aER2Ek?q»nzZ4aؚ39k)2ҖPxe<>T('dlձό93C~Ǭ삑d)Ň|P28tŽ2? &sV}9d%W\2[~t[0~{+4Ҹ_y;4q(mw1:-%EiݫuAJ99z欒,_rŒj;^wE@.+Ku8AYT;dρvkV'[v!}guW1>'!9bK$Edu*CԈ-دABVΦ;jJ^)ci ~Cai۴#sG>+YJV丢|bb7W>.kW@~}tHy'Qe?@]]FhMVx]@9&Egc+Le ɛ(ϋS?}Xٝ='*l-mbnl|wEU O $f3ˣLQUyaU#3'1ѽ;*UZU-?8nmҷ+ma@Ry׼KgHD<]lg$܀L±ޡ[^q,?Q51.d}("CNƐ浾&w|\, ƈ8 ?Qn- ׆98ؔ_!NxuEtV ţ6>o얉іj>z ƖKTAW6L6e@z;>4Mx|p8uEx㯜qR^a\ksH̨in8e0S 5-:7JEuG]= 䮩ziЕO-\d__zD]bTӀ"~#NGSg43/?^+)!Qmv}XD+|XO[mkRݩX]O|-iZUTiV~f UEqR{9#F ثݠ?piD<غ[MbxhL:ٛ% mX4e^p>wd:Kg|ʱw쓰4 b7Ry*bUB `ŸK,[^ЍZU[ezkvvdUe\ӎDO-#ͫ>c -xY~u͔ˊ'(\W(4sW3$\a|m6pF6ҍӕ4Ov@z|N_.~[_݄X =A_qXvWKB4#|V[Q<F#_Jd}n5 `גz-~5z[ٚy{KUyo9|t PjeGߝCk/7iv"%,kmS'9UPMmzb4$>zT@opu-C9nN*oY<c/WW޵6-Qhht_i\?ĭڪU%:>$1mT5ڊ E"{rBjj=~Jhr?2o(C|o*𞜒?Ė\ ݪ_KՎG=E#iCp=ܚs1rwI&E5bu#aWkm& [k],+CSB C\~'E+u^9iE)/MJI!yMS^jC6ej}~$fݚS\t)tqj!> ФLиL̮uW$c`%$։ߜ&PLFbq`˖LYs?ݏHS5ΐuuw Ե!#beS4GN̄$<PӞ^8'+2 E8y%XVL1))1 JDbXvt׺?].P7T U{ztr_xh*.*1t&c8| gkIrA渖E~$L{ Z _~]YxiՁڝ7R'VOu,ڴR<0][`t͂#l"=2%1"3i|H*66oƢ^q;lMncu\F۽5,@*ڒeŖY_t ϸG#. CY,ZJ\X6}~{ax((64(N+MzxnP3ԃ\M)sƓ+9-;=%ڐo*5@tIR~W %YvYblmDR[e- 8 ?8!S}NJ;VatexQq%U3@!!ӆI ,O5SBwo~5H푤- CPBq„|=y; ;R/o@Smv֊ͼ2ElUV=a GҶڌú@"8UP0w0.+^sFbRhHG >-O]AfMJf-u1|D`^6݂/~S׼F1*=5J];'oF|fnSFZȬuA tq7; ,[fZaKm04_X7$AYF1o믴WGDD3N3|4x51YT3o}+ U ahe#Ge݅vZ[#SjM+"ke~Q;{d$} #>ZY >_uA_[mTu[+↮Ϊ =!J4PAad xU5fr /9~K~{ּPqxLHBPRk"FJwjZ}[#$c-eΛK׹}06ߖ(Av?"0gpj'|Be6-_MܣZ5z*LzfTPpjBFEY2Uƀj"2!%!#$dT빰,Qdۢy&!R82`DBKvnriʢc|h:MJ8?!Lۖo|gjTcwG nO4cA(mdFTh]:49ݵ poAT2q@GB:mbƒqfc 2?(AքY')cDH)j:4Twxzʴ1!1{ƽ2=61z2+H=n.ZL6 G&wGkK8L9V(24B)G>WN$*P!LՒcB5VBގJ#cRCguPT(ZQg#!d!)D;Rqp(Od5 !}?r>?aVyɭ<9 ؀$m9y6*8s3Cl@H=cdqxu w@Ǐ"ܪ >?+Ƞa6@𾉿dkz#v<GxZ @%(T\ aɾsBXM<\[?i^ZŁVs H~m݇wd ,~Ist'\S˃xśȘWf;@l,kt6: j >EK2"BSz3scԯ0 @8V`Aȅ:cfzoDm(`zg\2hyr B6ʦh.Y&"baEJ kŅy)ߦV')|G`B>&9MU ɿg1r).+e3~ @q4ڝ9JMr}Ǖ8M[KCnX|]ȥ|(7>-Mn+4/A^6~X2P|/g= `E'gk+r=Y9!/mٷ,q9m2!cOG\fOze.|L8|f1e'쌔#`ۈx]v;/xC8seǙ5⛋!_ts\µ]{qX4B}#a6NheI8Xq_Hl= tEoBujf8"^v|W|53Ԝ0㫞/y-p846E `g'-I> 0^]bf|ٻ /QkK/ 9Ů::kΉxS-LEo΋@^y1疚\&|؏8A歆; d܇3g|')B]&\r_-STc!vwhN-lhCK9g7k8gW˒SKP?%ϙrfж9cWh9'@~YХ79dq#vߢ˫uB;ss=;BYgԱ_>8w/\Jn#B%x_8s_ W;n7hh< akwX9Wղ9)\&cFFy'!j|S w]nZ 0o$ `D;[.SNp8_KPV[ 3W:,ً X,`!sskTkKR&vG~8'3E䒷?qUa'4=r @!S;NqErV)K.-ŗʒX3}(s-TTwFpm){9kUng聘?i`ps!naX8ᶒEb) AU#NxǢLN@<^qj9qyaʜwO,,V,QII%ygl!ޛOơ%sAZy#N8g /F LYpjWcQ :6⮉+F<o;jVׄSaK_{ r}5-2L邝){bcΰ1)S.|}T{ocDUkc?ͅ) tnR|_`'ۣ<0^nf|Dbc.Q|Řcǒ,~ũ%Sk/k#.u9#N<%.`^f1._o_yfE, ߒ Nҕ;߰k]۲ 32T^;Cqa Cb L?k~D?$oC8 V'mVx<,˘̺ oD%x1w~lGsk|ʽҷ(9%?n7'.ϷjQ ݲG8e8$x[S4W[^1eOLZwczYq:c)1'!_и'Z\).1,=>E^?sLZA.AM:Ll=.{֛빓6̎#v:T ץmK5>CW{dNj8[0& {̤=̊j2ov{Z:ꚿ= B@ !@ @ B@ !@ @ B@ !@ @ B@ !@ !@ @ B@ !@ @ B@ !@ @ B@ !@ @ B@ !@ @ B@ !@ @ B@ !@ !@ @ B@ !@ @ B@ !@ @ B@ !@ @ B@ } IENDB`lmms-1.0.0+bzr2569/data/locale/CMakeLists.txt0000644000000000000000000000032412273201253016631 0ustar 00000000000000FILE(GLOB QM_FILES *.qm) IF(LMMS_BUILD_WIN32) FILE(GLOB QT_QM_FILES "${QT_TRANSLATIONS_DIR}/qt*[^h].qm") ENDIF(LMMS_BUILD_WIN32) INSTALL(FILES ${QM_FILES} ${QT_QM_FILES} DESTINATION "${LMMS_DATA_DIR}/locale") lmms-1.0.0+bzr2569/data/locale/ca.qm0000644000000000000000000035626211517317720015041 0ustar 00000000000000~F$weF$FF>G50H?H4HH@HHJ7JWPxT^kuT^pTyUVC[V(VqV7XDCXDyZ4="[<l'[<r[<:__h*opA+pC,{/8|}EiGYmIY!AA!C!lYYfuwfuKS`&y7hyp0ItthS 9#oAɜ֌U7Zإ8/ص0(TATyTkpsN6`6`7%7&FWcH5vI[L`bLHhDu/z/!CQCb2;EUs#eįzy*B U-3 Y-`U-b.d/ { v#}1*#}3+(#L*$+M*y+*|*05*08*0|M*0$*0ؔ*0 $*0++,f+,+}+}F+į-{/N#5fu6uM9giM9kY}93Bd @d!@TuE ^EZF|}KGG}G:GHi9HilHHHzHzUHI;"VIm6ImJ+J<@qJ7J=JսK_-LbjM5.MȎMM:N(ObzBPWjPWfS}A%;S}C%kSU'oSb'T.#TZ=Txq'UQUjcVbpVb/VhVUgV8VW iLW rWiW~WfX X XZ/Z/ZkZk ZZoduZoo[<[jh\`]6 ]s^eq^eriųriųBiųBszy.tU.Gtb.{v=|}|}}U~#O;i_TϙAuxKvNCe N37-)7i:yy+ק1,ק3,@Q#Onq]9oJ| b b N C>j++eunM"R237"9}Y90; ,@۴CyJ^JMUTQOXbOXn)P0)VZ;Z;5aUp>'w80~uPtTɄy46ʭi,)7(VՙծhT857<V@l.ߺfpoo oX[;CB3r|TYTDcqra31 (^(^B.: tPRoor%*t9=)%C:b?V?,-f3}td9>Gbt>~9gx~Usбss0zD%/uIW% :y2Q7$8J4:) d@CHH>&I[YOXpP~͖P~ZZ.$]r]YZlhcMoa/z|Z|Z}"2}%}&~Ac~=ŐĩMyx|m$#OW:ĽѫA}66~קAקC քw{ܗj^uvN왞BZ =չ753&Yֿ 0(10V19;:'<<<<mA UvHCYZh.JM$ `MtvMк Qq.eQq.`u`p`%c`%nfd Z^ug5hjzt;kJrJpw~ewNwYw(yTqyT7{ R}F/b91x"#bqdu+u u 0u u uuu}I1I^I?It47+;q$ ; zy,m)@) aYB)w' )' )):D*G,D5n@8}D;R;A>Z"IUIUIzZ.[t\X.czhF):iANm.wW y %ty % |:j>/>!212`]d NT'6)>2M2#"S : {Uٚ$Ϟc-SE-SE-SE3ha;6G/UGx!}I QS6NzUkUqc?"dR.dRjDJnq}vS,e5_5;$ cRHC$HC0d7nW%mU UU%ӡdJdy>yy`^P7F* ʩ9ʩ e]]eeY $  % )8( 6Eb 8eq 8e 9 ItYWS I0X Mg T YANk Ys p, w%h w% x1F |bu/   F B1 B1W 2N F? w @ ?H }lox N6 N9 JC V h 2 2 8A? Ƶ88X ^ 4Ɨ ӗ` غ Y:B Y:x Y: ~Si i! b `h xY ʓ1 "Q $&y?N + C + / + a\ -#a - LSY]Fsad^cgdy;.Opstv<α `9`9^Ș3WYzYWNaL s |["[-)3l7WCgq$D> D I'U&Z '[x*t[tX^ E#8` m4> yr" ]*"*  GLD~Ƴ#iQuant aAbout AboutDialog"Direcci d'arpegiArpeggio direction ArpeggiatorPorta d'arpegi Arpeggio gate ArpeggiatorMode d'arpegi Arpeggio mode ArpeggiatorRang d'arpegiArpeggio range ArpeggiatorTemps d'arpegi Arpeggio time ArpeggiatorTipus d'arpegi Arpeggio type Arpeggiator LliureFree Arpeggiator OrdenaSort ArpeggiatorSincSync Arpeggiator%%ArpeggiatorView ARPEGIARPEGGIOArpeggiatorViewPorta d'arpegi:Arpeggio gate:ArpeggiatorViewRang d'arpegi:Arpeggio range:ArpeggiatorViewTemps d'arpegi:Arpeggio time:ArpeggiatorViewDirecci: Direction:ArpeggiatorView PORTAGATEArpeggiatorView Mode:Mode:ArpeggiatorViewRANGRANGEArpeggiatorView TEMPSTIMEArpeggiatorViewUsa aquesta roda per a ajustar el temps d'arpegi en millisegons. El temps d'arpegi especifica la durada de cada nota de l'arpegi.Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played.ArpeggiatorViewmsmsArpeggiatorViewoctava(es) octave(s)ArpeggiatorView CANALSCHANNELSAudioAlsa::setupWidgetDISPOSITIUDEVICEAudioAlsa::setupWidgetAmplificar:Amplify:AudioFileProcessorViewPunt final: Endpoint:AudioFileProcessorViewSi actives aquest bot, la mostra sencera ser invertida. Aix s til per a efectes interessants, p.e. un xoc invertit.pIf you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash.AudioFileProcessorViewBBucle entre punts inicial i final#Loop sample at start- and end-pointAudioFileProcessorView"Obre altra mostraOpen other sampleAudioFileProcessorView Inverteix mostraReverse sampleAudioFileProcessorViewPunt inicial: Startpoint:AudioFileProcessorView CANALSCHANNELSAudioJack::setupWidgetNOM-CLIENT CLIENT-NAMEAudioJack::setupWidget CANALSCHANNELSAudioOss::setupWidgetDISPOSITIUDEVICEAudioOss::setupWidgetDISPOSITIUDEVICEAudioPortAudio::setupWidget CANALSCHANNELSAudioPulseAudio::setupWidgetDISPOSITIUDEVICEAudioPulseAudio::setupWidgetDISPOSITIUDEVICEAudioSdl::setupWidget&&Copia valor (%1%2)&Copy value (%1%2)AutomatableModel*&Enganxa valor (%1%2)&Paste value (%1%2)AutomatableModel &Restaura (%1%2) &Reset (%1%2)AutomatableModel2Connecta a controlador...Connect to controller...AutomatableModelConnectat a %1Connected to %1AutomatableModel.Connectat a controladorConnected to controllerAutomatableModel"Edita connexi...Edit connection...AutomatableModel6Edita automatitzaci globalEdit song-global automationAutomatableModel Elimina connexiRemove connectionAutomatableModelrTots els valors seleccionats s'han copiat al portapapers.1All selected values were copied to the clipboard.AutomationEditor8Editor d'Automatitzaci - %1Automation Editor - %1AutomationEditorJEditor d'Automatitzaci - sense patrAutomation Editor - no patternAutomationEditorLCopia els valors seleccionats (Ctrl+C)Copy selected values (Ctrl+C)AutomationEditorLTalla els valors seleccionats (Ctrl+X)Cut selected values (Ctrl+X)AutomationEditor*Mode dibuixar (Maj+D)Draw mode (Shift+D)AutomationEditor*Mode esborrar (Maj+E)Erase mode (Shift+E)AutomationEditorvSi piques aqu, el mode moure ser activat. En aquest mode pots moure els valors que has seleccionat en el mode seleccionar. Tamb pots pitjar 'Maj+M' al teclat per a activar aquest mode.If you click here, move-mode will be activated. In this mode you can move the values you selected in select-mode. You can also press 'Shift+M' on your keyboard to activate this mode.AutomationEditor6Mode moure selecci (Maj+M)Move selection mode (Shift+M)AutomationEditorVEnganxa valors des del portapapers (Ctrl+V)$Paste values from clipboard (Ctrl+V)AutomationEditorPReprodueix/pausa el patr actual (Espai)"Play/pause current pattern (Space)AutomationEditorPer favor, obre un patr d'automatitzaci amb el men contextual d'un control!EPlease open an automation pattern with the context menu of a control!AutomationEditor0Mode seleccionar (Maj+S)Select mode (Shift+S)AutomationEditorZAtura la reproducci del patr actual (Espai)'Stop playing of current pattern (Space)AutomationEditorValors copiats Values copiedAutomationEditorCanvia nom Change nameAutomationPatternView BuidaClearAutomationPatternView Desconnecta "%1"Disconnect "%1"AutomationPatternView@Obre a l'Editor d'automatitzaciOpen in Automation editorAutomationPatternViewRestaura nom Reset nameAutomationPatternViewpica dos cops per a obrir aquest patr a l'editor d'automatitzaci6double-click to open this pattern in automation editorAutomationPatternView1111 ChordCreator11&m911b9 ChordCreator1313 ChordCreator13&o913#9 ChordCreator 13&m5&m913b5b9 ChordCreator13&m913b9 ChordCreator66 ChordCreator 6add96add9 ChordCreator 6sus46sus4 ChordCreator77 ChordCreator7&o117#11 ChordCreator7&o57#5 ChordCreator 7&o5&o97#5#9 ChordCreator 7&o5&m97#5b9 ChordCreator7&o97#9 ChordCreator 7ms117add11 ChordCreator 7ms137add13 ChordCreator7&m57b5 ChordCreator 7&m5&m97b5b9 ChordCreator7&m97b9 ChordCreator 7sus47sus4 ChordCreator99 ChordCreator9&o119#11 ChordCreator9&o59#5 ChordCreator9&m139b13 ChordCreator9&m59b5 ChordCreator 9sus49sus4 ChordCreatorEoliAeolian ChordCreator ArbicArabic ChordCreator BluesBlues ChordCreatorRang d'acord Chord range ChordCreatorTipus d'acord Chord type ChordCreatorDisminut Diminished ChordCreatorBebop dominantDominant bebop ChordCreator DricDorian ChordCreatorEnigmtic Enigmatic ChordCreatorHarmnic menorHarmonic minor ChordCreatorHongars menorHungarian minor ChordCreatorJap in sen Jap in sen ChordCreator LocriLocrian ChordCreatorLidiLydian ChordCreator Maj11Maj11 ChordCreator Maj13Maj13 ChordCreatorMaj7Maj7 ChordCreatorMaj7&o11Maj7#11 ChordCreator Maj7&o5Maj7#5 ChordCreatorMaj7ms13 Maj7add13 ChordCreator Maj7&m5Maj7b5 ChordCreatorMaj9Maj9 ChordCreatorMaj9&o11Maj9#11 ChordCreator Maj9&o5Maj9#5 ChordCreatorMaj9sus4Maj9sus4 ChordCreatorMajor&m5Majb5 ChordCreator MajorMajor ChordCreatorBebop major Major bebop ChordCreator Pentatnic majorMajor pentatonic ChordCreatorMeldic menor Melodic minor ChordCreator Pentatnic menorMinor pentatonic ChordCreatorMixolidi Mixolydian ChordCreatorNeopolit Neopolitan ChordCreatorNeopolit menorNeopolitan minor ChordCreatorFrigolidi Phrygolydian ChordCreatorTo sencer Whole tone ChordCreatorms9add9 ChordCreatoraugaug ChordCreatoraugsus4augsus4 ChordCreatorm-Maj11m-Maj11 ChordCreatorm-Maj13m-Maj13 ChordCreator m-Maj7m-Maj7 ChordCreatorm-Maj7ms11 m-Maj7add11 ChordCreatorm-Maj7ms13 m-Maj7add13 ChordCreatorm11m11 ChordCreatorm13m13 ChordCreatorm6m6 ChordCreator m6ms9m6add9 ChordCreatorm7m7 ChordCreatorm7ms11m7add11 ChordCreatorm7ms13m7add13 ChordCreatorm7&m5m7b5 ChordCreatorm7&m9m7b9 ChordCreatorm9m9 ChordCreatorm9-Maj7m9-Maj7 ChordCreatorm9&m5m9b5 ChordCreator mms9madd9 ChordCreatormenor&m5minb5 ChordCreator menorminor ChordCreator octavaoctave ChordCreatorsus2sus2 ChordCreatorsus4sus4 ChordCreatortritri ChordCreator ACORDSCHORDSChordCreatorViewRang d'acord: Chord range:ChordCreatorViewRANGRANGEChordCreatorViewoctava(es) octave(s)ChordCreatorViewControlador %1 Controller %1 Controller,Detecta automticament Auto DetectControllerConnectionDialog CANALCHANNELControllerConnectionDialogCONTROLADOR CONTROLLERControllerConnectionDialogCancellaCancelControllerConnectionDialog0Configuraci de ConnexiConnection SettingsControllerConnectionDialogCanal d'entrada Input channelControllerConnectionDialog*Controlador d'entradaInput controllerControllerConnectionDialog"FUNCI DE MAPATGEMAPPING FUNCTIONControllerConnectionDialog CONTROLADOR MIDIMIDI CONTROLLERControllerConnectionDialogdDispositius MIDI des d'on rebre esdeveniments MIDI(MIDI-devices to receive MIDI-events fromControllerConnectionDialogD'acordOKControllerConnectionDialog(CONTROLADOR D'USUARIUSER CONTROLLERControllerConnectionDialogAfegeixAddControllerRackView2Prestatge de ControladorsController RackControllerRackView &Ajuda&HelpControllerView,&Treu aquest connector&Remove this pluginControllerViewControlsControlsControllerView\Introdueix el nou nom per a aquest controlador&Enter the new name for this controllerControllerView:Canvia el nom del controladorRename controllerControllerViewDecamentDecayEffect Efecte habilitatEffect enabledEffect PortaGateEffectMescla Moll/Sec Wet/Dry mixEffect CADENA D'EFECTES EFFECTS CHAINEffectRackView &Ajuda&Help EffectView,&Treu aquest connector&Remove this plugin EffectViewControlsControls EffectViewDECAMENTDECAY EffectView PORTAGATE EffectView Porta:Gate: EffectViewMou a&vall Move &down EffectViewMou a&muntMove &up EffectViewEncs/ApagatOn/Off EffectViewLa roda Porta controla el nivell de senyal que s considerat 'silenci' mentre es decideix quan aturar de processar senyals.zThe Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. EffectView Temps:Time: EffectView.Encn o apaga l'efecte.Toggles the effect on or off. EffectViewM/SW/D EffectViewNivell de Moll: Wet Level: EffectViewDecamentDecayEnvelopeAndLfoParametersFreq x 100 Freq x 100EnvelopeAndLfoParametersModula AmplitudModulate Env-AmountEnvelopeAndLfoParametersQUAAMTEnvelopeAndLfoViewATACATTEnvelopeAndLfoView Atac:Attack:EnvelopeAndLfoViewfPica aqu per a que aquest OBF controli l'amplitud.>Click here to make the envelope-amount controlled by this LFO.EnvelopeAndLfoViewDECDECEnvelopeAndLfoViewRETDELEnvelopeAndLfoViewDecament:Decay:EnvelopeAndLfoViewArrossega una mostra d'on sigui i amolla-la en aquesta finestra.8Drag a sample from somewhere and drop it in this window.EnvelopeAndLfoViewFREQ x 100 FREQ x 100EnvelopeAndLfoViewMANTHOLDEnvelopeAndLfoViewConsellHintEnvelopeAndLfoViewManteniment:Hold:EnvelopeAndLfoViewMODULA AMPLITUDMODULATE ENV-AMOUNTEnvelopeAndLfoView.Quantitat de modulaci:Modulation amount:EnvelopeAndLfoViewPreretard: Predelay:EnvelopeAndLfoViewALLRELEnvelopeAndLfoViewAlliberament:Release:EnvelopeAndLfoViewVELSPDEnvelopeAndLfoViewSOSTSUSTEnvelopeAndLfoViewSosteniment:Sustain:EnvelopeAndLfoView@Usa aquesta roda per a ajustar el temps d'atac de l'OBF actual. Quan ms gran aquest valor, ms temps necessita l'OBF per a augmentar la seva amplitud al mxim.Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum.EnvelopeAndLfoViewUsa aquesta roda per a ajustar el temps d'atac de l'envoltant actual. Quan ms gran aquest valor, ms temps necessita l'envoltant per a augmentar cap al nivell d'atac. Escull un valor petit per a instruments com el piano i un valor gran per a corda.Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings.EnvelopeAndLfoViewUsa aquesta roda per a ajustar el temps de decament de l'envoltant actual. Quan ms gran aquest valor, ms temps necessita l'envoltant per a reduir des del nivell d'atac fins al de sosteniment. Escull un valor petit per a instruments com el piano.Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos.EnvelopeAndLfoViewUsa aquesta roda per a ajustar el temps de manteniment de l'envoltant actual. Quan ms gran aquest valor, ms temps mant l'envoltant el nivell d'atac abans de comenar a reduir cap al nivell de sosteniment.Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level.EnvelopeAndLfoViewhUsa aquesta roda per a ajustar la quantitat de modulaci de l'OBF actual. Quan ms gran aquest valor, ms influir l'OBF la magnitud seleccionada (p.e. volum o freqncia de tall).Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO.EnvelopeAndLfoViewUsa aquesta roda per a ajustar la quantitat de modulaci de l'envoltant actual. Quan ms gran aquest valor, ms influir l'envoltant la magnitud corresponent (p.e. volum o freqncia de tall).Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope.EnvelopeAndLfoView$Usa aquesta roda per a ajustar el preretard de l'envoltant actual. Quan ms gran aquest valor, major el temps abans de comenar l'envoltant en s.Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope.EnvelopeAndLfoView*Usa aquesta roda per a ajustar el temps de preretard de l'OBF actual. Quan ms gran aquest valor, major el temps abans que l'OBF comenci a oscillar.Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate.EnvelopeAndLfoViewUsa aquesta roda per a ajustar el temps d'alliberament de l'envoltant actual. Quan ms gran aquest valor, ms temps necessita l'envoltant per a disminuir des del nivell de sosteniment a zero. Escull un valor gran per a instruments suaus com els de corda.Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings.EnvelopeAndLfoViewUsa aquesta roda per a ajustar la velocitat de l'OBF actual. Quan ms gran aquest valor, ms rpid oscilla l'OBF i ms rpid ser l'efecte.Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect.EnvelopeAndLfoViewTUsa aquesta roda per a ajustar el nivell de sosteniment de l'envoltant actual. Quan ms gran aquest valor, a major nivell roman l'envoltant abans de disminuir cap a zero.Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero.EnvelopeAndLfoViewDamplitud controlada per aquest OBF#control envelope-amount by this LFOEnvelopeAndLfoViewms/OBF:ms/LFO:EnvelopeAndLfoViewCancellaCancelExportProjectDialogSortidaOutputExportProjectDialog FX %1FX %1FxMixer MestreMasterFxMixerVIntrodueix el nou nom per a aquest canal FX&Enter the new name for this FX channel FxMixerViewMesclador FXFX-Mixer FxMixerView ApagaMute FxMixerView4Canvia el nom del canal FXRename FX channel FxMixerView CANALCHANNELInstrumentMidiIOView2x Passa-Baixa 2x LowPassInstrumentSoundShapingPassa-TotAllpassInstrumentSoundShapingPassa-Banda csg BandPass csgInstrumentSoundShaping Passa-Banda czpg BandPass czpgInstrumentSoundShapingFREQ TALLCUTOFFInstrumentSoundShapingTipus de filtre Filter typeInstrumentSoundShapingPassa-AltaHiPassInstrumentSoundShapingPassa-BaixaLowPassInstrumentSoundShapingMoogMoogInstrumentSoundShapingOscaNotchInstrumentSoundShapingQ/Ressonncia Q/ResonanceInstrumentSoundShaping VOLUMVOLUMEInstrumentSoundShaping VolumVolumeInstrumentSoundShapingFREQ TALLCUTOFFInstrumentSoundShapingView FILTREFILTERInstrumentSoundShapingViewHAqu pots seleccionar el filtre integrat que vols usar per a aquesta pista d'instrument. Els filtres sn molt importants per a canviar les caracterstiques d'un so.Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound.InstrumentSoundShapingViewHzHzInstrumentSoundShapingViewRessonncia: Resonance:InstrumentSoundShapingViewOBJECTIUTARGETInstrumentSoundShapingView&freqncia de tall:cutoff-frequency:InstrumentSoundShapingViewNota base Base noteInstrumentTrackCanal FX FX channelInstrumentTrackPanoramaPanningInstrumentTrackToPitchInstrumentTrack VolumVolumeInstrumentTracknAmb aquesta roda pots ajustar el volum del canal obert. + clic del mig)#Mute/unmute ( + middle click) sampleTCOViewEnganxaPaste sampleTCOViewRpica dos cops per a seleccionar la mostradouble-click to select sample sampleTCOViewPista de mostra Sample track sampleTrack VolumVolume sampleTrackVolum de canal:Channel volume:sampleTrackViewVolum de pista Track volumesampleTrackViewVOLVOLsampleTrackView$INTERFCIE D'UDIOAUDIO INTERFACE setupDialog8Directori de material grficArtwork directory setupDialog(Configuraci d'udioAudio settings setupDialog4MIDA DE MEMRIA INTERMDIA BUFFER SIZE setupDialogCancellaCancel setupDialog^Escull el directori d'installaci de FL Studio'Choose FL Studio installation directory setupDialogPEscull un directori de connectors LADSPAChoose LADSPA plugin directory setupDialogLEscull el directori de treball de LMMSChoose LMMS working directory setupDialogHEscull el directori d'ones crues STKChoose STK rawwave directory setupDialogLEscull el directori de material grficChoose artwork-theme directory setupDialogREscull el teu directori de connectors VST Choose your VST-plugin directory setupDialog\Comprimeix per defecte els fitxers de projecte"Compress project files per default setupDialogZDesactiva els indicadors d'activitat de canal#Disable channel activity indicators setupDialog,Mostra el volum en dBVDisplay volume as dBV  setupDialog0Activa els avisos d'einaEnable tooltips setupDialogJDirectori d'installaci de FL Studio FL Studio installation directory setupDialog2Marcs: %1 Latncia: %2 msFrames: %1 Latency: %2 ms setupDialog(Configuraci generalGeneral settings setupDialogXMode AQ per al dispositiu de sortida d'udioHQ-mode for output audio-device setupDialogAqu pots seleccionar la teva interfcie MIDI preferida. Depenent de la configuraci del teu sistema durant el temps de compilaci, pots escollir entre ALSA, OSS i ms. Abaix pots veure una caixa amb controls per a configurar la interfcie MIDI seleccionada.Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. setupDialog"Aqu pots seleccionar la teva interfcie d'udio preferida. Depenent de la configuraci del teu sistema durant el temps de compilaci, pots escollir entre ALSA, JACK, OSS i altres. Abaix pots veure una caixa amb controls per a configurar la interfcie d'udio seleccionada.Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. setupDialogAqu pots configurar la mida de la memria intermdia interna usada per LMMS. Els valors ms petits donen menor latncia per tamb poden causar so inservible o baix rendiment, especialment a ordinadors antics o sistemes amb un nucli sense temps real.Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. setupDialog8Directori de treball de LMMSLMMS working directory setupDialogINTERFCIE MIDIMIDI INTERFACE setupDialog"Configuraci MIDI MIDI settings setupDialogMISCMISC setupDialogD'acordOK setupDialoghPitja les tecles del piano de canal noms manualment)Only press keys on channel-piano manually setupDialog2Configuraci de rendimentPerformance settings setupDialogPer favor, tingues en compte que la majoria de canvis no s'aplicaran fins que reinicis LMMS!GPlease note that most changes won't take effect until you restart LMMS! setupDialog:Restaura al valor per defecteReset to default-value setupDialogReinicia LMMS Restart LMMS setupDialog4Directori d'ones crues STKSTK rawwave directory setupDialog(Configuraci de LMMS Setup LMMS setupDialogvMostra l'avs de reinici desprs de canviar la configuraci,Show restart warning after changing settings setupDialog0Efectes UI vs. rendimentUI effects vs. performance setupDialog6Directori de connectors VSTVST-plugin directory setupDialogBancBank sf2InstrumentCorChorus sf2Instrument$Profunditat de Cor Chorus Depth sf2InstrumentNivell de Cor Chorus Level sf2InstrumentLnies de Cor Chorus Lines sf2Instrument Velocitat de Cor Chorus Speed sf2Instrument GuanyGain sf2Instrument PedaPatch sf2InstrumentReverberaciReverb sf2Instrument8Esmortement de ReverberaciReverb Damping sf2Instrument,Nivell de Reverberaci Reverb Level sf2Instrument,Cambra de ReverberaciReverb Roomsize sf2Instrument.Amplada de Reverberaci Reverb Width sf2Instrument:Aplica cor (si est suportat)Apply chorus (if supported)sf2InstrumentViewLAplica reverberaci (si est suportat)Apply reverb (if supported)sf2InstrumentViewEscull el pedaChoose the patchsf2InstrumentView&Profunditat de Cor: Chorus Depth:sf2InstrumentViewNivell de Cor: Chorus Level:sf2InstrumentViewLnies de Cor: Chorus Lines:sf2InstrumentView"Velocitat de Cor: Chorus Speed:sf2InstrumentViewRPica aqu per a obrir un altre fitxer SF2#Click here to open another SF2 filesf2InstrumentView GuanyGainsf2InstrumentView*Obre fitxer SoundFontOpen SoundFont filesf2InstrumentView6Obre altre fitxer SoundFontOpen other SoundFont filesf2InstrumentView:Esmortement de Reverberaci:Reverb Damping:sf2InstrumentView.Nivell de Reverberaci: Reverb Level:sf2InstrumentView.Cambra de Reverberaci:Reverb Roomsize:sf2InstrumentView0Amplada de Reverberaci: Reverb Width:sf2InstrumentViewAquest bot habilita l'efecte de cor. Aix aconsegueix efectes d'eco genials, per noms funciona amb fitxers que ho suportin.uThis button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it.sf2InstrumentViewAquest bot habilita l'efecte de reverberaci. Aix aconsegueix efectes genials, per noms funciona amb fitxers que ho suportin.pThis button enables the reverb effect. This is useful for cool effects, but only works on files that support it.sf2InstrumentViewTipus de filtre Filter type sidInstrument VolumVolume sidInstrument Atac:Attack:sidInstrumentViewDecament:Decay:sidInstrumentViewAlliberament:Release:sidInstrumentViewRessonncia: Resonance:sidInstrumentViewSosteniment:Sustain:sidInstrumentViewSincSyncsidInstrumentView Volum:Volume:sidInstrumentViewImporta fitxer Import filesongTo mestre Master pitchsongVolum mestre Master volumesong$Projecte NO desat.Project NOT saved.songProjecte desat Project savedsongXSelecciona fitxer per a exportar projecte...!Select file for project-export...song TempoTemposong4El projecte %1 est desat.The project %1 is now saved.song:El projecte %1 no est desat!The project %1 was not saved!songsense ttoluntitledsong<Afegeix pista d'automatitzaciAdd automation-track songEditor$Afegeix ritme baseAdd beat/bassline songEditor.Afegeix pista de mostraAdd sample-track songEditor.Pica aqu si vols reproduir la can sencera. La reproducci comenar al marcador de posici de can (verd). Tamb pots moure'l mentre es reprodueix.Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. songEditorPica aqu si vols aturar la reproducci de la can. El marcador de posici de can ser collocat a l'inici de la can.uClick here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. songEditor2No es pot obrir el fitxerCould not open file songEditor8No es pot escriure el fitxerCould not write file songEditorlNo es pot escriure el fitxer %1. Probablement no tens perms per a escriure aquest fitxer. Per favor, assegura't que tens perms d'escriptura per a aquest fitxer i torna-ho a provar.Could not write file %1. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. songEditorMode dibuixar Draw mode songEditor<Mode editar (selecciona i mou)Edit mode (select and move) songEditor$Mode alta qualitatHigh quality mode songEditorTo mestre Master pitch songEditorVolum mestre Master volume songEditor0Reprodueix can (Espai)Play song (Space) songEditorEditor de Can Song-Editor songEditor&Atura can (Espai)Stop song (Space) songEditorTEMPO/BPM TEMPO/BPM songEditor TempoTempo songEditor$Valor: %1 semitonsValue: %1 semitones songEditorValor: %1% Value: %1% songEditorto mestre master pitch songEditorvolum mestre master volume songEditortempo de can tempo of song songEditorEix Y lineal Linear Y axisspectrumAnalyzerControlDialogEspectre linealLinear spectrumspectrumAnalyzerControlDialogMode del canal Channel modespectrumAnalyzerControlsEix Y lineal Linear Y-axisspectrumAnalyzerControlsEspectre linealLinear spectrumspectrumAnalyzerControls AMPLEWIDEstereoEnhancerControlDialogAmplada:Width:stereoEnhancerControlDialogAmpladaWidthstereoEnhancerControls4Volum Esquerra a Esquerra:Left to Left Vol:stereoMatrixControlDialog.Volum Esquerra a Dreta:Left to Right Vol:stereoMatrixControlDialog.Volum Dreta a Esquerra:Right to Left Vol:stereoMatrixControlDialog(Volum Dreta a Dreta:Right to Right Vol:stereoMatrixControlDialog&Esquerra a Esquerra Left to LeftstereoMatrixControls Esquerra a Dreta Left to RightstereoMatrixControls Dreta a Esquerra Right to LeftstereoMatrixControlsDreta a DretaRight to RightstereoMatrixControlsJDesprs d'aturar torna al comenamentAfter stopping go back to begintimeLineDesprs d'aturar torna a la posici on va comenar la reproducci?After stopping go back to position at which playing was startedtimeLineBDesprs d'aturar mant la posiciAfter stopping keep positiontimeLineBActiva/desactiva autodesplaamentEnable/disable auto-scrollingtimeLine>Activa/desactiva punts de bucleEnable/disable loop-pointstimeLineConsellHinttimeLinenPitja <Ctrl> per a desactivar punts de bucle magntics.-Press to disable magnetic loop-points.timeLineSoloSolotrackCancellaCanceltrackContainer*No es pot trobar un filtre per a importar el fitxer %1. Hauries de convertir aquest fitxer a un format suportat per LMMS utilitzant altre programari.Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software.trackContainer8No es pot importar el fitxerCouldn't import filetrackContainer2No es pot obrir el fitxerCouldn't open filetrackContainerNo es pot llegir el fitxer %1. Per favor, assegura't que tens perms de lectura per al fitxer i el directori que el cont i torna-ho a provar!Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again!trackContainer.Important fitxer FLP...Importing FLP-file...trackContainer0Important fitxer MIDI...Importing MIDI-file...trackContainer*Carregant projecte...Loading project...trackContainer(Per favor, espera...Please wait...trackContainer*%1:%2 (%3:%4 a %5:%6)%1:%2 (%3:%4 to %5:%6)trackContentObjectView CopiaCopytrackContentObjectViewLongitud actualCurrent lengthtrackContentObjectViewPosici actualCurrent positiontrackContentObjectView TallaCuttrackContentObjectViewBEsborra (bot del mig del ratol)Delete (middle mousebutton)trackContentObjectViewConsellHinttrackContentObjectViewFApaga/encn (<Ctrl> + clic del mig)#Mute/unmute ( + middle click)trackContentObjectViewEnganxaPastetrackContentObjectViewZPitja <Ctrl> i arrossega per a fer una cpia.%Press and drag to make a copy.trackContentObjectViewXPitja <Ctrl> per a redimensionar lliurement.Press for free resizing.trackContentObjectView6Accions per a aquesta pistaActions for this tracktrackOperationsWidget&Clona aquesta pistaClone this tracktrackOperationsWidget ApagaMutetrackOperationsWidget&Apaga aquesta pistaMute this tracktrackOperationsWidgetPitja <Ctrl> quan piquis el control de moviment per a iniciar una nova acci d'arrossegar i amollar.KPress while clicking on move-grip to begin a new drag'n'drop-action.trackOperationsWidget*Elimina aquesta pistaRemove this tracktrackOperationsWidgetSoloSolotrackOperationsWidgetLHa fallat la crrega del connector VSTFailed loading VST-pluginvestigeInstrument&Carregant connectorLoading pluginvestigeInstrumentnPer favor, espera mentre es carrega el connector VST...'Please wait while loading VST-plugin...vestigeInstrument:El connector VST %1 no s'ha pogut carregar per alguna ra. Si funciona amb altre programari VST sota Linux, per favor contacta amb un desenvolupador de LMMS!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer!vestigeInstrumentDesafinament %1 Detune %1vibedArrissada %1 Fuzziness %1 vibedImpuls %1 Impulse %1vibedLongitud %1 Length %1vibedOctava %1 Octave %1vibedPanorama %1Pan %1vibed,Posici per a tocar %1Pick %1 positionvibed2Posici per a recollir %1Pickup %1 positionvibed(Rigidesa de corda %1String %1 stiffnessvibed"Volum de corda %1String %1 volumevibed &Ajuda&Help vibedViewdPica aqu per a activar/desactivar la forma d'ona.&Click here to enable/disable waveform. vibedViewVPica aqu per a normalitzar la forma d'ona.!Click here to normalize waveform. vibedViewRPica aqu per a suavitzar la forma d'ona.Click here to smooth waveform. vibedViewDesafinament:Detune: vibedView(Habilita forma d'onaEnable waveform vibedViewArrissada: Fuzziness: vibedViewEditor d'ImpulsImpulse Editor vibedView,Impuls o estat inicialImpulse or initial state vibedViewLongitud:Length: vibedViewNormalitza Normalize vibedView OctavaOctave vibedViewPanorama:Pan: vibedView(Posici per a tocar:Pick position: vibedView.Posici per a recollir:Pickup position: vibedViewOna de serraSaw wave vibedViewOna sinusodal Sine wave vibedViewSuavitzaSmooth vibedViewOna quadrada Square wave vibedView CordaString vibedView$Rigidesa de corda:String stiffness: vibedView,El selector 'Imp' determina si la forma d'ona del grfic s'ha de tractar com un impuls impartit a la corda quan es toca o l'estat inicial de la corda.The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. vibedViewLa roda 'P' ajusta la posici on ser tocada la corda seleccionada. Quan ms baix el valor, es toca ms a prop del pont.The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. vibedViewFLa roda 'PU' ajusta la posici on les vibracions seran monitoritzades per a la corda seleccionada. Quan ms baix aquest valor, la recollida s ms a prop del pont.The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. vibedViewVLa roda 'S' ajusta la rigidesa de la corda seleccionada. La rigidesa de la corda afecta el temps que la corda ressonar. Quan ms baix el valor, ms temps sonar la corda.The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. vibedViewjLa roda 'V' ajusta el volum de la corda seleccionada.4The 'V' knob sets the volume of the selected string. vibedView`La roda Detune modifica el to de la corda seleccionada. Valors menors que zero faran que la corda soni amb bemoll. Valors majors que zero faran que la corda soni amb sostingut.The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. vibedView\La roda Length ajusta la longitud de la corda seleccionada. Les cordes ms llargues sonaran a la vegada ms temps i ms brillants, emper tamb es menjaran ms cicles de CPU.The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. vibedViewTEl selector Octava s'usa per a escollir a quin harmnic de la nota la corda sonar. Per exemple, '-2' significa que la corda sonar dues octaves per sota de la fonamental, 'F' significa que la corda sonar a la fonamental, i '6' significa que la corda sonar sis octaves per sobre de la fonamental.#The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. vibedViewLa roda Pan determina la localitzaci de la corda seleccionada al camp estreo.PThe Pan knob determines the location of the selected string in the stereo field. vibedViewTLa roda Slap afegeix una mica d'arrissada a la corda seleccionada que s ms notable durant l'atac, encara que tamb pot usar-se per a que la corda soni ms 'metllica'.The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. vibedViewEl selector String s'usa per a escollir quina corda estan editant els controls. Un instrument Vibed pot tenir fins a nou cordes vibrants independents. El LED a la cantonada dreta baixa de l'editor de forma d'ona indica si la corda seleccionada est activa.The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. vibedView^L'editor de forma d'ona dna control sobre l'estat inicial o impuls que s'utilitza per a iniciar la corda vibrant. Els botons de la dreta del grfic inicialitzaran la forma d'ona al tipus seleccionat. El bot '?' carregar la forma d'ona des d'un fitxer; noms es carregaran les primeres 128 mostres. La forma d'ona tamb pot dibuixar-se al grfic. El bot 'S' suavitzar la forma d'ona. El bot 'N' normalitzar la forma d'ona.The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. vibedViewOna triangular Triangle wave vibedViewOna arbitrriaUser defined wave vibedViewpVibed modela fins a nou cordes vibrants independents. El selector 'String' et permet escollir quina corda s'est editant. El selector 'Imp' escull si el grfic representa un impuls o l'estat inicial de la corda. El selector 'Octave' escull a quin harmnic la corda ha de vibrar. El grfic et permet controlar l'estat inicial o impuls usat per a posar la corda en marxa. La roda 'V' controla el volum. La roda 'S' controla la rigidesa de la corda. La roda 'P' controla la posici per a tocar. La roda 'PU' controla la posici per a recollir. Probablement no cal explicar 'Pan' i 'Detune'. La roda 'Slap' afegeix una mica d'arrissada al so de la corda. La roda 'Length' controla la longitud de la corda. El LED a la cantonada dreta baixa de l'editor de forma d'ona determina si la corda est activa a l'instrument actual.hVibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. vibedView Volum:Volume: vibedView&Ona de soroll blancWhite noise wave vibedViewpica per a activar/desactivar la visualitzaci de la sortida mestra6click to enable/disable visualization of master-outputvisualizationWidgetlmms-1.0.0+bzr2569/data/locale/ca.ts0000644000000000000000000074436112307165142015050 0ustar 00000000000000 AboutDialog About LMMS LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) About Quant a LMMS - easy music production for everyone Authors Translation Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! License Copyright (c) 2004-2014, LMMS developers <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE DISPOSITIU CHANNELS CANALS AudioFileProcessorView Open other sample Obre altra mostra Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Reverse sample Inverteix mostra If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Si actives aquest botó, la mostra sencera serà invertida. Això és útil per a efectes interessants, p.e. un xoc invertit. Loop sample at start- and end-point Bucle entre punts inicial i final Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Amplify: Amplificar: With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Startpoint: Punt inicial: With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Endpoint: Punt final: With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. JACK server down The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack::setupWidget CLIENT-NAME NOM-CLIENT CHANNELS CANALS AudioOss::setupWidget DEVICE DISPOSITIU CHANNELS CANALS AudioPortAudio::setupWidget BACKEND DEVICE DISPOSITIU AudioPulseAudio::setupWidget DEVICE DISPOSITIU CHANNELS CANALS AudioSdl::setupWidget DEVICE DISPOSITIU AutomatableModel &Reset (%1%2) &Restaura (%1%2) &Copy value (%1%2) &Copia valor (%1%2) &Paste value (%1%2) &Enganxa valor (%1%2) Edit song-global automation Edita automatització global Connected to %1 Connectat a %1 Connected to controller Connectat a controlador Edit connection... Edita connexió... Remove connection Elimina connexió Connect to controller... Connecta a controlador... Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) Reprodueix/pausa el patró actual (Espai) Stop playing of current pattern (Space) Atura la reproducció del patró actual (Espai) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Click here if you want to stop playing of the current pattern. Draw mode (Shift+D) Mode dibuixar (Maj+D) Erase mode (Shift+E) Mode esborrar (Maj+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. Cut selected values (Ctrl+X) Talla els valors seleccionats (Ctrl+X) Copy selected values (Ctrl+C) Copia els valors seleccionats (Ctrl+C) Paste values from clipboard (Ctrl+V) Enganxa valors des del portapapers (Ctrl+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the values from the clipboard will be pasted at the first visible measure. Automation Editor - no pattern Editor d'Automatització - sense patró Automation Editor - %1 Editor d'Automatització - %1 Please open an automation pattern with the context menu of a control! Per favor, obre un patró d'automatització amb el menú contextual d'un control! Values copied Valors copiats All selected values were copied to the clipboard. Tots els valors seleccionats s'han copiat al portapapers. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> AutomationPatternView double-click to open this pattern in automation editor pica dos cops per a obrir aquest patró a l'editor d'automatització Open in Automation editor Obre a l'Editor d'automatització Clear Buida Reset name Restaura nom Change name Canvia nom %1 Connections Disconnect "%1" Desconnecta "%1" AutomationTrack Automation track Controller Controller %1 Controlador %1 ControllerConnectionDialog Connection Settings Configuració de Connexió MIDI CONTROLLER CONTROLADOR MIDI Input channel Canal d'entrada CHANNEL CANAL Input controller Controlador d'entrada CONTROLLER CONTROLADOR Auto Detect Detecta automàticament MIDI-devices to receive MIDI-events from Dispositius MIDI des d'on rebre esdeveniments MIDI USER CONTROLLER CONTROLADOR D'USUARI MAPPING FUNCTION FUNCIÓ DE MAPATGE OK D'acord Cancel Cancel·la LMMS Cycle Detected. ControllerRackView Controller Rack Prestatge de Controladors Add Afegeix Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls Controls Controllers are able to automate the value of a knob, slider, and other controls. Rename controller Canvia el nom del controlador Enter the new name for this controller Introdueix el nou nom per a aquest controlador &Remove this plugin &Treu aquest connector &Help &Ajuda Effect Effect enabled Efecte habilitat Wet/Dry mix Mescla Moll/Sec Gate Porta Decay Decaïment EffectChain Effects enabled EffectRackView EFFECTS CHAIN CADENA D'EFECTES Add effect EffectSelectDialog Add effect Plugin description EffectView Toggles the effect on or off. Encén o apaga l'efecte. On/Off Encès/Apagat W/D M/S Wet Level: Nivell de Moll: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. DECAY DECAÏMENT Time: Temps: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. GATE PORTA Gate: Porta: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. La roda Porta controla el nivell de senyal que és considerat 'silenci' mentre es decideix quan aturar de processar senyals. Controls Controls Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. Move &up Mou a&munt Move &down Mou a&vall &Remove this plugin &Treu aquest connector &Help &Ajuda EnvelopeAndLfoParameters Predelay Attack Hold Decay Decaïment Sustain Release Modulation LFO Predelay LFO Attack LFO speed LFO Modulation LFO Wave Shape Freq x 100 Freq x 100 Modulate Env-Amount Modula Amplitud EnvelopeAndLfoView DEL RET Predelay: Preretard: Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. Usa aquesta roda per a ajustar el preretard de l'envoltant actual. Quan més gran aquest valor, major el temps abans de començar l'envoltant en sí. ATT ATAC Attack: Atac: Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. Usa aquesta roda per a ajustar el temps d'atac de l'envoltant actual. Quan més gran aquest valor, més temps necessita l'envoltant per a augmentar cap al nivell d'atac. Escull un valor petit per a instruments com el piano i un valor gran per a corda. HOLD MANT Hold: Manteniment: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. Usa aquesta roda per a ajustar el temps de manteniment de l'envoltant actual. Quan més gran aquest valor, més temps manté l'envoltant el nivell d'atac abans de començar a reduir cap al nivell de sosteniment. DEC DEC Decay: Decaïment: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. Usa aquesta roda per a ajustar el temps de decaïment de l'envoltant actual. Quan més gran aquest valor, més temps necessita l'envoltant per a reduir des del nivell d'atac fins al de sosteniment. Escull un valor petit per a instruments com el piano. SUST SOST Sustain: Sosteniment: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. Usa aquesta roda per a ajustar el nivell de sosteniment de l'envoltant actual. Quan més gran aquest valor, a major nivell roman l'envoltant abans de disminuir cap a zero. REL ALL Release: Alliberament: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. Usa aquesta roda per a ajustar el temps d'alliberament de l'envoltant actual. Quan més gran aquest valor, més temps necessita l'envoltant per a disminuir des del nivell de sosteniment a zero. Escull un valor gran per a instruments suaus com els de corda. AMT QUA Modulation amount: Quantitat de modulació: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. Usa aquesta roda per a ajustar la quantitat de modulació de l'envoltant actual. Quan més gran aquest valor, més influirà l'envoltant la magnitud corresponent (p.e. volum o freqüència de tall). LFO predelay: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. Usa aquesta roda per a ajustar el temps de preretard de l'OBF actual. Quan més gran aquest valor, major el temps abans que l'OBF comenci a oscil·lar. LFO- attack: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. Usa aquesta roda per a ajustar el temps d'atac de l'OBF actual. Quan més gran aquest valor, més temps necessita l'OBF per a augmentar la seva amplitud al màxim. SPD VEL LFO speed: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. Usa aquesta roda per a ajustar la velocitat de l'OBF actual. Quan més gran aquest valor, més ràpid oscil·la l'OBF i més ràpid serà l'efecte. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. Usa aquesta roda per a ajustar la quantitat de modulació de l'OBF actual. Quan més gran aquest valor, més influirà l'OBF la magnitud seleccionada (p.e. volum o freqüència de tall). Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave for current. Click here for a square-wave. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. FREQ x 100 FREQ x 100 Click here if the frequency of this LFO should be multiplied by 100. multiply LFO-frequency by 100 MODULATE ENV-AMOUNT MODULA AMPLITUD Click here to make the envelope-amount controlled by this LFO. Pica aquí per a que aquest OBF controli l'amplitud. control envelope-amount by this LFO amplitud controlada per aquest OBF ms/LFO: ms/OBF: Hint Consell Drag a sample from somewhere and drop it in this window. Arrossega una mostra d'on sigui i amolla-la en aquesta finestra. ExportProjectDialog Export project Output Sortida File format: Samplerate: 44100 Hz 48000 Hz 88200 Hz 96000 Hz 192000 Hz Bitrate: 64 KBit/s 128 KBit/s 160 KBit/s 192 KBit/s 256 KBit/s 320 KBit/s Depth: 16 Bit Integer 32 Bit Float Please note that not all of the parameters above apply for all file formats. Quality settings Interpolation: Zero Order Hold Sinc Fastest Sinc Medium (recommended) Sinc Best (very slow!) Oversampling (use with care!): 1x (None) 2x 4x 8x Sample-exact controllers Alias-free oscillators Start Cancel Cancel·la Export as loop (remove end silence) FxMixer Master Mestre FX %1 FX %1 FxMixerView Rename FX channel Canvia el nom del canal FX Enter the new name for this FX channel Introdueix el nou nom per a aquest canal FX FX-Mixer Mesclador FX FX Fader %1 Mute Apaga Mute this FX channel InstrumentFunctionArpeggio Arpeggio Arpeggio type Tipus d'arpegi Arpeggio range Rang d'arpegi Arpeggio time Temps d'arpegi Arpeggio gate Porta d'arpegi Arpeggio direction Direcció d'arpegi Arpeggio mode Mode d'arpegi Up Down Up and down Random Free Lliure Sort Ordena Sync Sinc InstrumentFunctionArpeggioView ARPEGGIO ARPEGI An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. RANGE RANG Arpeggio range: Rang d'arpegi: octave(s) octava(es) Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. TIME TEMPS Arpeggio time: Temps d'arpegi: ms ms Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. Usa aquesta roda per a ajustar el temps d'arpegi en mil·lisegons. El temps d'arpegi especifica la durada de cada nota de l'arpegi. GATE PORTA Arpeggio gate: Porta d'arpegi: % % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Chord: Direction: Direcció: Mode: Mode: InstrumentFunctionNoteStacking octave octava Major Major Majb5 Major♭5 minor menor minb5 menor♭5 sus2 sus2 sus4 sus4 aug aug augsus4 augsus4 tri tri 6 6 6sus4 6sus4 6add9 6add9 m6 m6 m6add9 m6més9 7 7 7sus4 7sus4 7#5 7♯5 7b5 7♭5 7#9 7♯9 7b9 7♭9 7#5#9 7♯5♯9 7#5b9 7♯5♭9 7b5b9 7♭5♭9 7add11 7més11 7add13 7més13 7#11 7♯11 Maj7 Maj7 Maj7b5 Maj7♭5 Maj7#5 Maj7♯5 Maj7#11 Maj7♯11 Maj7add13 Maj7més13 m7 m7 m7b5 m7♭5 m7b9 m7♭9 m7add11 m7més11 m7add13 m7més13 m-Maj7 m-Maj7 m-Maj7add11 m-Maj7més11 m-Maj7add13 m-Maj7més13 9 9 9sus4 9sus4 add9 més9 9#5 9♯5 9b5 9♭5 9#11 9♯11 9b13 9♭13 Maj9 Maj9 Maj9sus4 Maj9sus4 Maj9#5 Maj9♯5 Maj9#11 Maj9♯11 m9 m9 madd9 mmés9 m9b5 m9♭5 m9-Maj7 m9-Maj7 11 11 11b9 11♭9 Maj11 Maj11 m11 m11 m-Maj11 m-Maj11 13 13 13#9 13♯9 13b9 13♭9 13b5b9 13♭5♭9 Maj13 Maj13 m13 m13 m-Maj13 m-Maj13 Harmonic minor Harmònic menor Melodic minor Melòdic menor Whole tone To sencer Diminished Disminuït Major pentatonic Pentatònic major Minor pentatonic Pentatònic menor Jap in sen Jap in sen Major bebop Bebop major Dominant bebop Bebop dominant Blues Blues Arabic Aràbic Enigmatic Enigmàtic Neopolitan Neopolità Neopolitan minor Neopolità menor Hungarian minor Hongarès menor Dorian Dòric Phrygolydian Frigolidi Lydian Lidi Mixolydian Mixolidi Aeolian Eoli Locrian Locri Chords Chord type Tipus d'acord Chord range Rang d'acord Minor InstrumentFunctionNoteStackingView RANGE RANG Chord range: Rang d'acord: octave(s) octava(es) Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT CHANNEL CANAL VELOCITY ENABLE MIDI OUTPUT PROGRAM MIDI devices to receive MIDI events from MIDI devices to send MIDI events to NOTE InstrumentSoundShaping VOLUME VOLUM Volume Volum CUTOFF FREQ TALL Cutoff frequency RESO Resonance Envelopes/LFOs Filter type Tipus de filtre Q/Resonance Q/Ressonància LowPass Passa-Baixa HiPass Passa-Alta BandPass csg Passa-Banda csg BandPass czpg Passa-Banda czpg Notch Osca Allpass Passa-Tot Moog Moog 2x LowPass 2x Passa-Baixa RC LowPass 12dB RC BandPass 12dB RC HighPass 12dB RC LowPass 24dB RC BandPass 24dB RC HighPass 24dB Vocal Formant Filter InstrumentSoundShapingView TARGET OBJECTIU These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! FILTER FILTRE Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. Aquí pots seleccionar el filtre integrat que vols usar per a aquesta pista d'instrument. Els filtres són molt importants per a canviar les característiques d'un so. Hz Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... RESO Resonance: Ressonància: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. FREQ FREQ cutoff frequency: InstrumentTrack unnamed_track pista_sense_nom Volume Volum Panning Panorama Pitch To FX channel Canal FX Default preset With this knob you can set the volume of the opened channel. Amb aquesta roda pots ajustar el volum del canal obert. Base note Nota base Pitch range InstrumentTrackView Volume Volum Volume: Volum: VOL VOL Panning Panorama Panning: Panorama: PAN PAN MIDI MIDI Input Entrada Output Sortida InstrumentTrackWindow GENERAL SETTINGS CONFIGURACIÓ GENERAL Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. Pica aquí si vols desar la configuració del canal actual en una plantilla. Més tard podràs carregar aquesta plantilla picant-la dos cops al navegador de plantilles. Instrument volume Volum d'instrument Volume: Volum: VOL VOL Panning Panorama Panning: Panorama: PAN PAN Pitch To Pitch: To: cents cents PITCH TO FX channel Canal FX ENV/LFO ENV/OBF FUNC FUNC FX FX MIDI MIDI Save preset XML preset file (*.xpf) PLUGIN CONN Save current channel settings in a preset-file Pitch range (semitones) RANGE RANG LadspaControl Link channels Enllaça canals LadspaControlDialog Link Channels Enllaça Canals Channel Canal LadspaControlView Link channels Enllaça canals Value: Valor: Sorry, no help available. Ajuda no disponible. LadspaEffect Effect Unknown LADSPA plugin %1 requested. LfoController LFO Controller Controlador OBF Base value Valor base Oscillator speed Velocitat d'oscil·lador Oscillator amount Amplitud d'oscil·lador Oscillator phase Fase d'oscil·lador Oscillator waveform Forma d'ona d'oscil·lador Frequency Multiplier Multiplicador de Freqüència LfoControllerDialog LFO OBF LFO Controller Controlador OBF BASE BASE Base amount: Amplitud base: todo todo SPD VEL LFO-speed: Velocitat OBF: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. Usa aquesta roda per a ajustar la velocitat de l'OBF. Quan més gran aquest valor, més ràpid oscil·la l'OBF i més ràpid serà l'efecte. AMT QUA Modulation amount: Quantitat de modulació: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. PHS FAS Phase offset: Desfasament: degrees graus With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for a a moog saw-wave. Click here for an exponential wave. Click here for white-noise. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. Could not save config-file No s'ha pogut desar el fitxer de configuració Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. No s'ha pogut desar el fitxer de configuració %1. Per favor, comprova que tens permís d'escriptura per a aquest fitxer i torna-ho a provar. &Project &Projecte &New &Nou &Open... &Obre... Recently opened projects Projectes oberts recentment &Save &Desa Save &As... &Anomena i desa... Import... Importa... E&xport... E&xporta... &Quit &Surt &Edit &Edita Settings Configuració &Tools E&ines &Help &Ajuda Online help Ajuda en línia Help Ajuda What's this? Què és això? About Quant a Create new project Crea nou projecte Create new project from template Crea nou projecte des de plantilla Open existing project Obre projecte existent Recently opened project Projecte obert recentment Save current project Desa projecte actual Export current project Exporta projecte actual Show/hide Song-Editor Mostra/amaga Editor de Cançó By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. Show/hide Beat+Bassline Editor Mostra/amaga Editor de Ritme Base By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. Show/hide Piano-Roll Mostra/amaga Rotlle de Piano Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. Show/hide Automation Editor Mostra/amaga Editor d'Automatització Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Show/hide FX Mixer Mostra/amaga Mesclador FX Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Show/hide project notes Mostra/amaga les notes del projecte Click here to show or hide the project notes window. In this window you can put down your project notes. Show/hide controller rack Untitled Sense títol LMMS %1 LMMS %1 Project not saved Projecte no desat The current project was modified since last saving. Do you want to save it now? El projecte actual ha estat modificat des del darrer desament. Vols desar-lo ara? Open project Obre projecte Save project Desa projecte Help not available Ajuda no disponible Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. Actualment no hi ha ajuda disponible a LMMS. Per favor, visita http://lmms.sf.net/wiki per a documentació sobre LMMS. My projects My samples My presets My home My computer Root directory Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 Project recovery It looks like the last session did not end properly. Do you want to recover the project of this session? Configuration file Error while parsing configuration file at line %1:%2: %3 MeterDialog Meter Numerator Numerador de Mesurador Meter Denominator Denominador de Mesurador TIME SIG COMPÀS MeterModel Numerator Denominator MidiAlsaRaw::setupWidget DEVICE DISPOSITIU MidiAlsaSeq::setupWidget DEVICE DISPOSITIU MidiController MIDI Controller unnamed_midi_controller controlador_midi_sense_nom MidiImport Setup incomplete You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiOss::setupWidget DEVICE DISPOSITIU MidiPort Input channel Canal d'entrada Output channel Canal de sortida Input controller Controlador d'entrada Output controller Controlador de sortida Fixed input velocity Fixed output velocity Output MIDI program Receive MIDI-events Rep esdeveniments MIDI Send MIDI-events Envia esdeveniments MIDI Fixed output note OscillatorObject Osc %1 volume Volum d'osc %1 Osc %1 panning Panorama d'osc %1 Osc %1 coarse detuning Desafinament gruixut d'osc %1 Osc %1 fine detuning left Desafinament fi esquerre d'osc %1 Osc %1 fine detuning right Desafinament fi dret d'osc %1 Osc %1 phase-offset Desfasament d'osc %1 Osc %1 stereo phase-detuning Desfasament estèreo d'osc %1 Osc %1 wave shape Forma d'ona d'osc %1 Modulation type %1 Tipus de modulació %1 Osc %1 waveform Forma d'ona d'osc %1 PatmanView Open other patch Obre altre pedaç Click here to open another patch-file. Loop and Tune settings are not reset. Pica aquí per a obrir un altre fitxer pedaç. La configuració de Bucle i Afina no es reinicia. Loop Bucle Loop mode Mode Bucle Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. Aquí pots canviar el mode Bucle. Si és actiu, PatMan farà servir la informació de bucle disponible al fitxer. Tune Afina Tune mode Mode Afina Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. Aquí pots canviar el mode Afina. Si és actiu, PatMan afinarà la mostra a la freqüència de la nota. No file selected Cap fitxer seleccionat Open patch file Obre fitxer pedaç Patch-Files (*.pat) Fitxers Pedaç (*.pat) PeakController Peak Controller Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK PIC LFO Controller Controlador OBF PeakControllerEffectControlDialog BASE BASE Base amount: Amplitud base: Modulation amount: Quantitat de modulació: Attack: Atac: Release: Alliberament: AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Valor base Modulation amount Quantitat de modulació Mute output Apaga la sortida Attack Release Abs Value Amount Multiplicator PianoView Base note Nota base Plugin Plugin not found Connector no trobat The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Error while loading plugin Error en carregar el connector Failed to load plugin "%1"! ProjectRenderer WAV-File (*.wav) Fitxer WAV (*.wav) Compressed OGG-File (*.ogg) Fitxer OGG Comprimit (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: Nom: Maker: Fabricant: Copyright: Copyright: Requires Real Time: Requereix Temps Real: Yes No No Real Time Capable: Capaç de Temps Real: In Place Broken: Trencat En Lloc: Channels In: Canals d'Entrada: Channels Out: Canals de Sortida: File: Fitxer: SampleBuffer Open audio file Obre fitxer d'àudio All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Tots els Fitxers d'Àudio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) Fitxers WAV (*.wav) OGG-Files (*.ogg) Fitxers OGG (*.ogg) DrumSynth-Files (*.ds) Fitxers DrumSynth (*.ds) FLAC-Files (*.flac) Fitxers FLAC (*.flac) SPEEX-Files (*.spx) Fitxers SPEEX (*.spx) MP3-Files (*.mp3) Fitxers MP3 (*.mp3) VOC-Files (*.voc) Fitxers VOC (*.voc) AIFF-Files (*.aif *.aiff) Fitxers AIFF (*.aif *.aiff) AU-Files (*.au) Fitxers AU (*.au) RAW-Files (*.raw) Fitxers RAW (*.raw) SampleTCOView double-click to select sample pica dos cops per a seleccionar la mostra Delete (middle mousebutton) Esborra (botó del mig del ratolí) Cut Talla Copy Copia Paste Enganxa Mute/unmute (<Ctrl> + middle click) Apaga/encén (<Ctrl> + clic del mig) Set/clear record SampleTrack Sample track Pista de mostra Volume Volum SampleTrackView Track volume Volum de pista Channel volume: Volum de canal: VOL VOL TempoSyncKnob Tempo Sync Sinc Tempo No Sync Sense Sinc Eight beats Vuit batecs Whole note Nota sencera Half note Mitja nota Quarter note Quart de nota 8th note 8è de nota 16th note 16è de nota 32nd note 32è de nota Custom... Personalitzat... &Help &Ajuda Custom Personalitzat Synced to Eight Beats Sincronitzat a Vuit Batecs Synced to Whole Note Sincronitzat a Nota Sencera Synced to Half Note Sincronitzat a Mitja Nota Synced to Quarter Note Sincronitzat a Quart de Nota Synced to 8th Note Sincronitzat a 8è de Nota Synced to 16th Note Sincronitzat a 16è de Nota Synced to 32nd Note Sincronitzat a 32è de Nota TimeDisplayWidget click to change time units TrackContainer Couldn't import file No es pot importar el fitxer Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. No es pot trobar un filtre per a importar el fitxer %1. Hauries de convertir aquest fitxer a un format suportat per LMMS utilitzant altre programari. Couldn't open file No es pot obrir el fitxer Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! No es pot llegir el fitxer %1. Per favor, assegura't que tens permís de lectura per al fitxer i el directori que el conté i torna-ho a provar! Loading project... Carregant projecte... Cancel Cancel·la Please wait... Per favor, espera... Importing MIDI-file... Important fitxer MIDI... Importing FLP-file... Important fitxer FLP... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 Mix output of oscillator 1 & 2 Synchronize oscillator 1 with oscillator 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Use phase modulation for modulating oscillator 3 with oscillator 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 Mix output of oscillator 2 & 3 Synchronize oscillator 2 with oscillator 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Osc %1 volume: Volum d'osc %1: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Amb aquesta roda pots ajustar el volum de l'oscil·lador %1. Quan poses un valor de 0 l'oscil·lador s'apaga. Altrament, pots sentir l'oscil·lador tan alt com l'ajustis aquí. Osc %1 panning: Panorama d'osc %1: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Amb aquesta roda pots ajustar el panorama de l'oscil·lador %1. Un valor de -100 significa 100% a l'esquerra i un valor de 100 mou la sortida de l'oscil·lador a la dreta. Osc %1 coarse detuning: Desafinament gruixut d'osc %1: semitones semitons With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Amb aquesta roda pots ajustar el desafinament gruixut de l'oscil·lador %1. Pots desafinar l'oscil·lador 12 semitons (1 octava) cap a dalt i a baix. Això és útil per a crear sons amb un acord. Osc %1 fine detuning left: Desafinament fi esquerre d'osc %1: cents cents With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Amb aquesta roda pots ajustar el desafinament fi de l'oscil·lador %1 per al canal esquerre. El desafinament fi està graduat entre -100 cents i +100 cents. Això és útil per a crear sons "gruixuts". Osc %1 fine detuning right: Desafinament fi dret d'osc %1: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Amb aquesta roda pots ajustar el desafinament fi de l'oscil·lador %1 per al canal dret. El desafinament fi està graduat entre -100 cents i +100 cents. Això és útil per a crear sons "gruixuts". Osc %1 phase-offset: Desfasament d'osc %1: degrees graus With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Amb aquesta roda pots ajustar el desfasament de l'oscil·lador %1. Això significa que pots moure el punt d'una oscil·lació on l'oscil·lador comença a oscil·lar. Per exemple, si tens una ona sinusoïdal amb un desfasament de 180 graus, l'ona anirà primer cap a baix. És el mateix amb una ona quadrada. Osc %1 stereo phase-detuning: Desfasament estèreo d'osc %1: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use a moog-like saw-wave for current oscillator. Use an exponential wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin Obre altre connector VST Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Pica aquí si vols obrir un altre connector VST. Després de picar aquest botó, apareix un diàleg d'obrir fitxers i pots seleccionar el teu fitxer. Show/hide GUI Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Pica aquí per a mostrar o amagar la interfície gràfica d'usuari (GUI) del connector VST. Turn off all notes Apaga totes les notes Open VST-plugin Obre connector VST DLL-files (*.dll) Fitxers DLL (*.dll) EXE-files (*.exe) Fitxers EXE (*.exe) No VST-plugin loaded Cap connector VST carregat Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Save preset Click here, if you want to save current VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Preset by - VST plugin control VstEffectControlDialog Show/hide Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Save preset Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin Carregant connector Please wait while loading VST-plugin... Per favor, espera mentre es carrega el connector VST... Failed loading VST-plugin Ha fallat la càrrega del connector VST The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! El connector VST %1 no s'ha pogut carregar per alguna raó. Si funciona amb altre programari VST sota Linux, per favor contacta amb un desenvolupador de LMMS! Open Preset Vst Plugin Preset (*.fxp *.fxb) : default " ' Save Preset .fxp .FXP .FXB .fxb ZynAddSubFxInstrument Portamento Filter Frequency Filter Resonance Bandwidth FM Gain Resonance Center Frequency Resonance Bandwidth Forward MIDI Control Change Events ZynAddSubFxView Show GUI Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Portamento: PORT Filter Frequency: FREQ FREQ Filter Resonance: RES RES Bandwidth: BW FM Gain: FM GAIN Resonance center frequency: RES CF Resonance bandwidth: RES BW Forward MIDI Control Changes audioFileProcessor Amplify Amplificar Start of sample Inici de la mostra End of sample Fi de la mostra Reverse sample Inverteix mostra Loop Bucle Stutter bassBoosterControlDialog FREQ FREQ Frequency: Freqüència: GAIN GUANY Gain: Guany: RATIO PROPORCIÓ Ratio: Proporció: bassBoosterControls Frequency Freqüència Gain Guany Ratio Proporció bbEditor Play/pause current beat/bassline (Space) Reprodueix/pausa el ritme base actual (Espai) Beat+Bassline Editor Editor de Ritme Base Add beat/bassline Afegeix ritme de base Add automation-track Afegeix pista d'automatització Stop playback of current beat/bassline (Space) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. Click here to stop playing of current beat/bassline. Remove steps Elimina passos Add steps Afegeix passos bbTCOView Open in Beat+Bassline-Editor Obre a l'Editor de Ritme Base Reset name Restaura nom Change name Canvia nom Change color Canvia color bbTrack Beat/Bassline %1 Ritme base %1 Clone of %1 bitInvader Samplelength Longitud de mostra bitInvaderView Sample Length Longitud de la Mostra Sine wave Ona sinusoïdal Triangle wave Ona triangular Saw wave Ona de serra Square wave Ona quadrada White noise wave Ona de soroll blanc User defined wave Ona arbitrària Smooth Suavitza Click here to smooth waveform. Pica aquí per a suavitzar la forma d'ona. Interpolation Interpolació Normalize Normalitza Draw your own waveform here by dragging your mouse on this graph. Click for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for white-noise. Click here for a user-defined shape. exportProjectDialog Could not open file No es pot obrir el fitxer Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! No es pot obrir el fitxer %1 per a escriure. Per favor, assegura't que tens permís d'escriptura per al fitxer i el directori que el conté i torna-ho a provar! Error Error Error while determining file-encoder device. Please try to choose a different output format. Error determinant el dispositiu de codificació de fitxer. Per favor, prova amb un format de sortida diferent. Rendering: %1% Representant: %1% Export project to %1 Exporta projecte a %1 fader Please enter a new value between %1 and %2: Per favor, introdueix un nou valor entre %1 i %2: fileBrowser Browser fileBrowserTreeWidget Send to active instrument-track Open in new instrument-track/Song-Editor Open in new instrument-track/B+B Editor Loading sample Please wait, loading sample for preview... --- Factory files --- graphModel Graph kickerInstrument Start frequency Freqüència inicial End frequency Freqüència final Decay Decaïment Distortion Distorsió Gain Guany kickerInstrumentView Start frequency: Freqüència inicial: End frequency: Freqüència final: Decay: Decaïment: Distortion: Distorsió: Gain: Guany: knob &Help &Ajuda Please enter a new value between %1 and %2: Per favor, introdueix un nou valor entre %1 i %2: Please enter a new value between -96.0 dBV and 6.0 dBV: Per favor, introdueix un nou valor entre -96,0 dBV i 6,0 dBV: ladspaBrowserView Available Effects Efectes Disponibles Unavailable Effects Efectes No Disponibles Instruments Instruments Analysis Tools Eines d'Anàlisi Don't know Desconeguts This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. Aquest diàleg mostra informació de tots els connectors LADSPA que LMMS ha pogut trobar. Els connectors estan dividits en cinc categories basades en la interpretació dels tipus i noms dels ports. Efectes Disponibles són aquells que LMMS pot usar. Per a que LMMS pugui usar un efecte, primerament, ha de ser un efecte, és a dir, ha de tenir canals d'entrada i de sortida. LMMS identifica un canal d'entrada com a un port d'àudio que conté 'in' al nom. Els canals de sortida són identificats amb les lletres 'out'. A més, l'efecte ha de tenir el mateix nombre d'entrades que de sortides i ser capaç de temps real. Efectes No Disponibles són aquells que han estat identificats com a efectes, però no tenen el mateix nombre d'entrades que de sortides o no són capaços de temps real. Instruments són connectors on només s'han identificat canals de sortida. Eines d'Anàlisi són connectors on només s'han identificat canals d'entrada. Desconeguts són connectors on no s'han identificat canals d'entrada o sortida. Fent doble clic a qualsevol connector mostrarà informació sobre els ports. Type: Tipus: ladspaDescription Plugins Connectors Description Descripció ladspaPortDialog Name Nom Rate Taxa Direction Direcció Type Tipus Min < Default < Max Mín < Defecte < Màx Logarithmic Logarítmic SR Dependent Depenent SR Audio Àudio Control Control Input Entrada Output Sortida Toggled Commutat Integer Enter Float Flotant Yes Ports Ports lb302Synth VCF Cutoff Frequency Freqüència de Tall VCF VCF Resonance Ressonància VCF VCF Envelope Mod Mod Envoltant VCF VCF Envelope Decay Decaïment Envoltant VCF Slide Lliscament Accent Accent Dead Mort Slide Decay Decaïment de Lliscament Distortion Distorsió Waveform Forma d'ona 24dB/oct Filter Filtre 24dB/oct lb302SynthView Cutoff Freq: Freq Tall: Resonance: Ressonància: Env Mod: Mod Env: Decay: Decaïment: 303-es-que, 24dB/octave, 3 pole filter 303-es-que, 24dB/octava, filtre 3 pols Slide Decay: Decaïment de Lliscament: DIST: DIST: Saw wave Ona de serra Click here for a saw-wave. Triangle wave Ona triangular Click here for a triangle-wave. Square wave Ona quadrada Click here for a square-wave. Rounded square wave Click here for a square-wave with a rounded end. Moog wave Click here for a moog-like wave. Sine wave Ona sinusoïdal Click for a sine-wave. White noise wave Ona de soroll blanc Click here for an exponential wave. Click here for white-noise. lb303Synth VCF Cutoff Frequency Freqüència de Tall VCF VCF Resonance Ressonància VCF VCF Envelope Mod Mod Envoltant VCF VCF Envelope Decay Decaïment Envoltant VCF Distortion Distorsió Waveform Forma d'ona Slide Decay Decaïment de Lliscament Slide Lliscament Accent Accent Dead Mort 24dB/oct Filter Filtre 24dB/oct lb303SynthView Cutoff Freq: Freq Tall: CUT TALL Resonance: Ressonància: RES RES Env Mod: Mod Env: ENV MOD MOD ENV Decay: Decaïment: DEC DEC 303-es-que, 24dB/octave, 3 pole filter 303-es-que, 24dB/octava, filtre 3 pols Slide Decay: Decaïment de Lliscament: SLIDE LLISCA DIST: DIST: DIST DIST WAVE: ONA: WAVE ONA malletsInstrument Hardness Duresa Position Posició Vibrato Gain Guany de Vibrat Vibrato Freq Freq de Vibrat Stick Mix Mescla de Pals Modulator Modulador Crossfade Entremescla LFO Speed Velocitat OBF LFO Depth Profunditat OBF ADSR ADSR Pressure Pressió Motion Moviment Speed Velocitat Bowed Doblegat Spread Dispersió Marimba Marimba Vibraphone Vibràfon Agogo Agogo Wood1 Fusta1 Reso Reso Wood2 Fusta2 Beats Batecs Two Fixed Fixat a Dos Clump Grup Tubular Bells Campanes Tubulars Uniform Bar Barra Uniforme Tuned Bar Barra Afinada Glass Cristall Tibetan Bowl Bol Tibetà Missing files Fitxers absents Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! La instal·lació de Stk sembla estar incompleta. Assegura't de que el paquet complet Stk està instal·lat! malletsInstrumentView Instrument Instrument Spread Dispersió Spread: Dispersió: Hardness Duresa Hardness: Duresa: Position Posició Position: Posició: Vib Gain Guany Vib Vib Gain: Guany Vib: Vib Freq Freq Vib Vib Freq: Freq Vib: Stick Mix Mescla de Pals Stick Mix: Mescla de Pals: Modulator Modulador Modulator: Modulador: Crossfade Entremescla Crossfade: Entremescla: LFO Speed Velocitat OBF LFO Speed: Velocitat OBF: LFO Depth Profunditat OBF LFO Depth: Profunditat OBF: ADSR ADSR ADSR: ADSR: Bowed Doblegat Pressure Pressió Pressure: Pressió: Motion Moviment Motion: Moviment: Speed Velocitat Speed: Velocitat: Vibrato Vibrat Vibrato: Vibrat: manageVSTEffectView - VST parameter control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView - VST plugin control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help &Ajuda opl2instrument Patch Pedaç Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Distorsió Volume Volum organicInstrumentView Distortion: Distorsió: Volume: Volum: Randomise Aleatoritza Osc %1 waveform: Forma d'ona d'osc %1: Osc %1 volume: Volum d'osc %1: Osc %1 panning: Panorama d'osc %1: Osc %1 fine detuning left: Desafinament fi esquerre d'osc %1: cents cents papuInstrument Sweep time Sweep direction Sweep RtShift amount Wave Pattern Duty Channel 1 volume Volume sweep direction Length of each step in sweep Channel 2 volume Channel 3 volume Channel 4 volume Right Output level Left Output level Channel 1 to SO2 (Left) Channel 2 to SO2 (Left) Channel 3 to SO2 (Left) Channel 4 to SO2 (Left) Channel 1 to SO1 (Right) Channel 2 to SO1 (Right) Channel 3 to SO1 (Right) Channel 4 to SO1 (Right) Treble Bass Shift Register width papuInstrumentView Sweep Time: Sweep Time Sweep RtShift amount: Sweep RtShift amount Wave pattern duty: Wave Pattern Duty Square Channel 1 Volume: Length of each step in sweep: Length of each step in sweep Wave pattern duty Square Channel 2 Volume: Square Channel 2 Volume Wave Channel Volume: Wave Channel Volume Noise Channel Volume: Noise Channel Volume SO1 Volume (Right): SO1 Volume (Right) SO2 Volume (Left): SO2 Volume (Left) Treble: Treble Bass: Bass Sweep Direction Volume Sweep Direction Shift Register Width Channel1 to SO1 (Right) Channel2 to SO1 (Right) Channel3 to SO1 (Right) Channel4 to SO1 (Right) Channel1 to SO2 (Left) Channel2 to SO2 (Left) Channel3 to SO2 (Left) Channel4 to SO2 (Left) Wave Pattern The amount of increase or decrease in frequency The rate at which increase or decrease in frequency occurs The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Square Channel 1 Volume The delay between step change Draw the wave here pattern Cannot freeze pattern No es pot congelar el patró The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! El patró no es pot congelar ara mateix perquè estàs en mode de reproducció. Per favor, atura i torna-ho a provar! patternFreezeStatusDialog Freezing pattern... Congelant patró... Cancel Cancel·la patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step pica dos cops per a obrir aquest patró al rotlle de piano usa la roda del ratolí per a ajustar el volum d'un pas Open in piano-roll Obre al rotlle de piano Clear all notes Esborra totes les notes Reset name Restaura nom Change name Canvia nom Refreeze Recongela Freeze Congela Unfreeze Descongela Add steps Afegeix passos Remove steps Elimina passos PianoRoll Cut selected notes (Ctrl+X) Talla les notes seleccionades (Ctrl+X) Copy selected notes (Ctrl+C) Copia les notes seleccionades (Ctrl+C) Paste notes from clipboard (Ctrl+V) Enganxa notes des del portapapers (Ctrl+V) Play/pause current pattern (Space) Reprodueix/pausa el patró actual (Espai) Stop playing of current pattern (Space) Atura la reproducció del patró actual (Espai) Piano-Roll - no pattern Rotlle de Piano - sense patró Please open a pattern by double-clicking on it! Per favor, obre un patró picant-lo dos cops! Piano-Roll - %1 Rotlle de Piano - %1 Record notes from MIDI-device/channel-piano Enregistra notes des d'un dispositiu MIDI o piano de canal Last note Darrera nota Draw mode (Shift+D) Mode dibuixar (Maj+D) Erase mode (Shift+E) Mode esborrar (Maj+E) Select mode (Shift+S) Mode seleccionar (Maj+S) Record notes from MIDI-device/channel-piano while playing song or BB track Enregistra notes des d'un dispositiu MIDI o piano de canal mentre es reprodueix la cançó o pista RB Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Click here to stop playback of current pattern. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the notes from the clipboard will be pasted at the first visible measure. Note lock Note Volume Note Panning Detune mode (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser no description sense descripció Instrument plugins Connectors d'instrument Vibrating string modeler Modelador de corda vibrant Filter for importing MIDI-files into LMMS Filtre per a importar fitxers MIDI a LMMS three powerful oscillators you can modulate in several ways tres potents oscil·ladors que pots modular de vàries maneres VST-host for using VST(i)-plugins within LMMS servidor VST per a usar connectors VST(i) amb LMMS Filter for importing FL Studio projects into LMMS Filtre per a importar projectes FL Studio a LMMS Additive Synthesizer for organ-like sounds Sintetitzador Additiu per a sons com d'orgue simple sampler with various settings for using samples (e.g. drums) in an instrument-track mostrejador simple amb diferents paràmetres per a usar mostres (p.e. bateria) en una pista d'instrument Tuneful things to bang on Coses melòdiques per a fer soroll plugin for using arbitrary LADSPA-effects inside LMMS. connector per a usar efectes LADSPA arbitraris a LMMS. plugin for using arbitrary VST-effects inside LMMS. connector per a usar efectes VST arbitraris a LMMS. versatile kick- & bassdrum-synthesizer sintetitzador versàtil de guitza & bombo GUS-compatible patch instrument Instrument de pedaç compatible GUS Plugin for enhancing stereo separation of a stereo input file Connector per a millorar la separació estèreo List installed LADSPA plugins Llista connectors LADSPA instal·lats Incomplete monophonic imitation tb303 Imitació monofònica incompleta tb303 Plugin for freely manipulating stereo output Connector per a manipular lliurement la sortida estèreo plugin for boosting bass connector per a augmentar el baix Plugin for controlling knobs with sound peaks Connector per a controlar rodes amb pics de so Instrument browser Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Player for SoundFont files Emulation of GameBoy (TM) APU Customizable wavetable synthesizer Embedded ZynAddSubFX 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Put down your project notes here. Escriu aquí les teves notes del projecte. Project notes Notes del projecte Edit Actions Accions d'Editar &Undo &Desfés Ctrl+Z Ctrl+Z &Redo &Refés Ctrl+Y Ctrl+Y &Copy &Copia Ctrl+C Ctrl+C Cu&t &Talla Ctrl+X Ctrl+X &Paste &Enganxa Ctrl+V Ctrl+V Format Actions Accions de Format &Bold &Negreta Ctrl+B Ctrl+B &Italic Curs&iva Ctrl+I Ctrl+I &Underline &Subratllat Ctrl+U Ctrl+U &Left &Esquerra Ctrl+L Ctrl+L C&enter Cen&tre Ctrl+E Ctrl+E &Right &Dreta Ctrl+R Ctrl+R &Justify &Justifica Ctrl+J Ctrl+J &Color... &Color... renameDialog Rename... Canvia el nom... setupDialog Setup LMMS Configuració de LMMS General settings Configuració general BUFFER SIZE MIDA DE MEMÒRIA INTERMÈDIA Reset to default-value Restaura al valor per defecte MISC MISC Display volume as dBV Mostra el volum en dBV LMMS working directory Directori de treball de LMMS VST-plugin directory Directori de connectors VST Artwork directory Directori de material gràfic FL Studio installation directory Directori d'instal·lació de FL Studio Performance settings Configuració de rendiment UI effects vs. performance Efectes UI vs. rendiment Audio settings Configuració d'àudio AUDIO INTERFACE INTERFÍCIE D'ÀUDIO MIDI settings Configuració MIDI MIDI INTERFACE INTERFÍCIE MIDI OK D'acord Cancel Cancel·la Restart LMMS Reinicia LMMS Please note that most changes won't take effect until you restart LMMS! Per favor, tingues en compte que la majoria de canvis no s'aplicaran fins que reiniciïs LMMS! Frames: %1 Latency: %2 ms Marcs: %1 Latència: %2 ms Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Aquí pots configurar la mida de la memòria intermèdia interna usada per LMMS. Els valors més petits donen menor latència però també poden causar so inservible o baix rendiment, especialment a ordinadors antics o sistemes amb un nucli sense temps real. Choose LMMS working directory Escull el directori de treball de LMMS Choose your VST-plugin directory Escull el teu directori de connectors VST Choose artwork-theme directory Escull el directori de material gràfic Choose FL Studio installation directory Escull el directori d'instal·lació de FL Studio Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Aquí pots seleccionar la teva interfície d'àudio preferida. Depenent de la configuració del teu sistema durant el temps de compilació, pots escollir entre ALSA, JACK, OSS i altres. Abaix pots veure una caixa amb controls per a configurar la interfície d'àudio seleccionada. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Aquí pots seleccionar la teva interfície MIDI preferida. Depenent de la configuració del teu sistema durant el temps de compilació, pots escollir entre ALSA, OSS i més. Abaix pots veure una caixa amb controls per a configurar la interfície MIDI seleccionada. STK rawwave directory Directori d'ones crues STK Choose LADSPA plugin directory Escull un directori de connectors LADSPA Choose STK rawwave directory Escull el directori d'ones crues STK Enable tooltips Activa els avisos d'eina Show restart warning after changing settings Mostra l'avís de reinici després de canviar la configuració Compress project files per default Comprimeix per defecte els fitxers de projecte HQ-mode for output audio-device Mode AQ per al dispositiu de sortida d'àudio Paths LADSPA plugin paths Default Soundfont File Background artwork Choose default SoundFont Choose background artwork One instrument track window mode Compact track buttons Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Smooth scroll in Song Editor Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Bank Banc Patch Pedaç Gain Guany Reverb Reverberació Reverb Roomsize Cambra de Reverberació Reverb Damping Esmorteïment de Reverberació Reverb Width Amplada de Reverberació Reverb Level Nivell de Reverberació Chorus Cor Chorus Lines Línies de Cor Chorus Level Nivell de Cor Chorus Speed Velocitat de Cor Chorus Depth Profunditat de Cor sf2InstrumentView Open other SoundFont file Obre altre fitxer SoundFont Click here to open another SF2 file Pica aquí per a obrir un altre fitxer SF2 Choose the patch Escull el pedaç Gain Guany Apply reverb (if supported) Aplica reverberació (si està suportat) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. Aquest botó habilita l'efecte de reverberació. Això aconsegueix efectes genials, però només funciona amb fitxers que ho suportin. Reverb Roomsize: Cambra de Reverberació: Reverb Damping: Esmorteïment de Reverberació: Reverb Width: Amplada de Reverberació: Reverb Level: Nivell de Reverberació: Apply chorus (if supported) Aplica cor (si està suportat) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Aquest botó habilita l'efecte de cor. Això aconsegueix efectes d'eco genials, però només funciona amb fitxers que ho suportin. Chorus Lines: Línies de Cor: Chorus Level: Nivell de Cor: Chorus Speed: Velocitat de Cor: Chorus Depth: Profunditat de Cor: Open SoundFont file Obre fitxer SoundFont SoundFont2 Files (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Resonance Filter type Tipus de filtre Voice 3 off Volume Volum Chip model sidInstrumentView Volume: Volum: Resonance: Ressonància: Cutoff frequency: High-Pass filter Band-Pass filter Low-Pass filter Voice3 Off MOS6581 SID MOS8580 SID Attack: Atac: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. Decay: Decaïment: Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. Sustain: Sosteniment: Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. Release: Alliberament: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. Pulse Width: The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. Coarse: The Coarse detuning allows to detune Voice %1 one octave up or down. Pulse Wave Triangle Wave SawTooth Noise Sync Sinc Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Ring-Mod Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. Filtered When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Test Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. song Project saved Projecte desat The project %1 is now saved. El projecte %1 està desat. Project NOT saved. Projecte NO desat. The project %1 was not saved! El projecte %1 no està desat! Import file Importa fitxer untitled sense títol Select file for project-export... Selecciona fitxer per a exportar projecte... Tempo Tempo Master volume Volum mestre Master pitch To mestre Empty project This project is empty so exporting makes no sense. Please put some items into Song Editor first! MIDI sequences FL Studio projects All file types Hydrogen projects Select directory for writing exported tracks... SongEditor Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. Pica aquí si vols aturar la reproducció de la cançó. El marcador de posició de cançó serà col·locat a l'inici de la cançó. Could not open file No es pot obrir el fitxer Could not write file No es pot escriure el fitxer Song-Editor Editor de Cançó Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. Pica aquí si vols reproduir la cançó sencera. La reproducció començarà al marcador de posició de cançó (verd). També pots moure'l mentre es reprodueix. Play song (Space) Reprodueix cançó (Espai) Stop song (Space) Atura cançó (Espai) Add beat/bassline Afegeix ritme base Add sample-track Afegeix pista de mostra Draw mode Mode dibuixar Edit mode (select and move) Mode editar (selecciona i mou) Add automation-track Afegeix pista d'automatització Record samples from Audio-device Record samples from Audio-device while playing song or BB track Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Error in file The file %1 seems to contain errors and therefore can't be loaded. Tempo Tempo TEMPO/BPM TEMPO/BPM tempo of song tempo de cançó The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). High quality mode Mode alta qualitat Master volume Volum mestre master volume volum mestre Master pitch To mestre master pitch to mestre Value: %1% Valor: %1% Value: %1 semitones Valor: %1 semitons Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Espectre lineal Linear Y axis Eix Y lineal spectrumAnalyzerControls Linear spectrum Espectre lineal Linear Y-axis Eix Y lineal Channel mode Mode del canal stereoEnhancerControlDialog WIDE AMPLE Width: Amplada: stereoEnhancerControls Width Amplada stereoMatrixControlDialog Left to Left Vol: Volum Esquerra a Esquerra: Left to Right Vol: Volum Esquerra a Dreta: Right to Left Vol: Volum Dreta a Esquerra: Right to Right Vol: Volum Dreta a Dreta: stereoMatrixControls Left to Left Esquerra a Esquerra Left to Right Esquerra a Dreta Right to Left Dreta a Esquerra Right to Right Dreta a Dreta timeLine Enable/disable auto-scrolling Activa/desactiva autodesplaçament Enable/disable loop-points Activa/desactiva punts de bucle After stopping go back to begin Després d'aturar torna al començament After stopping go back to position at which playing was started Després d'aturar torna a la posició on va començar la reproducció After stopping keep position Després d'aturar manté la posició Hint Consell Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted Solo Solo trackContentObject Muted trackContentObjectView Current position Posició actual Hint Consell Press <Ctrl> and drag to make a copy. Pitja <Ctrl> i arrossega per a fer una còpia. Current length Longitud actual Press <Ctrl> for free resizing. Pitja <Ctrl> per a redimensionar lliurement. %1:%2 (%3:%4 to %5:%6) %1:%2 (%3:%4 a %5:%6) Delete (middle mousebutton) Esborra (botó del mig del ratolí) Cut Talla Copy Copia Paste Enganxa Mute/unmute (<Ctrl> + middle click) Apaga/encén (<Ctrl> + clic del mig) trackOperationsWidget Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Pitja <Ctrl> quan piquis el control de moviment per a iniciar una nova acció d'arrossegar i amollar. Clone this track Clona aquesta pista Remove this track Elimina aquesta pista Actions for this track Accions per a aquesta pista Mute Apaga Mute this track Apaga aquesta pista Solo Solo vestigeInstrument Loading plugin Carregant connector Please wait while loading VST-plugin... Per favor, espera mentre es carrega el connector VST... Failed loading VST-plugin Ha fallat la càrrega del connector VST The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! El connector VST %1 no s'ha pogut carregar per alguna raó. Si funciona amb altre programari VST sota Linux, per favor contacta amb un desenvolupador de LMMS! vibed String %1 volume Volum de corda %1 String %1 stiffness Rigidesa de corda %1 Pick %1 position Posició per a tocar %1 Pickup %1 position Posició per a recollir %1 Pan %1 Panorama %1 Detune %1 Desafinament %1 Fuzziness %1 Arrissada %1 Length %1 Longitud %1 Impulse %1 Impuls %1 Octave %1 Octava %1 vibedView Volume: Volum: The 'V' knob sets the volume of the selected string. La roda 'V' ajusta el volum de la corda seleccionada. String stiffness: Rigidesa de corda: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. La roda 'S' ajusta la rigidesa de la corda seleccionada. La rigidesa de la corda afecta el temps que la corda ressonarà. Quan més baix el valor, més temps sonarà la corda. Pick position: Posició per a tocar: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. La roda 'P' ajusta la posició on serà tocada la corda seleccionada. Quan més baix el valor, es toca més a prop del pont. Pickup position: Posició per a recollir: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. La roda 'PU' ajusta la posició on les vibracions seran monitoritzades per a la corda seleccionada. Quan més baix aquest valor, la recollida és més a prop del pont. Pan: Panorama: The Pan knob determines the location of the selected string in the stereo field. La roda Pan determina la localització de la corda seleccionada al camp estèreo. Detune: Desafinament: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. La roda Detune modifica el to de la corda seleccionada. Valors menors que zero faran que la corda soni amb bemoll. Valors majors que zero faran que la corda soni amb sostingut. Fuzziness: Arrissada: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. La roda Slap afegeix una mica d'arrissada a la corda seleccionada que és més notable durant l'atac, encara que també pot usar-se per a que la corda soni més 'metàl·lica'. Length: Longitud: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. La roda Length ajusta la longitud de la corda seleccionada. Les cordes més llargues sonaran a la vegada més temps i més brillants, emperò també es menjaran més cicles de CPU. Impulse or initial state Impuls o estat inicial The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. El selector 'Imp' determina si la forma d'ona del gràfic s'ha de tractar com un impuls impartit a la corda quan es toca o l'estat inicial de la corda. Octave Octava The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. El selector Octava s'usa per a escollir a quin harmònic de la nota la corda sonarà. Per exemple, '-2' significa que la corda sonarà dues octaves per sota de la fonamental, 'F' significa que la corda sonarà a la fonamental, i '6' significa que la corda sonarà sis octaves per sobre de la fonamental. Impulse Editor Editor d'Impuls The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. L'editor de forma d'ona dóna control sobre l'estat inicial o impuls que s'utilitza per a iniciar la corda vibrant. Els botons de la dreta del gràfic inicialitzaran la forma d'ona al tipus seleccionat. El botó '?' carregarà la forma d'ona des d'un fitxer; només es carregaran les primeres 128 mostres. La forma d'ona també pot dibuixar-se al gràfic. El botó 'S' suavitzarà la forma d'ona. El botó 'N' normalitzarà la forma d'ona. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Vibed modela fins a nou cordes vibrants independents. El selector 'String' et permet escollir quina corda s'està editant. El selector 'Imp' escull si el gràfic representa un impuls o l'estat inicial de la corda. El selector 'Octave' escull a quin harmònic la corda ha de vibrar. El gràfic et permet controlar l'estat inicial o impuls usat per a posar la corda en marxa. La roda 'V' controla el volum. La roda 'S' controla la rigidesa de la corda. La roda 'P' controla la posició per a tocar. La roda 'PU' controla la posició per a recollir. Probablement no cal explicar 'Pan' i 'Detune'. La roda 'Slap' afegeix una mica d'arrissada al so de la corda. La roda 'Length' controla la longitud de la corda. El LED a la cantonada dreta baixa de l'editor de forma d'ona determina si la corda està activa a l'instrument actual. Enable waveform Habilita forma d'ona Click here to enable/disable waveform. Pica aquí per a activar/desactivar la forma d'ona. String Corda The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. El selector String s'usa per a escollir quina corda estan editant els controls. Un instrument Vibed pot tenir fins a nou cordes vibrants independents. El LED a la cantonada dreta baixa de l'editor de forma d'ona indica si la corda seleccionada està activa. Sine wave Ona sinusoïdal Triangle wave Ona triangular Saw wave Ona de serra Square wave Ona quadrada White noise wave Ona de soroll blanc User defined wave Ona arbitrària Smooth Suavitza Click here to smooth waveform. Pica aquí per a suavitzar la forma d'ona. Normalize Normalitza Click here to normalize waveform. Pica aquí per a normalitzar la forma d'ona. &Help &Ajuda Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. visualizationWidget click to enable/disable visualization of master-output pica per a activar/desactivar la visualització de la sortida mestra Click to enable voiceObject Voice %1 pulse width Voice %1 attack Voice %1 decay Voice %1 sustain Voice %1 release Voice %1 coarse detuning Voice %1 wave shape Voice %1 sync Voice %1 ring modulate Voice %1 filtered Voice %1 test lmms-1.0.0+bzr2569/data/locale/cs.qm0000644000000000000000000030641011517317720015051 0ustar 00000000000000__YbyyYo EUD66إCnصI0wTLTQT[4#=V&X6`6`H5LN L^ihe~ηL5{ ;/R/_eCC8Ee*įj1 N*$1*y*b*0 *0++^++c+c+į5f6uS93'F|U<GGd6GkH̙H~I;5{J+2KMLb^MMrMENhPWUPW?T.60TZ TʴRTʴXUQVb Vb8VhVV\V2Wi΃WW>VXZ/Z/դZkZk>Zo;dZoI{[G\˕]6 m]N|}|}}U9~#2;";_/Uϙ&5^<vCuG e )iy*Wyc@QڭOnW^  C>/N++=unX,"Rw2i7"~9; @۴yCQFzaFzҨJJOX9OXFV]Z;<Z;ޫaUp> ~m2o>u3ɄyVʭiՙ8Zlߺ>oHCB>UA D:a3$ ~v(^P(^`,´D.|: [RoIAr%7tO9 %e8n~C f3cd9>oѻt>W]gP~{zVSssssD3z%82Q7t8J?:)[CB2HH>\MOXMP~P~cWa]]l#z8|Z |ZN}"~K~HŐu؃ĩ0R$#yyS#3GW3)Ľtѫ%6*6~N:քOY왞jHgnBչ1Y). iu 0y(1019p:^M;:6<<Ђ<<5A U]UFA> JtiM$Mt]Mк|PJ_=PJPJ#Qq.Qq.`^`)L`M`%:`%Fpc=g5hjzttkJ rJ5w~ew^wwfyTχyT:{ 5<}F8`9( Np%uuu)uuuuu{<[I;ILIIIRq_ >q =p   <PxSžlyՔͥd2^P26(Eغؽ`;"fn9Vx u0 uBQ @@lN>TΎb(]$0&-U11159wF^TF^H8PegQQXZeNaEF>f-qlLlVZlLvA }o.kSpK]w*.wgzjfffz}t5tGgJt=tP:o^&{a;\EUZ<5P}<5T<5V<5I<5c<57[sߺNcD*}KljnZCNf^EbEE9i:x#EC&'v%1U56{c:gN?[U@1C*S#C*ӁC*!C*7Gk5!M9.TN9YWjS(Z+[A[El-lc%mBrgEz'#i"s-]#wPFi.ي.H5b5ܔh >24O7OCDu(E2M2|?ޔr} ti 0tsr  Yi !EY&)E,De5n;5;^ZIUI.UIZ8-[tz\X.tiANwm.vmy %\Ry %If_ cbej>n2;r2N]"d;)":=\2S x: UG$Ϟ:-SE-SEM-SEf;B6G/Gx!UI xQW~Ibs8c?5jDnqqvSe55ͻ;m$=:M%HC׻HCQ0dC'nl%DUUUf@ S\dvݑJ O^ PB kʩʩ]]{e࣓2M1YC $  %q )8 6E91 8e 8ee 9ce I: Mg# T_ YANC Yss k1 p, w%S w%a x; |b\   * B17 B1a = n(c F# Knj @  EC UUl u 1 b ·~ ʵ ˔P db J\N DB N; ؋9 ہ! DK  *Fq I9) ".r $ rM )x +' N%d Om STn STn_ \m \ ] ` m m ϶ m i m  s TO1 u:z MK $nP \ ! ? }lWx N@k ND V g hY 2 2D 4= ӗ` Ӱ8 غ e$y SY i O 7 P' .I .`B . .Ѡ ʓ<> "4 $&y#} -߉ ==^ VQ c.c c.c c.c c.co ct c[k d̥3 d̥ d̥ tE |`M )m x# {Lh {7  S !A s| $ ^ |  6 Ɉ7 0 e ޖ 96 9 鼣4I ]D-  H +4 .˙6X @u2 @u @u ao@ bS#1y cW cY c c8_ csL fbؾ l8> Zl [B Z z r t 0^^ ɶ. % Չ90 Չ9F +$r6i' ^kL Lf;n~?iJn`"y{&ʮJ2;}<)B}>HGXUP-ad^Zcg:ndyOpZ<`9%`9=  |[^@$edf(t)37WCgND>D:I U&Z d^ E~` W7KA _¥I1X~aT~'ܹit O LMMSAbout AboutDialogArpeggioArpeggio ArpeggiatorArpeggio smrArpeggio direction ArpeggiatorBrna arpeggia Arpeggio gate ArpeggiatorRe~im arpeggia Arpeggio mode ArpeggiatorRozsah arpeggiaArpeggio range Arpeggiator as arpeggia Arpeggio time ArpeggiatorTyp arpeggia Arpeggio type ArpeggiatorDoluDown Arpeggiator VolnFree ArpeggiatorNhodnRandom ArpeggiatorTYdnSort ArpeggiatorSynchronizovanSync Arpeggiator NahoruUp ArpeggiatorNahoru a dolo Up and down Arpeggiator%%ArpeggiatorViewARPEGGIOARPEGGIOArpeggiatorViewArpeggio je zposob hran (zejmna na drnkac nstroje), kter  in hudbu mnohem ~ivja. Struny tchto nstrojo (napY. harfy) jsou rozechvny jako v akordech. Jedinm rozdlem je, ~e se tak stane sekven n, tak~e tny nejsou zahrny ve stejnou dobu. Typickm arpeggiem jsou durov a mollov trojzvuky, ale mo~nch dalach akordo, kter si mo~ete vybrat, je spousta.An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select.ArpeggiatorViewBrna arpeggia:Arpeggio gate:ArpeggiatorView Rozsah arpeggia:Arpeggio range:ArpeggiatorView as arpeggia:Arpeggio time:ArpeggiatorView Smr: Direction:ArpeggiatorView BRNAGATEArpeggiatorView Re~im:Mode:ArpeggiatorView ROZSAHRANGEArpeggiatorView ASTIMEArpeggiatorViewvTento ovlada u~vejte pro nastaven brny arpeggia. Brna arpeggia ur uje procento celho arpeggio-tnu, kter m bt zahrn. Pomoc brny arpeggia mo~ete udlat bezva arpeggio staccato.Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios.ArpeggiatorViewTento ovlada u~vejte pro nastaven rozsahu arpeggia v oktvch. Vybran arpeggio bude zahrno ve zvolenm po tu oktv.Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves.ArpeggiatorViewmsmsArpeggiatorViewoktva(y) octave(s)ArpeggiatorView KANLYCHANNELSAudioAlsa::setupWidgetZAXZENDEVICEAudioAlsa::setupWidgetZeslen:Amplify:AudioFileProcessorViewKoncov bod: Endpoint:AudioFileProcessorViewZapnete-li toto tla tko, cel sampl bude pYehrvn pozptku. Tato volba je u~ite n pro zajmav efekty napY. pozptku pYehran sr~ka.pIf you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash.AudioFileProcessorViewNSmy ka od po te nho ke koncovmu bodu#Loop sample at start- and end-pointAudioFileProcessorView$OtevYt jin samplOpen other sampleAudioFileProcessorView$PYehrvat pozptkuReverse sampleAudioFileProcessorViewPo te n bod: Startpoint:AudioFileProcessorView KANLYCHANNELSAudioJack::setupWidgetJMNO-KLIENTA CLIENT-NAMEAudioJack::setupWidget KANLYCHANNELSAudioOss::setupWidgetZAXZENDEVICEAudioOss::setupWidgetZAXZENDEVICEAudioPortAudio::setupWidget KANLYCHANNELSAudioPulseAudio::setupWidgetZAXZENDEVICEAudioPulseAudio::setupWidgetZAXZENDEVICEAudioSdl::setupWidget2&Koprovat hodnoty (%1%2)&Copy value (%1%2)AutomatableModel,&Vlo~it hodnoty (%1%2)&Paste value (%1%2)AutomatableModel"&Resetovat (%1%2) &Reset (%1%2)AutomatableModel2PYipojit ke kontrolru...Connect to controller...AutomatableModelPYipojeno k %1Connected to %1AutomatableModel.PYipojeno ke kontrolruConnected to controllerAutomatableModel*Editovat pYipojen...Edit connection...AutomatableModelFEditovat automatizaci pro cel songEdit song-global automationAutomatableModel"Odebrat pYipojenRemove connectionAutomatableModellVaechny ozna en hodnoty byly zkoprovny do schrnky.1All selected values were copied to the clipboard.AutomationEditor2Automatiza n editor - %1Automation Editor - %1AutomationEditorHAutomatiza n editor - ~dn patternAutomation Editor - no patternAutomationEditorKliknte zde, pokud chcete aktivovat re~im kreslen. V tomto vchozm a nej astji u~vanm re~imu lze pYidvat a pYesunovat jednotliv hodnoty. Pro aktivaci mo~ete vyu~t t~ klvesov zkratky Shift+D.Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode.AutomationEditor2Kliknte zde, pokud chcete aktivovat re~im mazn. V tomto re~imu lze mazat jednotliv hodnoty. Pro aktivaci mo~ete vyu~t t~ klvesov zkratky Shift+E.Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode.AutomationEditorKliknte zde, pokud chcete aktivovat re~im vbru. Tento re~imu umo~Huje hodnoty vybrat a je nezbytn jestli~e hodnoty chcete vyjmout, koprovat, vlo~it, smazat nebo pYesunout. Pro aktivaci mo~ete vyu~t t~ klvesov zkratky Shift+S.Click here and select-mode will be activated. In this mode you can select values. This is necessary if you want to cut, copy, paste, delete, or move values. You can also press 'Shift+S' on your keyboard to activate this mode.AutomationEditor Kliknte zde, pokud chcete ozna en hodnoty zkoprovat do schrnky. Vlo~it je pak mo~ete kdekoliv v libovolnho patternu pomoc tla tka Vlo~it.Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditor*Kliknte zde, pokud chcete ozna en hodnoty vyjmout a ulo~it do schrnky. Vlo~it je pak mo~ete kdekoliv v libovolnm patternu pomoc tla tka Vlo~it.Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditorKliknete-li zde, budou hodnoty ze schrnky vlo~eny do prvnho viditelnho taktu.YClick here and the values from the clipboard will be pasted at the first visible measure.AutomationEditorKliknte zde, pokud chcete pYehrt aktuln pattern. To je aikovn pYi editaci neboe pattern je automaticky pYehrvn ve smy ce.Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached.AutomationEditorKliknte zde, pokud chcete zastavit pYehrvn aktulnho patternu.>Click here if you want to stop playing of the current pattern.AutomationEditorFKoprovat ozna en hodnoty (Ctrl+C)Copy selected values (Ctrl+C)AutomationEditorBVyjmout ozna en hodnoty (Ctrl+X)Cut selected values (Ctrl+X)AutomationEditor0Re~im kreslen (Shift+D)Draw mode (Shift+D)AutomationEditor,Re~im mazn (Shift+E)Erase mode (Shift+E)AutomationEditorKliknte zde pokud chcete aktivovat re~im pYesunu vbro. V tomto re~imu lze pYesouvat hodnoty, kter byly ozna eny v re~imu vbru. Pro aktivaci mo~ete vyu~t t~ klvesov zkratky 'Shift+M'.If you click here, move-mode will be activated. In this mode you can move the values you selected in select-mode. You can also press 'Shift+M' on your keyboard to activate this mode.AutomationEditor<Re~im pYesunu vbro (Shift+M)Move selection mode (Shift+M)AutomationEditorFVlo~it hodnoty ze schrnky (Ctrl+V)$Paste values from clipboard (Ctrl+V)AutomationEditorPYehrt nebo pozastavit pYehrvn aktulnho patternu (mezernk)"Play/pause current pattern (Space)AutomationEditorOtevYete prosm automatiza n pattern pomoc kontextovho menu ovldn!EPlease open an automation pattern with the context menu of a control!AutomationEditor,Re~im vbru (Shift+S)Select mode (Shift+S)AutomationEditordZastavit pYehrvn aktulnho patternu (mezernk)'Stop playing of current pattern (Space)AutomationEditor&Hodnoty zkoprovny Values copiedAutomationEditorFOvlada thni pYi stisknutm <CTRL>$Drag a control while pressing AutomationPattern%1 PYipojen%1 ConnectionsAutomationPatternViewZmnit jmno Change nameAutomationPatternViewVy istitClearAutomationPatternViewOdpojit "%1"Disconnect "%1"AutomationPatternView@OtevYt v automatiza nm editoruOpen in Automation editorAutomationPatternViewResetovat jmno Reset nameAutomationPatternViewrdvojklikem otevYt tento pattern v automatiza nm editoru6double-click to open this pattern in automation editorAutomationPatternView&Automatiza n stopaAutomation trackAutomationTrack BluesBlues ChordCreatorRozsah akordu Chord range ChordCreatorTyp akordu Chord type ChordCreatorSn~en Diminished ChordCreatorHarmonick mollHarmonic minor ChordCreatorDurov bebop Major bebop ChordCreator$Durov pentatonikaMajor pentatonic ChordCreatorMelodick moll Melodic minor ChordCreator&Mollov pentatonikaMinor pentatonic ChordCreatorCel nota Whole tone ChordCreator oktvaoctave ChordCreator AKORDYCHORDSChordCreatorViewRozsah akordu: Chord range:ChordCreatorView ROZSAHRANGEChordCreatorViewTento ovlada u~vejte pro nastaven rozsahu akordo v oktvch. Vybran akord bude zahrn ve zvolenm po tu oktv.{Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves.ChordCreatorViewoktva(y) octave(s)ChordCreatorViewKontrolr %1 Controller %1 ControllerAutodetekce Auto DetectControllerConnectionDialog KANLCHANNELControllerConnectionDialogKONTROLR CONTROLLERControllerConnectionDialog ZruaitCancelControllerConnectionDialog&Nastaven pYipojenConnection SettingsControllerConnectionDialog"Detekovn cyklus.Cycle Detected.ControllerConnectionDialogVstupn kanl Input channelControllerConnectionDialog"Vstupn kontrolrInput controllerControllerConnectionDialogLMMSLMMSControllerConnectionDialogMAPOVAC FUNKCEMAPPING FUNCTIONControllerConnectionDialogMIDI KONTROLRMIDI CONTROLLERControllerConnectionDialogHMIDI-zaYzen k pYijmu MIDI-udlosti(MIDI-devices to receive MIDI-events fromControllerConnectionDialogOKOKControllerConnectionDialog*U}IVATELSK KONTROLRUSER CONTROLLERControllerConnectionDialog PYidatAddControllerRackViewKontrolryController RackControllerRackView.&Odstranit tento plugin&Remove this pluginControllerViewKontrolry jsou schopny automatizovat nastaven ovlada o, aouptek a dalach Ydicch prvko.QControllers are able to automate the value of a knob, slider, and other controls.ControllerViewOvlada eControlsControllerViewJVlo~te nov jmno pro tento kontrolr&Enter the new name for this controllerControllerView*PYejmenovat kontrolrRename controllerControllerViewEfekt aktivovnEffect enabledEffect BrnaGateEffect"Efekty aktivovnyEffects enabled EffectChainPYidat efekt Add effectEffectRackViewXETZ EFEKTn EFFECTS CHAINEffectRackViewPYidat efekt Add effectEffectSelectDialog.&Odstranit tento plugin&Remove this plugin EffectViewOvlada eControls EffectView BRNAGATE EffectView Brna:Gate: EffectViewPosunout &dolu Move &down EffectView Posunout &nahoruMove &up EffectViewZap/VypOn/Off EffectViewTla tko Brna ur uje slu signlu kter je pova~ovn za ticho pYi rozhodovn kdy skon it se zpracovnm signlo.zThe Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. EffectView as:Time: EffectView8Zapnout nebo vypnout efekty.Toggles the effect on or off. EffectViewFrek x 100 Freq x 100EnvelopeAndLfoParameters@Kliknte zde pro pilovitou vlnu.&Click here for a saw-wave for current.EnvelopeAndLfoView@Kliknte zde pro sinusovou vlnu.Click here for a sine-wave.EnvelopeAndLfoViewBKliknte zde pro pravohlou vlnu.Click here for a square-wave.EnvelopeAndLfoViewDKliknte zde pro trianglovou vlnu.Click here for a triangle-wave.EnvelopeAndLfoViewfSampl odnkud pYethnte a pusete jej v tomto okn.8Drag a sample from somewhere and drop it in this window.EnvelopeAndLfoViewFREK x 100 FREQ x 100EnvelopeAndLfoViewRadaHintEnvelopeAndLfoViewSUSTSUSTEnvelopeAndLfoViewSustain:Sustain:EnvelopeAndLfoView ZruaitCancelExportProjectDialog VstupOutputExportProjectDialog FX %1FX %1FxMixerHVlo~te nov jmno pro tento FX kanl&Enter the new name for this FX channel FxMixerViewFX-MixerFX-Mixer FxMixerViewZtlumitMute FxMixerView,Ztlumit tento FX kanlMute this FX channel FxMixerView(PYejmenovat FX kanlRename FX channel FxMixerView KANLCHANNELInstrumentMidiIOView$POVOLIT MIDI VSTUPENABLE MIDI INPUTInstrumentMidiIOView&POVOLIT MIDI VSTUPENABLE MIDI OUTPUTInstrumentMidiIOViewTyp filtru Filter typeInstrumentSoundShapingHLASITOSTVOLUMEInstrumentSoundShapingHlasitostVolumeInstrumentSoundShaping FILTRFILTERInstrumentSoundShapingView&Zde si mo~ete vybrat z vestavnch filtro, kter chcete pou~t pro tuto stopu nstroje. Filtry jsou velmi dole~it pro zmnu charakteristiky zvuku.Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound.InstrumentSoundShapingViewHzHzInstrumentSoundShapingViewRezonance: Resonance:InstrumentSoundShapingViewCLTARGETInstrumentSoundShapingViewZkladn nota Base noteInstrumentTrack"Vchoz nastavenDefault presetInstrumentTrackFX kanl FX channelInstrumentTrackHlasitostVolumeInstrumentTrackxTmto ovlada em mo~ete nastavit hlasitost otevYenho kanlu. Nastaven.uThe LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. MainWindowAktuln projekt byl od poslednho ulo~en zmnn. Chcete jej nyn ulo~it?OThe current project was modified since last saving. Do you want to save it now? MainWindowZptUndo MainWindowNepojmenovanUntitled MainWindowCo je to? What's this? MainWindow Pracovn adresYWorking directory MainWindowZAXZENDEVICEMidiAlsaRaw::setupWidgetZAXZENDEVICEMidiAlsaSeq::setupWidgetMIDI kontrolrMIDI ControllerMidiController8nepojmenovan_midi_kontrolrunnamed_midi_controllerMidiControllerZAXZENDEVICEMidiOss::setupWidget,Pevn vstupn rychlostFixed input velocityMidiPort.Pevn vstupn rychlostFixed output velocityMidiPortVstupn kanl Input channelMidiPort"Vstupn kontrolrInput controllerMidiPort*Vstupn MIDI programOutput MIDI programMidiPortVstupn kanlOutput channelMidiPort$Vstupn kontrolrOutput controllerMidiPort,PYijmat MIDI-udlostiReceive MIDI-eventsMidiPort*Poslat MIDI-udlostiSend MIDI-eventsMidiPort8Osc %1 jemn rozladn vlevoOsc %1 fine detuning leftOscillatorObjectOsc %1 panoramaOsc %1 panningOscillatorObject Osc %1 hlasitost Osc %1 volumeOscillatorObject"Osc %1 forma vlnyOsc %1 wave shapeOscillatorObjectOsc %1 vlnaOsc %1 waveformOscillatorObjectKliknte zde, pokud chcete otevYt dala patch-soubor. Nastaven smy ky a re~imu ladn budou zachovna.LClick here to open another patch-file. Loop and Tune settings are not reset. PatmanViewZde mo~ete zapnout re~im smy ky, Jestli~e je re~im aktivn PatMan pou~ije dostupn informace o smy cem ze souboru.jHere you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. PatmanViewZde mo~ete zapnout re~im smy ky, Jestli~e je re~im aktivn PatMan nalad sampl tak, aby frekvence odpovdala tnu.iHere you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. PatmanView Smy kaLoop PatmanViewRe~im smy ky Loop mode PatmanView0}dn soubor nen vybrnNo file selected PatmanView$OtevYt jin patchOpen other patch PatmanView(OtevYt patch souborOpen patch file PatmanView*Patch-Soubory (*.pat)Patch-Files (*.pat) PatmanView LaditTune PatmanViewRe~im ladn Tune mode PatmanViewZkladn mra: Base amount:!PeakControllerEffectControlDialog Zkladn hodnota Base valuePeakControllerEffectControls0StupeH (amount) modulaceModulation amountPeakControllerEffectControlsZkladn nota Base note PianoViewDPYi na tn pluginu doalo k chybError while loading pluginPlugin:Na ten pluginu "%1" selhalo!Failed to load plugin "%1"!Plugin Plugin nenalezenPlugin not foundPluginzPlugin "%1" nebyl nalezen nebo nemo~e bt na ten! Dovod: "%2"AThe plugin "%1" wasn't found or could not be loaded! Reason: "%2"Plugin>Komprimovan soubor OGG (*.ogg)Compressed OGG-File (*.ogg)ProjectRenderer$WAV soubor (*.wav)WAV-File (*.wav)ProjectRendererKanly vstup: Channels In: QWidgetKanly vstup:Channels Out: QWidgetCopyright: Copyright: QWidgetSoubor:File: QWidgetTvorce:Maker: QWidget Nzev:Name: QWidgetNeNoQWidget(Real time schopnost:Real Time Capable: QWidget(Vy~adovn Real Time:Requires Real Time: QWidgetAnoYesQWidget$`estnctinov nota 16th note TempoSyncKnob(DvaatYicetinov nota 32nd note TempoSyncKnobOsminov nota8th note TempoSyncKnobVlastnCustom  TempoSyncKnobVlastn... Custom... TempoSyncKnobOsm beato Eight beats TempoSyncKnobPolov nota Half note TempoSyncKnob"NesynchronizovanNo Sync TempoSyncKnob tvreov nota Quarter note TempoSyncKnob8Synchro k aestnctinov notSynced to 16th Note TempoSyncKnob<Synchro k dvaatYicetinov notSynced to 32nd Note TempoSyncKnob.Synchro k osminov notSynced to 8th Note TempoSyncKnob*Synchro k osmi beatomSynced to Eight Beats TempoSyncKnob*Synchro k polov notSynced to Half Note TempoSyncKnob0Synchro ke  tvreov notSynced to Quarter Note TempoSyncKnob&Synchro k cel notSynced to Whole Note TempoSyncKnob&Synchronizace tempa Tempo Sync TempoSyncKnobCel nota Whole note TempoSyncKnob:Osc %1 jemn rozladn vlevo:Osc %1 fine detuning left:TripleOscillatorView Osc %1 panorama:Osc %1 panning:TripleOscillatorView"Osc %1 hlasitost:Osc %1 volume:TripleOscillatorView stupndegreesTripleOscillatorViewKliknte zde pro zobrazen nebo skryt grafickho rozhran (GUI) pro vaae VST pluginy.QClick here to show or hide the graphical user interface (GUI) of your VST-plugin.VestigeInstrumentViewKliknte zde, pokud chcete otevYt ostatn VST pluginy. Po kliknut na toto tla tko se objev okno ve kterm mo~ete soubor vybrat.Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file.VestigeInstrumentView&DLL soubory (*.dll)DLL-files (*.dll)VestigeInstrumentView&EXE soubory (*.exe)EXE-files (*.exe)VestigeInstrumentView:}dn VST plugin nebyl na tenNo VST-plugin loadedVestigeInstrumentView$OtevYt VST pluginOpen VST-pluginVestigeInstrumentView6OtevYt ostatn VST pluginyOpen other VST-pluginVestigeInstrumentView4Chyba na tn VST pluginuFailed loading VST-plugin VstPluginNa tm pluginLoading plugin VstPluginZProsm  ekejte dokud se nena te VST plugin...'Please wait while loading VST-plugin... VstPlugin"VST plugin %1 nemohl bt z ur itch dovodo na ten. Jestli~e tento plugin funguje v Linuxu v jinm VST softwaru, kontaktujte prosm LMMS vvojYe!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! VstPluginZeslenAmplifyaudioFileProcessorKonec samplu End of sampleaudioFileProcessor Smy kaLoopaudioFileProcessor$PYehrvat pozptkuReverse sampleaudioFileProcessorZa tek sampluStart of sampleaudioFileProcessorFrekvence: Frequency:bassBoosterControlDialog Zisk:Gain:bassBoosterControlDialog POMRRATIObassBoosterControlDialog Pomr:Ratio:bassBoosterControlDialogFrekvence FrequencybassBoosterControlsZiskGainbassBoosterControls PomrRatiobassBoosterControls4PYidat automatiza n stopuAdd automation-trackbbEditor2PYidat beat/basovou linkuAdd beat/basslinebbEditor(Beat+Baseline EditorBeat+Bassline EditorbbEditorKliknte zde, pokud chcete pYehrt aktuln beat/baseline. Beat/baseline je automaticky pYehrvn ve smy ce.qClick here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached.bbEditorKliknte zde, pokud chcete zastavit pYehrvn aktuln beat/bassline.4Click here to stop playing of current beat/bassline.bbEditorZPYehrt nebo pozastavit pYehrvn (mezernk)(Play/pause current beat/bassline (Space)bbEditorjZastavit pYehrvn aktuln beat/bassline (mezernk).Stop playback of current beat/bassline (Space)bbEditorZmnit barvu Change color bbTCOViewZmnit jmno Change name bbTCOView@OtevYt v Beat+Bassline editoruOpen in Beat+Bassline-Editor bbTCOViewResetovat jmno Reset name bbTCOView Beat/Bassline %1Beat/Bassline %1bbTrackDlka samplu Samplelength bitInvader@Kliknte zde pro pilovitou vlnu.Click here for a saw-wave.bitInvaderViewBKliknte zde pro pravohlou vlnu.Click here for a square-wave.bitInvaderViewDKliknte zde pro trianglovou vlnu.Click here for a triangle-wave.bitInvaderViewXKliknte zde pro u~ivatelem definovan tvar.$Click here for a user-defined shape.bitInvaderView>Pro uhlazen vlny kliknte zde.Click here to smooth waveform.bitInvaderViewInterpolovat InterpolationbitInvaderViewNormalizovat NormalizebitInvaderViewDlka samplu Sample LengthbitInvaderViewPilovit vlnaSaw wavebitInvaderViewSinusov vlna Sine wavebitInvaderViewUhladitSmoothbitInvaderView.Pravohl (square) vlna Square wavebitInvaderViewTrianglov vlna Triangle wavebitInvaderView4Vlna definovan u~ivatelemUser defined wavebitInvaderViewBl aumWhite noise wavebitInvaderView*Nemohu otevYt souborCould not open fileexportProjectDialogNemohu ulo~it soubor %1 pro zpis. PYesvd te se prosm, ~e mte prvo zpisu do tohoto souboru a pYsluanho adresYe a zkuste to znovu!Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again!exportProjectDialog ChybaErrorexportProjectDialogChyba pYi ur en souboru zaYzen enkodru. Zkuste prosm vybrat jin vstupn formt.\Error while determining file-encoder device. Please try to choose a different output format.exportProjectDialog0Exportovat projekt do %1Export project to %1exportProjectDialogRenderuji: %1%Rendering: %1%exportProjectDialogGrafGraph graphModelZkreslen DistortionkickerInstrument"Kone n frekvence End frequencykickerInstrumentZiskGainkickerInstrument&Po te n frekvenceStart frequencykickerInstrumentZkreslen: Distortion:kickerInstrumentView$Kone n frekvence:End frequency:kickerInstrumentView Zisk:Gain:kickerInstrumentView(Po te n frekvence:Start frequency:kickerInstrumentViewNpovd&a&HelpknobRVlo~te prosm novou hodnotu mezi %1 a %2:+Please enter a new value between %1 and %2:knobjVlo~te prosm novou hodnotu mezi -96.0 dBV a 6.0 dBV:7Please enter a new value between -96.0 dBV and 6.0 dBV:knob&Analyza n nstrojeAnalysis ToolsladspaBrowserViewDostupn efektyAvailable EffectsladspaBrowserViewNeznm Don't knowladspaBrowserViewNstroje InstrumentsladspaBrowserViewbToto dialogov okno zobrazuje informace o vaech LADSPA pluginech, kter bylo LMMS schopno nalzt. Zsuvn moduly jsou rozdleny do pti kategori podle porto a nzvo. (new line) (new line) K dispozici jsou ty efekty, kter mohou bt pou~ity v LMMS. Aby v LMMS bylo mo~n u~t efektu, mus se o efekt skute n jednat, to znamen, ~e mus mt oba vstupn a vstupn kanly. LMMS identifikuje vstupn kanl jako audio podle 'in' v nzvu. Vstupn kanly jsou identifikovny pole ozna en psmeny 'out'. Krom toho efekt mus mt stejn po et vstupo a vstupo a bt real time kompatibiln. Nedostupn efekty jsou ty, kter byly identifikovny jako efekty, ale bu nemaj stejn po et vstupnch a vstupnch kanlo nebo nejsou real time kompatibiln. Nstroje jsou pluginy u kterch byly identifikovny pouze vstupn kanly. Analyza n nstroje jsou pluginy u kterch byly identifikovny pouze vstupn kanly. Neznm jsou pluginy, pro kter nebyly identifikovny ~dn vstupn nebo vstupn kanly. Dvojitm kliknutm na kterkoli z modulo se zobraz informace o portech.TThis dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports.ladspaBrowserViewTyp:Type:ladspaBrowserView"Nedostupn efektyUnavailable EffectsladspaBrowserView Popis DescriptionladspaDescriptionPluginyPluginsladspaDescription AudioAudioladspaPortDialogOvldnControlladspaPortDialogSmr DirectionladspaPortDialog VstupInputladspaPortDialogLogaritmick LogarithmicladspaPortDialog&Min < Vchoz < MaxMin < Default < MaxladspaPortDialog NzevNameladspaPortDialog VstupOutputladspaPortDialog PortyPortsladspaPortDialogRychlostRateladspaPortDialogZapnutoToggledladspaPortDialogTypTypeladspaPortDialogAnoYesladspaPortDialog DorazAccent lb302SynthZkreslen Distortion lb302SynthKlouznSlide lb302Synth*VCF frekvence vypnutVCF Cutoff Frequency lb302SynthVCF rezonance VCF Resonance lb302SynthVlnaWaveform lb302SynthCUTCUTlb302SynthView@Kliknte zde pro pilovitou vlnu.Click here for a saw-wave.lb302SynthViewBKliknte zde pro pravohlou vlnu.Click here for a square-wave.lb302SynthViewDKliknte zde pro trianglovou vlnu.Click here for a triangle-wave.lb302SynthViewHKliknte zde pro exponenciln vlnu.#Click here for an exponential wave.lb302SynthViewFrek. vypnut: Cutoff Freq:lb302SynthViewRezonance: Resonance:lb302SynthViewPilovit vlnaSaw wavelb302SynthViewSinusov vlna Sine wavelb302SynthView.Pravohl (square) vlna Square wavelb302SynthViewTrianglov vlna Triangle wavelb302SynthViewBl aumWhite noise wavelb302SynthView DorazAccent lb303SynthZkreslen Distortion lb303SynthKlouznSlide lb303Synth*VCF frekvence vypnutVCF Cutoff Frequency lb303SynthVCF rezonance VCF Resonance lb303SynthVlnaWaveform lb303SynthCUTCUTlb303SynthViewFrek. vypnut: Cutoff Freq:lb303SynthViewRezonance: Resonance:lb303SynthView*Prolnn (crossfade) CrossfademalletsInstrumentTvrdostHardnessmalletsInstrumentLFO Hloubka LFO DepthmalletsInstrumentLFO Rychlost LFO SpeedmalletsInstrumentMarimbaMarimbamalletsInstrument"Chybjc soubory Missing filesmalletsInstrumentModultor ModulatormalletsInstrument PohybMotionmalletsInstrument PozicePositionmalletsInstrumentTlakPressuremalletsInstrumentRychlostSpeedmalletsInstrument RozsahSpreadmalletsInstrumentVibrafon VibraphonemalletsInstrument"Frekvence vibrta Vibrato FreqmalletsInstrumentZisk vibrta Vibrato GainmalletsInstrumentZda se, ~e Vaae Stk instalace nen kompletn. PYesvd te se, ze STK bal ek je pln nainstalovn!aYour Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed!malletsInstrument*Prolnn (crossfade) CrossfademalletsInstrumentView,Prolnn (crossfade): Crossfade:malletsInstrumentViewTvrdostHardnessmalletsInstrumentViewTvrdost: Hardness:malletsInstrumentViewNstroj InstrumentmalletsInstrumentViewLFO Hloubka LFO DepthmalletsInstrumentViewLFO Hloubka: LFO Depth:malletsInstrumentViewLFO Rychlost LFO SpeedmalletsInstrumentViewLFO Rychlost: LFO Speed:malletsInstrumentViewModultor ModulatormalletsInstrumentViewModultor: Modulator:malletsInstrumentView PohybMotionmalletsInstrumentView Pohyb:Motion:malletsInstrumentView PozicePositionmalletsInstrumentViewPozice: Position:malletsInstrumentViewTlakPressuremalletsInstrumentView Tlak: Pressure:malletsInstrumentViewRychlostSpeedmalletsInstrumentViewRychlost:Speed:malletsInstrumentView RozsahSpreadmalletsInstrumentViewRozsah:Spread:malletsInstrumentViewVib frekVib FreqmalletsInstrumentViewVib frek: Vib Freq:malletsInstrumentViewVib ziskVib GainmalletsInstrumentViewVib zisk: Vib Gain:malletsInstrumentViewVibrtoVibratomalletsInstrumentViewVibrto:Vibrato:malletsInstrumentView&Npovda&HelpnineButtonSelectorZkreslen DistortionorganicInstrumentHlasitostVolumeorganicInstrumentZkreslen: Distortion:organicInstrumentView:Osc %1 jemn rozladn vlevo:Osc %1 fine detuning left:organicInstrumentView Osc %1 panorama:Osc %1 panning:organicInstrumentView"Osc %1 hlasitost:Osc %1 volume:organicInstrumentViewOsc %1 vlna:Osc %1 waveform:organicInstrumentView Nastavit nhodn RandomiseorganicInstrumentViewHlasitost:Volume:organicInstrumentView,Nemohu zmrazit patternCannot freeze patternpatternPattern nemo~e bt nyn zmrazen, neboe jste v re~imu pYehrvn. Zastavte pYehrvn a zkuste to znovu!_The pattern currently cannot be freezed because you're in play-mode. Please stop and try again!pattern ZruaitCancelpatternFreezeStatusDialog&Zmrazuji pattern...Freezing pattern...patternFreezeStatusDialog%1 kroky/o%1 steps patternView 1 krok1 step patternViewPYidat kroky Add steps patternViewZmnit jmno Change name patternView*Vy istit vaechny notyClear all notes patternViewZmrazitFreeze patternView(OtevYt v piano-rollOpen in piano-roll patternViewZnovu zmrazitRefreeze patternViewOdstranit kroky Remove steps patternViewResetovat jmno Reset name patternViewRozmrazitUnfreeze patternViewdvojitm kliknutm otevYete tento pattern v piano-roll k nastaven zeslen kroku pou~ijte kole ko myaiWdouble-click to open this pattern in piano-roll use mouse wheel to set volume of a step patternViewKliknete-li zde, budou noty ze schrnky vlo~eny do prvnho viditelnho taktu.XClick here and the notes from the clipboard will be pasted at the first visible measure. pianoRollKliknte zde pokud chcete ozna en noty zkoprovat do schrnky. Vlo~it je pak mo~ete kdekoliv v libovolnho patternu pomoc tla tka Vlo~it.Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRoll"Kliknte zde pokud chcete ozna en noty vyjmout a ulo~it do schrnky. Vlo~it je pak mo~ete kdekoliv v libovolnm patternu pomoc tla tka Vlo~it.Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRollKliknte zde, pokud chcete pYehrt aktuln pattern. To je aikovn pYi editaci. Pattern je automaticky pYehrvn ve smy ce.Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. pianoRollKliknte zde pokud chcete nahrvat z MIDI zaYzen nebo virtulnho testovacho pina pYsluanho kanlovho okna do aktulnho patternu. PYi nahrvn zaznamente vaechny zahran noty do tohoto patternu, nsledn si je mo~ete pYehrt nebo upravit.Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. pianoRollKliknte zde pokud chcete nahrvat z MIDI zaYzen nebo virtulnho testovacho pina pYsluanho kanlovho okna do aktulnho patternu. PYi nahrvn zaznamente vaechny zahran noty do tohoto patternu a na pozad uslyate skladbu nebo BB stopu.Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. pianoRollKliknte zde, pokud chcete zastavit pYehrvn aktulnho patternu./Click here to stop playback of current pattern. pianoRoll@Koprovat ozna en noty (Ctrl+C)Copy selected notes (Ctrl+C) pianoRoll<Vyjmout ozna en noty (Ctrl+X)Cut selected notes (Ctrl+X) pianoRoll0Re~im kreslen (Shift+D)Draw mode (Shift+D) pianoRoll,Re~im mazn (Shift+E)Erase mode (Shift+E) pianoRollTrvn noty Last note pianoRollZmek noty Note lock pianoRoll@Vlo~it noty ze schrnky (Ctrl+V)#Paste notes from clipboard (Ctrl+V) pianoRollPiano-Roll - %1Piano-Roll - %1 pianoRoll4Piano-Roll - ~dn patternPiano-Roll - no pattern pianoRollPYehrt nebo pozastavit pYehrvn aktulnho patternu (mezernk)"Play/pause current pattern (Space) pianoRollbOtevYete prosm pattern jeho dvojitm poklepnm!/Please open a pattern by double-clicking on it! pianoRollTNahrvat noty z MIDI-zaYzen/piano kanlu+Record notes from MIDI-device/channel-piano pianoRollNahrvat tny z MIDI zaYzen / kanlu pina pYi pYehrvn skladby nebo BB stopyJRecord notes from MIDI-device/channel-piano while playing song or BB track pianoRoll,Re~im vbru (Shift+S)Select mode (Shift+S) pianoRolldZastavit pYehrvn aktulnho patternu (mezernk)'Stop playing of current pattern (Space) pianoRoll\Aditivn synteztor pro zvuky podobn varhanm*Additive Synthesizer for organ-like sounds pluginBrowserNstroj pYethnte bu do Editoru skladby, Beat+Bassline Editoru nebo do existujc nstrojov stopy.nDrag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. pluginBrowserdFiltr ur en k import projekto z FL Studia do LMMS1Filter for importing FL Studio projects into LMMS pluginBrowserJFiltr pro import MIDI souboro do LMMS)Filter for importing MIDI-files into LMMS pluginBrowserBGUS kompatibiln patch instrumentGUS-compatible patch instrument pluginBrowserFNekompletn monofonn imitace tb303%Incomplete monophonic imitation tb303 pluginBrowser$Prohl~e nstrojoInstrument browser pluginBrowser Pluginy nstrojoInstrument plugins pluginBrowserFSeznam instalovanch LADSPA pluginoList installed LADSPA plugins pluginBrowservPlugin pro zvaen stereo separace vstupnch stereo souboro=Plugin for enhancing stereo separation of a stereo input file pluginBrowser&Libozvu n kleptkaTuneful things to bang on pluginBrowserPVST host pro u~it VST(i) plugino v LMMS-VST-host for using VST(i)-plugins within LMMS pluginBrowser0Vibra n modeltor strunVibrating string modeler pluginBrowserbez popisuno description pluginBrowsernplugin pro u~it libovolnch LADSPA efekto uvnitY LMMS.6plugin for using arbitrary LADSPA-effects inside LMMS. pluginBrowserhplugin pro u~it libovolnch VST efekto uvnitY LMMS.3plugin for using arbitrary VST-effects inside LMMS. pluginBrowserjednoduch sampler s rozmanitm nastavenm pro pou~it samplo (napY. bicch) v nstrojov stopZsimple sampler with various settings for using samples (e.g. drums) in an instrument-track pluginBrowsertYi vkonn osciltory kter mo~ete modulovat rozli nmi zposoby;three powerful oscillators you can modulate in several ways pluginBrowserNmnohostrann kick & bassdrum synteztor&versatile kick- & bassdrum-synthesizer pluginBrowser &Tu n&Bold projectNotes&Barva... &Color... projectNotes&Koprovat&Copy projectNotes&Kurzva&Italic projectNotes$Zarovnat &do bloku&Justify projectNotesZarovnat &vlevo&Left projectNotesV&lo~it&Paste projectNotes &Znovu&Redo projectNotes Zarovnat v&pravo&Right projectNotes&Podtr~en &Underline projectNotes &Zpt&Undo projectNotes$Zarovnat &na stYedC&enter projectNotes Ctrl+BCtrl+B projectNotes Ctrl+CCtrl+C projectNotes Ctrl+ECtrl+E projectNotes Ctrl+ICtrl+I projectNotes Ctrl+RCtrl+J projectNotes Ctrl+LCtrl+L projectNotes Ctrl+RCtrl+R projectNotes Ctrl+UCtrl+U projectNotes Ctrl+VCtrl+V projectNotes Ctrl+XCtrl+X projectNotes Ctrl+ZCtrl+Y projectNotes Ctrl+ZCtrl+Z projectNotes&VyjmoutCu&t projectNotesEditace Edit Actions projectNotesFormtovnFormat Actions projectNotes&Poznmky k projektu Project notes projectNotesnDo tohoto okna mo~ete vkldat Vaae poznmky k projektu.!Put down your project notes here. projectNotesPYejmenovat... Rename... renameDialog6AIFF soubory (*.aif *.aiff)AIFF-Files (*.aif *.aiff) sampleBuffer"AU soubory (*.au)AU-Files (*.au) sampleBufferVaechny audio soubory (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3)SAll Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) sampleBuffer0DrumSynth soubory (*.ds)DrumSynth-Files (*.ds) sampleBuffer*FLAC soubory (*.flac)FLAC-Files (*.flac) sampleBuffer&MP3 soubory (*.mp3)MP3-Files (*.mp3) sampleBuffer&OGG soubory (*.ogg)OGG-Files (*.ogg) sampleBuffer(OtevYt audio souborOpen audio file sampleBuffer&RAW soubory (*.raw)RAW-Files (*.raw) sampleBuffer*SPEEX soubory (*.spx)SPEEX-Files (*.spx) sampleBuffer&VOC soubory (*.voc)VOC-Files (*.voc) sampleBuffer&Wav soubory (*.wav)Wave-Files (*.wav) sampleBufferKoprovatCopy sampleTCOViewVyjmoutCut sampleTCOViewBSmazat (prostYedn tla tko myai)Delete (middle mousebutton) sampleTCOViewXZtlumit/neztlumit (<Ctrl> + prostYedn klik)#Mute/unmute ( + middle click) sampleTCOView Vlo~itPaste sampleTCOView*Nastav/vy isti zznamSet/clear record sampleTCOView@dvojitm kliknutm vyberte sampldouble-click to select sample sampleTCOViewStopa samplo Sample track sampleTrackHlasitostVolume sampleTrack"Hlasitost kanlu:Channel volume:sampleTrackViewHlasitost stopy Track volumesampleTrackViewVOLVOLsampleTrackViewAUDIO ROZHRANAUDIO INTERFACE setupDialog$AdresY pro tmataArtwork directory setupDialogAudio nastavenAudio settings setupDialog(VELIKOST VYR. PAMTI BUFFER SIZE setupDialog"Obrzek na pozadBackground artwork setupDialog ZruaitCancel setupDialogHVyberte instala n adresY FL Studia'Choose FL Studio installation directory setupDialogDVyberte adresY pro LADSPA pluginyChoose LADSPA plugin directory setupDialogBVyberte pro LMMS pracovn adresYChoose LMMS working directory setupDialog>Vyberte adresY pro STK rawwaveChoose STK rawwave directory setupDialog0Vyberte adresY s tmatyChoose artwork-theme directory setupDialog2Vyberte obrzek na pozadChoose background artwork setupDialog2Vyberte vchoz SoundFontChoose default SoundFont setupDialog>Vyberte adresY pro VST pluginy Choose your VST-plugin directory setupDialog<Komprimovat soubory s projekty"Compress project files per default setupDialog0Vchoz Soundfont souborDefault Soundfont File setupDialogBVypnout indiktor aktivity kanlu#Disable channel activity indicators setupDialog:Zobrazovat hlasitost jako dBVDisplay volume as dBV  setupDialog2Aktivovat nstrojov tipyEnable tooltips setupDialog8Instala n adresY FL Studia FL Studio installation directory setupDialog0Rmce: %1 Zpo~dn %2 msFrames: %1 Latency: %2 ms setupDialog Hlavn nastavenGeneral settings setupDialogDHQ re~im pro vstup audio zaYzenHQ-mode for output audio-device setupDialogZde vyberte preferovan MIDI rozhran. V zvislosti na konfiguraci Vaaeho systmu pYi kompilaci mo~ete volit mezi ALSA OSS a dalami. N~e vidte pol ko, kter nabz mo~nost nastaven vybranho MIDI rozhran.Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. setupDialogZde vyberte preferovan audio rozhran. V zvislosti na konfiguraci Vaaeho systmu pYi kompilaci mo~ete volit mezi ALSA, JACK, OSS a dalami. N~e vidte pol ko, kter nabz mo~nost nastaven vybranho audio rozhran.Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. setupDialogZde mo~ete nastavit intern velikost vyrovnvac pamti, kter je u~vna LMMS. Nzk hodnoty vedou k menamu zpo~dn, ale tak zposobuj nepou~iteln zvuk nebo apatn vkon, zejmna na starch po ta ch  i systmech s jdrem nepodporujcm real time.Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. setupDialog.Cesty k LADSPA pluginomLADSPA plugin paths setupDialog2Pracovn adresY pro LMMSLMMS working directory setupDialogMIDI ROZHRANMIDI INTERFACE setupDialogMIDI nastaven MIDI settings setupDialogOKOK setupDialog^Knoflky v kanlu pina tisknout pouze manuln)Only press keys on channel-piano manually setupDialog CestyPaths setupDialog Nastaven vkonuPerformance settings setupDialogjMnoh zmny nastaven se projev a~ po restartu LMMS!GPlease note that most changes won't take effect until you restart LMMS! setupDialog0Nastavit vchoz hodnotyReset to default-value setupDialog Restartovat LMMS Restart LMMS setupDialog.AdresY pro STK rawwaveSTK rawwave directory setupDialogNastavit LMMS Setup LMMS setupDialogHVyzvat k restartu po zmn nastaven,Show restart warning after changing settings setupDialogNEfekty u~ivatelskho rozhran vs. vkonUI effects vs. performance setupDialog.AdresY pro VST pluginyVST-plugin directory setupDialogZiskGain sf2InstrumentZiskGainsf2InstrumentViewTyp filtru Filter type sidInstrumentHlasitostVolume sidInstrumentRezonance: Resonance:sidInstrumentViewSustain:Sustain:sidInstrumentViewSynchronizovanSyncsidInstrumentViewHlasitost:Volume:sidInstrumentViewPrzdn projekt Empty projectsong"FL Studio projektFL Studio projectssong"Importovat soubor Import filesongMIDI sekvenceMIDI sequencessong*Hlavn ladn (pitch) Master pitchsong Hlavn hlasitost Master volumesong(Projekt NEN ulo~en.Project NOT saved.songProjekt ulo~en Project savedsongHZvolte soubor pro export projektu...!Select file for project-export...song TempoTemposong4Projekt %1 je nyn ulo~en.The project %1 is now saved.song0Projekt %1 nebyl ulo~en!The project %1 was not saved!songTento projekt je przdn, jeho exportovn nem smysl. NejdYve prosm vlo~te njak polo~ky do Editoru skladby!`This project is empty so exporting makes no sense. Please put some items into Song Editor first!songnepojmenovanuntitledsong4PYidat automatiza n stopuAdd automation-track songEditor(PYidat beat/basslineAdd beat/bassline songEditor&PYidat stopu samploAdd sample-track songEditor8Kliknte zde, pokud chcete pYehrt celou skladbu. PYehrvn za ne v mst kde se nalz zelen ozna ova pozice se kterm lze t~ pYi pYehrvn pohybovat.Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. songEditorKliknte zde, pokud chcete zastavit pYehrvn skladby. Ozna ova pozice bude odesln na za tek skladby.uClick here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. songEditor*Nemohu otevYt souborCould not open file songEditor(Nemohu zapsat souborCould not write file songEditorHNemohu ulo~it soubor %1. Pravdpodobn nejste oprvnn do tohoto souboru zapisovat. PYesvd te se prosm, ~e mte prvo zpisu do tohoto souboru a zkuste to znovu.Could not write file %1. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. songEditorRe~im kreslen Draw mode songEditorFRe~im editace (ozna it a pYesunout)Edit mode (select and move) songEditor(Re~im vysok kvalityHigh quality mode songEditor*Hlavn ladn (pitch) Master pitch songEditor Hlavn hlasitost Master volume songEditor4PYehrt skladbu (mezernk)Play song (Space) songEditor<Nahrt samply z audio zaYzen Record samples from Audio-device songEditorNahrt samply z audio zaYzen pYi pYehrvn skladby nebo BB stopy?Record samples from Audio-device while playing song or BB track songEditorEditor skladby Song-Editor songEditorLZastavit pYehrvn skladby (mezernk)Stop song (Space) songEditorTEMPO/BPM TEMPO/BPM songEditor TempoTempo songEditorTempo skladby je uvedeno v derech za minutu (BPS). Chcete-li zmnit tempo skladby, zmHte tuto hodnotu. Ka~d takt m  tyYi beaty, tak~e tempo v BPS specifikuje kolik takto / 4 bude za minutu pYehrno (nebo kolik takto bude pYehrno ve  tyYech minutch).-The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). songEditor&Hodnota: %1 poltnoValue: %1 semitones songEditorHodnota: %1% Value: %1% songEditorhlavn ladn master pitch songEditor hlavn hlasitost master volume songEditortempo skladby tempo of song songEditor `Yka:Width:stereoEnhancerControlDialog `YkaWidthstereoEnhancerControls>Po skon en jdi zpt na za tekAfter stopping go back to begintimeLinerPo skon en jdi zpt na pozici ze kter pYehrvn za alo?After stopping go back to position at which playing was startedtimeLine2Po skon en udr~uj poziciAfter stopping keep positiontimeLineBPovolit/zakzat automatick posunEnable/disable auto-scrollingtimeLineZPovolit/zakzat body pro pYehrvn ve smy ceEnable/disable loop-pointstimeLineRadaHinttimeLineStisknte <Ctrl> k vypnut magnetickch bodo pro pYehrvn ve smy ce.-Press to disable magnetic loop-points.timeLineZtlumenMutedtrackSloSolotrack ZruaitCanceltrackContainerNemohu najt filtr pro import souboru %1. Mli byste tento soubor zkonvertovat do formtu podporovanho LMMS pomoc jinho software.Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software.trackContainer0Nemohu importovat souborCouldn't import filetrackContainer*Nemohu otevYt souborCouldn't open filetrackContainerNemohu otevYt soubor %1 pro  ten. PYesvd te se prosm, ~e mte prvo ke  ten tohoto souboru a pYsluanho adresYe a zkuste to znovu!Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again!trackContainer.Importuji FLP soubor...Importing FLP-file...trackContainer0Importuji MIDI soubor...Importing MIDI-file...trackContainer$Na tm projekt...Loading project...trackContainer"Prosm  ekejte...Please wait...trackContainerZtlumenMutedtrackContentObject,%1:%2 (%3:%4 do %5:%6)%1:%2 (%3:%4 to %5:%6)trackContentObjectViewKoprovatCopytrackContentObjectViewAktuln dlkaCurrent lengthtrackContentObjectViewAktuln poziceCurrent positiontrackContentObjectViewVyjmoutCuttrackContentObjectViewBSmazat (prostYedn tla tko myai)Delete (middle mousebutton)trackContentObjectViewRadaHinttrackContentObjectViewXZtlumit/neztlumit (<Ctrl> + prostYedn klik)#Mute/unmute ( + middle click)trackContentObjectView Vlo~itPastetrackContentObjectViewdK vytvoYen kopie stisknte <Ctrl> a thnte mya.%Press and drag to make a copy.trackContentObjectViewXStisknte <Ctrl> pro voln mnn velikosti.Press for free resizing.trackContentObjectView&Akce pro tuto stopuActions for this tracktrackOperationsWidget&Klonovat tuto stopuClone this tracktrackOperationsWidgetZtlumitMutetrackOperationsWidget$Ztlumit tuto stopuMute this tracktrackOperationsWidget(Odstranit tuto stopuRemove this tracktrackOperationsWidgetSloSolotrackOperationsWidget4Chyba na tn VST pluginuFailed loading VST-pluginvestigeInstrumentNa tm pluginLoading pluginvestigeInstrumentZProsm  ekejte dokud se nena te VST plugin...'Please wait while loading VST-plugin...vestigeInstrument"VST plugin %1 nemohl bt z ur itch dovodo na ten. Jestli~e tento plugin funguje v Linuxu v jinm VST softwaru, kontaktujte prosm LMMS vvojYe!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer!vestigeInstrumentLPro zapnut/vypnut vlny kliknte zde.&Click here to enable/disable waveform. vibedViewDPro normalizaci vlny kliknte zde.!Click here to normalize waveform. vibedView>Pro uhlazen vlny kliknte zde.Click here to smooth waveform. vibedViewRozladit:Detune: vibedViewZapnout vlnuEnable waveform vibedView Dlka:Length: vibedViewNormalizovat Normalize vibedView OktvaOctave vibedViewPan:Pan: vibedView Pozice drnknut:Pick position: vibedViewPozice snma e:Pickup position: vibedViewPilovit vlnaSaw wave vibedViewSinusov vlna Sine wave vibedViewUhladitSmooth vibedView.Pravohl (square) vlna Square wave vibedView StrunaString vibedViewOvlada 'P' nastavuje pozici na kter bude na vybranou strunu drnknuto. Ni~a nastaven znamen hoz bl~e ke kobylce.The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. vibedViewOvlada 'PU' nastavuje pozici snma e pro vybranou strunu. Ni~a nastaven znamen snma bl~e u kobylky.The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. vibedView^Ovlada 'V' nastavuje hlasitost vybran struny.4The 'V' knob sets the volume of the selected string. vibedViewOvlada Rozladn mn ladn vybran struny. Hodnoty ni~a ne~ nula zposob ploch zvuk, hodnoty vyaa ne~ nula zposob ostYeja zvuk.The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. vibedViewOvlada Dlka nastavuje dlku vybran struny. Dela struny budou znt dle a jasnji, tak vaak spoYdaj vce CPU cyklo.The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. vibedViewzPan ovlada ur uje pozici vybran struny ve stereo prostoru. PThe Pan knob determines the location of the selected string in the stereo field. vibedViewVoli strun se u~v k vbru struny, kter bude upravovna. Nstroj Vibed mo~e obsahovat maximln devt nezvisle vibrujcch strun. LED v pravm dolnm rohu editoru tvaru vlny indikuje zda je vybran struna aktivn.The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. vibedViewTrianglov vlna Triangle wave vibedView4Vlna definovan u~ivatelemUser defined wave vibedViewHlasitost:Volume: vibedViewBl aumWhite noise wave vibedViewfKliknut zapn/vypn vizualizaci hlavnho vstupu6click to enable/disable visualization of master-outputvisualizationWidgetlmms-1.0.0+bzr2569/data/locale/cs.ts0000644000000000000000000074012512307165142015064 0ustar 00000000000000 AboutDialog About LMMS LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) About O LMMS LMMS - easy music production for everyone Authors Translation Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! License Copyright (c) 2004-2014, LMMS developers <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE ZAŘÍZENÍ CHANNELS KANÁLY AudioFileProcessorView Open other sample Otevřít jiný sampl Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Reverse sample Přehrávat pozpátku If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Zapnete-li toto tlačítko, celý sampl bude přehráván pozpátku. Tato volba je užitečná pro zajímavé efekty např. pozpátku přehraná srážka. Loop sample at start- and end-point Smyčka od počátečního ke koncovému bodu Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Amplify: Zesílení: With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Startpoint: Počáteční bod: With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Endpoint: Koncový bod: With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. JACK server down The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack::setupWidget CLIENT-NAME JMÉNO-KLIENTA CHANNELS KANÁLY AudioOss::setupWidget DEVICE ZAŘÍZENÍ CHANNELS KANÁLY AudioPortAudio::setupWidget BACKEND DEVICE ZAŘÍZENÍ AudioPulseAudio::setupWidget DEVICE ZAŘÍZENÍ CHANNELS KANÁLY AudioSdl::setupWidget DEVICE ZAŘÍZENÍ AutomatableModel &Reset (%1%2) &Resetovat (%1%2) &Copy value (%1%2) &Kopírovat hodnoty (%1%2) &Paste value (%1%2) &Vložit hodnoty (%1%2) Edit song-global automation Editovat automatizaci pro celý song Connected to %1 Připojeno k %1 Connected to controller Připojeno ke kontroléru Edit connection... Editovat připojení... Remove connection Odebrat připojení Connect to controller... Připojit ke kontroléru... Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) Přehrát nebo pozastavit přehrávání aktuálního patternu (mezerník) Stop playing of current pattern (Space) Zastavit přehrávání aktuálního patternu (mezerník) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Klikněte zde, pokud chcete přehrát aktuální pattern. To je šikovné při editaci neboť pattern je automaticky přehráván ve smyčce. Click here if you want to stop playing of the current pattern. Klikněte zde, pokud chcete zastavit přehrávání aktuálního patternu. Draw mode (Shift+D) Režim kreslení (Shift+D) Erase mode (Shift+E) Režim mazání (Shift+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. Klikněte zde, pokud chcete aktivovat režim kreslení. V tomto výchozím a nejčastěji užívaném režimu lze přidávat a přesunovat jednotlivé hodnoty. Pro aktivaci můžete využít též klávesové zkratky Shift+D. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. Klikněte zde, pokud chcete aktivovat režim mazání. V tomto režimu lze mazat jednotlivé hodnoty. Pro aktivaci můžete využít též klávesové zkratky Shift+E. Cut selected values (Ctrl+X) Vyjmout označené hodnoty (Ctrl+X) Copy selected values (Ctrl+C) Kopírovat označené hodnoty (Ctrl+C) Paste values from clipboard (Ctrl+V) Vložit hodnoty ze schránky (Ctrl+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Klikněte zde, pokud chcete označené hodnoty vyjmout a uložit do schránky. Vložit je pak můžete kdekoliv v libovolném patternu pomocí tlačítka Vložit. Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Klikněte zde, pokud chcete označené hodnoty zkopírovat do schránky. Vložit je pak můžete kdekoliv v libovolného patternu pomocí tlačítka Vložit. Click here and the values from the clipboard will be pasted at the first visible measure. Kliknete-li zde, budou hodnoty ze schránky vloženy do prvního viditelného taktu. Automation Editor - no pattern Automatizační editor - žádný pattern Automation Editor - %1 Automatizační editor - %1 Please open an automation pattern with the context menu of a control! Otevřete prosím automatizační pattern pomocí kontextového menu ovládání! Values copied Hodnoty zkopírovány All selected values were copied to the clipboard. Všechny označené hodnoty byly zkopírovány do schránky. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> Ovladač táhni při stisknutém <CTRL> AutomationPatternView double-click to open this pattern in automation editor dvojklikem otevřít tento pattern v automatizačním editoru Open in Automation editor Otevřít v automatizačním editoru Clear Vyčistit Reset name Resetovat jméno Change name Změnit jméno %1 Connections %1 Připojení Disconnect "%1" Odpojit "%1" AutomationTrack Automation track Automatizační stopa Controller Controller %1 Kontrolér %1 ControllerConnectionDialog Connection Settings Nastavení připojení MIDI CONTROLLER MIDI KONTROLÉR Input channel Vstupní kanál CHANNEL KANÁL Input controller Vstupní kontrolér CONTROLLER KONTROLÉR Auto Detect Autodetekce MIDI-devices to receive MIDI-events from MIDI-zařízení k přijmu MIDI-události USER CONTROLLER UŽIVATELSKÝ KONTROLÉR MAPPING FUNCTION MAPOVACÍ FUNKCE OK OK Cancel Zrušit LMMS LMMS Cycle Detected. Detekován cyklus. ControllerRackView Controller Rack Kontroléry Add Přidat Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls Ovladače Controllers are able to automate the value of a knob, slider, and other controls. Kontroléry jsou schopny automatizovat nastavení ovladačů, šoupátek a dalších řídicích prvků. Rename controller Přejmenovat kontrolér Enter the new name for this controller Vložte nové jméno pro tento kontrolér &Remove this plugin &Odstranit tento plugin &Help Effect Effect enabled Efekt aktivován Wet/Dry mix Gate Brána Decay EffectChain Effects enabled Efekty aktivovány EffectRackView EFFECTS CHAIN ŘETĚZ EFEKTŮ Add effect Přidat efekt EffectSelectDialog Add effect Přidat efekt Plugin description EffectView Toggles the effect on or off. Zapnout nebo vypnout efekty. On/Off Zap/Vyp W/D Wet Level: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. DECAY Time: Čas: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. GATE BRÁNA Gate: Brána: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. Tlačítko Brána určuje sílu signálu který je považován za ticho při rozhodování kdy skončit se zpracováním signálů. Controls Ovladače Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. Move &up Posunout &nahoru Move &down Posunout &dolu &Remove this plugin &Odstranit tento plugin &Help EnvelopeAndLfoParameters Predelay Attack Hold Decay Sustain Release Modulation LFO Predelay LFO Attack LFO speed LFO Modulation LFO Wave Shape Freq x 100 Frek x 100 Modulate Env-Amount EnvelopeAndLfoView DEL Predelay: Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. ATT Attack: Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. HOLD Hold: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. DEC Decay: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. SUST SUST Sustain: Sustain: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. REL Release: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. AMT Modulation amount: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. LFO predelay: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. LFO- attack: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. SPD LFO speed: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. Click here for a sine-wave. Klikněte zde pro sinusovou vlnu. Click here for a triangle-wave. Klikněte zde pro trianglovou vlnu. Click here for a saw-wave for current. Klikněte zde pro pilovitou vlnu. Click here for a square-wave. Klikněte zde pro pravoúhlou vlnu. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. FREQ x 100 FREK x 100 Click here if the frequency of this LFO should be multiplied by 100. multiply LFO-frequency by 100 MODULATE ENV-AMOUNT Click here to make the envelope-amount controlled by this LFO. control envelope-amount by this LFO ms/LFO: Hint Rada Drag a sample from somewhere and drop it in this window. Sampl odněkud přetáhněte a pusťte jej v tomto okně. ExportProjectDialog Export project Output Výstup File format: Samplerate: 44100 Hz 48000 Hz 88200 Hz 96000 Hz 192000 Hz Bitrate: 64 KBit/s 128 KBit/s 160 KBit/s 192 KBit/s 256 KBit/s 320 KBit/s Depth: 16 Bit Integer 32 Bit Float Please note that not all of the parameters above apply for all file formats. Quality settings Interpolation: Zero Order Hold Sinc Fastest Sinc Medium (recommended) Sinc Best (very slow!) Oversampling (use with care!): 1x (None) 2x 4x 8x Sample-exact controllers Alias-free oscillators Start Cancel Zrušit Export as loop (remove end silence) FxMixer Master FX %1 FX %1 FxMixerView Rename FX channel Přejmenovat FX kanál Enter the new name for this FX channel Vložte nové jméno pro tento FX kanál FX-Mixer FX-Mixer FX Fader %1 Mute Ztlumit Mute this FX channel Ztlumit tento FX kanál InstrumentFunctionArpeggio Arpeggio Arpeggio Arpeggio type Typ arpeggia Arpeggio range Rozsah arpeggia Arpeggio time Čas arpeggia Arpeggio gate Brána arpeggia Arpeggio direction Arpeggio směr Arpeggio mode Režim arpeggia Up Nahoru Down Dolu Up and down Nahoru a dolů Random Náhodně Free Volný Sort Tříděný Sync Synchronizovaný InstrumentFunctionArpeggioView ARPEGGIO ARPEGGIO An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. Arpeggio je způsob hraní (zejména na drnkací nástroje), které činí hudbu mnohem živější. Struny těchto nástrojů (např. harfy) jsou rozechvěny jako v akordech. Jediným rozdílem je, že se tak stane sekvenčně, takže tóny nejsou zahrány ve stejnou dobu. Typickým arpeggiem jsou durové a mollové trojzvuky, ale možných dalších akordů, které si můžete vybrat, je spousta. RANGE ROZSAH Arpeggio range: Rozsah arpeggia: octave(s) oktáva(y) Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. Tento ovladač užívejte pro nastavení rozsahu arpeggia v oktávách. Vybrané arpeggio bude zahráno ve zvoleném počtu oktáv. TIME ČAS Arpeggio time: Čas arpeggia: ms ms Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. GATE BRÁNA Arpeggio gate: Brána arpeggia: % % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Tento ovladač užívejte pro nastavení brány arpeggia. Brána arpeggia určuje procento celého arpeggio-tónu, který má být zahrán. Pomocí brány arpeggia můžete udělat bezva arpeggio staccato. Chord: Direction: Směr: Mode: Režim: InstrumentFunctionNoteStacking octave oktáva Major Majb5 minor minb5 sus2 sus4 aug augsus4 tri 6 6sus4 6add9 m6 m6add9 7 7sus4 7#5 7b5 7#9 7b9 7#5#9 7#5b9 7b5b9 7add11 7add13 7#11 Maj7 Maj7b5 Maj7#5 Maj7#11 Maj7add13 m7 m7b5 m7b9 m7add11 m7add13 m-Maj7 m-Maj7add11 m-Maj7add13 9 9sus4 add9 9#5 9b5 9#11 9b13 Maj9 Maj9sus4 Maj9#5 Maj9#11 m9 madd9 m9b5 m9-Maj7 11 11b9 Maj11 m11 m-Maj11 13 13#9 13b9 13b5b9 Maj13 m13 m-Maj13 Harmonic minor Harmonický moll Melodic minor Melodický moll Whole tone Celá nota Diminished Snížený Major pentatonic Durová pentatonika Minor pentatonic Mollová pentatonika Jap in sen Major bebop Durový bebop Dominant bebop Blues Blues Arabic Enigmatic Neopolitan Neopolitan minor Hungarian minor Dorian Phrygolydian Lydian Mixolydian Aeolian Locrian Chords Chord type Typ akordu Chord range Rozsah akordu Minor InstrumentFunctionNoteStackingView RANGE ROZSAH Chord range: Rozsah akordu: octave(s) oktáva(y) Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. Tento ovladač užívejte pro nastavení rozsahu akordů v oktávách. Vybraný akord bude zahrán ve zvoleném počtu oktáv. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT POVOLIT MIDI VSTUP CHANNEL KANÁL VELOCITY ENABLE MIDI OUTPUT POVOLIT MIDI VÝSTUP PROGRAM MIDI devices to receive MIDI events from MIDI devices to send MIDI events to NOTE InstrumentSoundShaping VOLUME HLASITOST Volume Hlasitost CUTOFF Cutoff frequency RESO Resonance Envelopes/LFOs Filter type Typ filtru Q/Resonance LowPass HiPass BandPass csg BandPass czpg Notch Allpass Moog 2x LowPass RC LowPass 12dB RC BandPass 12dB RC HighPass 12dB RC LowPass 24dB RC BandPass 24dB RC HighPass 24dB Vocal Formant Filter InstrumentSoundShapingView TARGET CÍL These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! FILTER FILTR Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. Zde si můžete vybrat z vestavěných filtrů, které chcete použít pro tuto stopu nástroje. Filtry jsou velmi důležité pro změnu charakteristiky zvuku. Hz Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... RESO Resonance: Rezonance: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. FREQ cutoff frequency: InstrumentTrack unnamed_track nepojmenovaná_stopa Volume Hlasitost Panning Pitch FX channel FX kanál Default preset Výchozí nastavení With this knob you can set the volume of the opened channel. Tímto ovladačem můžete nastavit hlasitost otevřeného kanálu. Base note Základní nota Pitch range InstrumentTrackView Volume Hlasitost Volume: Hlasitost: VOL VOL Panning Panning: PAN MIDI MIDI Input Vstup Output Výstup InstrumentTrackWindow GENERAL SETTINGS HLAVNÍ NASTAVENÍ Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. Instrument volume Hlasitost nástroje Volume: Hlasitost: VOL VOL Panning Panning: PAN Pitch Pitch: cents PITCH FX channel FX kanál ENV/LFO FUNC FX FX MIDI MIDI Save preset Uložit předvolbu XML preset file (*.xpf) XML soubor předvoleb (*.xpf) PLUGIN PLUGIN Save current channel settings in a preset-file Pitch range (semitones) RANGE ROZSAH LadspaControl Link channels Spojit kanály LadspaControlDialog Link Channels Spojit s kanály Channel Kanál LadspaControlView Link channels Spojit kanály Value: Hodnota: Sorry, no help available. Promiňte, nápověda není k dispozici. LadspaEffect Effect Unknown LADSPA plugin %1 requested. LfoController LFO Controller Base value Základní hodnota Oscillator speed Rychlost oscilátoru Oscillator amount Míra oscilátoru Oscillator phase Fáze oscilátoru Oscillator waveform Vlna oscilátoru Frequency Multiplier Frekvenční multiplikátor LfoControllerDialog LFO LFO Controller BASE Base amount: Základní míra: todo SPD LFO-speed: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. AMT Modulation amount: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. PHS Phase offset: degrees stupně With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Click here for a sine-wave. Klikněte zde pro sinusovou vlnu. Click here for a triangle-wave. Klikněte zde pro trianglovou vlnu. Click here for a saw-wave. Klikněte zde pro pilovitou vlnu. Click here for a square-wave. Klikněte zde pro pravoúhlou vlnu. Click here for a a moog saw-wave. Klikněte zde pro pilovitou vlnu typu Moog. Click here for an exponential wave. Klikněte zde pro exponenciální vlnu. Click here for white-noise. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory Pracovní adresář The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. Pracovní adresář LMMS %1 neexistuje. Chcete jej nyní vytvořit? Tento adresář můžete změnit později přes Upravit > Nastavení. Could not save config-file Nemohu uložit konfigurační soubor Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. Nemohu uložit konfigurační soubor %1. Pravděpodobně nemáte právo k zápisu do tohoto souboru. Ujistěte se prosím, že máte k souboru právo zápisu a zkuste to znovu. &Project &Projekt &New &Nový &Open... &Otevřít... Recently opened projects Nedávno otevřené projekty &Save &Uložit Save &As... Uložit &jako... Import... Importovat... E&xport... E&xportovat... &Quit &Ukončit &Edit Úp&ravy Settings Nastavení &Tools Nás&troje &Help Online help Nápověda online Help Nápověda What's this? Co je to? About O LMMS Create new project Vytvořit nový projekt Create new project from template Vytvořit nový projekt ze šablony Open existing project Otevřít existující projekt Recently opened project Naposledy otevřené projekty Save current project Uložit aktuální projekt Export current project Exportovat aktuální projekt Show/hide Song-Editor Ukaž/schovej Editor skladby By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. Zmačknutím tohoto knoflíku zobrazíte nebo schováte Editor skladby. S jeho pomocí můžete editovat playlist skladby a specifikovat, kdy a která stopa má být přehrána. Můžete také vložit a přesunovat samply (např. rapové) přímo do playlistu. Show/hide Beat+Bassline Editor Ukaž/schovej Beat+Bassline editor By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. Zmačknutím tohoto knoflíku zobrazíte nebo schováte Beat+Bassline editor. Beat+Bassline editor je nezbytný pro tvorbu beatů a pro otevírání, přidávání a odebírání kanálů. Dále pro vyjmutí, kopírování a vložení beatů, Beat+Bassline patternů a dalších podobných věcí. Show/hide Piano-Roll Ukaž/schovej Piano-Roll Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. Klikněte zde, pokud chcete ukázat nebo schovat Piano-Roll. S pomocí Piano-Roll můžete jednoduchým způsobem editovat melodie. Show/hide Automation Editor Ukaž/schovej Automatizační editor Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Klikněte zde, pokud chcete ukázat nebo schovat Automatizační editor. S pomocí Automatizačního editoru můžete jednoduchým způsobem editovat dynamické hodnoty. Show/hide FX Mixer Ukaž/schovej FX Mixer Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Klikněte zde, pokud chcete ukázat nebo schovat FX Mixer. FX Mixer je velmi mocný nástroj pro správu efektů ve vaší skladbě. Efekty můžete vkládat do různých efektových kanálů. Show/hide project notes Ukaž/schovej poznámky k projektu Click here to show or hide the project notes window. In this window you can put down your project notes. Klikněte zde, pokud chcete ukázat nebo schovat okno pro poznámky. V tomto okně lze vkládat vaše poznámky k projektu. Show/hide controller rack Ukaž/schovej kontrolér rack Untitled Nepojmenovaný LMMS %1 LMMS %1 Project not saved Projekt není uložen The current project was modified since last saving. Do you want to save it now? Aktuální projekt byl od posledního uložení změněn. Chcete jej nyní uložit? Open project Otevřít projekt Save project Uložit projekt Help not available Nápověda není dostupná Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. V současnosti není v LMMS nápověda dostupná. Navštivte prosím stránku s dokumentací k LMMS na adrese http://lmms.sf.net/wiki. My projects My samples My presets My home My computer Root directory Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 Project recovery It looks like the last session did not end properly. Do you want to recover the project of this session? Configuration file Error while parsing configuration file at line %1:%2: %3 MeterDialog Meter Numerator Meter Denominator TIME SIG MeterModel Numerator Denominator MidiAlsaRaw::setupWidget DEVICE ZAŘÍZENÍ MidiAlsaSeq::setupWidget DEVICE ZAŘÍZENÍ MidiController MIDI Controller MIDI kontrolér unnamed_midi_controller nepojmenovaný_midi_kontrolér MidiImport Setup incomplete You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiOss::setupWidget DEVICE ZAŘÍZENÍ MidiPort Input channel Vstupní kanál Output channel Výstupní kanál Input controller Vstupní kontrolér Output controller Výstupní kontrolér Fixed input velocity Pevná vstupní rychlost Fixed output velocity Pevná výstupní rychlost Output MIDI program Výstupní MIDI program Receive MIDI-events Přijímat MIDI-události Send MIDI-events Posílat MIDI-události Fixed output note OscillatorObject Osc %1 volume Osc %1 hlasitost Osc %1 panning Osc %1 panorama Osc %1 coarse detuning Osc %1 fine detuning left Osc %1 jemné rozladění vlevo Osc %1 fine detuning right Osc %1 phase-offset Osc %1 stereo phase-detuning Osc %1 wave shape Osc %1 forma vlny Modulation type %1 Osc %1 waveform Osc %1 vlna PatmanView Open other patch Otevřít jiný patch Click here to open another patch-file. Loop and Tune settings are not reset. Klikněte zde, pokud chcete otevřít další patch-soubor. Nastavení smyčky a režimu ladění budou zachována. Loop Smyčka Loop mode Režim smyčky Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. Zde můžete zapnout režim smyčky, Jestliže je režim aktivní PatMan použije dostupné informace o smyčcem ze souboru. Tune Ladit Tune mode Režim ladění Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. Zde můžete zapnout režim smyčky, Jestliže je režim aktivní PatMan naladí sampl tak, aby frekvence odpovídala tónu. No file selected Žádný soubor není vybrán Open patch file Otevřít patch soubor Patch-Files (*.pat) Patch-Soubory (*.pat) PeakController Peak Controller Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK LFO Controller PeakControllerEffectControlDialog BASE Base amount: Základní míra: Modulation amount: Attack: Release: AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Základní hodnota Modulation amount Stupeň (amount) modulace Mute output Attack Release Abs Value Amount Multiplicator PianoView Base note Základní nota Plugin Plugin not found Plugin nenalezen The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Plugin "%1" nebyl nalezen nebo nemůže být načten! Důvod: "%2" Error while loading plugin Při načítání pluginu došlo k chybě Failed to load plugin "%1"! Načtení pluginu "%1" selhalo! ProjectRenderer WAV-File (*.wav) WAV soubor (*.wav) Compressed OGG-File (*.ogg) Komprimovaný soubor OGG (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: Název: File: Soubor: Maker: Tvůrce: Copyright: Copyright: Requires Real Time: Vyžadován Real Time: Yes Ano No Ne Real Time Capable: Real time schopnost: Channels In: Kanály vstup: Channels Out: Kanály výstup: In Place Broken: SampleBuffer Open audio file Otevřít audio soubor All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Všechny audio soubory (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) Wav soubory (*.wav) OGG-Files (*.ogg) OGG soubory (*.ogg) DrumSynth-Files (*.ds) DrumSynth soubory (*.ds) FLAC-Files (*.flac) FLAC soubory (*.flac) SPEEX-Files (*.spx) SPEEX soubory (*.spx) MP3-Files (*.mp3) MP3 soubory (*.mp3) VOC-Files (*.voc) VOC soubory (*.voc) AIFF-Files (*.aif *.aiff) AIFF soubory (*.aif *.aiff) AU-Files (*.au) AU soubory (*.au) RAW-Files (*.raw) RAW soubory (*.raw) SampleTCOView double-click to select sample dvojitým kliknutím vyberte sampl Delete (middle mousebutton) Smazat (prostřední tlačítko myši) Cut Vyjmout Copy Kopírovat Paste Vložit Mute/unmute (<Ctrl> + middle click) Ztlumit/neztlumit (<Ctrl> + prostřední klik) Set/clear record Nastav/vyčisti záznam SampleTrack Sample track Stopa samplů Volume Hlasitost SampleTrackView Track volume Hlasitost stopy Channel volume: Hlasitost kanálu: VOL VOL TempoSyncKnob Tempo Sync Synchronizace tempa No Sync Nesynchronizovaný Eight beats Osm beatů Whole note Celá nota Half note Půlová nota Quarter note Čtvrťová nota 8th note Osminová nota 16th note Šestnáctinová nota 32nd note Dvaatřicetinová nota Custom... Vlastní... &Help Custom Vlastní Synced to Eight Beats Synchro k osmi beatům Synced to Whole Note Synchro k celé notě Synced to Half Note Synchro k půlové notě Synced to Quarter Note Synchro ke čtvrťové notě Synced to 8th Note Synchro k osminové notě Synced to 16th Note Synchro k šestnáctinové notě Synced to 32nd Note Synchro k dvaatřicetinové notě TimeDisplayWidget click to change time units TrackContainer Couldn't import file Nemohu importovat soubor Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. Nemohu najít filtr pro import souboru %1. Měli byste tento soubor zkonvertovat do formátu podporovaného LMMS pomocí jiného software. Couldn't open file Nemohu otevřít soubor Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! Nemohu otevřít soubor %1 pro čtení. Přesvědčte se prosím, že máte právo ke čtení tohoto souboru a příslušného adresáře a zkuste to znovu! Loading project... Načítám projekt... Cancel Zrušit Please wait... Prosím čekejte... Importing MIDI-file... Importuji MIDI soubor... Importing FLP-file... Importuji FLP soubor... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 Mix output of oscillator 1 & 2 Synchronize oscillator 1 with oscillator 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Use phase modulation for modulating oscillator 3 with oscillator 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 Mix output of oscillator 2 & 3 Synchronize oscillator 2 with oscillator 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Osc %1 volume: Osc %1 hlasitost: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Osc %1 panning: Osc %1 panorama: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Osc %1 coarse detuning: semitones With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Osc %1 fine detuning left: Osc %1 jemné rozladění vlevo: cents With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Osc %1 fine detuning right: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Osc %1 phase-offset: degrees stupně With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Osc %1 stereo phase-detuning: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use a moog-like saw-wave for current oscillator. Use an exponential wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin Otevřít ostatní VST pluginy Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Klikněte zde, pokud chcete otevřít ostatní VST pluginy. Po kliknutí na toto tlačítko se objeví okno ve kterém můžete soubor vybrat. Show/hide GUI Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Klikněte zde pro zobrazení nebo skrytí grafického rozhraní (GUI) pro vaše VST pluginy. Turn off all notes Open VST-plugin Otevřít VST plugin DLL-files (*.dll) DLL soubory (*.dll) EXE-files (*.exe) EXE soubory (*.exe) No VST-plugin loaded Žádný VST plugin nebyl načten Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Save preset Uložit předvolbu Click here, if you want to save current VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Preset by - VST plugin control VstEffectControlDialog Show/hide Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Save preset Uložit předvolbu Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin Načítám plugin Please wait while loading VST-plugin... Prosím čekejte dokud se nenačte VST plugin... Failed loading VST-plugin Chyba načítání VST pluginu The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! VST plugin %1 nemohl být z určitých důvodů načten. Jestliže tento plugin funguje v Linuxu v jiném VST softwaru, kontaktujte prosím LMMS vývojáře! Open Preset Vst Plugin Preset (*.fxp *.fxb) : default " ' Save Preset .fxp .FXP .FXB .fxb ZynAddSubFxInstrument Portamento Filter Frequency Filter Resonance Bandwidth FM Gain Resonance Center Frequency Resonance Bandwidth Forward MIDI Control Change Events ZynAddSubFxView Show GUI Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Portamento: PORT Filter Frequency: FREQ Filter Resonance: RES Bandwidth: BW FM Gain: FM GAIN Resonance center frequency: RES CF Resonance bandwidth: RES BW Forward MIDI Control Changes audioFileProcessor Reverse sample Přehrávat pozpátku Loop Smyčka Amplify Zesílení Start of sample Začátek samplu End of sample Konec samplu Stutter bassBoosterControlDialog Frequency: Frekvence: Gain: Zisk: RATIO POMĚR Ratio: Poměr: FREQ GAIN bassBoosterControls Frequency Frekvence Gain Zisk Ratio Poměr bbEditor Play/pause current beat/bassline (Space) Přehrát nebo pozastavit přehrávání (mezerník) Add beat/bassline Přidat beat/basovou linku Beat+Bassline Editor Beat+Baseline Editor Add automation-track Přidat automatizační stopu Stop playback of current beat/bassline (Space) Zastavit přehrávání aktuální beat/bassline (mezerník) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. Klikněte zde, pokud chcete přehrát aktuální beat/baseline. Beat/baseline je automaticky přehráván ve smyčce. Click here to stop playing of current beat/bassline. Klikněte zde, pokud chcete zastavit přehrávání aktuální beat/bassline. Remove steps Odstranit kroky Add steps Přidat kroky bbTCOView Open in Beat+Bassline-Editor Otevřít v Beat+Bassline editoru Reset name Resetovat jméno Change name Změnit jméno Change color Změnit barvu bbTrack Beat/Bassline %1 Beat/Bassline %1 Clone of %1 bitInvader Samplelength Délka samplu bitInvaderView Sample Length Délka samplu Sine wave Sinusová vlna Triangle wave Trianglová vlna Saw wave Pilovitá vlna Square wave Pravoúhlá (square) vlna White noise wave Bílý šum User defined wave Vlna definovaná uživatelem Smooth Uhladit Click here to smooth waveform. Pro uhlazení vlny klikněte zde. Interpolation Interpolovat Normalize Normalizovat Draw your own waveform here by dragging your mouse on this graph. Click for a sine-wave. Click here for a triangle-wave. Klikněte zde pro trianglovou vlnu. Click here for a saw-wave. Klikněte zde pro pilovitou vlnu. Click here for a square-wave. Klikněte zde pro pravoúhlou vlnu. Click here for white-noise. Click here for a user-defined shape. Klikněte zde pro uživatelem definovaný tvar. exportProjectDialog Could not open file Nemohu otevřít soubor Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! Nemohu uložit soubor %1 pro zápis. Přesvědčte se prosím, že máte právo zápisu do tohoto souboru a příslušného adresáře a zkuste to znovu! Error Chyba Error while determining file-encoder device. Please try to choose a different output format. Chyba při určení souboru zařízení enkodéru. Zkuste prosím vybrat jiný výstupní formát. Rendering: %1% Renderuji: %1% Export project to %1 Exportovat projekt do %1 fader Please enter a new value between %1 and %2: Vložte prosím novou hodnotu mezi %1 a %2: fileBrowser Browser fileBrowserTreeWidget Send to active instrument-track Open in new instrument-track/Song-Editor Open in new instrument-track/B+B Editor Loading sample Please wait, loading sample for preview... --- Factory files --- graphModel Graph Graf kickerInstrument Start frequency Počáteční frekvence End frequency Konečná frekvence Distortion Zkreslení Gain Zisk Decay kickerInstrumentView Start frequency: Počáteční frekvence: End frequency: Konečná frekvence: Distortion: Zkreslení: Gain: Zisk: Decay: knob &Help Nápověd&a Please enter a new value between %1 and %2: Vložte prosím novou hodnotu mezi %1 a %2: Please enter a new value between -96.0 dBV and 6.0 dBV: Vložte prosím novou hodnotu mezi -96.0 dBV a 6.0 dBV: ladspaBrowserView Available Effects Dostupné efekty Unavailable Effects Nedostupné efekty Instruments Nástroje Analysis Tools Analyzační nástroje Don't know Neznámé This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. Toto dialogové okno zobrazuje informace o všech LADSPA pluginech, které bylo LMMS schopno nalézt. Zásuvné moduly jsou rozděleny do pěti kategorií podle portů a názvů. (new line) (new line) K dispozici jsou ty efekty, které mohou být použity v LMMS. Aby v LMMS bylo možné užít efektu, musí se o efekt skutečně jednat, to znamená, že musí mít oba vstupní a výstupní kanály. LMMS identifikuje vstupní kanál jako audio podle 'in' v názvu. Výstupní kanály jsou identifikovány pole označení písmeny 'out'. Kromě toho efekt musí mít stejný počet vstupů a výstupů a být real time kompatibilní. Nedostupné efekty jsou ty, které byly identifikovány jako efekty, ale buď nemají stejný počet vstupních a výstupních kanálů nebo nejsou real time kompatibilní. Nástroje jsou pluginy u kterých byly identifikovány pouze výstupní kanály. Analyzační nástroje jsou pluginy u kterých byly identifikovány pouze vstupní kanály. Neznámé jsou pluginy, pro které nebyly identifikovány žádné vstupní nebo výstupní kanály. Dvojitým kliknutím na kterýkoli z modulů se zobrazí informace o portech. Type: Typ: ladspaDescription Plugins Pluginy Description Popis ladspaPortDialog Ports Porty Name Název Rate Rychlost Direction Směr Type Typ Min < Default < Max Min < Výchozí < Max Logarithmic Logaritmický Audio Audio Control Ovládání Input Vstup Output Výstup Toggled Zapnuto Yes Ano SR Dependent Integer Float lb302Synth VCF Cutoff Frequency VCF frekvence vypnutí VCF Resonance VCF rezonance Slide Klouzání Accent Důraz Distortion Zkreslení Waveform Vlna VCF Envelope Mod VCF Envelope Decay Slide Decay Dead 24dB/oct Filter lb302SynthView Cutoff Freq: Frek. vypnutí: Resonance: Rezonance: Env Mod: Decay: 303-es-que, 24dB/octave, 3 pole filter Slide Decay: DIST: Saw wave Pilovitá vlna Click here for a saw-wave. Klikněte zde pro pilovitou vlnu. Triangle wave Trianglová vlna Click here for a triangle-wave. Klikněte zde pro trianglovou vlnu. Square wave Pravoúhlá (square) vlna Click here for a square-wave. Klikněte zde pro pravoúhlou vlnu. Rounded square wave Click here for a square-wave with a rounded end. Moog wave Click here for a moog-like wave. Sine wave Sinusová vlna Click for a sine-wave. White noise wave Bílý šum Click here for an exponential wave. Klikněte zde pro exponenciální vlnu. Click here for white-noise. lb303Synth VCF Cutoff Frequency VCF frekvence vypnutí VCF Resonance VCF rezonance Distortion Zkreslení Waveform Vlna Slide Klouzání Accent Důraz VCF Envelope Mod VCF Envelope Decay Slide Decay Dead 24dB/oct Filter lb303SynthView Cutoff Freq: Frek. vypnutí: CUT CUT Resonance: Rezonance: RES Env Mod: ENV MOD Decay: DEC 303-es-que, 24dB/octave, 3 pole filter Slide Decay: SLIDE DIST: DIST WAVE: WAVE malletsInstrument Hardness Tvrdost Position Pozice Vibrato Gain Zisk vibráta Vibrato Freq Frekvence vibráta Modulator Modulátor Crossfade Prolínání (crossfade) LFO Speed LFO Rychlost LFO Depth LFO Hloubka Pressure Tlak Motion Pohyb Speed Rychlost Spread Rozsah Marimba Marimba Vibraphone Vibrafon Missing files Chybějící soubory Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! Zda se, že Vaše Stk instalace není kompletní. Přesvědčte se, ze STK balíček je plně nainstalován! Stick Mix ADSR Bowed Agogo Wood1 Reso Wood2 Beats Two Fixed Clump Tubular Bells Uniform Bar Tuned Bar Glass Tibetan Bowl malletsInstrumentView Instrument Nástroj Spread Rozsah Spread: Rozsah: Hardness Tvrdost Hardness: Tvrdost: Position Pozice Position: Pozice: Vib Gain Vib zisk Vib Gain: Vib zisk: Vib Freq Vib frek Vib Freq: Vib frek: Modulator Modulátor Modulator: Modulátor: Crossfade Prolínání (crossfade) Crossfade: Prolínání (crossfade): LFO Speed LFO Rychlost LFO Speed: LFO Rychlost: LFO Depth LFO Hloubka LFO Depth: LFO Hloubka: Pressure Tlak Pressure: Tlak: Motion Pohyb Motion: Pohyb: Speed Rychlost Speed: Rychlost: Vibrato Vibráto Vibrato: Vibráto: Stick Mix Stick Mix: ADSR ADSR: Bowed manageVSTEffectView - VST parameter control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView - VST plugin control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help &Nápověda opl2instrument Patch Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Zkreslení Volume Hlasitost organicInstrumentView Distortion: Zkreslení: Volume: Hlasitost: Randomise Nastavit náhodně Osc %1 waveform: Osc %1 vlna: Osc %1 volume: Osc %1 hlasitost: Osc %1 panning: Osc %1 panorama: Osc %1 fine detuning left: Osc %1 jemné rozladění vlevo: cents papuInstrument Sweep time Sweep direction Sweep RtShift amount Wave Pattern Duty Channel 1 volume Volume sweep direction Length of each step in sweep Channel 2 volume Channel 3 volume Channel 4 volume Shift Register width Right Output level Left Output level Channel 1 to SO2 (Left) Channel 2 to SO2 (Left) Channel 3 to SO2 (Left) Channel 4 to SO2 (Left) Channel 1 to SO1 (Right) Channel 2 to SO1 (Right) Channel 3 to SO1 (Right) Channel 4 to SO1 (Right) Treble Bass papuInstrumentView Sweep Time: Sweep Time The amount of increase or decrease in frequency Sweep RtShift amount: Sweep RtShift amount The rate at which increase or decrease in frequency occurs Wave pattern duty: Wave Pattern Duty The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Square Channel 1 Volume: Square Channel 1 Volume Length of each step in sweep: Length of each step in sweep The delay between step change Wave pattern duty Square Channel 2 Volume: Square Channel 2 Volume Wave Channel Volume: Wave Channel Volume Noise Channel Volume: Noise Channel Volume SO1 Volume (Right): SO1 Volume (Right) SO2 Volume (Left): SO2 Volume (Left) Treble: Treble Bass: Bass Sweep Direction Volume Sweep Direction Shift Register Width Channel1 to SO1 (Right) Channel2 to SO1 (Right) Channel3 to SO1 (Right) Channel4 to SO1 (Right) Channel1 to SO2 (Left) Channel2 to SO2 (Left) Channel3 to SO2 (Left) Channel4 to SO2 (Left) Wave Pattern Draw the wave here pattern Cannot freeze pattern Nemohu zmrazit pattern The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! Pattern nemůže být nyní zmrazen, neboť jste v režimu přehrávání. Zastavte přehrávání a zkuste to znovu! patternFreezeStatusDialog Freezing pattern... Zmrazuji pattern... Cancel Zrušit patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step dvojitým kliknutím otevřete tento pattern v piano-roll k nastavení zesílení kroku použijte kolečko myši Open in piano-roll Otevřít v piano-roll Clear all notes Vyčistit všechny noty Reset name Resetovat jméno Change name Změnit jméno Refreeze Znovu zmrazit Freeze Zmrazit Unfreeze Rozmrazit Add steps Přidat kroky Remove steps Odstranit kroky PianoRoll Play/pause current pattern (Space) Přehrát nebo pozastavit přehrávání aktuálního patternu (mezerník) Record notes from MIDI-device/channel-piano Nahrávat noty z MIDI-zařízení/piano kanálu Stop playing of current pattern (Space) Zastavit přehrávání aktuálního patternu (mezerník) Draw mode (Shift+D) Režim kreslení (Shift+D) Erase mode (Shift+E) Režim mazání (Shift+E) Select mode (Shift+S) Režim výběru (Shift+S) Cut selected notes (Ctrl+X) Vyjmout označené noty (Ctrl+X) Copy selected notes (Ctrl+C) Kopírovat označené noty (Ctrl+C) Paste notes from clipboard (Ctrl+V) Vložit noty ze schránky (Ctrl+V) Last note Trvání noty Piano-Roll - no pattern Piano-Roll - žádný pattern Piano-Roll - %1 Piano-Roll - %1 Please open a pattern by double-clicking on it! Otevřete prosím pattern jeho dvojitým poklepáním! Record notes from MIDI-device/channel-piano while playing song or BB track Nahrávat tóny z MIDI zařízení / kanálu piána při přehrávání skladby nebo BB stopy Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Klikněte zde, pokud chcete přehrát aktuální pattern. To je šikovné při editaci. Pattern je automaticky přehráván ve smyčce. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Klikněte zde pokud chcete nahrávat z MIDI zařízení nebo virtuálního testovacího piána příslušného kanálového okna do aktuálního patternu. Při nahrávání zaznamenáte všechny zahrané noty do tohoto patternu, následně si je můžete přehrát nebo upravit. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Klikněte zde pokud chcete nahrávat z MIDI zařízení nebo virtuálního testovacího piána příslušného kanálového okna do aktuálního patternu. Při nahrávání zaznamenáte všechny zahrané noty do tohoto patternu a na pozadí uslyšíte skladbu nebo BB stopu. Click here to stop playback of current pattern. Klikněte zde, pokud chcete zastavit přehrávání aktuálního patternu. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Klikněte zde pokud chcete označené noty vyjmout a uložit do schránky. Vložit je pak můžete kdekoliv v libovolném patternu pomocí tlačítka Vložit. Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Klikněte zde pokud chcete označené noty zkopírovat do schránky. Vložit je pak můžete kdekoliv v libovolného patternu pomocí tlačítka Vložit. Click here and the notes from the clipboard will be pasted at the first visible measure. Kliknete-li zde, budou noty ze schránky vloženy do prvního viditelného taktu. Note lock Zámek noty Note Volume Note Panning Detune mode (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser no description bez popisu Instrument plugins Pluginy nástrojů plugin for using arbitrary VST-effects inside LMMS. plugin pro užití libovolných VST efektů uvnitř LMMS. Filter for importing MIDI-files into LMMS Filtr pro import MIDI souborů do LMMS three powerful oscillators you can modulate in several ways tři výkonné oscilátory které můžete modulovat rozličnými způsoby GUS-compatible patch instrument GUS kompatibilní patch instrument simple sampler with various settings for using samples (e.g. drums) in an instrument-track jednoduchý sampler s rozmanitým nastavením pro použití samplů (např. bicích) v nástrojové stopě Additive Synthesizer for organ-like sounds Aditivní syntezátor pro zvuky podobné varhanám Plugin for enhancing stereo separation of a stereo input file Plugin pro zvýšení stereo separace vstupních stereo souborů versatile kick- & bassdrum-synthesizer mnohostranný kick & bassdrum syntezátor Vibrating string modeler Vibrační modelátor strun List installed LADSPA plugins Seznam instalovaných LADSPA pluginů plugin for using arbitrary LADSPA-effects inside LMMS. plugin pro užití libovolných LADSPA efektů uvnitř LMMS. VST-host for using VST(i)-plugins within LMMS VST host pro užití VST(i) pluginů v LMMS Incomplete monophonic imitation tb303 Nekompletní monofonní imitace tb303 Filter for importing FL Studio projects into LMMS Filtr určený k import projektů z FL Studia do LMMS Tuneful things to bang on Libozvučná klepátka Instrument browser Prohlížeč nástrojů Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. Nástroj přetáhněte buď do Editoru skladby, Beat+Bassline Editoru nebo do existující nástrojové stopy. Plugin for freely manipulating stereo output Plugin for controlling knobs with sound peaks Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Customizable wavetable synthesizer Player for SoundFont files plugin for boosting bass Emulation of GameBoy (TM) APU Embedded ZynAddSubFX 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Project notes Poznámky k projektu Put down your project notes here. Do tohoto okna můžete vkládat Vaše poznámky k projektu. Edit Actions Editace &Undo &Zpět Ctrl+Z Ctrl+Z &Redo &Znovu Ctrl+Y Ctrl+Z &Copy &Kopírovat Ctrl+C Ctrl+C Cu&t &Vyjmout Ctrl+X Ctrl+X &Paste V&ložit Ctrl+V Ctrl+V Format Actions Formátování &Bold &Tučné Ctrl+B Ctrl+B &Italic &Kurzíva Ctrl+I Ctrl+I &Underline &Podtržené Ctrl+U Ctrl+U &Left Zarovnat &vlevo Ctrl+L Ctrl+L C&enter Zarovnat &na střed Ctrl+E Ctrl+E &Right Zarovnat v&pravo Ctrl+R Ctrl+R &Justify Zarovnat &do bloku Ctrl+J Ctrl+R &Color... &Barva... renameDialog Rename... Přejmenovat... setupDialog Setup LMMS Nastavit LMMS General settings Hlavní nastavení BUFFER SIZE VELIKOST VYR. PAMĚTI Reset to default-value Nastavit výchozí hodnoty MISC Enable tooltips Aktivovat nástrojové tipy Show restart warning after changing settings Vyzvat k restartu po změně nastavení Display volume as dBV Zobrazovat hlasitost jako dBV Compress project files per default Komprimovat soubory s projekty LMMS working directory Pracovní adresář pro LMMS VST-plugin directory Adresář pro VST pluginy Artwork directory Adresář pro témata FL Studio installation directory Instalační adresář FL Studia STK rawwave directory Adresář pro STK rawwave Performance settings Nastavení výkonu UI effects vs. performance Efekty uživatelského rozhraní vs. výkon Audio settings Audio nastavení AUDIO INTERFACE AUDIO ROZHRANÍ MIDI settings MIDI nastavení MIDI INTERFACE MIDI ROZHRANÍ OK OK Cancel Zrušit Restart LMMS Restartovat LMMS Please note that most changes won't take effect until you restart LMMS! Mnohé změny nastavení se projeví až po restartu LMMS! Frames: %1 Latency: %2 ms Rámce: %1 Zpoždění %2 ms Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Zde můžete nastavit interní velikost vyrovnávací paměti, která je užívána LMMS. Nízké hodnoty vedou k menšímu zpoždění, ale také způsobují nepoužitelný zvuk nebo špatný výkon, zejména na starých počítačích či systémech s jádrem nepodporujícím real time. Choose LMMS working directory Vyberte pro LMMS pracovní adresář Choose your VST-plugin directory Vyberte adresář pro VST pluginy Choose artwork-theme directory Vyberte adresář s tématy Choose FL Studio installation directory Vyberte instalační adresář FL Studia Choose LADSPA plugin directory Vyberte adresář pro LADSPA pluginy Choose STK rawwave directory Vyberte adresář pro STK rawwave Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Zde vyberte preferované audio rozhraní. V závislosti na konfiguraci Vašeho systému při kompilaci můžete volit mezi ALSA, JACK, OSS a dalšími. Níže vidíte políčko, které nabízí možnost nastavení vybraného audio rozhraní. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Zde vyberte preferované MIDI rozhraní. V závislosti na konfiguraci Vašeho systému při kompilaci můžete volit mezi ALSA OSS a dalšími. Níže vidíte políčko, které nabízí možnost nastavení vybraného MIDI rozhraní. HQ-mode for output audio-device HQ režim pro výstup audio zařízení Paths Cesty Background artwork Obrázek na pozadí LADSPA plugin paths Cesty k LADSPA pluginům Default Soundfont File Výchozí Soundfont soubor Choose default SoundFont Vyberte výchozí SoundFont Choose background artwork Vyberte obrázek na pozadí One instrument track window mode Compact track buttons Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Smooth scroll in Song Editor Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Gain Zisk Bank Patch Reverb Reverb Roomsize Reverb Damping Reverb Width Reverb Level Chorus Chorus Lines Chorus Level Chorus Speed Chorus Depth sf2InstrumentView Gain Zisk Open other SoundFont file Click here to open another SF2 file Choose the patch Apply reverb (if supported) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. Reverb Roomsize: Reverb Damping: Reverb Width: Reverb Level: Apply chorus (if supported) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Chorus Lines: Chorus Level: Chorus Speed: Chorus Depth: Open SoundFont file SoundFont2 Files (*.sf2) sfxrInstrument Wave Form sidInstrument Filter type Typ filtru Volume Hlasitost Cutoff Resonance Voice 3 off Chip model sidInstrumentView Volume: Hlasitost: Resonance: Rezonance: Sustain: Sustain: Sync Synchronizovaný Cutoff frequency: High-Pass filter Band-Pass filter Low-Pass filter Voice3 Off MOS6581 SID MOS8580 SID Attack: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. Decay: Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. Release: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. Pulse Width: The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. Coarse: The Coarse detuning allows to detune Voice %1 one octave up or down. Pulse Wave Triangle Wave SawTooth Noise Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Ring-Mod Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. Filtered When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Test Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. song Tempo Tempo Master volume Hlavní hlasitost Master pitch Hlavní ladění (pitch) Project saved Projekt uložen The project %1 is now saved. Projekt %1 je nyní uložen. Project NOT saved. Projekt NENÍ uložen. The project %1 was not saved! Projekt %1 nebyl uložen! Import file Importovat soubor untitled nepojmenovaný Select file for project-export... Zvolte soubor pro export projektu... MIDI sequences MIDI sekvence FL Studio projects FL Studio projekt Empty project Prázdný projekt This project is empty so exporting makes no sense. Please put some items into Song Editor first! Tento projekt je prázdný, jeho exportování nemá smysl. Nejdříve prosím vložte nějaké položky do Editoru skladby! All file types Hydrogen projects Select directory for writing exported tracks... SongEditor Song-Editor Editor skladby Play song (Space) Přehrát skladbu (mezerník) Stop song (Space) Zastavit přehrávání skladby (mezerník) Add beat/bassline Přidat beat/bassline Add sample-track Přidat stopu samplů Draw mode Režim kreslení Edit mode (select and move) Režim editace (označit a přesunout) Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. Klikněte zde, pokud chcete přehrát celou skladbu. Přehrávání začne v místě kde se nalézá zelený označovač pozice se kterým lze též při přehrávání pohybovat. Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. Klikněte zde, pokud chcete zastavit přehrávání skladby. Označovač pozice bude odeslán na začátek skladby. Could not open file Nemohu otevřít soubor Could not write file Nemohu zapsat soubor Add automation-track Přidat automatizační stopu Record samples from Audio-device Nahrát samply z audio zařízení Record samples from Audio-device while playing song or BB track Nahrát samply z audio zařízení při přehrávání skladby nebo BB stopy Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Error in file The file %1 seems to contain errors and therefore can't be loaded. Tempo Tempo TEMPO/BPM TEMPO/BPM tempo of song tempo skladby The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). Tempo skladby je uvedeno v úderech za minutu (BPS). Chcete-li změnit tempo skladby, změňte tuto hodnotu. Každý takt má čtyři beaty, takže tempo v BPS specifikuje kolik taktů / 4 bude za minutu přehráno (nebo kolik taktů bude přehráno ve čtyřech minutách). High quality mode Režim vysoké kvality Master volume Hlavní hlasitost master volume hlavní hlasitost Master pitch Hlavní ladění (pitch) master pitch hlavní ladění Value: %1% Hodnota: %1% Value: %1 semitones Hodnota: %1 půltónů Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Linear Y axis spectrumAnalyzerControls Linear spectrum Linear Y-axis Channel mode stereoEnhancerControlDialog Width: Šířka: WIDE stereoEnhancerControls Width Šířka stereoMatrixControlDialog Left to Left Vol: Left to Right Vol: Right to Left Vol: Right to Right Vol: stereoMatrixControls Left to Left Left to Right Right to Left Right to Right timeLine Enable/disable auto-scrolling Povolit/zakázat automatický posun Enable/disable loop-points Povolit/zakázat body pro přehrávání ve smyčce After stopping go back to begin Po skončení jdi zpět na začátek After stopping go back to position at which playing was started Po skončení jdi zpět na pozici ze které přehrávání začalo After stopping keep position Po skončení udržuj pozici Hint Rada Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted Ztlumený Solo Sólo trackContentObject Muted Ztlumený trackContentObjectView Current position Aktuální pozice Hint Rada Press <Ctrl> and drag to make a copy. K vytvoření kopie stiskněte <Ctrl> a táhněte myší. Current length Aktuální délka Press <Ctrl> for free resizing. Stiskněte <Ctrl> pro volné měnění velikosti. %1:%2 (%3:%4 to %5:%6) %1:%2 (%3:%4 do %5:%6) Delete (middle mousebutton) Smazat (prostřední tlačítko myši) Cut Vyjmout Copy Kopírovat Paste Vložit Mute/unmute (<Ctrl> + middle click) Ztlumit/neztlumit (<Ctrl> + prostřední klik) trackOperationsWidget Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Actions for this track Akce pro tuto stopu Mute Ztlumit Clone this track Klonovat tuto stopu Remove this track Odstranit tuto stopu Mute this track Ztlumit tuto stopu Solo Sólo vestigeInstrument Loading plugin Načítám plugin Please wait while loading VST-plugin... Prosím čekejte dokud se nenačte VST plugin... Failed loading VST-plugin Chyba načítání VST pluginu The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! VST plugin %1 nemohl být z určitých důvodů načten. Jestliže tento plugin funguje v Linuxu v jiném VST softwaru, kontaktujte prosím LMMS vývojáře! vibed String %1 volume String %1 stiffness Pick %1 position Pickup %1 position Pan %1 Detune %1 Fuzziness %1 Length %1 Impulse %1 Octave %1 vibedView Volume: Hlasitost: The 'V' knob sets the volume of the selected string. Ovladač 'V' nastavuje hlasitost vybrané struny. Pick position: Pozice drnknutí: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. Ovladač 'P' nastavuje pozici na které bude na vybranou strunu drnknuto. Nižší nastavení znamená úhoz blíže ke kobylce. Pickup position: Pozice snímače: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. Ovladač 'PU' nastavuje pozici snímače pro vybranou strunu. Nižší nastavení znamená snímač blíže u kobylky. Pan: Pan: The Pan knob determines the location of the selected string in the stereo field. Pan ovladač určuje pozici vybrané struny ve stereo prostoru. Detune: Rozladit: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. Ovladač Rozladění mění ladění vybrané struny. Hodnoty nižší než nula způsobí plochý zvuk, hodnoty vyšší než nula způsobí ostřejší zvuk. Length: Délka: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. Ovladač Délka nastavuje délku vybrané struny. Delší struny budou znít déle a jasněji, také však spořádají více CPU cyklů. Octave Oktáva Enable waveform Zapnout vlnu Click here to enable/disable waveform. Pro zapnutí/vypnutí vlny klikněte zde. String Struna The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. Volič strun se užívá k výběru struny, které bude upravována. Nástroj Vibed může obsahovat maximálně devět nezávisle vibrujících strun. LED v pravém dolním rohu editoru tvaru vlny indikuje zda je vybraná struna aktivní. Sine wave Sinusová vlna Triangle wave Trianglová vlna Saw wave Pilovitá vlna Square wave Pravoúhlá (square) vlna White noise wave Bílý šum User defined wave Vlna definovaná uživatelem Smooth Uhladit Click here to smooth waveform. Pro uhlazení vlny klikněte zde. Normalize Normalizovat Click here to normalize waveform. Pro normalizaci vlny klikněte zde. String stiffness: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. Fuzziness: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. Impulse or initial state The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. Impulse Editor The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. &Help visualizationWidget click to enable/disable visualization of master-output Kliknutí zapíná/vypíná vizualizaci hlavního výstupu Click to enable voiceObject Voice %1 pulse width Voice %1 attack Voice %1 decay Voice %1 sustain Voice %1 release Voice %1 coarse detuning Voice %1 wave shape Voice %1 sync Voice %1 ring modulate Voice %1 filtered Voice %1 test lmms-1.0.0+bzr2569/data/locale/de.qm0000644000000000000000000056633112074554501015045 0ustar 00000000000000[CإtPص 0TTu(T'$r#mUds6i6`76`Y7]7^FWkH54I[:'LLhTthjFjɈÁ}/v@/kCCO?E9 nVeį zyb Ue YeUfTbgDdgqjQu rXD|4D#}1c9#}3co([*$*y)*U*0p*0vK*0*0D*0(*0ݾ*0+++?+\++į/NK4ʩ.5f6.6u9giWR9kYW93*:dLdX@dY@TpE GEZF|y GGG GHiwHi;HH,HzHzAHI;ZeImJImJ'NJ+RJ<@ʉJsJJeK LbM5MMMw[N(Nh7ObzPWPWS}A]S}C]SU_Sb_SKMT.[OTZTKTʴvTʴ|TxUQ5^U`MUj¢VbFVbhPVh4V>V[VV7W bW WiWWW2X X ȼX Z/Z/eZkͳZkZ}ZPZoSZof[~s[jp\ ]6 8]n^eq^erc^cNLh  iųViųpių szyftUftbfv=/Y|}L|}}UI~#8;%*;w_Nϙ)&^l9Nv!9C-uce 9N]7f)97iyIy)ק1e1ק3eg@Q-OnwEW3J  bm b [k %/N+U+Vun|+"RI/V27"7o9}Bf9U;n*; =6@۴CuQFziFzJjJԨMUTcOXRJOXbP0b.VZ;˫Z;5aU1JimWp> w80yuz;;~Ju9t>Ʉyʭi7(?ՙծh=s8݊^M~<?4lߺWoe oA;CBnAA |=DS2/hBlma3 (^w(^v,´..: Roe_/ r%bmtK xżH~z69#)%F8n7C B.w.??ő}f3p#9>ѻGcҩBÁһB&En|t>{\qgtHg~y ssVsCE@DSP%huI@"ݎq"ݎ~% :2Q3W4K7.8Jo:)/?'H@CB#vHH>@I[YUOXkP~RP~XWa:1Z.]]]YglAlh)ou)z|ZN|ZS}"6}^}_~N~'ŐCĩ5bR$%#S`#AyH0x0?|s e#8}dA~}O&~TWRĽ-H"P"ϯѫ(6J6~קAWקCXNքrܗjNqM6q왞>VgoB7 =qdչ3 YI ._ 0\(k5(Af)e10e19|:^;:`<<2<<A UwCYZFA>J qM$fMtMкPJPJPJQq.Qq.`H`k`%R`%bc=,Ud Zg5Eehi{:jzt kJַl 5rJw~e9@w w+w xYZKayT5yT{ ;%}Fg9u N xZ.ưuu0Hu0u1Lu1u"u#9u*={U#VIkIyIEI"XIvfh[i=?aZ e qq =p < o sKB7BzI7B"x~[eDˤo(mžՔ=tE\ͥ@22;(C غؽ=`jA1hv;@fnhD^K#BPC_dCV t1Xd u u[ @Z lGTΎ("!E$0)%)E)|-U5.15R 3:7e^F7e_K7U^84?~]NEzeF^F^wH8CPeQ,QQDZ\C.xdaEx3a*of1h93ll܉leps vA "x}}o.?,ADAkK]5*n̂>FCIwXs-cPRE8_jՎfLf]zIttؙGtVt!Þo^E|;9EUZ5<5k<5ڙ<5ݤ<5:<5<5J>sߺnD}/ljZC?N,^4 ZnEOE߸EG|bizxza#ECF'v7O+#&1UZ1^6{:gNr:aK2T`7luu(w7m>2~zRϤ2ޔrti">t/L7cq\rg !q zydJ))ē dYBa!E!E}!Ey&rz' )r' )0(*5)w*G_,D75n8}>+;Z.? ~#?C',ImUIN@UIZg[t\X. aFczMrhFahJVIiANxi$m.iwYy %8y %=rJ %Dj>j/>Y2kB2|],d1T_~A 잂.)$27m>,#3!S  P[: SUٚ$ϞS~-SE-SE¾-SE3h;rG/Gx!ypI QS6NU3UW~g+bsQvc?ZeEUe-evjD@)m4Dnq vvS{e5qO5;$dRD`S#PHC2HC0dsn5%a*UUU !|d!JByy:yJzJ^Psmc v¸¸>ʩIʩׁic8O0]v]4eH ࣓RJOLmc`kYt  "    $ 2 %m )8JE * .5nҙ 3': 6EQ 8e5 8e 9J 9 G ItY@ Ij Mg O TV YAN^ Ys hI.R hI. k l8 p,H{ pM w%^ w%> xk |bv >\h >X 9 3 4~  .I B1 B1u  1 `c ` 9I l + nG [ F& w Kn SLg XK* ]0f dq9 ӝ  al UUE uE& R U?x 1 F/ N} B7  q, ~bJ ·~2v *D ʧ ʵE ˔  J\% D^t NT$ ؋q ڮ, ڮm ہ? DK z a *{@ ] _G I9A ".  $ rQ 'm+ )x# +* - e 3'l 9y N(g Om S'J STn STn \ s \ ]J `W eEV m  m j m ( m  s T u:n C; ki $n6 2 $0 ?` }l Np Nv{ J& V h} R 2̎ 2 8A} Ɵm Ƶ8tw ^ 4 ӗ`B ӰQ4 غ 2K <R < e'z S Y: Y:J Y:#GPMQ>Y ]ad^~cgn@~dy!OpqN&)u?L<{)t)5`9`9Ș\mWA *xPJ^*LDNS!D-  |[ Lf21"C$e-(l)37W/?ICgl9D>$DٝE,I U&{mXҾZ /[x*p[o^ E` {eReRĒiI m4pڸymW*2*7K  ¥I*L6|~Ƴ\~~?ܹ+^iPberAbout AboutDialogber LMMS About LMMS AboutDialogAutorenAuthors AboutDialogPCopyright (c) 2004-2012, LMMS-Entwickler(Copyright (c) 2004-2012, LMMS developers AboutDialogRDeutsche bersetzung von Tobias Doerffel.Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! AboutDialog<LMMS (Linux MultiMedia Studio)LMMS (Linux MultiMedia Studio) AboutDialogHLMMS - Musikproduktion fr jedermann)LMMS - easy music production for everyone AboutDialog LizenzLicense AboutDialogbersetzung Translation AboutDialog:Version %1 (%2/%3, Qt %4, %5)Version %1 (%2/%3, Qt %4, %5) AboutDialog6http://lmms.sourceforge.nethttp://lmms.sourceforge.net AboutDialogArpeggioArpeggio Arpeggiator"Arpeggio-RichtungArpeggio direction ArpeggiatorArpeggio-Gate Arpeggio gate ArpeggiatorArpeggio-Modus Arpeggio mode Arpeggiator Arpeggio-BereichArpeggio range ArpeggiatorArpeggio-Zeit Arpeggio time ArpeggiatorArpeggiotyp Arpeggio type Arpeggiator RunterDown ArpeggiatorFreiFree ArpeggiatorZuflligRandom ArpeggiatorSortiertSort ArpeggiatorSynchronSync ArpeggiatorHochUp ArpeggiatorHoch und runter Up and down Arpeggiator%%ArpeggiatorViewARPEGGIOARPEGGIOArpeggiatorView^Ein Arpeggio ist eine Art, (vorallem gezupfte) Instrumente zu spielen, die die Musik viel lebendiger macht. Die Seiten von solchen Instrumenten (z.B. Harfen) werden wie Akkorde gezupft, der einzige Unterschied besteht darin, dass dies nacheinander geschieht. Die Noten werden also nicht zur gleichen Zeit gespielt. Typische Arpeggios sind Dur- oder Moll-Dreiklnge, aber es gibt noch viele andere Akkorde, die Sie auswhlen knnen.An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select.ArpeggiatorViewArpeggio-Gate:Arpeggio gate:ArpeggiatorView"Arpeggio-Bereich:Arpeggio range:ArpeggiatorViewArpeggio-Zeit:Arpeggio time:ArpeggiatorViewRichtung: Direction:ArpeggiatorViewGATEGATEArpeggiatorView Modus:Mode:ArpeggiatorViewBEREICHRANGEArpeggiatorViewZEITTIMEArpeggiatorViewBenutzen Sie diesen Knopf, um das Arpeggio-Gate zu setzen. Das Arpeggio-Gate gibt an, wie viel Prozent eines ganzen Arpeggio-Tons gespielt werden sollen. Damit knnen Sie coole Staccato-Arpeggios erzeugen.Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios.ArpeggiatorView6Benutzen Sie diesen Knopf, um den Arpeggio-Bereich in Oktaven zu setzen. Das gewhle Arpeggio wird innerhalb der angegebenen Anzahl von Oktaven abgespielt.Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves.ArpeggiatorViewDBenutzen Sie diesen Knopf, um die Arpeggio-Zeit in Millisekunden zu setzen. Die Arpeggio-Zeit gibt an, wie lange jeder einzelne Arpeggio-Ton gespielt werden soll.Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played.ArpeggiatorViewmsmsArpeggiatorViewOktave(n) octave(s)ArpeggiatorView KANLECHANNELSAudioAlsa::setupWidget GERTDEVICEAudioAlsa::setupWidgetVerstrkung:Amplify:AudioFileProcessorView<Klicken Sie hier, um eine andere Audio-Datei zu ffnen. Danach erscheint ein Dialog, in dem Sie Ihre Datei whlen knnen. Einstellungen wie Wiederhol-Modus, Start- und Endpunkt sowie Verstrkung werden nicht zurckgesetzt, weshalb die Datei mglicherweise nicht wie das Original klingt.Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample.AudioFileProcessorViewEndpunkt: Endpoint:AudioFileProcessorViewHier knnen Sie festlegen, ob der Looping-Modus aktiviert sein soll. Wenn aktiviert, wiederholt AudioFileProcessor das Sample zwischen Start- und Endpunkt solange, bis die gesamte Note gespielt ist. Das ist vorallem fr String- und Chor-Samples ntzlich.Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples.AudioFileProcessorViewWenn Sie diesen Button aktivieren, wird das gesamte Sample umgekehrt. Das kann ntzlich fr coole Effekte sein, wie z.B. eine umgekehrte Crash.pIf you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash.AudioFileProcessorViewRSample an Start- und Endpunkt wiederholen#Loop sample at start- and end-pointAudioFileProcessorView*Anderes Sample ffnenOpen other sampleAudioFileProcessorViewSample umkehrenReverse sampleAudioFileProcessorViewStartpunkt: Startpoint:AudioFileProcessorViewMit diesem Knopf knnen Sie die Verstrkungsrate festlegen. Wenn Sie einen Wert von 100% setzen, wird das Sample nicht gendert. Ansonsten wird es hoch oder runter verstrkt (Ihre Audio-Datei wird dabei nicht verndert!)With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!)AudioFileProcessorViewMit diesem Knopf knnen Sie festlegen, wo AudioFileProcessor anfangen soll, Ihr Sample zu spielen. Wenn Sie den Looping-Modus aktivieren, ist das der Punkt, wohin AudioFileProcessor zurckkehrt, wenn eine Note lnger als das Sample zwischen Start- und Endpunkt ist.With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points.AudioFileProcessorView2Mit diesem Knopf knnen Sie festlegen, wo AudioFileProcessor aufhren soll, Ihr Sample zu spielen. Wenn Sie den Looping-Modus aktivieren, ist das der Punkt, an dem AudioFileProcessor zum Startpunkt zurckkehrt, wenn eine Note lnger als das Sample zwischen Start- und Endpunkt ist.With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points.AudioFileProcessorView0JACK-Client neugestartetJACK client restarted AudioJack8JACK-Server nicht erreichbarJACK server down AudioJackLLMMS wurde aus irgendeinem Grund von JACK verbannt. Aus diesem Grund wurde das JACK-Backend von LMMS neu gestartet. Sie mssen manuelle Verbindungen erneut vornehmen.LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. AudioJackDer JACK-Server scheint heruntergefahren worden zu sein und es war nicht mglich, eine neue Instanz zu starten. LMMS ist daher nicht in der Lage, fortzufahren. Sie sollten Ihr Projekt speichern und JACK und LMMS neustarten.The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack KANLECHANNELSAudioJack::setupWidgetCLIENT-NAME CLIENT-NAMEAudioJack::setupWidget KANLECHANNELSAudioOss::setupWidget GERTDEVICEAudioOss::setupWidgetBACKENDBACKENDAudioPortAudio::setupWidget GERTDEVICEAudioPortAudio::setupWidget KANLECHANNELSAudioPulseAudio::setupWidget GERTDEVICEAudioPulseAudio::setupWidget GERTDEVICEAudioSdl::setupWidget*Wert &kopieren (%1%2)&Copy value (%1%2)AutomatableModel*Wert &einfgen (%1%2)&Paste value (%1%2)AutomatableModel(&Zurcksetzen (%1%2) &Reset (%1%2)AutomatableModel6Mit Controller verbinden...Connect to controller...AutomatableModel Verbunden mit %1Connected to %1AutomatableModel0Verbunden mit ControllerConnected to controllerAutomatableModel0Verbindung bearbeiten...Edit connection...AutomatableModelBSong-globale Automation editierenEdit song-global automationAutomatableModel(Verbindung entfernenRemove connectionAutomatableModelzAlle ausgewhlten Werte wurden in die Zwischenablage kopiert.1All selected values were copied to the clipboard.AutomationEditor,Automation-Editor - %1Automation Editor - %1AutomationEditor@Automation-Editor - Kein PatternAutomation Editor - no patternAutomationEditorKlicken Sie hier, um den Zeichnen-Modus zu aktivieren. In diesem Modus knnen Sie einzelne Werte hinzufgen und verschieben. Das ist der Standard-Modus, der meistens benutzt wird. Sie knnen auch 'Umschalt+D' auf Ihrer Tastatur drcken, um in diesen Modus zu gelangen.Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode.AutomationEditor~Klicken Sie hier, um den Radier-Modus zu aktivieren. In diesem Modus knnen Sie einzelne Werte lschen. Sie knnen auch 'Umschalt+E' auf Ihrer Tastatur drcken, um diesen Modus zu aktivieren.Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode.AutomationEditorHKlicken Sie hier, um den Auswahl-Modus zu aktivieren. In diesem Modus knnen Sie Werte markieren. Das ist ntig, wenn Sie (mehrere) Werte ausschneiden, kopieren, einfgen, lschen oder verschieben wollen. Sie knnen auch 'Umschalt+S' auf Ihrer Tastatur drcken, um diesen Modus zu aktivieren.Click here and select-mode will be activated. In this mode you can select values. This is necessary if you want to cut, copy, paste, delete, or move values. You can also press 'Shift+S' on your keyboard to activate this mode.AutomationEditorKlicken Sie hier, um die markierten Werte in die Zwischenablage zu kopieren. Sie knnen diese dann berall, auch in einem anderen Pattern, wieder einfgen, indem Sie auf den Einfgen-Button klicken.Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditorKlicken Sie hier, um die markierten Werte auszuschneiden und in die Zwischenablage zu kopieren. Sie knnen diese dann berall, auch in einem anderen Pattern, wieder einfgen, indem Sie auf den Einfgen-Button klicken.Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditorKlicken Sie hier, um die Werte in der Zwischenablage im ersten sichtbaren Takt einzufgen.YClick here and the values from the clipboard will be pasted at the first visible measure.AutomationEditorNKlicken Sie hier, wenn Sie den aktuellen Pattern spielen wollen. Das ist ntzlich beim Bearbeiten. Der Pattern wird automatisch wiederholt, wenn das Ende erreicht ist.Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached.AutomationEditorKlicken Sie hier, wenn Sie das Abspielen des aktuellen Patterns stoppen wollen.>Click here if you want to stop playing of the current pattern.AutomationEditorFAusgewhlte Werte kopieren (Strg+C)Copy selected values (Ctrl+C)AutomationEditorNAusgewhlte Werte ausschneiden (Strg+X)Cut selected values (Ctrl+X)AutomationEditor6Zeichnen-Modus (Umschalt+D)Draw mode (Shift+D)AutomationEditor2Radier-Modus (Umschalt+E)Erase mode (Shift+E)AutomationEditorWenn Sie hier klicken, wird der Auswahl-Verschieben-Modus aktiviert. In diesem Modus knnen Sie die markierten Werte verschieben. Sie knnen auch 'Umschalt+M' auf Ihrer Tastatur drcken, um diesen Modus zu aktivieren.If you click here, move-mode will be activated. In this mode you can move the values you selected in select-mode. You can also press 'Shift+M' on your keyboard to activate this mode.AutomationEditorLAuswahl-Verschieben-Modus (Umschalt+M)Move selection mode (Shift+M)AutomationEditorTWerte aus Zwischenablage einfgen (Strg+V)$Paste values from clipboard (Ctrl+V)AutomationEditorbAktuellen Pattern abspielen/pausieren (Leertaste)"Play/pause current pattern (Space)AutomationEditorBitte ffnen Sie einen Automation-Pattern mit Hilfe des Kontextmens eines Steuerelements!EPlease open an automation pattern with the context menu of a control!AutomationEditor4Auswahl-Modus (Umschalt+S)Select mode (Shift+S)AutomationEditorhAbspielen des aktuellen Patterns stoppen (Leertaste)'Stop playing of current pattern (Space)AutomationEditorWerte kopiert Values copiedAutomationEditorXEin Steuerelement mit <Strg> hier her ziehen$Drag a control while pressing AutomationPattern%1 Verbindungen%1 ConnectionsAutomationPatternViewName ndern Change nameAutomationPatternViewZurcksetzenClearAutomationPatternView"%1" trennenDisconnect "%1"AutomationPatternView6Im Automation-Editor ffnenOpen in Automation editorAutomationPatternView"Name zurcksetzen Reset nameAutomationPatternViewzDoppelklick, um diesen Pattern im Automation-Editor zu ffnen6double-click to open this pattern in automation editorAutomationPatternViewAutomation-SpurAutomation trackAutomationTrack1111 ChordCreator11b911b9 ChordCreator1313 ChordCreator13#913#9 ChordCreator 13b5b913b5b9 ChordCreator13b913b9 ChordCreator66 ChordCreator 6add96add9 ChordCreator 6sus46sus4 ChordCreator77 ChordCreator7#117#11 ChordCreator7#57#5 ChordCreator 7#5#97#5#9 ChordCreator 7#5b97#5b9 ChordCreator7#97#9 ChordCreator 7add117add11 ChordCreator 7add137add13 ChordCreator7b57b5 ChordCreator 7b5b97b5b9 ChordCreator7b97b9 ChordCreator 7sus47sus4 ChordCreator99 ChordCreator9#119#11 ChordCreator9#59#5 ChordCreator9b139b13 ChordCreator9b59b5 ChordCreator 9sus49sus4 ChordCreatorolischAeolian ChordCreatorArabischArabic ChordCreator BluesBlues ChordCreatorAkkord-Bereich Chord range ChordCreatorAkkordtyp Chord type ChordCreatorAkkordeChords ChordCreatorVermindert Diminished ChordCreator Dominanter BebopDominant bebop ChordCreatorDorischDorian ChordCreatorEnigmatisch Enigmatic ChordCreator"Harmonisches MollHarmonic minor ChordCreatorZigeunermollHungarian minor ChordCreator Jap in sen ChordCreatorLocrischLocrian ChordCreatorLydischLydian ChordCreator Maj11Maj11 ChordCreator Maj13Maj13 ChordCreatorMaj7Maj7 ChordCreatorMaj7#11Maj7#11 ChordCreator Maj7#5Maj7#5 ChordCreatorMaj7add13 Maj7add13 ChordCreator Maj7b5Maj7b5 ChordCreatorMaj9Maj9 ChordCreatorMaj9#11Maj9#11 ChordCreator Maj9#5Maj9#5 ChordCreatorMaj9sus4Maj9sus4 ChordCreator Durb5Majb5 ChordCreatorDurMajor ChordCreatorDur Bebop Major bebop ChordCreator$Pentatonisches DurMajor pentatonic ChordCreator Melodisches Moll Melodic minor ChordCreator&Pentatonisches MollMinor pentatonic ChordCreatorMixolydisch Mixolydian ChordCreatorNeopolitanisch Neopolitan ChordCreator*Neopolitanisches MollNeopolitan minor ChordCreatorPhrygisch Phrygolydian ChordCreatorGanze Tne Whole tone ChordCreatoradd9add9 ChordCreatoraugaug ChordCreatoraugsus4augsus4 ChordCreatorm-Maj11m-Maj11 ChordCreatorm-Maj13m-Maj13 ChordCreator m-Maj7m-Maj7 ChordCreatorm-Maj7add11 m-Maj7add11 ChordCreatorm-Maj7add13 m-Maj7add13 ChordCreatorm11m11 ChordCreatorm13m13 ChordCreatorm6m6 ChordCreator m6add9m6add9 ChordCreatorm7m7 ChordCreatorm7add11m7add11 ChordCreatorm7add13m7add13 ChordCreatorm7b5m7b5 ChordCreatorm7b9m7b9 ChordCreatorm9m9 ChordCreatorm9-Maj7m9-Maj7 ChordCreatorm9b5m9b5 ChordCreator madd9madd9 ChordCreator mollb5minb5 ChordCreatormollminor ChordCreator Oktaveoctave ChordCreatorsus2sus2 ChordCreatorsus4sus4 ChordCreatortritri ChordCreatorAKKORDECHORDSChordCreatorViewAkkord-Bereich: Chord range:ChordCreatorViewBEREICHRANGEChordCreatorView.Benutzen Sie diesen Knopf, um den Akkord-Bereich in Oktaven zu setzen. Der gewhle Akkord wird innerhalb der angegebenen Anzahl von Oktaven abgespielt.{Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves.ChordCreatorViewOktave(n) octave(s)ChordCreatorViewController %1 Controller %1 Controller,Automatische Erkennung Auto DetectControllerConnectionDialog KANALCHANNELControllerConnectionDialogCONTROLLER CONTROLLERControllerConnectionDialogAbbrechenCancelControllerConnectionDialog0VerbindungseinstellungenConnection SettingsControllerConnectionDialog"Schleife erkannt.Cycle Detected.ControllerConnectionDialogEingangskanal Input channelControllerConnectionDialog$EingangscontrollerInput controllerControllerConnectionDialogLMMSLMMSControllerConnectionDialog&ABBILDUNGS-FUNKTIONMAPPING FUNCTIONControllerConnectionDialogMIDI CONTROLLERMIDI CONTROLLERControllerConnectionDialogtMIDI-Gerte, von denen MIDI-Events empfangen werden sollen(MIDI-devices to receive MIDI-events fromControllerConnectionDialogOKOKControllerConnectionDialog:BENUTZERDEFINIETER CONTROLLERUSER CONTROLLERControllerConnectionDialogHinzufgenAddControllerRackView$Controller-EinheitController RackControllerRackView &Hilfe&HelpControllerView"Plugin entfe&rnen&Remove this pluginControllerViewMit Controller knnen Sie den Wert eines Knopfes, Schiebereglers und anderer Steuerelemente automatisieren.QControllers are able to automate the value of a knob, slider, and other controls.ControllerView ReglerControlsControllerViewjGeben Sie einen neuen Namen fr diesen Controller ein&Enter the new name for this controllerControllerView*Controller umbenennenRename controllerControllerViewAbfallzeitDecayEffect(Effekt eingeschaltetEffect enabledEffectGateGateEffectWet/Dry-Mix Wet/Dry mixEffect"Effekte aktiviertEffects enabled EffectChain"Effekt hinzufgen Add effectEffectRackViewEFFEKT-KETTE EFFECTS CHAINEffectRackView"Effekt hinzufgen Add effectEffectSelectDialog$PluginbeschreibungPlugin descriptionEffectSelectDialog &Hilfe&Help EffectView"Plugin entfe&rnen&Remove this plugin EffectView ReglerControls EffectView DECAYDECAY EffectViewGATEGATE EffectView Gate:Gate: EffectView.Nach &unten verschieben Move &down EffectView,Nach &oben verschiebenMove &up EffectView An/ausOn/Off EffectViewDer Abfallzeit-Knopf legt fest, wie viele Puffer mit Stille durchgelaufen sein mssen, bis der Effekt mit der Verarbeitung stoppt. Kleinere Werte reduzieren die CPU-Last, knnen jedoch unter Umstnden das Ende von Delay-Effekten o.. abschneiden.The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. EffectView4Der Gate-Knopf legt die Strke des Signals fest, welches als Stille angesehen wird, um zu entscheiden, wann das Plugin mit der Verarbeitung aufhren kann.zThe Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. EffectViewDer Wet/Dry-Knopf legt das Verhltnis zwischen Eingangssignal und vom Effekt bearbeiteten Signal im Ausgang fest.eThe Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. EffectView Zeit:Time: EffectView@Schaltet den Effekt an oder aus.Toggles the effect on or off. EffectViewW/DW/D EffectViewWet-Level: Wet Level: EffectView,Anschwellzeit (attack)AttackEnvelopeAndLfoParametersAbfallzeitDecayEnvelopeAndLfoParametersFreq x 100 Freq x 100EnvelopeAndLfoParameters Haltezeit (hold)HoldEnvelopeAndLfoParameters<LFO-Anschwellzeit (LFO-attack) LFO AttackEnvelopeAndLfoParametersLFO ModulationLFO ModulationEnvelopeAndLfoParametersLFO-Verzgerung LFO PredelayEnvelopeAndLfoParametersLFO-WellenformLFO Wave ShapeEnvelopeAndLfoParameters&LFO-Geschwindigkeit LFO speedEnvelopeAndLfoParameters(Hllkurve modulierenModulate Env-AmountEnvelopeAndLfoParametersModulation ModulationEnvelopeAndLfoParameters,Verzgerung (predelay)PredelayEnvelopeAndLfoParameters,Ausklingzeit (release)ReleaseEnvelopeAndLfoParameters(Haltepegel (sustain)SustainEnvelopeAndLfoParametersAMTAMTEnvelopeAndLfoViewATTATTEnvelopeAndLfoView.Anschwellzeit (attack):Attack:EnvelopeAndLfoView:Klick fr eine Sgezahnwelle.&Click here for a saw-wave for current.EnvelopeAndLfoView4Klick fr eine Sinuswelle.Click here for a sine-wave.EnvelopeAndLfoView<Klick fr eine Rechteckswelle.Click here for a square-wave.EnvelopeAndLfoView:Klick fr eine Dreieckswelle.Click here for a triangle-wave.EnvelopeAndLfoViewHier klicken fr eine benutzerdefinierte Wellenform. Danach eine entsprechende Sampledatei auf den LFO-Graphen ziehen.aClick here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph.EnvelopeAndLfoViewHier klicken, wenn die Frequenz des LFOs mit 100 multipliziert werden soll.DClick here if the frequency of this LFO should be multiplied by 100.EnvelopeAndLfoViewKlicken Sie hier, um die Hllkurvenintensitt durch diesen LFO kontrollieren zu lassen.>Click here to make the envelope-amount controlled by this LFO.EnvelopeAndLfoViewDECDECEnvelopeAndLfoViewDELDELEnvelopeAndLfoView&Abfallzeit (decay):Decay:EnvelopeAndLfoViewZiehen Sie ein Sample von irgendwo und lassen es in diesem Fenster fallen.8Drag a sample from somewhere and drop it in this window.EnvelopeAndLfoViewFREQ x 100 FREQ x 100EnvelopeAndLfoViewHOLDHOLDEnvelopeAndLfoViewTippHintEnvelopeAndLfoView"Haltezeit (hold):Hold:EnvelopeAndLfoView LFO-Verzgerung: LFO predelay:EnvelopeAndLfoView(LFO-Geschwindigkeit: LFO speed:EnvelopeAndLfoView>LFO-Anschwellzeit (LFO-attack): LFO- attack:EnvelopeAndLfoView"HLLK. MODULIERENMODULATE ENV-AMOUNTEnvelopeAndLfoView,Modulationsintensitt:Modulation amount:EnvelopeAndLfoView.Verzgerung (predelay): Predelay:EnvelopeAndLfoViewRELRELEnvelopeAndLfoView.Ausklingzeit (release):Release:EnvelopeAndLfoViewSPDSPDEnvelopeAndLfoViewSUSTSUSTEnvelopeAndLfoView*Dauerpegel (sustain):Sustain:EnvelopeAndLfoView|Benutzen Sie diesen Knopf, um die Anschwellzeit fr den aktuellen LFO einzustellen. Je grer dieser Wert, desto lnger dauert es, bis die Amplitude des LFOs bis zum Maximum angestiegen ist.Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum.EnvelopeAndLfoViewrBenutzen Sie diesen Knopf, um die Anschwellzeit (attack) fr die aktuelle Hllkurve einzustellen. Je grer dieser Wert, desto lnger braucht die Hllkurve, um bis zum Anschwellpegel (attack-level) zu steigen. Whlen Sie einen kleinen Wert fr Instrumente wie Klavier und einen groen Wert fr Streichinstrumente.Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings.EnvelopeAndLfoViewFBenutzen Sie diesen Knopf, um die Abfallzeit (decay) fr die aktuelle Hllkurve einzustellen. Je grer dieser Wert, desto lnger braucht die Hllkurve, um vom Anschwellpegel (attack-level) zum Dauerpegel (sustain-level) abzufallen. Whlen Sie einen kleinen Wert fr Instrumente wie Klavier.Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos.EnvelopeAndLfoViewBenutzen Sie diesen Knopf, um die Haltezeit (hold) der aktuellen Hllkurve zu setzen. Je grer der Wert, desto lnger hlt die Hllkurve den Anschwellpegel, bevor sie zum Haltepegel (sustain-level) abfllt.Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level.EnvelopeAndLfoViewBenutzen Sie diesen Knopf, um die Modulationsintensitt des aktuellen LFOs einzustellen. Je grer der Wert, desto mehr wird die gewhlte Gre (z.B. Lautstrke oder Cuttoff-Frequenz) von diesem LFO beeinflusst.Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO.EnvelopeAndLfoViewBenutzen Sie diesen Knopf, um die Modulationsintensitt fr die aktuelle Hllkurve einzustellen. Je grer dieser Wert, desto mehr wird die gewhlte Gre (z.B. Lautstrke oder Cutoff-Frequenz) von der Hllkurve beeinflusst.Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope.EnvelopeAndLfoViewpBenutzen Sie diesen Knopf, um die Verzgerung (predelay) fr die aktuelle Hllkurven einzustellen. Je grer dieser Wert, desto lnger dauert es, bis die eigentliche Hllkurve beginnt.Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope.EnvelopeAndLfoViewLBenutzen Sie diesen Knopf, um die Verzgerungszeit fr den aktuellen LFO einzustellen. Je grer dieser Wert, desto lnger die Zeit, bis der LFO anfngt zu schwingen.Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate.EnvelopeAndLfoViewBenutzen Sie diesen Knopf, um die Ausklingzeit der aktuellen Hllkurve einzustellen. Je grer der Wert, desto lnger braucht die Hllkurve um vom Dauerpegel (sustain-level) auf Null abzufallen. Whlen Sie einen groen Wert fr weiche Instrumente, wie z.B. Streicher.Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings.EnvelopeAndLfoViewxBenutzen Sie diesen Knopf, um die Geschwindigkeit fr den aktuellen LFO einzustellen. Je grer der Wert, desto schneller schwingt der LFO und desto schneller ist der entsprechende Effekt.Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect.EnvelopeAndLfoViewBenutzen Sie diesen Knopf, um den Dauerpegel (sustain-level) fr die aktuelle Hllkurve einzustellen. Je grer dieser Wert, desto hher der Pegel, den die Hllkurve hlt, bevor sie auf Null abfllt.Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero.EnvelopeAndLfoViewfHllkurvenintensitt durch diesen LFO kontrollieren#control envelope-amount by this LFOEnvelopeAndLfoViewms/LFO:ms/LFO:EnvelopeAndLfoViewFLFO-Frequenz mit 100 multiplizierenmultiply LFO-frequency by 100EnvelopeAndLfoView128 KBit/s 128 KBit/sExportProjectDialog"16 Bit Ganzzahlen16 Bit IntegerExportProjectDialog160 KBit/s 160 KBit/sExportProjectDialog192 KBit/s 192 KBit/sExportProjectDialog192000 Hz 192000 HzExportProjectDialog1x (keine) 1x (None)ExportProjectDialog256 KBit/s 256 KBit/sExportProjectDialog2x2xExportProjectDialog.32-Bit-Gleitkommazahlen 32 Bit FloatExportProjectDialog320 KBit/s 320 KBit/sExportProjectDialog44100 Hz44100 HzExportProjectDialog48000 Hz48000 HzExportProjectDialog4x4xExportProjectDialog64 KBit/s 64 KBit/sExportProjectDialog88200 Hz88200 HzExportProjectDialog8x8xExportProjectDialog96000 Hz96000 HzExportProjectDialog0Alias-freie OszillatorenAlias-free oscillatorsExportProjectDialogBitrate:Bitrate:ExportProjectDialogAbbrechenCancelExportProjectDialogGenauigkeit:Depth:ExportProjectDialog&Projekt exportierenExport projectExportProjectDialogDateiformat: File format:ExportProjectDialogInterpolation:Interpolation:ExportProjectDialogAusgabeOutputExportProjectDialoghberabtastung (oversampling) (mit Vorsicht nutzen!):Oversampling (use with care!):ExportProjectDialogBitte beachten Sie, dass nicht alle der obigen Parameter fr alle Dateiformate relevant sind.LPlease note that not all of the parameters above apply for all file formats.ExportProjectDialog,QualittseinstellungenQuality settingsExportProjectDialog0Sample-genaue ControllerSample-exact controllersExportProjectDialogAbtastrate: Samplerate:ExportProjectDialog@Sinc - am besten (sehr langsam!)Sinc Best (very slow!)ExportProjectDialog*Sinc - am schnellsten Sinc FastestExportProjectDialog2Sinc - Normal (empfohlen)Sinc Medium (recommended)ExportProjectDialog StartStartExportProjectDialogZero Order HoldZero Order HoldExportProjectDialog FX %1FX %1FxMixer MasterMasterFxMixerbBitte einen neuen Namen fr den FX-Kanal eingeben&Enter the new name for this FX channel FxMixerViewFX-Schieber %1 FX Fader %1 FxMixerViewFX-MixerFX-Mixer FxMixerView StummMute FxMixerView:Diesen FX-Kanal stummschaltenMute this FX channel FxMixerView&FX-Kanal umbenennenRename FX channel FxMixerView KANALCHANNELInstrumentMidiIOView.MIDI-EINGANG AKTIVIERENENABLE MIDI INPUTInstrumentMidiIOView.MIDI-AUSGANG AKTIVIERENENABLE MIDI OUTPUTInstrumentMidiIOViewtMIDI Gerte, von denen MIDI-Events empfangen werden sollen(MIDI devices to receive MIDI events fromInstrumentMidiIOViewlMIDI-Gerte, an die MIDI-Events gesendet werden sollen#MIDI devices to send MIDI events toInstrumentMidiIOViewPROGRAMMPROGRAMInstrumentMidiIOViewLAUTSTRKEVELOCITYInstrumentMidiIOView2x Tiefpass 2x LowPassInstrumentSoundShapingAllpassAllpassInstrumentSoundShapingBandpass csg BandPass csgInstrumentSoundShapingBandpass czpg BandPass czpgInstrumentSoundShapingKENNFREQCUTOFFInstrumentSoundShapingKennfrequenzCutoff frequencyInstrumentSoundShapingHllkurven/LFOsEnvelopes/LFOsInstrumentSoundShapingFiltertyp Filter typeInstrumentSoundShapingHochpassHiPassInstrumentSoundShapingTiefpassLowPassInstrumentSoundShapingMoogMoogInstrumentSoundShaping NotchNotchInstrumentSoundShapingQ/Resonanz Q/ResonanceInstrumentSoundShaping RC-Bandpass 12dBRC BandPass 12dBInstrumentSoundShaping RC-Bandpass 24dBRC BandPass 24dBInstrumentSoundShaping RC-Hochpass 12dBRC HighPass 12dBInstrumentSoundShaping RC-Hochpass 24dBRC HighPass 24dBInstrumentSoundShaping RC-Tiefpass 12dBRC LowPass 12dBInstrumentSoundShaping RC-Tiefpass 24dBRC LowPass 24dBInstrumentSoundShapingRESORESOInstrumentSoundShapingResonanz ResonanceInstrumentSoundShapingLAUTSTRKEVOLUMEInstrumentSoundShaping&Vokalformant-FilterVocal Formant FilterInstrumentSoundShapingLautstrkeVolumeInstrumentSoundShapingKENNFREQCUTOFFInstrumentSoundShapingView FILTERFILTERInstrumentSoundShapingViewTHier knnen Sie den eingebauten Filter whlen, den Sie in dieser Instrument-Spur nutzen wollen. Filter sind sehr wichtig, um die Charakteristik eines Klangs zu verndern.Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound.InstrumentSoundShapingViewHzHzInstrumentSoundShapingViewRESORESOInstrumentSoundShapingViewResonanz: Resonance:InstrumentSoundShapingViewZIELTARGETInstrumentSoundShapingViewDiese Tabs enthalten Hllkurven. Diese sind sehr wichtig, um einen Klang zu verndern, insbesondere bei der substraktiven Synthese. Wenn Sie zum Beispiel eine Lautstrke-Hllkurve haben, knnen Sie festlegen, wann der Klang welchen Lautstrke-Pegel haben soll. Vielleicht wollen Sie ein weiches Streichinstrument erstellen. Dann muss ihr Sound sehr sanft ein- und ausgeblendet werden. Das kann man ganz einfach erreichen, indem man eine groe Anschwell(attack)- und Ausklingzeit (release) einstellt. Mit anderen Hllkurven, wie Balance, Kennfrequenz des benutzten Filters usw., ist es genau das Gleiche. Probieren Sie einfach ein bisschen herum! Mit ein paar Hllkurven kann man aus einer Sgezahn-Welle wirklich coole Klnge machen...!_These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...!InstrumentSoundShapingViewBenutzen Sie diesen Knopf, um Q/die Resonanz fr den gewhlten Filter einzustellen. Q/Resonanz teilt dem Filter mit, wie stark er die Frequenzen in der Nhe der Cutoff-Frequenz verstrken soll.Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency.InstrumentSoundShapingViewBenutzen Sie diesen Knopf, um die Kennfrequenz (cutoff-frequency) fr den gewhlten Filter einzustellen. Die Kennfrequenz wird vom Filter zum Beschneiden des Signals verwendet. Zum Beispiel filtert ein Tiefpass-Filter alle Frequenzen oberhalb der Kennfrequenz heraus. Ein Hochpass-Filter filtert alle Frequenzen unterhalb der Kennfrequenz heraus usw...2Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on...InstrumentSoundShapingViewKennfrequenz:cutoff-frequency:InstrumentSoundShapingViewGrundton Base noteInstrumentTrackStandard-PresetDefault presetInstrumentTrackFX-Kanal FX channelInstrumentTrackPanningPanningInstrumentTrackTonhhePitchInstrumentTrackLautstrkeVolumeInstrumentTrackMit diesem Knopf knnen Sie die Lautstrke des geffneten Kanals ndern.Zeige/verstecke Controller-RackShow/hide controller rack MainWindow>Zeige/verstecke Projekt-NotizenShow/hide project notes MainWindow2Das LMMS-Arbeitsverzeichnis %1 existiert nicht. Soll es jetzt erstellt werden? Sie knnen das Verzeichnis spter ber Bearbeiten -> Einstellungen ndern.uThe LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. MainWindowDas aktuelle Projekt wurde seit dem letzten Speichern gendert. Wollen Sie es jetzt speichern?OThe current project was modified since last saving. Do you want to save it now? MainWindowRckgngigUndo MainWindowUnbenanntUntitled MainWindowWas ist das? What's this? MainWindow$ArbeitsverzeichnisWorking directory MainWindowTakt/NennerMeter Denominator MeterDialogTakt/ZhlerMeter Numerator MeterDialogTAKTARTTIME SIG MeterDialog Nenner Denominator MeterModel Zhler Numerator MeterModel GERTDEVICEMidiAlsaRaw::setupWidget GERTDEVICEMidiAlsaSeq::setupWidgetMIDI-ControllerMIDI ControllerMidiController6unbenannter_midi_controllerunnamed_midi_controllerMidiController4Unvollstndige EinrichtungSetup incomplete MidiImportSie haben LMMS ohne das SoundFont2-Player-Plugin gebaut. Dieses Plugin wird normalerweise benutzt, um Standardklnge bei importierten MIDI-Dateien einzurichten. Aus diesem Grund werden Sie nach dem Import der MIDI-Datei nichts hren.You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiImporthSie haben keine Standard-Soundfont im Einstellungsdialog (Bearbeiten->Einstellungen) festgelegt. Aus diesem Grund werden Sie nach dem Import der MIDI-Datei whrend der Wiedergabe nichts hren. Sie sollten eine General-MIDI-Soundfont herunterladen, diese im Einstellungsdialog angeben und es erneut versuchen.You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. MidiImport GERTDEVICEMidiOss::setupWidget0Feste EingangslautstrkeFixed input velocityMidiPort0Feste AusgangslautstrkeFixed output velocityMidiPortEingangskanal Input channelMidiPort$EingangscontrollerInput controllerMidiPort,Ausgangs-MIDI-ProgrammOutput MIDI programMidiPortAusgangskanalOutput channelMidiPort$AusgangscontrollerOutput controllerMidiPort2MIDI-Ereignisse empfangenReceive MIDI-eventsMidiPort,MIDI-Ereignisse sendenSend MIDI-eventsMidiPort"Modulationsart %1Modulation type %1OscillatorObject<Oszillator %1 Grob-VerstimmungOsc %1 coarse detuningOscillatorObjectHOszillator %1 Fein-Verstimmung linksOsc %1 fine detuning leftOscillatorObjectJOszillator %1 Fein-Verstimmung rechtsOsc %1 fine detuning rightOscillatorObject*Oszillator %1 BalanceOsc %1 panningOscillatorObjectBOszillator %1 Phasen-VerschiebungOsc %1 phase-offsetOscillatorObjectPOszillator %1 Stereo Phasen-VerschiebungOsc %1 stereo phase-detuningOscillatorObject0Oszillator %1 Lautstrke Osc %1 volumeOscillatorObject0Oszillator %1 WellenformOsc %1 wave shapeOscillatorObject0Oszillator %1 WellenformOsc %1 waveformOscillatorObjectKlicken Sie hier, um eine andere Patch-Datei zu laden. Wiederholungs- und Stimmungseinstellungen werden nicht zurckgesetzt.LClick here to open another patch-file. Loop and Tune settings are not reset. PatmanView&Hier knnen Sie den Wiederholen-Modus (de-)aktivieren. Wenn aktiviert, verwendet PatMan die in der Datei verfgbaren Informationen zum Wiederholen.jHere you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. PatmanViewHier knnen Sie den Stimmungs-Modus (de-)aktivieren. Wenn aktiviert, wird der Klang automatisch an die Frequenz der Note angepasst.iHere you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. PatmanViewWiederholenLoop PatmanView,Modus beim Wiederholen Loop mode PatmanView,Keine Datei ausgewhltNo file selected PatmanView2Andere Patch-Datei ffnenOpen other patch PatmanView$Patch-Datei ffnenOpen patch file PatmanView*Patch-Dateien (*.pat)Patch-Files (*.pat) PatmanViewStimmungTune PatmanViewStimmungsmodus Tune mode PatmanViewPeak ControllerPeak ControllerPeakControllerLFO-ControllerLFO ControllerPeakControllerDialogPEAKPEAKPeakControllerDialogAMTAMT!PeakControllerEffectControlDialog ATTACKATTACK!PeakControllerEffectControlDialog.Anschwellzeit (attack):Attack:!PeakControllerEffectControlDialogBASEBASE!PeakControllerEffectControlDialogGrundstrke: Base amount:!PeakControllerEffectControlDialog DECAYDECAY!PeakControllerEffectControlDialog,Modulationsintensitt:Modulation amount:!PeakControllerEffectControlDialog.Ausklingzeit (release):Release:!PeakControllerEffectControlDialog,Anschwellzeit (attack)AttackPeakControllerEffectControlsGrundwert Base valuePeakControllerEffectControls*ModulationsintensittModulation amountPeakControllerEffectControls*Ausgang stummschalten Mute outputPeakControllerEffectControls,Ausklingzeit (release)ReleasePeakControllerEffectControlsGrundton Base note PianoView:Fehler beim Laden des PluginsError while loading pluginPluginXDas Plugin "%1" konnte nicht geladen werden!Failed to load plugin "%1"!Plugin*Plugin nicht gefundenPlugin not foundPluginDas Plugin "%1" konnte nicht gefunden oder geladen werden! Grund: "%2"AThe plugin "%1" wasn't found or could not be loaded! Reason: "%2"Plugin<Komprimierte OGG-Datei (*.ogg)Compressed OGG-File (*.ogg)ProjectRenderer"WAV-Datei (*.wav)WAV-File (*.wav)ProjectRenderer"Eingangs-Kanle:  Channels In: QWidget"Ausgangs-Kanle: Channels Out: QWidgetCopyright:  Copyright: QWidgetDatei: File: QWidget6Operationen nicht In-Place:In Place Broken: QWidgetHersteller: Maker: QWidget Name: Name: QWidgetNeinNoQWidgetEchtzeitfhig: Real Time Capable: QWidget&Bentigt Echtzeit: Requires Real Time: QWidgetJaYesQWidget &Hilfe&Help TempoSyncKnob16tel Note 16th note TempoSyncKnob32tel Note 32nd note TempoSyncKnobAchtelnote8th note TempoSyncKnob$ BenutzerdefiniertCustom  TempoSyncKnob(Benutzerdefiniert... Custom... TempoSyncKnobAcht Schlge Eight beats TempoSyncKnobHalbe Note Half note TempoSyncKnob*Keine SynchronisationNo Sync TempoSyncKnobViertelnote Quarter note TempoSyncKnob:Mit 16tel Note synchronisiertSynced to 16th Note TempoSyncKnob:Mit 32tel Note synchronisiertSynced to 32nd Note TempoSyncKnob:Mit Achtelnote synchronisiertSynced to 8th Note TempoSyncKnob@Mit acht Schlgen synchronisiertSynced to Eight Beats TempoSyncKnob<Mit halber Note synchronisiertSynced to Half Note TempoSyncKnob<Mit Viertelnote synchronisiertSynced to Quarter Note TempoSyncKnob<Mit ganzer Note synchronisiertSynced to Whole Note TempoSyncKnob*Tempo-Synchronisation Tempo Sync TempoSyncKnobGanze Note Whole note TempoSyncKnobFMische Ausgang von Oszillator 1 & 2Mix output of oscillator 1 & 2TripleOscillatorViewFMische Ausgang von Oszillator 2 & 3Mix output of oscillator 2 & 3TripleOscillatorView>Oszillator %1 Grob-Verstimmung:Osc %1 coarse detuning:TripleOscillatorViewJOszillator %1 Fein-Verstimmung links:Osc %1 fine detuning left:TripleOscillatorViewLOszillator %1 Fein-Verstimmung rechts:Osc %1 fine detuning right:TripleOscillatorView,Oszillator %1 Balance:Osc %1 panning:TripleOscillatorViewDOszillator %1 Phasen-Verschiebung:Osc %1 phase-offset:TripleOscillatorViewROszillator %1 Stereo Phasen-Verschiebung:Osc %1 stereo phase-detuning:TripleOscillatorView2Oszillator %1 Lautstrke:Osc %1 volume:TripleOscillatorViewXSynchronisiere Oszillator 1 mit Oszillator 2*Synchronize oscillator 1 with oscillator 2TripleOscillatorViewXSynchronisiere Oszillator 2 mit Oszillator 3*Synchronize oscillator 2 with oscillator 3TripleOscillatorViewxMoog-hnliche Sgezahnwelle fr aktuellen Oszillator nutzen.0Use a moog-like saw-wave for current oscillator.TripleOscillatorView\Sgezahnwelle fr aktuellen Oszillator nutzen.&Use a saw-wave for current oscillator.TripleOscillatorViewVSinuswelle fr aktuellen Oszillator nutzen.'Use a sine-wave for current oscillator.TripleOscillatorView^Rechteckswelle fr aktuellen Oszillator nutzen.)Use a square-wave for current oscillator.TripleOscillatorView\Dreieckswelle fr aktuellen Oszillator nutzen.+Use a triangle-wave for current oscillator.TripleOscillatorView|Benutzerdefinierte Wellenform fr aktuellen Oszillator nutzen.3Use a user-defined waveform for current oscillator.TripleOscillatorViewAmplitudenmodulation benutzen, um Oszillator 2 mit Oszillator 1 zu modulierenFUse amplitude modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewAmplitudenmodulation benutzen, um Oszillator 3 mit Oszillator 2 zu modulierenFUse amplitude modulation for modulating oscillator 3 with oscillator 2TripleOscillatorViewbExponentialwelle fr aktuellen Oszillator nutzen./Use an exponential wave for current oscillator.TripleOscillatorViewFrequenzmodulation benutzen, um Oszillator 2 mit Oszillator 1 zu modulierenFUse frequency modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewFrequenzmodulation benutzen, um Oszillator 3 mit Oszillator 2 zu modulierenFUse frequency modulation for modulating oscillator 3 with oscillator 2TripleOscillatorViewPhasenmodulation benutzen, um Oszillator 2 mit Oszillator 1 zu modulierenBUse phase modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewPhasenmodulation benutzen, um Oszillator 3 mit Oszillator 2 zu modulierenBUse phase modulation for modulating oscillator 3 with oscillator 2TripleOscillatorView`Weies Rauschen fr aktuellen Oszillator nutzen.'Use white-noise for current oscillator.TripleOscillatorViewMit diesem Knopf knnen Sie die grobe Verstimmung von Oszillator %1 setzen. Sie knnen den Oszillator 12 Halbtne (1 Oktave) nach oben und unten verstimmen. Das ist ntzlich, wenn Sie einen Sound mit einem Akkord erstellen mchten.With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord.TripleOscillatorViewMit diesem Knopf knnen Sie die Fein-Verstimmung von Oszillator %1 fr den linken Kanal einstellen. Die Fein-Verstimmung liegt zwischen -100 Cent und +100 Cent. Das ist ntzlich, um "fette" Sounds zu erzeugen.With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorViewMit diesem Knopf knnen Sie die Fein-Verstimmung von Oszillator %1 fr den rechten Kanal einstellen. Die Fein-Verstimmung liegt zwischen -100 Cent und +100 Cent. Das ist ntzlich, um "fette" Sounds zu erzeugen.With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorViewPMit diesem Knopf knnen Sie die Balance von Oszillator %1 setzen. Ein Wert von -100 heit 100% links und ein Wert von 100 verschiebt den Oszillator-Ausgang nach rechts.With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right.TripleOscillatorViewMit diesem Knopf knnen Sie die Phasen-Verschiebung von Oszillator %1 setzen. Das heit, Sie knnen den Punkt innerhalb einer Schwingung verschieben, an dem der Oszillator anfangen soll zu schwingen. Wenn Sie zum Beispiel eine Sinus-Welle haben und eine Phasen-Verschiebung von 180 Grad einstellen, wird die Welle zu erst runter gehen. Das gleiche trifft auch bei einer Rechteck-Welle zu.)With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave.TripleOscillatorView8Mit diesem Knopf knnen Sie die Stereo Phasen-Verschiebung von Oszillator %1 setzen. Die Stereo Phasen-Verschiebung gibt die Differenz zwischen den Phasen-Verschiebungen zwischen dem linken und rechten Kanal an. Dies eignet sich gut, um grorumig-klingende Stereo-Klnge zu erzeugen.With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds.TripleOscillatorViewMit diesem Knopf knnen Sie die Lautstrke von Oszillator %1 setzen. Wenn Sie einen Wert von 0 setzen, wird der Oszillator ausgeschaltet. Ansonsten knnen Sie ihn so laut hren, wie Sie es hier einstellen.With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here.TripleOscillatorViewCentcentsTripleOscillatorViewGraddegreesTripleOscillatorViewHalbtne semitonesTripleOscillatorView|Klicken Sie hier, um aktuell geladene VST-Presets auszuwhlen.>Click here to select presets that are currently loaded in VST.VestigeInstrumentViewKlicken Sie hier, um die grafische Oberflche (GUI) Ihres VST-Plugins anzuzeigen bzw. zu verstecken.QClick here to show or hide the graphical user interface (GUI) of your VST-plugin.VestigeInstrumentView~Klicken Sie hier, um das VST-Plugin von LMMS aus fernzusteuern.8Click here, if you want to control VST-plugin from host.VestigeInstrumentViewKlicken Sie hier, um eine andere *.fxp, *.fxb-Preset-Datei fr das VST-Plugin zu laden.GClick here, if you want to open another *.fxp, *.fxb VST-plugin preset.VestigeInstrumentViewPKlicken Sie hier, um ein anderes VST-Plugin zu ffnen. Nachdem Sie auf diesen Button geklickt haben, erscheint ein Datei-ffnen-Dialog und Sie knnen Ihre Datei whlen.Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file.VestigeInstrumentViewKlicken Sie hier, um das aktuelle VST-Plugin-Presetprogramm zu speichern.BClick here, if you want to save current VST-plugin preset program.VestigeInstrumentViewKlicken Sie hier, um zu einem anderen VST-Plugin-Presetprogramm zu wechseln.GClick here, if you want to switch to another VST-plugin preset program.VestigeInstrumentView>VST-Plugin von LMMS fernsteuern!Control VST-plugin from LMMS hostVestigeInstrumentView&DLL-Dateien (*.dll)DLL-files (*.dll)VestigeInstrumentView&EXE-Dateien (*.exe)EXE-files (*.exe)VestigeInstrumentViewNchstes (+)Next (+)VestigeInstrumentView.Kein VST-Plugin geladenNo VST-plugin loadedVestigeInstrumentView"VST-Plugin ffnenOpen VST-pluginVestigeInstrumentView0VST-Plugin-Preset ffnenOpen VST-plugin presetVestigeInstrumentView0Anderes VST-Plugin ladenOpen other VST-pluginVestigeInstrumentView PresetPresetVestigeInstrumentViewVorheriges (-) Previous (-)VestigeInstrumentView Preset speichern Save presetVestigeInstrumentView*GUI zeigen/verstecken Show/hide GUIVestigeInstrumentView,Alle Noten ausschaltenTurn off all notesVestigeInstrumentViewvonbyVestigeInstrumentView|Klicken Sie hier, um aktuell geladene VST-Presets auszuwhlen.>Click here to select presets that are currently loaded in VST.VstEffectControlDialog~Klicken Sie hier, um das VST-Plugin von LMMS aus fernzusteuern.8Click here, if you want to control VST-plugin from host.VstEffectControlDialogKlicken Sie hier, um eine andere *.fxp, *.fxb-Preset-Datei fr das VST-Plugin zu laden.GClick here, if you want to open another *.fxp, *.fxb VST-plugin preset.VstEffectControlDialogKlicken Sie hier, um das aktuelle VST-Plugin-Presetprogramm zu speichern.BClick here, if you want to save current VST-plugin preset program.VstEffectControlDialogKlicken Sie hier, um zu einem anderen VST-Plugin-Presetprogramm zu wechseln.GClick here, if you want to switch to another VST-plugin preset program.VstEffectControlDialog>VST-Plugin von LMMS fernsteuern!Control VST-plugin from LMMS hostVstEffectControlDialogNchstes (+)Next (+)VstEffectControlDialog0VST-Plugin-Preset ffnenOpen VST-plugin presetVstEffectControlDialogVorheriges (-) Previous (-)VstEffectControlDialog Preset speichern Save presetVstEffectControlDialogBVST-Effekt-GUI anzeigen/verbergenShow/hide VST FX GUIVstEffectControlDialog.FXB.FXB VstPlugin.FXP.FXP VstPlugin.fxb.fxb VstPlugin.fxp.fxp VstPluginHLaden des VST-Plugins fehlgeschlagenFailed loading VST-plugin VstPluginLade PluginLoading plugin VstPluginPreset ffnen Open Preset VstPluginhBitte warten, whrend das VST-Plugin geladen wird...'Please wait while loading VST-plugin... VstPlugin Preset speichern Save Preset VstPluginZDas VST-Plugin %1 konnte aus irgendeinem Grund nicht geladen werden. Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitte einen LMMS-Entwickler!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! VstPlugin>VST-Plugin-Preset (*.fxp *.fxb)Vst Plugin Preset (*.fxp *.fxb) VstPluginBandbreite BandwidthZynAddSubFxInstrumentFilterfrequenzFilter FrequencyZynAddSubFxInstrumentFilterresonanzFilter ResonanceZynAddSubFxInstrumentVMIDI-Control-Change-Ereignisse weiterleiten"Forward MIDI Control Change EventsZynAddSubFxInstrumentPortamento PortamentoZynAddSubFxInstrument$ResonanzbandbreiteResonance BandwidthZynAddSubFxInstrument2Zentrale ResonanzfrequenzResonance Center FrequencyZynAddSubFxInstrumentBWBWZynAddSubFxViewBandbreite: Bandwidth:ZynAddSubFxViewKlicken Sie hier, um die grafische Oberflche von ZynAddSubFX anzuzeigen bzw. auszublenden.MClick here to show or hide the graphical user interface (GUI) of ZynAddSubFX.ZynAddSubFxViewFREQFREQZynAddSubFxViewFilterfrequenz:Filter Frequency:ZynAddSubFxViewFilterresonanz:Filter Resonance:ZynAddSubFxViewHMIDI-Control-nderungen weiterleitenForward MIDI Control ChangesZynAddSubFxViewPORTPORTZynAddSubFxViewPortamento: Portamento:ZynAddSubFxViewRESRESZynAddSubFxView&Resonanzbandbreite:Resonance bandwidth:ZynAddSubFxView4Zentrale Resonanzfrequenz:Resonance center frequency:ZynAddSubFxViewGUI anzeigenShow GUIZynAddSubFxViewVerstrkungAmplifyaudioFileProcessorSample-Ende End of sampleaudioFileProcessorWiederholenLoopaudioFileProcessorSample umkehrenReverse sampleaudioFileProcessorSample-AnfangStart of sampleaudioFileProcessorFREQFREQbassBoosterControlDialogFrequenz: Frequency:bassBoosterControlDialogGAINGAINbassBoosterControlDialog Gain:Gain:bassBoosterControlDialogRATERATIObassBoosterControlDialog Rate:Ratio:bassBoosterControlDialogFrequenz FrequencybassBoosterControlsGainGainbassBoosterControlsRateRatiobassBoosterControls4Automation-Spur hinzufgenAdd automation-trackbbEditor0Beat/Bassline hinzufgenAdd beat/basslinebbEditor(Beat+Bassline EditorBeat+Bassline EditorbbEditorKlicken Sie hier, um den aktuelle Beat/Bassline abzuspielen. Der Beat/Bassline wird am Ende automatisch wiederholt.qClick here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached.bbEditorKlicken Sie hier, um das Abspielen des aktuellen Beats/Bassline zu stoppen (Leertaste).4Click here to stop playing of current beat/bassline.bbEditornAktuellen Beat/Bassline abspielen/pausieren (Leertaste)(Play/pause current beat/bassline (Space)bbEditortAbspielen des aktuellen Beats/Bassline stoppen (Leertaste).Stop playback of current beat/bassline (Space)bbEditorFarbe ndern Change color bbTCOViewName ndern Change name bbTCOView<Im Beat+Bassline-Editor ffnenOpen in Beat+Bassline-Editor bbTCOView"Name zurcksetzen Reset name bbTCOView Beat/Bassline %1Beat/Bassline %1bbTrackKlon von %1 Clone of %1bbTrackSample-Lnge Samplelength bitInvader4Klick fr eine Sinuswelle.Click for a sine-wave.bitInvaderView:Klick fr eine Sgezahnwelle.Click here for a saw-wave.bitInvaderView<Klick fr eine Rechteckswelle.Click here for a square-wave.bitInvaderView:Klick fr eine Dreieckswelle.Click here for a triangle-wave.bitInvaderViewZKlick fr eine benutzerdefinierte Wellenform.$Click here for a user-defined shape.bitInvaderView4Klick fr weies Rauschen.Click here for white-noise.bitInvaderView^Klicken Sie hier, um die Wellenform zu gltten.Click here to smooth waveform.bitInvaderViewZeichnen Sie eigene Wellenformen, indem Sie die Maus ber den Graph ziehen.ADraw your own waveform here by dragging your mouse on this graph.bitInvaderViewInterpolation InterpolationbitInvaderViewNormalisieren NormalizebitInvaderViewSample-Lnge Sample LengthbitInvaderViewSgezahn-WelleSaw wavebitInvaderViewSinus-Welle Sine wavebitInvaderViewGlttenSmoothbitInvaderViewRechtecks-Welle Square wavebitInvaderViewDreiecks-Welle Triangle wavebitInvaderView0Benutzerdefinierte WelleUser defined wavebitInvaderViewWeies RauschenWhite noise wavebitInvaderView2Konnte Datei nicht ffnenCould not open fileexportProjectDialogDie Datei %1 konnte nicht zum Schreiben geffnet werden. Bitte stellen Sie sicher, dass Sie Schreibrechte auf diese Datei und das Verzeichnis, das diese Datei enthlt, besitzen und versuchen es erneut!Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again!exportProjectDialog FehlerErrorexportProjectDialogFehler beim Bestimmen des Datei-Enkoder-Gerts. Bitte whlen Sie ein anderes Ausgabeformat.\Error while determining file-encoder device. Please try to choose a different output format.exportProjectDialog6Projekt nach %1 exportierenExport project to %1exportProjectDialogRendere: %1%Rendering: %1%exportProjectDialogBrowserBrowser fileBrowser:--- Mitgelieferte Dateien ------ Factory files ---fileBrowserTreeWidgetLade SampleLoading samplefileBrowserTreeWidgetXIn neuer Instrumentspur im B+B-Editor ffnen'Open in new instrument-track/B+B EditorfileBrowserTreeWidgetZIn neuer Instrumentspur im Song-Editor ffnen(Open in new instrument-track/Song-EditorfileBrowserTreeWidgetRBitte warten, lade Sample fr Vorschau...*Please wait, loading sample for preview...fileBrowserTreeWidget>An aktive Instrumentspur sendenSend to active instrument-trackfileBrowserTreeWidget GraphGraph graphModelAbfallzeitDecaykickerInstrumentVerzerrung DistortionkickerInstrumentEndfrequenz End frequencykickerInstrumentGainGainkickerInstrumentStartfrequenzStart frequencykickerInstrument&Abfallzeit (decay):Decay:kickerInstrumentViewVerzerrung: Distortion:kickerInstrumentViewEndfrequenz:End frequency:kickerInstrumentView Gain:Gain:kickerInstrumentViewStartfrequenz:Start frequency:kickerInstrumentView &Hilfe&HelpknobpBitte geben Sie einen neuen Wert zwischen %1 und %2 ein:+Please enter a new value between %1 and %2:knob|Bitte geben Sie einen Wert zwischen -96.0 dBV und 6.0 dBV ein:7Please enter a new value between -96.0 dBV and 6.0 dBV:knob AnalysewerkzeugeAnalysis ToolsladspaBrowserView$Verfgbare EffekteAvailable EffectsladspaBrowserViewWei nicht Don't knowladspaBrowserViewInstrumente InstrumentsladspaBrowserViewTyp:Type:ladspaBrowserView0Nicht verfgbare EffekteUnavailable EffectsladspaBrowserViewBeschreibung DescriptionladspaDescriptionPluginsPluginsladspaDescription AudioAudioladspaPortDialogSteuerungControlladspaPortDialogRichtung DirectionladspaPortDialogKommazahlFloatladspaPortDialogEingangInputladspaPortDialogGanzahlIntegerladspaPortDialogLogarithmisch LogarithmicladspaPortDialog(Min < Standard < MaxMin < Default < MaxladspaPortDialogNameNameladspaPortDialogAusgangOutputladspaPortDialog PortsPortsladspaPortDialogRateRateladspaPortDialogSR-abhngig SR DependentladspaPortDialogUmgeschaltetToggledladspaPortDialogTypTypeladspaPortDialogJaYesladspaPortDialog24db/Okt Filter24dB/oct Filter lb302SynthBetonungAccent lb302SynthVerzerrung Distortion lb302Synth SlideSlide lb302Synth Slide-Abfallzeit Slide Decay lb302Synth VCF-KennfrequenzVCF Cutoff Frequency lb302Synth0VCF-HllkurvenabfallzeitVCF Envelope Decay lb302Synth0VCF-HllkurvenintensittVCF Envelope Mod lb302SynthVCF-Resonanz VCF Resonance lb302SynthWellenformWaveform lb302SynthFREQCUTlb302SynthView4Klick fr eine Sinuswelle.Click for a sine-wave.lb302SynthViewFKlick fr eine Moog-hnliche Welle. Click here for a moog-like wave.lb302SynthView:Klick fr eine Sgezahnwelle.Click here for a saw-wave.lb302SynthViewVKlick fr eine abgerundete Rechtecks-Welle.0Click here for a square-wave with a rounded end.lb302SynthView<Klick fr eine Rechteckswelle.Click here for a square-wave.lb302SynthView:Klick fr eine Dreieckswelle.Click here for a triangle-wave.lb302SynthViewBKlick fr eine Exponential-Welle.#Click here for an exponential wave.lb302SynthView4Klick fr weies Rauschen.Click here for white-noise.lb302SynthViewKennfrequenz: Cutoff Freq:lb302SynthViewDECDEClb302SynthViewDISTDISTlb302SynthView DIST:DIST:lb302SynthView&Abfallzeit (decay):Decay:lb302SynthViewENV-MODENV MODlb302SynthView,Hllkurven-Modulation:Env Mod:lb302SynthViewMoog-Welle Moog wavelb302SynthViewRESRESlb302SynthViewResonanz: Resonance:lb302SynthView6Abgerundete Rechtecks-WelleRounded square wavelb302SynthView SLIDESLIDElb302SynthViewSgezahn-WelleSaw wavelb302SynthViewSinus-Welle Sine wavelb302SynthView"Slide-Abfallzeit: Slide Decay:lb302SynthViewRechtecks-Welle Square wavelb302SynthViewDreiecks-Welle Triangle wavelb302SynthViewWeies RauschenWhite noise wavelb302SynthView24db/Okt Filter24dB/oct Filter lb303SynthBetonungAccent lb303SynthVerzerrung Distortion lb303Synth SlideSlide lb303Synth Slide-Abfallzeit Slide Decay lb303Synth VCF-KennfrequenzVCF Cutoff Frequency lb303Synth0VCF-HllkurvenabfallzeitVCF Envelope Decay lb303Synth0VCF-HllkurvenintensittVCF Envelope Mod lb303SynthVCF-Resonanz VCF Resonance lb303SynthWellenformWaveform lb303SynthFREQCUTlb303SynthViewKennfrequenz: Cutoff Freq:lb303SynthViewDECDEClb303SynthViewDISTDISTlb303SynthView DIST:DIST:lb303SynthView&Abfallzeit (decay):Decay:lb303SynthViewENV-MODENV MODlb303SynthView,Hllkurven-Modulation:Env Mod:lb303SynthViewRESRESlb303SynthViewResonanz: Resonance:lb303SynthView SLIDESLIDElb303SynthView"Slide-Abfallzeit: Slide Decay:lb303SynthView WELLEWAVElb303SynthViewWellenform:WAVE:lb303SynthViewADSRADSRmalletsInstrument AgogoAgogomalletsInstrument BeatsBeatsmalletsInstrumentGestrichenBowedmalletsInstrument ClumpClumpmalletsInstrumentCrossfade CrossfademalletsInstrumentGlasGlassmalletsInstrument HrteHardnessmalletsInstrumentLFO-Tiefe LFO DepthmalletsInstrument&LFO-Geschwindigkeit LFO SpeedmalletsInstrumentMarimbaMarimbamalletsInstrument Fehlende Dateien Missing filesmalletsInstrumentModulator ModulatormalletsInstrumentBewegungMotionmalletsInstrumentPositionPositionmalletsInstrument DruckPressuremalletsInstrumentResoResomalletsInstrumentGeschwindigkeitSpeedmalletsInstrument WeiteSpreadmalletsInstrumentStick Mix Stick MixmalletsInstrument*Tibetanische Schssel Tibetan BowlmalletsInstrument Glocken in Rhre Tubular BellsmalletsInstrumentTuned Bar Tuned BarmalletsInstrumentTwo Fixed Two FixedmalletsInstrumentUniform Bar Uniform BarmalletsInstrumentVibraphon VibraphonemalletsInstrumentVibrato-Freq Vibrato FreqmalletsInstrumentVibrato Gain Vibrato GainmalletsInstrument Holz 1Wood1malletsInstrument Holz 2Wood2malletsInstrumentIhre Stk-Installation scheint unvollstndig zu sein. Bitte stellen Sie sicher, dass das volle Stk-Paket installiert ist!aYour Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed!malletsInstrumentADSRADSRmalletsInstrumentView ADSR:ADSR:malletsInstrumentViewGestrichenBowedmalletsInstrumentViewCrossfade CrossfademalletsInstrumentViewCrossfade: Crossfade:malletsInstrumentView HrteHardnessmalletsInstrumentView Hrte: Hardness:malletsInstrumentViewInstrument InstrumentmalletsInstrumentViewLFO-Tiefe LFO DepthmalletsInstrumentViewLFO-Tiefe: LFO Depth:malletsInstrumentView&LFO-Geschwindigkeit LFO SpeedmalletsInstrumentView(LFO-Geschwindigkeit: LFO Speed:malletsInstrumentViewModulator ModulatormalletsInstrumentViewModulator: Modulator:malletsInstrumentViewBewegungMotionmalletsInstrumentViewBewegung:Motion:malletsInstrumentViewPositionPositionmalletsInstrumentViewPosition: Position:malletsInstrumentView DruckPressuremalletsInstrumentView Druck: Pressure:malletsInstrumentViewGeschwindigkeitSpeedmalletsInstrumentView Geschwindigkeit:Speed:malletsInstrumentView WeiteSpreadmalletsInstrumentView Weite:Spread:malletsInstrumentViewStick Mix Stick MixmalletsInstrumentViewStick Mix: Stick Mix:malletsInstrumentViewVib-FreqVib FreqmalletsInstrumentViewVib-Freq: Vib Freq:malletsInstrumentViewVib GainVib GainmalletsInstrumentViewVib Gain: Vib Gain:malletsInstrumentViewVibratoVibratomalletsInstrumentViewVibrato:Vibrato:malletsInstrumentViewKlicken Sie hier, um alle Parameter mit dem VST-Plugin zu synchronisieren.EClick here if you want to synchronize all parameters with VST plugin.manageVSTEffectViewVST-SyncVST SyncmanageVSTEffectViewKlicken Sie hier, um alle Parameter mit dem VST-Plugin zu synchronisieren.EClick here if you want to synchronize all parameters with VST plugin.manageVestigeInstrumentViewVST-SyncVST SyncmanageVestigeInstrumentView &Hilfe&HelpnineButtonSelectorVerzerrung DistortionorganicInstrumentLautstrkeVolumeorganicInstrumentVerzerrung: Distortion:organicInstrumentViewJOszillator %1 Fein-Verstimmung links:Osc %1 fine detuning left:organicInstrumentView,Oszillator %1 Balance:Osc %1 panning:organicInstrumentView2Oszillator %1 Lautstrke:Osc %1 volume:organicInstrumentView2Oszillator %1 Wellenform:Osc %1 waveform:organicInstrumentViewZufallswerte RandomiseorganicInstrumentViewLautstrke:Volume:organicInstrumentViewCentcentsorganicInstrumentView:Kann Pattern nicht einfrierenCannot freeze patternpatternDer Pattern kann derzeit nicht eingefroren werden, da Sie sich im Abspiel-Modus befinden. Bitte stoppen Sie und versuchen es erneut!_The pattern currently cannot be freezed because you're in play-mode. Please stop and try again!patternAbbrechenCancelpatternFreezeStatusDialog*Friere Pattern ein...Freezing pattern...patternFreezeStatusDialog%1 Steps%1 steps patternView 1 Step1 step patternView Steps hinzufgen Add steps patternViewName ndern Change name patternView$Alle Noten lschenClear all notes patternViewEinfrierenFreeze patternView(Im Piano-Roll ffnenOpen in piano-roll patternView"Erneut einfrierenRefreeze patternViewSteps entfernen Remove steps patternView"Name zurcksetzen Reset name patternViewAusfrierenUnfreeze patternViewDoppelklick, um diesen Pattern im Piano-Roll zu ffnen Lautstrke eines Steps kann mit Mausrad gendert werdenWdouble-click to open this pattern in piano-roll use mouse wheel to set volume of a step patternViewKlicken Sie hier, um die Noten aus der Zwischenablage im ersten sichtbaren Takt einzufgen.XClick here and the notes from the clipboard will be pasted at the first visible measure. pianoRollvKlicken Sie hier, um die markierten Noten in die Zwischenablage zu kopieren. Sie knnen sie berall in einem beliebigen Pattern wieder einfgen, indem Sie auf den Einfgen-Button klicken.Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRoll|Klicken Sie hier, um die markierten Noten in die Zwischenablage auszuschneiden. Sie knnen sie berall in einem beliebigen Pattern wieder einfgen, indem Sie auf den Einfgen-Button klicken.Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRoll>Klicken Sie hier, um den aktuellen Pattern abzuspielen. Das ist ntzlich beim Bearbeiten. Der Pattern wird automatisch wiederholt, wenn sein Ende erreicht ist.Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. pianoRoll>Klicken Sie hier, um Noten von einem MIDI-Gert oder dem virtuellen Test-Klavier des zugehrigen Kanal-Fensters in den aktuellen Pattern aufzunehmen. Beim Aufnehmen werden alle Noten, die Sie spielen, in diesen Pattern geschrieben und hinterher knnen Sie diese abspielen und bearbeiten.Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. pianoRollKlicken Sie hier, um die Wiedergabe des aktuellen Patterns zu stoppen./Click here to stop playback of current pattern. pianoRollFAusgewhlte Noten kopieren (Strg+C)Copy selected notes (Ctrl+C) pianoRollNAusgewhlte Noten ausschneiden (Strg+X)Cut selected notes (Ctrl+X) pianoRoll6Verstimmungsmodus (Shift+T)Detune mode (Shift+T) pianoRoll6Zeichnen-Modus (Umschalt+D)Draw mode (Shift+D) pianoRoll2Radier-Modus (Umschalt+E)Erase mode (Shift+E) pianoRollLetzte Note Last note pianoRoll4Aktuellen Akkord markierenMark current chord pianoRoll6Aktuelle Tonleite markierenMark current scale pianoRollNAktuellen Halbton markieren/demarkierenMark/unmark current semitone pianoRollKein AkkordNo chord pianoRollKeine TonleiterNo scale pianoRoll Noten-lautstrke Note Volume pianoRollTNoten aus Zwischenablage einfgen (Strg+V)#Paste notes from clipboard (Ctrl+V) pianoRollPiano-Roll - %1Piano-Roll - %1 pianoRoll2Piano-Roll - Kein PatternPiano-Roll - no pattern pianoRollbAktuellen Pattern abspielen/pausieren (Leertaste)"Play/pause current pattern (Space) pianoRollxBitte ffnen Sie einen Pattern, indem Sie ihn doppelklicken!/Please open a pattern by double-clicking on it! pianoRollXNoten von MIDI-Gert/Kanal-Klavier aufnehmen+Record notes from MIDI-device/channel-piano pianoRollNoten vom MIDI-Gert/Kanal-Klavier aufnehmen whrend der Song oder BB-Track abgespielt wirdJRecord notes from MIDI-device/channel-piano while playing song or BB track pianoRoll4Auswahl-Modus (Umschalt+S)Select mode (Shift+S) pianoRollhAbspielen des aktuellen Patterns stoppen (Leertaste)'Stop playing of current pattern (Space) pianoRoll8Alles Markierungen entfernen Unmark all pianoRoll\Additiver Synthesizer fr orgelhnliche Klnge*Additive Synthesizer for organ-like sounds pluginBrowser>Flexibler Wavetable-Synthesizer"Customizable wavetable synthesizer pluginBrowserZiehen Sie ein Instrument entweder in den Song-Editor, den Beat+Bassline-Editor oder in eine existierende Instrumentspur.nDrag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. pluginBrowser@Eingebettetes ZynAddSubFX-PluginEmbedded ZynAddSubFX pluginBrowser<Emulation des GameBoy (TM) APUEmulation of GameBoy (TM) APU pluginBrowserEmulation des MOS6581 und MOS8580 SID Chips. Dieser Chip wurde in Commodore 64 Computern genutzt.ZEmulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. pluginBrowserbFilter fr Import von FL Studio Projekten in LMMS1Filter for importing FL Studio projects into LMMS pluginBrowser\Filter, um MIDI-Dateien in LMMS zu importieren)Filter for importing MIDI-files into LMMS pluginBrowser@GUS-kompatibles Patch-InstrumentGUS-compatible patch instrument pluginBrowserRUnvollstndiger monophonischer TB303-Klon%Incomplete monophonic imitation tb303 pluginBrowser$Instrument-BrowserInstrument browser pluginBrowser$Instrument-PluginsInstrument plugins pluginBrowserJInstallierte LADSPA-Plugins auflistenList installed LADSPA plugins pluginBrowser@Wiedergabe von SoundFont-DateienPlayer for SoundFont files pluginBrowservPlugin zur Kontrolle von Knpfen mit Hilfe von Klangspitzen-Plugin for controlling knobs with sound peaks pluginBrowser`Plugin zur Erweiterung des Stereo-Klangeindrucks=Plugin for enhancing stereo separation of a stereo input file pluginBrowser`Plugin zur freien Manipulation der Stereoausgabe,Plugin for freely manipulating stereo output pluginBrowserzGegenstnde, die nach etwas klingen, wenn man drauf rumklopptTuneful things to bang on pluginBrowservVST-Host zum Benutzen von VST(i)-Plugins innerhalb von LMMS-VST-host for using VST(i)-plugins within LMMS pluginBrowser@Modellierung schwingender SaitenVibrating string modeler pluginBrowser$keine Beschreibungno description pluginBrowser6Plugin zur Bass-Verstrkungplugin for boosting bass pluginBrowserzPlugin, um beliebige LADSPA-Effekte in LMMS nutzen zu knnen.6plugin for using arbitrary LADSPA-effects inside LMMS. pluginBrowserrPlugin um beliebige VST-Effekte in LMMS nutzen zu knnen.3plugin for using arbitrary VST-effects inside LMMS. pluginBrowserEinfacher Sampler mit verschiedenen Einstellungen zur Nutzung von Samples (z.B. Drums) in einer Instrument-SpurZsimple sampler with various settings for using samples (e.g. drums) in an instrument-track pluginBrowserDrei leistungsfhige Oszillatoren, die Sie auf verschiedene Art und Weise modulieren knnen;three powerful oscillators you can modulate in several ways pluginBrowserRVielfltiger Kick- & Bassdrum-Synthesizer&versatile kick- & bassdrum-synthesizer pluginBrowser &Fett&Bold projectNotes&Farbe... &Color... projectNotes&Kopieren&Copy projectNotes&Kursiv&Italic projectNotes&Blocksatz&Justify projectNotes &Links&Left projectNotes&Einfgen&Paste projectNotesWiede&rholen&Redo projectNotes&Rechts&Right projectNotes&Unterstrichen &Underline projectNotes&Rckgngig&Undo projectNotesZ&entriertC&enter projectNotes Strg+FCtrl+B projectNotes Strg+CCtrl+C projectNotes Strg+ZCtrl+E projectNotes Strg+KCtrl+I projectNotes Strg+JCtrl+J projectNotes Strg+LCtrl+L projectNotes Strg+RCtrl+R projectNotes Strg+UCtrl+U projectNotes Strg+VCtrl+V projectNotes Strg+XCtrl+X projectNotes Strg+YCtrl+Y projectNotes Strg+ZCtrl+Z projectNotesA&usschneidenCu&t projectNotesBearbeiten Edit Actions projectNotesFormatierungFormat Actions projectNotesProjekt-Notizen Project notes projectNotesXSchreiben Sie hier Ihre Projekt-Notizen auf.!Put down your project notes here. projectNotesUmbenennen... Rename... renameDialog6AIFF-Dateien (*.aif *.aiff)AIFF-Files (*.aif *.aiff) sampleBuffer"AU-Dateien (*.au)AU-Files (*.au) sampleBufferAlle Audio-Dateien (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3)SAll Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) sampleBuffer0DrumSynth-Dateien (*.ds)DrumSynth-Files (*.ds) sampleBuffer*FLAC-Dateien (*.flac)FLAC-Files (*.flac) sampleBuffer&MP3-Dateien (*.mp3)MP3-Files (*.mp3) sampleBuffer&OGG-Dateien (*.ogg)OGG-Files (*.ogg) sampleBuffer$Audio-Datei ffnenOpen audio file sampleBuffer&RAW-Dateien (*.raw)RAW-Files (*.raw) sampleBuffer*SPEEX-Dateien (*.spx)SPEEX-Files (*.spx) sampleBuffer&VOC-Dateien (*.voc)VOC-Files (*.voc) sampleBuffer(Wave-Dateien (*.wav)Wave-Files (*.wav) sampleBufferKopierenCopy sampleTCOViewAusschneidenCut sampleTCOView8Lschen (mittlere Maustaste)Delete (middle mousebutton) sampleTCOViewTStumm/Laut schalten (<Strg> + Mittelklick)#Mute/unmute ( + middle click) sampleTCOViewEinfgenPaste sampleTCOView.Aufnahme setzen/lschenSet/clear record sampleTCOView@Doppelklick, um Sample zu whlendouble-click to select sample sampleTCOViewSample-Spur Sample track sampleTrackLautstrkeVolume sampleTrack"Kanal Lautstrke:Channel volume:sampleTrackView&Lautstrke der Spur Track volumesampleTrackViewVOLVOLsampleTrackView&AUDIO-SCHNITTSTELLEAUDIO INTERFACE setupDialog&Artwork-VerzeichnisArtwork directory setupDialog&Audio-EinstellungenAudio settings setupDialogPUFFERGRSSE BUFFER SIZE setupDialogHintergrundbildBackground artwork setupDialogAbbrechenCancel setupDialogRFL Studio Installationsverzeichnis whlen'Choose FL Studio installation directory setupDialogPWhlen Sie Ihr LADSPA-Plugin-VerzeichnisChoose LADSPA plugin directory setupDialog<LMMS-Arbeitsverzeichnis whlenChoose LMMS working directory setupDialogLWhlen Sie Ihr STK-RawWave-VerzeichnisChoose STK rawwave directory setupDialog4Artwork-Verzeichnis whlenChoose artwork-theme directory setupDialog,Hintergrundbild whlenChoose background artwork setupDialog2Standard-Soundfont whlenChoose default SoundFont setupDialogLWhlen Sie Ihre VST-Plugin-Verzeichnis Choose your VST-plugin directory setupDialog,Kompakte Track-ButtonsCompact track buttons setupDialogRProjektdateien standardmig komprimieren"Compress project files per default setupDialog0Standard SoundFont-DateiDefault Soundfont File setupDialogDKanal-Aktivitts-LEDs deaktivieren#Disable channel activity indicators setupDialog4Lautstrke in dBV anzeigenDisplay volume as dBV  setupDialog&Tooltips aktivierenEnable tooltips setupDialogDFL Studio Installationsverzeichnis FL Studio installation directory setupDialog0Frames: %1 Latenz: %2 msFrames: %1 Latency: %2 ms setupDialog0Allgemeine EinstellungenGeneral settings setupDialog>HQ-Modus fr Ausgabe-AudiogertHQ-mode for output audio-device setupDialogFHier knnen Sie Ihre bevorzugte MIDI-Schnittstelle auswhlen. Abhngig von der Konfiguration Ihres Systems whrend der Compilierung knnen Sie zwischen ALSA, OSS und mehr whlen. Unterhalb sehen Sie eine Box, welche Kontrollelemente anbietet, um die gewhlte MIDI-Schnittstelle einzurichten.Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. setupDialogVHier knnen Sie Ihre bevorzugte Audio-Schnittstelle auswhlen. Abhngig von der Konfiguration Ihres Systems whrend der Compilierung knnen Sie zwischen ALSA, JACK, OSS und mehr whlen. Unterhalb sehen Sie eine Box, welche Kontrollelemente anbietet, um die gewhlte Audio-Schnittstelle einzurichten.Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. setupDialogTHier knnen Sie die interne Puffergre einstellen, die von LMMS genutzt wird. Kleinere Werte machen sich in einer geringeren Latenz bemerkbar, knnen aber auch zu unbrauchbarem Sound oder schlechter Performance fhren, vor allem auf lteren Computern oder Systemen mit einem Nicht-Echtzeit-Kernel.Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. setupDialog$LADSPA-PluginpfadeLADSPA plugin paths setupDialog.LMMS-ArbeitsverzeichnisLMMS working directory setupDialog$MIDI-SCHNITTSTELLEMIDI INTERFACE setupDialog$MIDI-Einstellungen MIDI settings setupDialogVERSCHIEDENESMISC setupDialogOKOK setupDialog@Instrumente im Ein-Fenster-Modus One instrument track window mode setupDialogRTasten in Kanal-Piano nur manuell drcken)Only press keys on channel-piano manually setupDialog PfadePaths setupDialog2Performance-EinstellungenPerformance settings setupDialogBitte beachten Sie, dass die meisten nderungen erst wirksam werden, nachdem Sie LMMS neugestartet haben!GPlease note that most changes won't take effect until you restart LMMS! setupDialog:Auf Standardwert zurcksetzenReset to default-value setupDialogLMMS neustarten Restart LMMS setupDialog.STK RawWave-VerzeichnisSTK rawwave directory setupDialog(Einrichtung von LMMS Setup LMMS setupDialogXMeldung nach Schlieen dieses Dialogs zeigen,Show restart warning after changing settings setupDialog>Weiches Scrollen im Song-EditorSmooth scroll in Song Editor setupDialog4UI-Effekte vs. PerformanceUI effects vs. performance setupDialog,VST-Plugin-VerzeichnisVST-plugin directory setupDialogBankBank sf2Instrument ChorusChorus sf2InstrumentChorus/Tiefe Chorus Depth sf2InstrumentChorus/Strke Chorus Level sf2Instrument,Chorus/Geschwindigkeit Chorus Speed sf2InstrumentGainGain sf2Instrument PatchPatch sf2InstrumentHallReverb sf2InstrumentHall/DmpfungReverb Damping sf2InstrumentHall/Strke Reverb Level sf2InstrumentHall/RaumgreReverb Roomsize sf2InstrumentHall/Weite Reverb Width sf2InstrumentRChorus-Effekt anwenden (wenn untersttzt)Apply chorus (if supported)sf2InstrumentView@Hall anwenden (wenn untersttzt)Apply reverb (if supported)sf2InstrumentViewPatch whlenChoose the patchsf2InstrumentViewChorus/Tiefe: Chorus Depth:sf2InstrumentViewChorus/Strke: Chorus Level:sf2InstrumentView.Chorus/Geschwindigkeit: Chorus Speed:sf2InstrumentViewhKlicken Sie hier, um eine andere SF2-Datei zu ffnen#Click here to open another SF2 filesf2InstrumentViewGainGainsf2InstrumentView,SoundFont-Datei ffnenOpen SoundFont filesf2InstrumentViewDEine andere SoundFont-Datei ffnenOpen other SoundFont filesf2InstrumentViewHall/Dmpfung:Reverb Damping:sf2InstrumentViewReverb/Strke: Reverb Level:sf2InstrumentViewHall/Raumgre:Reverb Roomsize:sf2InstrumentViewHall/Weite: Reverb Width:sf2InstrumentView4SoundFont2-Dateien (*.sf2)SoundFont2 Files (*.sf2)sf2InstrumentViewDieser knopf aktiviert den Chorus-Effekt. Das ist ntzlich fr Echo-Effekte, funktioniert jedoch nur mit Dateien, die dies untersttzen.uThis button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it.sf2InstrumentViewDieser Knopf aktiviert den Hall-Effekt, welcher jedoch nur mit Dateien funktioniert, die dies untersttzen.pThis button enables the reverb effect. This is useful for cool effects, but only works on files that support it.sf2InstrumentViewChipmodell Chip model sidInstrumentKennfrequenzCutoff sidInstrumentFiltertyp Filter type sidInstrumentResonanz Resonance sidInstrument Stimme 3 lautlos Voice 3 off sidInstrumentLautstrkeVolume sidInstrument.Anschwellzeit (attack):Attack:sidInstrumentViewBandpass-FilterBand-Pass filter sidInstrumentView Grob:Coarse:sidInstrumentViewKennfrequenz:Cutoff frequency:sidInstrumentView&Abfallzeit (decay):Decay:sidInstrumentViewGefiltertFilteredsidInstrumentViewHochpass-FilterHigh-Pass filter sidInstrumentViewTiefpass-FilterLow-Pass filter sidInstrumentViewMOS6581 SID  MOS6581 SID sidInstrumentViewMOS8580 SID  MOS8580 SID sidInstrumentViewRauschenNoisesidInstrumentViewPuls-Signal Pulse WavesidInstrumentViewPulsweite: Pulse Width:sidInstrumentView.Ausklingzeit (release):Release:sidInstrumentViewResonanz: Resonance:sidInstrumentViewRingmodulationRing-ModsidInstrumentViewSgezahn-WelleSawToothsidInstrumentView*Dauerpegel (sustain):Sustain:sidInstrumentViewSynchronSyncsidInstrumentViewDreiecks-Welle Triangle WavesidInstrumentView Stimme 3 lautlos Voice3 Off sidInstrumentViewLautstrke:Volume:sidInstrumentViewAlle DateitypenAll file typessongLeeres Projekt Empty projectsong$FL Studio ProjekteFL Studio projectssong"Datei importieren Import filesongMIDI-DateienMIDI sequencessongMaster-Tonhhe Master pitchsong"Master-Lautstrke Master volumesong4Projekt NICHT gespeichert.Project NOT saved.song&Projekt gespeichert Project savedsongDDatei fr Projekt-Export whlen...!Select file for project-export...song TempoTemposongFDas Projekt %1 ist nun gespeichert.The project %1 is now saved.songNDas Projekt %1 wurde nicht gespeichert!The project %1 was not saved!songDIeses Projekt ist leer, weshalb das Exportieren keinen Sinn macht. Bitte erstellen Sie erst ein paar Eintrge im Song-Editor!`This project is empty so exporting makes no sense. Please put some items into Song Editor first!songunbenanntuntitledsong4Automation-Spur hinzufgenAdd automation-track songEditor0Beat/Bassline hinzufgenAdd beat/bassline songEditor,Sample-Spur hinzufgenAdd sample-track songEditornKlicken Sie hier, wenn Sie Ihren ganzen Song abspielen wollen. Das Abspielen wird am Song-Positions-Marker (grn) gestartet. Sie knnen diesen auch whrend des Abspielens verschieben.Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. songEditor Klicken Sie hier, wenn Sie das Abspielen des Songs stoppen wollen. Der Song-Positions-Marker wird automatisch auf den Song-Anfang zurckgesetzt.uClick here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. songEditor2Konnte Datei nicht ffnenCould not open file songEditorKonnte die Datei %1 nicht ffnen. Sie sind wahrscheinlich nicht berechtigt, diese Datei zu lesen. Bitte stellen Sie sicher, dass Sie wenigstens Leserechte auf diese Datei besitzen und versuchen es erneut.Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. songEditor8Konnte Datei nicht schreibenCould not write file songEditorKonnte die Datei %1 nicht schreiben. Sie sind mglicherweise nicht berechtigt, in diese Datei zu schreiben. Bitte stellen Sie sicher, dass Sie Schreibrechte auf diese Datei besitzen und versuchen es erneut.Could not write file %1. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. songEditorZeichen-Modus Draw mode songEditorREditier-Modus (auswhlen und verschieben)Edit mode (select and move) songEditorFehler in Datei Error in file songEditor$High-Quality-ModusHigh quality mode songEditorMaster-Tonhhe Master pitch songEditor"Master-Lautstrke Master volume songEditor4Song abspielen (Leertaste)Play song (Space) songEditor@Samples vom Audiogert aufnehmen Record samples from Audio-device songEditorSamples vom Audiogert whrend der Wiedergabe des Songs oder BB-Tracks aufnehmen?Record samples from Audio-device while playing song or BB track songEditorSong-Editor Song-Editor songEditorNAbspielen des Songs stoppen (Leertaste)Stop song (Space) songEditorTEMPO/BPM TEMPO/BPM songEditor TempoTempo songEditorDie Datei %1 scheint fehlerhaft zu sein und kann daher nicht geladen werden.BThe file %1 seems to contain errors and therefore can't be loaded. songEditorDas Tempo eines Liedes wird in Beats pro Minute (BPM) angegeben. Wenn Sie das Tempo Ihres Songs ndern wollen, ndern Sie diesen Wert. Jeder Takt hat vier Schlge (Beats); das Tempo gibt also an, wie viele Takte / 4 innerhalb einer Minute gespielt werden sollen (bzw. wie viele Takte innerhalb von vier Minuten gespielt werden sollen).-The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). songEditor"Wert: %1 HalbtneValue: %1 semitones songEditorWert: %1% Value: %1% songEditorMaster-Tonhhe master pitch songEditor"Master-Lautstrke master volume songEditor2Geschwindigkeit des Songs tempo of song songEditorLineare Y-Achse Linear Y axisspectrumAnalyzerControlDialog"Lineares SpektrumLinear spectrumspectrumAnalyzerControlDialogKanalmodus Channel modespectrumAnalyzerControlsLineare Y-Axe Linear Y-axisspectrumAnalyzerControls"Lineares SpektrumLinear spectrumspectrumAnalyzerControls WEITEWIDEstereoEnhancerControlDialog Weite:Width:stereoEnhancerControlDialog WeiteWidthstereoEnhancerControls8Links-nach-links Lautstrke:Left to Left Vol:stereoMatrixControlDialog:Links-nach-rechts Lautstrke:Left to Right Vol:stereoMatrixControlDialog:Rechts-nach-links Lautstrke:Right to Left Vol:stereoMatrixControlDialog<Rechts-nach-rechts Lautstrke:Right to Right Vol:stereoMatrixControlDialog Links-nach-links Left to LeftstereoMatrixControls"Links-nach-rechts Left to RightstereoMatrixControls"Rechts-nach-links Right to LeftstereoMatrixControls$Rechts-nach-rechtsRight to RightstereoMatrixControlsBNach Stop zum Anfang zurckkehrenAfter stopping go back to begintimeLinenNach Stop zur Position zurckkehren, an der es los ging?After stopping go back to position at which playing was startedtimeLine<Nach Stop Position beibehaltenAfter stopping keep positiontimeLine\Automatisches Scrollen aktivieren/deaktivierenEnable/disable auto-scrollingtimeLineFLoop-Punkte aktivieren/deaktivierenEnable/disable loop-pointstimeLineTippHinttimeLine|Drcken Sie <Strg> um magnetische Loop-Punkte zu deaktivieren.-Press to disable magnetic loop-points.timeLine StummMutedtrackSoloSolotrackAbbrechenCanceltrackContainerPEs konnte kein Filter gefunden werden, um die Datei %1 zu importieren. Sie sollten diese Datei mit Hilfe anderer Software in ein von LMMS untersttzes Format umwandeln.Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software.trackContainer<Konnte Datei nicht importierenCouldn't import filetrackContainer2Konnte Datei nicht ffnenCouldn't open filetrackContainer<Konnte Datei %1 nicht zum Lesen ffnen. Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeichnis besitzen und probieren es erneut!Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again!trackContainer.Importiere FLP-Datei...Importing FLP-file...trackContainer0Importiere MIDI-Datei...Importing MIDI-file...trackContainerLade Projekt...Loading project...trackContainerBitte warten...Please wait...trackContainer StummMutedtrackContentObject.%1:%2 (%3:%4 bis %5:%6)%1:%2 (%3:%4 to %5:%6)trackContentObjectViewKopierenCopytrackContentObjectViewAktuelle LngeCurrent lengthtrackContentObjectView"Aktuelle PositionCurrent positiontrackContentObjectViewAusschneidenCuttrackContentObjectView8Lschen (mittlere Maustaste)Delete (middle mousebutton)trackContentObjectViewTippHinttrackContentObjectViewTStumm/Laut schalten (<Strg> + Mittelklick)#Mute/unmute ( + middle click)trackContentObjectViewEinfgenPastetrackContentObjectViewl<Strg> drcken und ziehen, um eine Kopie zu erstellen.%Press and drag to make a copy.trackContentObjectViewXDrcken Sie <Strg> fr freie Grennderung.Press for free resizing.trackContentObjectView.Aktionen fr diese SpurActions for this tracktrackOperationsWidget"Diese Spur klonenClone this tracktrackOperationsWidget StummMutetrackOperationsWidget0Diese Spur stummschaltenMute this tracktrackOperationsWidgetDrcken Sie <Strg> whrend des Klicks auf den Verschiebe-Griff, um eine neue Drag'n'Drop-Aktion zu beginnen.KPress while clicking on move-grip to begin a new drag'n'drop-action.trackOperationsWidget(Diese Spur entfernenRemove this tracktrackOperationsWidgetSoloSolotrackOperationsWidgetHLaden des VST-Plugins fehlgeschlagenFailed loading VST-pluginvestigeInstrumentLade PluginLoading pluginvestigeInstrumenthBitte warten, whrend das VST-Plugin geladen wird...'Please wait while loading VST-plugin...vestigeInstrumentZDas VST-Plugin %1 konnte aus irgendeinem Grund nicht geladen werden. Wenn es mit anderer VST-software unter Linux funktioniert, kontaktieren Sie bitte einen LMMS-Entwickler!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer!vestigeInstrumentVerstimmung %1 Detune %1vibedUnschrfe %1 Fuzziness %1 vibedImpuls %1 Impulse %1vibedLnge %1 Length %1vibedOktave %1 Octave %1vibed Zupf-Position %1Pick %1 positionvibed(Abnehmer-Position %1Pickup %1 positionvibedSeite %1 HrteString %1 stiffnessvibed&Seite %1 LautstrkeString %1 volumevibed &Hilfe&Help vibedViewtHier klicken, um die Wellenform zu aktivieren/deaktiveren.&Click here to enable/disable waveform. vibedViewbHier klicken, um die Wellenform zu normalisieren.!Click here to normalize waveform. vibedView^Klicken Sie hier, um die Wellenform zu gltten.Click here to smooth waveform. vibedViewVerstimmung:Detune: vibedView*Wellenform aktivierenEnable waveform vibedViewUnschrfe: Fuzziness: vibedViewImpuls-EditorImpulse Editor vibedView2Impuls oder GrundstellungImpulse or initial state vibedView Lnge:Length: vibedViewNormalisieren Normalize vibedView OkatveOctave vibedViewBalance:Pan: vibedViewZupf-Position:Pick position: vibedView$Abnehmer-Position:Pickup position: vibedViewSgezahn-WelleSaw wave vibedViewSinus-Welle Sine wave vibedViewGlttenSmooth vibedViewRechtecks-Welle Square wave vibedView SaiteString vibedView Hrte der Saite:String stiffness: vibedViewBMit dem 'Imp'-Knopf legen Sie fest, ob die Wellenform in diesem Graph als Impuls zum Anzupfen der Saite oder als Grundstellung fr die Saite genutzt werden soll.The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. vibedViewDer 'P'-Knopf bestimmt die Position, an der die Saite angezupft wird. Je kleiner die Einstellung, desto nher wird am Steg gezupft.The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. vibedViewTDer 'PU'-Knopf bestimmt die Position, an der die Schwingungen an der gewhlten Saite abgenommen werden. Je kleiner die Einstellung, desto nher ist der Abnehmer am Steg.The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. vibedViewRDer 'S'-Knopf setzt die Hrte der gewhlten Saite. Die Hrte der Saite beeinflusst deren Ausklang-Dauer. Je kleiner die Einstellung, desto lnger klingt die Saite aus.The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. vibedViewnDer 'V'-Knopf setzt die Lautstrke der gewhlten Saite.4The 'V' knob sets the volume of the selected string. vibedViewtDer Verstimmungs-Knopf verndert die Tonhhe der gewhlten Saite. Einstellungen kleiner als 0 lassen die Saite flacher klingen, whrend Werte ber 0 zu einem eher scharfen Klang fhren.The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. vibedViewBDer Lnge-Knopf bestimmt die Lnge der gewhlten Saite. Lngere Saiten klingen lnger und klingen heller, wobei sie gleichzeitig auch mehr CPU-Leistung fressen.The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. vibedView Mit dem Oktaven-Whler kann der Oktavenversatz gegenber der Note verndert werden. So meint beispielsweise eine Einstellung von '-2', dass die Saite zwei Oktaven unterhalb des Grundtons ('F') schwingen wird und '6' dementsprechend 6 Oktaven ber dem Grundton.#The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. vibedViewDer Balance-Knopf bestimmt den Ort der gewhlten Saite im Stereo-Raum.PThe Pan knob determines the location of the selected string in the stereo field. vibedViewDer Unschrfe-Knopf fgt dem Klang der Saite etwas 'Fuzz' hinzu, welcher hauptschlich whrend des Anschlages zum Tragen kommt, wenngleich er auch genutzt werden kann, um den Klang etwas metallischer zu gestalten.The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. vibedViewDer Saiten-Whler bestimmt die derzeit bearbeitete Saite. Ein Vibed-Instrument kann aus bis zu neun voneinander unabhngig schwingenden Saiten bestehen. Die LED in der Ecke rechts unterhalb der Wellenform gibt an, ob die gewhlte Saite aktiv ist.The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. vibedViewDer Wellenform-Editor ermglicht die Kontrolle ber die Grundstellung oder den Impuls, der genutzt wird, um die Saite zum Schwingen zu bringen. Die Buttons rechts des Graphes initialisieren die Wellenform mit dem gewnschten Typ. Der '?'-Button lsst Sie eine Wellenform aus einer Datei laden - allerdings werden nur die ersten 128 Samples geladen. Die Wellenform kann ebenfalls in dem Graph gezeichnet werden. Der 'S'-Button glttet die Wellenform. Der 'N'-Button normalisiert die Wellenform.The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. vibedViewDreiecks-Welle Triangle wave vibedView\Sgezahnwelle fr aktuellen Oszillator nutzen.&Use a saw-wave for current oscillator. vibedViewVSinuswelle fr aktuellen Oszillator nutzen.'Use a sine-wave for current oscillator. vibedView^Rechteckswelle fr aktuellen Oszillator nutzen.)Use a square-wave for current oscillator. vibedView\Dreieckswelle fr aktuellen Oszillator nutzen.+Use a triangle-wave for current oscillator. vibedView|Benutzerdefinierte Wellenform fr aktuellen Oszillator nutzen.3Use a user-defined waveform for current oscillator. vibedView`Weies Rauschen fr aktuellen Oszillator nutzen.'Use white-noise for current oscillator. vibedView0Benutzerdefinierte WelleUser defined wave vibedView&Vibed modelliert bis zu 9 unabhngige schwingende Saiten. Der Saiten-Whler ermglicht die Wahl der gerade aktiven Saite. Der 'Imp'-Knopf bestimmt, ob der Graph einen Impuls oder die Grundstellung der Saite reprsentiert. Der Oktaven-Whler gibt den Oktavenversatz der Saite gegenber dem Grundton an. Der Graph ermglicht die Kontrolle ber die Grundstellung der Saite oder den Impuls, der zum Anzupfen der Saite genutzt wird. Der 'V'-Knopf bestimmt die Lautstrke. Mit dem 'S'-Knopf wird die Hrte der Saite eingestellt. Der 'P'-Knopf beeinflusst den Ort, an dem die Saite angezupft wird, whrend der 'PU'-Knopf die Position des Abnehmers bestimmt. 'Balance' und 'Verstimmung' bedrfen hoffentlich keiner Erklrung. Der Unschrfe-Knopf fgt dem Klang der Saite etwas 'Fuzz' hinzu. Der Lnge-Knopf bestimmt die Lnge der Saite. Die LED rechts unterhalb der Wellenform gibt an, ob die Saite aktiviert ist.hVibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. vibedViewLautstrke:Volume: vibedViewWeies RauschenWhite noise wave vibedView*Klick zur AktivierungClick to enablevisualizationWidget~klicken, um Visualisierung des Masterausgangs an-/auszuschalten6click to enable/disable visualization of master-outputvisualizationWidget.Stimme %1 AnschwellzeitVoice %1 attack voiceObject4Stimme %1 Grob-VerstimmungVoice %1 coarse detuning voiceObject(Stimme %1 AbfallzeitVoice %1 decay voiceObject&Stimme %1 gefiltertVoice %1 filtered voiceObject&Stimme %1 PulsweiteVoice %1 pulse width voiceObject"Stimme %1 ReleaseVoice %1 release voiceObject0Stimme %1 RingmodulationVoice %1 ring modulate voiceObject(Stimme %1 HaltepegelVoice %1 sustain voiceObjectStimme %1 Sync Voice %1 sync voiceObject(Stimme %1 WellenformVoice %1 wave shape voiceObjectlmms-1.0.0+bzr2569/data/locale/de.ts0000644000000000000000000075253412307165142015056 0ustar 00000000000000 AboutDialog About LMMS Über LMMS LMMS (Linux MultiMedia Studio) LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) Version %1 (%2/%3, Qt %4, %5) About Über LMMS - easy music production for everyone LMMS - Musikproduktion für jedermann Authors Autoren Translation Übersetzung Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! Deutsche Übersetzung von Tobias Doerffel. License Lizenz Copyright (c) 2004-2014, LMMS developers Copyright (c) 2004-2012, LMMS-Entwickler {2004-2014,?} <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE GERÄT CHANNELS KANÄLE AudioFileProcessorView Open other sample Anderes Sample öffnen Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Klicken Sie hier, um eine andere Audio-Datei zu öffnen. Danach erscheint ein Dialog, in dem Sie Ihre Datei wählen können. Einstellungen wie Wiederhol-Modus, Start- und Endpunkt sowie Verstärkung werden nicht zurückgesetzt, weshalb die Datei möglicherweise nicht wie das Original klingt. Reverse sample Sample umkehren If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Wenn Sie diesen Button aktivieren, wird das gesamte Sample umgekehrt. Das kann nützlich für coole Effekte sein, wie z.B. eine umgekehrte Crash. Loop sample at start- and end-point Sample an Start- und Endpunkt wiederholen Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Hier können Sie festlegen, ob der Looping-Modus aktiviert sein soll. Wenn aktiviert, wiederholt AudioFileProcessor das Sample zwischen Start- und Endpunkt solange, bis die gesamte Note gespielt ist. Das ist vorallem für String- und Chor-Samples nützlich. Amplify: Verstärkung: With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Mit diesem Knopf können Sie die Verstärkungsrate festlegen. Wenn Sie einen Wert von 100% setzen, wird das Sample nicht geändert. Ansonsten wird es hoch oder runter verstärkt (Ihre Audio-Datei wird dabei nicht verändert!) Startpoint: Startpunkt: With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Mit diesem Knopf können Sie festlegen, wo AudioFileProcessor anfangen soll, Ihr Sample zu spielen. Wenn Sie den Looping-Modus aktivieren, ist das der Punkt, wohin AudioFileProcessor zurückkehrt, wenn eine Note länger als das Sample zwischen Start- und Endpunkt ist. Endpoint: Endpunkt: With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Mit diesem Knopf können Sie festlegen, wo AudioFileProcessor aufhören soll, Ihr Sample zu spielen. Wenn Sie den Looping-Modus aktivieren, ist das der Punkt, an dem AudioFileProcessor zum Startpunkt zurückkehrt, wenn eine Note länger als das Sample zwischen Start- und Endpunkt ist. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted JACK-Client neugestartet LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. LMMS wurde aus irgendeinem Grund von JACK verbannt. Aus diesem Grund wurde das JACK-Backend von LMMS neu gestartet. Sie müssen manuelle Verbindungen erneut vornehmen. JACK server down JACK-Server nicht erreichbar The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. Der JACK-Server scheint heruntergefahren worden zu sein und es war nicht möglich, eine neue Instanz zu starten. LMMS ist daher nicht in der Lage, fortzufahren. Sie sollten Ihr Projekt speichern und JACK und LMMS neustarten. AudioJack::setupWidget CLIENT-NAME CLIENT-NAME CHANNELS KANÄLE AudioOss::setupWidget DEVICE GERÄT CHANNELS KANÄLE AudioPortAudio::setupWidget BACKEND BACKEND DEVICE GERÄT AudioPulseAudio::setupWidget DEVICE GERÄT CHANNELS KANÄLE AudioSdl::setupWidget DEVICE GERÄT AutomatableModel &Reset (%1%2) &Zurücksetzen (%1%2) &Copy value (%1%2) Wert &kopieren (%1%2) &Paste value (%1%2) Wert &einfügen (%1%2) Edit song-global automation Song-globale Automation editieren Connected to %1 Verbunden mit %1 Connected to controller Verbunden mit Controller Edit connection... Verbindung bearbeiten... Remove connection Verbindung entfernen Connect to controller... Mit Controller verbinden... Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) Aktuellen Pattern abspielen/pausieren (Leertaste) Stop playing of current pattern (Space) Abspielen des aktuellen Patterns stoppen (Leertaste) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Klicken Sie hier, wenn Sie den aktuellen Pattern spielen wollen. Das ist nützlich beim Bearbeiten. Der Pattern wird automatisch wiederholt, wenn das Ende erreicht ist. Click here if you want to stop playing of the current pattern. Klicken Sie hier, wenn Sie das Abspielen des aktuellen Patterns stoppen wollen. Draw mode (Shift+D) Zeichnen-Modus (Umschalt+D) Erase mode (Shift+E) Radier-Modus (Umschalt+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. Klicken Sie hier, um den Zeichnen-Modus zu aktivieren. In diesem Modus können Sie einzelne Werte hinzufügen und verschieben. Das ist der Standard-Modus, der meistens benutzt wird. Sie können auch 'Umschalt+D' auf Ihrer Tastatur drücken, um in diesen Modus zu gelangen. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. Klicken Sie hier, um den Radier-Modus zu aktivieren. In diesem Modus können Sie einzelne Werte löschen. Sie können auch 'Umschalt+E' auf Ihrer Tastatur drücken, um diesen Modus zu aktivieren. Cut selected values (Ctrl+X) Ausgewählte Werte ausschneiden (Strg+X) Copy selected values (Ctrl+C) Ausgewählte Werte kopieren (Strg+C) Paste values from clipboard (Ctrl+V) Werte aus Zwischenablage einfügen (Strg+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Klicken Sie hier, um die markierten Werte auszuschneiden und in die Zwischenablage zu kopieren. Sie können diese dann überall, auch in einem anderen Pattern, wieder einfügen, indem Sie auf den Einfügen-Button klicken. Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Klicken Sie hier, um die markierten Werte in die Zwischenablage zu kopieren. Sie können diese dann überall, auch in einem anderen Pattern, wieder einfügen, indem Sie auf den Einfügen-Button klicken. Click here and the values from the clipboard will be pasted at the first visible measure. Klicken Sie hier, um die Werte in der Zwischenablage im ersten sichtbaren Takt einzufügen. Automation Editor - no pattern Automation-Editor - Kein Pattern Automation Editor - %1 Automation-Editor - %1 Please open an automation pattern with the context menu of a control! Bitte öffnen Sie einen Automation-Pattern mit Hilfe des Kontextmenüs eines Steuerelements! Values copied Werte kopiert All selected values were copied to the clipboard. Alle ausgewählten Werte wurden in die Zwischenablage kopiert. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> Ein Steuerelement mit <Strg> hier her ziehen AutomationPatternView double-click to open this pattern in automation editor Doppelklick, um diesen Pattern im Automation-Editor zu öffnen Open in Automation editor Im Automation-Editor öffnen Clear Zurücksetzen Reset name Name zurücksetzen Change name Name ändern %1 Connections %1 Verbindungen Disconnect "%1" "%1" trennen AutomationTrack Automation track Automation-Spur Controller Controller %1 Controller %1 ControllerConnectionDialog Connection Settings Verbindungseinstellungen MIDI CONTROLLER MIDI CONTROLLER Input channel Eingangskanal CHANNEL KANAL Input controller Eingangscontroller CONTROLLER CONTROLLER Auto Detect Automatische Erkennung MIDI-devices to receive MIDI-events from MIDI-Geräte, von denen MIDI-Events empfangen werden sollen USER CONTROLLER BENUTZERDEFINIETER CONTROLLER MAPPING FUNCTION ABBILDUNGS-FUNKTION OK OK Cancel Abbrechen LMMS LMMS Cycle Detected. Schleife erkannt. ControllerRackView Controller Rack Controller-Einheit Add Hinzufügen Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls Regler Controllers are able to automate the value of a knob, slider, and other controls. Mit Controller können Sie den Wert eines Knopfes, Schiebereglers und anderer Steuerelemente automatisieren. Rename controller Controller umbenennen Enter the new name for this controller Geben Sie einen neuen Namen für diesen Controller ein &Remove this plugin Plugin entfe&rnen &Help &Hilfe Effect Effect enabled Effekt eingeschaltet Wet/Dry mix Wet/Dry-Mix Gate Gate Decay Abfallzeit EffectChain Effects enabled Effekte aktiviert EffectRackView EFFECTS CHAIN EFFEKT-KETTE Add effect Effekt hinzufügen EffectSelectDialog Add effect Effekt hinzufügen Plugin description Pluginbeschreibung EffectView Toggles the effect on or off. Schaltet den Effekt an oder aus. On/Off An/aus W/D W/D Wet Level: Wet-Level: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. Der Wet/Dry-Knopf legt das Verhältnis zwischen Eingangssignal und vom Effekt bearbeiteten Signal im Ausgang fest. DECAY DECAY Time: Zeit: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. Der Abfallzeit-Knopf legt fest, wie viele Puffer mit Stille durchgelaufen sein müssen, bis der Effekt mit der Verarbeitung stoppt. Kleinere Werte reduzieren die CPU-Last, können jedoch unter Umständen das Ende von Delay-Effekten o.ä. abschneiden. GATE GATE Gate: Gate: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. Der Gate-Knopf legt die Stärke des Signals fest, welches als Stille angesehen wird, um zu entscheiden, wann das Plugin mit der Verarbeitung aufhören kann. Controls Regler Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. Move &up Nach &oben verschieben Move &down Nach &unten verschieben &Remove this plugin Plugin entfe&rnen &Help &Hilfe EnvelopeAndLfoParameters Predelay Verzögerung (predelay) Attack Anschwellzeit (attack) Hold Haltezeit (hold) Decay Abfallzeit Sustain Haltepegel (sustain) Release Ausklingzeit (release) Modulation Modulation LFO Predelay LFO-Verzögerung LFO Attack LFO-Anschwellzeit (LFO-attack) LFO speed LFO-Geschwindigkeit LFO Modulation LFO Modulation LFO Wave Shape LFO-Wellenform Freq x 100 Freq x 100 Modulate Env-Amount Hüllkurve modulieren EnvelopeAndLfoView DEL DEL Predelay: Verzögerung (predelay): Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. Benutzen Sie diesen Knopf, um die Verzögerung (predelay) für die aktuelle Hüllkurven einzustellen. Je größer dieser Wert, desto länger dauert es, bis die eigentliche Hüllkurve beginnt. ATT ATT Attack: Anschwellzeit (attack): Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. Benutzen Sie diesen Knopf, um die Anschwellzeit (attack) für die aktuelle Hüllkurve einzustellen. Je größer dieser Wert, desto länger braucht die Hüllkurve, um bis zum Anschwellpegel (attack-level) zu steigen. Wählen Sie einen kleinen Wert für Instrumente wie Klavier und einen großen Wert für Streichinstrumente. HOLD HOLD Hold: Haltezeit (hold): Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. Benutzen Sie diesen Knopf, um die Haltezeit (hold) der aktuellen Hüllkurve zu setzen. Je größer der Wert, desto länger hält die Hüllkurve den Anschwellpegel, bevor sie zum Haltepegel (sustain-level) abfällt. DEC DEC Decay: Abfallzeit (decay): Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. Benutzen Sie diesen Knopf, um die Abfallzeit (decay) für die aktuelle Hüllkurve einzustellen. Je größer dieser Wert, desto länger braucht die Hüllkurve, um vom Anschwellpegel (attack-level) zum Dauerpegel (sustain-level) abzufallen. Wählen Sie einen kleinen Wert für Instrumente wie Klavier. SUST SUST Sustain: Dauerpegel (sustain): Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. Benutzen Sie diesen Knopf, um den Dauerpegel (sustain-level) für die aktuelle Hüllkurve einzustellen. Je größer dieser Wert, desto höher der Pegel, den die Hüllkurve hält, bevor sie auf Null abfällt. REL REL Release: Ausklingzeit (release): Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. Benutzen Sie diesen Knopf, um die Ausklingzeit der aktuellen Hüllkurve einzustellen. Je größer der Wert, desto länger braucht die Hüllkurve um vom Dauerpegel (sustain-level) auf Null abzufallen. Wählen Sie einen großen Wert für weiche Instrumente, wie z.B. Streicher. AMT AMT Modulation amount: Modulationsintensität: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. Benutzen Sie diesen Knopf, um die Modulationsintensität für die aktuelle Hüllkurve einzustellen. Je größer dieser Wert, desto mehr wird die gewählte Größe (z.B. Lautstärke oder Cutoff-Frequenz) von der Hüllkurve beeinflusst. LFO predelay: LFO-Verzögerung: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. Benutzen Sie diesen Knopf, um die Verzögerungszeit für den aktuellen LFO einzustellen. Je größer dieser Wert, desto länger die Zeit, bis der LFO anfängt zu schwingen. LFO- attack: LFO-Anschwellzeit (LFO-attack): Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. Benutzen Sie diesen Knopf, um die Anschwellzeit für den aktuellen LFO einzustellen. Je größer dieser Wert, desto länger dauert es, bis die Amplitude des LFOs bis zum Maximum angestiegen ist. SPD SPD LFO speed: LFO-Geschwindigkeit: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. Benutzen Sie diesen Knopf, um die Geschwindigkeit für den aktuellen LFO einzustellen. Je größer der Wert, desto schneller schwingt der LFO und desto schneller ist der entsprechende Effekt. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. Benutzen Sie diesen Knopf, um die Modulationsintensität des aktuellen LFOs einzustellen. Je größer der Wert, desto mehr wird die gewählte Größe (z.B. Lautstärke oder Cuttoff-Frequenz) von diesem LFO beeinflusst. Click here for a sine-wave. Klick für eine Sinuswelle. Click here for a triangle-wave. Klick für eine Dreieckswelle. Click here for a saw-wave for current. Klick für eine Sägezahnwelle. Click here for a square-wave. Klick für eine Rechteckswelle. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. Hier klicken für eine benutzerdefinierte Wellenform. Danach eine entsprechende Sampledatei auf den LFO-Graphen ziehen. FREQ x 100 FREQ x 100 Click here if the frequency of this LFO should be multiplied by 100. Hier klicken, wenn die Frequenz des LFOs mit 100 multipliziert werden soll. multiply LFO-frequency by 100 LFO-Frequenz mit 100 multiplizieren MODULATE ENV-AMOUNT HÜLLK. MODULIEREN Click here to make the envelope-amount controlled by this LFO. Klicken Sie hier, um die Hüllkurvenintensität durch diesen LFO kontrollieren zu lassen. control envelope-amount by this LFO Hüllkurvenintensität durch diesen LFO kontrollieren ms/LFO: ms/LFO: Hint Tipp Drag a sample from somewhere and drop it in this window. Ziehen Sie ein Sample von irgendwo und lassen es in diesem Fenster fallen. ExportProjectDialog Export project Projekt exportieren Output Ausgabe File format: Dateiformat: Samplerate: Abtastrate: 44100 Hz 44100 Hz 48000 Hz 48000 Hz 88200 Hz 88200 Hz 96000 Hz 96000 Hz 192000 Hz 192000 Hz Bitrate: Bitrate: 64 KBit/s 64 KBit/s 128 KBit/s 128 KBit/s 160 KBit/s 160 KBit/s 192 KBit/s 192 KBit/s 256 KBit/s 256 KBit/s 320 KBit/s 320 KBit/s Depth: Genauigkeit: 16 Bit Integer 16 Bit Ganzzahlen 32 Bit Float 32-Bit-Gleitkommazahlen Please note that not all of the parameters above apply for all file formats. Bitte beachten Sie, dass nicht alle der obigen Parameter für alle Dateiformate relevant sind. Quality settings Qualitätseinstellungen Interpolation: Interpolation: Zero Order Hold Zero Order Hold Sinc Fastest Sinc - am schnellsten Sinc Medium (recommended) Sinc - Normal (empfohlen) Sinc Best (very slow!) Sinc - am besten (sehr langsam!) Oversampling (use with care!): Überabtastung (oversampling) (mit Vorsicht nutzen!): 1x (None) 1x (keine) 2x 2x 4x 4x 8x 8x Sample-exact controllers Sample-genaue Controller Alias-free oscillators Alias-freie Oszillatoren Start Start Cancel Abbrechen Export as loop (remove end silence) FxMixer Master Master FX %1 FX %1 FxMixerView Rename FX channel FX-Kanal umbenennen Enter the new name for this FX channel Bitte einen neuen Namen für den FX-Kanal eingeben FX-Mixer FX-Mixer FX Fader %1 FX-Schieber %1 Mute Stumm Mute this FX channel Diesen FX-Kanal stummschalten InstrumentFunctionArpeggio Arpeggio Arpeggio Arpeggio type Arpeggiotyp Arpeggio range Arpeggio-Bereich Arpeggio time Arpeggio-Zeit Arpeggio gate Arpeggio-Gate Arpeggio direction Arpeggio-Richtung Arpeggio mode Arpeggio-Modus Up Hoch Down Runter Up and down Hoch und runter Random Zufällig Free Frei Sort Sortiert Sync Synchron InstrumentFunctionArpeggioView ARPEGGIO ARPEGGIO An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. Ein Arpeggio ist eine Art, (vorallem gezupfte) Instrumente zu spielen, die die Musik viel lebendiger macht. Die Seiten von solchen Instrumenten (z.B. Harfen) werden wie Akkorde gezupft, der einzige Unterschied besteht darin, dass dies nacheinander geschieht. Die Noten werden also nicht zur gleichen Zeit gespielt. Typische Arpeggios sind Dur- oder Moll-Dreiklänge, aber es gibt noch viele andere Akkorde, die Sie auswählen können. RANGE BEREICH Arpeggio range: Arpeggio-Bereich: octave(s) Oktave(n) Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. Benutzen Sie diesen Knopf, um den Arpeggio-Bereich in Oktaven zu setzen. Das gewähle Arpeggio wird innerhalb der angegebenen Anzahl von Oktaven abgespielt. TIME ZEIT Arpeggio time: Arpeggio-Zeit: ms ms Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. Benutzen Sie diesen Knopf, um die Arpeggio-Zeit in Millisekunden zu setzen. Die Arpeggio-Zeit gibt an, wie lange jeder einzelne Arpeggio-Ton gespielt werden soll. GATE GATE Arpeggio gate: Arpeggio-Gate: % % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Benutzen Sie diesen Knopf, um das Arpeggio-Gate zu setzen. Das Arpeggio-Gate gibt an, wie viel Prozent eines ganzen Arpeggio-Tons gespielt werden sollen. Damit können Sie coole Staccato-Arpeggios erzeugen. Chord: Direction: Richtung: Mode: Modus: InstrumentFunctionNoteStacking octave Oktave Major Dur Majb5 Durb5 minor moll minb5 mollb5 sus2 sus2 sus4 sus4 aug aug augsus4 augsus4 tri tri 6 6 6sus4 6sus4 6add9 6add9 m6 m6 m6add9 m6add9 7 7 7sus4 7sus4 7#5 7#5 7b5 7b5 7#9 7#9 7b9 7b9 7#5#9 7#5#9 7#5b9 7#5b9 7b5b9 7b5b9 7add11 7add11 7add13 7add13 7#11 7#11 Maj7 Maj7 Maj7b5 Maj7b5 Maj7#5 Maj7#5 Maj7#11 Maj7#11 Maj7add13 Maj7add13 m7 m7 m7b5 m7b5 m7b9 m7b9 m7add11 m7add11 m7add13 m7add13 m-Maj7 m-Maj7 m-Maj7add11 m-Maj7add11 m-Maj7add13 m-Maj7add13 9 9 9sus4 9sus4 add9 add9 9#5 9#5 9b5 9b5 9#11 9#11 9b13 9b13 Maj9 Maj9 Maj9sus4 Maj9sus4 Maj9#5 Maj9#5 Maj9#11 Maj9#11 m9 m9 madd9 madd9 m9b5 m9b5 m9-Maj7 m9-Maj7 11 11 11b9 11b9 Maj11 Maj11 m11 m11 m-Maj11 m-Maj11 13 13 13#9 13#9 13b9 13b9 13b5b9 13b5b9 Maj13 Maj13 m13 m13 m-Maj13 m-Maj13 Harmonic minor Harmonisches Moll Melodic minor Melodisches Moll Whole tone Ganze Töne Diminished Vermindert Major pentatonic Pentatonisches Dur Minor pentatonic Pentatonisches Moll Jap in sen Major bebop Dur Bebop Dominant bebop Dominanter Bebop Blues Blues Arabic Arabisch Enigmatic Enigmatisch Neopolitan Neopolitanisch Neopolitan minor Neopolitanisches Moll Hungarian minor Zigeunermoll Dorian Dorisch Phrygolydian Phrygisch Lydian Lydisch Mixolydian Mixolydisch Aeolian Äolisch Locrian Locrisch Chords Akkorde Chord type Akkordtyp Chord range Akkord-Bereich Minor InstrumentFunctionNoteStackingView RANGE BEREICH Chord range: Akkord-Bereich: octave(s) Oktave(n) Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. Benutzen Sie diesen Knopf, um den Akkord-Bereich in Oktaven zu setzen. Der gewähle Akkord wird innerhalb der angegebenen Anzahl von Oktaven abgespielt. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT MIDI-EINGANG AKTIVIEREN CHANNEL KANAL VELOCITY LAUTSTÄRKE ENABLE MIDI OUTPUT MIDI-AUSGANG AKTIVIEREN PROGRAM PROGRAMM MIDI devices to receive MIDI events from MIDI Geräte, von denen MIDI-Events empfangen werden sollen MIDI devices to send MIDI events to MIDI-Geräte, an die MIDI-Events gesendet werden sollen NOTE InstrumentSoundShaping VOLUME LAUTSTÄRKE Volume Lautstärke CUTOFF KENNFREQ Cutoff frequency Kennfrequenz RESO RESO Resonance Resonanz Envelopes/LFOs Hüllkurven/LFOs Filter type Filtertyp Q/Resonance Q/Resonanz LowPass Tiefpass HiPass Hochpass BandPass csg Bandpass csg BandPass czpg Bandpass czpg Notch Notch Allpass Allpass Moog Moog 2x LowPass 2x Tiefpass RC LowPass 12dB RC-Tiefpass 12dB RC BandPass 12dB RC-Bandpass 12dB RC HighPass 12dB RC-Hochpass 12dB RC LowPass 24dB RC-Tiefpass 24dB RC BandPass 24dB RC-Bandpass 24dB RC HighPass 24dB RC-Hochpass 24dB Vocal Formant Filter Vokalformant-Filter InstrumentSoundShapingView TARGET ZIEL These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! Diese Tabs enthalten Hüllkurven. Diese sind sehr wichtig, um einen Klang zu verändern, insbesondere bei der substraktiven Synthese. Wenn Sie zum Beispiel eine Lautstärke-Hüllkurve haben, können Sie festlegen, wann der Klang welchen Lautstärke-Pegel haben soll. Vielleicht wollen Sie ein weiches Streichinstrument erstellen. Dann muss ihr Sound sehr sanft ein- und ausgeblendet werden. Das kann man ganz einfach erreichen, indem man eine große Anschwell(attack)- und Ausklingzeit (release) einstellt. Mit anderen Hüllkurven, wie Balance, Kennfrequenz des benutzten Filters usw., ist es genau das Gleiche. Probieren Sie einfach ein bisschen herum! Mit ein paar Hüllkurven kann man aus einer Sägezahn-Welle wirklich coole Klänge machen...! FILTER FILTER Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. Hier können Sie den eingebauten Filter wählen, den Sie in dieser Instrument-Spur nutzen wollen. Filter sind sehr wichtig, um die Charakteristik eines Klangs zu verändern. Hz Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... Benutzen Sie diesen Knopf, um die Kennfrequenz (cutoff-frequency) für den gewählten Filter einzustellen. Die Kennfrequenz wird vom Filter zum Beschneiden des Signals verwendet. Zum Beispiel filtert ein Tiefpass-Filter alle Frequenzen oberhalb der Kennfrequenz heraus. Ein Hochpass-Filter filtert alle Frequenzen unterhalb der Kennfrequenz heraus usw... RESO RESO Resonance: Resonanz: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. Benutzen Sie diesen Knopf, um Q/die Resonanz für den gewählten Filter einzustellen. Q/Resonanz teilt dem Filter mit, wie stark er die Frequenzen in der Nähe der Cutoff-Frequenz verstärken soll. FREQ FREQ cutoff frequency: InstrumentTrack unnamed_track Unbenannter_Kanal Volume Lautstärke Panning Panning Pitch Tonhöhe FX channel FX-Kanal Default preset Standard-Preset With this knob you can set the volume of the opened channel. Mit diesem Knopf können Sie die Lautstärke des geöffneten Kanals ändern. Base note Grundton Pitch range InstrumentTrackView Volume Lautstärke Volume: Lautstärke: VOL VOL Panning Panning Panning: Panning: PAN PAN MIDI MIDI Input Eingang Output Ausgang InstrumentTrackWindow GENERAL SETTINGS GRUNDLEGENDE EINSTELLUNGEN Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. Klicken Sie hier, wenn Sie die aktuellen Kanal-Einstellungen in einer Preset-Datei speichern wollen. Spätern können Sie dieses Preset laden, indem Sie es im Preset-Browser doppelt anklicken. Instrument volume Instrument-Lautstärke Volume: Lautstärke: VOL VOL Panning Panning Panning: Panning: PAN PAN Pitch Tonhöhe Pitch: Tonhöhe: cents Cent PITCH PITCH FX channel FX-Kanal ENV/LFO ENV/LFO FUNC FUNC FX FX MIDI MIDI Save preset Preset speichern XML preset file (*.xpf) XML Preset Datei (*.xpf) PLUGIN PLUGIN Save current channel settings in a preset-file Aktuelle Instrumenteinstellungen in einer Presetdatei speichern Pitch range (semitones) RANGE BEREICH LadspaControl Link channels Kanäle verbinden LadspaControlDialog Link Channels Kanäle verbinden Channel Kanal LadspaControlView Link channels Kanäle verbinden Value: Wert: Sorry, no help available. Sorry, keine Hilfe verfügbar. LadspaEffect Effect Effekt Unknown LADSPA plugin %1 requested. Unbekanntes LADSPA-Plugin %1 angefordert. LfoController LFO Controller LFO-Controller Base value Grundwert Oscillator speed Oszillator-Geschwindigkeit Oscillator amount Oszillator-Stärke Oscillator phase Oszillator-Phase Oscillator waveform Oszillator-Wellenform Frequency Multiplier Frequenzmultiplikator LfoControllerDialog LFO LFO LFO Controller LFO-Controller BASE BASE Base amount: Grundstärke: todo SPD SPD LFO-speed: LFO-Geschwindigkeit: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. Benutzen Sie diesen Knopf, um die Geschwindigkeit des LFOs einzustellen. Je größer der Wert, desto schneller schwingt der LFO und desto schneller ist der entsprechende Effekt. AMT AMT Modulation amount: Modulationsintensität: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. Benutzen Sie diesen Knopf, um die Modulationsintensität des LFOs einzustellen. Je größer der Wert, desto mehr wird die gewählte Größe (z.B. Lautstärke oder Cuttoff-Frequenz) von diesem LFO beeinflusst. PHS PHS Phase offset: Phasenverschiebung: degrees Grad With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Mit diesem Knopf können Sie die Phasen-Verschiebung des LFOs einstellen. Das heißt, Sie können den Punkt innerhalb einer Schwingung verschieben, an dem der Oszillator anfangen soll zu schwingen. Wenn Sie zum Beispiel eine Sinus-Welle haben und eine Phasen-Verschiebung von 180 Grad einstellen, wird die Welle zu erst runter gehen. Das gleiche trifft auch bei einer Rechteck-Welle zu. Click here for a sine-wave. Klick für eine Sinuswelle. Click here for a triangle-wave. Klick für eine Dreieckswelle. Click here for a saw-wave. Klick für eine Sägezahnwelle. Click here for a square-wave. Klick für eine Rechteckswelle. Click here for a a moog saw-wave. Klick für eine Moog-ähnliche Welle. Click here for an exponential wave. Klick für eine Exponential-Welle. Click here for white-noise. Klick für weißes Rauschen. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory Arbeitsverzeichnis The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. Das LMMS-Arbeitsverzeichnis %1 existiert nicht. Soll es jetzt erstellt werden? Sie können das Verzeichnis später über Bearbeiten -> Einstellungen ändern. Could not save config-file Konnte Konfigurationsdatei nicht speichern Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. Konnte die Konfigurationsdatei %1 nicht speichern. Sie haben möglicherweise keine Schreibrechte auf diese Datei. Bitte überprüfen Sie Ihre Rechte und versuchen es erneut. &Project &Projekt &New &Neu &Open... Ö&ffnen... Recently opened projects Zuletzt geöffnete Projekte &Save &Speichern Save &As... Speichern &als... Import... Importieren... E&xport... E&xportieren... &Quit &Beenden &Edit &Bearbeiten Settings Einstellungen &Tools &Werkzeuge &Help &Hilfe Online help Online-Hilfe Help Hilfe What's this? Was ist das? About Über Create new project Neues Projekt erstellen Create new project from template Neues Projekt aus Vorlage erstellen Open existing project Existierendes Projekt öffnen Recently opened project Zuletzt geöffnete Projekte Save current project Aktuelles Projekt speichern Export current project Aktuelles Projekt exportieren Show/hide Song-Editor Zeige/verstecke Song-Editor By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. Mit diesem Knopf können Sie den Song-Editor zeigen oder verstecken. Mit Hilfe des Song-Editors können Sie die Song-Playliste bearbeiten und angeben, wann welche Spur abgespielt werden soll. Außerdem können Sie Samples (z.B. Rap samples) direkt in die Playliste einfügen und verschieben. Show/hide Beat+Bassline Editor Zeige/verstecke Beat+Bassline Editor By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. Mit diesem Knopf können Sie den Beat+Bassline-Editor zeigen oder verstecken. Mit dem Beat+Bassline-Editor kann man Beats erstellen, Bassline-Patterns bearbeiten uvm. Show/hide Piano-Roll Zeige/verstecke Piano-Roll Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. Hier klicken, um das Piano-Roll zu zeigen oder verstecken. Mit Hilfe des Piano-Rolls können Sie Melodien auf einfache Art und Weise bearbeiten. Show/hide Automation Editor Zeige/Verstecke Automation-Editor Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Hier klicken, um den Automation-Editor zu zeigen oder verstecken. Mit Hilfe des Automation-Editors können Sie Automation-Patterns auf einfache Art und Weise bearbeiten. Show/hide FX Mixer Zeige/verstecke FX-Mixer Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Hier klicken, um den FX-Mixer zu zeigen oder verstecken. Der FX-Mixer ist ein leistungsfähiges Werkzeug, um Effekte für Ihren Song zu verwalten. Sie können verschiedene Effekte in unterschiedliche Effekt-Kanäle einfügen. Show/hide project notes Zeige/verstecke Projekt-Notizen Click here to show or hide the project notes window. In this window you can put down your project notes. Hier klicken, um die Projektnotizen zu zeigen oder verstecken. Show/hide controller rack Zeige/verstecke Controller-Rack Untitled Unbenannt LMMS %1 LMMS %1 Project not saved Projekt nicht gespeichert The current project was modified since last saving. Do you want to save it now? Das aktuelle Projekt wurde seit dem letzten Speichern geändert. Wollen Sie es jetzt speichern? Open project Projekt öffnen Save project Projekt speichern Help not available Hilfe nicht verfügbar Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. Derzeit ist in LMMS keine Hilfe verfügbar. Bitte besuchen Sie http://lmms.sf.net/wiki für Dokumentationen über LMMS. My projects Meine Projekte My samples Meine Samples My presets Meine Presets My home Persönlicher Ordner My computer Mein Computer Root directory Wurzelverzeichnis Project recovery Projektwiederherstellung It looks like the last session did not end properly. Do you want to recover the project of this session? Es sieht so aus, als ob die letzte Sitzung nicht ordentlich beendet wurde. Möchten Sie das Projekt dieser Sitzung wiederherstellen? Configuration file Konfigurationsdatei Error while parsing configuration file at line %1:%2: %3 Fehler beim Parsen der Konfigurationsdatei in Zeile %1:%2: %3 Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 MeterDialog Meter Numerator Takt/Zähler Meter Denominator Takt/Nenner TIME SIG TAKTART MeterModel Numerator Zähler Denominator Nenner MidiAlsaRaw::setupWidget DEVICE GERÄT MidiAlsaSeq::setupWidget DEVICE GERÄT MidiController MIDI Controller MIDI-Controller unnamed_midi_controller unbenannter_midi_controller MidiImport Setup incomplete Unvollständige Einrichtung You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. Sie haben keine Standard-Soundfont im Einstellungsdialog (Bearbeiten->Einstellungen) festgelegt. Aus diesem Grund werden Sie nach dem Import der MIDI-Datei während der Wiedergabe nichts hören. Sie sollten eine General-MIDI-Soundfont herunterladen, diese im Einstellungsdialog angeben und es erneut versuchen. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. Sie haben LMMS ohne das SoundFont2-Player-Plugin gebaut. Dieses Plugin wird normalerweise benutzt, um Standardklänge bei importierten MIDI-Dateien einzurichten. Aus diesem Grund werden Sie nach dem Import der MIDI-Datei nichts hören. MidiOss::setupWidget DEVICE GERÄT MidiPort Input channel Eingangskanal Output channel Ausgangskanal Input controller Eingangscontroller Output controller Ausgangscontroller Fixed input velocity Feste Eingangslautstärke Fixed output velocity Feste Ausgangslautstärke Output MIDI program Ausgangs-MIDI-Programm Receive MIDI-events MIDI-Ereignisse empfangen Send MIDI-events MIDI-Ereignisse senden Fixed output note OscillatorObject Osc %1 volume Oszillator %1 Lautstärke Osc %1 panning Oszillator %1 Balance Osc %1 coarse detuning Oszillator %1 Grob-Verstimmung Osc %1 fine detuning left Oszillator %1 Fein-Verstimmung links Osc %1 fine detuning right Oszillator %1 Fein-Verstimmung rechts Osc %1 phase-offset Oszillator %1 Phasen-Verschiebung Osc %1 stereo phase-detuning Oszillator %1 Stereo Phasen-Verschiebung Osc %1 wave shape Oszillator %1 Wellenform Modulation type %1 Modulationsart %1 Osc %1 waveform Oszillator %1 Wellenform PatmanView Open other patch Andere Patch-Datei öffnen Click here to open another patch-file. Loop and Tune settings are not reset. Klicken Sie hier, um eine andere Patch-Datei zu laden. Wiederholungs- und Stimmungseinstellungen werden nicht zurückgesetzt. Loop Wiederholen Loop mode Modus beim Wiederholen Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. Hier können Sie den Wiederholen-Modus (de-)aktivieren. Wenn aktiviert, verwendet PatMan die in der Datei verfügbaren Informationen zum Wiederholen. Tune Stimmung Tune mode Stimmungsmodus Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. Hier können Sie den Stimmungs-Modus (de-)aktivieren. Wenn aktiviert, wird der Klang automatisch an die Frequenz der Note angepasst. No file selected Keine Datei ausgewählt Open patch file Patch-Datei öffnen Patch-Files (*.pat) Patch-Dateien (*.pat) PeakController Peak Controller Peak Controller Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK PEAK LFO Controller LFO-Controller PeakControllerEffectControlDialog BASE BASE Base amount: Grundstärke: Modulation amount: Modulationsintensität: Attack: Anschwellzeit (attack): Release: Ausklingzeit (release): AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Grundwert Modulation amount Modulationsintensität Mute output Ausgang stummschalten Attack Anschwellzeit (attack) Release Ausklingzeit (release) Abs Value Amount Multiplicator PianoView Base note Grundton Plugin Plugin not found Plugin nicht gefunden The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Das Plugin "%1" konnte nicht gefunden oder geladen werden! Grund: "%2" Error while loading plugin Fehler beim Laden des Plugins Failed to load plugin "%1"! Das Plugin "%1" konnte nicht geladen werden! ProjectRenderer WAV-File (*.wav) WAV-Datei (*.wav) Compressed OGG-File (*.ogg) Komprimierte OGG-Datei (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: Name: Maker: Hersteller: Copyright: Copyright: Requires Real Time: Benötigt Echtzeit: Yes Ja No Nein Real Time Capable: Echtzeitfähig: In Place Broken: Operationen nicht In-Place: Channels In: Eingangs-Kanäle: Channels Out: Ausgangs-Kanäle: File: Datei: SampleBuffer Open audio file Audio-Datei öffnen All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Alle Audio-Dateien (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) Wave-Dateien (*.wav) OGG-Files (*.ogg) OGG-Dateien (*.ogg) DrumSynth-Files (*.ds) DrumSynth-Dateien (*.ds) FLAC-Files (*.flac) FLAC-Dateien (*.flac) SPEEX-Files (*.spx) SPEEX-Dateien (*.spx) MP3-Files (*.mp3) MP3-Dateien (*.mp3) VOC-Files (*.voc) VOC-Dateien (*.voc) AIFF-Files (*.aif *.aiff) AIFF-Dateien (*.aif *.aiff) AU-Files (*.au) AU-Dateien (*.au) RAW-Files (*.raw) RAW-Dateien (*.raw) SampleTCOView double-click to select sample Doppelklick, um Sample zu wählen Delete (middle mousebutton) Löschen (mittlere Maustaste) Cut Ausschneiden Copy Kopieren Paste Einfügen Mute/unmute (<Ctrl> + middle click) Stumm/Laut schalten (<Strg> + Mittelklick) Set/clear record Aufnahme setzen/löschen SampleTrack Sample track Sample-Spur Volume Lautstärke SampleTrackView Track volume Lautstärke der Spur Channel volume: Kanal Lautstärke: VOL VOL TempoSyncKnob Tempo Sync Tempo-Synchronisation No Sync Keine Synchronisation Eight beats Acht Schläge Whole note Ganze Note Half note Halbe Note Quarter note Viertelnote 8th note Achtelnote 16th note 16tel Note 32nd note 32tel Note Custom... Benutzerdefiniert... &Help &Hilfe Custom Benutzerdefiniert Synced to Eight Beats Mit acht Schlägen synchronisiert Synced to Whole Note Mit ganzer Note synchronisiert Synced to Half Note Mit halber Note synchronisiert Synced to Quarter Note Mit Viertelnote synchronisiert Synced to 8th Note Mit Achtelnote synchronisiert Synced to 16th Note Mit 16tel Note synchronisiert Synced to 32nd Note Mit 32tel Note synchronisiert TimeDisplayWidget click to change time units TrackContainer Couldn't import file Konnte Datei nicht importieren Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. Es konnte kein Filter gefunden werden, um die Datei %1 zu importieren. Sie sollten diese Datei mit Hilfe anderer Software in ein von LMMS unterstützes Format umwandeln. Couldn't open file Konnte Datei nicht öffnen Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! Konnte Datei %1 nicht zum Lesen öffnen. Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeichnis besitzen und probieren es erneut! Loading project... Lade Projekt... Cancel Abbrechen Please wait... Bitte warten... Importing MIDI-file... Importiere MIDI-Datei... Importing FLP-file... Importiere FLP-Datei... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Phasenmodulation benutzen, um Oszillator 2 mit Oszillator 1 zu modulieren Use amplitude modulation for modulating oscillator 2 with oscillator 1 Amplitudenmodulation benutzen, um Oszillator 2 mit Oszillator 1 zu modulieren Mix output of oscillator 1 & 2 Mische Ausgang von Oszillator 1 & 2 Synchronize oscillator 1 with oscillator 2 Synchronisiere Oszillator 1 mit Oszillator 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Frequenzmodulation benutzen, um Oszillator 2 mit Oszillator 1 zu modulieren Use phase modulation for modulating oscillator 3 with oscillator 2 Phasenmodulation benutzen, um Oszillator 3 mit Oszillator 2 zu modulieren Use amplitude modulation for modulating oscillator 3 with oscillator 2 Amplitudenmodulation benutzen, um Oszillator 3 mit Oszillator 2 zu modulieren Mix output of oscillator 2 & 3 Mische Ausgang von Oszillator 2 & 3 Synchronize oscillator 2 with oscillator 3 Synchronisiere Oszillator 2 mit Oszillator 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Frequenzmodulation benutzen, um Oszillator 3 mit Oszillator 2 zu modulieren Osc %1 volume: Oszillator %1 Lautstärke: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Mit diesem Knopf können Sie die Lautstärke von Oszillator %1 setzen. Wenn Sie einen Wert von 0 setzen, wird der Oszillator ausgeschaltet. Ansonsten können Sie ihn so laut hören, wie Sie es hier einstellen. Osc %1 panning: Oszillator %1 Balance: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Mit diesem Knopf können Sie die Balance von Oszillator %1 setzen. Ein Wert von -100 heißt 100% links und ein Wert von 100 verschiebt den Oszillator-Ausgang nach rechts. Osc %1 coarse detuning: Oszillator %1 Grob-Verstimmung: semitones Halbtöne With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Mit diesem Knopf können Sie die grobe Verstimmung von Oszillator %1 setzen. Sie können den Oszillator 12 Halbtöne (1 Oktave) nach oben und unten verstimmen. Das ist nützlich, wenn Sie einen Sound mit einem Akkord erstellen möchten. Osc %1 fine detuning left: Oszillator %1 Fein-Verstimmung links: cents Cent With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Mit diesem Knopf können Sie die Fein-Verstimmung von Oszillator %1 für den linken Kanal einstellen. Die Fein-Verstimmung liegt zwischen -100 Cent und +100 Cent. Das ist nützlich, um "fette" Sounds zu erzeugen. Osc %1 fine detuning right: Oszillator %1 Fein-Verstimmung rechts: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Mit diesem Knopf können Sie die Fein-Verstimmung von Oszillator %1 für den rechten Kanal einstellen. Die Fein-Verstimmung liegt zwischen -100 Cent und +100 Cent. Das ist nützlich, um "fette" Sounds zu erzeugen. Osc %1 phase-offset: Oszillator %1 Phasen-Verschiebung: degrees Grad With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Mit diesem Knopf können Sie die Phasen-Verschiebung von Oszillator %1 setzen. Das heißt, Sie können den Punkt innerhalb einer Schwingung verschieben, an dem der Oszillator anfangen soll zu schwingen. Wenn Sie zum Beispiel eine Sinus-Welle haben und eine Phasen-Verschiebung von 180 Grad einstellen, wird die Welle zu erst runter gehen. Das gleiche trifft auch bei einer Rechteck-Welle zu. Osc %1 stereo phase-detuning: Oszillator %1 Stereo Phasen-Verschiebung: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Mit diesem Knopf können Sie die Stereo Phasen-Verschiebung von Oszillator %1 setzen. Die Stereo Phasen-Verschiebung gibt die Differenz zwischen den Phasen-Verschiebungen zwischen dem linken und rechten Kanal an. Dies eignet sich gut, um großräumig-klingende Stereo-Klänge zu erzeugen. Use a sine-wave for current oscillator. Sinuswelle für aktuellen Oszillator nutzen. Use a triangle-wave for current oscillator. Dreieckswelle für aktuellen Oszillator nutzen. Use a saw-wave for current oscillator. Sägezahnwelle für aktuellen Oszillator nutzen. Use a square-wave for current oscillator. Rechteckswelle für aktuellen Oszillator nutzen. Use a moog-like saw-wave for current oscillator. Moog-ähnliche Sägezahnwelle für aktuellen Oszillator nutzen. Use an exponential wave for current oscillator. Exponentialwelle für aktuellen Oszillator nutzen. Use white-noise for current oscillator. Weißes Rauschen für aktuellen Oszillator nutzen. Use a user-defined waveform for current oscillator. Benutzerdefinierte Wellenform für aktuellen Oszillator nutzen. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin Anderes VST-Plugin laden Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Klicken Sie hier, um ein anderes VST-Plugin zu öffnen. Nachdem Sie auf diesen Button geklickt haben, erscheint ein Datei-öffnen-Dialog und Sie können Ihre Datei wählen. Show/hide GUI GUI zeigen/verstecken Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Klicken Sie hier, um die grafische Oberfläche (GUI) Ihres VST-Plugins anzuzeigen bzw. zu verstecken. Turn off all notes Alle Noten ausschalten Open VST-plugin VST-Plugin öffnen DLL-files (*.dll) DLL-Dateien (*.dll) EXE-files (*.exe) EXE-Dateien (*.exe) No VST-plugin loaded Kein VST-Plugin geladen Control VST-plugin from LMMS host VST-Plugin von LMMS fernsteuern Click here, if you want to control VST-plugin from host. Klicken Sie hier, um das VST-Plugin von LMMS aus fernzusteuern. Open VST-plugin preset VST-Plugin-Preset öffnen Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Klicken Sie hier, um eine andere *.fxp, *.fxb-Preset-Datei für das VST-Plugin zu laden. Previous (-) Vorheriges (-) Save preset Preset speichern Next (+) Nächstes (+) Click here to select presets that are currently loaded in VST. Klicken Sie hier, um aktuell geladene VST-Presets auszuwählen. Preset Preset Click here, if you want to switch to another VST-plugin preset program. Klicken Sie hier, um zu einem anderen VST-Plugin-Presetprogramm zu wechseln. Click here, if you want to save current VST-plugin preset program. Klicken Sie hier, um das aktuelle VST-Plugin-Presetprogramm zu speichern. by - VST plugin control VstEffectControlDialog Control VST-plugin from LMMS host VST-Plugin von LMMS fernsteuern Click here, if you want to control VST-plugin from host. Klicken Sie hier, um das VST-Plugin von LMMS aus fernzusteuern. Open VST-plugin preset VST-Plugin-Preset öffnen Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Klicken Sie hier, um eine andere *.fxp, *.fxb-Preset-Datei für das VST-Plugin zu laden. Previous (-) Vorheriges (-) Next (+) Nächstes (+) Click here to select presets that are currently loaded in VST. Klicken Sie hier, um aktuell geladene VST-Presets auszuwählen. Save preset Preset speichern Click here, if you want to switch to another VST-plugin preset program. Klicken Sie hier, um zu einem anderen VST-Plugin-Presetprogramm zu wechseln. Click here, if you want to save current VST-plugin preset program. Klicken Sie hier, um das aktuelle VST-Plugin-Presetprogramm zu speichern. Show/hide Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin Lade Plugin Please wait while loading VST-plugin... Bitte warten, während das VST-Plugin geladen wird... Failed loading VST-plugin Laden des VST-Plugins fehlgeschlagen The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Das VST-Plugin %1 konnte aus irgendeinem Grund nicht geladen werden. Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitte einen LMMS-Entwickler! Open Preset Preset öffnen Vst Plugin Preset (*.fxp *.fxb) VST-Plugin-Preset (*.fxp *.fxb) : default " ' Save Preset Preset speichern .fxp .fxp .FXP .FXP .FXB .FXB .fxb .fxb ZynAddSubFxInstrument Portamento Portamento Filter Frequency Filterfrequenz Filter Resonance Filterresonanz Bandwidth Bandbreite FM Gain Resonance Center Frequency Zentrale Resonanzfrequenz Resonance Bandwidth Resonanzbandbreite Forward MIDI Control Change Events MIDI-Control-Change-Ereignisse weiterleiten ZynAddSubFxView Show GUI GUI anzeigen Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Klicken Sie hier, um die grafische Oberfläche von ZynAddSubFX anzuzeigen bzw. auszublenden. Portamento: Portamento: PORT PORT Filter Frequency: Filterfrequenz: FREQ FREQ Filter Resonance: Filterresonanz: RES RES Bandwidth: Bandbreite: BW BW FM Gain: FM GAIN Resonance center frequency: Zentrale Resonanzfrequenz: RES CF Resonance bandwidth: Resonanzbandbreite: RES BW Forward MIDI Control Changes MIDI-Control-Änderungen weiterleiten audioFileProcessor Amplify Verstärkung Start of sample Sample-Anfang End of sample Sample-Ende Reverse sample Sample umkehren Loop Wiederholen Stutter bassBoosterControlDialog FREQ FREQ Frequency: Frequenz: GAIN GAIN Gain: Gain: RATIO RATE Ratio: Rate: bassBoosterControls Frequency Frequenz Gain Gain Ratio Rate bbEditor Play/pause current beat/bassline (Space) Aktuellen Beat/Bassline abspielen/pausieren (Leertaste) Beat+Bassline Editor Beat+Bassline Editor Add beat/bassline Beat/Bassline hinzufügen Add automation-track Automation-Spur hinzufügen Stop playback of current beat/bassline (Space) Abspielen des aktuellen Beats/Bassline stoppen (Leertaste) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. Klicken Sie hier, um den aktuelle Beat/Bassline abzuspielen. Der Beat/Bassline wird am Ende automatisch wiederholt. Click here to stop playing of current beat/bassline. Klicken Sie hier, um das Abspielen des aktuellen Beats/Bassline zu stoppen (Leertaste). Remove steps Steps entfernen Add steps Steps hinzufügen bbTCOView Open in Beat+Bassline-Editor Im Beat+Bassline-Editor öffnen Reset name Name zurücksetzen Change name Name ändern Change color Farbe ändern bbTrack Beat/Bassline %1 Beat/Bassline %1 Clone of %1 Klon von %1 bitInvader Samplelength Sample-Länge bitInvaderView Sample Length Sample-Länge Sine wave Sinus-Welle Triangle wave Dreiecks-Welle Saw wave Sägezahn-Welle Square wave Rechtecks-Welle White noise wave Weißes Rauschen User defined wave Benutzerdefinierte Welle Smooth Glätten Click here to smooth waveform. Klicken Sie hier, um die Wellenform zu glätten. Interpolation Interpolation Normalize Normalisieren Draw your own waveform here by dragging your mouse on this graph. Zeichnen Sie eigene Wellenformen, indem Sie die Maus über den Graph ziehen. Click for a sine-wave. Klick für eine Sinuswelle. Click here for a triangle-wave. Klick für eine Dreieckswelle. Click here for a saw-wave. Klick für eine Sägezahnwelle. Click here for a square-wave. Klick für eine Rechteckswelle. Click here for white-noise. Klick für weißes Rauschen. Click here for a user-defined shape. Klick für eine benutzerdefinierte Wellenform. exportProjectDialog Could not open file Konnte Datei nicht öffnen Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! Die Datei %1 konnte nicht zum Schreiben geöffnet werden. Bitte stellen Sie sicher, dass Sie Schreibrechte auf diese Datei und das Verzeichnis, das diese Datei enthält, besitzen und versuchen es erneut! Error Fehler Error while determining file-encoder device. Please try to choose a different output format. Fehler beim Bestimmen des Datei-Enkoder-Geräts. Bitte wählen Sie ein anderes Ausgabeformat. Rendering: %1% Rendere: %1% Export project to %1 Projekt nach %1 exportieren fader Please enter a new value between %1 and %2: Bitte geben Sie einen neuen Wert zwischen %1 und %2 ein: fileBrowser Browser Browser fileBrowserTreeWidget Send to active instrument-track An aktive Instrumentspur senden Open in new instrument-track/Song-Editor In neuer Instrumentspur im Song-Editor öffnen Open in new instrument-track/B+B Editor In neuer Instrumentspur im B+B-Editor öffnen Loading sample Lade Sample Please wait, loading sample for preview... Bitte warten, lade Sample für Vorschau... --- Factory files --- --- Mitgelieferte Dateien --- graphModel Graph Graph kickerInstrument Start frequency Startfrequenz End frequency Endfrequenz Decay Abfallzeit Distortion Verzerrung Gain Gain kickerInstrumentView Start frequency: Startfrequenz: End frequency: Endfrequenz: Decay: Abfallzeit (decay): Distortion: Verzerrung: Gain: Gain: knob &Help &Hilfe Please enter a new value between %1 and %2: Bitte geben Sie einen neuen Wert zwischen %1 und %2 ein: Please enter a new value between -96.0 dBV and 6.0 dBV: Bitte geben Sie einen Wert zwischen -96.0 dBV und 6.0 dBV ein: ladspaBrowserView Available Effects Verfügbare Effekte Unavailable Effects Nicht verfügbare Effekte Instruments Instrumente Analysis Tools Analysewerkzeuge Don't know Weiß nicht This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. Type: Typ: ladspaDescription Plugins Plugins Description Beschreibung ladspaPortDialog Name Name Rate Rate Direction Richtung Type Typ Min < Default < Max Min < Standard < Max Logarithmic Logarithmisch SR Dependent SR-abhängig Audio Audio Control Steuerung Input Eingang Output Ausgang Toggled Umgeschaltet Integer Ganzahl Float Kommazahl Yes Ja Ports Ports lb302Synth VCF Cutoff Frequency VCF-Kennfrequenz VCF Resonance VCF-Resonanz VCF Envelope Mod VCF-Hüllkurvenintensität VCF Envelope Decay VCF-Hüllkurvenabfallzeit Slide Slide Accent Betonung Dead Slide Decay Slide-Abfallzeit Distortion Verzerrung Waveform Wellenform 24dB/oct Filter 24db/Okt Filter lb302SynthView Cutoff Freq: Kennfrequenz: Resonance: Resonanz: Env Mod: Hüllkurven-Modulation: Decay: Abfallzeit (decay): 303-es-que, 24dB/octave, 3 pole filter Slide Decay: Slide-Abfallzeit: DIST: DIST: Saw wave Sägezahn-Welle Click here for a saw-wave. Klick für eine Sägezahnwelle. Triangle wave Dreiecks-Welle Click here for a triangle-wave. Klick für eine Dreieckswelle. Square wave Rechtecks-Welle Click here for a square-wave. Klick für eine Rechteckswelle. Rounded square wave Abgerundete Rechtecks-Welle Click here for a square-wave with a rounded end. Klick für eine abgerundete Rechtecks-Welle. Moog wave Moog-Welle Click here for a moog-like wave. Klick für eine Moog-ähnliche Welle. Sine wave Sinus-Welle Click for a sine-wave. Klick für eine Sinuswelle. White noise wave Weißes Rauschen Click here for an exponential wave. Klick für eine Exponential-Welle. Click here for white-noise. Klick für weißes Rauschen. lb303Synth VCF Cutoff Frequency VCF-Kennfrequenz VCF Resonance VCF-Resonanz VCF Envelope Mod VCF-Hüllkurvenintensität VCF Envelope Decay VCF-Hüllkurvenabfallzeit Distortion Verzerrung Waveform Wellenform Slide Decay Slide-Abfallzeit Slide Slide Accent Betonung Dead 24dB/oct Filter 24db/Okt Filter lb303SynthView Cutoff Freq: Kennfrequenz: CUT FREQ Resonance: Resonanz: RES RES Env Mod: Hüllkurven-Modulation: ENV MOD ENV-MOD Decay: Abfallzeit (decay): DEC DEC 303-es-que, 24dB/octave, 3 pole filter Slide Decay: Slide-Abfallzeit: SLIDE SLIDE DIST: DIST: DIST DIST WAVE: Wellenform: WAVE WELLE malletsInstrument Marimba Marimba Vibraphone Vibraphon Agogo Agogo Wood1 Holz 1 Reso Reso Wood2 Holz 2 Beats Beats Two Fixed Two Fixed Clump Clump Tubular Bells Glocken in Röhre Uniform Bar Uniform Bar Tuned Bar Tuned Bar Glass Glas Tibetan Bowl Tibetanische Schüssel Hardness Härte Position Position Vibrato Gain Vibrato Gain Vibrato Freq Vibrato-Freq Stick Mix Stick Mix Modulator Modulator Crossfade Crossfade LFO Speed LFO-Geschwindigkeit LFO Depth LFO-Tiefe ADSR ADSR Pressure Druck Motion Bewegung Speed Geschwindigkeit Bowed Gestrichen Spread Weite Missing files Fehlende Dateien Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! Ihre Stk-Installation scheint unvollständig zu sein. Bitte stellen Sie sicher, dass das volle Stk-Paket installiert ist! malletsInstrumentView Instrument Instrument Spread Weite Spread: Weite: Hardness Härte Hardness: Härte: Position Position Position: Position: Vib Gain Vib Gain Vib Gain: Vib Gain: Vib Freq Vib-Freq Vib Freq: Vib-Freq: Stick Mix Stick Mix Stick Mix: Stick Mix: Modulator Modulator Modulator: Modulator: Crossfade Crossfade Crossfade: Crossfade: LFO Speed LFO-Geschwindigkeit LFO Speed: LFO-Geschwindigkeit: LFO Depth LFO-Tiefe LFO Depth: LFO-Tiefe: ADSR ADSR ADSR: ADSR: Bowed Gestrichen Pressure Druck Pressure: Druck: Motion Bewegung Motion: Bewegung: Speed Geschwindigkeit Speed: Geschwindigkeit: Vibrato Vibrato Vibrato: Vibrato: manageVSTEffectView VST Sync VST-Sync Click here if you want to synchronize all parameters with VST plugin. Klicken Sie hier, um alle Parameter mit dem VST-Plugin zu synchronisieren. - VST parameter control Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView VST Sync VST-Sync Click here if you want to synchronize all parameters with VST plugin. Klicken Sie hier, um alle Parameter mit dem VST-Plugin zu synchronisieren. - VST plugin control Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help &Hilfe opl2instrument Patch Patch Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Verzerrung Volume Lautstärke organicInstrumentView Osc %1 volume: Oszillator %1 Lautstärke: Randomise Zufallswerte Osc %1 waveform: Oszillator %1 Wellenform: Osc %1 panning: Oszillator %1 Balance: Osc %1 fine detuning left: Oszillator %1 Fein-Verstimmung links: cents Cent Distortion: Verzerrung: Volume: Lautstärke: papuInstrument Sweep time Sweep direction Sweep RtShift amount Wave Pattern Duty Channel 1 volume Volume sweep direction Length of each step in sweep Channel 2 volume Channel 3 volume Channel 4 volume Right Output level Left Output level Channel 1 to SO2 (Left) Channel 2 to SO2 (Left) Channel 3 to SO2 (Left) Channel 4 to SO2 (Left) Channel 1 to SO1 (Right) Channel 2 to SO1 (Right) Channel 3 to SO1 (Right) Channel 4 to SO1 (Right) Treble Bass Shift Register width papuInstrumentView Sweep Time: Sweep Time Sweep RtShift amount: Sweep RtShift amount Wave pattern duty: Wave Pattern Duty Square Channel 1 Volume: Length of each step in sweep: Length of each step in sweep Wave pattern duty Square Channel 2 Volume: Square Channel 2 Volume Wave Channel Volume: Wave Channel Volume Noise Channel Volume: Noise Channel Volume SO1 Volume (Right): SO1 Volume (Right) SO2 Volume (Left): SO2 Volume (Left) Treble: Treble Bass: Bass Sweep Direction Volume Sweep Direction Shift Register Width Channel1 to SO1 (Right) Channel2 to SO1 (Right) Channel3 to SO1 (Right) Channel4 to SO1 (Right) Channel1 to SO2 (Left) Channel2 to SO2 (Left) Channel3 to SO2 (Left) Channel4 to SO2 (Left) Wave Pattern The amount of increase or decrease in frequency The rate at which increase or decrease in frequency occurs The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Square Channel 1 Volume The delay between step change Draw the wave here pattern Cannot freeze pattern Kann Pattern nicht einfrieren The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! Der Pattern kann derzeit nicht eingefroren werden, da Sie sich im Abspiel-Modus befinden. Bitte stoppen Sie und versuchen es erneut! patternFreezeStatusDialog Freezing pattern... Friere Pattern ein... Cancel Abbrechen patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step Doppelklick, um diesen Pattern im Piano-Roll zu öffnen Lautstärke eines Steps kann mit Mausrad geändert werden Open in piano-roll Im Piano-Roll öffnen Clear all notes Alle Noten löschen Reset name Name zurücksetzen Change name Name ändern Refreeze Erneut einfrieren Freeze Einfrieren Unfreeze Ausfrieren Add steps Steps hinzufügen Remove steps Steps entfernen PianoRoll Cut selected notes (Ctrl+X) Ausgewählte Noten ausschneiden (Strg+X) Copy selected notes (Ctrl+C) Ausgewählte Noten kopieren (Strg+C) Paste notes from clipboard (Ctrl+V) Noten aus Zwischenablage einfügen (Strg+V) Play/pause current pattern (Space) Aktuellen Pattern abspielen/pausieren (Leertaste) Stop playing of current pattern (Space) Abspielen des aktuellen Patterns stoppen (Leertaste) Piano-Roll - %1 Piano-Roll - %1 Piano-Roll - no pattern Piano-Roll - Kein Pattern Please open a pattern by double-clicking on it! Bitte öffnen Sie einen Pattern, indem Sie ihn doppelklicken! Record notes from MIDI-device/channel-piano Noten von MIDI-Gerät/Kanal-Klavier aufnehmen Last note Letzte Note Draw mode (Shift+D) Zeichnen-Modus (Umschalt+D) Erase mode (Shift+E) Radier-Modus (Umschalt+E) Select mode (Shift+S) Auswahl-Modus (Umschalt+S) Record notes from MIDI-device/channel-piano while playing song or BB track Noten vom MIDI-Gerät/Kanal-Klavier aufnehmen während der Song oder BB-Track abgespielt wird Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Klicken Sie hier, um den aktuellen Pattern abzuspielen. Das ist nützlich beim Bearbeiten. Der Pattern wird automatisch wiederholt, wenn sein Ende erreicht ist. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Klicken Sie hier, um Noten von einem MIDI-Gerät oder dem virtuellen Test-Klavier des zugehörigen Kanal-Fensters in den aktuellen Pattern aufzunehmen. Beim Aufnehmen werden alle Noten, die Sie spielen, in diesen Pattern geschrieben und hinterher können Sie diese abspielen und bearbeiten. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Click here to stop playback of current pattern. Klicken Sie hier, um die Wiedergabe des aktuellen Patterns zu stoppen. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Klicken Sie hier, um die markierten Noten in die Zwischenablage auszuschneiden. Sie können sie überall in einem beliebigen Pattern wieder einfügen, indem Sie auf den Einfügen-Button klicken. Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Klicken Sie hier, um die markierten Noten in die Zwischenablage zu kopieren. Sie können sie überall in einem beliebigen Pattern wieder einfügen, indem Sie auf den Einfügen-Button klicken. Click here and the notes from the clipboard will be pasted at the first visible measure. Klicken Sie hier, um die Noten aus der Zwischenablage im ersten sichtbaren Takt einzufügen. Note lock Note Volume Noten-lautstärke Note Panning Detune mode (Shift+T) Verstimmungsmodus (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Mark/unmark current semitone Aktuellen Halbton markieren/demarkieren Mark current scale Aktuelle Tonleite markieren Mark current chord Aktuellen Akkord markieren Unmark all Alles Markierungen entfernen No scale Keine Tonleiter No chord Kein Akkord pluginBrowser Instrument plugins Instrument-Plugins three powerful oscillators you can modulate in several ways Drei leistungsfähige Oszillatoren, die Sie auf verschiedene Art und Weise modulieren können VST-host for using VST(i)-plugins within LMMS VST-Host zum Benutzen von VST(i)-Plugins innerhalb von LMMS no description keine Beschreibung Additive Synthesizer for organ-like sounds Additiver Synthesizer für orgelähnliche Klänge Vibrating string modeler Modellierung schwingender Saiten Filter for importing MIDI-files into LMMS Filter, um MIDI-Dateien in LMMS zu importieren simple sampler with various settings for using samples (e.g. drums) in an instrument-track Einfacher Sampler mit verschiedenen Einstellungen zur Nutzung von Samples (z.B. Drums) in einer Instrument-Spur Filter for importing FL Studio projects into LMMS Filter für Import von FL Studio Projekten in LMMS Tuneful things to bang on Gegenstände, die nach etwas klingen, wenn man drauf rumkloppt plugin for using arbitrary LADSPA-effects inside LMMS. Plugin, um beliebige LADSPA-Effekte in LMMS nutzen zu können. plugin for using arbitrary VST-effects inside LMMS. Plugin um beliebige VST-Effekte in LMMS nutzen zu können. Incomplete monophonic imitation tb303 Unvollständiger monophonischer TB303-Klon versatile kick- & bassdrum-synthesizer Vielfältiger Kick- & Bassdrum-Synthesizer GUS-compatible patch instrument GUS-kompatibles Patch-Instrument Plugin for enhancing stereo separation of a stereo input file Plugin zur Erweiterung des Stereo-Klangeindrucks List installed LADSPA plugins Installierte LADSPA-Plugins auflisten plugin for boosting bass Plugin zur Bass-Verstärkung Plugin for freely manipulating stereo output Plugin zur freien Manipulation der Stereoausgabe Plugin for controlling knobs with sound peaks Plugin zur Kontrolle von Knöpfen mit Hilfe von Klangspitzen Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulation des MOS6581 und MOS8580 SID Chips. Dieser Chip wurde in Commodore 64 Computern genutzt. Instrument browser Instrument-Browser Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. Ziehen Sie ein Instrument entweder in den Song-Editor, den Beat+Bassline-Editor oder in eine existierende Instrumentspur. Player for SoundFont files Wiedergabe von SoundFont-Dateien Emulation of GameBoy (TM) APU Emulation des GameBoy (TM) APU Customizable wavetable synthesizer Flexibler Wavetable-Synthesizer Embedded ZynAddSubFX Eingebettetes ZynAddSubFX-Plugin 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Put down your project notes here. Schreiben Sie hier Ihre Projekt-Notizen auf. Project notes Projekt-Notizen Edit Actions Bearbeiten &Undo &Rückgängig Ctrl+Z Strg+Z &Redo Wiede&rholen Ctrl+Y Strg+Y &Copy &Kopieren Ctrl+C Strg+C Cu&t A&usschneiden Ctrl+X Strg+X &Paste &Einfügen Ctrl+V Strg+V Format Actions Formatierung &Bold &Fett Ctrl+B Strg+F &Italic &Kursiv Ctrl+I Strg+K &Underline &Unterstrichen Ctrl+U Strg+U &Left &Links Ctrl+L Strg+L C&enter Z&entriert Ctrl+E Strg+Z &Right &Rechts Ctrl+R Strg+R &Justify &Blocksatz Ctrl+J Strg+J &Color... &Farbe... renameDialog Rename... Umbenennen... setupDialog Setup LMMS Einrichtung von LMMS General settings Allgemeine Einstellungen BUFFER SIZE PUFFERGRÖSSE Reset to default-value Auf Standardwert zurücksetzen MISC VERSCHIEDENES Audio settings Audio-Einstellungen AUDIO INTERFACE AUDIO-SCHNITTSTELLE MIDI settings MIDI-Einstellungen MIDI INTERFACE MIDI-SCHNITTSTELLE OK OK Cancel Abbrechen Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Hier können Sie die interne Puffergröße einstellen, die von LMMS genutzt wird. Kleinere Werte machen sich in einer geringeren Latenz bemerkbar, können aber auch zu unbrauchbarem Sound oder schlechter Performance führen, vor allem auf älteren Computern oder Systemen mit einem Nicht-Echtzeit-Kernel. Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Hier können Sie Ihre bevorzugte Audio-Schnittstelle auswählen. Abhängig von der Konfiguration Ihres Systems während der Compilierung können Sie zwischen ALSA, JACK, OSS und mehr wählen. Unterhalb sehen Sie eine Box, welche Kontrollelemente anbietet, um die gewählte Audio-Schnittstelle einzurichten. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Hier können Sie Ihre bevorzugte MIDI-Schnittstelle auswählen. Abhängig von der Konfiguration Ihres Systems während der Compilierung können Sie zwischen ALSA, OSS und mehr wählen. Unterhalb sehen Sie eine Box, welche Kontrollelemente anbietet, um die gewählte MIDI-Schnittstelle einzurichten. Restart LMMS LMMS neustarten Please note that most changes won't take effect until you restart LMMS! Bitte beachten Sie, dass die meisten Änderungen erst wirksam werden, nachdem Sie LMMS neugestartet haben! LMMS working directory LMMS-Arbeitsverzeichnis VST-plugin directory VST-Plugin-Verzeichnis Choose LMMS working directory LMMS-Arbeitsverzeichnis wählen Choose your VST-plugin directory Wählen Sie Ihre VST-Plugin-Verzeichnis Performance settings Performance-Einstellungen UI effects vs. performance UI-Effekte vs. Performance Frames: %1 Latency: %2 ms Frames: %1 Latenz: %2 ms Artwork directory Artwork-Verzeichnis Choose artwork-theme directory Artwork-Verzeichnis wählen Display volume as dBV Lautstärke in dBV anzeigen FL Studio installation directory FL Studio Installationsverzeichnis Choose FL Studio installation directory FL Studio Installationsverzeichnis wählen STK rawwave directory STK RawWave-Verzeichnis Choose LADSPA plugin directory Wählen Sie Ihr LADSPA-Plugin-Verzeichnis Choose STK rawwave directory Wählen Sie Ihr STK-RawWave-Verzeichnis Enable tooltips Tooltips aktivieren Show restart warning after changing settings Meldung nach Schließen dieses Dialogs zeigen Compress project files per default Projektdateien standardmäßig komprimieren HQ-mode for output audio-device HQ-Modus für Ausgabe-Audiogerät Paths Pfade LADSPA plugin paths LADSPA-Pluginpfade Default Soundfont File Standard SoundFont-Datei Background artwork Hintergrundbild Choose default SoundFont Standard-Soundfont wählen Choose background artwork Hintergrundbild wählen One instrument track window mode Instrumente im Ein-Fenster-Modus Compact track buttons Kompakte Track-Buttons Smooth scroll in Song Editor Weiches Scrollen im Song-Editor Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Bank Bank Patch Patch Gain Gain Reverb Hall Reverb Roomsize Hall/Raumgröße Reverb Damping Hall/Dämpfung Reverb Width Hall/Weite Reverb Level Hall/Stärke Chorus Chorus Chorus Lines Chorus Level Chorus/Stärke Chorus Speed Chorus/Geschwindigkeit Chorus Depth Chorus/Tiefe sf2InstrumentView Open other SoundFont file Eine andere SoundFont-Datei öffnen Click here to open another SF2 file Klicken Sie hier, um eine andere SF2-Datei zu öffnen Choose the patch Patch wählen Open SoundFont file SoundFont-Datei öffnen Gain Gain Apply reverb (if supported) Hall anwenden (wenn unterstützt) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. Dieser Knopf aktiviert den Hall-Effekt, welcher jedoch nur mit Dateien funktioniert, die dies unterstützen. Reverb Roomsize: Hall/Raumgröße: Reverb Damping: Hall/Dämpfung: Reverb Width: Hall/Weite: Reverb Level: Reverb/Stärke: Apply chorus (if supported) Chorus-Effekt anwenden (wenn unterstützt) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Dieser knopf aktiviert den Chorus-Effekt. Das ist nützlich für Echo-Effekte, funktioniert jedoch nur mit Dateien, die dies unterstützen. Chorus Lines: Chorus Level: Chorus/Stärke: Chorus Speed: Chorus/Geschwindigkeit: Chorus Depth: Chorus/Tiefe: SoundFont2 Files (*.sf2) SoundFont2-Dateien (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Kennfrequenz Resonance Resonanz Filter type Filtertyp Voice 3 off Stimme 3 lautlos Volume Lautstärke Chip model Chipmodell sidInstrumentView Volume: Lautstärke: Resonance: Resonanz: Cutoff frequency: Kennfrequenz: High-Pass filter Hochpass-Filter Band-Pass filter Bandpass-Filter Low-Pass filter Tiefpass-Filter Voice3 Off Stimme 3 lautlos MOS6581 SID MOS6581 SID MOS8580 SID MOS8580 SID Attack: Anschwellzeit (attack): Decay: Abfallzeit (decay): Sustain: Dauerpegel (sustain): Release: Ausklingzeit (release): Pulse Width: Pulsweite: Coarse: Grob: Pulse Wave Puls-Signal Triangle Wave Dreiecks-Welle SawTooth Sägezahn-Welle Noise Rauschen Sync Synchron Ring-Mod Ringmodulation Filtered Gefiltert Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. The Coarse detuning allows to detune Voice %1 one octave up or down. Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Test Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. song Project saved Projekt gespeichert The project %1 is now saved. Das Projekt %1 ist nun gespeichert. Project NOT saved. Projekt NICHT gespeichert. The project %1 was not saved! Das Projekt %1 wurde nicht gespeichert! Import file Datei importieren untitled unbenannt Select file for project-export... Datei für Projekt-Export wählen... Tempo Tempo Master volume Master-Lautstärke Master pitch Master-Tonhöhe Empty project Leeres Projekt This project is empty so exporting makes no sense. Please put some items into Song Editor first! DIeses Projekt ist leer, weshalb das Exportieren keinen Sinn macht. Bitte erstellen Sie erst ein paar Einträge im Song-Editor! MIDI sequences MIDI-Dateien FL Studio projects FL Studio Projekte All file types Alle Dateitypen Hydrogen projects Select directory for writing exported tracks... SongEditor Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. Klicken Sie hier, wenn Sie das Abspielen des Songs stoppen wollen. Der Song-Positions-Marker wird automatisch auf den Song-Anfang zurückgesetzt. Could not open file Konnte Datei nicht öffnen Could not write file Konnte Datei nicht schreiben Song-Editor Song-Editor Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. Klicken Sie hier, wenn Sie Ihren ganzen Song abspielen wollen. Das Abspielen wird am Song-Positions-Marker (grün) gestartet. Sie können diesen auch während des Abspielens verschieben. Play song (Space) Song abspielen (Leertaste) Stop song (Space) Abspielen des Songs stoppen (Leertaste) Add beat/bassline Beat/Bassline hinzufügen Add sample-track Sample-Spur hinzufügen Draw mode Zeichen-Modus Edit mode (select and move) Editier-Modus (auswählen und verschieben) Add automation-track Automation-Spur hinzufügen Record samples from Audio-device Samples vom Audiogerät aufnehmen Record samples from Audio-device while playing song or BB track Samples vom Audiogerät während der Wiedergabe des Songs oder BB-Tracks aufnehmen Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Konnte die Datei %1 nicht öffnen. Sie sind wahrscheinlich nicht berechtigt, diese Datei zu lesen. Bitte stellen Sie sicher, dass Sie wenigstens Leserechte auf diese Datei besitzen und versuchen es erneut. Error in file Fehler in Datei The file %1 seems to contain errors and therefore can't be loaded. Die Datei %1 scheint fehlerhaft zu sein und kann daher nicht geladen werden. Tempo Tempo TEMPO/BPM TEMPO/BPM tempo of song Geschwindigkeit des Songs The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). Das Tempo eines Liedes wird in Beats pro Minute (BPM) angegeben. Wenn Sie das Tempo Ihres Songs ändern wollen, ändern Sie diesen Wert. Jeder Takt hat vier Schläge (Beats); das Tempo gibt also an, wie viele Takte / 4 innerhalb einer Minute gespielt werden sollen (bzw. wie viele Takte innerhalb von vier Minuten gespielt werden sollen). High quality mode High-Quality-Modus Master volume Master-Lautstärke master volume Master-Lautstärke Master pitch Master-Tonhöhe master pitch Master-Tonhöhe Value: %1% Wert: %1% Value: %1 semitones Wert: %1 Halbtöne Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Lineares Spektrum Linear Y axis Lineare Y-Achse spectrumAnalyzerControls Linear spectrum Lineares Spektrum Linear Y-axis Lineare Y-Axe Channel mode Kanalmodus stereoEnhancerControlDialog WIDE WEITE Width: Weite: stereoEnhancerControls Width Weite stereoMatrixControlDialog Left to Left Vol: Links-nach-links Lautstärke: Left to Right Vol: Links-nach-rechts Lautstärke: Right to Left Vol: Rechts-nach-links Lautstärke: Right to Right Vol: Rechts-nach-rechts Lautstärke: stereoMatrixControls Left to Left Links-nach-links Left to Right Links-nach-rechts Right to Left Rechts-nach-links Right to Right Rechts-nach-rechts timeLine Enable/disable auto-scrolling Automatisches Scrollen aktivieren/deaktivieren Enable/disable loop-points Loop-Punkte aktivieren/deaktivieren After stopping go back to begin Nach Stop zum Anfang zurückkehren After stopping go back to position at which playing was started Nach Stop zur Position zurückkehren, an der es los ging After stopping keep position Nach Stop Position beibehalten Hint Tipp Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted Stumm Solo Solo trackContentObject Muted Stumm trackContentObjectView Current position Aktuelle Position Hint Tipp Current length Aktuelle Länge Press <Ctrl> for free resizing. Drücken Sie <Strg> für freie Größenänderung. %1:%2 (%3:%4 to %5:%6) %1:%2 (%3:%4 bis %5:%6) Delete (middle mousebutton) Löschen (mittlere Maustaste) Cut Ausschneiden Copy Kopieren Paste Einfügen Mute/unmute (<Ctrl> + middle click) Stumm/Laut schalten (<Strg> + Mittelklick) Press <Ctrl> and drag to make a copy. <Strg> drücken und ziehen, um eine Kopie zu erstellen. trackOperationsWidget Clone this track Diese Spur klonen Remove this track Diese Spur entfernen Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Drücken Sie <Strg> während des Klicks auf den Verschiebe-Griff, um eine neue Drag'n'Drop-Aktion zu beginnen. Actions for this track Aktionen für diese Spur Mute Stumm Mute this track Diese Spur stummschalten Solo Solo vestigeInstrument Failed loading VST-plugin Laden des VST-Plugins fehlgeschlagen The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Das VST-Plugin %1 konnte aus irgendeinem Grund nicht geladen werden. Wenn es mit anderer VST-software unter Linux funktioniert, kontaktieren Sie bitte einen LMMS-Entwickler! Loading plugin Lade Plugin Please wait while loading VST-plugin... Bitte warten, während das VST-Plugin geladen wird... vibed String %1 volume Seite %1 Lautstärke String %1 stiffness Seite %1 Härte Pick %1 position Zupf-Position %1 Pickup %1 position Abnehmer-Position %1 Pan %1 Detune %1 Verstimmung %1 Fuzziness %1 Unschärfe %1 Length %1 Länge %1 Impulse %1 Impuls %1 Octave %1 Oktave %1 vibedView Volume: Lautstärke: The 'V' knob sets the volume of the selected string. Der 'V'-Knopf setzt die Lautstärke der gewählten Saite. String stiffness: Härte der Saite: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. Der 'S'-Knopf setzt die Härte der gewählten Saite. Die Härte der Saite beeinflusst deren Ausklang-Dauer. Je kleiner die Einstellung, desto länger klingt die Saite aus. Pick position: Zupf-Position: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. Der 'P'-Knopf bestimmt die Position, an der die Saite angezupft wird. Je kleiner die Einstellung, desto näher wird am Steg gezupft. Pickup position: Abnehmer-Position: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. Der 'PU'-Knopf bestimmt die Position, an der die Schwingungen an der gewählten Saite abgenommen werden. Je kleiner die Einstellung, desto näher ist der Abnehmer am Steg. Pan: Balance: The Pan knob determines the location of the selected string in the stereo field. Der Balance-Knopf bestimmt den Ort der gewählten Saite im Stereo-Raum. Detune: Verstimmung: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. Der Verstimmungs-Knopf verändert die Tonhöhe der gewählten Saite. Einstellungen kleiner als 0 lassen die Saite flacher klingen, während Werte über 0 zu einem eher scharfen Klang führen. Fuzziness: Unschärfe: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. Der Unschärfe-Knopf fügt dem Klang der Saite etwas 'Fuzz' hinzu, welcher hauptsächlich während des Anschlages zum Tragen kommt, wenngleich er auch genutzt werden kann, um den Klang etwas metallischer zu gestalten. Length: Länge: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. Der Länge-Knopf bestimmt die Länge der gewählten Saite. Längere Saiten klingen länger und klingen heller, wobei sie gleichzeitig auch mehr CPU-Leistung fressen. Impulse or initial state Impuls oder Grundstellung The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. Mit dem 'Imp'-Knopf legen Sie fest, ob die Wellenform in diesem Graph als Impuls zum Anzupfen der Saite oder als Grundstellung für die Saite genutzt werden soll. Octave Okatve The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. Mit dem Oktaven-Wähler kann der Oktavenversatz gegenüber der Note verändert werden. So meint beispielsweise eine Einstellung von '-2', dass die Saite zwei Oktaven unterhalb des Grundtons ('F') schwingen wird und '6' dementsprechend 6 Oktaven über dem Grundton. Impulse Editor Impuls-Editor The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. Der Wellenform-Editor ermöglicht die Kontrolle über die Grundstellung oder den Impuls, der genutzt wird, um die Saite zum Schwingen zu bringen. Die Buttons rechts des Graphes initialisieren die Wellenform mit dem gewünschten Typ. Der '?'-Button lässt Sie eine Wellenform aus einer Datei laden - allerdings werden nur die ersten 128 Samples geladen. Die Wellenform kann ebenfalls in dem Graph gezeichnet werden. Der 'S'-Button glättet die Wellenform. Der 'N'-Button normalisiert die Wellenform. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Vibed modelliert bis zu 9 unabhängige schwingende Saiten. Der Saiten-Wähler ermöglicht die Wahl der gerade aktiven Saite. Der 'Imp'-Knopf bestimmt, ob der Graph einen Impuls oder die Grundstellung der Saite repräsentiert. Der Oktaven-Wähler gibt den Oktavenversatz der Saite gegenüber dem Grundton an. Der Graph ermöglicht die Kontrolle über die Grundstellung der Saite oder den Impuls, der zum Anzupfen der Saite genutzt wird. Der 'V'-Knopf bestimmt die Lautstärke. Mit dem 'S'-Knopf wird die Härte der Saite eingestellt. Der 'P'-Knopf beeinflusst den Ort, an dem die Saite angezupft wird, während der 'PU'-Knopf die Position des Abnehmers bestimmt. 'Balance' und 'Verstimmung' bedürfen hoffentlich keiner Erklärung. Der Unschärfe-Knopf fügt dem Klang der Saite etwas 'Fuzz' hinzu. Der Länge-Knopf bestimmt die Länge der Saite. Die LED rechts unterhalb der Wellenform gibt an, ob die Saite aktiviert ist. Enable waveform Wellenform aktivieren Click here to enable/disable waveform. Hier klicken, um die Wellenform zu aktivieren/deaktiveren. String Saite The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. Der Saiten-Wähler bestimmt die derzeit bearbeitete Saite. Ein Vibed-Instrument kann aus bis zu neun voneinander unabhängig schwingenden Saiten bestehen. Die LED in der Ecke rechts unterhalb der Wellenform gibt an, ob die gewählte Saite aktiv ist. Sine wave Sinus-Welle Triangle wave Dreiecks-Welle Saw wave Sägezahn-Welle Square wave Rechtecks-Welle White noise wave Weißes Rauschen User defined wave Benutzerdefinierte Welle Smooth Glätten Click here to smooth waveform. Klicken Sie hier, um die Wellenform zu glätten. Normalize Normalisieren Click here to normalize waveform. Hier klicken, um die Wellenform zu normalisieren. &Help &Hilfe Use a sine-wave for current oscillator. Sinuswelle für aktuellen Oszillator nutzen. Use a triangle-wave for current oscillator. Dreieckswelle für aktuellen Oszillator nutzen. Use a saw-wave for current oscillator. Sägezahnwelle für aktuellen Oszillator nutzen. Use a square-wave for current oscillator. Rechteckswelle für aktuellen Oszillator nutzen. Use white-noise for current oscillator. Weißes Rauschen für aktuellen Oszillator nutzen. Use a user-defined waveform for current oscillator. Benutzerdefinierte Wellenform für aktuellen Oszillator nutzen. visualizationWidget click to enable/disable visualization of master-output klicken, um Visualisierung des Masterausgangs an-/auszuschalten Click to enable Klick zur Aktivierung voiceObject Voice %1 pulse width Stimme %1 Pulsweite Voice %1 attack Stimme %1 Anschwellzeit Voice %1 decay Stimme %1 Abfallzeit Voice %1 sustain Stimme %1 Haltepegel Voice %1 release Stimme %1 Release Voice %1 coarse detuning Stimme %1 Grob-Verstimmung Voice %1 wave shape Stimme %1 Wellenform Voice %1 sync Stimme %1 Sync Voice %1 ring modulate Stimme %1 Ringmodulation Voice %1 filtered Stimme %1 gefiltert Voice %1 test lmms-1.0.0+bzr2569/data/locale/en.qm0000644000000000000000000000002011270620325015024 0ustar 00000000000000 AboutDialog About LMMS LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) About LMMS - easy music production for everyone Authors Translation Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! License Copyright (c) 2004-2014, LMMS developers <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE CHANNELS AudioFileProcessorView Open other sample Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Reverse sample If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Loop sample at start- and end-point Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Amplify: With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Startpoint: With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Endpoint: With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. JACK server down The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack::setupWidget CLIENT-NAME CHANNELS AudioOss::setupWidget DEVICE CHANNELS AudioPortAudio::setupWidget BACKEND DEVICE AudioPulseAudio::setupWidget DEVICE CHANNELS AudioSdl::setupWidget DEVICE AutomatableModel &Reset (%1%2) &Copy value (%1%2) &Paste value (%1%2) Edit song-global automation Connected to %1 Connected to controller Edit connection... Remove connection Connect to controller... Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) Stop playing of current pattern (Space) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Click here if you want to stop playing of the current pattern. Draw mode (Shift+D) Erase mode (Shift+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. Cut selected values (Ctrl+X) Copy selected values (Ctrl+C) Paste values from clipboard (Ctrl+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the values from the clipboard will be pasted at the first visible measure. Automation Editor - no pattern Automation Editor - %1 Please open an automation pattern with the context menu of a control! Values copied All selected values were copied to the clipboard. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> AutomationPatternView double-click to open this pattern in automation editor Open in Automation editor Clear Reset name Change name %1 Connections Disconnect "%1" AutomationTrack Automation track Controller Controller %1 ControllerConnectionDialog Connection Settings MIDI CONTROLLER Input channel CHANNEL Input controller CONTROLLER Auto Detect MIDI-devices to receive MIDI-events from USER CONTROLLER MAPPING FUNCTION OK Cancel LMMS Cycle Detected. ControllerRackView Controller Rack Add Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls Controllers are able to automate the value of a knob, slider, and other controls. Rename controller Enter the new name for this controller &Remove this plugin &Help Effect Effect enabled Wet/Dry mix Gate Decay EffectChain Effects enabled EffectRackView EFFECTS CHAIN Add effect EffectSelectDialog Add effect Plugin description EffectView Toggles the effect on or off. On/Off W/D Wet Level: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. DECAY Time: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. GATE Gate: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. Controls Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. Move &up Move &down &Remove this plugin &Help EnvelopeAndLfoParameters Predelay Attack Hold Decay Sustain Release Modulation LFO Predelay LFO Attack LFO speed LFO Modulation LFO Wave Shape Freq x 100 Modulate Env-Amount EnvelopeAndLfoView DEL Predelay: Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. ATT Attack: Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. HOLD Hold: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. DEC Decay: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. SUST Sustain: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. REL Release: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. AMT Modulation amount: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. LFO predelay: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. LFO- attack: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. SPD LFO speed: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave for current. Click here for a square-wave. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. FREQ x 100 Click here if the frequency of this LFO should be multiplied by 100. multiply LFO-frequency by 100 MODULATE ENV-AMOUNT Click here to make the envelope-amount controlled by this LFO. control envelope-amount by this LFO ms/LFO: Hint Drag a sample from somewhere and drop it in this window. ExportProjectDialog Export project Output File format: Samplerate: 44100 Hz 48000 Hz 88200 Hz 96000 Hz 192000 Hz Bitrate: 64 KBit/s 128 KBit/s 160 KBit/s 192 KBit/s 256 KBit/s 320 KBit/s Depth: 16 Bit Integer 32 Bit Float Please note that not all of the parameters above apply for all file formats. Quality settings Interpolation: Zero Order Hold Sinc Fastest Sinc Medium (recommended) Sinc Best (very slow!) Oversampling (use with care!): 1x (None) 2x 4x 8x Sample-exact controllers Alias-free oscillators Start Cancel Export as loop (remove end silence) FxMixer Master FX %1 FxMixerView Rename FX channel Enter the new name for this FX channel FX-Mixer FX Fader %1 Mute Mute this FX channel InstrumentFunctionArpeggio Arpeggio Arpeggio type Arpeggio range Arpeggio time Arpeggio gate Arpeggio direction Arpeggio mode Up Down Up and down Random Free Sort Sync InstrumentFunctionArpeggioView ARPEGGIO An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. RANGE Arpeggio range: octave(s) Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. TIME Arpeggio time: ms Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. GATE Arpeggio gate: % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Chord: Direction: Mode: InstrumentFunctionNoteStacking octave Major Majb5 minor minb5 sus2 sus4 aug augsus4 tri 6 6sus4 6add9 m6 m6add9 7 7sus4 7#5 7b5 7#9 7b9 7#5#9 7#5b9 7b5b9 7add11 7add13 7#11 Maj7 Maj7b5 Maj7#5 Maj7#11 Maj7add13 m7 m7b5 m7b9 m7add11 m7add13 m-Maj7 m-Maj7add11 m-Maj7add13 9 9sus4 add9 9#5 9b5 9#11 9b13 Maj9 Maj9sus4 Maj9#5 Maj9#11 m9 madd9 m9b5 m9-Maj7 11 11b9 Maj11 m11 m-Maj11 13 13#9 13b9 13b5b9 Maj13 m13 m-Maj13 Harmonic minor Melodic minor Whole tone Diminished Major pentatonic Minor pentatonic Jap in sen Major bebop Dominant bebop Blues Arabic Enigmatic Neopolitan Neopolitan minor Hungarian minor Dorian Phrygolydian Lydian Mixolydian Aeolian Locrian Chords Chord type Chord range Minor InstrumentFunctionNoteStackingView RANGE Chord range: octave(s) Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT CHANNEL VELOCITY ENABLE MIDI OUTPUT PROGRAM MIDI devices to receive MIDI events from MIDI devices to send MIDI events to NOTE InstrumentSoundShaping VOLUME Volume CUTOFF Cutoff frequency RESO Resonance Envelopes/LFOs Filter type Q/Resonance LowPass HiPass BandPass csg BandPass czpg Notch Allpass Moog 2x LowPass RC LowPass 12dB RC BandPass 12dB RC HighPass 12dB RC LowPass 24dB RC BandPass 24dB RC HighPass 24dB Vocal Formant Filter InstrumentSoundShapingView TARGET These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! FILTER Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... RESO Resonance: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. FREQ cutoff frequency: InstrumentTrack unnamed_track Volume Panning Pitch FX channel Default preset With this knob you can set the volume of the opened channel. Base note Pitch range InstrumentTrackView Volume Volume: VOL Panning Panning: PAN MIDI Input Output InstrumentTrackWindow GENERAL SETTINGS Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. Instrument volume Volume: VOL Panning Panning: PAN Pitch Pitch: cents PITCH FX channel ENV/LFO FUNC FX MIDI Save preset XML preset file (*.xpf) PLUGIN Save current channel settings in a preset-file Pitch range (semitones) RANGE LadspaControl Link channels LadspaControlDialog Link Channels Channel LadspaControlView Link channels Value: Sorry, no help available. LadspaEffect Effect Unknown LADSPA plugin %1 requested. LfoController LFO Controller Base value Oscillator speed Oscillator amount Oscillator phase Oscillator waveform Frequency Multiplier LfoControllerDialog LFO LFO Controller BASE Base amount: todo SPD LFO-speed: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. AMT Modulation amount: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. PHS Phase offset: degrees With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for a a moog saw-wave. Click here for an exponential wave. Click here for white-noise. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. Could not save config-file Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. &Project &New &Open... Recently opened projects &Save Save &As... Import... E&xport... &Quit &Edit Settings &Tools &Help Online help Help What's this? About Create new project Create new project from template Open existing project Recently opened project Save current project Export current project Show/hide Song-Editor By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. Show/hide Beat+Bassline Editor By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. Show/hide Piano-Roll Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. Show/hide Automation Editor Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Show/hide FX Mixer Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Show/hide project notes Click here to show or hide the project notes window. In this window you can put down your project notes. Show/hide controller rack Untitled LMMS %1 Project not saved The current project was modified since last saving. Do you want to save it now? Open project Save project Help not available Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. My projects My samples My presets My home My computer Root directory Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 Project recovery It looks like the last session did not end properly. Do you want to recover the project of this session? Configuration file Error while parsing configuration file at line %1:%2: %3 MeterDialog Meter Numerator Meter Denominator TIME SIG MeterModel Numerator Denominator MidiAlsaRaw::setupWidget DEVICE MidiAlsaSeq::setupWidget DEVICE MidiController MIDI Controller unnamed_midi_controller MidiImport Setup incomplete You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiOss::setupWidget DEVICE MidiPort Input channel Output channel Input controller Output controller Fixed input velocity Fixed output velocity Output MIDI program Receive MIDI-events Send MIDI-events Fixed output note OscillatorObject Osc %1 volume Osc %1 panning Osc %1 coarse detuning Osc %1 fine detuning left Osc %1 fine detuning right Osc %1 phase-offset Osc %1 stereo phase-detuning Osc %1 wave shape Modulation type %1 Osc %1 waveform PatmanView Open other patch Click here to open another patch-file. Loop and Tune settings are not reset. Loop Loop mode Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. Tune Tune mode Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. No file selected Open patch file Patch-Files (*.pat) PeakController Peak Controller Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK LFO Controller PeakControllerEffectControlDialog BASE Base amount: Modulation amount: Attack: Release: AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Modulation amount Mute output Attack Release Abs Value Amount Multiplicator PianoView Base note Plugin Plugin not found The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Error while loading plugin Failed to load plugin "%1"! ProjectRenderer WAV-File (*.wav) Compressed OGG-File (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: Maker: Copyright: Requires Real Time: Yes No Real Time Capable: In Place Broken: Channels In: Channels Out: File: SampleBuffer Open audio file All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) OGG-Files (*.ogg) DrumSynth-Files (*.ds) FLAC-Files (*.flac) SPEEX-Files (*.spx) MP3-Files (*.mp3) VOC-Files (*.voc) AIFF-Files (*.aif *.aiff) AU-Files (*.au) RAW-Files (*.raw) SampleTCOView double-click to select sample Delete (middle mousebutton) Cut Copy Paste Mute/unmute (<Ctrl> + middle click) Set/clear record SampleTrack Sample track Volume SampleTrackView Track volume Channel volume: VOL TempoSyncKnob Tempo Sync No Sync Eight beats Whole note Half note Quarter note 8th note 16th note 32nd note Custom... &Help Custom Synced to Eight Beats Synced to Whole Note Synced to Half Note Synced to Quarter Note Synced to 8th Note Synced to 16th Note Synced to 32nd Note TimeDisplayWidget click to change time units TrackContainer Couldn't import file Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. Couldn't open file Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! Loading project... Cancel Please wait... Importing MIDI-file... Importing FLP-file... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 Mix output of oscillator 1 & 2 Synchronize oscillator 1 with oscillator 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Use phase modulation for modulating oscillator 3 with oscillator 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 Mix output of oscillator 2 & 3 Synchronize oscillator 2 with oscillator 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Osc %1 volume: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Osc %1 panning: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Osc %1 coarse detuning: semitones With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Osc %1 fine detuning left: cents With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Osc %1 fine detuning right: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Osc %1 phase-offset: degrees With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Osc %1 stereo phase-detuning: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use a moog-like saw-wave for current oscillator. Use an exponential wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Show/hide GUI Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Turn off all notes Open VST-plugin DLL-files (*.dll) EXE-files (*.exe) No VST-plugin loaded Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Save preset Click here, if you want to save current VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Preset by - VST plugin control VstEffectControlDialog Show/hide Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Save preset Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin Please wait while loading VST-plugin... Failed loading VST-plugin The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Open Preset Vst Plugin Preset (*.fxp *.fxb) : default " ' Save Preset .fxp .FXP .FXB .fxb ZynAddSubFxInstrument Portamento Filter Frequency Filter Resonance Bandwidth FM Gain Resonance Center Frequency Resonance Bandwidth Forward MIDI Control Change Events ZynAddSubFxView Show GUI Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Portamento: PORT Filter Frequency: FREQ Filter Resonance: RES Bandwidth: BW FM Gain: FM GAIN Resonance center frequency: RES CF Resonance bandwidth: RES BW Forward MIDI Control Changes audioFileProcessor Amplify Start of sample End of sample Reverse sample Loop Stutter bassBoosterControlDialog FREQ Frequency: GAIN Gain: RATIO Ratio: bassBoosterControls Frequency Gain Ratio bbEditor Beat+Bassline Editor Play/pause current beat/bassline (Space) Add beat/bassline Add automation-track Stop playback of current beat/bassline (Space) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. Click here to stop playing of current beat/bassline. Remove steps Add steps bbTCOView Open in Beat+Bassline-Editor Reset name Change name Change color bbTrack Beat/Bassline %1 Clone of %1 bitInvader Samplelength bitInvaderView Sample Length Sine wave Triangle wave Saw wave Square wave White noise wave User defined wave Smooth Click here to smooth waveform. Interpolation Normalize Draw your own waveform here by dragging your mouse on this graph. Click for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for white-noise. Click here for a user-defined shape. exportProjectDialog Could not open file Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! Error Error while determining file-encoder device. Please try to choose a different output format. Rendering: %1% Export project to %1 fader Please enter a new value between %1 and %2: fileBrowser Browser fileBrowserTreeWidget Send to active instrument-track Open in new instrument-track/Song-Editor Open in new instrument-track/B+B Editor Loading sample Please wait, loading sample for preview... --- Factory files --- graphModel Graph kickerInstrument Start frequency End frequency Decay Distortion Gain kickerInstrumentView Start frequency: End frequency: Decay: Distortion: Gain: knob &Help Please enter a new value between -96.0 dBV and 6.0 dBV: Please enter a new value between %1 and %2: ladspaBrowserView Available Effects Unavailable Effects Instruments Analysis Tools Don't know This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. Type: ladspaDescription Plugins Description ladspaPortDialog Ports Name Rate Direction Type Min < Default < Max Logarithmic SR Dependent Audio Control Input Output Toggled Integer Float Yes lb302Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb302SynthView Cutoff Freq: Resonance: Env Mod: Decay: 303-es-que, 24dB/octave, 3 pole filter Slide Decay: DIST: Saw wave Click here for a saw-wave. Triangle wave Click here for a triangle-wave. Square wave Click here for a square-wave. Rounded square wave Click here for a square-wave with a rounded end. Moog wave Click here for a moog-like wave. Sine wave Click for a sine-wave. White noise wave Click here for an exponential wave. Click here for white-noise. lb303Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb303SynthView Cutoff Freq: CUT Resonance: RES Env Mod: ENV MOD Decay: DEC 303-es-que, 24dB/octave, 3 pole filter Slide Decay: SLIDE DIST: DIST WAVE: WAVE malletsInstrument Hardness Position Vibrato Gain Vibrato Freq Stick Mix Modulator Crossfade LFO Speed LFO Depth ADSR Pressure Motion Speed Bowed Spread Marimba Vibraphone Agogo Wood1 Reso Wood2 Beats Two Fixed Clump Tubular Bells Uniform Bar Tuned Bar Glass Tibetan Bowl Missing files Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! malletsInstrumentView Instrument Spread Spread: Hardness Hardness: Position Position: Vib Gain Vib Gain: Vib Freq Vib Freq: Stick Mix Stick Mix: Modulator Modulator: Crossfade Crossfade: LFO Speed LFO Speed: LFO Depth LFO Depth: ADSR ADSR: Bowed Pressure Pressure: Motion Motion: Speed Speed: Vibrato Vibrato: manageVSTEffectView - VST parameter control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView - VST plugin control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help opl2instrument Patch Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Volume organicInstrumentView Distortion: Volume: Randomise Osc %1 waveform: Osc %1 volume: Osc %1 panning: Osc %1 fine detuning left: cents papuInstrument Sweep time Sweep direction Sweep RtShift amount Wave Pattern Duty Channel 1 volume Volume sweep direction Length of each step in sweep Channel 2 volume Channel 3 volume Channel 4 volume Right Output level Left Output level Channel 1 to SO2 (Left) Channel 2 to SO2 (Left) Channel 3 to SO2 (Left) Channel 4 to SO2 (Left) Channel 1 to SO1 (Right) Channel 2 to SO1 (Right) Channel 3 to SO1 (Right) Channel 4 to SO1 (Right) Treble Bass Shift Register width papuInstrumentView Sweep Time: Sweep Time Sweep RtShift amount: Sweep RtShift amount Wave pattern duty: Wave Pattern Duty Square Channel 1 Volume: Length of each step in sweep: Length of each step in sweep Wave pattern duty Square Channel 2 Volume: Square Channel 2 Volume Wave Channel Volume: Wave Channel Volume Noise Channel Volume: Noise Channel Volume SO1 Volume (Right): SO1 Volume (Right) SO2 Volume (Left): SO2 Volume (Left) Treble: Treble Bass: Bass Sweep Direction Volume Sweep Direction Shift Register Width Channel1 to SO1 (Right) Channel2 to SO1 (Right) Channel3 to SO1 (Right) Channel4 to SO1 (Right) Channel1 to SO2 (Left) Channel2 to SO2 (Left) Channel3 to SO2 (Left) Channel4 to SO2 (Left) Wave Pattern The amount of increase or decrease in frequency The rate at which increase or decrease in frequency occurs The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Square Channel 1 Volume The delay between step change Draw the wave here pattern Cannot freeze pattern The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! patternFreezeStatusDialog Freezing pattern... Cancel patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step Open in piano-roll Clear all notes Reset name Change name Refreeze Freeze Unfreeze Add steps Remove steps PianoRoll Play/pause current pattern (Space) Stop playing of current pattern (Space) Cut selected notes (Ctrl+X) Copy selected notes (Ctrl+C) Paste notes from clipboard (Ctrl+V) Piano-Roll - no pattern Piano-Roll - %1 Please open a pattern by double-clicking on it! Record notes from MIDI-device/channel-piano Record notes from MIDI-device/channel-piano while playing song or BB track Draw mode (Shift+D) Erase mode (Shift+E) Select mode (Shift+S) Last note Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Click here to stop playback of current pattern. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the notes from the clipboard will be pasted at the first visible measure. Note lock Note Volume Note Panning Detune mode (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser no description Instrument plugins Incomplete monophonic imitation tb303 Plugin for freely manipulating stereo output Plugin for controlling knobs with sound peaks Plugin for enhancing stereo separation of a stereo input file List installed LADSPA plugins three powerful oscillators you can modulate in several ways Filter for importing FL Studio projects into LMMS versatile kick- & bassdrum-synthesizer GUS-compatible patch instrument plugin for using arbitrary VST-effects inside LMMS. Additive Synthesizer for organ-like sounds plugin for boosting bass Tuneful things to bang on simple sampler with various settings for using samples (e.g. drums) in an instrument-track VST-host for using VST(i)-plugins within LMMS Vibrating string modeler plugin for using arbitrary LADSPA-effects inside LMMS. Filter for importing MIDI-files into LMMS Instrument browser Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Player for SoundFont files Emulation of GameBoy (TM) APU Customizable wavetable synthesizer Embedded ZynAddSubFX 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Project notes Put down your project notes here. Edit Actions &Undo Ctrl+Z &Redo Ctrl+Y &Copy Ctrl+C Cu&t Ctrl+X &Paste Ctrl+V Format Actions &Bold Ctrl+B &Italic Ctrl+I &Underline Ctrl+U &Left Ctrl+L C&enter Ctrl+E &Right Ctrl+R &Justify Ctrl+J &Color... renameDialog Rename... setupDialog Setup LMMS General settings BUFFER SIZE Reset to default-value MISC Enable tooltips Show restart warning after changing settings Display volume as dBV Compress project files per default HQ-mode for output audio-device LMMS working directory VST-plugin directory Artwork directory FL Studio installation directory STK rawwave directory Performance settings UI effects vs. performance Audio settings AUDIO INTERFACE MIDI settings MIDI INTERFACE OK Cancel Restart LMMS Please note that most changes won't take effect until you restart LMMS! Frames: %1 Latency: %2 ms Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Choose LMMS working directory Choose your VST-plugin directory Choose artwork-theme directory Choose FL Studio installation directory Choose LADSPA plugin directory Choose STK rawwave directory Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Paths LADSPA plugin paths Default Soundfont File Background artwork Choose default SoundFont Choose background artwork One instrument track window mode Compact track buttons Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Smooth scroll in Song Editor Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Bank Patch Gain Reverb Reverb Roomsize Reverb Damping Reverb Width Reverb Level Chorus Chorus Lines Chorus Level Chorus Speed Chorus Depth sf2InstrumentView Open other SoundFont file Click here to open another SF2 file Choose the patch Gain Apply reverb (if supported) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. Reverb Roomsize: Reverb Damping: Reverb Width: Reverb Level: Apply chorus (if supported) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Chorus Lines: Chorus Level: Chorus Speed: Chorus Depth: Open SoundFont file SoundFont2 Files (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Resonance Filter type Voice 3 off Volume Chip model sidInstrumentView Volume: Resonance: Cutoff frequency: High-Pass filter Band-Pass filter Low-Pass filter Voice3 Off MOS6581 SID MOS8580 SID Attack: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. Decay: Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. Sustain: Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. Release: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. Pulse Width: The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. Coarse: The Coarse detuning allows to detune Voice %1 one octave up or down. Pulse Wave Triangle Wave SawTooth Noise Sync Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Ring-Mod Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. Filtered When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Test Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. song Tempo Master volume Master pitch Project saved The project %1 is now saved. Project NOT saved. The project %1 was not saved! Import file untitled Select file for project-export... Empty project This project is empty so exporting makes no sense. Please put some items into Song Editor first! MIDI sequences FL Studio projects All file types Hydrogen projects Select directory for writing exported tracks... SongEditor Song-Editor Play song (Space) Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. Stop song (Space) Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. Add beat/bassline Add sample-track Could not open file Could not write file Add automation-track Draw mode Edit mode (select and move) Record samples from Audio-device Record samples from Audio-device while playing song or BB track Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Error in file The file %1 seems to contain errors and therefore can't be loaded. Tempo TEMPO/BPM tempo of song The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). High quality mode Master volume master volume Master pitch master pitch Value: %1% Value: %1 semitones Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Linear Y axis spectrumAnalyzerControls Linear spectrum Linear Y-axis Channel mode stereoEnhancerControlDialog WIDE Width: stereoEnhancerControls Width stereoMatrixControlDialog Left to Left Vol: Left to Right Vol: Right to Left Vol: Right to Right Vol: stereoMatrixControls Left to Left Left to Right Right to Left Right to Right timeLine Enable/disable auto-scrolling Enable/disable loop-points After stopping go back to begin After stopping go back to position at which playing was started After stopping keep position Hint Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted Solo trackContentObject Muted trackContentObjectView Current position Hint Press <Ctrl> and drag to make a copy. Current length Press <Ctrl> for free resizing. %1:%2 (%3:%4 to %5:%6) Delete (middle mousebutton) Cut Copy Paste Mute/unmute (<Ctrl> + middle click) trackOperationsWidget Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Actions for this track Mute Mute this track Solo Clone this track Remove this track vestigeInstrument Loading plugin Please wait while loading VST-plugin... Failed loading VST-plugin The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! vibed String %1 volume String %1 stiffness Pick %1 position Pickup %1 position Pan %1 Detune %1 Fuzziness %1 Length %1 Impulse %1 Octave %1 vibedView Volume: The 'V' knob sets the volume of the selected string. String stiffness: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. Pick position: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. Pickup position: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. Pan: The Pan knob determines the location of the selected string in the stereo field. Detune: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. Fuzziness: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. Length: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. Impulse or initial state The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. Octave The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. Impulse Editor The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Enable waveform Click here to enable/disable waveform. String The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. Sine wave Triangle wave Saw wave Square wave White noise wave User defined wave Smooth Click here to smooth waveform. Normalize Click here to normalize waveform. &Help Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. visualizationWidget click to enable/disable visualization of master-output Click to enable voiceObject Voice %1 pulse width Voice %1 attack Voice %1 decay Voice %1 sustain Voice %1 release Voice %1 coarse detuning Voice %1 wave shape Voice %1 sync Voice %1 ring modulate Voice %1 filtered Voice %1 test lmms-1.0.0+bzr2569/data/locale/es.qm0000644000000000000000000011200611517317720015047 0ustar 00000000000000d @dI;Obz S}AS}C?SUCSbuT.Uj:VzVWaW~\exių?ių_iųgszytU7tbiv=H |}ME|}fM;kfvFNO7)lק1ק3 )Zunf"RCs9v(; q@۴CP0aUIʭiqxՙߺo{a3v}.E[r%qrZG9{A~DD u%PI[Y 0OX/Z.]Y4Flh:|o9 |ZN`|Zf}"x }}xI~j%קA קC Lh>b =`_չyx(L;:CYZ;d Z8hEjztBrJG9wWxkII8IiI{IZ?s@sssst t?trttu  u> uqeee|~ՔKL$1E^غkؽk0h:;Vv ud8 u, @zT{%57e7e7UA?~Ez/Q?^}o.Kat~Þ;EUzZsscDjljwNn'EO9EgB1U6{p:M9.<]lA#'y"x_Fiyo9G#:2Dt7+ zy] WrB]*GRUIUInZczMhF w1 AVV/>5dT S : UQ$Ϟ}3h9TG/`nqAe5}dByyJ=y|l $  6E}[ w LU;/ :_] Fy SL ]0Y u wJN   1m @ `# ~T ˔r D q@ 'm=3 Omw `g u: }l? J 4` غk Y:C Y:@! Y:J ~. imG "| +  + J + | -#9 =wIp {1 {} bP  Ɉ @u 7 @uc9 @uj DR + 1^ 3 l8 Չ9 Չ9o 3rGn~pi(Q>&]!Qo. a;7WHCgv` d7LpƳi$Puerto de Arpeggio Arpeggio gate Arpeggiator"Rango de ArpeggioArpeggio range Arpeggiator$Tiempo de Arpeggio Arpeggio time Arpeggiator%%ArpeggiatorView&Puerto de Arpeggio:Arpeggio gate:ArpeggiatorView$Rango de Arpeggio:Arpeggio range:ArpeggiatorView&Tiempo de Arpeggio:Arpeggio time:ArpeggiatorViewUse este control para ajustar el intervalo arpeggio en milisegundos. El intervalo de arpeggion indica cuanto durar cada tono de arpeggio.Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played.ArpeggiatorViewmsmsArpeggiatorViewoctava(s) octave(s)ArpeggiatorViewAmplificar:Amplify:AudioFileProcessorViewPunto final: Endpoint:AudioFileProcessorViewSi activa este botn la muestra ser reproducida al revs. Esto es til para buenos efectos, como por ejemplo, golpes del revs.pIf you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash.AudioFileProcessorViewPunto inicial: Startpoint:AudioFileProcessorView(&Copiar valor (%1%2)&Copy value (%1%2)AutomatableModel&&Pegar valor (%1%2)&Paste value (%1%2)AutomatableModel"&Restaurar (%1%2) &Reset (%1%2)AutomatableModel^Reproducir/Pausar el patrn actual (Espaciador)"Play/pause current pattern (Space)AutomationEditorlDetener la reproduccin del patrn actual (Espaciador)'Stop playing of current pattern (Space)AutomationEditorCambiar nombre Change nameAutomationPatternView1111 ChordCreator11b911b9 ChordCreator1313 ChordCreator13#913#9 ChordCreator 13b5b913b5b9 ChordCreator13b913b9 ChordCreator66 ChordCreator madd96add9 ChordCreator 6sus46sus4 ChordCreator77 ChordCreator7#117#11 ChordCreator7#57#5 ChordCreator 7#5#97#5#9 ChordCreator 7#5b97#5b9 ChordCreator7#97#9 ChordCreator 7add117add11 ChordCreator 7add137add13 ChordCreator7b57b5 ChordCreator 7b5b97b5b9 ChordCreator7b97b9 ChordCreator 7sus47sus4 ChordCreator99 ChordCreator9#119#11 ChordCreator9#59#5 ChordCreator9b139b13 ChordCreator9b59b5 ChordCreator 9sus49sus4 ChordCreatorAeolianAeolian ChordCreator rabeArabic ChordCreator BluesBlues ChordCreatorRango de acorde Chord range ChordCreatorDisminuido Diminished ChordCreatorBebop dominanteDominant bebop ChordCreator DorianDorian ChordCreatorEnigmatico Enigmatic ChordCreatorMenor armnicoHarmonic minor ChordCreatorMenor HngaroHungarian minor ChordCreatorLocrianLocrian ChordCreator LidioLydian ChordCreator Maj11Maj11 ChordCreator Maj13Maj13 ChordCreatorMaj7Maj7 ChordCreatorMaj7#11Maj7#11 ChordCreator Maj7#5Maj7#5 ChordCreatorMaj7add13 Maj7add13 ChordCreator Maj7b5Maj7b5 ChordCreatorMaj9Maj9 ChordCreatorMaj9#11Maj9#11 ChordCreator Maj9#5Maj9#5 ChordCreatorMaj9sus4Maj9sus4 ChordCreator Mayor5Majb5 ChordCreator MayorMajor ChordCreatorMayor Bebop Major bebop ChordCreator"Mayor pentatnicoMajor pentatonic ChordCreator&Menor de la meloda Melodic minor ChordCreator"Menor pentatnicoMinor pentatonic ChordCreatorMixolydian Mixolydian ChordCreatorNeopolita Neopolitan ChordCreatorMenor NeopolitaNeopolitan minor ChordCreatorPhrygolydian Phrygolydian ChordCreatorTono entero Whole tone ChordCreatoradd9add9 ChordCreatoraugaug ChordCreatoraugsus4augsus4 ChordCreatorm-Maj11m-Maj11 ChordCreatorm-Maj13m-Maj13 ChordCreator m-Maj7m-Maj7 ChordCreatorm-Maj7add11 m-Maj7add11 ChordCreatorm-Maj7add13 m-Maj7add13 ChordCreatorm11m11 ChordCreatorm13m13 ChordCreatorm6m6 ChordCreator m6add9m6add9 ChordCreatorm7m7 ChordCreatorm7add11m7add11 ChordCreatorm7add13m7add13 ChordCreatorm7b5m7b5 ChordCreatorm7b9m7b9 ChordCreatorm9m9 ChordCreatorm9-Maj7m9-Maj7 ChordCreatorm9b5m9b5 ChordCreator madd9madd9 ChordCreator menor5minb5 ChordCreator menorminor ChordCreator Octavaoctave ChordCreatorsus2sus2 ChordCreatorsus4sus4 ChordCreatortritri ChordCreator Rango de acorde: Chord range:ChordCreatorViewoctava(s) octave(s)ChordCreatorViewCancelarCancelControllerConnectionDialog &Ayuda&HelpControllerView &Ayuda&Help EffectViewAtaque:Attack:EnvelopeAndLfoViewvClick aqu para crear la envolvente controlada por este LFO>Click here to make the envelope-amount controlled by this LFO.EnvelopeAndLfoView Decay:Decay:EnvelopeAndLfoViewHOLDHOLDEnvelopeAndLfoView Hold:Hold:EnvelopeAndLfoView.Cantidad de modulacin:Modulation amount:EnvelopeAndLfoViewPre retraso: Predelay:EnvelopeAndLfoViewRelease:Release:EnvelopeAndLfoViewSustain:Sustain:EnvelopeAndLfoView,Use este control para configurar el tiempo de ataque del LFO actual. A mayor valor mayor tiempo necesitara el LFO para aumentar su amplitud al mximo.Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum.EnvelopeAndLfoViewUse este control para configurar el tiempo de ataque de la envolvente actual. A mayor valor mayor tiempo necesitar la envolvente para alcanzar el nivel de ataque. Escoja un valor pequeo para instrumentos como pianos y alto para cuerdas.Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings.EnvelopeAndLfoViewUse este control para configurar el tiempo de cada de la envolvente actual. A mayor valor mayor tiempo necesitar la envolvente para pasar del nivel de ataque a sostenido. Escoja un valor pequeo para instrumentos como pianos.Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos.EnvelopeAndLfoViewUse este control para configurar el tiempo de mantenimiento de la envolvente actual. A mayor valor mayor tiempo se mantendr el nivel de ataque hasta que comience a disminuir hasta el nivel de sostenido.Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level.EnvelopeAndLfoViewnUse este control para configurar la modulacin del actual LFO. A mayor valor mayor cantidad seleccionada (por ejemplo de volumen o frecuencia de corte) ser influenciado por este LFO.Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO.EnvelopeAndLfoViewUse este control para configurar la cantidad de modulacin de la envolvente actual. A mayor valor mayor valor de acorde (ejemplo volumen o corte de frecuencia) ser influenciado por esta envolvente.Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope.EnvelopeAndLfoView Use este control para configurar el pre-retraso de la envolvente actual. A mayor valor mayor el tiempo antes del inicio de la envolvente actual.Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope.EnvelopeAndLfoViewUse este control para configurar el pre-retraso del LFO actual. A mayor valor, mayor tiempo hasta que el LFO comience a oscilar.Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate.EnvelopeAndLfoViewUse este control para configurar el intervalo de sostenido de la envolvente actual. A mayor valor, la envolvente necesitar ms tiempo para pasar de sostenido a cero. Escoja un valor grande para instrumentos suaves como cuerdas.Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings.EnvelopeAndLfoViewUse este control para configurar la velocidad del LFO actual: A mayor valor ms rpido oscilar el LFO y mayor ser el efecto.Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect.EnvelopeAndLfoView*Use este control para configurar el nivel de sostenido de la envolvente actual. A mayor valor mayor tiempo tardar la envolvente hasta llegar a cero.Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero.EnvelopeAndLfoView^controla la cantidad de envolventepara este LFO#control envelope-amount by this LFOEnvelopeAndLfoViewms/LFO:ms/LFO:EnvelopeAndLfoViewCancelarCancelExportProjectDialog2x PasoBajo 2x LowPassInstrumentSoundShapingPasaTodoAllpassInstrumentSoundShapingPasoBanda csg BandPass csgInstrumentSoundShapingPasoBanda czpg BandPass czpgInstrumentSoundShapingPasoAltoHiPassInstrumentSoundShapingPasoBajoLowPassInstrumentSoundShapingMoogMoogInstrumentSoundShaping NotchNotchInstrumentSoundShapingQ/Resonancia. Q/ResonanceInstrumentSoundShapingVOLUMENVOLUMEInstrumentSoundShapingHzHzInstrumentSoundShapingView*lmite de frecuencia:cutoff-frequency:InstrumentSoundShapingViewvCon este control puede indicar el volumen del canal actual.Reproducir cancin (Espaciador)Play song (Space) songEditor"Editor de cancin Song-Editor songEditor8Detener cancin (Espaciador)Stop song (Space) songEditortono principal master pitch songEditor"tiempo de cancin tempo of song songEditorCancelarCanceltrackContainer0Importar archivo MIDI...Importing MIDI-file...trackContainer(Cargando proyecto...Loading project...trackContainer(Por favor, espere...Please wait...trackContainer CopiarCopytrackContentObjectView CortarCuttrackContentObjectView PegarPastetrackContentObjectView"Clonar esta pistaClone this tracktrackOperationsWidget &Ayuda&Help vibedView2Posicin de la seleccin:Pick position: vibedView&Posicin de agarre:Pickup position: vibedViewclick, para activar/desactivar visualizacin de la salida principal6click to enable/disable visualization of master-outputvisualizationWidgetlmms-1.0.0+bzr2569/data/locale/es.ts0000644000000000000000000071305012307165142015063 0ustar 00000000000000 AboutDialog About LMMS LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) About LMMS - easy music production for everyone Authors Translation Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! License Copyright (c) 2004-2014, LMMS developers <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE CHANNELS AudioFileProcessorView Open other sample Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Reverse sample If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Si activa este botón la muestra será reproducida al revés. Esto es útil para buenos efectos, como por ejemplo, golpes del revés. Loop sample at start- and end-point Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Amplify: Amplificar: With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Startpoint: Punto inicial: With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Endpoint: Punto final: With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. JACK server down The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack::setupWidget CLIENT-NAME CHANNELS AudioOss::setupWidget DEVICE CHANNELS AudioPortAudio::setupWidget BACKEND DEVICE AudioPulseAudio::setupWidget DEVICE CHANNELS AudioSdl::setupWidget DEVICE AutomatableModel &Reset (%1%2) &Restaurar (%1%2) &Copy value (%1%2) &Copiar valor (%1%2) &Paste value (%1%2) &Pegar valor (%1%2) Edit song-global automation Connected to %1 Connected to controller Edit connection... Remove connection Connect to controller... Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) Reproducir/Pausar el patrón actual (Espaciador) Stop playing of current pattern (Space) Detener la reproducción del patrón actual (Espaciador) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Click here if you want to stop playing of the current pattern. Draw mode (Shift+D) Erase mode (Shift+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. Cut selected values (Ctrl+X) Copy selected values (Ctrl+C) Paste values from clipboard (Ctrl+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the values from the clipboard will be pasted at the first visible measure. Automation Editor - no pattern Automation Editor - %1 Please open an automation pattern with the context menu of a control! Values copied All selected values were copied to the clipboard. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> AutomationPatternView double-click to open this pattern in automation editor Open in Automation editor Clear Reset name Change name Cambiar nombre %1 Connections Disconnect "%1" AutomationTrack Automation track Controller Controller %1 ControllerConnectionDialog Connection Settings MIDI CONTROLLER Input channel CHANNEL Input controller CONTROLLER Auto Detect MIDI-devices to receive MIDI-events from USER CONTROLLER MAPPING FUNCTION OK Cancel Cancelar LMMS Cycle Detected. ControllerRackView Controller Rack Add Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls Controllers are able to automate the value of a knob, slider, and other controls. Rename controller Enter the new name for this controller &Remove this plugin &Help &Ayuda Effect Effect enabled Wet/Dry mix Gate Decay EffectChain Effects enabled EffectRackView EFFECTS CHAIN Add effect EffectSelectDialog Add effect Plugin description EffectView Toggles the effect on or off. On/Off W/D Wet Level: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. DECAY Time: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. GATE Gate: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. Controls Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. Move &up Move &down &Remove this plugin &Help &Ayuda EnvelopeAndLfoParameters Predelay Attack Hold Decay Sustain Release Modulation LFO Predelay LFO Attack LFO speed LFO Modulation LFO Wave Shape Freq x 100 Modulate Env-Amount EnvelopeAndLfoView DEL Predelay: Pre retraso: Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. Use este control para configurar el pre-retraso de la envolvente actual. A mayor valor mayor el tiempo antes del inicio de la envolvente actual. ATT Attack: Ataque: Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. Use este control para configurar el tiempo de ataque de la envolvente actual. A mayor valor mayor tiempo necesitará la envolvente para alcanzar el nivel de ataque. Escoja un valor pequeño para instrumentos como pianos y alto para cuerdas. HOLD HOLD Hold: Hold: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. Use este control para configurar el tiempo de mantenimiento de la envolvente actual. A mayor valor mayor tiempo se mantendrá el nivel de ataque hasta que comience a disminuir hasta el nivel de sostenido. DEC Decay: Decay: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. Use este control para configurar el tiempo de caída de la envolvente actual. A mayor valor mayor tiempo necesitará la envolvente para pasar del nivel de ataque a sostenido. Escoja un valor pequeño para instrumentos como pianos. SUST Sustain: Sustain: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. Use este control para configurar el nivel de sostenido de la envolvente actual. A mayor valor mayor tiempo tardará la envolvente hasta llegar a cero. REL Release: Release: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. Use este control para configurar el intervalo de sostenido de la envolvente actual. A mayor valor, la envolvente necesitará más tiempo para pasar de sostenido a cero. Escoja un valor grande para instrumentos suaves como cuerdas. AMT Modulation amount: Cantidad de modulación: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. Use este control para configurar la cantidad de modulación de la envolvente actual. A mayor valor mayor valor de acorde (ejemplo volumen o corte de frecuencia) será influenciado por esta envolvente. LFO predelay: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. Use este control para configurar el pre-retraso del LFO actual. A mayor valor, mayor tiempo hasta que el LFO comience a oscilar. LFO- attack: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. Use este control para configurar el tiempo de ataque del LFO actual. A mayor valor mayor tiempo necesitara el LFO para aumentar su amplitud al máximo. SPD LFO speed: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. Use este control para configurar la velocidad del LFO actual: A mayor valor más rápido oscilará el LFO y mayor será el efecto. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. Use este control para configurar la modulación del actual LFO. A mayor valor mayor cantidad seleccionada (por ejemplo de volumen o frecuencia de corte) será influenciado por este LFO. Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave for current. Click here for a square-wave. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. FREQ x 100 Click here if the frequency of this LFO should be multiplied by 100. multiply LFO-frequency by 100 MODULATE ENV-AMOUNT Click here to make the envelope-amount controlled by this LFO. Click aquí para crear la envolvente controlada por este LFO control envelope-amount by this LFO controla la cantidad de envolventepara este LFO ms/LFO: ms/LFO: Hint Drag a sample from somewhere and drop it in this window. ExportProjectDialog Export project Output File format: Samplerate: 44100 Hz 48000 Hz 88200 Hz 96000 Hz 192000 Hz Bitrate: 64 KBit/s 128 KBit/s 160 KBit/s 192 KBit/s 256 KBit/s 320 KBit/s Depth: 16 Bit Integer 32 Bit Float Please note that not all of the parameters above apply for all file formats. Quality settings Interpolation: Zero Order Hold Sinc Fastest Sinc Medium (recommended) Sinc Best (very slow!) Oversampling (use with care!): 1x (None) 2x 4x 8x Sample-exact controllers Alias-free oscillators Start Cancel Cancelar Export as loop (remove end silence) FxMixer Master FX %1 FxMixerView Rename FX channel Enter the new name for this FX channel FX-Mixer FX Fader %1 Mute Mute this FX channel InstrumentFunctionArpeggio Arpeggio Arpeggio type Arpeggio range Rango de Arpeggio Arpeggio time Tiempo de Arpeggio Arpeggio gate Puerto de Arpeggio Arpeggio direction Arpeggio mode Up Down Up and down Random Free Sort Sync InstrumentFunctionArpeggioView ARPEGGIO An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. RANGE Arpeggio range: Rango de Arpeggio: octave(s) octava(s) Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. TIME Arpeggio time: Tiempo de Arpeggio: ms ms Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. Use este control para ajustar el intervalo arpeggio en milisegundos. El intervalo de arpeggion indica cuanto durará cada tono de arpeggio. GATE Arpeggio gate: Puerto de Arpeggio: % % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Chord: Direction: Mode: InstrumentFunctionNoteStacking octave Octava Major Mayor Majb5 Mayor5 minor menor minb5 menor5 sus2 sus2 sus4 sus4 aug aug augsus4 augsus4 tri tri 6 6 6sus4 6sus4 6add9 madd9 m6 m6 m6add9 m6add9 7 7 7sus4 7sus4 7#5 7#5 7b5 7b5 7#9 7#9 7b9 7b9 7#5#9 7#5#9 7#5b9 7#5b9 7b5b9 7b5b9 7add11 7add11 7add13 7add13 7#11 7#11 Maj7 Maj7 Maj7b5 Maj7b5 Maj7#5 Maj7#5 Maj7#11 Maj7#11 Maj7add13 Maj7add13 m7 m7 m7b5 m7b5 m7b9 m7b9 m7add11 m7add11 m7add13 m7add13 m-Maj7 m-Maj7 m-Maj7add11 m-Maj7add11 m-Maj7add13 m-Maj7add13 9 9 9sus4 9sus4 add9 add9 9#5 9#5 9b5 9b5 9#11 9#11 9b13 9b13 Maj9 Maj9 Maj9sus4 Maj9sus4 Maj9#5 Maj9#5 Maj9#11 Maj9#11 m9 m9 madd9 madd9 m9b5 m9b5 m9-Maj7 m9-Maj7 11 11 11b9 11b9 Maj11 Maj11 m11 m11 m-Maj11 m-Maj11 13 13 13#9 13#9 13b9 13b9 13b5b9 13b5b9 Maj13 Maj13 m13 m13 m-Maj13 m-Maj13 Harmonic minor Menor armónico Melodic minor Menor de la melodía Whole tone Tono entero Diminished Disminuido Major pentatonic Mayor pentatónico Minor pentatonic Menor pentatónico Jap in sen Major bebop Mayor Bebop Dominant bebop Bebop dominante Blues Blues Arabic Árabe Enigmatic Enigmatico Neopolitan Neopolita Neopolitan minor Menor Neopolita Hungarian minor Menor Húngaro Dorian Dorian Phrygolydian Phrygolydian Lydian Lidio Mixolydian Mixolydian Aeolian Aeolian Locrian Locrian Chords Chord type Chord range Rango de acorde Minor InstrumentFunctionNoteStackingView RANGE Chord range: Rango de acorde: octave(s) octava(s) Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT CHANNEL VELOCITY ENABLE MIDI OUTPUT PROGRAM MIDI devices to receive MIDI events from MIDI devices to send MIDI events to NOTE InstrumentSoundShaping VOLUME VOLUMEN Volume CUTOFF Cutoff frequency RESO Resonance Envelopes/LFOs Filter type Q/Resonance Q/Resonancia. LowPass PasoBajo HiPass PasoAlto BandPass csg PasoBanda csg BandPass czpg PasoBanda czpg Notch Notch Allpass PasaTodo Moog Moog 2x LowPass 2x PasoBajo RC LowPass 12dB RC BandPass 12dB RC HighPass 12dB RC LowPass 24dB RC BandPass 24dB RC HighPass 24dB Vocal Formant Filter InstrumentSoundShapingView TARGET These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! FILTER Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. Hz Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... RESO Resonance: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. FREQ cutoff frequency: InstrumentTrack unnamed_track Volume Panning Pitch FX channel Default preset With this knob you can set the volume of the opened channel. Con este control puede indicar el volumen del canal actual. Base note Pitch range InstrumentTrackView Volume Volume: VOL Panning Panning: PAN MIDI Input Output InstrumentTrackWindow GENERAL SETTINGS Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. Click aquí, si quiere guardar la configuración del canal en una plantilla. Después podrá cargarlo haciendo doble click en el navegador de plantillas. Instrument volume Volume: VOL Panning Panning: PAN Pitch Pitch: cents cents PITCH FX channel ENV/LFO FUNC FX MIDI Save preset XML preset file (*.xpf) PLUGIN PLUGIN Save current channel settings in a preset-file Pitch range (semitones) RANGE LadspaControl Link channels LadspaControlDialog Link Channels Channel LadspaControlView Link channels Value: Sorry, no help available. LadspaEffect Effect Unknown LADSPA plugin %1 requested. LfoController LFO Controller Base value Oscillator speed Oscillator amount Oscillator phase Oscillator waveform Frequency Multiplier LfoControllerDialog LFO LFO Controller BASE Base amount: todo SPD LFO-speed: LFO-velocidad: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. AMT Modulation amount: Cantidad de modulación: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. PHS Phase offset: degrees grados With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for a a moog saw-wave. Click here for an exponential wave. Click here for white-noise. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. Could not save config-file No se pudo guardar el archivo de configuración Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. &Project &Proyecto &New &Nuevo &Open... &Abrir Recently opened projects &Save &Guardar Save &As... Guardar &Como... Import... E&xport... &Quit &Salir &Edit Settings &Tools &Help &Ayuda Online help Help Ayuda What's this? ¿Qué es esto? About Create new project Crear nuevo proyecto Create new project from template Open existing project Abrir proyecto existente Recently opened project Save current project Guardar el proyecto actual Export current project Exportar proyecto actual Show/hide Song-Editor By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. Show/hide Beat+Bassline Editor By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. Show/hide Piano-Roll Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. Show/hide Automation Editor Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Show/hide FX Mixer Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Show/hide project notes Click here to show or hide the project notes window. In this window you can put down your project notes. Show/hide controller rack Untitled LMMS %1 LMMS %1 Project not saved Proyecto no guardado The current project was modified since last saving. Do you want to save it now? El proyecto actual ha sido modificado desde la ultima vez que se guardo. Desea usted guardarlo ahora? Open project Abrir Proyecto Save project Guardar proyecto Help not available Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. My projects My samples My presets My home My computer Root directory Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 Project recovery It looks like the last session did not end properly. Do you want to recover the project of this session? Configuration file Error while parsing configuration file at line %1:%2: %3 MeterDialog Meter Numerator Meter Denominator TIME SIG MeterModel Numerator Denominator MidiAlsaRaw::setupWidget DEVICE MidiAlsaSeq::setupWidget DEVICE MidiController MIDI Controller unnamed_midi_controller MidiImport Setup incomplete You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiOss::setupWidget DEVICE MidiPort Input channel Output channel Input controller Output controller Fixed input velocity Fixed output velocity Output MIDI program Receive MIDI-events Send MIDI-events Fixed output note OscillatorObject Osc %1 volume Osc. %1 Volumen Osc %1 panning Osc %1 encuadramiento Osc %1 coarse detuning Osc %1 desintonización gruesa Osc %1 fine detuning left Osc %1 desintonización fina izquierda Osc %1 fine detuning right Osc %1 desintonización fina derecha Osc %1 phase-offset Osc %1 fase de compensación Osc %1 stereo phase-detuning Osc %1 fase de desintonización Osc %1 wave shape Modulation type %1 Osc %1 waveform PatmanView Open other patch Click here to open another patch-file. Loop and Tune settings are not reset. Loop Loop mode Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. Tune Tune mode Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. No file selected Open patch file Patch-Files (*.pat) PeakController Peak Controller Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK LFO Controller PeakControllerEffectControlDialog BASE Base amount: Modulation amount: Cantidad de modulación: Attack: Ataque: Release: Release: AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Modulation amount Cantidad de modulación Mute output Attack Release Abs Value Amount Multiplicator PianoView Base note Plugin Plugin not found The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Error while loading plugin Error al cargar plugin Failed to load plugin "%1"! ProjectRenderer WAV-File (*.wav) Compressed OGG-File (*.ogg) Archivo OGG comprimido (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: Maker: Copyright: Requires Real Time: Yes No Real Time Capable: In Place Broken: Channels In: Channels Out: File: SampleBuffer Open audio file Abrir archivo de audio All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) Archivos Wave (*.wav) OGG-Files (*.ogg) Archivos OGG (*.ogg) DrumSynth-Files (*.ds) FLAC-Files (*.flac) SPEEX-Files (*.spx) MP3-Files (*.mp3) VOC-Files (*.voc) Archivos VOC (*.voc) AIFF-Files (*.aif *.aiff) Archivos AIFF (*.aif *.aiff) AU-Files (*.au) Archivos AU (*.au) RAW-Files (*.raw) Archivos RAW (*.raw) SampleTCOView double-click to select sample doble click para seleccionar ejemplo Delete (middle mousebutton) Cut Cortar Copy Copiar Paste Pegar Mute/unmute (<Ctrl> + middle click) Set/clear record SampleTrack Sample track Pista de ejemplo Volume SampleTrackView Track volume Channel volume: Volumen del canal VOL TempoSyncKnob Tempo Sync No Sync Eight beats Whole note Half note Quarter note 8th note 16th note 32nd note Custom... &Help &Ayuda Custom Synced to Eight Beats Synced to Whole Note Synced to Half Note Synced to Quarter Note Synced to 8th Note Synced to 16th Note Synced to 32nd Note TimeDisplayWidget click to change time units TrackContainer Couldn't import file Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. Couldn't open file Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! Loading project... Cargando proyecto... Cancel Cancelar Please wait... Por favor, espere... Importing MIDI-file... Importar archivo MIDI... Importing FLP-file... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 Mix output of oscillator 1 & 2 Synchronize oscillator 1 with oscillator 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Use phase modulation for modulating oscillator 3 with oscillator 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 Mix output of oscillator 2 & 3 Synchronize oscillator 2 with oscillator 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Osc %1 volume: Osc %1 Volumen: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Con este control usted puede establecer el volumen del oscilador %1. Al fijar un valor de 0 se apaga. De lo contrario usted podrá oir al oscilador tan alto como lo especifique aquí. Osc %1 panning: Osc %1 encuadramiento: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Con este control usted podrá establecer el encuadramiento del oscilador %1. Un valor de -100 significa 100% a la izquierda y un valor de 100 mueve el oscilador totalmente a la derecha. Osc %1 coarse detuning: Osc %1 desintonización gruesa: semitones semitonos With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Con este control usted podrá establecer la desintonización gruesa del oscilador %1. Usted puede desintonizar el oscilador 12 semitonos (1 octava) arriba y abajo. Esto es útil para la creación de sonidos con acorde. Osc %1 fine detuning left: Osc %1 desintonización fina izquierda: cents cents With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Con este control usted podra establecer la desintonización fina del oscilador %1 para el canal derecho La desintonización fina esta comprendida entre -100 cents y +100 cents. Esto es útil para la creación de sonidos \"gordos\". Osc %1 fine detuning right: Osc %1 desintonización fina derecha: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Con este control usted podrá establecer la desintonización fina del oscilador %1 para el canal derecho. La desintonización fina esta comprendida entre -100 cents y +100 cents. Esto es útil para la creación de sonidos \"gordos\". Osc %1 phase-offset: Osc %1 fase de compensación: degrees grados With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Con este control usted podrá establecer la fase de compensación del oscilador %1. Esto significa que usted puede mover el punto dentro de una oscilación donde el oscilador comienza a oscilar. Por ejemplo si usted tiene una onda senoidal y tiene una fase de compensación de 180 grados, la onda ira primero abajo. Lo mismo sucede con una onda cuadrada. Osc %1 stereo phase-detuning: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use a moog-like saw-wave for current oscillator. Use an exponential wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Show/hide GUI Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Turn off all notes Open VST-plugin DLL-files (*.dll) EXE-files (*.exe) No VST-plugin loaded Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Save preset Click here, if you want to save current VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Preset by - VST plugin control VstEffectControlDialog Show/hide Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Save preset Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin Please wait while loading VST-plugin... Failed loading VST-plugin The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Open Preset Vst Plugin Preset (*.fxp *.fxb) : default " ' Save Preset .fxp .FXP .FXB .fxb ZynAddSubFxInstrument Portamento Filter Frequency Filter Resonance Bandwidth FM Gain Resonance Center Frequency Resonance Bandwidth Forward MIDI Control Change Events ZynAddSubFxView Show GUI Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Portamento: PORT Filter Frequency: FREQ Filter Resonance: RES Bandwidth: BW FM Gain: FM GAIN Resonance center frequency: RES CF Resonance bandwidth: RES BW Forward MIDI Control Changes audioFileProcessor Amplify Amplificar Start of sample Inicio de la muestra End of sample Fin de la muestra Reverse sample Loop Stutter bassBoosterControlDialog FREQ Frequency: GAIN Gain: RATIO Ratio: bassBoosterControls Frequency Gain Ratio bbEditor Play/pause current beat/bassline (Space) Reproducir/pausar el ritmo base actual (espacio) Beat+Bassline Editor Editor Ritmo+Línea base Add beat/bassline Agregar beat/bassline Add automation-track Stop playback of current beat/bassline (Space) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. Click here to stop playing of current beat/bassline. Remove steps Add steps bbTCOView Open in Beat+Bassline-Editor Abrir en Editor de Ritmo Base Reset name Change name Cambiar nombre Change color Cambiar color bbTrack Beat/Bassline %1 Ritmo base %1 Clone of %1 bitInvader Samplelength bitInvaderView Sample Length Sine wave Triangle wave Saw wave Square wave White noise wave User defined wave Smooth Click here to smooth waveform. Interpolation Normalize Draw your own waveform here by dragging your mouse on this graph. Click for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for white-noise. Click here for a user-defined shape. exportProjectDialog Could not open file No se puede abrir el archivo Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! Error Error while determining file-encoder device. Please try to choose a different output format. Rendering: %1% Export project to %1 Exportar proyecto a %1 fader Please enter a new value between %1 and %2: fileBrowser Browser fileBrowserTreeWidget Send to active instrument-track Open in new instrument-track/Song-Editor Open in new instrument-track/B+B Editor Loading sample Please wait, loading sample for preview... --- Factory files --- graphModel Graph kickerInstrument Start frequency End frequency Decay Distortion Gain kickerInstrumentView Start frequency: End frequency: Decay: Decay: Distortion: Gain: knob &Help &Ayuda Please enter a new value between -96.0 dBV and 6.0 dBV: Please enter a new value between %1 and %2: ladspaBrowserView Available Effects Unavailable Effects Instruments Analysis Tools Don't know This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. Type: Tipo ladspaDescription Plugins Description ladspaPortDialog Ports Name Rate Direction Type Min < Default < Max Logarithmic SR Dependent Audio Control Input Output Toggled Integer Float Yes lb302Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb302SynthView Cutoff Freq: Resonance: Env Mod: Decay: Decay: 303-es-que, 24dB/octave, 3 pole filter Slide Decay: DIST: Saw wave Click here for a saw-wave. Triangle wave Click here for a triangle-wave. Square wave Click here for a square-wave. Rounded square wave Click here for a square-wave with a rounded end. Moog wave Click here for a moog-like wave. Sine wave Click for a sine-wave. White noise wave Click here for an exponential wave. Click here for white-noise. lb303Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb303SynthView Cutoff Freq: CUT Resonance: RES Env Mod: ENV MOD Decay: Decay: DEC 303-es-que, 24dB/octave, 3 pole filter Slide Decay: SLIDE DIST: DIST WAVE: WAVE malletsInstrument Hardness Position Vibrato Gain Vibrato Freq Stick Mix Modulator Crossfade LFO Speed LFO Depth ADSR Pressure Motion Speed Bowed Spread Marimba Vibraphone Agogo Wood1 Reso Wood2 Beats Two Fixed Clump Tubular Bells Uniform Bar Tuned Bar Glass Tibetan Bowl Missing files Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! malletsInstrumentView Instrument Spread Spread: Hardness Hardness: Position Position: Vib Gain Vib Gain: Vib Freq Vib Freq: Stick Mix Stick Mix: Modulator Modulator: Crossfade Crossfade: LFO Speed LFO Speed: LFO Depth LFO Depth: ADSR ADSR: Bowed Pressure Pressure: Motion Motion: Speed Speed: Vibrato Vibrato: manageVSTEffectView - VST parameter control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView - VST plugin control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help &Ayuda opl2instrument Patch Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Volume organicInstrumentView Distortion: Volume: Randomise Osc %1 waveform: Osc %1 volume: Osc %1 Volumen: Osc %1 panning: Osc %1 encuadramiento: Osc %1 fine detuning left: Osc %1 desintonización fina izquierda: cents cents papuInstrument Sweep time Sweep direction Sweep RtShift amount Wave Pattern Duty Channel 1 volume Volume sweep direction Length of each step in sweep Channel 2 volume Channel 3 volume Channel 4 volume Right Output level Left Output level Channel 1 to SO2 (Left) Channel 2 to SO2 (Left) Channel 3 to SO2 (Left) Channel 4 to SO2 (Left) Channel 1 to SO1 (Right) Channel 2 to SO1 (Right) Channel 3 to SO1 (Right) Channel 4 to SO1 (Right) Treble Bass Shift Register width papuInstrumentView Sweep Time: Sweep Time Sweep RtShift amount: Sweep RtShift amount Wave pattern duty: Wave Pattern Duty Square Channel 1 Volume: Length of each step in sweep: Length of each step in sweep Wave pattern duty Square Channel 2 Volume: Square Channel 2 Volume Wave Channel Volume: Wave Channel Volume Noise Channel Volume: Noise Channel Volume SO1 Volume (Right): SO1 Volume (Right) SO2 Volume (Left): SO2 Volume (Left) Treble: Treble Bass: Bass Sweep Direction Volume Sweep Direction Shift Register Width Channel1 to SO1 (Right) Channel2 to SO1 (Right) Channel3 to SO1 (Right) Channel4 to SO1 (Right) Channel1 to SO2 (Left) Channel2 to SO2 (Left) Channel3 to SO2 (Left) Channel4 to SO2 (Left) Wave Pattern The amount of increase or decrease in frequency The rate at which increase or decrease in frequency occurs The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Square Channel 1 Volume The delay between step change Draw the wave here pattern Cannot freeze pattern No se puede congelar el patrón The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! El patrón actual no puede ser congelado debido a que usted esta en el modo de reproducción. Por favor detenga la reproducción y vuelva a intentarlo! patternFreezeStatusDialog Freezing pattern... Congelando patrón... Cancel Cancelar patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step Open in piano-roll Abrir en piano-roll Clear all notes Borrar todas las notas Reset name Change name Cambiar nombre Refreeze Recongelar Freeze Congelar Unfreeze Descongelar Add steps Remove steps PianoRoll Cut selected notes (Ctrl+X) Cortar las notas seleccionadas (Ctrl+X) Copy selected notes (Ctrl+C) Copiar las notas seleccionadas (Ctrl+C) Paste notes from clipboard (Ctrl+V) Pegar notas desde el portapapeles (Ctrl+V) Play/pause current pattern (Space) Reproducir/Pausar el patrón actual (Espaciador) Stop playing of current pattern (Space) Detener la reproducción del patrón actual (Espaciador) Piano-Roll - no pattern Piano Roll - ningún patrón Please open a pattern by double-clicking on it! Por favor abra el patrón haciendo doble click sobre él! Piano-Roll - %1 Piano-Roll - %1 Record notes from MIDI-device/channel-piano Record notes from MIDI-device/channel-piano while playing song or BB track Draw mode (Shift+D) Erase mode (Shift+E) Select mode (Shift+S) Last note Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Click here to stop playback of current pattern. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the notes from the clipboard will be pasted at the first visible measure. Note lock Note Volume Note Panning Detune mode (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser no description Instrument plugins Incomplete monophonic imitation tb303 Plugin for freely manipulating stereo output Plugin for controlling knobs with sound peaks Plugin for enhancing stereo separation of a stereo input file List installed LADSPA plugins three powerful oscillators you can modulate in several ways Filter for importing FL Studio projects into LMMS versatile kick- & bassdrum-synthesizer GUS-compatible patch instrument plugin for using arbitrary VST-effects inside LMMS. Additive Synthesizer for organ-like sounds plugin for boosting bass Tuneful things to bang on simple sampler with various settings for using samples (e.g. drums) in an instrument-track VST-host for using VST(i)-plugins within LMMS Vibrating string modeler plugin for using arbitrary LADSPA-effects inside LMMS. Filter for importing MIDI-files into LMMS Instrument browser Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Player for SoundFont files Emulation of GameBoy (TM) APU Customizable wavetable synthesizer Embedded ZynAddSubFX 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Put down your project notes here. Coloque aquí sus notas del proyecto Project notes Notas del Proyecto Edit Actions Editar Acciones &Undo &Deshacer Ctrl+Z Ctrl+Z &Redo &Rehacer Ctrl+Y Ctrl+Y &Copy &Copiar Ctrl+C Ctrl+C Cu&t Cortar(&X) Ctrl+X Ctrl+X &Paste &Pegar Ctrl+V Ctrl+V Format Actions Acciones de formato &Bold &Negrita Ctrl+B Ctrl+B &Italic &Cursiva Ctrl+I Ctrl+I &Underline &Subrayado Ctrl+U Ctrl+U &Left &Izquierda Ctrl+L Ctrl+L C&enter C&entrar Ctrl+E Ctrl+E &Right &Derecha Ctrl+R Ctrl+R &Justify &Justificar Ctrl+J Ctrl+J &Color... &Color... renameDialog Rename... Renombrar... setupDialog Setup LMMS Configuración de LMMS General settings BUFFER SIZE Reset to default-value MISC Enable tooltips Show restart warning after changing settings Display volume as dBV Compress project files per default HQ-mode for output audio-device LMMS working directory VST-plugin directory Artwork directory FL Studio installation directory STK rawwave directory Performance settings UI effects vs. performance Audio settings AUDIO INTERFACE MIDI settings MIDI INTERFACE OK Cancel Cancelar Restart LMMS Please note that most changes won't take effect until you restart LMMS! Frames: %1 Latency: %2 ms Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Choose LMMS working directory Choose your VST-plugin directory Choose artwork-theme directory Choose FL Studio installation directory Choose LADSPA plugin directory Choose STK rawwave directory Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Paths LADSPA plugin paths Default Soundfont File Background artwork Choose default SoundFont Choose background artwork One instrument track window mode Compact track buttons Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Smooth scroll in Song Editor Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Bank Patch Gain Reverb Reverb Roomsize Reverb Damping Reverb Width Reverb Level Chorus Chorus Lines Chorus Level Chorus Speed Chorus Depth sf2InstrumentView Open other SoundFont file Click here to open another SF2 file Choose the patch Gain Apply reverb (if supported) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. Reverb Roomsize: Reverb Damping: Reverb Width: Reverb Level: Apply chorus (if supported) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Chorus Lines: Chorus Level: Chorus Speed: Chorus Depth: Open SoundFont file SoundFont2 Files (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Resonance Filter type Voice 3 off Volume Chip model sidInstrumentView Volume: Resonance: Cutoff frequency: High-Pass filter Band-Pass filter Low-Pass filter Voice3 Off MOS6581 SID MOS8580 SID Attack: Ataque: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. Decay: Decay: Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. Sustain: Sustain: Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. Release: Release: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. Pulse Width: The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. Coarse: The Coarse detuning allows to detune Voice %1 one octave up or down. Pulse Wave Triangle Wave SawTooth Noise Sync Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Ring-Mod Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. Filtered When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Test Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. song Tempo Master volume Master pitch Project saved The project %1 is now saved. Project NOT saved. Proyecto NO guardado. The project %1 was not saved! Import file Importar archivo untitled Sin título Select file for project-export... Seleccione archivo para exportar proyecto Empty project This project is empty so exporting makes no sense. Please put some items into Song Editor first! MIDI sequences FL Studio projects All file types Hydrogen projects Select directory for writing exported tracks... SongEditor Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. Click aquí si usted desea detener la reproducción de su canción. El marcador de posición de la canción va a ser puesta al inicio de la canción. Could not open file No se puede abrir el archivo Could not write file No se puede escribir en el archivo Song-Editor Editor de canción Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. Click aquí, si usted desea reproducir su canción completa. La reproducción se iniciara en el marcador de posición (verde). Usted puede también moverla mientras se reproduce. Play song (Space) Reproducir canción (Espaciador) Stop song (Space) Detener canción (Espaciador) Add beat/bassline Agregar beat/bassline Add sample-track Agregar pista de ejemplo. Add automation-track Draw mode Edit mode (select and move) Record samples from Audio-device Record samples from Audio-device while playing song or BB track Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Error in file The file %1 seems to contain errors and therefore can't be loaded. Tempo TEMPO/BPM tempo of song tiempo de canción The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). High quality mode Master volume master volume Master pitch master pitch tono principal Value: %1% Value: %1 semitones Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Linear Y axis spectrumAnalyzerControls Linear spectrum Linear Y-axis Channel mode stereoEnhancerControlDialog WIDE Width: stereoEnhancerControls Width stereoMatrixControlDialog Left to Left Vol: Left to Right Vol: Right to Left Vol: Right to Right Vol: stereoMatrixControls Left to Left Left to Right Right to Left Right to Right timeLine Enable/disable auto-scrolling Enable/disable loop-points After stopping go back to begin After stopping go back to position at which playing was started After stopping keep position Hint Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted Solo trackContentObject Muted trackContentObjectView Current position Hint Press <Ctrl> and drag to make a copy. Current length Press <Ctrl> for free resizing. %1:%2 (%3:%4 to %5:%6) Delete (middle mousebutton) Cut Cortar Copy Copiar Paste Pegar Mute/unmute (<Ctrl> + middle click) trackOperationsWidget Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Actions for this track Mute Mute this track Solo Clone this track Clonar esta pista Remove this track vestigeInstrument Loading plugin Please wait while loading VST-plugin... Failed loading VST-plugin The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! vibed String %1 volume String %1 stiffness Pick %1 position Pickup %1 position Pan %1 Detune %1 Fuzziness %1 Length %1 Impulse %1 Octave %1 vibedView Volume: The 'V' knob sets the volume of the selected string. String stiffness: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. Pick position: Posición de la selección: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. Pickup position: Posición de agarre: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. Pan: The Pan knob determines the location of the selected string in the stereo field. Detune: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. Fuzziness: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. Length: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. Impulse or initial state The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. Octave The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. Impulse Editor The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Enable waveform Click here to enable/disable waveform. String The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. Sine wave Triangle wave Saw wave Square wave White noise wave User defined wave Smooth Click here to smooth waveform. Normalize Click here to normalize waveform. &Help &Ayuda Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. visualizationWidget click to enable/disable visualization of master-output click, para activar/desactivar visualización de la salida principal Click to enable voiceObject Voice %1 pulse width Voice %1 attack Voice %1 decay Voice %1 sustain Voice %1 release Voice %1 coarse detuning Voice %1 wave shape Voice %1 sync Voice %1 ring modulate Voice %1 filtered Voice %1 test lmms-1.0.0+bzr2569/data/locale/fa.qm0000644000000000000000000010723112043045661015027 0ustar 00000000000000d @dGGAHiHiII;ObzS}AS}CSUSbT.RUj:VuVW^\Wz\bEių?nių]iųdmszyttUtbv=Gh|}L|}c@;gmvFVNOM7)hק1$ק3Z@ )un"RC/9qy; @۴CcP0aUIʭimՙ'ߺzo&a3q.Er%`mfmG9v~DZCq2%I[Y -OXZ.#]Y4lh:&o8|ZM|Zc}"sj}}xH0~fJקA קC IܗjNtd_չu8t (K;: CYZ;d Z8EhEFjztBNrJ9rxhIDI8IfIw/IUhZ?nnoo:omoopp9pl p psabxbw~ՔJ%#EغhIؽg;h9Vr ua u~5 @|Tv%57eO7eT7U?~YEz/Q?2}o.K+^tyÞ;%EUv'Znos`DfljrNj<ENEd1U6{li:LM9.;l@'t|"sFit9F2Dt]7q zy UB*GQUIUIjZczM1hFw1 A/>2dTS r: U$ϞyU3h9G/]nqAe5yy dByDyIayw $  6Ex k1 w LU: :_Z Fyl SLN ]0W u~ wJN _  1i @C ]R ~S ˔n D~ l 'm< Om `d u: }l> J VY 4] غg Y:I Y:? Y:J ~.I iif "w[ +  + Jo + x. -#9D =wH d̥ 7 d̥` d̥h { G {xz _! b Ɉ  @u @u_ @uf D , 1 3 h Չ9n Չ9k 3rKFn~zi;Q>']"mk ^7WGCg ` ah7L HƳi /1('1GAbout AboutDialog "1~H(Arpeggio)Arpeggio ArpeggiatorE/.D #1~H Arpeggio gate ArpeggiatorE-/H/G  "1~HArpeggio range Arpeggiator2E'F #1~H Arpeggio time Arpeggiator%%ArpeggiatorViewE/.D "1~H:Arpeggio gate:ArpeggiatorView E-/H/G  #1~H:Arpeggio range:ArpeggiatorView2E'F "1~H:Arpeggio time:ArpeggiatorView,G*: Direction:ArpeggiatorView'2 'F /3*1G (1' *F8E 2E'F /1 "1~H (G ED +'FG '3*A'/G F/.2E'F "1~H E4.5 E F/ G G E/* G1 "GF "1~H ~.4 4H/.Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played.ArpeggiatorViewE +msArpeggiatorViewF* (G') octave(s)ArpeggiatorView *BH*:Amplify:AudioFileProcessorViewFB7G  ~''F: Endpoint:AudioFileProcessorView'1 'F /EG 1' A9'D F/,*E'E FEHFG E9H3 E 4H/.'F (1' ,DHG G' ,'D( E'FF/  *5'/A E9H3 EF'3( '3*.pIf you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash.AudioFileProcessorViewFB7G  41H9: Startpoint:AudioFileProcessorView$~ &EB/'1 (%1%2)&Copy value (%1%2)AutomatableModel,3('F/F &EB/'1 (%1%2)&Paste value (%1%2)AutomatableModel"&('2 F4'F (%1%2) &Reset (%1%2)AutomatableModel4~.4/E+ 'DH ,'1 (A'5DG)"Play/pause current pattern (Space)AutomationEditor6*HBA ~.4 'DH ,'1 (A'5DG)'Stop playing of current pattern (Space)AutomationEditor*:1 F'E Change nameAutomationPatternView('2 F4'F F'E Reset nameAutomationPatternView1111 ChordCreator11b911b9 ChordCreator1313 ChordCreator13#913#9 ChordCreator 13b5b913b5b9 ChordCreator13b913b9 ChordCreator66 ChordCreator madd96add9 ChordCreator 6sus46sus4 ChordCreator77 ChordCreator7#117#11 ChordCreator7#57#5 ChordCreator 7#5#97#5#9 ChordCreator 7#5b97#5b9 ChordCreator7#97#9 ChordCreator 7add117add11 ChordCreator 7add137add13 ChordCreator7b57b5 ChordCreator 7b5b97b5b9 ChordCreator7b97b9 ChordCreator 7sus47sus4 ChordCreator99 ChordCreator9#119#11 ChordCreator9#59#5 ChordCreator9b139b13 ChordCreator9b59b5 ChordCreator 9sus49sus4 ChordCreatorAeolianAeolian ChordCreator ArabicArabic ChordCreator BluesBlues ChordCreatorE-/H/G  *'1 Chord range ChordCreator*'1 G'(Chords)Chords ChordCreatorDiminished Diminished ChordCreatorDominant bebopDominant bebop ChordCreator DorianDorian ChordCreatorEnigmatic Enigmatic ChordCreatorHarmonic minorHarmonic minor ChordCreatorHungarian minorHungarian minor ChordCreatorJap in sen Jap in sen ChordCreatorLocrianLocrian ChordCreator LydianLydian ChordCreator Maj11Maj11 ChordCreator Maj13Maj13 ChordCreatorMaj7Maj7 ChordCreatorMaj7#11Maj7#11 ChordCreator Maj7#5Maj7#5 ChordCreatorMaj7add13 Maj7add13 ChordCreator Maj7b5Maj7b5 ChordCreatorMaj9Maj9 ChordCreatorMaj9#11Maj9#11 ChordCreator Maj9#5Maj9#5 ChordCreatorMaj9sus4Maj9sus4 ChordCreator Majb5Majb5 ChordCreator MajorMajor ChordCreatorMajor bebop Major bebop ChordCreator Major pentatonicMajor pentatonic ChordCreatorMelodic minor Melodic minor ChordCreator Minor pentatonicMinor pentatonic ChordCreatorMixolydian Mixolydian ChordCreatorNeopolitan Neopolitan ChordCreator Neopolitan minorNeopolitan minor ChordCreatorPhrygolydian Phrygolydian ChordCreatorWhole tone Whole tone ChordCreatoradd9add9 ChordCreatoraugaug ChordCreatoraugsus4augsus4 ChordCreatorm-Maj11m-Maj11 ChordCreatorm-Maj13m-Maj13 ChordCreator m-Maj7m-Maj7 ChordCreatorm-Maj7add11 m-Maj7add11 ChordCreatorm-Maj7add13 m-Maj7add13 ChordCreatorm11m11 ChordCreatorm13m13 ChordCreatorm6m6 ChordCreator m6add9m6add9 ChordCreatorm7m7 ChordCreatorm7add11m7add11 ChordCreatorm7add13m7add13 ChordCreatorm7b5m7b5 ChordCreatorm7b9m7b9 ChordCreatorm9m9 ChordCreatorm9-Maj7m9-Maj7 ChordCreatorm9b5m9b5 ChordCreator madd9madd9 ChordCreator mollb5minb5 ChordCreator minorminor ChordCreatorF*octave ChordCreatorsus2sus2 ChordCreatorsus4sus4 ChordCreatortritri ChordCreator"E-/H/G  *'1 G' : Chord range:ChordCreatorViewF* (G') octave(s)ChordCreatorViewD:HCancelControllerConnectionDialog&1'GFE'&HelpControllerViewE/.DGateEffect&1'GFE'&Help EffectViewE-H-DECAYDECAY EffectView*G',E(Attack):Attack:EnvelopeAndLfoView(1' 'FG E2'F ~'* *H37 'F LFO F*1D 4H/ 'F,' 1' D F/.>Click here to make the envelope-amount controlled by this LFO.EnvelopeAndLfoViewE-H 4/F(Decay):Decay:EnvelopeAndLfoViewFG/'1-HOLDHOLDEnvelopeAndLfoViewFG/'1(Hold):Hold:EnvelopeAndLfoView E2'F E/HD'3HF:Modulation amount:EnvelopeAndLfoView(~(4 *'.1(Predelay): Predelay:EnvelopeAndLfoView1G'(Release):Release:EnvelopeAndLfoView*BH*(Sustain):Sustain:EnvelopeAndLfoView$'2 'F /3*1G (1' *F8E 2E'F *G',E LFO ,'1 '3*A'/G F/.G1G 'F EB/'1 (4*1 ('4/ LFO 2E'F (4*2 (1' 'A2'4 /'EFG (G EB/'1 E'2EE F'2 /'2/.Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum.EnvelopeAndLfoView'2 'F /3*1G (1' *F8E 2E'F *G',E ~'* ,'1 '3*A'/G F/.G1G 'F EB/'1 (4*1 ('4/ ~'* 2E'F (4*2 (1' 'A2'4 *' 37- *G',E F'2 /'2/.EB/'1 E 1' (1' /3*'G G' E'FF/ ~'FH H EB/'1 2'/ 1' (1' 2G '3*A'/G F/.Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings.EnvelopeAndLfoView'2 'F /3*1G (1' *F8E 2E'F E-H 4/F ~'* ,'1 '3*A'/G F/. G1G 'F EB/'1 (4*1 ('4/ 2E'F (4*1 (1' 'G4 '2 37- *G',E (G 37- *BH* 7HD 4/.EB/'1 E 1' (1' /3*'G G' E'FF/ ~'FH 'F*.'( F/.Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos.EnvelopeAndLfoViewV'2 'F /3*1G (1' *F8E 2E'F *'ED ~'* ,'1 '3*A'/G F/.G1G 'F EB/'1 (4*1 ('4/ (4*1 7HD E 4/ *' ~'* 37- *G',E 1' B(D '2 'G4 G 37- *BH*(sustain-level) FG/'1/.Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level.EnvelopeAndLfoViewZ'2 'F /3*G (1' *F8E EB/'1 E0HD'3HF LFO ,'1 '3*A'/G F/.G1G 'F EB/'1 (4*1 ('4/ 'F/'2G  EF*.( (4*1((1' E+'D -,E ' A1'F3 H4G ') *-* *'+1 'F LFO B1'1 E 1/.Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO.EnvelopeAndLfoView^'2 'F /3*G (1' *F8E EB/'1 E0HD'3HF ~'* ,'1 '3*A'/G F/.G1G 'F EB/'1 (4*1 ('4/ 'F/'2G  EF*.( (4*1((1' E+'D -,E ' A1'F3 H4G ') *-* *'+1 'F ~'* B1'1 E 1/.Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope.EnvelopeAndLfoView'2 'F /3*1G (1' *F8E ~4 *'.1 ~'* ,'1 '3*A'/G F/.G1G 'F EB/'1 (4*1 ('4/ 2E'F (4*1 B(D '2 41H9 H'B9 ~'* 7HD E 4/.Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope.EnvelopeAndLfoView'1 'F /3*1G (1' *F8E 2E'F ~4 *'.1 LFO ,'1 '3*A'/G F/.G1G 'F EB/'1 (4*1 ('4/ 2E'F (4*2 *' 41H9 FH3'F LFO 7HD E 4/.Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate.EnvelopeAndLfoViewn'2 'F /3*1G (1' *F8E 2E'F 1G' ~'* ,'1 '3*A'/G F/. G1G 'F EB/'1 (4*1 ('4/ 2E'F (4*1 (1' 'G4 '2 37- *BH* (G 5A1 7HD 4/.EB/'1 2'/ 1' (1' /3*'G G' 2G 'F*.'( F/.Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings.EnvelopeAndLfoView'2 'F /3*1G (1' *F8E 319* LFO '3*A'/G F/. G1G 'F EB/'1 (4*1 ('4/ LFO 319 *1 FH3'F E F/ H ,DHG  4E' 319 *1 .H'G/ (H/.Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect.EnvelopeAndLfoView2'2 'F /3*1G (1' *F8E 37- *BH*(Sustain Level) ~'* ,'1 '3*A'/G F/. G1G 'F EB/'1 (4*1 ('4/ ~'* /1 37- ('D'*1 B(D '2 F2HD (G 5A1 B1'1 E 1/.Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero.EnvelopeAndLfoView:F*1D EB/'1 ~'* *H37 'F LFO#control envelope-amount by this LFOEnvelopeAndLfoViewms/LFO:ms/LFO:EnvelopeAndLfoViewD:HCancelExportProjectDialog~'F 01 2x 2x LowPassInstrumentSoundShaping*E'E 01AllpassInstrumentSoundShapingE'F 01 csg BandPass csgInstrumentSoundShapingE'F 01 czpg BandPass czpgInstrumentSoundShaping('D' 01HiPassInstrumentSoundShaping~'F 01LowPassInstrumentSoundShapingEH MoogMoogInstrumentSoundShapingFNotchInstrumentSoundShapingQ/12HF'F3 Q/ResonanceInstrumentSoundShaping-,EVOLUMEInstrumentSoundShapingHzHzInstrumentSoundShapingViewA1'F3 H4G ':cutoff-frequency:InstrumentSoundShapingViewMit diesem Knopf knnen Sie die Lautstrke des geffneten Kanals ndern. AboutDialog About LMMS LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) About درباره LMMS - easy music production for everyone Authors Translation Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! License Copyright (c) 2004-2014, LMMS developers <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE CHANNELS AudioFileProcessorView Open other sample Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Reverse sample If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. اگر این دکمه را فعال کنید,تمام نمونه معکوس می شود.این برای جلوه های جالب مانند یک تصادف معکوس مناسب است. Loop sample at start- and end-point Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Amplify: تقویت: With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Startpoint: نقطه ی شروع: With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Endpoint: نقطه ی پایان: With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. JACK server down The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack::setupWidget CLIENT-NAME CHANNELS AudioOss::setupWidget DEVICE CHANNELS AudioPortAudio::setupWidget BACKEND DEVICE AudioPulseAudio::setupWidget DEVICE CHANNELS AudioSdl::setupWidget DEVICE AutomatableModel &Reset (%1%2) &باز نشانی (%1%2) &Copy value (%1%2) کپی &مقدار (%1%2) &Paste value (%1%2) چسباندن &مقدار (%1%2) Edit song-global automation Connected to %1 Connected to controller Edit connection... Remove connection Connect to controller... Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) پخش/مکث الگوی جاری (فاصله) Stop playing of current pattern (Space) توقف پخش الگوی جاری (فاصله) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Click here if you want to stop playing of the current pattern. Draw mode (Shift+D) Erase mode (Shift+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. Cut selected values (Ctrl+X) Copy selected values (Ctrl+C) Paste values from clipboard (Ctrl+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the values from the clipboard will be pasted at the first visible measure. Automation Editor - no pattern Automation Editor - %1 Please open an automation pattern with the context menu of a control! Values copied All selected values were copied to the clipboard. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> AutomationPatternView double-click to open this pattern in automation editor Open in Automation editor Clear Reset name باز نشانی نام Change name تغییر نام %1 Connections Disconnect "%1" AutomationTrack Automation track Controller Controller %1 ControllerConnectionDialog Connection Settings MIDI CONTROLLER Input channel CHANNEL Input controller CONTROLLER Auto Detect MIDI-devices to receive MIDI-events from USER CONTROLLER MAPPING FUNCTION OK Cancel لغو LMMS Cycle Detected. ControllerRackView Controller Rack Add Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls Controllers are able to automate the value of a knob, slider, and other controls. Rename controller Enter the new name for this controller &Remove this plugin &Help &راهنما Effect Effect enabled Wet/Dry mix Gate مدخل Decay EffectChain Effects enabled EffectRackView EFFECTS CHAIN Add effect EffectSelectDialog Add effect Plugin description EffectView Toggles the effect on or off. On/Off W/D Wet Level: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. DECAY محو-DECAY Time: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. GATE Gate: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. Controls Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. Move &up Move &down &Remove this plugin &Help &راهنما EnvelopeAndLfoParameters Predelay Attack Hold Decay Sustain Release Modulation LFO Predelay LFO Attack LFO speed LFO Modulation LFO Wave Shape Freq x 100 Modulate Env-Amount EnvelopeAndLfoView DEL Predelay: پبش تاخیر(Predelay): Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. از این دستگیره برای تنظیم پیش تاخیر پاکت جاری استفاده کنید.هرچه این مقدار بیشتر باشد زمان بیشتری قبل از شروع واقعی پاکت طول می کشد. ATT Attack: تهاجم(Attack): Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. از این دستگیره برای تنظیم زمان تهاجم پاکت جاری استفاده کنید.هرچه این مقدار بیشتر باشد پاکت زمان بیشتزی برای افزایش تا سطح تهاجم نیاز دازد.مقدار کم را برای دستگاه هایی مانند پیانو و مقدار زیاد را برای زهی استفاده کنید. HOLD نگهداری-HOLD Hold: نگهداری(Hold): Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. از این دستگیره برای تنظیم زمان تامل پاکت جاری استفاده کنید.هرچه این مقدار بیشتر باشد بیشتر طول می کشد تا پاکت سطح تهاجم را قبل از کاهش یه سطح تقویت(sustain-level) نگهدارد. DEC Decay: محو شدن(Decay): Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. از این دستگیره برای تنظیم زمان محو شدن پاکت جاری استفاده کنید. هرچه این مقدار بیشتر باشد زمان بیشتری برای کاهش از سطح تهاجم به سطح تقویت طول کشد.مقدار کمی را برای دستگاه هایی مانند پیانو انتخاب کنید. SUST Sustain: تقویت(Sustain): Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. از این دستگیره برای تنظیم سطح تقویت(Sustain Level) پاکت جاری استفاده کنید. هرچه این مقدار بیشتر باشد پاکت در سطح بالاتری قبل از نزول به صفر قرار می گیرد. REL Release: رهایی(Release): Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. از این دستگیره برای تنظیم زمان رهایی پاکت جاری استفاده کنید. هرچه این مقدار بیشتر باشد زمان بیشتری برای کاهش از سطح تقویت به صفر طول کشد.مقدار زیاد را برای دستگاه های زهی انتخاب کنید. AMT Modulation amount: میزان مدولاسیون: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. از این دسته برای تنظیم مقدار مذولاسیون پاکت جاری استفاده کنید.هرچه این مقدار بیشتر باشد اندازه ی منتخب بیشتری(برای مثال حجم یا فرکانس گوشه ای) تحت تاثیر این پاکت قرار می گیرد. LFO predelay: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. ار این دستگیره برای تنظیم زمان پیش تاخیر LFO جاری استفاده کنید.هرچه این مقدار بیشتر باشد زمان بیشتزی تا شروع نوسان LFO طول می کشد. LFO- attack: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. از این دستگیره برای تنظیم زمان تهاجم LFO جاری استفاده کنید.هرچه این مقدار بیشتر باشد LFO زمان بیشتزی برای افزایش دامنه به مقدار ماکزیمم نیاز دازد. SPD LFO speed: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. از این دستگیره برای تنظیم سرعت LFO استفاده کنید. هرچه این مقدار بیشتر باشد LFO سریع تر نوسان می کند و جلوه ی شما سریع تر خواهد بود. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. از این دسته برای تنظیم مقدار مذولاسیون LFO جاری استفاده کنید.هرچه این مقدار بیشتر باشد اندازه ی منتخب بیشتری(برای مثال حجم یا فرکانس گوشه ای) تحت تاثیر این LFO قرار می گیرد. Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave for current. Click here for a square-wave. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. FREQ x 100 Click here if the frequency of this LFO should be multiplied by 100. multiply LFO-frequency by 100 MODULATE ENV-AMOUNT Click here to make the envelope-amount controlled by this LFO. برای اینکه میزان پاکت توسط این LFO کنترل شود اینجا را کلیک کنید. control envelope-amount by this LFO کنترل مقدار پاکت توسط این LFO ms/LFO: ms/LFO: Hint Drag a sample from somewhere and drop it in this window. ExportProjectDialog Export project Output File format: Samplerate: 44100 Hz 48000 Hz 88200 Hz 96000 Hz 192000 Hz Bitrate: 64 KBit/s 128 KBit/s 160 KBit/s 192 KBit/s 256 KBit/s 320 KBit/s Depth: 16 Bit Integer 32 Bit Float Please note that not all of the parameters above apply for all file formats. Quality settings Interpolation: Zero Order Hold Sinc Fastest Sinc Medium (recommended) Sinc Best (very slow!) Oversampling (use with care!): 1x (None) 2x 4x 8x Sample-exact controllers Alias-free oscillators Start Cancel لغو Export as loop (remove end silence) FxMixer Master FX %1 FxMixerView Rename FX channel Enter the new name for this FX channel FX-Mixer FX Fader %1 Mute Mute this FX channel InstrumentFunctionArpeggio Arpeggio آرپگیو(Arpeggio) Arpeggio type Arpeggio range محدوده ی آرپگیو Arpeggio time زمان أرپگیو Arpeggio gate مدخل أرپگیو Arpeggio direction Arpeggio mode Up Down Up and down Random Free Sort Sync InstrumentFunctionArpeggioView ARPEGGIO An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. RANGE Arpeggio range: محدوده ی أرپگیو: octave(s) نت (ها) Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. TIME Arpeggio time: زمان آرپگیو: ms م ث Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. از این دستگیره برای تنظیم زمان در آرپگیو به میلی ثانیه استفاده کنید.زمان آرپگیو مشخص می کند که چه مدت هر آهنگ آرپگیو پخش شود. GATE Arpeggio gate: مدخل آرپگیو: % % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Chord: Direction: جهت: Mode: InstrumentFunctionNoteStacking octave نت Major Major Majb5 Majb5 minor minor minb5 mollb5 sus2 sus2 sus4 sus4 aug aug augsus4 augsus4 tri tri 6 6 6sus4 6sus4 6add9 madd9 m6 m6 m6add9 m6add9 7 7 7sus4 7sus4 7#5 7#5 7b5 7b5 7#9 7#9 7b9 7b9 7#5#9 7#5#9 7#5b9 7#5b9 7b5b9 7b5b9 7add11 7add11 7add13 7add13 7#11 7#11 Maj7 Maj7 Maj7b5 Maj7b5 Maj7#5 Maj7#5 Maj7#11 Maj7#11 Maj7add13 Maj7add13 m7 m7 m7b5 m7b5 m7b9 m7b9 m7add11 m7add11 m7add13 m7add13 m-Maj7 m-Maj7 m-Maj7add11 m-Maj7add11 m-Maj7add13 m-Maj7add13 9 9 9sus4 9sus4 add9 add9 9#5 9#5 9b5 9b5 9#11 9#11 9b13 9b13 Maj9 Maj9 Maj9sus4 Maj9sus4 Maj9#5 Maj9#5 Maj9#11 Maj9#11 m9 m9 madd9 madd9 m9b5 m9b5 m9-Maj7 m9-Maj7 11 11 11b9 11b9 Maj11 Maj11 m11 m11 m-Maj11 m-Maj11 13 13 13#9 13#9 13b9 13b9 13b5b9 13b5b9 Maj13 Maj13 m13 m13 m-Maj13 m-Maj13 Harmonic minor Harmonic minor Melodic minor Melodic minor Whole tone Whole tone Diminished Diminished Major pentatonic Major pentatonic Minor pentatonic Minor pentatonic Jap in sen Jap in sen Major bebop Major bebop Dominant bebop Dominant bebop Blues Blues Arabic Arabic Enigmatic Enigmatic Neopolitan Neopolitan Neopolitan minor Neopolitan minor Hungarian minor Hungarian minor Dorian Dorian Phrygolydian Phrygolydian Lydian Lydian Mixolydian Mixolydian Aeolian Aeolian Locrian Locrian Chords تار ها(Chords) Chord type Chord range محدوده ی تار Minor InstrumentFunctionNoteStackingView RANGE Chord range: محدوده ی تار ها : octave(s) نت (ها) Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT CHANNEL VELOCITY ENABLE MIDI OUTPUT PROGRAM MIDI devices to receive MIDI events from MIDI devices to send MIDI events to NOTE InstrumentSoundShaping VOLUME حجم Volume CUTOFF Cutoff frequency RESO Resonance Envelopes/LFOs Filter type Q/Resonance Q/رزونانس LowPass پایین گذر HiPass بالا گذر BandPass csg میان گذر csg BandPass czpg میان گذر czpg Notch نچ Allpass تمام گذر Moog موگ Moog 2x LowPass پایین گذر 2x RC LowPass 12dB RC BandPass 12dB RC HighPass 12dB RC LowPass 24dB RC BandPass 24dB RC HighPass 24dB Vocal Formant Filter InstrumentSoundShapingView TARGET These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! FILTER Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. Hz Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... RESO Resonance: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. FREQ cutoff frequency: InstrumentTrack unnamed_track Volume Panning Pitch FX channel Default preset With this knob you can set the volume of the opened channel. Mit diesem Knopf können Sie die Lautstärke des geöffneten Kanals ändern. Base note Pitch range InstrumentTrackView Volume Volume: VOL Panning Panning: PAN MIDI Input Output InstrumentTrackWindow GENERAL SETTINGS Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. اگر می خواهید تنظیمات کانال جاری را در پرونده-از قبل چیده شده ذخیره کنید اینجا را کلیک کنید.بعدا شما می توانید این چیده شده را در مرور گر از پیش چیده شده بار گذاری کنید. Instrument volume Volume: VOL Panning Panning: PAN Pitch Pitch: cents درصد PITCH FX channel ENV/LFO FUNC FX MIDI Save preset XML preset file (*.xpf) PLUGIN اضافات Save current channel settings in a preset-file Pitch range (semitones) RANGE LadspaControl Link channels LadspaControlDialog Link Channels Channel LadspaControlView Link channels Value: Sorry, no help available. LadspaEffect Effect Unknown LADSPA plugin %1 requested. LfoController LFO Controller Base value Oscillator speed Oscillator amount Oscillator phase Oscillator waveform Frequency Multiplier LfoControllerDialog LFO LFO Controller BASE Base amount: todo SPD LFO-speed: سرعت-LFO: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. AMT Modulation amount: میزان مدولاسیون: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. PHS Phase offset: degrees درجه ها With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for a a moog saw-wave. Click here for an exponential wave. Click here for white-noise. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. Could not save config-file پرونده ی تنظیمات ذخیره نشد Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. &Project &پروژه &New &جدید &Open... &باز کن... Recently opened projects &Save &ذخیره کن Save &As... ذ&خیره به صورت... Import... E&xport... &Quit &خروج &Edit Settings &Tools &Help &راهنما Online help Help راهنما What's this? این چیست؟ About درباره Create new project ایجاد پروژه ی جدید Create new project from template Open existing project باز کردن پروژه ی موجود Recently opened project Save current project ذخیره ی پروژه ی جاری Export current project استخراج پروژه ی جاری Show/hide Song-Editor By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. Show/hide Beat+Bassline Editor By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. Show/hide Piano-Roll Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. Show/hide Automation Editor Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Show/hide FX Mixer Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Show/hide project notes Click here to show or hide the project notes window. In this window you can put down your project notes. Show/hide controller rack Untitled LMMS %1 LMMS %1 Project not saved پروژه ذخیره نشده The current project was modified since last saving. Do you want to save it now? پروژه جاری بعد از آخرین ذخیره تغییر یافته است.آیا اکنون مایل به ذخیره ی آن هستید؟ Open project باز کردن پروژه Save project ذخیره ی پروژه Help not available Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. My projects My samples My presets My home My computer Root directory Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 Project recovery It looks like the last session did not end properly. Do you want to recover the project of this session? Configuration file Error while parsing configuration file at line %1:%2: %3 MeterDialog Meter Numerator Meter Denominator TIME SIG MeterModel Numerator Denominator MidiAlsaRaw::setupWidget DEVICE MidiAlsaSeq::setupWidget DEVICE MidiController MIDI Controller unnamed_midi_controller MidiImport Setup incomplete You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiOss::setupWidget DEVICE MidiPort Input channel Output channel Input controller Output controller Fixed input velocity Fixed output velocity Output MIDI program Receive MIDI-events Send MIDI-events Fixed output note OscillatorObject Osc %1 volume حجم نوسان ساز %1 Osc %1 panning تراز نوسان ساز %1 Osc %1 coarse detuning کوک زمختی نوسان ساز %1 Osc %1 fine detuning left کوک دقیق چپ نوسان ساز %1 Osc %1 fine detuning right کوک دقیق راست نوسان ساز %1 Osc %1 phase-offset انحراف فاز نوسان ساز %1 Osc %1 stereo phase-detuning کوک فاز استریوی نوسان ساز %1 Osc %1 wave shape Modulation type %1 Osc %1 waveform PatmanView Open other patch Click here to open another patch-file. Loop and Tune settings are not reset. Loop Loop mode Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. Tune Tune mode Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. No file selected Open patch file Patch-Files (*.pat) PeakController Peak Controller Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK LFO Controller PeakControllerEffectControlDialog BASE Base amount: Modulation amount: میزان مدولاسیون: Attack: تهاجم(Attack): Release: رهایی(Release): AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Modulation amount مقدار مدولاسیون Mute output Attack Release Abs Value Amount Multiplicator PianoView Base note Plugin Plugin not found The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Error while loading plugin در بارگذاری اضافات اشتباه رخ داد Failed to load plugin "%1"! ProjectRenderer WAV-File (*.wav) Compressed OGG-File (*.ogg) پرونده ی OGG فشرده شده(*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: Maker: Copyright: Requires Real Time: Yes No Real Time Capable: In Place Broken: Channels In: Channels Out: File: SampleBuffer Open audio file باز کردن پرونده ی صوتی All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) Wave- پرونده های(*.wav) OGG-Files (*.ogg) OGG-پرونده های (*.ogg) DrumSynth-Files (*.ds) FLAC-Files (*.flac) SPEEX-Files (*.spx) MP3-Files (*.mp3) VOC-Files (*.voc) VOC-پرونده های (*.voc) AIFF-Files (*.aif *.aiff) AIFF-پرونده های (*.aif *.aiff) AU-Files (*.au) AU-پرونده های (*.au) RAW-Files (*.raw) RAW-پرونده های (*.raw) SampleTCOView double-click to select sample برای انتخاب نمونه دوبار کلیک کنید Delete (middle mousebutton) Cut برش Copy کپی Paste چسباندن Mute/unmute (<Ctrl> + middle click) Set/clear record SampleTrack Sample track تراک نمونه Volume SampleTrackView Track volume Channel volume: حجم کانال: VOL TempoSyncKnob Tempo Sync No Sync Eight beats Whole note Half note Quarter note 8th note 16th note 32nd note Custom... &Help &راهنما Custom Synced to Eight Beats Synced to Whole Note Synced to Half Note Synced to Quarter Note Synced to 8th Note Synced to 16th Note Synced to 32nd Note TimeDisplayWidget click to change time units TrackContainer Couldn't import file Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. Couldn't open file Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! Loading project... بارگذاری پروژه... Cancel لغو Please wait... لطفا صبر کنید... Importing MIDI-file... وارد کردن پرونده ی MIDI... Importing FLP-file... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 Mix output of oscillator 1 & 2 Synchronize oscillator 1 with oscillator 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Use phase modulation for modulating oscillator 3 with oscillator 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 Mix output of oscillator 2 & 3 Synchronize oscillator 2 with oscillator 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Osc %1 volume: حجم نوسان ساز %1: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. با این دستگیره می توانید حجم نوسان ساز %1 را تنظیم کنید.هنگام تنظیم به ۰ ,نوسان ساز خاموش است.در غیر این صورت همان قدر که تنظیم کنید صدای نوسان سار را بلند خواهید شنید. Osc %1 panning: تراز نوسان ساز %1: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. با این دستگیره می توانید تراز نوسان ساز %1 را تنظیم کنید.مقدار ۱۰۰- یعنی ۱۰۰٪ چپ و مقدار ۱۰۰ خروجی نوسان ساز را به راست منتقل می کند. Osc %1 coarse detuning: کوک زمختی نوسان ساز %1: semitones With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. با این دستگیره می توانید کوک زمختی نوسان ساز %1 را تنظیم کنید.شما می توانید کوک نوسان ساز را در ۱۲ نیم صدا (۱ نت) بالا یا پایین کنید. این برای ایجاد صدا به همراه زه (Chord) مفید خواهد بود. Osc %1 fine detuning left: کوک دقیق چپ نوسان ساز %1: cents درصد With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. با این دستگیره می توانید کانال چپ نوسان ساز %1 را کوک دقیق کنید.کوک دقیق بین ۱۰۰- در صد و ۱۰۰ در صد محدود شده است.این برای ایجاد صدا های چاق (fat) مفید است. Osc %1 fine detuning right: کوک دقیق راست نوسان ساز %1: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. با این دستگیره می توانید کانال راست نوسان ساز %1 را کوک دقیق کنید.کوک دقیق بین ۱۰۰- در صد و ۱۰۰ در صد محدود شده است.این برای ایجاد صدا های چاق (fat) مفید است. Osc %1 phase-offset: انحراف فاز نوسان ساز %1: degrees درجه ها With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. با این دستگیره می توانید انحراف فاز نوسان ساز %1 را تنظیم کنید.این یعنی اینکه شما می توانید نقطه ی شروع نوسان نوسان ساز را جابجا کنید.برای مثال اگر یک موج سینوسی و انحراف فاز ۱۸۰ داشته باشید, موج در ابتدا به پایین می رود.برای موج مربعی نیز شبیه همین است. Osc %1 stereo phase-detuning: کوک فاز استریوی نوسان ساز %1: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use a moog-like saw-wave for current oscillator. Use an exponential wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Show/hide GUI Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Turn off all notes Open VST-plugin DLL-files (*.dll) EXE-files (*.exe) No VST-plugin loaded Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Save preset Click here, if you want to save current VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Preset by - VST plugin control VstEffectControlDialog Show/hide Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Save preset Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin Please wait while loading VST-plugin... Failed loading VST-plugin The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Open Preset Vst Plugin Preset (*.fxp *.fxb) : default " ' Save Preset .fxp .FXP .FXB .fxb ZynAddSubFxInstrument Portamento Filter Frequency Filter Resonance Bandwidth FM Gain Resonance Center Frequency Resonance Bandwidth Forward MIDI Control Change Events ZynAddSubFxView Show GUI Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Portamento: PORT Filter Frequency: FREQ Filter Resonance: RES Bandwidth: BW FM Gain: FM GAIN Resonance center frequency: RES CF Resonance bandwidth: RES BW Forward MIDI Control Changes audioFileProcessor Amplify تقویت Start of sample شروع نمونه End of sample پایان نمونه Reverse sample Loop Stutter bassBoosterControlDialog FREQ Frequency: GAIN Gain: RATIO Ratio: bassBoosterControls Frequency Gain Ratio bbEditor Play/pause current beat/bassline (Space) پخش/درنگ خط-بم/تپش جاری(فاصله) Beat+Bassline Editor ویرایشگر خط-بم/تپش Add beat/bassline اضافه ی خط بم/تپش (beat/baseline) Add automation-track Stop playback of current beat/bassline (Space) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. Click here to stop playing of current beat/bassline. Remove steps Add steps bbTCOView Open in Beat+Bassline-Editor در ویرایشگر خط-بم/تپش باز کن Reset name باز نشانی نام Change name تغییر نام Change color تغییر رنگ bbTrack Beat/Bassline %1 خط-بم/تپش %1 Clone of %1 bitInvader Samplelength bitInvaderView Sample Length Sine wave Triangle wave Saw wave Square wave White noise wave User defined wave Smooth Click here to smooth waveform. Interpolation Normalize Draw your own waveform here by dragging your mouse on this graph. Click for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for white-noise. Click here for a user-defined shape. exportProjectDialog Could not open file پرونده باز نشد Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! Error Error while determining file-encoder device. Please try to choose a different output format. Rendering: %1% Export project to %1 استخراج پرونده به %1 fader Please enter a new value between %1 and %2: fileBrowser Browser fileBrowserTreeWidget Send to active instrument-track Open in new instrument-track/Song-Editor Open in new instrument-track/B+B Editor Loading sample Please wait, loading sample for preview... --- Factory files --- graphModel Graph kickerInstrument Start frequency End frequency Decay Distortion Gain kickerInstrumentView Start frequency: End frequency: Decay: محو شدن(Decay): Distortion: Gain: knob &Help &راهنما Please enter a new value between -96.0 dBV and 6.0 dBV: Please enter a new value between %1 and %2: ladspaBrowserView Available Effects Unavailable Effects Instruments Analysis Tools Don't know This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. Type: نوع: ladspaDescription Plugins Description ladspaPortDialog Ports Name Rate Direction Type Min < Default < Max Logarithmic SR Dependent Audio Control Input Output Toggled Integer Float Yes lb302Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb302SynthView Cutoff Freq: Resonance: Env Mod: Decay: محو شدن(Decay): 303-es-que, 24dB/octave, 3 pole filter Slide Decay: DIST: Saw wave Click here for a saw-wave. Triangle wave Click here for a triangle-wave. Square wave Click here for a square-wave. Rounded square wave Click here for a square-wave with a rounded end. Moog wave Click here for a moog-like wave. Sine wave Click for a sine-wave. White noise wave Click here for an exponential wave. Click here for white-noise. lb303Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb303SynthView Cutoff Freq: CUT Resonance: RES Env Mod: ENV MOD Decay: محو شدن(Decay): DEC 303-es-que, 24dB/octave, 3 pole filter Slide Decay: SLIDE DIST: DIST WAVE: WAVE malletsInstrument Hardness Position Vibrato Gain Vibrato Freq Stick Mix Modulator Crossfade LFO Speed LFO Depth ADSR Pressure Motion Speed Bowed Spread Marimba Vibraphone Agogo Wood1 Reso Wood2 Beats Two Fixed Clump Tubular Bells Uniform Bar Tuned Bar Glass Tibetan Bowl Missing files Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! malletsInstrumentView Instrument Spread Spread: Hardness Hardness: Position Position: Vib Gain Vib Gain: Vib Freq Vib Freq: Stick Mix Stick Mix: Modulator Modulator: Crossfade Crossfade: LFO Speed LFO Speed: LFO Depth LFO Depth: ADSR ADSR: Bowed Pressure Pressure: Motion Motion: Speed Speed: Vibrato Vibrato: manageVSTEffectView - VST parameter control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView - VST plugin control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help &راهنما opl2instrument Patch Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Volume organicInstrumentView Distortion: Volume: Randomise Osc %1 waveform: Osc %1 volume: حجم نوسان ساز %1: Osc %1 panning: تراز نوسان ساز %1: Osc %1 fine detuning left: کوک دقیق چپ نوسان ساز %1: cents درصد papuInstrument Sweep time Sweep direction Sweep RtShift amount Wave Pattern Duty Channel 1 volume Volume sweep direction Length of each step in sweep Channel 2 volume Channel 3 volume Channel 4 volume Right Output level Left Output level Channel 1 to SO2 (Left) Channel 2 to SO2 (Left) Channel 3 to SO2 (Left) Channel 4 to SO2 (Left) Channel 1 to SO1 (Right) Channel 2 to SO1 (Right) Channel 3 to SO1 (Right) Channel 4 to SO1 (Right) Treble Bass Shift Register width papuInstrumentView Sweep Time: Sweep Time Sweep RtShift amount: Sweep RtShift amount Wave pattern duty: Wave Pattern Duty Square Channel 1 Volume: Length of each step in sweep: Length of each step in sweep Wave pattern duty Square Channel 2 Volume: Square Channel 2 Volume Wave Channel Volume: Wave Channel Volume Noise Channel Volume: Noise Channel Volume SO1 Volume (Right): SO1 Volume (Right) SO2 Volume (Left): SO2 Volume (Left) Treble: Treble Bass: Bass Sweep Direction Volume Sweep Direction Shift Register Width Channel1 to SO1 (Right) Channel2 to SO1 (Right) Channel3 to SO1 (Right) Channel4 to SO1 (Right) Channel1 to SO2 (Left) Channel2 to SO2 (Left) Channel3 to SO2 (Left) Channel4 to SO2 (Left) Wave Pattern The amount of increase or decrease in frequency The rate at which increase or decrease in frequency occurs The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Square Channel 1 Volume The delay between step change Draw the wave here pattern Cannot freeze pattern الگو منجمد نشد The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! الگوی جاری منجمد نشد زیرا شما در حالت پخش هستید.لطفا توقف کنید و دوباره تلاش کنید! patternFreezeStatusDialog Freezing pattern... انجماد الگو... Cancel لغو patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step Open in piano-roll در غلتک پیانو باز کن Clear all notes پاک کردن تمامی نت ها Reset name باز نشانی نام Change name تغییر نام Refreeze انجماد مجدد Freeze انجماد Unfreeze نامنجمد Add steps Remove steps PianoRoll Cut selected notes (Ctrl+X) برش نت های انتخاب شده(Ctrl+X) Copy selected notes (Ctrl+C) کپی نت های انتخاب شده(Ctrl+C) Paste notes from clipboard (Ctrl+V) چسباندن نت ها از حافظه ی موقت(Ctrl+V) Play/pause current pattern (Space) پخش/مکث الگوی جاری (فاصله) Stop playing of current pattern (Space) توقف پخش الگوی جاری (فاصله) Piano-Roll - %1 غلتک پیانو - %1 Piano-Roll - no pattern غلتک پیانو - بدون الگو Please open a pattern by double-clicking on it! لطفا یک الگو را با دوبار کلیک روی أن باز کنید! Record notes from MIDI-device/channel-piano Record notes from MIDI-device/channel-piano while playing song or BB track Draw mode (Shift+D) Erase mode (Shift+E) Select mode (Shift+S) Last note Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Click here to stop playback of current pattern. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the notes from the clipboard will be pasted at the first visible measure. Note lock Note Volume Note Panning Detune mode (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser no description Instrument plugins Incomplete monophonic imitation tb303 Plugin for freely manipulating stereo output Plugin for controlling knobs with sound peaks Plugin for enhancing stereo separation of a stereo input file List installed LADSPA plugins three powerful oscillators you can modulate in several ways Filter for importing FL Studio projects into LMMS versatile kick- & bassdrum-synthesizer GUS-compatible patch instrument plugin for using arbitrary VST-effects inside LMMS. Additive Synthesizer for organ-like sounds plugin for boosting bass Tuneful things to bang on simple sampler with various settings for using samples (e.g. drums) in an instrument-track VST-host for using VST(i)-plugins within LMMS Vibrating string modeler plugin for using arbitrary LADSPA-effects inside LMMS. Filter for importing MIDI-files into LMMS Instrument browser Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Player for SoundFont files Emulation of GameBoy (TM) APU Customizable wavetable synthesizer Embedded ZynAddSubFX 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Put down your project notes here. یادداشت های پروژه ی خود را اینجا قرار دهید. Project notes یادداشت های پروژه Edit Actions ویرایش کنش ها &Undo &واچینی Ctrl+Z Ctrl+Z &Redo &بازچینی Ctrl+Y Ctrl+Y &Copy &کپی Ctrl+C Ctrl+C Cu&t &برش Ctrl+X Ctrl+X &Paste &چسباندن Ctrl+V Ctrl+V Format Actions قالب بندی کنش ها &Bold &برجسته Ctrl+B Ctrl+B &Italic &خوابیده Ctrl+I Ctrl+I &Underline &زیرخط Ctrl+U Ctrl+U &Left &چپ Ctrl+L Ctrl+L C&enter &مرکز Ctrl+E Ctrl+E &Right &راست Ctrl+R Ctrl+R &Justify &تراز Ctrl+J Ctrl+J &Color... &رنگ... renameDialog Rename... تغییر نام... setupDialog Setup LMMS برپایی LMMS General settings BUFFER SIZE Reset to default-value MISC Enable tooltips Show restart warning after changing settings Display volume as dBV Compress project files per default HQ-mode for output audio-device LMMS working directory VST-plugin directory Artwork directory FL Studio installation directory STK rawwave directory Performance settings UI effects vs. performance Audio settings AUDIO INTERFACE MIDI settings MIDI INTERFACE OK Cancel لغو Restart LMMS Please note that most changes won't take effect until you restart LMMS! Frames: %1 Latency: %2 ms Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Choose LMMS working directory Choose your VST-plugin directory Choose artwork-theme directory Choose FL Studio installation directory Choose LADSPA plugin directory Choose STK rawwave directory Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Paths LADSPA plugin paths Default Soundfont File Background artwork Choose default SoundFont Choose background artwork One instrument track window mode Compact track buttons Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Smooth scroll in Song Editor Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Bank Patch Gain Reverb Reverb Roomsize Reverb Damping Reverb Width Reverb Level Chorus Chorus Lines Chorus Level Chorus Speed Chorus Depth sf2InstrumentView Open other SoundFont file Click here to open another SF2 file Choose the patch Gain Apply reverb (if supported) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. Reverb Roomsize: Reverb Damping: Reverb Width: Reverb Level: Apply chorus (if supported) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Chorus Lines: Chorus Level: Chorus Speed: Chorus Depth: Open SoundFont file SoundFont2 Files (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Resonance Filter type Voice 3 off Volume Chip model sidInstrumentView Volume: Resonance: Cutoff frequency: High-Pass filter Band-Pass filter Low-Pass filter Voice3 Off MOS6581 SID MOS8580 SID Attack: تهاجم(Attack): Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. Decay: محو شدن(Decay): Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. Sustain: تقویت(Sustain): Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. Release: رهایی(Release): The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. Pulse Width: The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. Coarse: The Coarse detuning allows to detune Voice %1 one octave up or down. Pulse Wave Triangle Wave SawTooth Noise Sync Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Ring-Mod Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. Filtered When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Test Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. song Tempo Master volume Master pitch Project saved The project %1 is now saved. Project NOT saved. پروژه ذخیره نشد. The project %1 was not saved! Import file وارد کردن پرونده untitled بدون نام Select file for project-export... پرونده را برای استخراج پروژه مشخص کنید... Empty project This project is empty so exporting makes no sense. Please put some items into Song Editor first! MIDI sequences FL Studio projects All file types Hydrogen projects Select directory for writing exported tracks... SongEditor Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. اگر می خواهید پخش ترانه ی خود را متوقف کنید اینجا را کلیک کنید.سازنده موقعیت ترانه به شروع ترانه تنظیم خواهد شد. Could not open file پرونده باز نشد Could not write file پرونده نوشته نشد Song-Editor ویرایشگر ترانه Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. اگر می خواهید تمام ترانه ی خود را پخش کنید اینجا را کلیک کنید.پخش از محل سازنده ی موقعیت شروع خواهد شد(سبز).همچنین می توانید در حال پخش آن را جابجا کنید. Play song (Space) پخش ترانه(فاصله) Stop song (Space) توقف ترانه (فاصله) Add beat/bassline اضافه ی خط بم/تپش (beat/baseline) Add sample-track اضافه ی باریکه ی نمونه Add automation-track Draw mode Edit mode (select and move) Record samples from Audio-device Record samples from Audio-device while playing song or BB track Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Error in file The file %1 seems to contain errors and therefore can't be loaded. Tempo TEMPO/BPM tempo of song گام ترانه(tempo) The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). High quality mode Master volume master volume Master pitch master pitch دانگ صدا(Pitch) Value: %1% Value: %1 semitones Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Linear Y axis spectrumAnalyzerControls Linear spectrum Linear Y-axis Channel mode stereoEnhancerControlDialog WIDE Width: stereoEnhancerControls Width stereoMatrixControlDialog Left to Left Vol: Left to Right Vol: Right to Left Vol: Right to Right Vol: stereoMatrixControls Left to Left Left to Right Right to Left Right to Right timeLine Enable/disable auto-scrolling Enable/disable loop-points After stopping go back to begin After stopping go back to position at which playing was started After stopping keep position Hint Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted Solo trackContentObject Muted trackContentObjectView Current position Hint Press <Ctrl> and drag to make a copy. Current length Press <Ctrl> for free resizing. %1:%2 (%3:%4 to %5:%6) Delete (middle mousebutton) Cut برش Copy کپی Paste چسباندن Mute/unmute (<Ctrl> + middle click) trackOperationsWidget Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Actions for this track Mute Mute this track Solo Clone this track تکثیر این تراک Remove this track vestigeInstrument Loading plugin Please wait while loading VST-plugin... Failed loading VST-plugin The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! vibed String %1 volume String %1 stiffness Pick %1 position Pickup %1 position Pan %1 Detune %1 Fuzziness %1 Length %1 Impulse %1 Octave %1 vibedView Volume: The 'V' knob sets the volume of the selected string. String stiffness: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. Pick position: برگزیدن موقعیت: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. Pickup position: برداشتن موقعیت: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. Pan: The Pan knob determines the location of the selected string in the stereo field. Detune: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. Fuzziness: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. Length: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. Impulse or initial state The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. Octave The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. Impulse Editor The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Enable waveform Click here to enable/disable waveform. String The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. Sine wave Triangle wave Saw wave Square wave White noise wave User defined wave Smooth Click here to smooth waveform. Normalize Click here to normalize waveform. &Help &راهنما Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. visualizationWidget click to enable/disable visualization of master-output برای فعال / غیرفعال کردن تصور خروجی اصلی کلیک کنید Click to enable voiceObject Voice %1 pulse width Voice %1 attack Voice %1 decay Voice %1 sustain Voice %1 release Voice %1 coarse detuning Voice %1 wave shape Voice %1 sync Voice %1 ring modulate Voice %1 filtered Voice %1 test lmms-1.0.0+bzr2569/data/locale/fr.qm0000644000000000000000000063552311517317720015065 0ustar 000000000000009giZd9kYZ93a:dd[@d\j@T%E EZvF|FGG JGVGTHjHiwHiJH؉HHzHzյH*I;\ImImJ'J+VJ<@JtJ[JKALbM5MMMN(ًNh_ObzPWPWS}A`OS}C`uSUaSbb#SZT.]TZTZTʴBTʴnTxUQ9 U`Uj$Vb4VbiVhVudVT?VˇVnkW W WiFWWX X .XZ/fZ/ZkWZkZȣZZoZo[[j\]6 G]^eqy^er߮c^cN.iųQiųyiųszyhtUh)tbhOv==|}[|}}UX~#n;[; |_RGϙ_^m+GHv.C3ue"kNm;7g)*7ُiyLy+ק1fק3g!@QOn)~,RJ[͙ bϱ b` k  C>2/N>+P+\unǰ"R!/V27")(7o4}9}zJ9L ;n.F; =|@1x@۴$RC\Fz8FzJJXMUTOXOXP0dtVyZ;KZ;`1xWaU@mgp>Ccw80_z; n[~1o>&$upUttɄyOvʭiH 7(wՙ ծhs 8݊"S% <vElߺ[o ox;CBogA |tJtD/h E8Jb%/a3LD )(^(^)u,´Tr.'c4N: Ro_/lb}br%dtYxż9Y%U8n:CVNGGkG=G??>)~)<)])H|Hf3 I2 9>>">ѻ![GϽ}|t>UugH~&$#ssЦs 8KEDV%i[uIw% :2Q73,4r7 /8Jp8 A:)3"?5u@±CB1HH>I[YY?OXP~DP~?SkVWa=Z._])]Y/] 2lElhѩlou xxz |Z]+|Z}"M}`}a~n~ŐROږĩlQR$\u#c #>yW.d>6Nx>|@ #oA~ ~WV=Ľ;0P0ϯ=!ѫ_6MO6, ~ קAZקCZN<քܗj^0x:?왞m gBF =չReP3BYLZ. 0$(z(P)e10+19D:^ ;:bU<<3<<ӭA UCYZsFA>JKM$:MtMкPJCPJtPJțQq.Qq.e`K`6`%`%,c=:d Zg5T@h-\jztkJl mrJ]w~eH-w(wewxYZMyTyT={ q}Fi"9MF˗ Nx\ӯuu3u4=u4u5u1'u1ru8K){VIlI©I ZIXIh]isZxqIIJJ<JcJJJJK& KM KtPQzBݰx ~^se#ˤžՔL@tE_=ͥ2H2J+(Q5غؽ L`kAhd@fniDK#|PC6_JdCVL t1hE u ub @l UTUΎ(S$0`%))|-Ul15n3:7e`7ea7Ua98r?~`EzF^kF^=H8RPe(Q:QQDZڽ\C.aEa*Mfhh>h93h;Zl3l lps NvA XB}o.MAtA^k)K]*ŶuF{wi;c 9RE-G:jVNGftf\ztܐtWGt't.nÞ5%%o^I%!Zi;JEUTZI<5r<5B<55<5~<5U<5s0ߺD }ljMZCN.^7 jwE^E EVt|b"ix#ECUY'vF&+pZu1U])1^]6{G[:gN9:c?[P@mC*C*?C*C*GkXWM9.xN9ȦQ)WjWd3Z+u[s[wlPwl 7mBN8rgw )z _'QQPPuPiP?"P-t# bFiR  .۩.9<5@5hE>)2Wyb7uvk(F7u2;0R>2'ޔr'TtiX>t /͔7eq_r#g Ů W zyfY|)Ę) tYBd!E&rz' )W' )(-)*Go,DFx5n88}L;r;Z<? ~&uC'`I !UIQUI/Zh[t%]\X."a΂ccz\hFchJViAN i2m.wQy %My %K#>  r)j>I{j/>\2lR2];)d5gTaA>l >e 9# 7Q 8 e@ B1 B1&  ^ ` `Dž 9л n 9 nJ Å F] w Kn k t2i^ z LUj {9ΐ #C@ %ӴTU '?] +a Y 8Rt< 8Rt& 9 9@ :_~ FyY K\ɢ R^` S[R X ]0v drC ;  y UUT uS R7 Uv 1.U U N P  /  ~rS ·~AU *| ʧA ʵT ˔I  J\k DE N ؋ ہC DKD z G * ]T _]  <   I9P ". $ rʍ 'm )xF +a - Y 3' N_. Om#r S'JQ STn STn~ \# \Y ] ` eEfl m  m ) m ѝ m : s T u: Q  $n1  6 Z ? }l Nq NwO J V hR R- 2( 2 8A ƟT Ƶ8uU ^z 4 ӗ`Q7 Ӱy غ <bW < e^ S Y: Y:1 Y:J ~ i-   7)  .R .h . . ʓm"  "` "qt $&y\ + + KL + D -#d -e - 5ݙ  || @ /^c /^ Mr^=8 ^' L~RW0mf8n~i5qy@3Qv!P&ʮ1 O1 2X59uS;}<)B(}>#GPQQ>dYΎ]dad^ɛcgnO#dyWOp :N*-)Ɓ?&<s/`9`9hȘooWyCzy &_P^.NT#R  |[1LI@i"{$e ~(0)31G7W>i?ICg~D>DoE0IBJiJiU&cXҾZ [x*8[^ E>\` ;iI m4pڸ6yU"**7K* #¥I9*LzƳ^~~IYܹ9i proposAbout AboutDialog propos de LMMS About LMMS AboutDialogAuteursAuthors AboutDialog~Copyright (c) 2004-2008, les dveloppeurs de LMMS {2004-2010,?}(Copyright (c) 2004-2010, LMMS developers AboutDialogSi vous tes intress par la traduction de LMMS dans une nouvelle langue ou si vous souhaitez amliorer des traductions existantes, votre aide est la bienvenue ! Contactez simplement le mainteneur !Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! AboutDialog<LMMS (Linux MultiMedia Studio)LMMS (Linux MultiMedia Studio) AboutDialogbLMMS - la production musicale la porte de tous)LMMS - easy music production for everyone AboutDialogLicenceLicense AboutDialogTraduction Translation AboutDialog:Version %1 (%2/%3, Qt %4, %5)Version %1 (%2/%3, Qt %4, %5) AboutDialog6http://lmms.sourceforge.nethttp://lmms.sourceforge.net AboutDialog ArpgeArpeggio ArpeggiatorSens d'arpgeArpeggio direction ArpeggiatorDure d'arpge Arpeggio gate ArpeggiatorMode d'arpge Arpeggio mode ArpeggiatorGamme d'arpgeArpeggio range ArpeggiatorTemps d'arpge Arpeggio time ArpeggiatorType d'arpge Arpeggio type ArpeggiatorDescendantDown Arpeggiator LibreFree ArpeggiatorAlatoireRandom ArpeggiatorTriSort ArpeggiatorSynchroniseSync ArpeggiatorAscendantUp Arpeggiator.Ascendant et descendant Up and down Arpeggiator%%ArpeggiatorView ARPGEARPEGGIOArpeggiatorViewUn arpge est une faon de jouer des instruments (en particulier ceux cordes pinces), qui rend la musique plus vivante. Les cordes de tels instruments (p. ex. les harpes) sont pinces comme des accords. La seule diffrence est que cela est fait de manire squentielle, ce qui fait que les notes ne sont pas joues en mme temps. Les arpges typiques sont des triades majeures ou mineures, mais il y a beaucoup d'autres accords possibles, vous pouvez choisr.An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select.ArpeggiatorView Dure d'arpge :Arpeggio gate:ArpeggiatorView Gamme d'arpge :Arpeggio range:ArpeggiatorView Temps d'arpge :Arpeggio time:ArpeggiatorView Sens : Direction:ArpeggiatorView DUREGATEArpeggiatorView Mode :Mode:ArpeggiatorView GAMMERANGEArpeggiatorView TEMPSTIMEArpeggiatorViewUtilisez ce bouton pour rgler la dure d'arpge. La dure d'arpge indique le pourcentage d'une note complte de l'arpge qui sera jou. Avec ceci vous pouvez faire de beaux arpges staccato.Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios.ArpeggiatorViewUtilisez ce bouton pour rgler la gamme d'octaves de l'arpge. L'arpge slectionn sera jou sur le nombre d'octaves choisi.Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves.ArpeggiatorView2Utilisez ce bouton pour rgler le temps d'arpge en millisecondes. Le temps d'arpge indique la dure pendant laquelle chaque note de l'arpge sera jou.Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played.ArpeggiatorViewmsmsArpeggiatorViewoctave(s) octave(s)ArpeggiatorView CANAUXCHANNELSAudioAlsa::setupWidgetPRIPHRIQUEDEVICEAudioAlsa::setupWidgetAmplifier :Amplify:AudioFileProcessorViewCliquez ici si vous souhaitez ouvrir un autre fichier audio. Une bote de dialogue dans laquelle vous pourrez choisir le fichier apparatra. Des rglages comme le mode de jeu en boucle, les marqueurs de dbut et de fin, la valeur d'amplication, et ainsi de suite ne sont pas rinitialiss. Par consquent, il peut ne pas ressembler l'chantillon original.Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample.AudioFileProcessorView"Marqueur de fin : Endpoint:AudioFileProcessorView:Ici vous pouvez indiquer si le mode de jeu en boucle est activ ou non. S'il est activ, AudioFileProcessor joue en boucle entre les marqueurs de dbut et de fin d'un chantillon jusqu' ce que la note entire ait t joue. Ceci est utile pour les chantillons de type corde ou chSur.Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples.AudioFileProcessorView Si vous activez ce bouton, l'chantillon complet est invers. Ceci est utile pour certains effets, p. ex. une cymbale crash inverse.pIf you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash.AudioFileProcessorViewJouer l'chantillon en boucle entre les marqueurs de dbut et de fin#Loop sample at start- and end-pointAudioFileProcessorView6Ouvrir un autre chantillonOpen other sampleAudioFileProcessorView,Inverser l'chantillonReverse sampleAudioFileProcessorView&Marqueur de dbut : Startpoint:AudioFileProcessorViewAvec ce bouton vous pouvez rgler le facteur d'amplification. Lorsque vous indiquez une valeur de 100 % votre chantillon n'est pas chang. Sinon il sera plus ou moins amplifi (votre fichier d'chantillon n'est pas modifi !)With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!)AudioFileProcessorViewAvec ce bouton vous pouvez placer le marqueur partir duquel AudioFileProcessor devra commencer jouer votre chantillon. Si vous activez le mode de jeu en boucle, c'est le marqueur auquel AudioFileProcessor reviendra lorsqu'une note sera plus longue que la portion de l'chantillon situe entre les marqueurs de dbut et de fin.With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points.AudioFileProcessorViewAvec ce bouton vous pouvez placer le marqueur auquel AudioFileProcessor devra arrter de jouer votre chantillon. Si vous activez le mode de jeu en boucle, c'est le marqueur partir duquel AudioFileProcessor reviendra lorsqu'une note sera plus longue que la portion de l'chantillon situe entre les marqueurs de dbut et de fin.With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points.AudioFileProcessorView4Le client JACK a redmarrJACK client restarted AudioJack4Le serveur JACK est arrtJACK server down AudioJack4LMMS a t rejet par JACK pour une raison quelconque. Par consquent le serveur de JACK a t redmarr. Vous devrez refaire les connexions manuellement.LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. AudioJackLe serveur JACK semble avoir t arrt et le dmarrage d'une nouvelle instance a chou. Par consquent LMMS ne peut pas continuer. Vous devriez enregistrer votre projet puis redmarrer JACK et LMMS.The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack CANAUXCHANNELSAudioJack::setupWidgetNOM DU CLIENT CLIENT-NAMEAudioJack::setupWidget CANAUXCHANNELSAudioOss::setupWidgetPRIPHRIQUEDEVICEAudioOss::setupWidgetSERVEURBACKENDAudioPortAudio::setupWidgetPRIPHRIQUEDEVICEAudioPortAudio::setupWidget CANAUXCHANNELSAudioPulseAudio::setupWidgetPRIPHRIQUEDEVICEAudioPulseAudio::setupWidgetPRIPHRIQUEDEVICEAudioSdl::setupWidget0&Copier la valeur (%1%2)&Copy value (%1%2)AutomatableModel0&Coller la valeur (%1%2)&Paste value (%1%2)AutomatableModel*&Rinitialiser (%1%2) &Reset (%1%2)AutomatableModel4Connecter le contrleur...Connect to controller...AutomatableModelConnect %1Connected to %1AutomatableModel,Connect au contrleurConnected to controllerAutomatableModel,diter la connexion...Edit connection...AutomatableModelLditer l'automation globale du morceauEdit song-global automationAutomatableModel,Supprimer la connexionRemove connectionAutomatableModelrToutes les valeurs ont t copies dans le presse-papier.1All selected values were copied to the clipboard.AutomationEditor2diteur d'automation - %1Automation Editor - %1AutomationEditorFditeur d'automation - pas de motifAutomation Editor - no patternAutomationEditorCliquez ici et le mode dessin sera activ. Dans ce mode vous pourrez ajouter et dplacer des valeurs particulires. Ceci est le mode par dfaut qui est utilis la plupart du temps. Vous pouvez aussi appuyer sur les touches 'Shift+D' de votre clavier pour activer ce mode.Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode.AutomationEditorCliquez ici et le mode effacement sera activ. Dans ce mode vous pourrez effacer des valeurs particulires. Vous pouvez aussi appuyer sur les touches 'Shift+E' de votre clavier pour activer ce mode.Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode.AutomationEditorVCliquez ici et le mode slection sera activ. Dans ce mode vous pourrez slectionner des valeurs particulires. Ceci est ncessaire si vous souhaitez couper, copier, coller, supprimer ou dplacer des valeurs. Vous pouvez aussi appuyer sur les touches 'Shift+S' de votre clavier pour activer ce mode.Click here and select-mode will be activated. In this mode you can select values. This is necessary if you want to cut, copy, paste, delete, or move values. You can also press 'Shift+S' on your keyboard to activate this mode.AutomationEditor^Cliquez ici et les valeurs slectionnes seront copies dans le presse-papier. Vous pourrez les coller n'importe o dans n'importe quel motif en cliquant sur le bouton coller.Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditortCliquez ici et les valeurs slectionnes seront coupes et copies dans le presse-papier. Vous pourrez les coller n'importe o dans n'importe quel motif en cliquant sur le bouton coller.Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditorCliquez ici et les valeurs se trouvant dans le presse-papier seront colles sur la premire mesure visible.YClick here and the values from the clipboard will be pasted at the first visible measure.AutomationEditor$Cliquez ici si vous souhaitez jouer le motif. Ceci est utile pendant son dition. Le motif est automatiquement rejou lorsque sa fin est atteinte.Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached.AutomationEditorpCliquez ici si vous souhaitez arrter de jouer le motif.>Click here if you want to stop playing of the current pattern.AutomationEditorRCopier les valeurs slectionnes (Ctrl+C)Copy selected values (Ctrl+C)AutomationEditorRCouper les valeurs slectionnes (Ctrl+X)Cut selected values (Ctrl+X)AutomationEditor*Mode dessin (Shift+D)Draw mode (Shift+D)AutomationEditor2Mode effacement (Shift+E)Erase mode (Shift+E)AutomationEditorSi vous cliquez ici, le mode dplacement sera activ. Dans ce mode vous pourrez dplacer les valeurs que vous avez slectionn dans le mode slection. Vous pouvez aussi appuyer sur les touches 'Shift+M' de votre clavier pour activer ce mode.If you click here, move-mode will be activated. In this mode you can move the values you selected in select-mode. You can also press 'Shift+M' on your keyboard to activate this mode.AutomationEditorNMode dplacement de slection (Shift+M)Move selection mode (Shift+M)AutomationEditorRColler les valeurs slectionnes (Ctrl+V)$Paste values from clipboard (Ctrl+V)AutomationEditor^Jouer/Mettre en pause le motif (Barre d'espace)"Play/pause current pattern (Space)AutomationEditorVeuillez ouvrir un motif d'automation avec le menu contextuel d'un contrle !EPlease open an automation pattern with the context menu of a control!AutomationEditor0Mode slection (Shift+S)Select mode (Shift+S)AutomationEditorTArrter de jouer le motif (Barre d'espace)'Stop playing of current pattern (Space)AutomationEditor6Les valeurs ont t copies Values copiedAutomationEditorVDplacer un contrle en appuyant sur <Ctrl>$Drag a control while pressing AutomationPattern%1 connexions%1 ConnectionsAutomationPatternViewChanger le nom Change nameAutomationPatternViewEffacerClearAutomationPatternView Dconnecter "%1"Disconnect "%1"AutomationPatternViewDOuvrir dans l'diteur d'automationOpen in Automation editorAutomationPatternView(Rinitialiser le nom Reset nameAutomationPatternView~double-cliquer pour ouvrir ce motif dans l'diteur d'automation6double-click to open this pattern in automation editorAutomationPatternView$Piste d'automationAutomation trackAutomationTrack11 ChordCreator11b9 ChordCreator13 ChordCreator13#9 ChordCreator13b5b9 ChordCreator13b9 ChordCreator6 ChordCreator6add9 ChordCreator6sus4 ChordCreator7 ChordCreator7#11 ChordCreator7#5 ChordCreator7#5#9 ChordCreator7#5b9 ChordCreator7#9 ChordCreator7add11 ChordCreator7add13 ChordCreator7b5 ChordCreator7b5b9 ChordCreator7b9 ChordCreator7sus4 ChordCreator9 ChordCreator9#11 ChordCreator9#5 ChordCreator9b13 ChordCreator9b5 ChordCreator9sus4 ChordCreatorolienneAeolian ChordCreator ArabeArabic ChordCreator BluesBlues ChordCreatorGamme d'accord Chord range ChordCreatorType d'accord Chord type ChordCreatorAccordsChords ChordCreatorDiminue Diminished ChordCreatorBebop dominanteDominant bebop ChordCreatorDorienneDorian ChordCreatornigmatique Enigmatic ChordCreator$Mineure harmoniqueHarmonic minor ChordCreator"Hongroise mineureHungarian minor ChordCreator$Japonaise "in sen" Jap in sen ChordCreatorLocrienneLocrian ChordCreatorLydienneLydian ChordCreatorMaj11 ChordCreatorMaj13 ChordCreatorMaj7 ChordCreatorMaj7#11 ChordCreatorMaj7#5 ChordCreator Maj7add13 ChordCreatorMaj7b5 ChordCreatorMaj9 ChordCreatorMaj9#11 ChordCreatorMaj9#5 ChordCreatorMaj9sus4 ChordCreatorMajb5 ChordCreator MajeurMajor ChordCreatorBebop majeure Major bebop ChordCreator&Pentatonique majeurMajor pentatonic ChordCreator"Mineure mlodique Melodic minor ChordCreator&Pentatonique mineurMinor pentatonic ChordCreatorMixolydienne Mixolydian ChordCreatorNapolitaine Neopolitan ChordCreator&Napolitaine mineureNeopolitan minor ChordCreatorPhrygo-Lydienne Phrygolydian ChordCreatorNote complte Whole tone ChordCreatoradd9 ChordCreatoraug ChordCreatoraugsus4 ChordCreatorm-Maj11 ChordCreatorm-Maj13 ChordCreatorm-Maj7 ChordCreator m-Maj7add11 ChordCreator m-Maj7add13 ChordCreatorm11 ChordCreatorm13 ChordCreatorm6 ChordCreatorm6add9 ChordCreatorm7 ChordCreatorm7add11 ChordCreatorm7add13 ChordCreatorm7b5 ChordCreatorm7b9 ChordCreatorm9 ChordCreatorm9-Maj7 ChordCreatorm9b5 ChordCreatormadd9 ChordCreatorminb5 ChordCreator mineurminor ChordCreator octaveoctave ChordCreatorsus2 ChordCreatorsus4 ChordCreatortri ChordCreatorACCORDSCHORDSChordCreatorView Gamme d'accord : Chord range:ChordCreatorView GAMMERANGEChordCreatorViewUtilisez ce bouton pour rgler la gamme d'accord en octaves. L'accord slectionn sera jou sur le nombre d'octaves choisi.{Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves.ChordCreatorViewoctave(s) octave(s)ChordCreatorViewContrleur %1 Controller %1 ControllerAuto-dtection Auto DetectControllerConnectionDialog CANALCHANNELControllerConnectionDialogCONTRLEUR CONTROLLERControllerConnectionDialogAnnulerCancelControllerConnectionDialog:Configuration de la connexionConnection SettingsControllerConnectionDialog.Un cycle a t dtect.Cycle Detected.ControllerConnectionDialogCanal d'entre Input channelControllerConnectionDialog&Contrleur d'entreInput controllerControllerConnectionDialogLMMSLMMSControllerConnectionDialog&FONCTION DE MAPPAGEMAPPING FUNCTIONControllerConnectionDialogCONTRLEUR MIDIMIDI CONTROLLERControllerConnectionDialogpPriphriques MIDI desquels recevoir des vnements MIDI(MIDI-devices to receive MIDI-events fromControllerConnectionDialogOKOKControllerConnectionDialog,CONTRLEUR UTILISATEURUSER CONTROLLERControllerConnectionDialogAjouterAddControllerRackViewRack d'effetsController RackControllerRackView Aid&e&HelpControllerView*Supp&rimer ce greffon&Remove this pluginControllerViewLes contrleurs sont capables d'automatiser le rglage d'un bouton, d'un curseur et d'autres contrles.QControllers are able to automate the value of a knob, slider, and other controls.ControllerViewContrlesControlsControllerViewPEntrez un nouveau nom pour ce contrleur&Enter the new name for this controllerControllerView,Renommer un contrleurRename controllerControllerViewDescenteDecayEffectEffet activEffect enabledEffect SeuilGateEffect Ratio Wet/Dry mixEffectEffets activsEffects enabled EffectChain Ajouter un effet Add effectEffectRackViewCHANE D'EFFETS EFFECTS CHAINEffectRackView Ajouter un effet Add effectEffectSelectDialog,Description du greffonPlugin descriptionEffectSelectDialog Aid&e&Help EffectView*Supp&rimer ce greffon&Remove this plugin EffectViewContrlesControls EffectView DECAYDECAY EffectView Les greffons d'effet agissent comme une srie d'effets enchans dans laquelle le signal sera trait du haut vers le bas. Le bouton On/Off vous permet de court-circuiter un greffon donn n'importe quel moment. Le bouton Mix Wet/Dry contrle l'quilibre entre le signal en entre et le signal trait qui est le rsultat en sortie de l'effet. L'entre d'un tage est la sortie de l'tage prcdent. De ce fait, l'importance du signal 'original' diminue au fur et mesure de l'application des effets. Le bouton Decay contrle le temps pendant lequel le signal continuera d'tre trait aprs que les notes aient t relaches. L'effet arrtera de traiter le signal lorsque le volume sera pass en dessous d'un seuil donn pendant une priode de temps donne. Ce bouton rgle la 'priode de temps donne'. Les priodes longues ncessiteront plus de processeur, ce qui fait que ce nombre devrait tre rgl assez bas pour la plupart des effets. Il a besoin d'tre augment pour les effets qui produisent de longues priodes de silence, p. ex. les dlais. Le bouton Gate contrle le 'seuil donn' pour l'arrt automatique de l'effet. L'horloge pour la 'priode de temps donne' dmarrera ds que le niveau du signal trait passera sous le niveau spcifi avec ce bouton. Le bouton Contrles ouvre un bote de dialogue permettant de modifier la configuration de l'effet. Un clic-droit fera apparatre un menu contextuel o vous pourrez changer l'ordre dans lequel les effets sont traits ou bien galement supprimer un effet.SEffect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. EffectViewGATEGATE EffectView Gate :Gate: EffectView*&Dplacer vers le bas Move &down EffectView,Dplacer vers le ha&utMove &up EffectView On/OffOn/Off EffectViewLe bouton Decay contrle le nombre de tampons de silence qui doivent s'couler avant que le greffon arrte le traitement. Les valeurs faibles rduiront la charge du processeur mais feront courrir le risque de couper la fin sur des effets de dlai et de rverbration.The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. EffectView2Le bouton Gate contrle le niveau du signal qui est considr comme tant un 'silence' lorsque l'on doit dcider d'arrter le traitement des signaux.zThe Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. EffectViewLe bouton Wet/Dry rgle le rapport entre le signal d'entre et le signal d'effet qui produit la sortie.eThe Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. EffectViewDure :Time: EffectView8Active ou dsactive l'effet.Toggles the effect on or off. EffectViewW/DW/D EffectView&Niveau avec effet : Wet Level: EffectViewAttaqueAttackEnvelopeAndLfoParametersDescenteDecayEnvelopeAndLfoParametersFrq x 100 Freq x 100EnvelopeAndLfoParametersMaintienHoldEnvelopeAndLfoParametersAttaque du LFO LFO AttackEnvelopeAndLfoParameters"Modulation du LFOLFO ModulationEnvelopeAndLfoParameters Pr-dlai du LFO LFO PredelayEnvelopeAndLfoParameters&Forme d'onde du LFOLFO Wave ShapeEnvelopeAndLfoParametersVitesse du LFO LFO speedEnvelopeAndLfoParameters@Moduler le niveau de l'enveloppeModulate Env-AmountEnvelopeAndLfoParametersModulation ModulationEnvelopeAndLfoParametersPr-dlaiPredelayEnvelopeAndLfoParametersRelchementReleaseEnvelopeAndLfoParametersSoutienSustainEnvelopeAndLfoParametersAMTAMTEnvelopeAndLfoViewATTATTEnvelopeAndLfoViewAttaque :Attack:EnvelopeAndLfoViewTCliquez ici pour une onde en dent de scie.&Click here for a saw-wave for current.EnvelopeAndLfoViewLCliquez ici pour une onde sinusodale.Click here for a sine-wave.EnvelopeAndLfoViewBCliquez ici pour une onde carre.Click here for a square-wave.EnvelopeAndLfoViewNCliquez ici pour une onde triangulaire.Click here for a triangle-wave.EnvelopeAndLfoViewCliquez ici pour une onde dfinie par l'utilisateur. Ensuite, faites glisser un fichier d'chantillon correspondant sur le graphique du LFO.aClick here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph.EnvelopeAndLfoViewCliquez ici si la frquence de ce LFO doit tre multiplie par 100.DClick here if the frequency of this LFO should be multiplied by 100.EnvelopeAndLfoViewCliquez ici pour que le niveau de l'enveloppe soit contrl par ce LFO.>Click here to make the envelope-amount controlled by this LFO.EnvelopeAndLfoViewDECDECEnvelopeAndLfoViewDELDELEnvelopeAndLfoViewDescente :Decay:EnvelopeAndLfoView~Faites glisser un chantillon et dposez-le dans cette fentre.8Drag a sample from somewhere and drop it in this window.EnvelopeAndLfoViewFRQ x 100 FREQ x 100EnvelopeAndLfoViewHOLDHOLDEnvelopeAndLfoView AstuceHintEnvelopeAndLfoViewMaintien :Hold:EnvelopeAndLfoView$Pr-dlai du LFO : LFO predelay:EnvelopeAndLfoView Vitesse du LFO : LFO speed:EnvelopeAndLfoView Attaque du LFO : LFO- attack:EnvelopeAndLfoView&MODULER L'ENVELOPPEMODULATE ENV-AMOUNTEnvelopeAndLfoView,Niveau de modulation :Modulation amount:EnvelopeAndLfoViewPr-dlai : Predelay:EnvelopeAndLfoViewRELRELEnvelopeAndLfoViewRelchement :Release:EnvelopeAndLfoViewSPDSPDEnvelopeAndLfoViewSUSTSUSTEnvelopeAndLfoViewSoutien :Sustain:EnvelopeAndLfoView.Utilisez ce bouton pour rgler le temps d'attaque du LFO. Plus la valeur est importante, plus le LFO met du temps pour monter son amplitude maximale.Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum.EnvelopeAndLfoView Utilisez ce bouton pour rgler le temps d'attaque de l'enveloppe. Plus la valeur est importante, plus l'enveloppe met du temps pour monter au niveau d'attaque. Choisissez une petite valeur pour des instruments comme le piano et une grande valeur pour les cordes.Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings.EnvelopeAndLfoViewUtilisez ce bouton pour rgler le temps de descente de l'enveloppe. Plus la valeur est importante, plus l'enveloppe met du temps pour descendre du niveau d'attaque au niveau de soutien. Choisissez une petite valeur pour des instruments comme le piano.Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos.EnvelopeAndLfoViewUtilisez ce bouton pour rgler le temps de maintien de l'enveloppe. Plus la valeur est importante, plus l'enveloppe maintien longtemps le niveau d'attaque avant de commencer descendre vers le niveau de soutien.Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level.EnvelopeAndLfoViewxUtilisez ce bouton pour rgler le niveau de modulation du LFO. Plus la valeur est importante, plus la composante choisie (p. ex. volume ou frquence de coupure) sera influence par le LFO.Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO.EnvelopeAndLfoViewUtilisez ce bouton pour rgler le niveau de modulation de l'enveloppe. Plus la valeur est importante, plus la composante correspondante (p. ex. volume ou frquence de coupure) sera influence par l'enveloppe.Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope.EnvelopeAndLfoView"Utilisez ce bouton pour rgler le pr-dlai de l'enveloppe. Plus la valeur est importante, plus le temps sera long avant le dbut de l'enveloppe.Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope.EnvelopeAndLfoView&Utilisez ce bouton pour rgler le temps de pr-dlai du LFO. Plus la valeur est importante, plus le LFO met du temps avant de commencer osciller.Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate.EnvelopeAndLfoViewUtilisez ce bouton pour rgler le temps de relchement de l'enveloppe. Plus la valeur est importante, plus l'enveloppe met du temps pour descendre du niveau de soutien zro. Choisissez une grande valeur pour des instruments comme les cordes.Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings.EnvelopeAndLfoViewUtilisez ce bouton pour rgler la vitesse du LFO. Plus la valeur est importante, plus le LFO oscillera vite et plus votre effet sera rapide.Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect.EnvelopeAndLfoView`Utilisez ce bouton pour rgler le niveau de soutien de l'enveloppe. Plus la valeur est importante, plus l'enveloppe reste longtemps un niveau lev avant de descendre zro.Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero.EnvelopeAndLfoView\Contrler le niveau de l'enveloppe avec ce LFO#control envelope-amount by this LFOEnvelopeAndLfoViewms/LFO :ms/LFO:EnvelopeAndLfoViewLmultiplier la frquence du LFO par 100multiply LFO-frequency by 100EnvelopeAndLfoView128 kbit/s 128 KBit/sExportProjectDialog$Entier sur 16 bits16 Bit IntegerExportProjectDialog160 kbit/s 160 KBit/sExportProjectDialog192 kbit/s 192 KBit/sExportProjectDialog192000 Hz 192000 HzExportProjectDialog1x (Aucun) 1x (None)ExportProjectDialog256 kbit/s 256 KBit/sExportProjectDialog2x2xExportProjectDialog(Flottant sur 32 bits 32 Bit FloatExportProjectDialog320 kbit/s 320 KBit/sExportProjectDialog44100 Hz44100 HzExportProjectDialog48000 Hz48000 HzExportProjectDialog4x4xExportProjectDialog64 kbit/s 64 KBit/sExportProjectDialog88200 Hz88200 HzExportProjectDialog8x8xExportProjectDialog96000 Hz96000 HzExportProjectDialog.Oscillateurs sans aliasAlias-free oscillatorsExportProjectDialogDbit :Bitrate:ExportProjectDialogAnnulerCancelExportProjectDialogProfondeur :Depth:ExportProjectDialog$Exporter le projetExport projectExportProjectDialog&Format de fichier : File format:ExportProjectDialogInterpolation :Interpolation:ExportProjectDialog SortieOutputExportProjectDialog`Surchantillonage (Utiliser avec prcaution !) :Oversampling (use with care!):ExportProjectDialogVeuillez noter que tous les paramtres ne s'appliquent pas tous les formats.LPlease note that not all of the parameters above apply for all file formats.ExportProjectDialog&Rglages de qualitQuality settingsExportProjectDialog>Contrleurs d'chantillon exactSample-exact controllersExportProjectDialog4Vitesse d'chantillonage : Samplerate:ExportProjectDialog6Sync optimale (Trs lent !)Sinc Best (very slow!)ExportProjectDialog Sync plus rapide Sinc FastestExportProjectDialog4Sync moyenne (Recommande)Sinc Medium (recommended)ExportProjectDialogDmarrerStartExportProjectDialog*Bloqueur d'ordre zroZero Order HoldExportProjectDialogEffet %1FX %1FxMixerGnralMasterFxMixerVEntrer un nouveau nom pour ce canal d'effet&Enter the new name for this FX channel FxMixerView$Curseur d'effet %1 FX Fader %1 FxMixerView$Mlangeur d'effetsFX-Mixer FxMixerView CouperMute FxMixerView.Couper ce canal d'effetMute this FX channel FxMixerView2Renommer le canal d'effetRename FX channel FxMixerView CANALCHANNELInstrumentMidiIOView*ACTIVER L'ENTRE MIDIENABLE MIDI INPUTInstrumentMidiIOView,ACTIVER LA SORTIE MIDIENABLE MIDI OUTPUTInstrumentMidiIOViewpPriphriques MIDI desquels recevoir des vnements MIDI(MIDI devices to receive MIDI events fromInstrumentMidiIOViewnPriphriques MIDI auxquels envoyer des vnements MIDI#MIDI devices to send MIDI events toInstrumentMidiIOViewPROGRAMMEPROGRAMInstrumentMidiIOViewVLOCITVELOCITYInstrumentMidiIOViewPasse-bas x2 2x LowPassInstrumentSoundShapingPasse-toutAllpassInstrumentSoundShaping"Passe-bande "csg" BandPass csgInstrumentSoundShaping$Passe-bande "czpg" BandPass czpgInstrumentSoundShapingCOUPURECUTOFFInstrumentSoundShaping(Frquence de coupureCutoff frequencyInstrumentSoundShapingEnveloppes/LFOsEnvelopes/LFOsInstrumentSoundShapingType de filtre Filter typeInstrumentSoundShapingPasse-hautHiPassInstrumentSoundShapingPasse-basLowPassInstrumentSoundShapingMoogMoogInstrumentSoundShapingCoupe-bandeNotchInstrumentSoundShapingQ/Rsonance Q/ResonanceInstrumentSoundShaping RSONRESOInstrumentSoundShapingRsonance ResonanceInstrumentSoundShaping VOLUMEVOLUMEInstrumentSoundShaping VolumeVolumeInstrumentSoundShaping CUTOFFCUTOFFInstrumentSoundShapingView FILTREFILTERInstrumentSoundShapingViewpIci vous pouvez choisir le filtre intgr que vous souhaitez utiliser pour cette piste d'instrument. Les filtres sont trs important pour la modification des caractristiques d'un son.Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound.InstrumentSoundShapingViewHzHzInstrumentSoundShapingViewRESORESOInstrumentSoundShapingViewRsonance : Resonance:InstrumentSoundShapingViewCOMPOSANTETARGETInstrumentSoundShapingViewCes onglets contiennent des enveloppes. Elles sont trs important pour la modification d'un son, dans le sens o elles sont presque toujours ncessaires pour la synsthse soustractive. Par exemple si vous avez une enveloppe de volume, vous pouvez rgler quand le son devra avoir un volume spcifique. Si vous souhaitez crer des cordes douces alors votre son doit commencer et se terminer trs doucement. Ceci peut tre obtenu en rglant des temps d'attaque et de descente longs. C'est la mme chose pour les autres composantes comme le panoramique, la frquence de coupure pour le filtre utilis et ainsi de suite. Amusez-vous un peu avec ! Vous pouvez vraiment faire de beaux sons partir d'une onde en dent de scie avec juste quelques enveloppes... !_These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...!InstrumentSoundShapingViewUtilisez ce bouton pour rgler la Q/Rsonance pour le filtre choisi. La Q/Rsonance indique au filtre dans quelle proportion il devra amplifier les frquences proches de la frquence de coupure.Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency.InstrumentSoundShapingViewUtilisez ce bouton pour rgler la frquence de coupure du filtre choisi. La frquence de coupure spcifie la frquence laquelle un filtre coupera le signal. Par exemple un filtre passe-bas coupera toutes les frquences au-dessus de la frquence de coupure. Un filtre passe-haut coupera toutes les frquences en-dessous de la frquence de coupure, et ainsi de suite...2Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on...InstrumentSoundShapingView,Frquence de coupure :cutoff-frequency:InstrumentSoundShapingViewNote de base Base noteInstrumentTrack*Prrglage par dfautDefault presetInstrumentTrackCanal d'effet FX channelInstrumentTrackPanoramiquePanningInstrumentTrackTonalitPitchInstrumentTrack VolumeVolumeInstrumentTrackxAvec ce bouton vous pouvez rgler le volume du canal ouvert.Montrer/Cacher le piano virtuelShow/hide Piano-Roll MainWindowFMontrer/Cacher l'diteur de morceauShow/hide Song-Editor MainWindowJMontrer/Cacher le rack de contrleursShow/hide controller rack MainWindowDMontrer/Cacher les notes du projetShow/hide project notes MainWindow@Le rpertoire de travail %1 de LMMS n'existe pas. Souhaitez-vous le crer maintenant ? Vous pourrez changer le rpertoire plus tard via diter -> Configuration.uThe LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. MainWindowCe projet t modifi depuis son dernier enregistrement. Souhaitez-vous l'enregistrer maintenant ?OThe current project was modified since last saving. Do you want to save it now? MainWindowDfaireUndo MainWindowSans titreUntitled MainWindow*Qu'est-ce que c'est ? What's this? MainWindow*Rpertoire de travailWorking directory MainWindow2Dnominateur de la mesureMeter Denominator MeterDialog.Numrateur de la mesureMeter Numerator MeterDialogSIGN RYTHMTIME SIG MeterDialogDnominateur Denominator MeterModelNumrateur Numerator MeterModelPRIPHRIQUEDEVICEMidiAlsaRaw::setupWidgetPRIPHRIQUEDEVICEMidiAlsaSeq::setupWidgetContrleur MIDIMIDI ControllerMidiController0contrleur_midi_sans_nomunnamed_midi_controllerMidiController*Paramtrage incompletSetup incomplete MidiImportVous n'avez pas compil LMMS avec la prise en charge du lecteur SoundFont2, qui est utilis pour ajouter un son par dfaut aux fichiers MIDI imports. Par consquent aucun son ne sera jou aprs l'importation de ce fichier MIDI.You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiImportZVous n'avez pas choisi de SoundFont par dfaut dans la bote de dialogue de configuration (diter -> Configuration). Par consquent aucun son ne sera jou lorsque vous aurez import ce fichier MIDI. Vous devriez tlcharger une Soundfont General MIDI, la rfrencer dans la configuration et ressayer.You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. MidiImportPRIPHRIQUEDEVICEMidiOss::setupWidget,Vlocit d'entre fixeFixed input velocityMidiPort.Vlocit de sortie fixeFixed output velocityMidiPortCanal d'entre Input channelMidiPort&Contrleur d'entreInput controllerMidiPort0Programme de sortie MIDIOutput MIDI programMidiPortCanal de sortieOutput channelMidiPort(Contrleur de sortieOutput controllerMidiPort8Recevoir des vnements MIDIReceive MIDI-eventsMidiPort6Envoyer des vnements MIDISend MIDI-eventsMidiPort*Modulation de type %1Modulation type %1OscillatorObjectRDsaccordage grossier de l'oscillateur %1Osc %1 coarse detuningOscillatorObjectZDsaccordage fin (gauche) de l'oscillateur %1Osc %1 fine detuning leftOscillatorObjectZDsaccordage fin (droite) de l'oscillateur %1Osc %1 fine detuning rightOscillatorObject>Panoramique de l'oscillateur %1Osc %1 panningOscillatorObjectJDcalage de phase de l'oscillateur %1Osc %1 phase-offsetOscillatorObjectfDsaccordage stro de la phase de l'oscillateur %1Osc %1 stereo phase-detuningOscillatorObject4Volume de l'oscillateur %1 Osc %1 volumeOscillatorObjectBForme d'onde de l'oscillateur %1Osc %1 wave shapeOscillatorObject@Forme d'onde de l'oscillateur %1Osc %1 waveformOscillatorObjectCliquez ici pour ouvrir un autre fichier de son. Les rglages de tonalit et d'accordage ne sont pas rinitialiss.LClick here to open another patch-file. Loop and Tune settings are not reset. PatmanView(Ici vous pouvez permuter le mode de jeu en boucle. Si il est activ, PatMan utilisera les informations de jeu en boucle disponibles dans le fichier.jHere you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. PatmanViewIci vous pouvez permuter le mode d'accordage. Si il est activ, PatMan accordera l'chantillon pour en fonction de la frquence de la note.iHere you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. PatmanViewRejouerLoop PatmanView*Mode de jeu en boucle Loop mode PatmanView>Aucun fichier n'est slectionnNo file selected PatmanView&Ouvrir un autre sonOpen other patch PatmanView0Ouvrir un fichier de sonOpen patch file PatmanView.Fichiers de son (*.pat)Patch-Files (*.pat) PatmanViewAccordageTune PatmanViewMode accordage Tune mode PatmanView(Contrleur de crtesPeak ControllerPeakController"Contrleur du LFOLFO ControllerPeakControllerDialog CRTEPEAKPeakControllerDialogAMTAMT!PeakControllerEffectControlDialogAttaque :Attack:!PeakControllerEffectControlDialogBASEBASE!PeakControllerEffectControlDialog&Niveau de la base : Base amount:!PeakControllerEffectControlDialog DECAYDECAY!PeakControllerEffectControlDialog,Niveau de modulation :Modulation amount:!PeakControllerEffectControlDialogRelchement :Release:!PeakControllerEffectControlDialogAttaqueAttackPeakControllerEffectControlsValeur de base Base valuePeakControllerEffectControls(Niveau de modulationModulation amountPeakControllerEffectControls Couper la sortie Mute outputPeakControllerEffectControlsRelchementReleasePeakControllerEffectControlsNote de base Base note PianoViewpUne erreur est survenue pendant le chargement du greffonError while loading pluginPluginPLe chargement du greffon "%1" a chou !Failed to load plugin "%1"!Plugin:Le greffon n'a pas t trouvPlugin not foundPluginLe greffon "%1" n'a pas t trouv ou n'a pas pu tre charg ! Raison : "%2"AThe plugin "%1" wasn't found or could not be loaded! Reason: "%2"Plugin:Fichier OGG compress (*.ogg)Compressed OGG-File (*.ogg)ProjectRenderer&Fichier WAV (*.wav)WAV-File (*.wav)ProjectRenderer$Canaux d'entre :  Channels In: QWidget(Canaux de sorties : Channels Out: QWidgetCopyright :  Copyright: QWidgetFichier : File: QWidget$Cass sur place : In Place Broken: QWidgetFabricant : Maker: QWidget Nom : Name: QWidgetNonNoQWidget2Supporte le temps rel : Real Time Capable: QWidget4Ncessite le temps rel : Requires Real Time: QWidgetOuiYesQWidget Aid&e&Help TempoSyncKnob16 ime de note 16th note TempoSyncKnob32 ime de note 32nd note TempoSyncKnob8 ime de note8th note TempoSyncKnobPersonnalisCustom  TempoSyncKnobPersonnalis... Custom... TempoSyncKnobHuit temps Eight beats TempoSyncKnobDemi-note Half note TempoSyncKnob,Pas de synchronisationNo Sync TempoSyncKnobQuart de note Quarter note TempoSyncKnob>Synchronis sur 16 ime de noteSynced to 16th Note TempoSyncKnob>Synchronis sur 32 ime de noteSynced to 32nd Note TempoSyncKnob<Synchronis sur 8 ime de noteSynced to 8th Note TempoSyncKnob4Synchronis sur huit tempsSynced to Eight Beats TempoSyncKnob2Synchronis sur demi-noteSynced to Half Note TempoSyncKnob:Synchronis sur quart de noteSynced to Quarter Note TempoSyncKnob8Synchronis sur note entireSynced to Whole Note TempoSyncKnob0Synchronisation du tempo Tempo Sync TempoSyncKnobNote entire Whole note TempoSyncKnobTMlanger la sortie des oscillateurs 1 et 2Mix output of oscillator 1 & 2TripleOscillatorViewTMlanger la sortie des oscillateurs 2 et 3Mix output of oscillator 2 & 3TripleOscillatorViewVDsaccordage grossier de l'oscillateur %1 :Osc %1 coarse detuning:TripleOscillatorView^Dsaccordage fin (gauche) de l'oscillateur %1 :Osc %1 fine detuning left:TripleOscillatorView^Dsaccordage fin (droite) de l'oscillateur %1 :Osc %1 fine detuning right:TripleOscillatorViewBPanoramique de l'oscillateur %1 :Osc %1 panning:TripleOscillatorViewNDcalage de phase de l'oscillateur %1 :Osc %1 phase-offset:TripleOscillatorViewjDsaccordage stro de la phase de l'oscillateur %1 :Osc %1 stereo phase-detuning:TripleOscillatorView8Volume de l'oscillateur %1 :Osc %1 volume:TripleOscillatorViewbSynchroniser l'oscillateur 1 avec l'oscillateur 2*Synchronize oscillator 1 with oscillator 2TripleOscillatorViewbSynchroniser l'oscillateur 2 avec l'oscillateur 3*Synchronize oscillator 2 with oscillator 3TripleOscillatorViewUtiliser une onde en dent de scie de type Moog pour cet oscillateur.0Use a moog-like saw-wave for current oscillator.TripleOscillatorViewnUtiliser une onde en dent de scie pour cet oscillateur.&Use a saw-wave for current oscillator.TripleOscillatorViewfUtiliser une onde sinusodale pour cet oscillateur.'Use a sine-wave for current oscillator.TripleOscillatorView\Utiliser une onde carre pour cet oscillateur.)Use a square-wave for current oscillator.TripleOscillatorViewhUtiliser une onde triangulaire pour cet oscillateur.+Use a triangle-wave for current oscillator.TripleOscillatorViewUtiliser une onde dfinie par l'utilisateur pour cet oscillateur.3Use a user-defined waveform for current oscillator.TripleOscillatorViewUtiliser la modulation d'amplitude pour moduler l'oscillateur 2 avec l'oscillateur 1FUse amplitude modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewUtiliser la modulation d'amplitude pour moduler l'oscillateur 3 avec l'oscillateur 2FUse amplitude modulation for modulating oscillator 3 with oscillator 2TripleOscillatorViewjUtiliser une onde exponentielle pour cet oscillateur./Use an exponential wave for current oscillator.TripleOscillatorViewUtiliser la modulation de frquence pour moduler l'oscillateur 2 avec l'oscillateur 1FUse frequency modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewUtiliser la modulation de frquence pour moduler l'oscillateur 3 avec l'oscillateur 2FUse frequency modulation for modulating oscillator 3 with oscillator 2TripleOscillatorViewUtiliser la modulation de phase pour moduler l'oscillateur 2 avec l'oscillateur 1BUse phase modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewUtiliser la modulation de phase pour moduler l'oscillateur 3 avec l'oscillateur 2BUse phase modulation for modulating oscillator 3 with oscillator 2TripleOscillatorViewZUtiliser un bruit blanc pour cet oscillateur.'Use white-noise for current oscillator.TripleOscillatorViewAvec ce bouton vous pouvez rgler le dsaccord grossier de l'oscillateur %1. Vous pouvez dsaccorder l'oscillateur de 12 demi-tons (1 octave) vers le haut et vers le bas. Ceci est utile pour la cration de sons avec un accord.With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord.TripleOscillatorViewAvec ce bouton vous pouvez rgler le dsaccord fin du canal gauche de l'oscillateur %1. Le dsaccordage fin varie entre -100 centimes et +100 centimes. Ceci est utile pour la cration de sons 'gras'.With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorViewAvec ce bouton vous pouvez rgler le dsaccord fin du canal droit de l'oscillateur %1. Le dsaccordage fin varie entre -100 centimes et +100 centimes. Ceci est utile pour la cration de sons 'gras'.With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorViewjAvec ce bouton vous pouvez rgler le panoramique de l'oscillateur %1. Une valeur de -100 corespond 100 % gauche et une valeur de 100 dplace la sortie de l'oscillateur droite.With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right.TripleOscillatorViewAvec ce bouton vous pouvez rgler le dcalage de phase de l'oscillateur %1. Cela signifie que vous pouvez dplacer dans une oscillation le point o l'oscillateur commence osciller. Par exemple si vous avez une onde sinusodale et un dcalage de phase de 180 degrs l'onde commencera par descendre. C'est la mme chose avec une onde carre.)With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave.TripleOscillatorView$Avec ce bouton vous pouvez rgler le dsaccordage stro de la phase de l'oscillateur %1. Le dsaccordage stro de la phase prcise l'importance de la diffrence entre le dcalage de phase du canal gauche et droit. Ceci est trs bien pour la cration de sons stro amples.With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds.TripleOscillatorViewAvec ce bouton vous pouvez rgler le volume de l'oscillateur %1. Lorsque mettez la valeur 0 l'oscillateur est arrt. Sinon vous pouvez entendre l'oscillateur aussi fort que vous l'avez rgl.With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here.TripleOscillatorViewcentimescentsTripleOscillatorView degrsdegreesTripleOscillatorViewdemi-tons semitonesTripleOscillatorViewCliquez ici pour montrer ou cacher l'interface utilisateur graphique de votre greffon VST.QClick here to show or hide the graphical user interface (GUI) of your VST-plugin.VestigeInstrumentViewCliquez ici si vous souhaitez ouvrir un autre greffon VST. Aprs avoir cliqu sur ce bouton, une bote de dialogue d'ouverture de fichier apparatra et vous pourrez slectionner votre fichier.Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file.VestigeInstrumentView(Fichiers DLL (*.dll)DLL-files (*.dll)VestigeInstrumentView(Fichiers EXE (*.exe)EXE-files (*.exe)VestigeInstrumentView@Aucun greffon VST n'a t chargNo VST-plugin loadedVestigeInstrumentView*Ouvrir un greffon VSTOpen VST-pluginVestigeInstrumentView6Ouvrir un autre greffon VSTOpen other VST-pluginVestigeInstrumentView`Montrer/Cacher l'interface utilisateur graphique Show/hide GUIVestigeInstrumentViewBArrter de jouer toutes les notesTurn off all notesVestigeInstrumentViewparbyVestigeInstrumentViewJLe chargement du greffon VST a chouFailed loading VST-plugin VstPlugin*Chargement du greffonLoading plugin VstPlugintVeuillez patienter pendant le chargement du greffon VST...'Please wait while loading VST-plugin... VstPluginJLe greffon VST %1 n'a pas pu tre charg pour une raison quelconque. S'il fonctionne avec d'autres logiciels VST sous Linux, merci de contacter un dveloppeur LMMS !The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! VstPluginCliquez ici pour montrer ou cacher l'interface utilisateur graphique de ZynAddSubFX.MClick here to show or hide the graphical user interface (GUI) of ZynAddSubFX.ZynAddSubFxViewFRQFREQZynAddSubFxViewRESRESZynAddSubFxViewRMontrer l'interface utilisateur graphiqueShow GUIZynAddSubFxViewAmplifierAmplifyaudioFileProcessor(Fin de l'chantillon End of sampleaudioFileProcessorJouer en boucleLoopaudioFileProcessor,Inverser l'chantillonReverse sampleaudioFileProcessor,Dbut de l'chantillonStart of sampleaudioFileProcessorFRQFREQbassBoosterControlDialogFrquence : Frequency:bassBoosterControlDialogGAINGAINbassBoosterControlDialog Gain :Gain:bassBoosterControlDialogRAPPORTRATIObassBoosterControlDialogRapport :Ratio:bassBoosterControlDialogFrquence FrequencybassBoosterControlsGainGainbassBoosterControlsRapportRatiobassBoosterControls<Ajouter une piste d'automationAdd automation-trackbbEditorNAjouter un ryhtme ou une ligne de basseAdd beat/basslinebbEditorLditeur de rythme et de ligne de basseBeat+Bassline EditorbbEditorCliquez ici pour jouer le rythme ou la ligne de basse. Le rythme ou la ligne de basse est rejou lorsque sa fin est atteinte.qClick here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached.bbEditorCliquez ici pour arrter de jouer le rythme ou la ligne de basse.4Click here to stop playing of current beat/bassline.bbEditorJouer/Mettre en pause le rythme ou la ligne de basse (Barre d'espace)(Play/pause current beat/bassline (Space)bbEditorArrter de jouer le rythme ou la ligne de basse (Barre d'espace).Stop playback of current beat/bassline (Space)bbEditor$Changer la couleur Change color bbTCOViewChanger le nom Change name bbTCOViewhOuvrir dans l'diteur de rythme et de ligne de basseOpen in Beat+Bassline-Editor bbTCOView(Rinitialiser le nom Reset name bbTCOView6Ryhtme ou ligne de basse %1Beat/Bassline %1bbTrack2Longueur de l'chantillon Samplelength bitInvaderLCliquez ici pour une onde sinusodale.Click for a sine-wave.bitInvaderViewTCliquez ici pour une onde en dent de scie.Click here for a saw-wave.bitInvaderViewBCliquez ici pour une onde carre.Click here for a square-wave.bitInvaderViewNCliquez ici pour une onde triangulaire.Click here for a triangle-wave.bitInvaderViewhCliquez ici pour une onde dfinie par l'utilisateur.$Click here for a user-defined shape.bitInvaderView@Cliquez ici pour un bruit blanc.Click here for white-noise.bitInvaderViewPCliquez ici pour lisser la forme d'onde.Click here to smooth waveform.bitInvaderViewDessinez ici votre propre forme d'onde en faisant glisser votre souris sur ce graphique.ADraw your own waveform here by dragging your mouse on this graph.bitInvaderViewInterpolation InterpolationbitInvaderViewNormaliser NormalizebitInvaderView2Longueur de l'chantillon Sample LengthbitInvaderView(Onde en dent de scieSaw wavebitInvaderView Onde sinusodale Sine wavebitInvaderView LisserSmoothbitInvaderViewOnde carre Square wavebitInvaderView"Onde triangulaire Triangle wavebitInvaderView<Onde dfinie par l'utilisateurUser defined wavebitInvaderViewBruit blancWhite noise wavebitInvaderViewBLe fichier n'a pas pu tre ouvertCould not open fileexportProjectDialogrLe fichier %1 ne peut pas tre ouvert en criture. Veuillez vrifier que vous avez les droits d'accs en criture pour ce fichier et le rpertoire qui contient ce fichier et ressayez !Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again!exportProjectDialog ErreurErrorexportProjectDialogErreur pendant la dtection du priphrique d'encodage du fichier. Veuillez essayer de choisir un format de sortie diffrent.\Error while determining file-encoder device. Please try to choose a different output format.exportProjectDialog4Exporter le projet vers %1Export project to %1exportProjectDialogEncodage : %1%Rendering: %1%exportProjectDialogExplorateurBrowser fileBrowser,--- Fichiers usine ------ Factory files ---fileBrowserTreeWidget6Chargement de l'chantillonLoading samplefileBrowserTreeWidgetOuvrir dans une nouvelle piste d'instrument/diteur de rythme et de ligne de basse'Open in new instrument-track/B+B EditorfileBrowserTreeWidget|Ouvrir dans une nouvelle piste d'instrument/diteur de morceau(Open in new instrument-track/Song-EditorfileBrowserTreeWidgetVeuillez patienter, chargement de l'chantillon pour un aperu...*Please wait, loading sample for preview...fileBrowserTreeWidgetPEnvoyer vers la piste d'instrument actifSend to active instrument-trackfileBrowserTreeWidgetGraphiqueGraph graphModelDescenteDecaykickerInstrumentDistorsion DistortionkickerInstrument Frquence de fin End frequencykickerInstrumentGainGainkickerInstrument$Frquence de dbutStart frequencykickerInstrumentDescente :Decay:kickerInstrumentViewDistorsion : Distortion:kickerInstrumentView$Frquence de fin :End frequency:kickerInstrumentView Gain :Gain:kickerInstrumentView(Frquence de dbut :Start frequency:kickerInstrumentView Aid&e&HelpknobTVeuillez entrer un valeur entre %1 et %2 :+Please enter a new value between %1 and %2:knob~Veuillez entrer un nouvelle valeur entre -96,0 dBV et 6,0 dBV :7Please enter a new value between -96.0 dBV and 6.0 dBV:knob Outils d'analyseAnalysis ToolsladspaBrowserView$Effets disponiblesAvailable EffectsladspaBrowserView Divers Don't knowladspaBrowserViewInstruments InstrumentsladspaBrowserView Cette bote de dialogue affiche des informations sur tous les greffons LADSPA que LMMS a pu localiser. Ces greffons sont rpartis en cinq catgories en fonction de l'interprtation des types et des noms de port. Les Effets disponibles sont ceux qui peuvent tre utiliss par LMMS. Pour que LMMS puisse utiliser un effet, il doit, tout d'abord, tre un effet, ce qui revient dire qu'il doit avoir la fois des canaux d'entre et de sortie. LMMS identifie un canal d'entre comme un port audio contenant 'in' dans son nom. Les canaux de sortie sont identifis par les lettres 'out'. De plus, l'effet doit avoir le mme nombre d'entre que de sorties et doit pouvoir fonctionner en temps rel. Les Effets indisponibles sont ceux qui ont t identifis comme des effets, mais qui soit n'ont pas le mme nombre de canaux d'entre et de sortie, soit ne peuvent fonctionner en temps rel. Les Instruments sont des greffons pour lesquels seuls des canaux de sortie ont t identifis. Les Outils d'analyse sont des greffons pour lesquels seuls des canaux d'entre ont t identifis. Les Divers sont des greffons pour lesquels aucun canaux d'entre ou de sortie n'ont t identifis. En double-cliquant sur ces greffons vous ferez apparatre des informations sur les ports.TThis dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports.ladspaBrowserView Type :Type:ladspaBrowserView(Effets indisponiblesUnavailable EffectsladspaBrowserViewDescription DescriptionladspaDescriptionGreffonsPluginsladspaDescription AudioAudioladspaPortDialogContrleControlladspaPortDialogSens DirectionladspaPortDialogFlottantFloatladspaPortDialog EntreInputladspaPortDialog EntierIntegerladspaPortDialogLogarythmique LogarithmicladspaPortDialog,Min < par dfaut < MaxMin < Default < MaxladspaPortDialogNomNameladspaPortDialog SortieOutputladspaPortDialog PortsPortsladspaPortDialogVitesseRateladspaPortDialog SR DependentladspaPortDialogPermutToggledladspaPortDialogTypeTypeladspaPortDialogOuiYesladspaPortDialog Filtre 24 dB/oct24dB/oct Filter lb302Synth AccentAccent lb302Synth teintDead lb302SynthDistorsion Distortion lb302SynthLiaisonSlide lb302Synth,Descente de la liaison Slide Decay lb302Synth6Frquence de coupure du VCFVCF Cutoff Frequency lb302Synth<Descente de l'enveloppe du VCFVCF Envelope Decay lb302Synth@Modulation de l'enveloppe du VCFVCF Envelope Mod lb302Synth Rsonance du VCF VCF Resonance lb302SynthForme d'ondeWaveform lb302SynthR303-esque, 24 dB/octave, filtre 3 ples&303-es-que, 24dB/octave, 3 pole filterlb302SynthViewCUTCUTlb302SynthViewLCliquez ici pour une onde sinusodale.Click for a sine-wave.lb302SynthViewNCliquez ici pour une onde de type Moog. Click here for a moog-like wave.lb302SynthViewVCliquez ici pour une onde en dent de scie.Click here for a saw-wave.lb302SynthViewnCliquez ici pour une onde carre avec une fin arrondie.0Click here for a square-wave with a rounded end.lb302SynthViewBCliquez ici pour une onde carre.Click here for a square-wave.lb302SynthViewNCliquez ici pour une onde triangulaire.Click here for a triangle-wave.lb302SynthViewPCliquez ici pour une onde exponentielle.#Click here for an exponential wave.lb302SynthView@Cliquez ici pour un bruit blanc.Click here for white-noise.lb302SynthView,Frquence de coupure : Cutoff Freq:lb302SynthViewDECDEClb302SynthViewDISTDISTlb302SynthView DIST :DIST:lb302SynthViewDescente :Decay:lb302SynthViewENV MODENV MODlb302SynthView6Modulation de l'enveloppe :Env Mod:lb302SynthViewOnde Moog Moog wavelb302SynthViewRESRESlb302SynthViewRsonance : Resonance:lb302SynthView(Onde carre arrondieRounded square wavelb302SynthView SLIDESLIDElb302SynthView(Onde en dent de scieSaw wavelb302SynthView Onde sinusodale Sine wavelb302SynthView0Descente de la liaison : Slide Decay:lb302SynthViewOnde carre Square wavelb302SynthView"Onde triangulaire Triangle wavelb302SynthViewBruit blancWhite noise wavelb302SynthView Filtre 24 dB/oct24dB/oct Filter lb303Synth AccentAccent lb303Synth teintDead lb303SynthDistorsion Distortion lb303SynthGlissementSlide lb303Synth,Descente du glissement Slide Decay lb303Synth6Frquence de coupure du VCFVCF Cutoff Frequency lb303Synth<Descente de l'enveloppe du VCFVCF Envelope Decay lb303Synth@Modulation de l'enveloppe du VCFVCF Envelope Mod lb303Synth Rsonance du VCF VCF Resonance lb303SynthForme d'ondeWaveform lb303SynthR303-esque, 24 dB/octave, filtre 3 ples&303-es-que, 24dB/octave, 3 pole filterlb303SynthViewCUTCUTlb303SynthView,Frquence de coupure : Cutoff Freq:lb303SynthViewDECDEClb303SynthViewDISTDISTlb303SynthView DIST :DIST:lb303SynthViewDescente :Decay:lb303SynthViewENV MODENV MODlb303SynthView6Modulation de l'enveloppe :Env Mod:lb303SynthViewRESRESlb303SynthViewRsonance : Resonance:lb303SynthView SLIDESLIDElb303SynthView0Descente de la liaison : Slide Decay:lb303SynthViewWAVEWAVElb303SynthView WAVE :WAVE:lb303SynthViewADSRADSRmalletsInstrument AgogoAgogomalletsInstrumentBattementsBeatsmalletsInstrument CourbBowedmalletsInstrumentBruit lourdClumpmalletsInstrumentFondu enchain CrossfademalletsInstrument VerreGlassmalletsInstrument DuretHardnessmalletsInstrument"Profondeur du LFO LFO DepthmalletsInstrumentVitesse du LFO LFO SpeedmalletsInstrumentMarimbaMarimbamalletsInstrument$Fichiers manquants Missing filesmalletsInstrumentModulateur ModulatormalletsInstrumentMouvementMotionmalletsInstrumentPositionPositionmalletsInstrumentPressionPressuremalletsInstrumentRsoResomalletsInstrumentVitesseSpeedmalletsInstrumentDiffusionSpreadmalletsInstrumentStick Mix Stick MixmalletsInstrumentBol tibtain Tibetan BowlmalletsInstrument$Cloches tubulaires Tubular BellsmalletsInstrumentBarre accorde Tuned BarmalletsInstrumentDeux fixes Two FixedmalletsInstrumentBarre uniforme Uniform BarmalletsInstrumentVibraphone VibraphonemalletsInstrument(Frquence du vibrato Vibrato FreqmalletsInstrumentGain du vibrato Vibrato GainmalletsInstrument Bois1Wood1malletsInstrument Bois2Wood2malletsInstrumentVotre installation de STK semble incomplte. Veuillez vous assurer que le paquet Stk complet est install !aYour Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed!malletsInstrumentADSRADSRmalletsInstrumentView ADSR :ADSR:malletsInstrumentView CourbBowedmalletsInstrumentViewFondu enchain CrossfademalletsInstrumentView Fondu enchain : Crossfade:malletsInstrumentView DuretHardnessmalletsInstrumentViewDuret : Hardness:malletsInstrumentViewInstrument InstrumentmalletsInstrumentView"Profondeur du LFO LFO DepthmalletsInstrumentView&Profondeur du LFO : LFO Depth:malletsInstrumentViewVitesse du LFO LFO SpeedmalletsInstrumentView Vitesse du LFO : LFO Speed:malletsInstrumentViewModulateur ModulatormalletsInstrumentViewModulateur : Modulator:malletsInstrumentViewMouvementMotionmalletsInstrumentViewMouvement :Motion:malletsInstrumentViewPositionPositionmalletsInstrumentViewPosition : Position:malletsInstrumentViewPressionPressuremalletsInstrumentViewPression : Pressure:malletsInstrumentViewVitesseSpeedmalletsInstrumentViewVitesse :Speed:malletsInstrumentViewDiffusionSpreadmalletsInstrumentViewDiffusion :Spread:malletsInstrumentViewStick Mix Stick MixmalletsInstrumentViewStick Mix : Stick Mix:malletsInstrumentViewFrq VibVib FreqmalletsInstrumentViewFrq Vib : Vib Freq:malletsInstrumentViewGain VibVib GainmalletsInstrumentViewGain Vib : Vib Gain:malletsInstrumentViewVibratoVibratomalletsInstrumentViewVibrato :Vibrato:malletsInstrumentView Aid&e&HelpnineButtonSelectorDistorsion DistortionorganicInstrument VolumeVolumeorganicInstrumentDistorsion : Distortion:organicInstrumentView^Dsaccordage fin (gauche) de l'oscillateur %1 :Osc %1 fine detuning left:organicInstrumentViewBPanoramique de l'oscillateur %1 :Osc %1 panning:organicInstrumentView8Volume de l'oscillateur %1 :Osc %1 volume:organicInstrumentViewBForm d'onde de l'oscillateur %1 :Osc %1 waveform:organicInstrumentViewRandomiser RandomiseorganicInstrumentViewVolume :Volume:organicInstrumentViewcentimescentsorganicInstrumentView GravesBasspapuInstrument2Canal 1 vers SO2 (droite)Channel 1 to SO1 (Right)papuInstrument2Canal 1 vers SO2 (gauche)Channel 1 to SO2 (Left)papuInstrument"Volume du canal 1Channel 1 volumepapuInstrument2Canal 2 vers SO2 (droite)Channel 2 to SO1 (Right)papuInstrument2Canal 2 vers SO2 (gauche)Channel 2 to SO2 (Left)papuInstrument"Volume du canal 2Channel 2 volumepapuInstrument2Canal 3 vers SO2 (droite)Channel 3 to SO1 (Right)papuInstrument2Canal 3 vers SO2 (gauche)Channel 3 to SO2 (Left)papuInstrument"Volume du canal 3Channel 3 volumepapuInstrument2Canal 4 vers SO2 (droite)Channel 4 to SO1 (Right)papuInstrument2Canal 4 vers SO2 (gauche)Channel 4 to SO2 (Left)papuInstrument"Volume du canal 4Channel 4 volumepapuInstrument.Niveau de sortie gaucheLeft Output levelpapuInstrumentDLongueur de chaque pas du balayageLength of each step in sweeppapuInstrument.Niveau de sortie droiteRight Output levelpapuInstrument>Largeur du registre de dcalageShift Register widthpapuInstrumentZNiveau de dcalage vers la droite du balayageSweep RtShift amountpapuInstrument Sens de balayageSweep directionpapuInstrument"Temps de balayage Sweep timepapuInstrument AigusTreblepapuInstrument4Sens du volume du balayageVolume sweep directionpapuInstrumentMotif d'ondeWave Pattern DutypapuInstrument GravesBasspapuInstrumentViewGraves :Bass:papuInstrumentView2Canal 1 vers SO1 (droite)Channel1 to SO1 (Right)papuInstrumentView2Canal 1 vers SO2 (gauche)Channel1 to SO2 (Left)papuInstrumentView2Canal 2 vers SO1 (droite)Channel2 to SO1 (Right)papuInstrumentView2Canal 2 vers SO2 (gauche)Channel2 to SO2 (Left)papuInstrumentView2Canal 3 vers SO1 (droite)Channel3 to SO1 (Right)papuInstrumentView2Canal 3 vers SO2 (gauche)Channel3 to SO2 (Left)papuInstrumentView2Canal 4 vers SO1 (droite)Channel4 to SO1 (Right)papuInstrumentView2Canal 4 vers SO2 (gauche)Channel4 to SO2 (Left)papuInstrumentView.Dessinez votre onde iciDraw the wave herepapuInstrumentViewDLongueur de chaque pas du balayageLength of each step in sweeppapuInstrumentViewHLongueur de chaque pas du balayage :Length of each step in sweep:papuInstrumentView*Volume du canal bruitNoise Channel VolumepapuInstrumentView.Volume du canal bruit :Noise Channel Volume:papuInstrumentView&Volume SO1 (droite)SO1 Volume (Right)papuInstrumentView*Volume SO1 (droite) :SO1 Volume (Right):papuInstrumentView&Volume SO2 (droite)SO2 Volume (Left)papuInstrumentView*Volume SO2 (droite) :SO2 Volume (Left):papuInstrumentView>Largeur du registre de dcalageShift Register WidthpapuInstrumentView.Volume du canal carr 1Square Channel 1 VolumepapuInstrumentView2Volume du canal carr 1 :Square Channel 1 Volume:papuInstrumentView.Volume du canal carr 2Square Channel 2 VolumepapuInstrumentView2Volume du canal carr 2 :Square Channel 2 Volume:papuInstrumentView Sens de balayageSweep DirectionpapuInstrumentViewZNiveau de dcalage vers la droite du balayageSweep RtShift amountpapuInstrumentView^Niveau de dcalage vers la droite du balayage :Sweep RtShift amount:papuInstrumentView"Temps de balayage Sweep TimepapuInstrumentView&Temps de balayage : Sweep Time:papuInstrumentViewrLe niveau d'augmentation ou de diminution de la frquence/The amount of increase or decrease in frequencypapuInstrumentViewNLe dlai entre chaque changement de pasThe delay between step changepapuInstrumentViewLe cycle de travail est le rapport entre la dure (temps) pendant laquelle un signal est prsent et la priode totale du signal.mThe duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal.papuInstrumentViewLa vitesse laquelle l'augmentation ou la diminution de la frquence se produit:The rate at which increase or decrease in frequency occurspapuInstrumentView AigusTreblepapuInstrumentViewAigus :Treble:papuInstrumentView4Sens du volume du balayageVolume Sweep DirectionpapuInstrumentView(Volume du canal ondeWave Channel VolumepapuInstrumentView,Volume du canal onde :Wave Channel Volume:papuInstrumentViewMotif d'onde Wave PatternpapuInstrumentViewMotif d'ondeWave Pattern DutypapuInstrumentViewMotif d'ondeWave pattern dutypapuInstrumentViewMotif d'onde :Wave pattern duty:papuInstrumentView:Le motif n'a pas pu tre gelCannot freeze patternpatternLe motif n'a pas pu tre gel car vous tes en mode coute. Veuillez arrter de jouer le motif et recommencer !_The pattern currently cannot be freezed because you're in play-mode. Please stop and try again!patternAnnulerCancelpatternFreezeStatusDialogGel du motif...Freezing pattern...patternFreezeStatusDialog %1 pas%1 steps patternView 1 pas1 step patternViewAjouter des pas Add steps patternViewChanger le nom Change name patternView0Effacer toutes les notesClear all notes patternView GelerFreeze patternView8Ouvrir dans le piano virtuelOpen in piano-roll patternViewRegelerRefreeze patternView"Supprimer des pas Remove steps patternView(Rinitialiser le nom Reset name patternViewDgelerUnfreeze patternViewdouble-cliquer pour ouvrir ce motif dans le piano virtuel utilisez la molette de la souris pour rgler le volume d'un pasWdouble-click to open this pattern in piano-roll use mouse wheel to set volume of a step patternViewLCliquez ici et le mode dsaccordage sera activ. Dans ce mode vous pourrer cliquer sur une note pour accder l'automation de son dsaccordage. Vous pouvez utiliser ceci pour lier des notes entre-elles. Vous pouvez aussi appuyer sur les touches 'Shift+T' de votre clavier pour activer ce mode.Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. pianoRollCliquez ici et le mode dessin sera activ. Dans ce mode vous pourrez ajouter, redimensionner et dplacer des notes. Ceci est le mode par dfaut qui est utilis la plupart du temps. Vous pouvez aussi appuyer sur les touches 'Shift+D' de votre clavier pour activer ce mode. Dans ce mode, appuyez sur Ctrl pour passer temporairement dans le mode slection.Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. pianoRolllCliquez ici et le mode effacement sera activ. Dans ce mode vous pourrez effacer des notes. Vous pouvez aussi appuyer sur les touches 'Shift+E' de votre clavier pour activer ce mode.Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. pianoRollbCliquez ici et le mode slection sera activ. Dans ce mode vous pourrez slectionner des notes. Dans ce mode, appuyez appuyer sur Ctrl pour passer temporairement en mode dessin.Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. pianoRollCliquez ici et les valeurs se trouvant dans le presse-papier seront colles sur la premire mesure visible.XClick here and the notes from the clipboard will be pasted at the first visible measure. pianoRoll^Cliquez ici et les valeurs slectionnes seront copies dans le presse-papier. Vous pourrez les coller n'importe o dans n'importe quel motif en cliquant sur le bouton coller.Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRolltCliquez ici et les valeurs slectionnes seront coupes et copies dans le presse-papier. Vous pourrez les coller n'importe o dans n'importe quel motif en cliquant sur le bouton coller.Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRoll Cliquez ici pour jouer le motif. Ceci est utile pendant son dition. Le motif est automatiquement rejou lorsque sa fin est atteinte.Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. pianoRollCliquez ici pour enregistrer des notes partir d'un priphrique MIDI ou du piano de test virtuel de la fentre correspondant au canal du motif. Lors de l'enregistrement toutes les notes seront crites dans ce motif et vous pourrez ensuite les jouer et les diter.Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. pianoRollXCliquez ici pour enregistrer des notes partir d'un priphrique MIDI ou du piano de test virtuel de la fentre correspondant au canal du motif. Lors de l'enregistrement toutes les notes seront crites dans ce motif et vous entendrez le morceau ou bien le rythme ou la ligne de basse en fond sonore.Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. pianoRollVCliquez ici pour arrter de jouer le motif./Click here to stop playback of current pattern. pianoRollNCopier les notes slectionnes (Ctrl+C)Copy selected notes (Ctrl+C) pianoRollNCouper les notes slectionnes (Ctrl+X)Cut selected notes (Ctrl+X) pianoRoll6Mode dsaccordage (Shift+T)Detune mode (Shift+T) pianoRoll*Mode dessin (Shift+D)Draw mode (Shift+D) pianoRoll2Mode effacement (Shift+E)Erase mode (Shift+E) pianoRollDernire note Last note pianoRoll,Panoramique de la note Note Panning pianoRoll$Volume de la note  Note Volume pianoRoll$Vrouiller la note Note lock pianoRollvColler les notes se trouvant dans le presse-papier (Ctrl+V)#Paste notes from clipboard (Ctrl+V) pianoRoll$Piano virtuel - %1Piano-Roll - %1 pianoRoll8Piano virtuel - pas de motifPiano-Roll - no pattern pianoRoll^Jouer/Mettre en pause le motif (Barre d'espace)"Play/pause current pattern (Space) pianoRollhVeuillez ouvrir un motif en double-cliquant dessus !/Please open a pattern by double-clicking on it! pianoRollEnregistrez des notes partir d'un priphrique MIDI ou d'un canal du piano+Record notes from MIDI-device/channel-piano pianoRoll:Enregistrez des notes partir d'un priphrique MIDI ou d'un canal du piano pendant l'coute d'un morceau ou bien d'une piste de rythme ou de ligne de basseJRecord notes from MIDI-device/channel-piano while playing song or BB track pianoRoll0Mode slection (Shift+S)Select mode (Shift+S) pianoRollTArrter de jouer le motif (Barre d'espace)'Stop playing of current pattern (Space) pianoRollLSynthtiseur additif pour sons d'orgue*Additive Synthesizer for organ-like sounds pluginBrowser\Synthtiseur de table d'ondes personnalisables"Customizable wavetable synthesizer pluginBrowser Faites glisser un instrument dans l'diteur de morceau, dans l'diteur de rythme et de ligne de basse, ou dans une piste d'instrument existante.nDrag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. pluginBrowser&ZynAddSubFX intgrEmbedded ZynAddSubFX pluginBrowserJmulateur de l'APU de la GameBoy (TM)Emulation of GameBoy (TM) APU pluginBrowsermulateur des SID MOS6581 et MOS8580. Ce composant tait utilis dans l'ordinateur Commodore 64.ZEmulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. pluginBrowserFiltre pour l'importation de projets Fruity Loops Studio dans LMMS1Filter for importing FL Studio projects into LMMS pluginBrowserhFiltre pour l'importation de fichiers MIDI dans LMMS)Filter for importing MIDI-files into LMMS pluginBrowserSons d'instruments compatibles avec la carte Gravis UltraSound (GUS)GUS-compatible patch instrument pluginBrowserTImitation incomplte de TB303 monophonique%Incomplete monophonic imitation tb303 pluginBrowser.Slecteur d'instrumentsInstrument browser pluginBrowser*Greffons d'instrumentInstrument plugins pluginBrowserFListe des greffons LADSPA installsList installed LADSPA plugins pluginBrowser:Lecteur de fichiers SoundFontPlayer for SoundFont files pluginBrowservGreffon pour le contrle les boutons avec des crtes de son-Plugin for controlling knobs with sound peaks pluginBrowserGreffon pour l'amlioration de la sparation stro d'un fichier stro en entre=Plugin for enhancing stereo separation of a stereo input file pluginBrowser`Greffon pour la manipulation de la sortie stro,Plugin for freely manipulating stereo output pluginBrowser>Instruments frapper mlodieuxTuneful things to bang on pluginBrowserpHte VST pour l'utilisation de greffons VST(i) dans LMMS-VST-host for using VST(i)-plugins within LMMS pluginBrowser4Modeleur de corde vibranteVibrating string modeler pluginBrowser$pas de descriptionno description pluginBrowserLGreffon pour l'augmentation des bassesplugin for boosting bass pluginBrowserGreffon pour l'utilisation arbitraire d'effets LADSPA dans LMMS.6plugin for using arbitrary LADSPA-effects inside LMMS. pluginBrowserdGreffon pour l'utilisation d'effets VST dans LMMS.3plugin for using arbitrary VST-effects inside LMMS. pluginBrowserchantilloneur simple avec diffrents rglages pour l'utilisation d'chantillons (p. ex. batteries) dans une piste d'instrumentZsimple sampler with various settings for using samples (e.g. drums) in an instrument-track pluginBrowserTrois puissants oscillateurs que vous pouvez moduler de plusieurs faons;three powerful oscillators you can modulate in several ways pluginBrowser`Synthtiseur de kick et grosse caisse polyvalent&versatile kick- & bassdrum-synthesizer pluginBrowser Gr&as&Bold projectNotesC&ouleurs... &Color... projectNotes&Copier&Copy projectNotes&Italique&Italic projectNotes&Justifier&Justify projectNotes&Gauche&Left projectNotesCo&ller&Paste projectNotes&Refaire&Redo projectNotesD&roite&Right projectNotes&Soulign &Underline projectNotes&Dfaire&Undo projectNotesC&entrerC&enter projectNotesCtrl+B projectNotesCtrl+C projectNotesCtrl+E projectNotesCtrl+I projectNotesCtrl+J projectNotesCtrl+L projectNotesCtrl+R projectNotesCtrl+U projectNotesCtrl+V projectNotesCtrl+X projectNotesCtrl+Y projectNotesCtrl+Z projectNotesCou&perCu&t projectNotesdition Edit Actions projectNotes FormatFormat Actions projectNotesNotes du projet Project notes projectNotestIci vous pouvez prendre des notes concernant votre projet.!Put down your project notes here. projectNotesRenommer... Rename... renameDialog8Fichiers AIFF (*.aif *.aiff)AIFF-Files (*.aif *.aiff) sampleBuffer$Fichiers AU (*.au)AU-Files (*.au) sampleBufferTous les fichiers audio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3)SAll Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) sampleBuffer2Fichiers DrumSynth (*.ds)DrumSynth-Files (*.ds) sampleBuffer,Fichiers FLAC (*.flac)FLAC-Files (*.flac) sampleBuffer(Fichiers MP3 (*.mp3)MP3-Files (*.mp3) sampleBuffer(Fichiers OGG (*.ogg)OGG-Files (*.ogg) sampleBuffer.Ouvrir un fichier audioOpen audio file sampleBuffer(Fichiers RAW (*.raw)RAW-Files (*.raw) sampleBuffer,Fichiers SPEEX (*.spx)SPEEX-Files (*.spx) sampleBuffer(Fichiers VOC (*.voc)VOC-Files (*.voc) sampleBuffer*Fichiers WAVE (*.wav)Wave-Files (*.wav) sampleBuffer CopierCopy sampleTCOView CouperCut sampleTCOViewRSupprimer (Bouton du milieu de la souris)Delete (middle mousebutton) sampleTCOViewFCouper/Jouer (<Ctrl> + clic-milieu)#Mute/unmute ( + middle click) sampleTCOView CollerPaste sampleTCOView>Rgler/Effacer l'enregistrementSet/clear record sampleTCOViewTDouble-cliquez pour choisir un chantillondouble-click to select sample sampleTCOView&Piste d'chantillon Sample track sampleTrack VolumeVolume sampleTrack"Volume du canal :Channel volume:sampleTrackView$Volume de la piste Track volumesampleTrackViewVOLVOLsampleTrackViewINTERFACE AUDIOAUDIO INTERFACE setupDialog@Rpertoire des thmes graphiquesArtwork directory setupDialog&Configuration audioAudio settings setupDialog6TAILLE DE LA MMOIRE TAMPON BUFFER SIZE setupDialog<Thme graphique d'arrire-planBackground artwork setupDialogAnnulerCancel setupDialog|Choisissez le rpertoire d'installation de Fruity Loops Studio'Choose FL Studio installation directory setupDialogXChoisissez le rpertoire des greffons LADSPAChoose LADSPA plugin directory setupDialogVChoisissez le rpertoire de travail de LMMSChoose LMMS working directory setupDialog>Choisissez le rpertoire de STKChoose STK rawwave directory setupDialog\Choisissez le rpertoire des thmes graphiquesChoose artwork-theme directory setupDialogXChoisissez le thme graphique d'arrire-planChoose background artwork setupDialogDChoisissez la SoundFont par dfautChoose default SoundFont setupDialogRChoisissez le rpertoire des greffons VST Choose your VST-plugin directory setupDialogXCompresser par dfaut les fichiers de projet"Compress project files per default setupDialog8Fichier SoundFont par dfautDefault Soundfont File setupDialog`Dsactiver les indicateurs d'activit des canaux#Disable channel activity indicators setupDialog2Afficher le volume en dBVDisplay volume as dBV  setupDialog.Activer les info-bullesEnable tooltips setupDialog`Rpertoire d'installation de Fruity Loops Studio FL Studio installation directory setupDialog6Trames : %1 Latence : %2 msFrames: %1 Latency: %2 ms setupDialog,Configuration gnraleGeneral settings setupDialogNPriphrique de sortie audio en mode HQHQ-mode for output audio-device setupDialogBIci vous pouvez choisir l'interface MIDI que vous prfrez. En fonction de la configuration de votre systme au moment de la compilation, vous pouvez choisir entre ALSA, JACK, OSS et d'autres. Vous voyez ci-dessous une fentres contenant des contrles pour rgler l'interface MIDI choisie.Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. setupDialogFIci vous pouvez choisir l'interface audio que vous prfrez. En fonction de la configuration de votre systme au moment de la compilation, vous pouvez choisir entre ALSA, JACK, OSS et d'autres. Vous voyez ci-dessous une fentres contenant des contrles pour rgler l'interface audio choisie.Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. setupDialog<Ici vous pouvez rgler la taille de la mmoire tampon interne utilise par LMMS. Les valeurs faibles rduisent la latence mais peuvent aussi rendre le son inutilisable ou induire de mauvaises performances, en particulier sur des ordinateurs anciens ou des systme sans noyau temps-rel.Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. setupDialogDChemin d'accs aux greffons LADSPALADSPA plugin paths setupDialog:Rpertoire de travail de LMMSLMMS working directory setupDialogINTERFACE MIDIMIDI INTERFACE setupDialog$Configuration MIDI MIDI settings setupDialog DIVERSMISC setupDialogOKOK setupDialogpN'appuyez que manuellement sur le touches du canal piano)Only press keys on channel-piano manually setupDialogChemins d'accsPaths setupDialog<Configuration des performancesPerformance settings setupDialogVeuillez noter que la plupart des modifications ne prendront pas effet tant n'aurez pas redmarr LMMS !GPlease note that most changes won't take effect until you restart LMMS! setupDialogHRinitialiser la valeur par dfautReset to default-value setupDialogRedmarrer LMMS Restart LMMS setupDialog"Rpertoire de STKSTK rawwave directory setupDialog*Configuration de LMMS Setup LMMS setupDialogAfficher l'invitation redmarrer aprs la modification de le configuration,Show restart warning after changing settings setupDialog>Effets graphique vs PerfomancesUI effects vs. performance setupDialog6Rpertoire des greffons VSTVST-plugin directory setupDialog BanqueBank sf2Instrument ChorusChorus sf2Instrument(Profondeur de chorus Chorus Depth sf2Instrument Niveau de chorus Chorus Level sf2Instrument Lignes de chorus Chorus Lines sf2Instrument"Vitesse de chorus Chorus Speed sf2InstrumentGainGain sf2InstrumentSonPatch sf2InstrumentRverbrationReverb sf2InstrumentBAmortissement de la rverbrationReverb Damping sf2Instrument4Niveau de la rverbration Reverb Level sf2Instrument*Rverbration (Salle)Reverb Roomsize sf2Instrument6Largeur de la rverbration Reverb Width sf2InstrumentNAppliquer le chorus (si pris en charge)Apply chorus (if supported)sf2InstrumentView\Appliquer la rverbration (si pris en charge)Apply reverb (if supported)sf2InstrumentViewChoisir un sonChoose the patchsf2InstrumentView,Profondeur de chorus : Chorus Depth:sf2InstrumentView$Niveau de chorus : Chorus Level:sf2InstrumentView$Lignes de chorus : Chorus Lines:sf2InstrumentView&Vitesse de chorus : Chorus Speed:sf2InstrumentViewXCliquez ici pour ouvrir un autre fichier SF2#Click here to open another SF2 filesf2InstrumentViewGainGainsf2InstrumentView6Ouvrir un fichier SoundFontOpen SoundFont filesf2InstrumentView6Ouvrir un fichier SoundFontOpen other SoundFont filesf2InstrumentViewFAmortissement de la rverbration :Reverb Damping:sf2InstrumentView8Niveau de la rverbration : Reverb Level:sf2InstrumentView.Rverbration (Salle) :Reverb Roomsize:sf2InstrumentView:Largeur de la rverbration : Reverb Width:sf2InstrumentView6Fichiers SoundFont2 (*.sf2)SoundFont2 Files (*.sf2)sf2InstrumentView Ce bouton active l'effet chorus. Ceci est utile pour de beaux effets, mais ne fonctionne que sur les fichier qui le prenne en charge.uThis button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it.sf2InstrumentViewCe bouton active l'effet rverbration. Ceci est utile pour de beaux effets, mais ne fonctionne que sur les fichier qui le prenne en charge.pThis button enables the reverb effect. This is useful for cool effects, but only works on files that support it.sf2InstrumentView"Modle de circuit Chip model sidInstrumentCoupureCutoff sidInstrumentType de filtre Filter type sidInstrumentRsonance Resonance sidInstrumentVoix 3 coupe Voice 3 off sidInstrument VolumeVolume sidInstrumentLa vitesse d'attaque dtermine la rapidit laquelle la sortie de la Voix %1 passera de zro l'amplitude de crte.\Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude.sidInstrumentViewAttaque :Attack:sidInstrumentView&Filtre passe-bande Band-Pass filter sidInstrumentViewGrossier :Coarse:sidInstrumentView,Frquence de coupure :Cutoff frequency:sidInstrumentViewLa vitesse de descente dtermine la rapidit laquelle la vitesse la sortie passera de l'amplitude de crte au niveau de soutien choisi.iDecay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level.sidInstrumentViewDescente :Decay:sidInstrumentView FiltrFilteredsidInstrumentView$Filtre passe-haut High-Pass filter sidInstrumentView"Filtre passe-bas Low-Pass filter sidInstrumentViewSID MOS6581  MOS6581 SID sidInstrumentViewSID MOS8580  MOS8580 SID sidInstrumentView BruitNoisesidInstrumentViewLa sortie de la Voix %1 restera au niveau d'amplitude de soutien choisi tant que la note sera maintenu.]Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held.sidInstrumentView Onde d'impulsion Pulse WavesidInstrumentView*Largeur d'impulsion : Pulse Width:sidInstrumentViewRelchement :Release:sidInstrumentViewRsonance : Resonance:sidInstrumentViewMode anneauRing-ModsidInstrumentView*Le mode anneau remplace la sortie en forme d'onde triangulaire de l'oscillateur %1 par une combinaison "Module en anneau" des oscillateurs %1 et %2.}Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2.sidInstrumentViewDent de scieSawToothsidInstrumentViewSoutien :Sustain:sidInstrumentViewSyncSyncsidInstrumentView.Sync synchronise la frquence fondamentale de l'oscillateur %1 avec la frquence fondamentale de l'oscillateur %2 en produisant des effets "Hard Sync".Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects.sidInstrumentViewTestTestsidInstrumentViewLorsqu'il est activ, Test rinitialise et vrouille l'oscillateur %1 zro jusqu' ce que Test soit dsactiv.PTest, when set, resets and locks Oscillator %1 at zero until Test is turned off.sidInstrumentViewLe dsaccordage grossier permet de dsaccorder la Voix %1 d'une octave vers le haut ou vers le bas.DThe Coarse detuning allows to detune Voice %1 one octave up or down.sidInstrumentViewLa rsolution de la largeur d'impulsion permet la largeur d'tre balaye doucement sans pas discernable. La forme d'onde de l'impulsion de l'oscillateur %1 doit tre choisie pour n'avoir aucun effet audible.The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect.sidInstrumentViewLa sortie de la Voix %1 descendra de l'amplitude de soutien l'amplitude zro la vitesse de relchement choisie.jThe output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate.sidInstrumentView"Onde triangulaire Triangle WavesidInstrumentViewVoix 3 coupe  Voice3 Off sidInstrumentViewVolume :Volume:sidInstrumentViewVLorsque Filtr est activ, la Voix %1 sera traite par le filtre. Lorsque Filtr est dsactiv, la Voix %1 va directement en sortie, et le filtre n'a aucun effet sur elle.When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it.sidInstrumentView2Tous les types de fichierAll file typessong$Le projet est vide Empty projectsong6Projets Fruity Loops StudioFL Studio projectssong&Importer un fichier Import filesongSquences MIDIMIDI sequencessong"Tonalit gnrale Master pitchsongVolume gnral Master volumesong,Projet NON enregistr.Project NOT saved.song4Le projet a t enregistr Project savedsongrSlectionnez un fichier vers lequel exporter le projet...!Select file for project-export...songTemposongNLe projet %1 est maintenant enregistr.The project %1 is now saved.songJLe projet %1 n'a pas t enregistr !The project %1 was not saved!songL'exportation n'a pas de sens car ce projet est vide. Veuillez d'abord mettre quelques lments dans l'diteur de morceau !`This project is empty so exporting makes no sense. Please put some items into Song Editor first!songsans titreuntitledsong<Ajouter une piste d'automationAdd automation-track songEditor`Ajouter une piste de rythme ou de ligne de basseAdd beat/bassline songEditor>Ajouter une piste d'chantillonAdd sample-track songEditorzCliquez ici si vous souhaitez jouer le morceau en entier. L'coute commencera partir du marquer (vert) de position dans le morceau. Vous pouvez aussi dplacer ce curseur pendant l'coute.Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. songEditorCliquez ici si vous souhaitez ne plus jouer le morceau. Le curseur de position sera plac au dbut du morceau.uClick here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. songEditorBLe fichier n'a pas pu tre ouvertCould not open file songEditorLe fichier %1 n'a pas pu tre ouvert. Vos n'avez probablement pas le droit de lire ce fichier. Veuillez vrifier que vous avez les droits en lecture pour ce fichier et le rpertoire qui contient ce fichier et ressayez.Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. songEditor@Le fichier n'a pas pu tre critCould not write file songEditorLe fichier %1 n'a pas pu tre crit. Vous n'avez probablement pas le droit d'crire dans ce fichier. Veuillez vrifier que vous avez les droits d'accs en criture pour ce fichier et le rpertoire qui contient ce fichier et ressayez.Could not write file %1. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. songEditorMode dessin Draw mode songEditorNMode dition (Slectionner et dplacer)Edit mode (select and move) songEditor^Il y a une ou plusieurs erreurs dans le fichier Error in file songEditor$Mode haute qualitHigh quality mode songEditor"Tonalit gnrale Master pitch songEditorVolume gnral Master volume songEditorBJouer le morceau (Barre d'espace)Play song (Space) songEditorzEnregistrer des chantillons partir d'un priphrique audio Record samples from Audio-device songEditorEnregistrer des chantillons partir d'un priphrique audio pendant l'coute d'un morceau ou bien d'un rythme ou d'une ligne de basse?Record samples from Audio-device while playing song or BB track songEditor$diteur de morceau Song-Editor songEditorXArrter de jouer le morceau (Barre d'espace)Stop song (Space) songEditorTEMPO/BPM TEMPO/BPM songEditor TempoTempo songEditorLe fichier %1 semble contenir des erreurs et ne peut donc pas tre chargs.BThe file %1 seems to contain errors and therefore can't be loaded. songEditorLe tempo de ce morceau est spcifi en battements par minute (BPM). Si vous souhaitez changer le tempo de votre morceau, modifiez cette valeur. Chaque mesure quatre battements, ce qui fait que le tempo en BPM indique le nombre de mesures / 4 qui doivent tre joues dans une minute (ou le nombre de mesures qui doivent tre joues en quatre minutes).-The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). songEditor*Valeur : %1 demi-tonsValue: %1 semitones songEditorValeur : %1% Value: %1% songEditor"tonalit gnrale master pitch songEditorvolume gnral master volume songEditor tempo du morceau tempo of song songEditorAxe Y linaire Linear Y axisspectrumAnalyzerControlDialog Spectre linaireLinear spectrumspectrumAnalyzerControlDialogMode du canal Channel modespectrumAnalyzerControlsAxe Y linaire Linear Y-axisspectrumAnalyzerControls Spectre linaireLinear spectrumspectrumAnalyzerControlsAMPLWIDEstereoEnhancerControlDialogAmpleur :Width:stereoEnhancerControlDialogAmpleurWidthstereoEnhancerControls6Volume de gauche gauche :Left to Left Vol:stereoMatrixControlDialog6Volume de gauche droite :Left to Right Vol:stereoMatrixControlDialog6Volume de droite gauche :Right to Left Vol:stereoMatrixControlDialog6Volume de droite droite :Right to Right Vol:stereoMatrixControlDialogGauche gauche Left to LeftstereoMatrixControlsGauche droite Left to RightstereoMatrixControlsDroite gauche Right to LeftstereoMatrixControlsDroite droiteRight to RightstereoMatrixControls<Revenir au dbut aprs l'arrtAfter stopping go back to begintimeLineZRevenir la position de dpart aprs l'arrt?After stopping go back to position at which playing was startedtimeLine8Ne rien faire aprs l'arrtAfter stopping keep positiontimeLineHActiver/Dsactiver l'auto-dfilementEnable/disable auto-scrollingtimeLinebActiver/Dsactiver les marqueurs de jeu en boucleEnable/disable loop-pointstimeLine AstuceHinttimeLineAppuyez sur <Ctrl> pour dsactiver les marqueurs magntiques de jeu en boucle.-Press to disable magnetic loop-points.timeLine CoupeMutedtrackJoue en soloSolotrackAnnulerCanceltrackContainerJAucun filtre n'a pu tre trouv pour importer le fichier %1. Vous devriez convertir ce fichier dans un format pris en charge par LMMS en utilisant un autre logiciel.Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software.trackContainerDLe fichier n'a pas pu tre importCouldn't import filetrackContainerBLe fichier n'a pas pu tre ouvertCouldn't open filetrackContainer\Le fichier %1 n'a pas pu tre ouvert en lecture. Veuillez vrifier que vous avez les droits en lecture pour ce fichier et le rpertoire qui contient ce fichier et ressayez !Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again!trackContainer:Importation du fichier FLP...Importing FLP-file...trackContainer<Importation du fichier MIDI...Importing MIDI-file...trackContainer.Chargement du projet...Loading project...trackContainer*Veuillez patienter...Please wait...trackContainer CoupeMutedtrackContentObject0%1:%2 (%3:%4 vers %5:%6)%1:%2 (%3:%4 to %5:%6)trackContentObjectView CopierCopytrackContentObjectViewLongueurCurrent lengthtrackContentObjectViewPositionCurrent positiontrackContentObjectView CouperCuttrackContentObjectViewRSupprimer (bouton du milieu de la souris)Delete (middle mousebutton)trackContentObjectView AstuceHinttrackContentObjectViewFCouper/Jouer (<Ctrl> + clic-milieu)#Mute/unmute ( + middle click)trackContentObjectView CollerPastetrackContentObjectViewfAppuyez sur <Ctrl> et glissez pour faire une copie.%Press and drag to make a copy.trackContentObjectViewfAppuyez sur <Ctrl> pour un redimensionnement libre.Press for free resizing.trackContentObjectView0Actions pour cette pisteActions for this tracktrackOperationsWidget$Cloner cette pisteClone this tracktrackOperationsWidget CouperMutetrackOperationsWidget$Couper cette pisteMute this tracktrackOperationsWidgetAppuyez sur <Ctrl> en cliquant sur la poigne de dplacement pour commencer un nouveau glisser/dposer.KPress while clicking on move-grip to begin a new drag'n'drop-action.trackOperationsWidget*Supprimer cette pisteRemove this tracktrackOperationsWidgetJouer en soloSolotrackOperationsWidgetJLe chargement du greffon VST a chouFailed loading VST-pluginvestigeInstrument*Chargement du greffonLoading pluginvestigeInstrumenttVeuillez patienter pendant le chargement du greffon VST...'Please wait while loading VST-plugin...vestigeInstrumentJLe greffon VST %1 n'a pas pu tre charg pour une raison quelconque. S'il fonctionne avec d'autres logiciels VST sous Linux, merci de contacter un dveloppeur LMMS !The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer!vestigeInstrumentDsaccordage %1 Detune %1vibedFlou %1 Fuzziness %1 vibedImpulsion %1 Impulse %1vibedLongueur %1 Length %1vibedOctave %1 Octave %1vibedPanoramique %1Pan %1vibed(Position du micro %1Pick %1 positionvibed(Position du micro %1Pickup %1 positionvibed.Rigidit de la corde %1String %1 stiffnessvibed*Volume de la corde %1String %1 volumevibed Aid&e&Help vibedViewhCliquez ici pour activer/dsactiver la forme d'onde.&Click here to enable/disable waveform. vibedViewXCliquez ici pour normaliser la forme d'onde.!Click here to normalize waveform. vibedViewPCliquez ici pour lisser la forme d'onde.Click here to smooth waveform. vibedViewDetune :Detune: vibedView.Activer la forme d'ondeEnable waveform vibedView Flou : Fuzziness: vibedView&diteur d'impulsionImpulse Editor vibedView2Impulsion ou tat initialImpulse or initial state vibedViewLongueur :Length: vibedViewNormaliser Normalize vibedView OctaveOctave vibedViewPanoramique :Pan: vibedView$Point de contact :Pick position: vibedView Point d'coute :Pickup position: vibedView(Onde en dent de scieSaw wave vibedView Onde sinusodale Sine wave vibedView LisserSmooth vibedViewOnde carre Square wave vibedView CordeString vibedView,Rigidit de la corde :String stiffness: vibedViewRLe slecteur Imp dtermine si la forme d'onde dans le graphique doit tre traite comme une impulsion donne la corde par le contact ou l'tat initial de la corde.The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. vibedViewLe bouton P rgle l'endroit o la corde sera 'gratte'. Plus la valeur est faible, plus le point de contact sera proche du chevalet.The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. vibedViewDLe bouton PU rgle l'endroit o les vibrations de la corde choisie seront coutes. Plus la valeur est faible, plus le point d'coute sera proche du chevalet.The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. vibedViewxLe bouton S rgle la rigidit de la corde choisie. La rigidit de la corde affecte le temps pendant lequel la corde sonnera. Plus la valeur est faible, plus la corde sonnera longtemps.The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. vibedViewhLe bouton V rgle le volume de la corde choisie.4The 'V' knob sets the volume of the selected string. vibedView2Le bouton Detune modifie la hauteur de la corde choisie. Les valeurs ngatives produiront un son grave. Les valeurs positives produiront un son aigu.The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. vibedViewLe bouton Length rgle la longueur de la corde choisie. Les cordes les plus longues vibrent plus longtemps et sonnent plus brillament; cependant, elles consommeront galement plus de cycles du processeur.The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. vibedViewxLe slecteur Octave est utilis pour choisir l'harmonique de la note laquelle la corde sonnera. Par exemple, '-2' signifie que la corde sonnera deux octaves sous la fondamentale, 'F' signifie que la corde sonnera la fondamentale, et '6' signifie que la corde sonnera six octaves au-dessus de la fondamentale.#The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. vibedViewLe bouton Pan dtermine l'emplacement de la corde choisie dans le champ stro.PThe Pan knob determines the location of the selected string in the stereo field. vibedViewhLe bouton Slap ajoute un peu de flou la corde choisie, plus sensible pendant l'attauqe, bien qu'il puisse aussi tre utilis pour rendre le son de la corde plus 'mtallique'.The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. vibedView4Le slecteur String est utilis pour choisir la corde que les contrles sont en train d'diter. Un instrument Vibed peut contenir jusqu' neuf cordes vibrant indpendament. Le LED situ dans le coin en bas droite de l'diteur de forme indique si la corde choisie est utilise.The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. vibedViewL'diteur de forme d'onde permet de contrler l'tat initial ou l'impulsion qui sera utilis pour commencer faire vibrer la corde. Les boutons situs droite du graphique initialiseront la forme d'onde en fonction du type choisi. Le bouton ? chargera la forme d'onde partir d'un fichier - seuls les 128 premiers chantillons seront chargs. La forme d'onde peu galement tre dessine dans le graphique. Le bouton S lissera la forme d'onde. Le bouton N normalisera la forme d'onde.The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. vibedView"Onde triangulaire Triangle wave vibedViewnUtiliser une onde en dent de scie pour cet oscillateur.&Use a saw-wave for current oscillator. vibedViewfUtiliser une onde sinusodale pour cet oscillateur.'Use a sine-wave for current oscillator. vibedView\Utiliser une onde carre pour cet oscillateur.)Use a square-wave for current oscillator. vibedViewhUtiliser une onde triangulaire pour cet oscillateur.+Use a triangle-wave for current oscillator. vibedViewUtiliser une onde dfinie par l'utilisateur pour cet oscillateur.3Use a user-defined waveform for current oscillator. vibedViewZUtiliser un bruit blanc pour cet oscillateur.'Use white-noise for current oscillator. vibedView<Onde dfinie par l'utilisateurUser defined wave vibedViewVibed modlise jusqu' neuf cordes vibrant indpendament. Le slecteur Corde vous permet de choisir la corde diter. Le slecteur Imp choisi si le graphique reprsente une impulsion ou l'tat initial de la corde. Le slecteur Octave choisi quelle harmonique la corde devra vibrer. Le graphique vous permet de contrler l'tat initial ou l'impulsion utilise pour mettre la corde en mouvement. Le bouton V contrle le volume. Le bouton S contrle la rigidit de la corde. Le bouton P contrle le point de contact. Le bouton PU contrle le point d'coute. Pan et Dsaccorder n'ont heureusement pas besoin d'explications. Le bouton Slap ajoute un peu de flou au son de la corde. Le bouton Longueur contrle la longueur de la corde. Le LED situ dans le coin en bas droite de l'diteur de forme d'onde indique si la corde est utilis dans l'instrument.hVibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. vibedViewVolume :Volume: vibedViewBruit blancWhite noise wave vibedView(Cliquez pour activerClick to enablevisualizationWidgetCliquez pour activer/dsactiver la visualisation de la sortie gnrale6click to enable/disable visualization of master-outputvisualizationWidget*Attaque de la voix %1Voice %1 attack voiceObjectFDsaccordage grossier de la voix %1Voice %1 coarse detuning voiceObject,Descente de la voix %1Voice %1 decay voiceObjectVoix %1 filtreVoice %1 filtered voiceObjectBLargeur d'impulsion de la voix %1Voice %1 pulse width voiceObject2Relchement de la voix %1Voice %1 release voiceObjectFModulation en anneaux de la voix %1Voice %1 ring modulate voiceObject*Soutien de la voix %1Voice %1 sustain voiceObject:Synchronisation de la voix %1 Voice %1 sync voiceObject$Test de la voix %1 Voice %1 test voiceObject4Forme d'onde de la voix %1Voice %1 wave shape voiceObjectlmms-1.0.0+bzr2569/data/locale/fr.ts0000644000000000000000000077716012307165142015077 0ustar 00000000000000 AboutDialog About LMMS À propos de LMMS LMMS (Linux MultiMedia Studio) LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) Version %1 (%2/%3, Qt %4, %5) About À propos LMMS - easy music production for everyone LMMS - la production musicale à la portée de tous Authors Auteurs Translation Traduction Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou si vous souhaitez améliorer des traductions existantes, votre aide est la bienvenue ! Contactez simplement le mainteneur ! License Licence Copyright (c) 2004-2014, LMMS developers Copyright (c) 2004-2008, les développeurs de LMMS {2004-2010,?} {2004-2014,?} <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE PÉRIPHÉRIQUE CHANNELS CANAUX AudioFileProcessorView Open other sample Ouvrir un autre échantillon Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Cliquez ici si vous souhaitez ouvrir un autre fichier audio. Une boîte de dialogue dans laquelle vous pourrez choisir le fichier apparaîtra. Des réglages comme le mode de jeu en boucle, les marqueurs de début et de fin, la valeur d'amplication, et ainsi de suite ne sont pas réinitialisés. Par conséquent, il peut ne pas ressembler à l'échantillon original. Reverse sample Inverser l'échantillon If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Si vous activez ce bouton, l'échantillon complet est inversé. Ceci est utile pour certains effets, p. ex. une cymbale crash inversée. Loop sample at start- and end-point Jouer l'échantillon en boucle entre les marqueurs de début et de fin Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Ici vous pouvez indiquer si le mode de jeu en boucle est activé ou non. S'il est activé, AudioFileProcessor joue en boucle entre les marqueurs de début et de fin d'un échantillon jusqu'à ce que la note entière ait été jouée. Ceci est utile pour les échantillons de type corde ou chœur. Amplify: Amplifier : With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Avec ce bouton vous pouvez régler le facteur d'amplification. Lorsque vous indiquez une valeur de 100 % votre échantillon n'est pas changé. Sinon il sera plus ou moins amplifié (votre fichier d'échantillon n'est pas modifié !) Startpoint: Marqueur de début : With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Avec ce bouton vous pouvez placer le marqueur à partir duquel AudioFileProcessor devra commencer à jouer votre échantillon. Si vous activez le mode de jeu en boucle, c'est le marqueur auquel AudioFileProcessor reviendra lorsqu'une note sera plus longue que la portion de l'échantillon située entre les marqueurs de début et de fin. Endpoint: Marqueur de fin : With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Avec ce bouton vous pouvez placer le marqueur auquel AudioFileProcessor devra arrêter de jouer votre échantillon. Si vous activez le mode de jeu en boucle, c'est le marqueur à partir duquel AudioFileProcessor reviendra lorsqu'une note sera plus longue que la portion de l'échantillon située entre les marqueurs de début et de fin. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted Le client JACK a redémarré LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. LMMS a été rejeté par JACK pour une raison quelconque. Par conséquent le serveur de JACK a été redémarré. Vous devrez refaire les connexions manuellement. JACK server down Le serveur JACK est arrêté The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. Le serveur JACK semble avoir été arrêté et le démarrage d'une nouvelle instance a échoué. Par conséquent LMMS ne peut pas continuer. Vous devriez enregistrer votre projet puis redémarrer JACK et LMMS. AudioJack::setupWidget CLIENT-NAME NOM DU CLIENT CHANNELS CANAUX AudioOss::setupWidget DEVICE PÉRIPHÉRIQUE CHANNELS CANAUX AudioPortAudio::setupWidget BACKEND SERVEUR DEVICE PÉRIPHÉRIQUE AudioPulseAudio::setupWidget DEVICE PÉRIPHÉRIQUE CHANNELS CANAUX AudioSdl::setupWidget DEVICE PÉRIPHÉRIQUE AutomatableModel &Reset (%1%2) &Réinitialiser (%1%2) &Copy value (%1%2) &Copier la valeur (%1%2) &Paste value (%1%2) &Coller la valeur (%1%2) Edit song-global automation Éditer l'automation globale du morceau Connected to %1 Connecté à %1 Connected to controller Connecté au contrôleur Edit connection... Éditer la connexion... Remove connection Supprimer la connexion Connect to controller... Connecter le contrôleur... Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) Jouer/Mettre en pause le motif (Barre d'espace) Stop playing of current pattern (Space) Arrêter de jouer le motif (Barre d'espace) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Cliquez ici si vous souhaitez jouer le motif. Ceci est utile pendant son édition. Le motif est automatiquement rejoué lorsque sa fin est atteinte. Click here if you want to stop playing of the current pattern. Cliquez ici si vous souhaitez arrêter de jouer le motif. Draw mode (Shift+D) Mode dessin (Shift+D) Erase mode (Shift+E) Mode effacement (Shift+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. Cliquez ici et le mode dessin sera activé. Dans ce mode vous pourrez ajouter et déplacer des valeurs particulières. Ceci est le mode par défaut qui est utilisé la plupart du temps. Vous pouvez aussi appuyer sur les touches 'Shift+D' de votre clavier pour activer ce mode. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. Cliquez ici et le mode effacement sera activé. Dans ce mode vous pourrez effacer des valeurs particulières. Vous pouvez aussi appuyer sur les touches 'Shift+E' de votre clavier pour activer ce mode. Cut selected values (Ctrl+X) Couper les valeurs sélectionnées (Ctrl+X) Copy selected values (Ctrl+C) Copier les valeurs sélectionnées (Ctrl+C) Paste values from clipboard (Ctrl+V) Coller les valeurs sélectionnées (Ctrl+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Cliquez ici et les valeurs sélectionnées seront coupées et copiées dans le presse-papier. Vous pourrez les coller n'importe où dans n'importe quel motif en cliquant sur le bouton coller. Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Cliquez ici et les valeurs sélectionnées seront copiées dans le presse-papier. Vous pourrez les coller n'importe où dans n'importe quel motif en cliquant sur le bouton coller. Click here and the values from the clipboard will be pasted at the first visible measure. Cliquez ici et les valeurs se trouvant dans le presse-papier seront collées sur la première mesure visible. Automation Editor - no pattern Éditeur d'automation - pas de motif Automation Editor - %1 Éditeur d'automation - %1 Please open an automation pattern with the context menu of a control! Veuillez ouvrir un motif d'automation avec le menu contextuel d'un contrôle ! Values copied Les valeurs ont été copiées All selected values were copied to the clipboard. Toutes les valeurs ont été copiées dans le presse-papier. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> Déplacer un contrôle en appuyant sur <Ctrl> AutomationPatternView double-click to open this pattern in automation editor double-cliquer pour ouvrir ce motif dans l'éditeur d'automation Open in Automation editor Ouvrir dans l'éditeur d'automation Clear Effacer Reset name Réinitialiser le nom Change name Changer le nom %1 Connections %1 connexions Disconnect "%1" Déconnecter "%1" AutomationTrack Automation track Piste d'automation Controller Controller %1 Contrôleur %1 ControllerConnectionDialog Connection Settings Configuration de la connexion MIDI CONTROLLER CONTRÔLEUR MIDI Input channel Canal d'entrée CHANNEL CANAL Input controller Contrôleur d'entrée CONTROLLER CONTRÔLEUR Auto Detect Auto-détection MIDI-devices to receive MIDI-events from Périphériques MIDI desquels recevoir des évènements MIDI USER CONTROLLER CONTRÔLEUR UTILISATEUR MAPPING FUNCTION FONCTION DE MAPPAGE OK OK Cancel Annuler LMMS LMMS Cycle Detected. Un cycle a été détecté. ControllerRackView Controller Rack Rack d'effets Add Ajouter Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls Contrôles Controllers are able to automate the value of a knob, slider, and other controls. Les contrôleurs sont capables d'automatiser le réglage d'un bouton, d'un curseur et d'autres contrôles. Rename controller Renommer un contrôleur Enter the new name for this controller Entrez un nouveau nom pour ce contrôleur &Remove this plugin Supp&rimer ce greffon &Help Aid&e Effect Effect enabled Effet activé Wet/Dry mix Ratio Gate Seuil Decay Descente EffectChain Effects enabled Effets activés EffectRackView EFFECTS CHAIN CHAÎNE D'EFFETS Add effect Ajouter un effet EffectSelectDialog Add effect Ajouter un effet Plugin description Description du greffon EffectView Toggles the effect on or off. Active ou désactive l'effet. On/Off On/Off W/D W/D Wet Level: Niveau avec effet : The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. Le bouton « Wet/Dry » règle le rapport entre le signal d'entrée et le signal d'effet qui produit la sortie. DECAY DECAY Time: Durée : The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. Le bouton « Decay » contrôle le nombre de tampons de silence qui doivent s'écouler avant que le greffon arrête le traitement. Les valeurs faibles réduiront la charge du processeur mais feront courrir le risque de couper la fin sur des effets de délai et de réverbération. GATE GATE Gate: Gate : The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. Le bouton « Gate » contrôle le niveau du signal qui est considéré comme étant un 'silence' lorsque l'on doit décider d'arrêter le traitement des signaux. Controls Contrôles Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. Les greffons d'effet agissent comme une série d'effets enchaînés dans laquelle le signal sera traité du haut vers le bas. Le bouton « On/Off » vous permet de court-circuiter un greffon donné à n'importe quel moment. Le bouton « Mix Wet/Dry » contrôle l'équilibre entre le signal en entrée et le signal traité qui est le résultat en sortie de l'effet. L'entrée d'un étage est la sortie de l'étage précédent. De ce fait, l'importance du signal 'original' diminue au fur et à mesure de l'application des effets. Le bouton « Decay » contrôle le temps pendant lequel le signal continuera d'être traité après que les notes aient été relachées. L'effet arrêtera de traiter le signal lorsque le volume sera passé en dessous d'un seuil donné pendant une période de temps donnée. Ce bouton règle la 'période de temps donnée'. Les périodes longues nécessiteront plus de processeur, ce qui fait que ce nombre devrait être réglé assez bas pour la plupart des effets. Il a besoin d'être augmenté pour les effets qui produisent de longues périodes de silence, p. ex. les délais. Le bouton « Gate » contrôle le 'seuil donné' pour l'arrêt automatique de l'effet. L'horloge pour la 'période de temps donnée' démarrera dès que le niveau du signal traité passera sous le niveau spécifié avec ce bouton. Le bouton « Contrôles » ouvre un boîte de dialogue permettant de modifier la configuration de l'effet. Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l'ordre dans lequel les effets sont traités ou bien également supprimer un effet. Move &up Déplacer vers le ha&ut Move &down &Déplacer vers le bas &Remove this plugin Supp&rimer ce greffon &Help Aid&e EnvelopeAndLfoParameters Predelay Pré-délai Attack Attaque Hold Maintien Decay Descente Sustain Soutien Release Relâchement Modulation Modulation LFO Predelay Pré-délai du LFO LFO Attack Attaque du LFO LFO speed Vitesse du LFO LFO Modulation Modulation du LFO LFO Wave Shape Forme d'onde du LFO Freq x 100 Fréq x 100 Modulate Env-Amount Moduler le niveau de l'enveloppe EnvelopeAndLfoView DEL DEL Predelay: Pré-délai : Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. Utilisez ce bouton pour régler le pré-délai de l'enveloppe. Plus la valeur est importante, plus le temps sera long avant le début de l'enveloppe. ATT ATT Attack: Attaque : Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. Utilisez ce bouton pour régler le temps d'attaque de l'enveloppe. Plus la valeur est importante, plus l'enveloppe met du temps pour monter au niveau d'attaque. Choisissez une petite valeur pour des instruments comme le piano et une grande valeur pour les cordes. HOLD HOLD Hold: Maintien : Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. Utilisez ce bouton pour régler le temps de maintien de l'enveloppe. Plus la valeur est importante, plus l'enveloppe maintien longtemps le niveau d'attaque avant de commencer à descendre vers le niveau de soutien. DEC DEC Decay: Descente : Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. Utilisez ce bouton pour régler le temps de descente de l'enveloppe. Plus la valeur est importante, plus l'enveloppe met du temps pour descendre du niveau d'attaque au niveau de soutien. Choisissez une petite valeur pour des instruments comme le piano. SUST SUST Sustain: Soutien : Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. Utilisez ce bouton pour régler le niveau de soutien de l'enveloppe. Plus la valeur est importante, plus l'enveloppe reste longtemps à un niveau élevé avant de descendre à zéro. REL REL Release: Relâchement : Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. Utilisez ce bouton pour régler le temps de relâchement de l'enveloppe. Plus la valeur est importante, plus l'enveloppe met du temps pour descendre du niveau de soutien à zéro. Choisissez une grande valeur pour des instruments comme les cordes. AMT AMT Modulation amount: Niveau de modulation : Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. Utilisez ce bouton pour régler le niveau de modulation de l'enveloppe. Plus la valeur est importante, plus la composante correspondante (p. ex. volume ou fréquence de coupure) sera influencée par l'enveloppe. LFO predelay: Pré-délai du LFO : Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. Utilisez ce bouton pour régler le temps de pré-délai du LFO. Plus la valeur est importante, plus le LFO met du temps avant de commencer à osciller. LFO- attack: Attaque du LFO : Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. Utilisez ce bouton pour régler le temps d'attaque du LFO. Plus la valeur est importante, plus le LFO met du temps pour monter à son amplitude maximale. SPD SPD LFO speed: Vitesse du LFO : Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. Utilisez ce bouton pour régler la vitesse du LFO. Plus la valeur est importante, plus le LFO oscillera vite et plus votre effet sera rapide. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. Utilisez ce bouton pour régler le niveau de modulation du LFO. Plus la valeur est importante, plus la composante choisie (p. ex. volume ou fréquence de coupure) sera influencée par le LFO. Click here for a sine-wave. Cliquez ici pour une onde sinusoïdale. Click here for a triangle-wave. Cliquez ici pour une onde triangulaire. Click here for a saw-wave for current. Cliquez ici pour une onde en dent de scie. Click here for a square-wave. Cliquez ici pour une onde carrée. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. Cliquez ici pour une onde définie par l'utilisateur. Ensuite, faites glisser un fichier d'échantillon correspondant sur le graphique du LFO. FREQ x 100 FRÉQ x 100 Click here if the frequency of this LFO should be multiplied by 100. Cliquez ici si la fréquence de ce LFO doit être multipliée par 100. multiply LFO-frequency by 100 multiplier la fréquence du LFO par 100 MODULATE ENV-AMOUNT MODULER L'ENVELOPPE Click here to make the envelope-amount controlled by this LFO. Cliquez ici pour que le niveau de l'enveloppe soit contrôlé par ce LFO. control envelope-amount by this LFO Contrôler le niveau de l'enveloppe avec ce LFO ms/LFO: ms/LFO : Hint Astuce Drag a sample from somewhere and drop it in this window. Faites glisser un échantillon et déposez-le dans cette fenêtre. ExportProjectDialog Export project Exporter le projet Output Sortie File format: Format de fichier : Samplerate: Vitesse d'échantillonage : 44100 Hz 44100 Hz 48000 Hz 48000 Hz 88200 Hz 88200 Hz 96000 Hz 96000 Hz 192000 Hz 192000 Hz Bitrate: Débit : 64 KBit/s 64 kbit/s 128 KBit/s 128 kbit/s 160 KBit/s 160 kbit/s 192 KBit/s 192 kbit/s 256 KBit/s 256 kbit/s 320 KBit/s 320 kbit/s Depth: Profondeur : 16 Bit Integer Entier sur 16 bits 32 Bit Float Flottant sur 32 bits Please note that not all of the parameters above apply for all file formats. Veuillez noter que tous les paramètres ne s'appliquent pas à tous les formats. Quality settings Réglages de qualité Interpolation: Interpolation : Zero Order Hold Bloqueur d'ordre zéro Sinc Fastest Sync plus rapide Sinc Medium (recommended) Sync moyenne (Recommandée) Sinc Best (very slow!) Sync optimale (Trés lent !) Oversampling (use with care!): Suréchantillonage (Utiliser avec précaution !) : 1x (None) 1x (Aucun) 2x 2x 4x 4x 8x 8x Sample-exact controllers Contrôleurs d'échantillon exact Alias-free oscillators Oscillateurs sans alias Start Démarrer Cancel Annuler Export as loop (remove end silence) FxMixer Master Général FX %1 Effet %1 FxMixerView Rename FX channel Renommer le canal d'effet Enter the new name for this FX channel Entrer un nouveau nom pour ce canal d'effet FX-Mixer Mélangeur d'effets FX Fader %1 Curseur d'effet %1 Mute Couper Mute this FX channel Couper ce canal d'effet InstrumentFunctionArpeggio Arpeggio Arpège Arpeggio type Type d'arpège Arpeggio range Gamme d'arpège Arpeggio time Temps d'arpège Arpeggio gate Durée d'arpège Arpeggio direction Sens d'arpège Arpeggio mode Mode d'arpège Up Ascendant Down Descendant Up and down Ascendant et descendant Random Aléatoire Free Libre Sort Tri Sync InstrumentFunctionArpeggioView ARPEGGIO ARPÈGE An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. Un arpège est une façon de jouer des instruments (en particulier ceux à cordes pincées), qui rend la musique plus vivante. Les cordes de tels instruments (p. ex. les harpes) sont pincées comme des accords. La seule différence est que cela est fait de manière séquentielle, ce qui fait que les notes ne sont pas jouées en même temps. Les arpèges typiques sont des triades majeures ou mineures, mais il y a beaucoup d'autres accords possibles, vous pouvez choisr. RANGE GAMME Arpeggio range: Gamme d'arpège : octave(s) octave(s) Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. Utilisez ce bouton pour régler la gamme d'octaves de l'arpège. L'arpège sélectionné sera joué sur le nombre d'octaves choisi. TIME TEMPS Arpeggio time: Temps d'arpège : ms ms Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. Utilisez ce bouton pour régler le temps d'arpège en millisecondes. Le temps d'arpège indique la durée pendant laquelle chaque note de l'arpège sera joué. GATE Arpeggio gate: Durée d'arpège : % % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Utilisez ce bouton pour régler la durée d'arpège. La durée d'arpège indique le pourcentage d'une note complète de l'arpège qui sera joué. Avec ceci vous pouvez faire de beaux arpèges staccato. Chord: Direction: Sens : Mode: Mode : InstrumentFunctionNoteStacking octave octave Major Majeur Majb5 minor mineur minb5 sus2 sus4 aug augsus4 tri 6 6sus4 6add9 m6 m6add9 7 7sus4 7#5 7b5 7#9 7b9 7#5#9 7#5b9 7b5b9 7add11 7add13 7#11 Maj7 Maj7b5 Maj7#5 Maj7#11 Maj7add13 m7 m7b5 m7b9 m7add11 m7add13 m-Maj7 m-Maj7add11 m-Maj7add13 9 9sus4 add9 9#5 9b5 9#11 9b13 Maj9 Maj9sus4 Maj9#5 Maj9#11 m9 madd9 m9b5 m9-Maj7 11 11b9 Maj11 m11 m-Maj11 13 13#9 13b9 13b5b9 Maj13 m13 m-Maj13 Harmonic minor Mineure harmonique Melodic minor Mineure mélodique Whole tone Note complète Diminished Diminuée Major pentatonic Pentatonique majeur Minor pentatonic Pentatonique mineur Jap in sen Japonaise "in sen" Major bebop Bebop majeure Dominant bebop Bebop dominante Blues Blues Arabic Arabe Enigmatic Énigmatique Neopolitan Napolitaine Neopolitan minor Napolitaine mineure Hungarian minor Hongroise mineure Dorian Dorienne Phrygolydian Phrygo-Lydienne Lydian Lydienne Mixolydian Mixolydienne Aeolian Éolienne Locrian Locrienne Chords Accords Chord type Type d'accord Chord range Gamme d'accord Minor InstrumentFunctionNoteStackingView RANGE GAMME Chord range: Gamme d'accord : octave(s) octave(s) Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. Utilisez ce bouton pour régler la gamme d'accord en octaves. L'accord sélectionné sera joué sur le nombre d'octaves choisi. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT ACTIVER L'ENTRÉE MIDI CHANNEL CANAL VELOCITY VÉLOCITÉ ENABLE MIDI OUTPUT ACTIVER LA SORTIE MIDI PROGRAM PROGRAMME MIDI devices to receive MIDI events from Périphériques MIDI desquels recevoir des évènements MIDI MIDI devices to send MIDI events to Périphériques MIDI auxquels envoyer des évènements MIDI NOTE InstrumentSoundShaping VOLUME VOLUME Volume Volume CUTOFF COUPURE Cutoff frequency Fréquence de coupure RESO RÉSON Resonance Résonance Envelopes/LFOs Enveloppes/LFOs Filter type Type de filtre Q/Resonance Q/Résonance LowPass Passe-bas HiPass Passe-haut BandPass csg Passe-bande "csg" BandPass czpg Passe-bande "czpg" Notch Coupe-bande Allpass Passe-tout Moog Moog 2x LowPass Passe-bas x2 RC LowPass 12dB RC BandPass 12dB RC HighPass 12dB RC LowPass 24dB RC BandPass 24dB RC HighPass 24dB Vocal Formant Filter InstrumentSoundShapingView TARGET COMPOSANTE These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! Ces onglets contiennent des enveloppes. Elles sont très important pour la modification d'un son, dans le sens où elles sont presque toujours nécessaires pour la synsthèse soustractive. Par exemple si vous avez une enveloppe de volume, vous pouvez régler quand le son devra avoir un volume spécifique. Si vous souhaitez créer des cordes douces alors votre son doit commencer et se terminer très doucement. Ceci peut être obtenu en réglant des temps d'attaque et de descente longs. C'est la même chose pour les autres composantes comme le panoramique, la fréquence de coupure pour le filtre utilisé et ainsi de suite. Amusez-vous un peu avec ! Vous pouvez vraiment faire de beaux sons à partir d'une onde en dent de scie avec juste quelques enveloppes... ! FILTER FILTRE Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. Ici vous pouvez choisir le filtre intégré que vous souhaitez utiliser pour cette piste d'instrument. Les filtres sont très important pour la modification des caractéristiques d'un son. Hz Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... Utilisez ce bouton pour régler la fréquence de coupure du filtre choisi. La fréquence de coupure spécifie la fréquence à laquelle un filtre coupera le signal. Par exemple un filtre passe-bas coupera toutes les fréquences au-dessus de la fréquence de coupure. Un filtre passe-haut coupera toutes les fréquences en-dessous de la fréquence de coupure, et ainsi de suite... RESO RESO Resonance: Résonance : Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. Utilisez ce bouton pour régler la Q/Résonance pour le filtre choisi. La Q/Résonance indique au filtre dans quelle proportion il devra amplifier les fréquences proches de la fréquence de coupure. FREQ FRÉQ cutoff frequency: InstrumentTrack unnamed_track piste_sans_nom Volume Volume Panning Panoramique Pitch Tonalité FX channel Canal d'effet Default preset Préréglage par défaut With this knob you can set the volume of the opened channel. Avec ce bouton vous pouvez régler le volume du canal ouvert. Base note Note de base Pitch range InstrumentTrackView Volume Volume Volume: Volume : VOL VOL Panning Panoramique Panning: Panoramique : PAN PAN MIDI MIDI Input Entrée Output Sortie InstrumentTrackWindow GENERAL SETTINGS CONFIGURATION GÉNÉRALE Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. Cliquez ici si vous souhaitez enregistrer la configuration du canal dans un fichier de préréglage. Plus tard vous pourrez charger ce préréglage en double-cliquant sur son nom dans le sélecteur de préréglages. Instrument volume Volume de l'instrument Volume: Volume : VOL VOL Panning Panoramique Panning: Panoramique : PAN PAN Pitch Tonalité Pitch: Tonalité : cents centièmes PITCH PITCH FX channel Canal d'effet ENV/LFO ENV/LFO FUNC FONCTIONS FX EFFETS MIDI MIDI Save preset Enregistrer le préréglage XML preset file (*.xpf) Fichier XML de préréglage (*.xpf) PLUGIN GREFFON Save current channel settings in a preset-file Enregistrer la configuration du canal dans un fichier de préréglage Pitch range (semitones) RANGE GAMME LadspaControl Link channels Relier les canaux LadspaControlDialog Link Channels Lier les canaux Channel Canal LadspaControlView Link channels Lier les canaux Value: Valeur : Sorry, no help available. Désolé, l'aide n'est pas disponible. LadspaEffect Effect Effet Unknown LADSPA plugin %1 requested. Le greffon LDASPA %1 demandé est inconnu. LfoController LFO Controller Contrôleur du LFO Base value Valeur de base Oscillator speed Vitesse de l'oscillateur Oscillator amount Niveau de l'oscillateur Oscillator phase Phase de l'oscillateur Oscillator waveform Forme d'onde de l'oscillateur Frequency Multiplier Multiplicateur de fréquence LfoControllerDialog LFO LFO LFO Controller Contrôleur du LFO BASE BASE Base amount: Niveau de base : todo à faire SPD SPD LFO-speed: Vitesse du LFO : Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. Utilisez ce bouton pour régler la vitesse du LFO. Plus la valeur est importante, plus l'oscillateur LFO oscille vite et l'effet est rapide. AMT AMT Modulation amount: Niveau de modulation : Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. Utilisez ce bouton pour régler le niveau de modulation du LFO. Plus la valeur est important, plus le contrôle connecté (p. ex. volume ou fréquence de coupure) sera influencé par le LFO. PHS PHS Phase offset: Décalage de phase : degrees degrés With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Avec ce bouton vous pouvez régler le décalage de phase du LFO. Cela signifie que vous pouvez déplacer dans une oscillation le point où l'oscillateur commence à osciller. Par exemple si vous avez une onde sinusoïdale et un décalage de phase de 180 degrés l'onde commencera par descendre. C'est la même chose avec une onde carrée. Click here for a sine-wave. Cliquez ici pour une onde sinusoïdale. Click here for a triangle-wave. Cliquez ici pour une onde triangulaire. Click here for a saw-wave. Cliquez ici pour une onde en dent de scie. Click here for a square-wave. Cliquez ici pour une onde carrée. Click here for a a moog saw-wave. Cliquez ici pour une onde Moog en dent de scie. Click here for an exponential wave. Cliquez ici pour une onde exponentielle. Click here for white-noise. Cliquez ici pour un bruit blanc. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory Répertoire de travail The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. Le répertoire de travail %1 de LMMS n'existe pas. Souhaitez-vous le créer maintenant ? Vous pourrez changer le répertoire plus tard via Éditer -> Configuration. Could not save config-file Le fichier de configuration n'a pas pu être enregistré Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. Le fichier de configuration %1 n'a pas pu être écrit. Vous n'avez probablement pas le droit d'écrire dans ce fichier. Veuillez vérifier que vous avez les droits d'accès en écriture pour ce fichier et le répertoire qui contient ce fichier et réessayez. &Project &Projet &New &Nouveau &Open... &Ouvrir... Recently opened projects Projets ouverts récemment &Save &Enregistrer Save &As... Enregistrer &sous... Import... Importer... E&xport... E&xporter... &Quit &Quitter &Edit &Éditer Settings Configuration &Tools Ou&tils &Help Aid&e Online help Aide en ligne Help Aide What's this? Qu'est-ce que c'est ? About À propos Create new project Créer un nouveau projet Create new project from template Open existing project Ouvrir un projet existant Recently opened project Projets ouverts récemment Save current project Enregistrer le projet Export current project Exporter le projet Show/hide Song-Editor Montrer/Cacher l'éditeur de morceau By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. En appuyant sur ce bouton, vous pouvez montrer ou cacher l'éditeur de morceau. À l'aide de l'éditeur de morceau vous pouvez éditer la liste de lecture du morceau et indiquer quelle piste devra être jouée. Vous pouvez également insérer et déplacer des échantillons (p. ex. des échantillons de Rap) directement dans la liste de lecture. Show/hide Beat+Bassline Editor Montrer/Cacher l'éditeur de rythme et de ligne de basse By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. En appuyant sur ce bouton, vous pouvez montrer ou cacher l'éditeur de rythme et de ligne de basse. L'éditeur de rythme et de ligne de basse est nécessaire pour la création de rythmes, pour ouvrir, ajouter et supprimer des canaux, pour couper, copier et coller des motifs rythmiques, et pour d'autres choses similaires. Show/hide Piano-Roll Montrer/Cacher le piano virtuel Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. Cliquez ici pour montrer ou cacher le piano virtuel. À l'aide du piano virtuel vous pouvez éditer facilement des mélodies. Show/hide Automation Editor Montrer/Cacher l'éditeur d'automation Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Cliquez ici pour montrer ou cacher l'éditeur d'automation. À l'aide de l'éditeur d'automation vous pouvez éditer facilement des valeurs dynamiques. Show/hide FX Mixer Montrer/Cacher le mélangeur d'effets Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Cliquez ici pour montrer et cacher le mélangeur d'effets. Le mélangeur d'effet est un outil très puissant pour la gestion des effets de votre morceau. Vous pouvez insérer des effets dans différents canaux d'effets. Show/hide project notes Montrer/Cacher les notes du projet Click here to show or hide the project notes window. In this window you can put down your project notes. Cliquez ici pour montrer et cacher la fenêtre de notes du projet. Dans cette fenêtre vous pouvez inscrire les notes de votre projet. Show/hide controller rack Montrer/Cacher le rack de contrôleurs Untitled Sans titre LMMS %1 LMMS %1 Project not saved Projet non enregistré The current project was modified since last saving. Do you want to save it now? Ce projet à été modifié depuis son dernier enregistrement. Souhaitez-vous l'enregistrer maintenant ? Open project Ouvrir un projet Save project Enregistrer le projet Help not available L'aide n'est pas disponible Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. Il n'y a pour l'instant pas de d'aide dans LMMS. Veuillez visiter http://lmms.sf.net/wiki pour la documentation de LMMS. My projects Mes projets My samples Mes échantillons My presets Mes préréglages My home Mon dossier My computer Mon ordinateur Root directory Répertoire principal Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 Project recovery It looks like the last session did not end properly. Do you want to recover the project of this session? Configuration file Error while parsing configuration file at line %1:%2: %3 MeterDialog Meter Numerator Numérateur de la mesure Meter Denominator Dénominateur de la mesure TIME SIG SIGN RYTHM MeterModel Numerator Numérateur Denominator Dénominateur MidiAlsaRaw::setupWidget DEVICE PÉRIPHÉRIQUE MidiAlsaSeq::setupWidget DEVICE PÉRIPHÉRIQUE MidiController MIDI Controller Contrôleur MIDI unnamed_midi_controller contrôleur_midi_sans_nom MidiImport Setup incomplete Paramétrage incomplet You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. Vous n'avez pas choisi de SoundFont par défaut dans la boîte de dialogue de configuration (Éditer -> Configuration). Par conséquent aucun son ne sera joué lorsque vous aurez importé ce fichier MIDI. Vous devriez télécharger une Soundfont General MIDI, la référencer dans la configuration et réessayer. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. Vous n'avez pas compilé LMMS avec la prise en charge du lecteur SoundFont2, qui est utilisé pour ajouter un son par défaut aux fichiers MIDI importés. Par conséquent aucun son ne sera joué après l'importation de ce fichier MIDI. MidiOss::setupWidget DEVICE PÉRIPHÉRIQUE MidiPort Input channel Canal d'entrée Output channel Canal de sortie Input controller Contrôleur d'entrée Output controller Contrôleur de sortie Fixed input velocity Vélocité d'entrée fixe Fixed output velocity Vélocité de sortie fixe Output MIDI program Programme de sortie MIDI Receive MIDI-events Recevoir des évènements MIDI Send MIDI-events Envoyer des évènements MIDI Fixed output note OscillatorObject Osc %1 volume Volume de l'oscillateur %1 Osc %1 panning Panoramique de l'oscillateur %1 Osc %1 coarse detuning Désaccordage grossier de l'oscillateur %1 Osc %1 fine detuning left Désaccordage fin (gauche) de l'oscillateur %1 Osc %1 fine detuning right Désaccordage fin (droite) de l'oscillateur %1 Osc %1 phase-offset Décalage de phase de l'oscillateur %1 Osc %1 stereo phase-detuning Désaccordage stéréo de la phase de l'oscillateur %1 Osc %1 wave shape Forme d'onde de l'oscillateur %1 Modulation type %1 Modulation de type %1 Osc %1 waveform Forme d'onde de l'oscillateur %1 PatmanView Open other patch Ouvrir un autre son Click here to open another patch-file. Loop and Tune settings are not reset. Cliquez ici pour ouvrir un autre fichier de son. Les réglages de tonalité et d'accordage ne sont pas réinitialisés. Loop Rejouer Loop mode Mode de jeu en boucle Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. Ici vous pouvez permuter le mode de jeu en boucle. Si il est activé, PatMan utilisera les informations de jeu en boucle disponibles dans le fichier. Tune Accordage Tune mode Mode accordage Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. Ici vous pouvez permuter le mode d'accordage. Si il est activé, PatMan accordera l'échantillon pour en fonction de la fréquence de la note. No file selected Aucun fichier n'est sélectionné Open patch file Ouvrir un fichier de son Patch-Files (*.pat) Fichiers de son (*.pat) PeakController Peak Controller Contrôleur de crêtes Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK CRÊTE LFO Controller Contrôleur du LFO PeakControllerEffectControlDialog BASE BASE Base amount: Niveau de la base : Modulation amount: Niveau de modulation : Attack: Attaque : Release: Relâchement : AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Valeur de base Modulation amount Niveau de modulation Mute output Couper la sortie Attack Attaque Release Relâchement Abs Value Amount Multiplicator PianoView Base note Note de base Plugin Plugin not found Le greffon n'a pas été trouvé The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Le greffon "%1" n'a pas été trouvé ou n'a pas pu être chargé ! Raison : "%2" Error while loading plugin Une erreur est survenue pendant le chargement du greffon Failed to load plugin "%1"! Le chargement du greffon "%1" a échoué ! ProjectRenderer WAV-File (*.wav) Fichier WAV (*.wav) Compressed OGG-File (*.ogg) Fichier OGG compressé (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: Nom : Maker: Fabricant : Copyright: Copyright : Requires Real Time: Nécessite le temps réel : Yes Oui No Non Real Time Capable: Supporte le temps réel : In Place Broken: Cassé sur place : Channels In: Canaux d'entrée : Channels Out: Canaux de sorties : File: Fichier : SampleBuffer Open audio file Ouvrir un fichier audio All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Tous les fichiers audio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) Fichiers WAVE (*.wav) OGG-Files (*.ogg) Fichiers OGG (*.ogg) DrumSynth-Files (*.ds) Fichiers DrumSynth (*.ds) FLAC-Files (*.flac) Fichiers FLAC (*.flac) SPEEX-Files (*.spx) Fichiers SPEEX (*.spx) MP3-Files (*.mp3) Fichiers MP3 (*.mp3) VOC-Files (*.voc) Fichiers VOC (*.voc) AIFF-Files (*.aif *.aiff) Fichiers AIFF (*.aif *.aiff) AU-Files (*.au) Fichiers AU (*.au) RAW-Files (*.raw) Fichiers RAW (*.raw) SampleTCOView double-click to select sample Double-cliquez pour choisir un échantillon Delete (middle mousebutton) Cut Couper Copy Copier Paste Coller Mute/unmute (<Ctrl> + middle click) Couper/Jouer (<Ctrl> + clic-milieu) Set/clear record Régler/Effacer l'enregistrement SampleTrack Sample track Piste d'échantillon Volume Volume SampleTrackView Track volume Volume de la piste Channel volume: Volume du canal : VOL VOL TempoSyncKnob Tempo Sync Synchronisation du tempo No Sync Pas de synchronisation Eight beats Huit temps Whole note Note entière Half note Demi-note Quarter note Quart de note 8th note 8 ième de note 16th note 16 ième de note 32nd note 32 ième de note Custom... Personnalisé... &Help Aid&e Custom Personnalisé Synced to Eight Beats Synchronisé sur huit temps Synced to Whole Note Synchronisé sur note entière Synced to Half Note Synchronisé sur demi-note Synced to Quarter Note Synchronisé sur quart de note Synced to 8th Note Synchronisé sur 8 ième de note Synced to 16th Note Synchronisé sur 16 ième de note Synced to 32nd Note Synchronisé sur 32 ième de note TimeDisplayWidget click to change time units TrackContainer Couldn't import file Le fichier n'a pas pu être importé Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. Aucun filtre n'a pu être trouvé pour importer le fichier %1. Vous devriez convertir ce fichier dans un format pris en charge par LMMS en utilisant un autre logiciel. Couldn't open file Le fichier n'a pas pu être ouvert Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! Le fichier %1 n'a pas pu être ouvert en lecture. Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le répertoire qui contient ce fichier et réessayez ! Loading project... Chargement du projet... Cancel Annuler Please wait... Veuillez patienter... Importing MIDI-file... Importation du fichier MIDI... Importing FLP-file... Importation du fichier FLP... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Utiliser la modulation de phase pour moduler l'oscillateur 2 avec l'oscillateur 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 Utiliser la modulation d'amplitude pour moduler l'oscillateur 2 avec l'oscillateur 1 Mix output of oscillator 1 & 2 Mélanger la sortie des oscillateurs 1 et 2 Synchronize oscillator 1 with oscillator 2 Synchroniser l'oscillateur 1 avec l'oscillateur 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Utiliser la modulation de fréquence pour moduler l'oscillateur 2 avec l'oscillateur 1 Use phase modulation for modulating oscillator 3 with oscillator 2 Utiliser la modulation de phase pour moduler l'oscillateur 3 avec l'oscillateur 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 Utiliser la modulation d'amplitude pour moduler l'oscillateur 3 avec l'oscillateur 2 Mix output of oscillator 2 & 3 Mélanger la sortie des oscillateurs 2 et 3 Synchronize oscillator 2 with oscillator 3 Synchroniser l'oscillateur 2 avec l'oscillateur 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Utiliser la modulation de fréquence pour moduler l'oscillateur 3 avec l'oscillateur 2 Osc %1 volume: Volume de l'oscillateur %1 : With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Avec ce bouton vous pouvez régler le volume de l'oscillateur %1. Lorsque mettez la valeur 0 l'oscillateur est arrêté. Sinon vous pouvez entendre l'oscillateur aussi fort que vous l'avez réglé. Osc %1 panning: Panoramique de l'oscillateur %1 : With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Avec ce bouton vous pouvez régler le panoramique de l'oscillateur %1. Une valeur de -100 corespond à 100 % à gauche et une valeur de 100 déplace la sortie de l'oscillateur à droite. Osc %1 coarse detuning: Désaccordage grossier de l'oscillateur %1 : semitones demi-tons With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Avec ce bouton vous pouvez régler le désaccord grossier de l'oscillateur %1. Vous pouvez désaccorder l'oscillateur de 12 demi-tons (1 octave) vers le haut et vers le bas. Ceci est utile pour la création de sons avec un accord. Osc %1 fine detuning left: Désaccordage fin (gauche) de l'oscillateur %1 : cents centièmes With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Avec ce bouton vous pouvez régler le désaccord fin du canal gauche de l'oscillateur %1. Le désaccordage fin varie entre -100 centièmes et +100 centièmes. Ceci est utile pour la création de sons 'gras'. Osc %1 fine detuning right: Désaccordage fin (droite) de l'oscillateur %1 : With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Avec ce bouton vous pouvez régler le désaccord fin du canal droit de l'oscillateur %1. Le désaccordage fin varie entre -100 centièmes et +100 centièmes. Ceci est utile pour la création de sons 'gras'. Osc %1 phase-offset: Décalage de phase de l'oscillateur %1 : degrees degrés With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Avec ce bouton vous pouvez régler le décalage de phase de l'oscillateur %1. Cela signifie que vous pouvez déplacer dans une oscillation le point où l'oscillateur commence à osciller. Par exemple si vous avez une onde sinusoïdale et un décalage de phase de 180 degrés l'onde commencera par descendre. C'est la même chose avec une onde carrée. Osc %1 stereo phase-detuning: Désaccordage stéréo de la phase de l'oscillateur %1 : With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Avec ce bouton vous pouvez régler le désaccordage stéréo de la phase de l'oscillateur %1. Le désaccordage stéréo de la phase précise l'importance de la différence entre le décalage de phase du canal gauche et droit. Ceci est très bien pour la création de sons stéréo amples. Use a sine-wave for current oscillator. Utiliser une onde sinusoïdale pour cet oscillateur. Use a triangle-wave for current oscillator. Utiliser une onde triangulaire pour cet oscillateur. Use a saw-wave for current oscillator. Utiliser une onde en dent de scie pour cet oscillateur. Use a square-wave for current oscillator. Utiliser une onde carrée pour cet oscillateur. Use a moog-like saw-wave for current oscillator. Utiliser une onde en dent de scie de type Moog pour cet oscillateur. Use an exponential wave for current oscillator. Utiliser une onde exponentielle pour cet oscillateur. Use white-noise for current oscillator. Utiliser un bruit blanc pour cet oscillateur. Use a user-defined waveform for current oscillator. Utiliser une onde définie par l'utilisateur pour cet oscillateur. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin Ouvrir un autre greffon VST Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Cliquez ici si vous souhaitez ouvrir un autre greffon VST. Après avoir cliqué sur ce bouton, une boîte de dialogue d'ouverture de fichier apparaîtra et vous pourrez sélectionner votre fichier. Show/hide GUI Montrer/Cacher l'interface utilisateur graphique Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Cliquez ici pour montrer ou cacher l'interface utilisateur graphique de votre greffon VST. Turn off all notes Arrêter de jouer toutes les notes Open VST-plugin Ouvrir un greffon VST DLL-files (*.dll) Fichiers DLL (*.dll) EXE-files (*.exe) Fichiers EXE (*.exe) No VST-plugin loaded Aucun greffon VST n'a été chargé Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Save preset Enregistrer le préréglage Click here, if you want to save current VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Preset by - VST plugin control VstEffectControlDialog Show/hide Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Save preset Enregistrer le préréglage Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin Chargement du greffon Please wait while loading VST-plugin... Veuillez patienter pendant le chargement du greffon VST... Failed loading VST-plugin Le chargement du greffon VST a échoué The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Le greffon VST %1 n'a pas pu être chargé pour une raison quelconque. S'il fonctionne avec d'autres logiciels VST sous Linux, merci de contacter un développeur LMMS ! Open Preset Vst Plugin Preset (*.fxp *.fxb) : default " ' Save Preset .fxp .FXP .FXB .fxb ZynAddSubFxInstrument Portamento Filter Frequency Filter Resonance Bandwidth FM Gain Resonance Center Frequency Resonance Bandwidth Forward MIDI Control Change Events ZynAddSubFxView Show GUI Montrer l'interface utilisateur graphique Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Cliquez ici pour montrer ou cacher l'interface utilisateur graphique de ZynAddSubFX. Portamento: PORT Filter Frequency: FREQ FRÉQ Filter Resonance: RES RES Bandwidth: BW FM Gain: FM GAIN Resonance center frequency: RES CF Resonance bandwidth: RES BW Forward MIDI Control Changes audioFileProcessor Amplify Amplifier Start of sample Début de l'échantillon End of sample Fin de l'échantillon Reverse sample Inverser l'échantillon Loop Jouer en boucle Stutter bassBoosterControlDialog FREQ FRÉQ Frequency: Fréquence : GAIN GAIN Gain: Gain : RATIO RAPPORT Ratio: Rapport : bassBoosterControls Frequency Fréquence Gain Gain Ratio Rapport bbEditor Beat+Bassline Editor Éditeur de rythme et de ligne de basse Play/pause current beat/bassline (Space) Jouer/Mettre en pause le rythme ou la ligne de basse (Barre d'espace) Add beat/bassline Ajouter un ryhtme ou une ligne de basse Add automation-track Ajouter une piste d'automation Stop playback of current beat/bassline (Space) Arrêter de jouer le rythme ou la ligne de basse (Barre d'espace) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. Cliquez ici pour jouer le rythme ou la ligne de basse. Le rythme ou la ligne de basse est rejoué lorsque sa fin est atteinte. Click here to stop playing of current beat/bassline. Cliquez ici pour arrêter de jouer le rythme ou la ligne de basse. Remove steps Supprimer des pas Add steps Ajouter des pas bbTCOView Open in Beat+Bassline-Editor Ouvrir dans l'éditeur de rythme et de ligne de basse Reset name Réinitialiser le nom Change name Changer le nom Change color Changer la couleur bbTrack Beat/Bassline %1 Ryhtme ou ligne de basse %1 Clone of %1 bitInvader Samplelength Longueur de l'échantillon bitInvaderView Sample Length Longueur de l'échantillon Sine wave Onde sinusoïdale Triangle wave Onde triangulaire Saw wave Onde en dent de scie Square wave Onde carrée White noise wave Bruit blanc User defined wave Onde définie par l'utilisateur Smooth Lisser Click here to smooth waveform. Cliquez ici pour lisser la forme d'onde. Interpolation Interpolation Normalize Normaliser Draw your own waveform here by dragging your mouse on this graph. Dessinez ici votre propre forme d'onde en faisant glisser votre souris sur ce graphique. Click for a sine-wave. Cliquez ici pour une onde sinusoïdale. Click here for a triangle-wave. Cliquez ici pour une onde triangulaire. Click here for a saw-wave. Cliquez ici pour une onde en dent de scie. Click here for a square-wave. Cliquez ici pour une onde carrée. Click here for white-noise. Cliquez ici pour un bruit blanc. Click here for a user-defined shape. Cliquez ici pour une onde définie par l'utilisateur. exportProjectDialog Could not open file Le fichier n'a pas pu être ouvert Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! Le fichier %1 ne peut pas être ouvert en écriture. Veuillez vérifier que vous avez les droits d'accès en écriture pour ce fichier et le répertoire qui contient ce fichier et réessayez ! Error Erreur Error while determining file-encoder device. Please try to choose a different output format. Erreur pendant la détection du périphérique d'encodage du fichier. Veuillez essayer de choisir un format de sortie différent. Rendering: %1% Encodage : %1% Export project to %1 Exporter le projet vers %1 fader Please enter a new value between %1 and %2: Veuillez entrer un valeur entre %1 et %2 : fileBrowser Browser Explorateur fileBrowserTreeWidget Send to active instrument-track Envoyer vers la piste d'instrument actif Open in new instrument-track/Song-Editor Ouvrir dans une nouvelle piste d'instrument/Éditeur de morceau Open in new instrument-track/B+B Editor Ouvrir dans une nouvelle piste d'instrument/Éditeur de rythme et de ligne de basse Loading sample Chargement de l'échantillon Please wait, loading sample for preview... Veuillez patienter, chargement de l'échantillon pour un aperçu... --- Factory files --- --- Fichiers usine --- graphModel Graph Graphique kickerInstrument Start frequency Fréquence de début End frequency Fréquence de fin Decay Descente Distortion Distorsion Gain Gain kickerInstrumentView Start frequency: Fréquence de début : End frequency: Fréquence de fin : Decay: Descente : Distortion: Distorsion : Gain: Gain : knob &Help Aid&e Please enter a new value between -96.0 dBV and 6.0 dBV: Veuillez entrer un nouvelle valeur entre -96,0 dBV et 6,0 dBV : Please enter a new value between %1 and %2: Veuillez entrer un valeur entre %1 et %2 : ladspaBrowserView Available Effects Effets disponibles Unavailable Effects Effets indisponibles Instruments Instruments Analysis Tools Outils d'analyse Don't know Divers This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. Cette boîte de dialogue affiche des informations sur tous les greffons LADSPA que LMMS a pu localiser. Ces greffons sont répartis en cinq catégories en fonction de l'interprétation des types et des noms de port. Les « Effets disponibles » sont ceux qui peuvent être utilisés par LMMS. Pour que LMMS puisse utiliser un effet, il doit, tout d'abord, être un effet, ce qui revient à dire qu'il doit avoir à la fois des canaux d'entrée et de sortie. LMMS identifie un canal d'entrée comme un port audio contenant 'in' dans son nom. Les canaux de sortie sont identifiés par les lettres 'out'. De plus, l'effet doit avoir le même nombre d'entrée que de sorties et doit pouvoir fonctionner en temps réel. Les « Effets indisponibles » sont ceux qui ont été identifiés comme des effets, mais qui soit n'ont pas le même nombre de canaux d'entrée et de sortie, soit ne peuvent fonctionner en temps réel. Les « Instruments » sont des greffons pour lesquels seuls des canaux de sortie ont été identifiés. Les « Outils d'analyse » sont des greffons pour lesquels seuls des canaux d'entrée ont été identifiés. Les « Divers » sont des greffons pour lesquels aucun canaux d'entrée ou de sortie n'ont été identifiés. En double-cliquant sur ces greffons vous ferez apparaître des informations sur les ports. Type: Type : ladspaDescription Plugins Greffons Description Description ladspaPortDialog Ports Ports Name Nom Rate Vitesse Direction Sens Type Type Min < Default < Max Min < par défaut < Max Logarithmic Logarythmique SR Dependent Audio Audio Control Contrôle Input Entrée Output Sortie Toggled Permuté Integer Entier Float Flottant Yes Oui lb302Synth VCF Cutoff Frequency Fréquence de coupure du VCF VCF Resonance Résonance du VCF VCF Envelope Mod Modulation de l'enveloppe du VCF VCF Envelope Decay Descente de l'enveloppe du VCF Distortion Distorsion Waveform Forme d'onde Slide Decay Descente de la liaison Slide Liaison Accent Accent Dead Éteint 24dB/oct Filter Filtre 24 dB/oct lb302SynthView Cutoff Freq: Fréquence de coupure : Resonance: Résonance : Env Mod: Modulation de l'enveloppe : Decay: Descente : 303-es-que, 24dB/octave, 3 pole filter 303-esque, 24 dB/octave, filtre à 3 pôles Slide Decay: Descente de la liaison : DIST: DIST : Saw wave Onde en dent de scie Click here for a saw-wave. Cliquez ici pour une onde en dent de scie. Triangle wave Onde triangulaire Click here for a triangle-wave. Cliquez ici pour une onde triangulaire. Square wave Onde carrée Click here for a square-wave. Cliquez ici pour une onde carrée. Rounded square wave Onde carrée arrondie Click here for a square-wave with a rounded end. Cliquez ici pour une onde carrée avec une fin arrondie. Moog wave Onde Moog Click here for a moog-like wave. Cliquez ici pour une onde de type Moog. Sine wave Onde sinusoïdale Click for a sine-wave. Cliquez ici pour une onde sinusoïdale. White noise wave Bruit blanc Click here for an exponential wave. Cliquez ici pour une onde exponentielle. Click here for white-noise. Cliquez ici pour un bruit blanc. lb303Synth VCF Cutoff Frequency Fréquence de coupure du VCF VCF Resonance Résonance du VCF VCF Envelope Mod Modulation de l'enveloppe du VCF VCF Envelope Decay Descente de l'enveloppe du VCF Distortion Distorsion Waveform Forme d'onde Slide Decay Descente du glissement Slide Glissement Accent Accent Dead Éteint 24dB/oct Filter Filtre 24 dB/oct lb303SynthView Cutoff Freq: Fréquence de coupure : CUT CUT Resonance: Résonance : RES RES Env Mod: Modulation de l'enveloppe : ENV MOD ENV MOD Decay: Descente : DEC DEC 303-es-que, 24dB/octave, 3 pole filter 303-esque, 24 dB/octave, filtre à 3 pôles Slide Decay: Descente de la liaison : SLIDE SLIDE DIST: DIST : DIST DIST WAVE: WAVE : WAVE WAVE malletsInstrument Hardness Dureté Position Position Vibrato Gain Gain du vibrato Vibrato Freq Fréquence du vibrato Stick Mix Stick Mix Modulator Modulateur Crossfade Fondu enchainé LFO Speed Vitesse du LFO LFO Depth Profondeur du LFO ADSR ADSR Pressure Pression Motion Mouvement Speed Vitesse Bowed Courbé Spread Diffusion Marimba Marimba Vibraphone Vibraphone Agogo Agogo Wood1 Bois1 Reso Réso Wood2 Bois2 Beats Battements Two Fixed Deux fixes Clump Bruit lourd Tubular Bells Cloches tubulaires Uniform Bar Barre uniforme Tuned Bar Barre accordée Glass Verre Tibetan Bowl Bol tibétain Missing files Fichiers manquants Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! Votre installation de STK semble incomplète. Veuillez vous assurer que le paquet Stk complet est installé ! malletsInstrumentView Instrument Instrument Spread Diffusion Spread: Diffusion : Hardness Dureté Hardness: Dureté : Position Position Position: Position : Vib Gain Gain Vib Vib Gain: Gain Vib : Vib Freq Fréq Vib Vib Freq: Fréq Vib : Stick Mix Stick Mix Stick Mix: Stick Mix : Modulator Modulateur Modulator: Modulateur : Crossfade Fondu enchainé Crossfade: Fondu enchainé : LFO Speed Vitesse du LFO LFO Speed: Vitesse du LFO : LFO Depth Profondeur du LFO LFO Depth: Profondeur du LFO : ADSR ADSR ADSR: ADSR : Bowed Courbé Pressure Pression Pressure: Pression : Motion Mouvement Motion: Mouvement : Speed Vitesse Speed: Vitesse : Vibrato Vibrato Vibrato: Vibrato : manageVSTEffectView - VST parameter control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView - VST plugin control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help Aid&e opl2instrument Patch Son Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Distorsion Volume Volume organicInstrumentView Distortion: Distorsion : Volume: Volume : Randomise Randomiser Osc %1 waveform: Form d'onde de l'oscillateur %1 : Osc %1 volume: Volume de l'oscillateur %1 : Osc %1 panning: Panoramique de l'oscillateur %1 : Osc %1 fine detuning left: Désaccordage fin (gauche) de l'oscillateur %1 : cents centièmes papuInstrument Sweep time Temps de balayage Sweep direction Sens de balayage Sweep RtShift amount Niveau de décalage vers la droite du balayage Wave Pattern Duty Motif d'onde Channel 1 volume Volume du canal 1 Volume sweep direction Sens du volume du balayage Length of each step in sweep Longueur de chaque pas du balayage Channel 2 volume Volume du canal 2 Channel 3 volume Volume du canal 3 Channel 4 volume Volume du canal 4 Right Output level Niveau de sortie droite Left Output level Niveau de sortie gauche Channel 1 to SO2 (Left) Canal 1 vers SO2 (gauche) Channel 2 to SO2 (Left) Canal 2 vers SO2 (gauche) Channel 3 to SO2 (Left) Canal 3 vers SO2 (gauche) Channel 4 to SO2 (Left) Canal 4 vers SO2 (gauche) Channel 1 to SO1 (Right) Canal 1 vers SO2 (droite) Channel 2 to SO1 (Right) Canal 2 vers SO2 (droite) Channel 3 to SO1 (Right) Canal 3 vers SO2 (droite) Channel 4 to SO1 (Right) Canal 4 vers SO2 (droite) Treble Aigus Bass Graves Shift Register width Largeur du registre de décalage papuInstrumentView Sweep Time: Temps de balayage : Sweep Time Temps de balayage Sweep RtShift amount: Niveau de décalage vers la droite du balayage : Sweep RtShift amount Niveau de décalage vers la droite du balayage Wave pattern duty: Motif d'onde : Wave Pattern Duty Motif d'onde Square Channel 1 Volume: Volume du canal carré 1 : Length of each step in sweep: Longueur de chaque pas du balayage : Length of each step in sweep Longueur de chaque pas du balayage Wave pattern duty Motif d'onde Square Channel 2 Volume: Volume du canal carré 2 : Square Channel 2 Volume Volume du canal carré 2 Wave Channel Volume: Volume du canal onde : Wave Channel Volume Volume du canal onde Noise Channel Volume: Volume du canal bruit : Noise Channel Volume Volume du canal bruit SO1 Volume (Right): Volume SO1 (droite) : SO1 Volume (Right) Volume SO1 (droite) SO2 Volume (Left): Volume SO2 (droite) : SO2 Volume (Left) Volume SO2 (droite) Treble: Aigus : Treble Aigus Bass: Graves : Bass Graves Sweep Direction Sens de balayage Volume Sweep Direction Sens du volume du balayage Shift Register Width Largeur du registre de décalage Channel1 to SO1 (Right) Canal 1 vers SO1 (droite) Channel2 to SO1 (Right) Canal 2 vers SO1 (droite) Channel3 to SO1 (Right) Canal 3 vers SO1 (droite) Channel4 to SO1 (Right) Canal 4 vers SO1 (droite) Channel1 to SO2 (Left) Canal 1 vers SO2 (gauche) Channel2 to SO2 (Left) Canal 2 vers SO2 (gauche) Channel3 to SO2 (Left) Canal 3 vers SO2 (gauche) Channel4 to SO2 (Left) Canal 4 vers SO2 (gauche) Wave Pattern Motif d'onde The amount of increase or decrease in frequency Le niveau d'augmentation ou de diminution de la fréquence The rate at which increase or decrease in frequency occurs La vitesse à laquelle l'augmentation ou la diminution de la fréquence se produit The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Le cycle de travail est le rapport entre la durée (temps) pendant laquelle un signal est présent et la période totale du signal. Square Channel 1 Volume Volume du canal carré 1 The delay between step change Le délai entre chaque changement de pas Draw the wave here Dessinez votre onde ici pattern Cannot freeze pattern Le motif n'a pas pu être gelé The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! Le motif n'a pas pu être gelé car vous êtes en mode écoute. Veuillez arrêter de jouer le motif et recommencer ! patternFreezeStatusDialog Freezing pattern... Gel du motif... Cancel Annuler patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step double-cliquer pour ouvrir ce motif dans le piano virtuel utilisez la molette de la souris pour régler le volume d'un pas Open in piano-roll Ouvrir dans le piano virtuel Clear all notes Effacer toutes les notes Reset name Réinitialiser le nom Change name Changer le nom Refreeze Regeler Freeze Geler Unfreeze Dégeler Add steps Ajouter des pas Remove steps Supprimer des pas PianoRoll Play/pause current pattern (Space) Jouer/Mettre en pause le motif (Barre d'espace) Stop playing of current pattern (Space) Arrêter de jouer le motif (Barre d'espace) Cut selected notes (Ctrl+X) Couper les notes sélectionnées (Ctrl+X) Copy selected notes (Ctrl+C) Copier les notes sélectionnées (Ctrl+C) Paste notes from clipboard (Ctrl+V) Coller les notes se trouvant dans le presse-papier (Ctrl+V) Piano-Roll - no pattern Piano virtuel - pas de motif Piano-Roll - %1 Piano virtuel - %1 Please open a pattern by double-clicking on it! Veuillez ouvrir un motif en double-cliquant dessus ! Record notes from MIDI-device/channel-piano Enregistrez des notes à partir d'un périphérique MIDI ou d'un canal du piano Record notes from MIDI-device/channel-piano while playing song or BB track Enregistrez des notes à partir d'un périphérique MIDI ou d'un canal du piano pendant l'écoute d'un morceau ou bien d'une piste de rythme ou de ligne de basse Draw mode (Shift+D) Mode dessin (Shift+D) Erase mode (Shift+E) Mode effacement (Shift+E) Select mode (Shift+S) Mode sélection (Shift+S) Last note Dernière note Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Cliquez ici pour jouer le motif. Ceci est utile pendant son édition. Le motif est automatiquement rejoué lorsque sa fin est atteinte. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Cliquez ici pour enregistrer des notes à partir d'un périphérique MIDI ou du piano de test virtuel de la fenêtre correspondant au canal du motif. Lors de l'enregistrement toutes les notes seront écrites dans ce motif et vous pourrez ensuite les jouer et les éditer. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Cliquez ici pour enregistrer des notes à partir d'un périphérique MIDI ou du piano de test virtuel de la fenêtre correspondant au canal du motif. Lors de l'enregistrement toutes les notes seront écrites dans ce motif et vous entendrez le morceau ou bien le rythme ou la ligne de basse en fond sonore. Click here to stop playback of current pattern. Cliquez ici pour arrêter de jouer le motif. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Cliquez ici et les valeurs sélectionnées seront coupées et copiées dans le presse-papier. Vous pourrez les coller n'importe où dans n'importe quel motif en cliquant sur le bouton coller. Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Cliquez ici et les valeurs sélectionnées seront copiées dans le presse-papier. Vous pourrez les coller n'importe où dans n'importe quel motif en cliquant sur le bouton coller. Click here and the notes from the clipboard will be pasted at the first visible measure. Cliquez ici et les valeurs se trouvant dans le presse-papier seront collées sur la première mesure visible. Note lock Vérouiller la note Note Volume Volume de la note Note Panning Panoramique de la note Detune mode (Shift+T) Mode désaccordage (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Cliquez ici et le mode dessin sera activé. Dans ce mode vous pourrez ajouter, redimensionner et déplacer des notes. Ceci est le mode par défaut qui est utilisé la plupart du temps. Vous pouvez aussi appuyer sur les touches 'Shift+D' de votre clavier pour activer ce mode. Dans ce mode, appuyez sur Ctrl pour passer temporairement dans le mode sélection. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Cliquez ici et le mode effacement sera activé. Dans ce mode vous pourrez effacer des notes. Vous pouvez aussi appuyer sur les touches 'Shift+E' de votre clavier pour activer ce mode. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Cliquez ici et le mode sélection sera activé. Dans ce mode vous pourrez sélectionner des notes. Dans ce mode, appuyez appuyer sur Ctrl pour passer temporairement en mode dessin. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Cliquez ici et le mode désaccordage sera activé. Dans ce mode vous pourrer cliquer sur une note pour accéder à l'automation de son désaccordage. Vous pouvez utiliser ceci pour lier des notes entre-elles. Vous pouvez aussi appuyer sur les touches 'Shift+T' de votre clavier pour activer ce mode. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser no description pas de description Instrument plugins Greffons d'instrument Incomplete monophonic imitation tb303 Imitation incomplète de TB303 monophonique Plugin for freely manipulating stereo output Greffon pour la manipulation de la sortie stéréo Plugin for controlling knobs with sound peaks Greffon pour le contrôle les boutons avec des crêtes de son Plugin for enhancing stereo separation of a stereo input file Greffon pour l'amélioration de la séparation stéréo d'un fichier stéréo en entrée List installed LADSPA plugins Liste des greffons LADSPA installés three powerful oscillators you can modulate in several ways Trois puissants oscillateurs que vous pouvez moduler de plusieurs façons Filter for importing FL Studio projects into LMMS Filtre pour l'importation de projets Fruity Loops Studio dans LMMS versatile kick- & bassdrum-synthesizer Synthétiseur de kick et grosse caisse polyvalent GUS-compatible patch instrument Sons d'instruments compatibles avec la carte Gravis UltraSound (GUS) plugin for using arbitrary VST-effects inside LMMS. Greffon pour l'utilisation d'effets VST dans LMMS. Additive Synthesizer for organ-like sounds Synthétiseur additif pour sons d'orgue plugin for boosting bass Greffon pour l'augmentation des basses Tuneful things to bang on Instruments à frapper mélodieux simple sampler with various settings for using samples (e.g. drums) in an instrument-track Échantilloneur simple avec différents réglages pour l'utilisation d'échantillons (p. ex. batteries) dans une piste d'instrument VST-host for using VST(i)-plugins within LMMS Hôte VST pour l'utilisation de greffons VST(i) dans LMMS Vibrating string modeler Modeleur de corde vibrante plugin for using arbitrary LADSPA-effects inside LMMS. Greffon pour l'utilisation arbitraire d'effets LADSPA dans LMMS. Filter for importing MIDI-files into LMMS Filtre pour l'importation de fichiers MIDI dans LMMS Instrument browser Sélecteur d'instruments Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. Faites glisser un instrument dans l'éditeur de morceau, dans l'éditeur de rythme et de ligne de basse, ou dans une piste d'instrument existante. Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Émulateur des SID MOS6581 et MOS8580. Ce composant était utilisé dans l'ordinateur Commodore 64. Player for SoundFont files Lecteur de fichiers SoundFont Emulation of GameBoy (TM) APU Émulateur de l'APU de la GameBoy (TM) Customizable wavetable synthesizer Synthétiseur de table d'ondes personnalisables Embedded ZynAddSubFX ZynAddSubFX intégré 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Project notes Notes du projet Put down your project notes here. Ici vous pouvez prendre des notes concernant votre projet. Edit Actions Édition &Undo &Défaire Ctrl+Z &Redo &Refaire Ctrl+Y &Copy &Copier Ctrl+C Cu&t Cou&per Ctrl+X &Paste Co&ller Ctrl+V Format Actions Format &Bold Gr&as Ctrl+B &Italic &Italique Ctrl+I &Underline &Souligné Ctrl+U &Left &Gauche Ctrl+L C&enter C&entrer Ctrl+E &Right D&roite Ctrl+R &Justify &Justifier Ctrl+J &Color... C&ouleurs... renameDialog Rename... Renommer... setupDialog Setup LMMS Configuration de LMMS General settings Configuration générale BUFFER SIZE TAILLE DE LA MÉMOIRE TAMPON Reset to default-value Réinitialiser à la valeur par défaut MISC DIVERS Enable tooltips Activer les info-bulles Show restart warning after changing settings Afficher l'invitation à redémarrer après la modification de le configuration Display volume as dBV Afficher le volume en dBV Compress project files per default Compresser par défaut les fichiers de projet HQ-mode for output audio-device Périphérique de sortie audio en mode HQ LMMS working directory Répertoire de travail de LMMS VST-plugin directory Répertoire des greffons VST Artwork directory Répertoire des thèmes graphiques FL Studio installation directory Répertoire d'installation de Fruity Loops Studio STK rawwave directory Répertoire de STK Performance settings Configuration des performances UI effects vs. performance Effets graphique vs Perfomances Audio settings Configuration audio AUDIO INTERFACE INTERFACE AUDIO MIDI settings Configuration MIDI MIDI INTERFACE INTERFACE MIDI OK OK Cancel Annuler Restart LMMS Redémarrer LMMS Please note that most changes won't take effect until you restart LMMS! Veuillez noter que la plupart des modifications ne prendront pas effet tant n'aurez pas redémarré LMMS ! Frames: %1 Latency: %2 ms Trames : %1 Latence : %2 ms Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Ici vous pouvez régler la taille de la mémoire tampon interne utilisée par LMMS. Les valeurs faibles réduisent la latence mais peuvent aussi rendre le son inutilisable ou induire de mauvaises performances, en particulier sur des ordinateurs anciens ou des système sans noyau temps-réel. Choose LMMS working directory Choisissez le répertoire de travail de LMMS Choose your VST-plugin directory Choisissez le répertoire des greffons VST Choose artwork-theme directory Choisissez le répertoire des thèmes graphiques Choose FL Studio installation directory Choisissez le répertoire d'installation de Fruity Loops Studio Choose LADSPA plugin directory Choisissez le répertoire des greffons LADSPA Choose STK rawwave directory Choisissez le répertoire de STK Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Ici vous pouvez choisir l'interface audio que vous préférez. En fonction de la configuration de votre système au moment de la compilation, vous pouvez choisir entre ALSA, JACK, OSS et d'autres. Vous voyez ci-dessous une fenêtres contenant des contrôles pour régler l'interface audio choisie. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Ici vous pouvez choisir l'interface MIDI que vous préférez. En fonction de la configuration de votre système au moment de la compilation, vous pouvez choisir entre ALSA, JACK, OSS et d'autres. Vous voyez ci-dessous une fenêtres contenant des contrôles pour régler l'interface MIDI choisie. Paths Chemins d'accès LADSPA plugin paths Chemin d'accès aux greffons LADSPA Default Soundfont File Fichier SoundFont par défaut Background artwork Thème graphique d'arrière-plan Choose default SoundFont Choisissez la SoundFont par défaut Choose background artwork Choisissez le thème graphique d'arrière-plan One instrument track window mode Compact track buttons Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Smooth scroll in Song Editor Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Bank Banque Patch Son Gain Gain Reverb Réverbération Reverb Roomsize Réverbération (Salle) Reverb Damping Amortissement de la réverbération Reverb Width Largeur de la réverbération Reverb Level Niveau de la réverbération Chorus Chorus Chorus Lines Lignes de chorus Chorus Level Niveau de chorus Chorus Speed Vitesse de chorus Chorus Depth Profondeur de chorus sf2InstrumentView Open other SoundFont file Ouvrir un fichier SoundFont Click here to open another SF2 file Cliquez ici pour ouvrir un autre fichier SF2 Choose the patch Choisir un son Gain Gain Apply reverb (if supported) Appliquer la réverbération (si pris en charge) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. Ce bouton active l'effet réverbération. Ceci est utile pour de beaux effets, mais ne fonctionne que sur les fichier qui le prenne en charge. Reverb Roomsize: Réverbération (Salle) : Reverb Damping: Amortissement de la réverbération : Reverb Width: Largeur de la réverbération : Reverb Level: Niveau de la réverbération : Apply chorus (if supported) Appliquer le chorus (si pris en charge) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Ce bouton active l'effet chorus. Ceci est utile pour de beaux effets, mais ne fonctionne que sur les fichier qui le prenne en charge. Chorus Lines: Lignes de chorus : Chorus Level: Niveau de chorus : Chorus Speed: Vitesse de chorus : Chorus Depth: Profondeur de chorus : Open SoundFont file Ouvrir un fichier SoundFont SoundFont2 Files (*.sf2) Fichiers SoundFont2 (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Coupure Resonance Résonance Filter type Type de filtre Voice 3 off Voix 3 coupée Volume Volume Chip model Modèle de circuit sidInstrumentView Volume: Volume : Resonance: Résonance : Cutoff frequency: Fréquence de coupure : High-Pass filter Filtre passe-haut Band-Pass filter Filtre passe-bande Low-Pass filter Filtre passe-bas Voice3 Off Voix 3 coupée MOS6581 SID SID MOS6581 MOS8580 SID SID MOS8580 Attack: Attaque : Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. La vitesse d'attaque détermine la rapidité à laquelle la sortie de la Voix %1 passera de zéro à l'amplitude de crête. Decay: Descente : Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. La vitesse de descente détermine la rapidité à laquelle la vitesse la sortie passera de l'amplitude de crête au niveau de soutien choisi. Sustain: Soutien : Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. La sortie de la Voix %1 restera au niveau d'amplitude de soutien choisi tant que la note sera maintenu. Release: Relâchement : The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. La sortie de la Voix %1 descendra de l'amplitude de soutien à l'amplitude zéro à la vitesse de relâchement choisie. Pulse Width: Largeur d'impulsion : The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. La résolution de la largeur d'impulsion permet à la largeur d'être balayée doucement sans pas discernable. La forme d'onde de l'impulsion de l'oscillateur %1 doit être choisie pour n'avoir aucun effet audible. Coarse: Grossier : The Coarse detuning allows to detune Voice %1 one octave up or down. Le désaccordage grossier permet de désaccorder la Voix %1 d'une octave vers le haut ou vers le bas. Pulse Wave Onde d'impulsion Triangle Wave Onde triangulaire SawTooth Dent de scie Noise Bruit Sync Sync Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Sync synchronise la fréquence fondamentale de l'oscillateur %1 avec la fréquence fondamentale de l'oscillateur %2 en produisant des effets "Hard Sync". Ring-Mod Mode anneau Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. Le mode anneau remplace la sortie en forme d'onde triangulaire de l'oscillateur %1 par une combinaison "Modulée en anneau" des oscillateurs %1 et %2. Filtered Filtré When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Lorsque Filtré est activé, la Voix %1 sera traitée par le filtre. Lorsque Filtré est désactivé, la Voix %1 va directement en sortie, et le filtre n'a aucun effet sur elle. Test Test Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. Lorsqu'il est activé, Test réinitialise et vérouille l'oscillateur %1 à zéro jusqu'à ce que Test soit désactivé. song Tempo Master volume Volume général Master pitch Tonalité générale Project saved Le projet a été enregistré The project %1 is now saved. Le projet %1 est maintenant enregistré. Project NOT saved. Projet NON enregistré. The project %1 was not saved! Le projet %1 n'a pas été enregistré ! Import file Importer un fichier untitled sans titre Select file for project-export... Sélectionnez un fichier vers lequel exporter le projet... Empty project Le projet est vide This project is empty so exporting makes no sense. Please put some items into Song Editor first! L'exportation n'a pas de sens car ce projet est vide. Veuillez d'abord mettre quelques éléments dans l'éditeur de morceau ! MIDI sequences Séquences MIDI FL Studio projects Projets Fruity Loops Studio All file types Tous les types de fichier Hydrogen projects Select directory for writing exported tracks... SongEditor Song-Editor Éditeur de morceau Play song (Space) Jouer le morceau (Barre d'espace) Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. Cliquez ici si vous souhaitez jouer le morceau en entier. L'écoute commencera à partir du marquer (vert) de position dans le morceau. Vous pouvez aussi déplacer ce curseur pendant l'écoute. Stop song (Space) Arrêter de jouer le morceau (Barre d'espace) Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. Cliquez ici si vous souhaitez ne plus jouer le morceau. Le curseur de position sera placé au début du morceau. Add beat/bassline Ajouter une piste de rythme ou de ligne de basse Add sample-track Ajouter une piste d'échantillon Could not open file Le fichier n'a pas pu être ouvert Could not write file Le fichier n'a pas pu être écrit Add automation-track Ajouter une piste d'automation Draw mode Mode dessin Edit mode (select and move) Mode édition (Sélectionner et déplacer) Record samples from Audio-device Enregistrer des échantillons à partir d'un périphérique audio Record samples from Audio-device while playing song or BB track Enregistrer des échantillons à partir d'un périphérique audio pendant l'écoute d'un morceau ou bien d'un rythme ou d'une ligne de basse Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Le fichier %1 n'a pas pu être ouvert. Vos n'avez probablement pas le droit de lire ce fichier. Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le répertoire qui contient ce fichier et réessayez. Error in file Il y a une ou plusieurs erreurs dans le fichier The file %1 seems to contain errors and therefore can't be loaded. Le fichier %1 semble contenir des erreurs et ne peut donc pas être chargés. Tempo Tempo TEMPO/BPM TEMPO/BPM tempo of song tempo du morceau The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). Le tempo de ce morceau est spécifié en battements par minute (BPM). Si vous souhaitez changer le tempo de votre morceau, modifiez cette valeur. Chaque mesure à quatre battements, ce qui fait que le tempo en BPM indique le nombre de mesures / 4 qui doivent être jouées dans une minute (ou le nombre de mesures qui doivent être jouées en quatre minutes). High quality mode Mode haute qualité Master volume Volume général master volume volume général Master pitch Tonalité générale master pitch tonalité générale Value: %1% Valeur : %1% Value: %1 semitones Valeur : %1 demi-tons Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Spectre linéaire Linear Y axis Axe Y linéaire spectrumAnalyzerControls Linear spectrum Spectre linéaire Linear Y-axis Axe Y linéaire Channel mode Mode du canal stereoEnhancerControlDialog WIDE AMPL Width: Ampleur : stereoEnhancerControls Width Ampleur stereoMatrixControlDialog Left to Left Vol: Volume de gauche à gauche : Left to Right Vol: Volume de gauche à droite : Right to Left Vol: Volume de droite à gauche : Right to Right Vol: Volume de droite à droite : stereoMatrixControls Left to Left Gauche à gauche Left to Right Gauche à droite Right to Left Droite à gauche Right to Right Droite à droite timeLine Enable/disable auto-scrolling Activer/Désactiver l'auto-défilement Enable/disable loop-points Activer/Désactiver les marqueurs de jeu en boucle After stopping go back to begin Revenir au début après l'arrêt After stopping go back to position at which playing was started Revenir à la position de départ après l'arrêt After stopping keep position Ne rien faire après l'arrêt Hint Astuce Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted Coupée Solo Jouée en solo trackContentObject Muted Coupée trackContentObjectView Current position Position Hint Astuce Press <Ctrl> and drag to make a copy. Appuyez sur <Ctrl> et glissez pour faire une copie. Current length Longueur Press <Ctrl> for free resizing. Appuyez sur <Ctrl> pour un redimensionnement libre. %1:%2 (%3:%4 to %5:%6) %1:%2 (%3:%4 vers %5:%6) Delete (middle mousebutton) Supprimer (bouton du milieu de la souris) Cut Couper Copy Copier Paste Coller Mute/unmute (<Ctrl> + middle click) Couper/Jouer (<Ctrl> + clic-milieu) trackOperationsWidget Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Appuyez sur <Ctrl> en cliquant sur la poignée de déplacement pour commencer un nouveau glisser/déposer. Actions for this track Actions pour cette piste Mute Couper Mute this track Couper cette piste Solo Jouer en solo Clone this track Cloner cette piste Remove this track Supprimer cette piste vestigeInstrument Loading plugin Chargement du greffon Please wait while loading VST-plugin... Veuillez patienter pendant le chargement du greffon VST... Failed loading VST-plugin Le chargement du greffon VST a échoué The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Le greffon VST %1 n'a pas pu être chargé pour une raison quelconque. S'il fonctionne avec d'autres logiciels VST sous Linux, merci de contacter un développeur LMMS ! vibed String %1 volume Volume de la corde %1 String %1 stiffness Rigidité de la corde %1 Pick %1 position Position du micro %1 Pickup %1 position Position du micro %1 Pan %1 Panoramique %1 Detune %1 Désaccordage %1 Fuzziness %1 Flou %1 Length %1 Longueur %1 Impulse %1 Impulsion %1 Octave %1 Octave %1 vibedView Volume: Volume : The 'V' knob sets the volume of the selected string. Le bouton « V » règle le volume de la corde choisie. String stiffness: Rigidité de la corde : The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. Le bouton « S » règle la rigidité de la corde choisie. La rigidité de la corde affecte le temps pendant lequel la corde sonnera. Plus la valeur est faible, plus la corde sonnera longtemps. Pick position: Point de contact : The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. Le bouton « P » règle l'endroit où la corde sera 'grattée'. Plus la valeur est faible, plus le point de contact sera proche du chevalet. Pickup position: Point d'écoute : The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. Le bouton « PU » règle l'endroit où les vibrations de la corde choisie seront écoutées. Plus la valeur est faible, plus le point d'écoute sera proche du chevalet. Pan: Panoramique : The Pan knob determines the location of the selected string in the stereo field. Le bouton « Pan » détermine l'emplacement de la corde choisie dans le champ stéréo. Detune: Detune : The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. Le bouton « Detune » modifie la hauteur de la corde choisie. Les valeurs négatives produiront un son grave. Les valeurs positives produiront un son aigu. Fuzziness: Flou : The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. Le bouton « Slap » ajoute un peu de flou à la corde choisie, plus sensible pendant l'attauqe, bien qu'il puisse aussi être utilisé pour rendre le son de la corde plus 'métallique'. Length: Longueur : The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. Le bouton « Length » règle la longueur de la corde choisie. Les cordes les plus longues vibrent plus longtemps et sonnent plus brillament; cependant, elles consommeront également plus de cycles du processeur. Impulse or initial state Impulsion ou état initial The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. Le sélecteur « Imp » détermine si la forme d'onde dans le graphique doit être traitée comme une impulsion donnée à la corde par le contact ou l'état initial de la corde. Octave Octave The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. Le sélecteur « Octave » est utilisé pour choisir l'harmonique de la note à laquelle la corde sonnera. Par exemple, '-2' signifie que la corde sonnera deux octaves sous la fondamentale, 'F' signifie que la corde sonnera à la fondamentale, et '6' signifie que la corde sonnera six octaves au-dessus de la fondamentale. Impulse Editor Éditeur d'impulsion The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. L'éditeur de forme d'onde permet de contrôler l'état initial ou l'impulsion qui sera utilisé pour commencer à faire vibrer la corde. Les boutons situés à droite du graphique initialiseront la forme d'onde en fonction du type choisi. Le bouton « ? » chargera la forme d'onde à partir d'un fichier - seuls les 128 premiers échantillons seront chargés. La forme d'onde peu également être dessinée dans le graphique. Le bouton « S » lissera la forme d'onde. Le bouton « N » normalisera la forme d'onde. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Vibed modélise jusqu'à neuf cordes vibrant indépendament. Le sélecteur « Corde » vous permet de choisir la corde à éditer. Le sélecteur « Imp » choisi si le graphique représente une impulsion ou l'état initial de la corde. Le sélecteur « Octave » choisi à quelle harmonique la corde devra vibrer. Le graphique vous permet de contrôler l'état initial ou l'impulsion utilisée pour mettre la corde en mouvement. Le bouton « V » contrôle le volume. Le bouton « S » contrôle la rigidité de la corde. Le bouton « P » contrôle le point de contact. Le bouton « PU » contrôle le point d'écoute. « Pan » et « Désaccorder » n'ont heureusement pas besoin d'explications. Le bouton « Slap » ajoute un peu de flou au son de la corde. Le bouton « Longueur » contrôle la longueur de la corde. Le LED situé dans le coin en bas à droite de l'éditeur de forme d'onde indique si la corde est utilisé dans l'instrument. Enable waveform Activer la forme d'onde Click here to enable/disable waveform. Cliquez ici pour activer/désactiver la forme d'onde. String Corde The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. Le sélecteur « String » est utilisé pour choisir la corde que les contrôles sont en train d'éditer. Un instrument Vibed peut contenir jusqu'à neuf cordes vibrant indépendament. Le LED situé dans le coin en bas à droite de l'éditeur de forme indique si la corde choisie est utilisée. Sine wave Onde sinusoïdale Triangle wave Onde triangulaire Saw wave Onde en dent de scie Square wave Onde carrée White noise wave Bruit blanc User defined wave Onde définie par l'utilisateur Smooth Lisser Click here to smooth waveform. Cliquez ici pour lisser la forme d'onde. Normalize Normaliser Click here to normalize waveform. Cliquez ici pour normaliser la forme d'onde. &Help Aid&e Use a sine-wave for current oscillator. Utiliser une onde sinusoïdale pour cet oscillateur. Use a triangle-wave for current oscillator. Utiliser une onde triangulaire pour cet oscillateur. Use a saw-wave for current oscillator. Utiliser une onde en dent de scie pour cet oscillateur. Use a square-wave for current oscillator. Utiliser une onde carrée pour cet oscillateur. Use white-noise for current oscillator. Utiliser un bruit blanc pour cet oscillateur. Use a user-defined waveform for current oscillator. Utiliser une onde définie par l'utilisateur pour cet oscillateur. visualizationWidget click to enable/disable visualization of master-output Cliquez pour activer/désactiver la visualisation de la sortie générale Click to enable Cliquez pour activer voiceObject Voice %1 pulse width Largeur d'impulsion de la voix %1 Voice %1 attack Attaque de la voix %1 Voice %1 decay Descente de la voix %1 Voice %1 sustain Soutien de la voix %1 Voice %1 release Relâchement de la voix %1 Voice %1 coarse detuning Désaccordage grossier de la voix %1 Voice %1 wave shape Forme d'onde de la voix %1 Voice %1 sync Synchronisation de la voix %1 Voice %1 ring modulate Modulation en anneaux de la voix %1 Voice %1 filtered Voix %1 filtrée Voice %1 test Test de la voix %1 lmms-1.0.0+bzr2569/data/locale/gl.qm0000644000000000000000000061553612214703656015064 0ustar 00000000000000=USA=YS?UTF$F$F$?6FGjbH%HH{HUHHJ<JPLT^T^STVVV&VúXDHXD+Z4[<<[<l[<@_Ib_h]lpA^pC^{aNEiPGYP}IYQ%AQATCTbY%Ygfufu@K\=(§y<y25Bt]tXO#_']cVإnuصN0KT!TT$#gsV36`;6`7X7YFWH5I[?LÊL<hjj)x8//qxCCuE=ewį$zy]? U` Y`AU`badajLf #}1]#}3](V*$0>*y0**0k*0p*0*0I*0?*0ׁ*0++1W+1+++į2p/N3y4ʩ5f36u9giRQ9kYR93J:doddS@dT@T^E h:EZΝF|GGG@GWHjHiq[Hi@HŌHHzHzH I;ULImImJ'syJ+MJ<@JmJJJTKLb&M5MMM|N(ƜNh"Obz^PWPWS}AXpS}CXSUZ^SbZSO1T.VJTZLTOTʴTʴTxUQ3U`pUj'VbVbbVhV^ V><VVW@W UW WiWyWX X )XZ/Z/ZkbZk3ZZ5ZoZo[[j\]6 =c]8^eq̞^erc^~cNuiųqiųsiųszy`tUatba8v=4|}P|}؀}UM~#Wo;E;_JϙI^f}>rv%QCuee~NaT7`)c7TiyEy_ק1_ק3_@QOnFfXJ b be _  C>/N+++un"R/V2J7"7on9}b95;n(G; -=o@1xC@۴$CFz8FzHJ JгMUTOXOXjP0\VZ;`Z;h`1xaU68m[p>,w806z; nN~o>uXt]Ʉy9=ʭi17(_ՙծh\8l=[<^lߺooa ;CBhA t|\];D/h48JTZa36  :(^{(^()u,´>o.4Nm: Ro_/bb9r%]tNxżi9C@%K78n4C@7DG.GߦG~GV ?-?{))g))@11f3M (69>z>]> ѻ GȼҩBһB˳f'| t>?fg~E5-s}ssN5uDN=%bXuI`% :2Q1 3u47`8Ji8^:)-9?+@CB'HH>I[YPOX$P~LP~SkCWa7Z.X ]r]Y6] _l>Ulhʨloux+xz(|ZR|Z}"7}X}Y~~ŐH DZĩU R$E#W#kyM.ݫ>܃N[x5|*)j#WA~3~WMĽ1'P&ϯ&ѫI-6Ez6~קARקCSN քbܗjS4D왞269gB< =sչJKM$ֹMtMк,PJMPJPJQq.|%Qq.`C`i`%`%c=0d Zg5Ih#i{?ujztXkJl rJw~e>wwwxYZmFyT,yTz{ Zq}Fb96 N#xUOuu-u.\u.u/:u'Lu'u/2 A{VIfIIwIBaI hVi\mZqq 233D3w3344C4v4 4 5,o"BBqzjϚBxk~Vˤž ;ՔBYEWͥ2F2@J(G5غؽq`eAhc@%fnbDK#PC;_QdC1V6g t1\ u u @elKnT?Ύ(k$0J%))|-UU153:7eY7eZ7UY8?~X?EzF^ȀF^ҢH8HUPe:Q1=QQDUZ\C._aEa*vfQhh934h;lXlJlLps OvA B xy`}o.CAAkҳK]|* ̂^>Fcw2FcIRE<jѽNqfNfzvtɡtԼGtt%nÞf%%zo^AU!Z;JEU>Z2<5<5<5m<5<5?<5ksߺD}lj7EZCN3^1 ^ESEىEKiwxw4#ECJ'v<+pZ1UU|1^P6{0t:gNt6:[?[@VC*dC*RC*C*s3GkOM9.N9Q)zWjYWd. Z+S[l[q"lH8l{mBD1rgw ) z';(PPPi:":l-~#xFi;.Ⱦ.)93575h.>42O[Y7o;o(7^2%)5RY2ޔrvTstiB>֡tz/ƛ7^qWr_g ŮkK An zy_NN))M hdYkB\r!E!Ey!Ez&rz' )' ) (')*Gc,DZ%? ~!C'wI UIIuUIZah[t3\X.Hacv<czQvhF\3hJVjiANi)m.wjy %ky %B  j>L@j/>T2e2]1d/TZ5A잂Σ2)D2g0#'%S  ~: U6ٚ$Ϟ-II- )8N; *! .5nڐ 3': 6EA 8e 8eE 9J 9g GY ItY` Id Mg OW T YAN Yso hI.V3 hI. k l8 p,L prO w%- w%Cu xe |b >` >߆ 1T 2 N B1| B1) ^ ` ` 9ɺ g3 0> nC  FG wy Kn p k ~  8 UUJ, uI R! U_8 1 J N F u s ~f ·~7t *eL ʧd ʵJd ˔21  J\F Dn N ؋T ہ< DK-y 0 * _    d I9Fe ".# $ r$ 'm )x/ +K - 3' NH Om S'Jh STn{X STn \T \% ]9 ` eEZ m  m  m  m ׹ s T u: G  $n  0 Dg ?i }l Nk6 Np Jy V hm 2? 2 8A Ɵ\ Ƶ8n ^E 4 ӗ`G Ӱ غ <V < eG S Y: Y:- Y:@ ~ iY  jH ! B . .p . .8 ʓfY 2 " "Z $&yFt +  + Aq + r -#i -n -Z 5ݙ L c.c c.c, c.c- c.c. c= c$ d̥N d̥F d̥} t |`I )J  d [ K U U" { {u  l C s5 H ^  :D y_ [ Ɉ[ 8 & ޖG 9R 9.  鼣Y\ ]o $  +Y Zzu  5 re .˙[ 0 < 0  0  0  @uM\ @uy @u Zac \ ao bS#U c c cڰ c~ c fb l8i |.| z - }NY ` S"T    ; 1^O 3^ .Y .޽ fc  0^ ɶ.u[ Q "' Չ9Kr Չ93 3YR )> d 7 /^XT /^ EprWI3 ^ pURW&f;n~yi/y9;p-!z&ʮ1 1 2M|9uS;}<)B>ZGPHQ>Y]ad^cgjnEdyAOp:1N$)?o<[8`9W`9Șh5WazbPl^(oNH | |[|L,6"d$e( )3z7W4?ICgD>uDE*I+JiJiU&wXҾZ [x*k[^ E'` \eR͉eR+iI m4pڸ y?1**?7K! Z¥I/wLp2ƳW ~~+Ixܹ/i= SobreAbout AboutDialogSobre o LMMS About LMMS AboutDialogAutoresAuthors AboutDialogCopyright (c) 2004-2009, os desenvolvedores do LMMS {2004-2013,?}(Copyright (c) 2004-2013, LMMS developers AboutDialogEste idioma non est traducido (ou ingls nativo). Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducins existentes, sntase vontade axudndonos! Simplemente contacte co mantedor!Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! AboutDialogDLMMS (Estudio Multimedia de Linux)LMMS (Linux MultiMedia Studio) AboutDialogXLMMS - producin musical fcil para calquera)LMMS - easy music production for everyone AboutDialogLicenzaLicense AboutDialogTraducin Translation AboutDialog:Versin %1 (%2/%3, Qt %4, %5)Version %1 (%2/%3, Qt %4, %5) AboutDialog ArpexoArpeggio Arpeggiator&Direccin do arpexoArpeggio direction ArpeggiatorPorta do arpexo Arpeggio gate ArpeggiatorModo do arpexo Arpeggio mode Arpeggiator&Intervalo do arpexoArpeggio range ArpeggiatorTempo do arpexo Arpeggio time ArpeggiatorTipo de arpexo Arpeggio type Arpeggiator AbaixoDown Arpeggiator LibreFree ArpeggiatorAleatorioRandom ArpeggiatorOrdenarSort ArpeggiatorSincronizarSync Arpeggiator ArribaUp ArpeggiatorArriba e abaixo Up and down Arpeggiator%%ArpeggiatorView ARPEXOARPEGGIOArpeggiatorView<Un arpexo unha tcnica de tocar instrumentos (especialmente de corda), que fai que a msica sexa mis viva. As cordas deses instrumentos (harpas, por exemplo), plsanse como acordes. A nica diferenza que se fai de maneira secuencial, polo que as notas non se tocan todas ao mesmo tempo. Os arpexos tpicos son tradas maiores ou menores, anda que existen moitos outros acordes posbeis que se poden escoller.An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select.ArpeggiatorView Porta do arpexo:Arpeggio gate:ArpeggiatorView&Tesitura do arpexo:Arpeggio range:ArpeggiatorView Tempo do arpexo:Arpeggio time:ArpeggiatorViewDireccin: Direction:ArpeggiatorView PORTAGATEArpeggiatorView Modo:Mode:ArpeggiatorViewIntervaloRANGEArpeggiatorView TempoTIMEArpeggiatorViewUse this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios.ArpeggiatorViewEmpregue este botn para indicar a tesitura do arpexo en oitavas. O arpexo escollido reproducirase dentro do nmero de oitavas indicado.Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves.ArpeggiatorViewUse this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played.ArpeggiatorViewmsmsArpeggiatorViewoctava(s) octave(s)ArpeggiatorView CANLESCHANNELSAudioAlsa::setupWidgetDISPOSITIVODEVICEAudioAlsa::setupWidgetAmplificar:Amplify:AudioFileProcessorViewPrema aqu se desexa abrir outro ficheiro de son. Aparecer un dilogo no que se pode escoller un ficheiro. As opcins tipo modo de bucle, puntos iniciais e final, valor da amplificacin, etc. non se reinician. Polo tanto, pode non soar igual que a mostra orixinal.Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample.AudioFileProcessorViewPunto final: Endpoint:AudioFileProcessorViewAqu pdese configurar se se desexa activar o modo de bucle. De activalo, o procesador de ficheiros de son repite entre os puntos inicial e final dunha mostra at que se toca a nota enteira. Isto ltil para cousas como mostras de corda e coro.Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples.AudioFileProcessorViewAo activar este botn invrtese a mostra completa. Isto til para efectos gaioleiros, como un crash invertido.pIf you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash.AudioFileProcessorViewhRepetir a mostra en bucle nos puntos inicial e final#Loop sample at start- and end-pointAudioFileProcessorView$Abrir outra mostraOpen other sampleAudioFileProcessorView"Inverter a mostraReverse sampleAudioFileProcessorViewPunto inicial: Startpoint:AudioFileProcessorViewCon este botn pdese indicar a relacin de amplificacin. Cando se indica un valor de 100%, a mostra fica como estaba. Se non, amplifcase para arriba ou para abaixo (o ficheiro mesmo coa mostra non se toca!)With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!)AudioFileProcessorViewCon este botn pdese indicar o punto se desexa que o AudioFileProcessor comece a reproducir a mostra. Se o modo en bucle estiver activado, este o punto ao que volta o AudioFileProcessor se unha nota mis longa do que a mostra entre os puntos inicial e final.With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points.AudioFileProcessorViewCon este botn pdese indicar o punto no que desexe o AudioFileProcessor pare a reproducin da mostra. Se o modo en bucle estiver activado, este o punto ao que o AudioFileProcessor volve se a nota for mis longa que a mostra entre os puntos inicial e final.With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points.AudioFileProcessorView:Reiniciouse o cliente de JACKJACK client restarted AudioJackNO servidor de JACK non est a funcionarJACK server down AudioJackBLMMS foi expulsado por JACK por algunha razn. En consecuencia, reiniciouse a infraestrutura de JACK do LMMS. Ter que realizar as conexins manualmente de novo.LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. AudioJack~Semella que o servidor de JACK foi apagado e non foi posbel iniciar unha instancia nova. En consecuencia, o LMMS non pode preseguir. Hai que gravar este proxecto e reiniciar o JACK e o LMMS.The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack CANLESCHANNELSAudioJack::setupWidgetCLINTE-NOME CLIENT-NAMEAudioJack::setupWidget CANLESCHANNELSAudioOss::setupWidgetDISPOSITIVODEVICEAudioOss::setupWidgetINFRAESTRUTURABACKENDAudioPortAudio::setupWidgetDISPOSITIVODEVICEAudioPortAudio::setupWidget CANLESCHANNELSAudioPulseAudio::setupWidgetDISPOSITIVODEVICEAudioPulseAudio::setupWidgetDISPOSITIVODEVICEAudioSdl::setupWidget,&Copiar o valor (%1%2)&Copy value (%1%2)AutomatableModel,A&pegar o valor (%1%2)&Paste value (%1%2)AutomatableModel"&Reiniciar (%1%2) &Reset (%1%2)AutomatableModel2Ligar a un controlador...Connect to controller...AutomatableModelLigado a %1Connected to %1AutomatableModel*Ligado ao controladorConnected to controllerAutomatableModel(Editar a conexin...Edit connection...AutomatableModelREditar a automatizacin global da cancinEdit song-global automationAutomatableModel&Eliminar a conexinRemove connectionAutomatableModelrCopironse todos os valores escollidos no porta-retallos.1All selected values were copied to the clipboard.AutomationEditor:Editor de automatizacin - %1Automation Editor - %1AutomationEditor`Editor de automatizacin - non hai ningn padrnAutomation Editor - no patternAutomationEditorPrema aqu e o activarase o modo de debuxo. Neste modo pode engadir e mover valores individuais. Este o modo por omisin que se emprega a maior parte do tempo. Tamn pode premer Maisculas+D no teclado para activar este modo.Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode.AutomationEditor:Prema aqu e activarase o modo de borrado. Neste modo pdense borrar valores individuais. Tamn pode premer Maisculas+E no teclado para activar este modo.Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode.AutomationEditorPrema aqu e activarase o modo de seleccin. Neste modo pdense escoller valores. Isto necesario se se desexa recortar, copiar, apegar, eliminar ou mover valores. Tamn se pode premer Maisculas+S no teclado para activar este modo.Click here and select-mode will be activated. In this mode you can select values. This is necessary if you want to cut, copy, paste, delete, or move values. You can also press 'Shift+S' on your keyboard to activate this mode.AutomationEditorPrema aqu e os valores escollidos cpianse no porta-retallos. Pdeos apegar en calquera lugar de calquera padrn premendo o botn de apegar.Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditor2Prema aqu e os valores escollidos recrtanse e van para o porta-retallos. Pdeos apegar en calquera lugar de calquera padrn premendo o botn de apegar.Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditorPrema aqu e os valores do porta-retallos apegaranse no primeiro comps visbel.YClick here and the values from the clipboard will be pasted at the first visible measure.AutomationEditorPrema aqu se desexa reproducir este padrn. Isto til mentres se edita. O padrn reptese en bucle automaticamente ao chegar ao final.Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached.AutomationEditorlPrema aqu se desexa parar a reproducin deste padrn.>Click here if you want to stop playing of the current pattern.AutomationEditorJCopiar os valores escollidos (Ctrl+C)Copy selected values (Ctrl+C)AutomationEditorNRecortar os valores escollidos (Ctrl+X)Cut selected values (Ctrl+X)AutomationEditor:Modo de debuxo (Maisculas+D)Draw mode (Shift+D)AutomationEditor<Modo de borrado (Maisculas+E)Erase mode (Shift+E)AutomationEditornSe preme aqu actvase o modo de movemento. Neste modo pdense mover os valores escollidos no modo de seleccin. Tamn se pode premer Maisculas+M no teclado para activar este modo.If you click here, move-mode will be activated. In this mode you can move the values you selected in select-mode. You can also press 'Shift+M' on your keyboard to activate this mode.AutomationEditorZModo de movemento de seleccin (Maisculas+M)Move selection mode (Shift+M)AutomationEditorXApegar os valores do porta-retallos (Ctrl+V)$Paste values from clipboard (Ctrl+V)AutomationEditorRReproducir/Deter o padrn actual (Espazo)"Play/pause current pattern (Space)AutomationEditorAbra un padrn de automatizacin co men de contexto dun control!EPlease open an automation pattern with the context menu of a control!AutomationEditor>Modo de seleccin (Maiscula+S)Select mode (Shift+S)AutomationEditorVParar a execucin do padrn actual (Espazo)'Stop playing of current pattern (Space)AutomationEditor Valores copiados Values copiedAutomationEditor\Arrastre un control mentres ten <Ctrl> premido$Drag a control while pressing AutomationPattern%1 conexins%1 ConnectionsAutomationPatternViewMudar o nome Change nameAutomationPatternView LimparClearAutomationPatternView Desconectar %1Disconnect "%1"AutomationPatternView@Abrir o editor de automatizacinOpen in Automation editorAutomationPatternView Restaurar o nome Reset nameAutomationPatternViewfaga duplo clic para abrir este padrn no editor de automatizacin6double-click to open this pattern in automation editorAutomationPatternView.Pista de automatizacinAutomation trackAutomationTrack11 ChordCreator11b911b9 ChordCreator13 ChordCreator13#9 ChordCreator 13b5b913b5b9 ChordCreator13b913b9 ChordCreator66 ChordCreator 6add96add9 ChordCreator 6sus46sus4 ChordCreator77 ChordCreator7#117#11 ChordCreator7#57#5 ChordCreator 7#5#97#5#9 ChordCreator 7#5b97#5b9 ChordCreator7#97#9 ChordCreator 7add117add11 ChordCreator 7add137add13 ChordCreator7b57b5 ChordCreator 7b5b97b5b9 ChordCreator7b97b9 ChordCreator 7sus47sus4 ChordCreator99 ChordCreator9#11 ChordCreator9#5 ChordCreator9b139b13 ChordCreator9b59b5 ChordCreator 9sus49sus4 ChordCreator EolioAeolian ChordCreator rabeArabic ChordCreator BluesBlues ChordCreator&Intervalo do acorde Chord range ChordCreatorTipo de acorde Chord type ChordCreatorAcordesChords ChordCreatorDiminudo Diminished ChordCreator$Dominante de bebopDominant bebop ChordCreator DorioDorian ChordCreatorEnigmtico Enigmatic ChordCreatorHarmnico menorHarmonic minor ChordCreatorHngaro menorHungarian minor ChordCreator Jap in sen ChordCreator LocrioLocrian ChordCreator LidioLydian ChordCreatorMaj11 ChordCreatorMaj13 ChordCreatorMaj7Maj7 ChordCreatorMaj7#11Maj7#11 ChordCreator Maj7#5Maj7#5 ChordCreatorMaj7add13 Maj7add13 ChordCreator Maj7b5Maj7b5 ChordCreatorMaj9 ChordCreatorMaj9#11 ChordCreatorMaj9#5 ChordCreatorMaj9sus4 ChordCreator Majb5Majb5 ChordCreator MaiorMajor ChordCreatorMaior de bebop Major bebop ChordCreator"Pentatnico maiorMajor pentatonic ChordCreatorMeldico menor Melodic minor ChordCreator"Pentatnico menorMinor pentatonic ChordCreatorMixolidio Mixolydian ChordCreatorNapolitano Neopolitan ChordCreator Napolitano menorNeopolitan minor ChordCreatorFrixio-lidio Phrygolydian ChordCreator Un ton Whole tone ChordCreatoradd9add9 ChordCreatoraumaug ChordCreatoraugsus4augsus4 ChordCreatorm-Maj11 ChordCreatorm-Maj13 ChordCreator m-Maj7m-Maj7 ChordCreatorm-Maj7add11 m-Maj7add11 ChordCreatorm-Maj7add13 m-Maj7add13 ChordCreatorm11m11 ChordCreatorm13m13 ChordCreatorm6m6 ChordCreator m6add9m6add9 ChordCreatorm7m7 ChordCreatorm7add11m7add11 ChordCreatorm7add13m7add13 ChordCreatorm7b5m7b5 ChordCreatorm7b9m7b9 ChordCreatorm9m9 ChordCreatorm9-Maj7 ChordCreatorm9b5 ChordCreatormadd9 ChordCreator minb5minb5 ChordCreator menorminor ChordCreator oitavaoctave ChordCreatorsus2sus2 ChordCreatorsus4sus4 ChordCreatortritri ChordCreatorACORDESCHORDSChordCreatorView(Intervalo do acorde: Chord range:ChordCreatorViewINTERVALORANGEChordCreatorViewEmpregue este botn para indicar a tesitura do acorde en oitavas. O acorde escollido tocarase dentro do nmero indicado de oitavas.{Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves.ChordCreatorViewoitava(s) octave(s)ChordCreatorViewControlador %1 Controller %1 Controller0Detectar automaticamente Auto DetectControllerConnectionDialog CANLECHANNELControllerConnectionDialogCONTROLADOR CONTROLLERControllerConnectionDialogCancelarCancelControllerConnectionDialog2Configuracin da conexinConnection SettingsControllerConnectionDialog(Detectouse un ciclo.Cycle Detected.ControllerConnectionDialog Canle de entrada Input channelControllerConnectionDialog,Controlador de entradaInput controllerControllerConnectionDialogLMMSLMMSControllerConnectionDialog*FUNCIN DE ASIGNACINMAPPING FUNCTIONControllerConnectionDialog&CONTROLADOR DE MIDIMIDI CONTROLLERControllerConnectionDialog`Dispositivos MIDI dos que recibir acontecementos(MIDI-devices to receive MIDI-events fromControllerConnectionDialogAceptarOKControllerConnectionDialog,CONTROLADOR DO USUARIOUSER CONTROLLERControllerConnectionDialogEngadirAddControllerRackView2Bastidor de controladoresController RackControllerRackView &Axuda&HelpControllerView.Elimina&r este engadido&Remove this pluginControllerViewOs controladores poden automatizar o valor dun botn xiratorio ou linear e outros controles.QControllers are able to automate the value of a knob, slider, and other controls.ControllerViewControlesControlsControllerViewNIntroduza o novo nome deste controlador&Enter the new name for this controllerControllerView,Renomear o controladorRename controllerControllerViewDecaementoDecayEffectEfecto activadoEffect enabledEffect PortaGateEffect&Mestura hmida/seca Wet/Dry mixEffect"Efectos activadosEffects enabled EffectChain"Engadir un efecto Add effectEffectRackView CADEA DE EFECTOS EFFECTS CHAINEffectRackView"Engadir un efecto Add effectEffectSelectDialog,Descricin do engadidoPlugin descriptionEffectSelectDialog &Axuda&Help EffectView.Elimina&r este engadido&Remove this plugin EffectViewControlesControls EffectView DECAEDECAY EffectView TOs engadidos de efectos funcionan como unha serie encadeada de efectos na que o sinal se procesa desde arriba para abaixo. O interruptor Activar/Desactivar permite omitir un engadido dado en calquera momento. O botn Hmido/Seco controla o balance entre o sinal de entrada eo sinal producido que a sada resultante do efecto. A entrada da etapa a sada da etapa anterior. Polo tanto, o sinal seco dos efectos de abaixo na cadea contn todos os efectos previos. O botn Decaemento controla como se contina a procesar o sinal despois de relaxar as notas. O efecto para o procesamento dos sinais cando o volume baixa por debaixo dun limiar dado durante un tempo dado. Este botn indica o tempo dado. Tempos maiores requiren mis CPU, polo que este nmero debera ser baixo para a maiora dos efectos. Haino que subir para os efectos que producen perodos de silencio longos, como por exemplo as demoras. O botn Porta controla o limiar dado do apagado automtico do efecto. O reloxo do tempo dado comeza as que o nivel do sinal procesado cae por debaixo do nivel indicado con este botn. O botn Controles abre un dilogo para editar os parmetros do efecto. Ao premer co botn dereito aparece un men de contexto no que se pode cambiar a orden na que se procesan os efectos ou eliminar un efecto de vez.SEffect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. EffectView PORTAGATE EffectView Porta:Gate: EffectView&Baixar Move &down EffectView S&ubirMove &up EffectView$Activar/DesactivarOn/Off EffectViewO botn Decaemento controla cantos bferes de silencio han de pasar antes de que o engadido pare de procesar. Valores mis pequenos reducen o esforzo da CPU a risco de recortar a cola nos efectos de demora e reverberacin.The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. EffectViewO botn Porta controla o nivel do sinal que se considere como silencio mentres se decide cando parar de procesar os sinais.zThe Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. EffectViewO botn Hmido/Seco indica a relacin entre o sinal de entrada e o sinal de efecto que forma a sada.eThe Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. EffectView Tempo:Time: EffectView>Conmuta a activacin do efecto.Toggles the effect on or off. EffectViewH/SW/D EffectView$Nivel de humidade: Wet Level: EffectView AtaqueAttackEnvelopeAndLfoParametersDecaementoDecayEnvelopeAndLfoParametersFreq x 100 Freq x 100EnvelopeAndLfoParametersRetencinHoldEnvelopeAndLfoParametersAtaque do LFO LFO AttackEnvelopeAndLfoParameters"Modulacin do LFOLFO ModulationEnvelopeAndLfoParameters:Tempo de reverberacin do LFO LFO PredelayEnvelopeAndLfoParameters(Forma da onda do LFOLFO Wave ShapeEnvelopeAndLfoParameters"Velocidade do LFO LFO speedEnvelopeAndLfoParameters4Modular a cantidade de envModulate Env-AmountEnvelopeAndLfoParametersModulacin ModulationEnvelopeAndLfoParameters,Tempo de reverberacinPredelayEnvelopeAndLfoParametersRelaxamentoReleaseEnvelopeAndLfoParametersSustentacinSustainEnvelopeAndLfoParametersCANTIDADEAMTEnvelopeAndLfoViewATAQATTEnvelopeAndLfoViewAtaque:Attack:EnvelopeAndLfoViewXPrema aqu para unha onda de dente de serra.&Click here for a saw-wave for current.EnvelopeAndLfoViewFPrema aqu para unha onda senoidal.Click here for a sine-wave.EnvelopeAndLfoViewDPrema aqu para unha onda cadrada.Click here for a square-wave.EnvelopeAndLfoViewJPrema aqu para unha onda triangular.Click here for a triangle-wave.EnvelopeAndLfoView Prema aqu para unha onda definida polo usuario. Posteriormente, arrastre un ficheiro de mostra correspondente sobre o grfico de LFO.aClick here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph.EnvelopeAndLfoViewPrema aqu se desexa multiplicar por 100 a frecuencia deste LFO.DClick here if the frequency of this LFO should be multiplied by 100.EnvelopeAndLfoViewPrema aqu para facer que a cantidade de envolvente sexa controlada por este LFO.>Click here to make the envelope-amount controlled by this LFO.EnvelopeAndLfoViewDECDECEnvelopeAndLfoViewTMP REVDELEnvelopeAndLfoViewDecaemento:Decay:EnvelopeAndLfoViewxArrastre un exemplo doutro sitio e slteo sobre esta xanela.8Drag a sample from somewhere and drop it in this window.EnvelopeAndLfoViewFREQ x 100 FREQ x 100EnvelopeAndLfoView RETENHOLDEnvelopeAndLfoViewSuxestinHintEnvelopeAndLfoViewRetencin:Hold:EnvelopeAndLfoView<Tempo de reverberacin do LFO: LFO predelay:EnvelopeAndLfoView$Velocidade do LFO: LFO speed:EnvelopeAndLfoViewAtaque do LFO: LFO- attack:EnvelopeAndLfoView$MODULAR CANT. ENVOMODULATE ENV-AMOUNTEnvelopeAndLfoView0Cantidade de modulacin:Modulation amount:EnvelopeAndLfoView.Tempo de reverberacin: Predelay:EnvelopeAndLfoViewRELEnvelopeAndLfoViewRelaxamento:Release:EnvelopeAndLfoViewSPDSPDEnvelopeAndLfoViewSUSTSUSTEnvelopeAndLfoViewSustentacin:Sustain:EnvelopeAndLfoViewPEmpregue este botn para indicar o tempo de ataque do LFO escollido. Canto maior for este valor mis tempo lle levar ao LFO para aumentar a sa amplitude at o mximo.Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum.EnvelopeAndLfoViewEmpregue este botn para indicar o tempo de ataque da envolvente escollida. Canto maior for o valor mis tempo lle levar envolvente aumentar at o nivel de ataque. Escolla un valor pequeno para instrumentos como os pianos e un valor grande para as cordas.Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings.EnvelopeAndLfoViewEmpregue este botn para indicar o tempo de decaemento da envolvente escollida. Canto maior for este valor mis tempo lle levar envolvente para diminur desde o nivel de ataque at o nivel de sustentacin. Escolla un valor pequenos para instrumentos como o piano.Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos.EnvelopeAndLfoViewEmpregue este botn para indicar o tempo de retencin da envolvente escollida. Canto maior for este valor mis tempo mantn a envolvente o nivel de ataque antes de comezar a diminur at o nivel de sustentacin.Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level.EnvelopeAndLfoViewEmpregue este botn para indicar a cantidade de modulacin do LFO escollido. Canto maior for este valor mis se ver influenciado o tamao escollido (p.ex. o volume ou a frecuencia de corte) por este LFO.Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO.EnvelopeAndLfoViewEmpregue este botn para indicar a cantidade de modulacin da envolvente escollida. Canto maior for este valor maior mis se ver influenciado o tamao correspondente (p.ex. o volume ou a frecuencia de corte) por esta envolvente.Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope.EnvelopeAndLfoView@Empregue este botn para indicar o tempo de reverberacin desta envolvente. Canto maior for este valor maior ser o intervalo at que comece a envolvente en si.Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope.EnvelopeAndLfoView.Empregue este botn para indicar o tempo de reverberacin deste LFO. Canto maior for este valor, maior ser o intervalo at que o LFO comece a oscilar.Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate.EnvelopeAndLfoViewEmpregue este botn para indicar o tempo de relaxamento da envolvente escollida. Canto maior for este valor mis tempo lle leva diminur desde o nivel de sustentacin at cero. Escolla un valor grande para instrumentos como as cordas.Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings.EnvelopeAndLfoViewEmpregue este botn para indicar a velocidade do LFO escollido. Canto maior for este valor mis rpido oscila o LFO e mis rpido o efecto.Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect.EnvelopeAndLfoViewfEmpregue este botn para indicar o nivel de sustentacin da envolvente escollida. Canto maior for este valor mis alto o nivel no que fica a envolvente antes de baixar at cero.Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero.EnvelopeAndLfoView`controlar a cantidade de envolvente con este LFO#control envelope-amount by this LFOEnvelopeAndLfoViewms/LFO:EnvelopeAndLfoViewNmultiplicar a frecuencia de LFO por 100multiply LFO-frequency by 100EnvelopeAndLfoView128 KBit/s 128 KBit/sExportProjectDialog$Enteiro de 16 bits16 Bit IntegerExportProjectDialog160 KBit/s 160 KBit/sExportProjectDialog192 KBit/s 192 KBit/sExportProjectDialog192000 Hz 192000 HzExportProjectDialog1x (Ningn) 1x (None)ExportProjectDialog256 KBit/s 256 KBit/sExportProjectDialog2x2xExportProjectDialog8Vrgula flutuante de 32 bits 32 Bit FloatExportProjectDialog320 KBit/s 320 KBit/sExportProjectDialog44100 Hz44100 HzExportProjectDialog48000 Hz48000 HzExportProjectDialog4x4xExportProjectDialog64 KBit/s 64 KBit/sExportProjectDialog88200 Hz88200 HzExportProjectDialog8x8xExportProjectDialog96000 Hz96000 HzExportProjectDialog*Osciladores sen aliasAlias-free oscillatorsExportProjectDialogTaxa de bits:Bitrate:ExportProjectDialogCancelarCancelExportProjectDialogProfundidade:Depth:ExportProjectDialog&Exportar o proxectoExport projectExportProjectDialog(Formato de ficheiro: File format:ExportProjectDialogInterpolacin:Interpolation:ExportProjectDialog SadaOutputExportProjectDialogFSobresampleado (usar con coidado!):Oversampling (use with care!):ExportProjectDialogTea en conta que non todos os parmetros de enriba se poden aplicar a todos os formatos de ficheiro.LPlease note that not all of the parameters above apply for all file formats.ExportProjectDialog2Configuracin da calidadeQuality settingsExportProjectDialog@Controladores de mostras exactasSample-exact controllersExportProjectDialog"Taxa de mostraxe: Samplerate:ExportProjectDialogJWhittaker Shannon mellor (moi lenta!)Sinc Best (very slow!)ExportProjectDialog:Whittaker Shannon mis rpida Sinc FastestExportProjectDialogJWhittaker Shannon media (recomendada)Sinc Medium (recommended)ExportProjectDialogComezarStartExportProjectDialog,Retencin de orde ceroZero Order HoldExportProjectDialogEfecto %1FX %1FxMixer GlobalMasterFxMixertIntroduza o novo nome para esta canle de efectos especiais&Enter the new name for this FX channel FxMixerView&Fader de efectos %1 FX Fader %1 FxMixerView>Mesturador de efectos especiaisFX-Mixer FxMixerViewSilenciarMute FxMixerViewRSilenciar esta canle de efectos especiaisMute this FX channel FxMixerViewZMudar o nome desta canle de efectos especiaisRename FX channel FxMixerView CANLECHANNELInstrumentMidiIOView2ACTIVAR A ENTRADA DE MIDIENABLE MIDI INPUTInstrumentMidiIOView.ACTIVAR A SADA DE MIDIENABLE MIDI OUTPUTInstrumentMidiIOViewjDispositivos MIDI dos que recibir acontecementos MIDI(MIDI devices to receive MIDI events fromInstrumentMidiIOViewhDispositivos MIDI aos que enviar acontecementos MIDI#MIDI devices to send MIDI events toInstrumentMidiIOViewPROGRAMAPROGRAMInstrumentMidiIOViewVELOCIDADEVELOCITYInstrumentMidiIOView2x Pasa-baixas 2x LowPassInstrumentSoundShapingPasa-todoAllpassInstrumentSoundShapingPasa-faixa csg BandPass csgInstrumentSoundShapingPasa-faixa czpg BandPass czpgInstrumentSoundShapingFREC. CORTECUTOFFInstrumentSoundShaping&Frecuencia de corteCutoff frequencyInstrumentSoundShapingEnvolventes/LFOEnvelopes/LFOsInstrumentSoundShapingTipo de filtro Filter typeInstrumentSoundShapingPasa-altasHiPassInstrumentSoundShapingPasa-baixasLowPassInstrumentSoundShapingMoogMoogInstrumentSoundShapingEntalleNotchInstrumentSoundShapingQ/Resonancia Q/ResonanceInstrumentSoundShaping$RC pasa-faixa 12dBRC BandPass 12dBInstrumentSoundShaping$RC pasa-faixa 24dBRC BandPass 24dBInstrumentSoundShaping"RC pasa-alta 12dBRC HighPass 12dBInstrumentSoundShaping"RC pasa-alta 24dBRC HighPass 24dBInstrumentSoundShaping$RC pasa-baixa 12dBRC LowPass 12dBInstrumentSoundShaping$RC pasa-baixa 24dBRC LowPass 24dBInstrumentSoundShapingRESORESOInstrumentSoundShapingResonancia ResonanceInstrumentSoundShaping VOLUMEVOLUMEInstrumentSoundShaping0Filtro de formante vocalVocal Formant FilterInstrumentSoundShaping VolumeVolumeInstrumentSoundShapingFREC. CORTECUTOFFInstrumentSoundShapingView FILTROFILTERInstrumentSoundShapingViewPAqu pdese escoller o filtro incorporado que se desexe empregar para esta pista de instrumento. Os filtros son moi importantes para cambiar as caractersticas dun son.Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound.InstrumentSoundShapingViewHzHzInstrumentSoundShapingViewRESORESOInstrumentSoundShapingViewResonancia: Resonance:InstrumentSoundShapingViewDESTINOTARGETInstrumentSoundShapingView Estas lapelas conteen envolventes. Son moi importantes para modificar un son dado que son case sempre necesarias para as snteses subtractivas. Por exemplo, se se ten unha envolvente de volume pdese indicar cando se desexa que o son tea un volume determinado. Se se desexan crear cordas brandas o son ten que entrar e sar moi suavemente. Isto pdese facer indicando tempos de ataque e relaxamento longos. o mesmo para outros destinos de envolvente, como panning, frecuencia de corte do filtro empregado e as por diante. Fedelle! Seguro que pode crear sons interesantes a partir dunha onde de dente de serra con unhas imples envolventes...!_These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...!InstrumentSoundShapingViewLEmpregue este botn para indicar a Q/Resonancia do filtro escollido. A Q/Resonancia indcalle ao filtro canto se desexa amplificar as frecuencias prximas de corte.Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency.InstrumentSoundShapingViewEmpregue este botn para indicar a frecuencia de corte do filtro escollido. A frecuencia de corte indica a frecuencia que un filtro corta o sinal. Por exemplo, un filtro pasa-baixas corta todas as frecuencias que ultrapasen a frecuencia de corte. Un filtro pasa-altas corta todas as frecuencias por debaixo da frecuencia de corte, e as por diante...2Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on...InstrumentSoundShapingView(frecuencia de corte:cutoff-frequency:InstrumentSoundShapingViewNota base Base noteInstrumentTrackPredefinidoDefault presetInstrumentTrack4Canle de efectos especiais FX channelInstrumentTrackPanormicaPanningInstrumentTrack AlturaPitchInstrumentTrack VolumeVolumeInstrumentTracknCon este botn pdese indicar o volume da canle aberta. Configuracin.uThe LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. MainWindowEste proxecto foi modificado desde que se gardou a ltima vez. Desexa gardalo agora?OThe current project was modified since last saving. Do you want to save it now? MainWindowDesfacerUndo MainWindowSen ttuloUntitled MainWindowQue isto? What's this? MainWindow,Directorio de traballoWorking directory MainWindow*Denominador do compsMeter Denominator MeterDialog&Numerador do compsMeter Numerator MeterDialog COMPSTIME SIG MeterDialogDenominador Denominator MeterModelNumerador Numerator MeterModelDISPOSITIVODEVICEMidiAlsaRaw::setupWidgetDISPOSITIVODEVICEMidiAlsaSeq::setupWidget&Controlador de MIDIMIDI ControllerMidiController8controlador_de_midi_sen_nomeunnamed_midi_controllerMidiController>A configuracin est incompletaSetup incomplete MidiImportO LMMS non foi compilado para que admitise un reprodutor de SoundFont2, que se utiliza para engadir un son por omisin aos ficheiros de MIDI. En consecuencia, non se ha de reproducir ningn son unha vez importado este ficheiro de MIDI.You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiImportVNon se indicou unha fonte de son por omisin no dilogo de configuracin (Editar->Configuracin). En consecuencia, non se ha de reproducir ningn son unha vez importado este ficheiro de MIDI. Debera descargar unha fonte de son de General MIDI, indicala no dilogo de configuracin e tentar de novo.You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. MidiImportDISPOSITIVODEVICEMidiOss::setupWidget4Velocidade de entrada fixaFixed input velocityMidiPort0Velocidade de sada fixaFixed output velocityMidiPort Canle de entrada Input channelMidiPort,Controlador de entradaInput controllerMidiPort,Programa MIDI de sadaOutput MIDI programMidiPortCanle de sadaOutput channelMidiPort(Controlador de sadaOutput controllerMidiPort<Recibir acontecementos de MIDIReceive MIDI-eventsMidiPort:Enviar acontecementos de MIDISend MIDI-eventsMidiPort*Tipo de modulacin %1Modulation type %1OscillatorObjectDDesafinacin bruta do oscilador %1Osc %1 coarse detuningOscillatorObjectTDesafinacin fina esquerda do oscilador %1Osc %1 fine detuning leftOscillatorObjectRDesafinacin fina dereita do oscilador %1Osc %1 fine detuning rightOscillatorObject4Panormica do oscilador %1Osc %1 panningOscillatorObjectJDesprazamento da fase do oscilador %1Osc %1 phase-offsetOscillatorObject^Desafinacin de fase en estreo do oscilador %1Osc %1 stereo phase-detuningOscillatorObject,Volume do oscilador %1 Osc %1 volumeOscillatorObject:Forma da onda do oscilador %1Osc %1 wave shapeOscillatorObject:Forma de onda do oscilador %1Osc %1 waveformOscillatorObjectPrema aqu para abrir outro ficheiro de parche. A configuracin dos bucles e a afinacin non se restauran.LClick here to open another patch-file. Loop and Tune settings are not reset. PatmanViewAqu pdese alternar entre modos de bucle. Cando est activado, o PatMan emprega a informacin sobre o bucle dispobel no ficheiro.jHere you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. PatmanViewAqu pdese alternar entre modos de afinacin. Cando est activado o Patman afina a mostra para que coincida coa frecuencia da nota.iHere you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. PatmanView BucleLoop PatmanViewModo de bucle Loop mode PatmanView8Non escolleu ningn ficheiroNo file selected PatmanView$Abrir outro parcheOpen other patch PatmanView8Abrir un ficheiro de parchesOpen patch file PatmanView8Ficheiros de parches (*.pat)Patch-Files (*.pat) PatmanViewAfinacinTune PatmanView"Modo de afinacin Tune mode PatmanView(Controlador de picosPeak ControllerPeakController$Controlador do LFOLFO ControllerPeakControllerDialogPICOPEAKPeakControllerDialogAMTAMT!PeakControllerEffectControlDialog ATAQUEATTACK!PeakControllerEffectControlDialogAtaque:Attack:!PeakControllerEffectControlDialogBASEBASE!PeakControllerEffectControlDialogCantidade base: Base amount:!PeakControllerEffectControlDialogDECAEMENTODECAY!PeakControllerEffectControlDialog0Cantidade de modulacin:Modulation amount:!PeakControllerEffectControlDialogRelaxamento:Release:!PeakControllerEffectControlDialog AtaqueAttackPeakControllerEffectControlsValor base Base valuePeakControllerEffectControls.Cantidade de modulacinModulation amountPeakControllerEffectControls"Silenciar a sada Mute outputPeakControllerEffectControlsRelaxamentoReleasePeakControllerEffectControlsNota base Base note PianoViewNProduciuse un erro ao cargar o engadidoError while loading pluginPlugin@Fallou a carga do engadido %1!Failed to load plugin "%1"!Plugin0Non se atopou o engadidoPlugin not foundPluginNon se atopou o engadido %1 ou non foi posbel cargalo! Razn: %2AThe plugin "%1" wasn't found or could not be loaded! Reason: "%2"Plugin>Ficheiro OGG comprimido (*.ogg)Compressed OGG-File (*.ogg)ProjectRenderer(Ficheiro wav (*.wav)WAV-File (*.wav)ProjectRenderer&Canles de entrada:  Channels In: QWidget"Canles de sada: Channels Out: QWidgetCopyright:  Copyright: QWidgetFicheiro: File: QWidget$En sitio rachado: In Place Broken: QWidgetCreador: Maker: QWidget Nome: Name: QWidgetNonNoQWidget4Capacidade de tempo real: Real Time Capable: QWidget(Require tempo real: Requires Real Time: QWidgetSiYesQWidget &Axuda&Help TempoSyncKnobSemicorchea 16th note TempoSyncKnobFusa 32nd note TempoSyncKnobCorchea8th note TempoSyncKnobPersonalizada Custom  TempoSyncKnob Personalizada... Custom... TempoSyncKnobOito tempos Eight beats TempoSyncKnob Branca Half note TempoSyncKnobNon sincronizarNo Sync TempoSyncKnob Negra Quarter note TempoSyncKnob4Sincronizado semicorcheaSynced to 16th Note TempoSyncKnob&Sincronizado fusaSynced to 32nd Note TempoSyncKnob,Sincronizado corcheaSynced to 8th Note TempoSyncKnob4Sincronizado a oito temposSynced to Eight Beats TempoSyncKnob*Sincronizado brancaSynced to Half Note TempoSyncKnob(Sincronizado negraSynced to Quarter Note TempoSyncKnob,Sincronizado redondaSynced to Whole Note TempoSyncKnob.Sincronizacin do tempo Tempo Sync TempoSyncKnobRedonda Whole note TempoSyncKnobLMisturar a sada dos osciladores 1 e 2Mix output of oscillator 1 & 2TripleOscillatorViewLMisturar a sada dos osciladores 2 e 3Mix output of oscillator 2 & 3TripleOscillatorViewFDesafinacin bruta do oscilador %1:Osc %1 coarse detuning:TripleOscillatorViewVDesafinacin fina esquerda do oscilador %1:Osc %1 fine detuning left:TripleOscillatorViewTDesafinacin fina dereita do oscilador %1:Osc %1 fine detuning right:TripleOscillatorView4Panormica do oscilador %1Osc %1 panning:TripleOscillatorViewLDesprazamento da fase do oscilador %1:Osc %1 phase-offset:TripleOscillatorView`Desafinacin de fase en estreo do oscilador %1:Osc %1 stereo phase-detuning:TripleOscillatorView.Volume do oscilador %1:Osc %1 volume:TripleOscillatorViewPSincronizar o oscilador 1 co oscilador 2*Synchronize oscillator 1 with oscillator 2TripleOscillatorViewPSincronizar o oscilador 2 co oscilador 3*Synchronize oscillator 2 with oscillator 3TripleOscillatorViewEmpregar unha onda de dente de serra tipo Moog para este oscilador.0Use a moog-like saw-wave for current oscillator.TripleOscillatorViewrEmpregar unha onda de dente de serra para este oscilador.&Use a saw-wave for current oscillator.TripleOscillatorView`Empregar unha onda senoidal para este oscilador.'Use a sine-wave for current oscillator.TripleOscillatorView^Empregar unha onda cadrada para este oscilador.)Use a square-wave for current oscillator.TripleOscillatorViewdEmpregar unha onda triangular para este oscilador.+Use a triangle-wave for current oscillator.TripleOscillatorViewxEmpregar unha forma de onda predefinida para este oscilador.3Use a user-defined waveform for current oscillator.TripleOscillatorViewEmpregar a modulacin de amplitude para modular o oscilador 2 co oscilador 1FUse amplitude modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewEmpregar a modulacin de amplitude para modular o oscilador 3 co oscilador 2FUse amplitude modulation for modulating oscillator 3 with oscillator 2TripleOscillatorViewfEmpregar unha onda exponencial para este oscilador./Use an exponential wave for current oscillator.TripleOscillatorViewEmpregar a modulacin de frecuencia para modular o oscilador 2 co oscilador 1FUse frequency modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewEmpregar a modulacin de frecuencia para modular o oscilador 3 co oscilador 2FUse frequency modulation for modulating oscillator 3 with oscillator 2TripleOscillatorViewEmpregar a modulacin de fase para modular o oscilador 2 co oscilador 1BUse phase modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewEmpregar a modulacin de fase para modular o oscilador 3 co oscilador 2BUse phase modulation for modulating oscillator 3 with oscillator 2TripleOscillatorViewTEmpregar rudo branco para este oscilador.'Use white-noise for current oscillator.TripleOscillatorViewzCon este botn pdese definir a desafinacin bruta do oscilador %1. Pdese desafinar o oscilador 12 semitns (unha oitava) para arriba e para abaixo. Isto til para crear sons cun acorde.With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord.TripleOscillatorViewxCon este botn pdese indicar a desafinacin fina do oscilador %1 pola canle esquerda. A desafinacin fina ten como intervalo -100 cents e +100 cents. Isto til para crear sons gordos.With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorViewvCon este botn pdese indicar a desafinacin fina do oscilador %1 pola canle dereita. A desafinacin fina ten como intervalo -100 cents e +100 cents. Isto til para crear sons gordos.With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorViewTCon este botn pdese indicar o panorama (panning) do oscilador %1. Un valor de -100 significa 100% esquerda e un valor de 100 move a sada do oscilador para a dereita.With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right.TripleOscillatorViewzCon este botn pdese indicar o desprazamento de fase do oscilador %1. Iso significa que se pode mover o punto dunha oscilacin no que o oscilador comeza a oscilar. Por exemplo, se se ten unha onda senoidal e un desprazamento de fase de 180 graos, a onda vai primeiro para abaixo. O mesmo acontece cunha onda cadrada.)With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave.TripleOscillatorViewConte este botn pdese indicar a desafinacin de fase en estreo do oscilador %1. A desafinacin de fase en estreo indica o tamao da diferenza entre o desprazamento de fase das canles esquerda e dereita. Isto moi bon para crear sons con estreo amplo.With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds.TripleOscillatorViewXCon este botn pdese indicar o volume do oscilador %1. Ao indicar un valor de 0 o oscilador apgase. Caso contrario pdese ouvir o oscilador tan alto como se indique aqu.With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here.TripleOscillatorView centscentsTripleOscillatorView graosdegreesTripleOscillatorViewsemitns semitonesTripleOscillatorViewPrema aqu para mostrar ou agochar a interface grfica de usuario do engadido de VST.QClick here to show or hide the graphical user interface (GUI) of your VST-plugin.VestigeInstrumentView$Prema aqu se desexa abrir outro engadido de VST. Ao premer este botn aparece un dilogo para abrir ficheiros no que se pode escoller o ficheiro.Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file.VestigeInstrumentView*Ficheiros DLL (.*dll)DLL-files (*.dll)VestigeInstrumentView*Ficheiros EXE (*.exe)EXE-files (*.exe)VestigeInstrumentViewHNon se cargou ningn engadido de VSTNo VST-plugin loadedVestigeInstrumentView.Abrir o engadido de VSTOpen VST-pluginVestigeInstrumentView6Abrir outro engadido de VSTOpen other VST-pluginVestigeInstrumentViewPredefinicinPresetVestigeInstrumentView0Gardar as predefinicins Save presetVestigeInstrumentViewFMostrar/Agochar a interface grfica Show/hide GUIVestigeInstrumentView*Apagar todas as notasTurn off all notesVestigeInstrumentView0Gardar as predefinicins Save presetVstEffectControlDialogBFallou a carga do engadido de VSTFailed loading VST-plugin VstPlugin(A cargar un engadidoLoading plugin VstPluginXAgarde mentres se carga o engadido de VST...'Please wait while loading VST-plugin... VstPlugin$Non foi posbel cargar o engadido de VST %1 por algunha razn. Se funciona con outro software de VST en Linux, contacte cun desenvolvedor do LMMS!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! VstPluginPrema aqu para mostrar ou agochar a interface grfica deusuario de ZynAddSubFX.MClick here to show or hide the graphical user interface (GUI) of ZynAddSubFX.ZynAddSubFxViewFREQFREQZynAddSubFxViewRESRESZynAddSubFxView6Mostrar a interface grficaShow GUIZynAddSubFxViewAmplificarAmplifyaudioFileProcessorFinal da mostra End of sampleaudioFileProcessor BucleLoopaudioFileProcessor"Inverter a mostraReverse sampleaudioFileProcessor Inicio da mostraStart of sampleaudioFileProcessorFREQFREQbassBoosterControlDialogFrecuencia: Frequency:bassBoosterControlDialogGAINGAINbassBoosterControlDialogGananciaGain:bassBoosterControlDialogTAXARATIObassBoosterControlDialog Taxa:Ratio:bassBoosterControlDialogFrecuencia FrequencybassBoosterControlsGananciaGainbassBoosterControlsTaxaRatiobassBoosterControlsHEngadir unha pista de automatizacinAdd automation-trackbbEditor<Engadir un ritmo/lia do baixoAdd beat/basslinebbEditor@Editor de ritmos e lia do baixoBeat+Bassline EditorbbEditorPrema aqu para reproducir o ritmo/lia do baixo actual. O ritmo/lia do baixo reptese en bucle automaticamente ao chegar ao final.qClick here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached.bbEditorPrema aqu para parar a reproducin do ritmo/lia do baixo actual.4Click here to stop playing of current beat/bassline.bbEditorpReproducir/Deter o ritmo/a lia do baixo actual (Espazo)(Play/pause current beat/bassline (Space)bbEditorzParar a reproducin do ritmo/da lia do baixo actual (Espazo).Stop playback of current beat/bassline (Space)bbEditorMudar a cor Change color bbTCOViewMudar o nome Change name bbTCOViewRAbrir no editor de ritmos e lia do baixoOpen in Beat+Bassline-Editor bbTCOView Restaurar o nome Reset name bbTCOView,Ritmo/Lia do baixo %1Beat/Bassline %1bbTrack Samplelength bitInvader<Prema para unha onda senoidal.Click for a sine-wave.bitInvaderViewXPrema aqu para unha onda de dente de serra.Click here for a saw-wave.bitInvaderViewDPrema aqu para unha onda cadrada.Click here for a square-wave.bitInvaderViewJPrema aqu para unha onda triangular.Click here for a triangle-wave.bitInvaderViewbPrema aqu para unha forma definida polo usuario.$Click here for a user-defined shape.bitInvaderView:Prema aqu para rudo branco.Click here for white-noise.bitInvaderViewRPrema aqu para unha forma de onda suave.Click here to smooth waveform.bitInvaderViewDebuxe aqu a sa propia forma de onda arrastrando o rato polo grfico.ADraw your own waveform here by dragging your mouse on this graph.bitInvaderViewInterpolacin InterpolationbitInvaderViewNormalizar NormalizebitInvaderView&Lonxitude da mostra Sample LengthbitInvaderView,Onda de dente de serraSaw wavebitInvaderViewOnda senoidal Sine wavebitInvaderView SuaveSmoothbitInvaderViewOnda cadrada Square wavebitInvaderViewOnda triangular Triangle wavebitInvaderView4Onda definida polo usuarioUser defined wavebitInvaderView(Onda de rudo brancoWhite noise wavebitInvaderView@Non foi posbel abrir o ficheiroCould not open fileexportProjectDialogNon foi posbel abrir o ficheiro %1 para escribir nel. Asegrese de ter permisos sobre o ficheiro e o directorio que o contn e tente de novo!Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again!exportProjectDialogErroErrorexportProjectDialogProduciuse un erro ao determinar o dispositivo codificador do ficheiro. Tente escollendo un formato de sada diferente.\Error while determining file-encoder device. Please try to choose a different output format.exportProjectDialog0Exportar o proxecto a %1Export project to %1exportProjectDialog"A renderizar: %1%Rendering: %1%exportProjectDialogLIntroduza un valor novo entre %1 e %2:+Please enter a new value between %1 and %2:faderGrficoGraph graphModelDecaementoDecaykickerInstrumentDistorsin DistortionkickerInstrument Frecuencia final End frequencykickerInstrumentGananciaGainkickerInstrument$Frecuencia inicialStart frequencykickerInstrumentDecaemento:Decay:kickerInstrumentViewDistorsin: Distortion:kickerInstrumentView"Frecuencia final:End frequency:kickerInstrumentViewGanancia:Gain:kickerInstrumentView&Frecuencia inicial:Start frequency:kickerInstrumentView &Axuda&HelpknobLIntroduza un valor novo entre %1 e %2:+Please enter a new value between %1 and %2:knobdIntroduza un valor novo entre -96,0 dBV e 6,0 dBV:7Please enter a new value between -96.0 dBV and 6.0 dBV:knob,Ferramentas de anliseAnalysis ToolsladspaBrowserView&Efectos dispobeisAvailable EffectsladspaBrowserViewNon sei Don't knowladspaBrowserViewInstrumentos InstrumentsladspaBrowserView |Este dilogo mostra informacin sobre todos os engadidos de LADSPA que o LMMS deu localizado. Os engadidos divdense en cinco categoras basendose nunha interpretacin dos tipos e nomes dos portos. Os efectos dispobeis son os que se poden empregar co LMMS. Para que o LMMS poida utilizar un efecto ten que ser, en primeiro lugar e o mis importante, un efecto, o que quere dicir que ten que ter tanto canles de entrada como canles de sada. O LMMS identifica unha canle de entrada como un porto de taxa de son que contea in no nome. As canles de sada identifcanse coas letras out. Aln disto, o efecto ten que ter o mesmo nmero de entradas que de sadas e ter capacidade de tempo real. Os efectos non dispobeis son os que foron identificados como efectos mais que non tian o mesmo nmero de canles de entrada que de sada ou non tian capacidade de tempo real. Os instrumentos son engadidos nos que s se identificaron canles de sada . As ferramentas de anlise son engadidos nos que s se identificaron canles de entrada. Os non sei son engadidos nos que non se identificaron canles de entrada nin de sada. Facendo duplo clic sobre calquera dos engadidos mostra informacin sobre os portos.TThis dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports.ladspaBrowserView Tipo:Type:ladspaBrowserView.Efectos non dispobeisUnavailable EffectsladspaBrowserViewDescricin DescriptionladspaDescriptionEngadidosPluginsladspaDescriptionSonAudioladspaPortDialogControlControlladspaPortDialogDireccin DirectionladspaPortDialog"Vrgula flutuanteFloatladspaPortDialogEntradaInputladspaPortDialogEnteiroIntegerladspaPortDialogLogartmica LogarithmicladspaPortDialog.Mn < Predefinido < MxMin < Default < MaxladspaPortDialogNomeNameladspaPortDialog SadaOutputladspaPortDialog PortosPortsladspaPortDialogTaxaRateladspaPortDialog Dependente de SR SR DependentladspaPortDialogConmutadoToggledladspaPortDialogTipoTypeladspaPortDialogSiYesladspaPortDialog*Filtro de 24dB/oitava24dB/oct Filter lb302Synth AcentoAccent lb302Synth MorteDead lb302SynthDistorsin Distortion lb302SynthEscorregarSlide lb302Synth.Decamento ao escorregar Slide Decay lb302Synth4Frecuencia de corte do VCFVCF Cutoff Frequency lb302Synth>Decaemento da envolvente do VCFVCF Envelope Decay lb302Synth2Modo de envolvente do VCFVCF Envelope Mod lb302Synth"Resonancia do VCF VCF Resonance lb302SynthForma da ondaWaveform lb302SynthJFiltro tipo 303, 24dB/oitava, 3 polos&303-es-que, 24dB/octave, 3 pole filterlb302SynthView CORTECUTlb302SynthView<Prema para unha onda senoidal.Click for a sine-wave.lb302SynthViewHPrema aqu para unha onda tipo Moog. Click here for a moog-like wave.lb302SynthViewXPrema aqu para unha onda de dente de serra.Click here for a saw-wave.lb302SynthViewpPrema aqu para unha onda cadrada con final arredondado.0Click here for a square-wave with a rounded end.lb302SynthViewDPrema aqu para unha onda cadrada.Click here for a square-wave.lb302SynthViewJPrema aqu para unha onda triangular.Click here for a triangle-wave.lb302SynthViewLPrema aqu para unha onda exponencial.#Click here for an exponential wave.lb302SynthView:Prema aqu para rudo branco.Click here for white-noise.lb302SynthViewFrec. de corte: Cutoff Freq:lb302SynthViewDECDEClb302SynthViewDISTDISTlb302SynthView DIST:DIST:lb302SynthViewDecaemento:Decay:lb302SynthViewMOD ENVENV MODlb302SynthViewMod env:Env Mod:lb302SynthViewOnda tipo Moog Moog wavelb302SynthViewRESRESlb302SynthViewResonancia: Resonance:lb302SynthView0Onda cadrada arredondadaRounded square wavelb302SynthViewEscorregarSLIDElb302SynthView,Onda de dente de serraSaw wavelb302SynthViewOnda senoidal Sine wavelb302SynthView0Decamento ao escorregar: Slide Decay:lb302SynthViewOnda cadrada Square wavelb302SynthViewOnda triangular Triangle wavelb302SynthView(Onda de rudo brancoWhite noise wavelb302SynthView*Filtro de 24dB/oitava24dB/oct Filter lb303Synth AcentoAccent lb303Synth MorteDead lb303SynthDistorsin Distortion lb303SynthEscorregarSlide lb303Synth.Decamento ao escorregar Slide Decay lb303Synth4Frecuencia de corte do VCFVCF Cutoff Frequency lb303Synth>Decaemento da envolvente do VCFVCF Envelope Decay lb303Synth2Modo de envolvente do VCFVCF Envelope Mod lb303Synth"Resonancia do VCF VCF Resonance lb303SynthForma da ondaWaveform lb303SynthJFiltro tipo 303, 24dB/oitava, 3 polos&303-es-que, 24dB/octave, 3 pole filterlb303SynthView CORTECUTlb303SynthViewFrec. de corte: Cutoff Freq:lb303SynthViewDECDEClb303SynthViewDISTDISTlb303SynthView DIST:DIST:lb303SynthViewDecaemento:Decay:lb303SynthViewMOD ENVENV MODlb303SynthViewMod env:Env Mod:lb303SynthViewRESRESlb303SynthViewResonancia: Resonance:lb303SynthViewEscorregarSLIDElb303SynthView0Decamento ao escorregar: Slide Decay:lb303SynthViewONDAWAVElb303SynthView ONDA:WAVE:lb303SynthViewADSRADSRmalletsInstrument AgogAgogomalletsInstrument GolpesBeatsmalletsInstrumentCon arcoBowedmalletsInstrumentEsmagarClumpmalletsInstrument6Transicin por esvaecemento CrossfademalletsInstrument VidroGlassmalletsInstrument DurezaHardnessmalletsInstrument&Profundidade do LFO LFO DepthmalletsInstrument"Velocidade do LFO LFO SpeedmalletsInstrumentMarimbaMarimbamalletsInstrument Faltan ficheiros Missing filesmalletsInstrumentModulador ModulatormalletsInstrumentMovementoMotionmalletsInstrumentPosicinPositionmalletsInstrumentPresinPressuremalletsInstrumentResomalletsInstrumentVelocidadeSpeedmalletsInstrumentPropagarSpreadmalletsInstrumentMestura de paus Stick MixmalletsInstrumentCunca tibetana Tibetan BowlmalletsInstrument Camps tubulares Tubular BellsmalletsInstrumentLmina afinada Tuned BarmalletsInstrumentDous fixos Two FixedmalletsInstrumentLmina uniforme Uniform BarmalletsInstrumentVibrfono VibraphonemalletsInstrument*Frecuencia do vibrato Vibrato FreqmalletsInstrument&Ganancia do vibrato Vibrato GainmalletsInstrumentMadeira1Wood1malletsInstrumentMadeira2Wood2malletsInstrumentA instalacin de Stk semella estar incompleta. Asegrese de que o paquete Stk completo est instalado!aYour Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed!malletsInstrumentADSRADSRmalletsInstrumentView ADSR:ADSR:malletsInstrumentViewCon arcoBowedmalletsInstrumentView6Transicin por esvaecemento CrossfademalletsInstrumentView8Transicin por esvaecemento: Crossfade:malletsInstrumentView DurezaHardnessmalletsInstrumentViewDureza: Hardness:malletsInstrumentViewInstrumento InstrumentmalletsInstrumentView&Profundidade do LFO LFO DepthmalletsInstrumentView(Profundidade do LFO: LFO Depth:malletsInstrumentView"Velocidade do LFO LFO SpeedmalletsInstrumentView$Velocidade do LFO: LFO Speed:malletsInstrumentViewModulador ModulatormalletsInstrumentViewModulador: Modulator:malletsInstrumentViewMovementoMotionmalletsInstrumentViewMovemento:Motion:malletsInstrumentViewPosicinPositionmalletsInstrumentViewPosicin: Position:malletsInstrumentViewPresinPressuremalletsInstrumentViewPresin: Pressure:malletsInstrumentViewVelocidadeSpeedmalletsInstrumentViewVelocidade:Speed:malletsInstrumentViewPropagarSpreadmalletsInstrumentViewPropagar:Spread:malletsInstrumentViewMestura de paus Stick MixmalletsInstrumentView Mestura de paus: Stick Mix:malletsInstrumentViewFrec. vib.:Vib FreqmalletsInstrumentViewFrec. vib.: Vib Freq:malletsInstrumentViewGan. vib.Vib GainmalletsInstrumentViewGan. vib.: Vib Gain:malletsInstrumentViewVibratoVibratomalletsInstrumentViewVibrato:Vibrato:malletsInstrumentView &Axuda&HelpnineButtonSelectorDistorsin DistortionorganicInstrument VolumeVolumeorganicInstrumentDistorsin: Distortion:organicInstrumentViewVDesafinacin fina esquerda do oscilador %1:Osc %1 fine detuning left:organicInstrumentView6Panormica do oscilador %1:Osc %1 panning:organicInstrumentView.Volume do oscilador %1:Osc %1 volume:organicInstrumentViewBForma de onda do osciloscopio %1:Osc %1 waveform:organicInstrumentViewAleatorio RandomiseorganicInstrumentViewVolume:Volume:organicInstrumentView centscentsorganicInstrumentView GravesBasspapuInstrument.Canle 1 a SO1 (Dereita)Channel 1 to SO1 (Right)papuInstrument0Canle 1 a SO1 (Esquerda)Channel 1 to SO2 (Left)papuInstrument"Volume da canle 1Channel 1 volumepapuInstrument.Canle 2 a SO1 (Dereita)Channel 2 to SO1 (Right)papuInstrument0Canle 2 a SO2 (Esquerda)Channel 2 to SO2 (Left)papuInstrument"Volume da canle 2Channel 2 volumepapuInstrument.Canle 3 a SO1 (Dereita)Channel 3 to SO1 (Right)papuInstrument0Canle 3 a SO2 (Esquerda)Channel 3 to SO2 (Left)papuInstrument"Volume da canle 3Channel 3 volumepapuInstrument.Canle 4 a SO1 (Dereita)Channel 4 to SO1 (Right)papuInstrument0Canle 4 a SO2 (Esquerda)Channel 4 to SO2 (Left)papuInstrument"Volume da canle 4Channel 4 volumepapuInstrument.Nivel da sada esquerdaLeft Output levelpapuInstrumentFLonxitude de cada paso en varreduraLength of each step in sweeppapuInstrument,Nivel da sada dereitaRight Output levelpapuInstrument:Cambiar a largura do rexistroShift Register widthpapuInstrument@Cantidade de Cambio de varreduraSweep RtShift amountpapuInstrument,Direccin da varreduraSweep directionpapuInstrument$Tempo da varredura Sweep timepapuInstrument AgudosTreblepapuInstrument@Direccin da varredura do volumeVolume sweep directionpapuInstrumentPadrn de ondaWave Pattern DutypapuInstrument GravesBasspapuInstrumentViewGraves:Bass:papuInstrumentView.Canle 1 a SO1 (Dereita)Channel1 to SO1 (Right)papuInstrumentView0Canle 1 a SO2 (Esquerda)Channel1 to SO2 (Left)papuInstrumentView.Canle 1 a SO1 (Dereita)Channel2 to SO1 (Right)papuInstrumentView0Canle 2 a SO2 (Esquerda)Channel2 to SO2 (Left)papuInstrumentView.Canle 3 a SO1 (Dereita)Channel3 to SO1 (Right)papuInstrumentView0Canle 3 a SO2 (Esquerda)Channel3 to SO2 (Left)papuInstrumentView.Canle 4 a SO1 (Dereita)Channel4 to SO1 (Right)papuInstrumentView0Canle 4 a SO2 (Esquerda)Channel4 to SO2 (Left)papuInstrumentView$Debuxe a onda aquDraw the wave herepapuInstrumentViewFLonxitude de cada paso en varreduraLength of each step in sweeppapuInstrumentViewHLonxitude de cada paso en varredura:Length of each step in sweep:papuInstrumentView0Volume da canle de rudoNoise Channel VolumepapuInstrumentView2Volume da canle de rudo:Noise Channel Volume:papuInstrumentView.Volume de SO1 (Dereita)SO1 Volume (Right)papuInstrumentView0Volume de SO1 (Dereita):SO1 Volume (Right):papuInstrumentView0Volume de SO2 (Esquerda)SO2 Volume (Left)papuInstrumentView2Volume de SO2 (Esquerda):SO2 Volume (Left):papuInstrumentView:Cambiar a largura do rexistroShift Register WidthpapuInstrumentView2Volume da canle cadrada 1Square Channel 1 VolumepapuInstrumentView4Volume da canle cadrada 1:Square Channel 1 Volume:papuInstrumentView2Volume da canle cadrada 2Square Channel 2 VolumepapuInstrumentView4Volume da canle cadrada 2:Square Channel 2 Volume:papuInstrumentView,Direccin da varreduraSweep DirectionpapuInstrumentView@Cantidade de cambio de varreduraSweep RtShift amountpapuInstrumentViewBCantidade de cambio de varredura:Sweep RtShift amount:papuInstrumentView$Tempo da varredura Sweep TimepapuInstrumentView&Tempo da varredura: Sweep Time:papuInstrumentView`A cantidade de aumento ou reducin da frecuencia/The amount of increase or decrease in frequencypapuInstrumentView<A demora entre cambios de pasoThe delay between step changepapuInstrumentViewO ciclo de deber a relacin entre a duracin (tempo) durante a que un sinal est ACTIVO fronte ao perodo total do sinal.mThe duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal.papuInstrumentViewzA taxa que se produce o aumento ou a reducin da frecuencia:The rate at which increase or decrease in frequency occurspapuInstrumentView AgudosTreblepapuInstrumentViewAgudos:Treble:papuInstrumentView@Direccin da varredura do volumeVolume Sweep DirectionpapuInstrumentView0Volume da canle de ondasWave Channel VolumepapuInstrumentView2Volume da canle de ondas:Wave Channel Volume:papuInstrumentViewPadrn de onda Wave PatternpapuInstrumentView.Padrn de onda de deberWave Pattern DutypapuInstrumentView.Padrn de onda de deberWave pattern dutypapuInstrumentView0Padrn de onda de deber:Wave pattern duty:papuInstrumentView>Non posbel conxelar o padrnCannot freeze patternpatternNon posbel conxelar agora o padrn porque estamos no modo de reproducin. Pare e tnteo de novo!_The pattern currently cannot be freezed because you're in play-mode. Please stop and try again!patternCancelarCancelpatternFreezeStatusDialog,A conxelar o padrn...Freezing pattern...patternFreezeStatusDialog%1 pasos%1 steps patternView 1 paso1 step patternViewEngadir pasos Add steps patternViewMudar o nome Change name patternView*Limpar todas as notasClear all notes patternViewConxelarFreeze patternView Abrir na pianolaOpen in piano-roll patternViewReconxelarRefreeze patternViewEliminar pasos Remove steps patternView Restaurar o nome Reset name patternViewDesconxelarUnfreeze patternViewfaga duplo clic para abrir este padrn na pianola empregue a roda do rato para modificar o volume un pasoWdouble-click to open this pattern in piano-roll use mouse wheel to set volume of a step patternViewPrema aqu e actvase o modo de desafinacin.Neste modo pdese premer unhanota para abrir a sa desafinacin de automatizacin. Pdese empregar isto para escorregar entre as notas. Tamn se pode premer Maisculas+T no teclado para activar este mdo.Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. pianoRollTPrema aqu e o activarase o modo de debuxo. Neste modo pode engadir e mover valores individuais. Este o modo por omisin que se emprega a maior parte do tempo. Tamn pode premer Maisculas+D no teclado para activar este modo. Neste modo, mantea Ctrl para ir temporalmente ao modo de seleccin.Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. pianoRoll:Prema aqu e activarase o modo de borrado. Neste modo pdense borrar valores individuais. Tamn pode premer Maisculas+E no teclado para activar este modo.Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. pianoRoll|Prema aqu e activarase o modo de borrado. Neste modo pdense borrar valores individuais. Como alternativa pode premer Ctrl no modo de debuxo para empregar temporalmente o modo de seleccin.Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. pianoRollPrema aqu e os valores do porta-retallos apegaranse no primeiro comps visbel.XClick here and the notes from the clipboard will be pasted at the first visible measure. pianoRollPrema aqu e os valores escollidos cpianse no porta-retallos. Pdeos apegar en calquera lugar de calquera padrn premendo o botn de apegar.Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRoll2Prema aqu e os valores escollidos recrtanse e van para o porta-retallos. Pdeos apegar en calquera lugar de calquera padrn premendo o botn de apegar.Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRollPrema aqu para reproducir este padrn. Isto til mentres se edita. O padrn reptese en bucle automaticamente ao chegar ao final.Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. pianoRollPrema aqu para gravar notas desde un dispositivo MIDI ou desde o piano de proba virtual da xanela da canle correspondente no padrn actual. As notas tocadas ao gravar escrbense neste padrn e despois pdense editar.Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. pianoRollPrema aqu para gravar notas desde un dispositivo MIDI ou desde o piano de proba virtual da xanela da canle correspondente no padrn actual. As notas tocadas ao gravar escrbense neste padrn e escitase a cancin ou pista de ritmos/lia do baixo no fondo.Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. pianoRollbPrema aqu para parar a reproducin deste padrn./Click here to stop playback of current pattern. pianoRollFCopiar as notas escollidas (Ctrl+C)Copy selected notes (Ctrl+C) pianoRollJRecortar as notas escollidas (Ctrl+X)Cut selected notes (Ctrl+X) pianoRollFModo de desafinacin (Maisculas+T)Detune mode (Shift+T) pianoRoll:Modo de debuxo (Maisculas+D)Draw mode (Shift+D) pianoRoll<Modo de borrado (Maisculas+E)Erase mode (Shift+E) pianoRollltima nota Last note pianoRoll*Panormmica das notas Note Panning pianoRoll Volume das notas Note Volume pianoRoll Bloqueo de notas Note lock pianoRollTApegar as notas do porta-retallos (Ctrl+V)#Paste notes from clipboard (Ctrl+V) pianoRollPianola - %1Piano-Roll - %1 pianoRoll>Pianola - non hai ningn padrnPiano-Roll - no pattern pianoRollRReproducir/Deter o padrn actual (Espazo)"Play/pause current pattern (Space) pianoRollLAbra un padrn facendo duplo clic nel!/Please open a pattern by double-clicking on it! pianoRoll`Gravar notas dun dispositivo MIDI/piano de canle+Record notes from MIDI-device/channel-piano pianoRollGravar notas dun dispositivo MIDI/piano de canle mentres se reproduce a cancin ou pista de ritmos/lia do baixoJRecord notes from MIDI-device/channel-piano while playing song or BB track pianoRoll>Modo de seleccin (Maiscula+S)Select mode (Shift+S) pianoRollVParar a execucin do padrn actual (Espazo)'Stop playing of current pattern (Space) pianoRollTSintetizador aditivo para sons tipo rgano*Additive Synthesizer for organ-like sounds pluginBrowserZSintetizador de tboa de ondas personalizbel"Customizable wavetable synthesizer pluginBrowserArrastre un instrumento para o Editor de cancins, o Editor de ritmos+lia do baixo ou para unha pista de instrumento existente.nDrag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. pluginBrowser.ZynAddSubFX incorporadoEmbedded ZynAddSubFX pluginBrowser@Emulacin da APU da GameBoy (TM)Emulation of GameBoy (TM) APU pluginBrowserEmulacin dos SID MOS6581 e o MOS8580. Este chip empregbase no computador Commodore 64.ZEmulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. pluginBrowserfFiltro para importar proxectos do FL Studio ao LMMS1Filter for importing FL Studio projects into LMMS pluginBrowserVFiltro para importar ficheiros MIDI ao LMMS)Filter for importing MIDI-files into LMMS pluginBrowserRInstrumento de parcheo compatbel con GUSGUS-compatible patch instrument pluginBrowserJImitacin monofnica incompleta tb303%Incomplete monophonic imitation tb303 pluginBrowser2Navegador de instrumentosInstrument browser pluginBrowser0Engadidos de instrumentoInstrument plugins pluginBrowserTEnumerar os engadidos de LADSPA instaladosList installed LADSPA plugins pluginBrowserBReprodutor de ficheiros SoundFontPlayer for SoundFont files pluginBrowser^Engadido para controlar botns con picos de son-Plugin for controlling knobs with sound peaks pluginBrowserEngadido para mellorar a separacin en estreo dun ficheiro de entrada en estreo=Plugin for enhancing stereo separation of a stereo input file pluginBrowserjEngadido para manipular libremente a sada en estreo,Plugin for freely manipulating stereo output pluginBrowser>Cousas melodiosas nas que baterTuneful things to bang on pluginBrowserpHspede de VST para empregar engadidos de VST(i) co LMMS-VST-host for using VST(i)-plugins within LMMS pluginBrowser:Modelador de cordas vibrantesVibrating string modeler pluginBrowsersen descricinno description pluginBrowserBengadido para potenciar os gravesplugin for boosting bass pluginBrowserzengadido para empregar efectos de LADSPA arbitrarios no LMMS.6plugin for using arbitrary LADSPA-effects inside LMMS. pluginBrowsertengadido para empregar efectos de VST arbitrarios no LMMS.3plugin for using arbitrary VST-effects inside LMMS. pluginBrowsersampleador simple con varias opcins para empregar mostras (p.ex. batera) nunha pista de instrumentoZsimple sampler with various settings for using samples (e.g. drums) in an instrument-track pluginBrowsertres potentes osciladores que se poden modular de varias maneiras;three powerful oscillators you can modulate in several ways pluginBrowserXsintetizador de kick e tambor baixo verstil&versatile kick- & bassdrum-synthesizer pluginBrowser&Negrita&Bold projectNotes&Cor... &Color... projectNotes&Copiar&Copy projectNotesCursi&va&Italic projectNotes&Xustificar&Justify projectNotes&Esquerda&Left projectNotesA&pegar&Paste projectNotes&Refacer&Redo projectNotesDe&reita&Right projectNotesS&ubliado &Underline projectNotesDesfa&cer&Undo projectNotesC&entroC&enter projectNotes Ctrl+BCtrl+B projectNotes Ctrl+CCtrl+C projectNotes Ctrl+ECtrl+E projectNotes Ctrl+ICtrl+I projectNotes Ctrl+JCtrl+J projectNotes Ctrl+LCtrl+L projectNotes Ctrl+RCtrl+R projectNotes Ctrl+UCtrl+U projectNotes Ctrl+VCtrl+V projectNotes Ctrl+XCtrl+X projectNotes Ctrl+YCtrl+Y projectNotes Ctrl+ZCtrl+Z projectNotesCor&tarCu&t projectNotes"Editar as accins Edit Actions projectNotes$Accins de formatoFormat Actions projectNotes"Notas do proxecto Project notes projectNotesTAnote aqu as sas notas sobre o proxecto.!Put down your project notes here. projectNotesMudar o nome... Rename... renameDialog:Ficheiros AIFF (*.aif *.aiff)AIFF-Files (*.aif *.aiff) sampleBuffer&Ficheiros AU (*.au)AU-Files (*.au) sampleBufferTodos os ficheiros de son (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3)SAll Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) sampleBuffer:Ficheiros do DrumSynth (*.ds)DrumSynth-Files (*.ds) sampleBuffer.Ficheiros FLAC (*.flac)FLAC-Files (*.flac) sampleBuffer*Ficheiros MP3 (*.mp3)MP3-Files (*.mp3) sampleBuffer*Ficheiros OGG (*.ogg)OGG-Files (*.ogg) sampleBuffer0Abrir un ficheiro de sonOpen audio file sampleBuffer*Ficheiros RAW (*.raw)RAW-Files (*.raw) sampleBuffer.Ficheiros SPEEX (*.spx)SPEEX-Files (*.spx) sampleBuffer*Ficheiros VOC (*.voc)VOC-Files (*.voc) sampleBuffer,Ficheiros wave (*.wav)Wave-Files (*.wav) sampleBuffer CopiarCopy sampleTCOViewRecortarCut sampleTCOViewBEliminar (botn do medio do rato)Delete (middle mousebutton) sampleTCOViewpSilenciar/Darlle volume (<Ctrl> + botn central do rato)#Mute/unmute ( + middle click) sampleTCOView ApegarPaste sampleTCOView4Indicar/Limpar a gravacinSet/clear record sampleTCOViewRfaga duplo clic para escoller unha mostradouble-click to select sample sampleTCOView Pista de mostras Sample track sampleTrack VolumeVolume sampleTrack Volume da canle:Channel volume:sampleTrackViewVolume da pista Track volumesampleTrackViewVOLVOLsampleTrackView INTERFACE DO SONAUDIO INTERFACE setupDialog<Directorio do material grficoArtwork directory setupDialog(Configuracin do sonAudio settings setupDialogTAMAO DO BFER BUFFER SIZE setupDialog"Grficos do fondoBackground artwork setupDialogCancelarCancel setupDialogbEscoller o directorio de instalacin do FL Studio'Choose FL Studio installation directory setupDialogZEscoller o directorio dos engadidos de LADSPAChoose LADSPA plugin directory setupDialogREscoller o directorio de traballo do LMMSChoose LMMS working directory setupDialogVEscoller o directorio de ondas cruas de STKChoose STK rawwave directory setupDialogREscoller o directorio do material grficoChoose artwork-theme directory setupDialog:Escoller os grficos do fondoChoose background artwork setupDialog@Escoller a SoundFont por omisinChoose default SoundFont setupDialogTEscoller o directorio dos engadidos de VST Choose your VST-plugin directory setupDialog`Comprimir os ficheiros dos proxectos por omisin"Compress project files per default setupDialog<Ficheiro Soundfont por omisinDefault Soundfont File setupDialogdDesactivar os indicadores de actividade das canles#Disable channel activity indicators setupDialog4Mostrar o volume como dBV Display volume as dBV  setupDialog&Activar as axudiasEnable tooltips setupDialogLDirectorio de instalacin do FL Studio FL Studio installation directory setupDialog8Cadencia: %1 Latencia: %2 msFrames: %1 Latency: %2 ms setupDialog&Configuracin xeralGeneral settings setupDialogpModo de calidade alta para o dispositivo de son de sadaHQ-mode for output audio-device setupDialogAqu pdese escoller a interface de MIDI preferida. Dependendo da configuracin do sistema durante a compilacin pdese escoller entre ALSA, OSS e mis. Embaixo vese unha caixa que oferece controles para configurar a interface de MIDI escollida.Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. setupDialogAqu pdese escoller a interface de son preferida. Dependendo da configuracin do sistema durante a compilacin pdese escoller entre ALSA, JACK, OSS e mis. Embaixo vese unha caixa que oferece controles para configurar a interface de son escollida.Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. setupDialog(Aqu pdese configurar o tamao do bfer interno empregado polo LMMS. Valores mis pequenos resultan nunha latencia menor mais poden tamn causar son non usbel ou desempeo inadecuado, especialmente en computadores vellos ou en sistemas cun kernel que non sexa de tempo real.Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. setupDialog:Rutas aos engadidos de LADSPALADSPA plugin paths setupDialog<Directorio de traballo do LMMSLMMS working directory setupDialogINTERFACE MIDIMIDI INTERFACE setupDialog*Configuracin do MIDI MIDI settings setupDialogDIVERSOSMISC setupDialogAceptarOK setupDialog`S tocar as teclas no piano da canle manualmente)Only press keys on channel-piano manually setupDialog RutasPaths setupDialog4Configuracin do desempeoPerformance settings setupDialogTea en conta que a maiora dos cambios non sern efectivos at que se reinicie o LMMS!GPlease note that most changes won't take effect until you restart LMMS! setupDialog:Restaurar o valor por omisinReset to default-value setupDialog Reiniciar o LMMS Restart LMMS setupDialog@Directorio de ondas cruas de STKSTK rawwave directory setupDialog*Configuracin do LMMS Setup LMMS setupDialogMostrar o aviso sobre o reinicio despois de cambiar a configuracin,Show restart warning after changing settings setupDialogNEfectos da interface fronte a desempeoUI effects vs. performance setupDialog>Directorio dos engadidos de VSTVST-plugin directory setupDialog BancoBank sf2InstrumentCoroChorus sf2Instrument(Profundidade do coro Chorus Depth sf2InstrumentNivel do coro Chorus Level sf2InstrumentLias do coro Chorus Lines sf2Instrument$Velocidade do coro Chorus Speed sf2InstrumentGananciaGain sf2Instrument ParchePatch sf2InstrumentReverberacinReverb sf2Instrument.Tampn de reverberacinReverb Damping sf2Instrument,Nivel de reverberacin Reverb Level sf2Instrument>Tamao da sala de reverberacinReverb Roomsize sf2Instrument0Largura da reverberacin Reverb Width sf2Instrument<Aplicar un coro (se o admitir)Apply chorus (if supported)sf2InstrumentViewHAplicar reverberacin (se o admitir)Apply reverb (if supported)sf2InstrumentView"Escoller o parcheChoose the patchsf2InstrumentView*Profundidade do coro: Chorus Depth:sf2InstrumentViewNivel do coro: Chorus Level:sf2InstrumentViewLias de coro: Chorus Lines:sf2InstrumentView&Velocidade do coro: Chorus Speed:sf2InstrumentViewVPrema aqu para abrir outro ficheiro de SF2#Click here to open another SF2 filesf2InstrumentViewGananciaGainsf2InstrumentView<Abrir un ficheiro de SoundFontOpen SoundFont filesf2InstrumentViewBAbrir outro ficheiro de SoundFontOpen other SoundFont filesf2InstrumentView0Tampn de reverberacin:Reverb Damping:sf2InstrumentView.Nivel de reverberacin: Reverb Level:sf2InstrumentView@Tamao da sala de reverberacin:Reverb Roomsize:sf2InstrumentView2Largura da reverberacin: Reverb Width:sf2InstrumentView>Ficheiros de SoundFont2 (*.sf2)SoundFont2 Files (*.sf2)sf2InstrumentViewEste botn activa o efecto de coro. Isto til para efectos de echo gaioleiros, mais s funciona cos ficheiros que o admiten.uThis button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it.sf2InstrumentViewEste botn activa o efecto de reverberacin. Isto til para efectos gaioleiros, mais s funciona cos ficheiros que o admiten.pThis button enables the reverb effect. This is useful for cool effects, but only works on files that support it.sf2InstrumentViewModelo de chip Chip model sidInstrument CorteCutoff sidInstrumentTipo de filtro Filter type sidInstrumentResonancia Resonance sidInstrumentVoz 3 apagada Voice 3 off sidInstrument VolumeVolume sidInstrumentA taxa de ataque determina como de rpido sobe a Voz %1 desde cero amplitude de pico.\Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude.sidInstrumentViewAtaque:Attack:sidInstrumentView$Filtro pasa-faixa Band-Pass filter sidInstrumentViewCr:Coarse:sidInstrumentView(Frecuencia de corte:Cutoff frequency:sidInstrumentViewA taxa de decaemento determina como de rpido cae a sada desde a amplitude de pico ao nivel de Sustentacin escollido.iDecay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level.sidInstrumentViewDecaemento:Decay:sidInstrumentViewFiltradoFilteredsidInstrumentView"Filtro pasa-alta High-Pass filter sidInstrumentView$Filtro pasa-baixa Low-Pass filter sidInstrumentViewSID MOS6581  MOS6581 SID sidInstrumentViewSID MOS6580  MOS8580 SID sidInstrumentView RudoNoisesidInstrumentViewA sada da voz %1 fica na amplitude de sustentacin indicada mentres se mantea a nota.]Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held.sidInstrumentViewOnda de pulso Pulse WavesidInstrumentView"Largura do pulso: Pulse Width:sidInstrumentViewRelaxamento:Release:sidInstrumentViewResonancia: Resonance:sidInstrumentViewModo anelRing-ModsidInstrumentViewO modo anel substite a sada da onda de forma triangular do oscilador %1 cunha combinacin modulada en anel dos osciladores %1 e %2.}Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2.sidInstrumentViewDente de serraSawToothsidInstrumentViewSustentacin:Sustain:sidInstrumentViewSincronizarSyncsidInstrumentViewSincroniza a frecuencia fundamental do oscilador %1 coa frecuencia fundamental do oscilador %2, producindo efectos de sincronizacin dura.Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects.sidInstrumentView ProbaTestsidInstrumentViewProba, cando escollido, restaura e bloquea o oscilador %1 a cero at que remate a proba.PTest, when set, resets and locks Oscillator %1 at zero until Test is turned off.sidInstrumentViewA desafinacin cra permite desafinar a voz %1 unha oitava para arriba ou para abaixo.DThe Coarse detuning allows to detune Voice %1 one octave up or down.sidInstrumentViewA resolucin da largura do pulso permite varrer a largura suavemente sen que sexa posbel discernir os pasos. Hai que escoller a forma de onda pulso no oscilador %1 para que se ouza un efecto audbel.The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect.sidInstrumentViewA sada da voz %1 cae desde a amplitude de sustentacin at cero na relacin de relaxamento escollida.jThe output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate.sidInstrumentViewOnda triangular Triangle WavesidInstrumentViewVoz3 apagada  Voice3 Off sidInstrumentViewVolume:Volume:sidInstrumentViewpCando Filtrado est activado, a voz %1 procsase a travs do filtro. Cando Filtrado est desactivado, a voz %1 aparece directamente na sada e o filtro non ten ningn efecto sobre ela.When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it.sidInstrumentView4Todos os tipos de ficheiroAll file typessong Proxecto baleiro Empty projectsong,Proxectos de FL StudioFL Studio projectssong(Importar un ficheiro Import filesong$Secuencias de MIDIMIDI sequencessongAltura global Master pitchsongVolume global Master volumesong8O proxecto NON est gravado.Project NOT saved.song Proxecto gravado Project savedsonghEscolla o ficheiro para a exportacin do proxecto...!Select file for project-export...song TempoTemposong<O proxecto %1 xa est gravado.The project %1 is now saved.song>O proxecto %1 no nest gravado!The project %1 was not saved!songEste proxecto est baleiro, polo que exportalo non ten xeito. Poa algo primeiro no Editor de cancins!`This project is empty so exporting makes no sense. Please put some items into Song Editor first!songsen ttulountitledsongHEngaidr unha pista de automatizacinAdd automation-track songEditor<Engadir un ritmo/lia do baixoAdd beat/bassline songEditor8Engadir unha pista de mostraAdd sample-track songEditor<Prema aqu se desexa reproducir a cancin enteira. A reproducin comeza no marcador de posicin da cancin (verde). Tamn se pode mover durante a reproducin.Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. songEditorPrema aqu se desexa parar a reproducin da cancin. O marcador de posicin da cancin ir para o principio da cancin.uClick here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. songEditor@Non foi posbel abrir o ficheiroCould not open file songEditor\Non foi posbel abrir o ficheiro %1. Probabelmente vostede non tea permiso para ler este ficheiro. Asegrese de ter cando menos permiso para ler o ficheiro e tnteo de novo.Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. songEditorHNon foi posbel escribir no ficheiroCould not write file songEditor\Non foi posbel escribir no ficheiro %1. Probabelmente vostede non tea permiso para escribir neste ficheiro. Asegrese de ter acceso de escrita ao ficheiro e tnteo de novo.Could not write file %1. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. songEditorModo de debuxo Draw mode songEditorDModo de edicin (escoller e mover)Edit mode (select and move) songEditor.Hai un erro no ficheiro Error in file songEditor*Modo de alta calidadeHigh quality mode songEditorAltura global Master pitch songEditorVolume global Master volume songEditor@Reproducir unha cancin (Espazo)Play song (Space) songEditorJGravar mostras dun dispositivo de son Record samples from Audio-device songEditorGravar mostras dun dispositivo de son mentres se reproduce a cancin ou pista de ritmos/lia do baixo?Record samples from Audio-device while playing song or BB track songEditor$Editor de cancins Song-Editor songEditor0Parar a cancin (Espazo)Stop song (Space) songEditorTEMPO/BPM TEMPO/BPM songEditor TempoTempo songEditorParece que o ficheiro %1 contn erros e por iso non se pode cargar.BThe file %1 seems to contain errors and therefore can't be loaded. songEditor2O tempo dunha cancin indcase en pulsos por minuto (BPM). Para cambiar o tempo da cancin hai que cambiar este valor. Cada comps ten catro pulsos, polo que o tempo en BPM indica cantos compases / 4 hai que tocar nun minuto (ou cantos compases habera que tocar en catro minutos).-The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). songEditor$Valor: %1 semitnsValue: %1 semitones songEditorValor: %1% Value: %1% songEditoraltura global master pitch songEditorvolume global master volume songEditor tempo da cancin tempo of song songEditorEixo linear Y Linear Y axisspectrumAnalyzerControlDialogEspectro linearLinear spectrumspectrumAnalyzerControlDialogModo da canle Channel modespectrumAnalyzerControlsEixo linear Y Linear Y-axisspectrumAnalyzerControlsEspectro linearLinear spectrumspectrumAnalyzerControls LARGOWIDEstereoEnhancerControlDialogLargura:Width:stereoEnhancerControlDialogLarguraWidthstereoEnhancerControls<Volume esquerda para esquerda:Left to Left Vol:stereoMatrixControlDialog:Volume esquerda para dereita:Left to Right Vol:stereoMatrixControlDialog:Volume dereita para esquerda:Right to Left Vol:stereoMatrixControlDialog8Volume dereita para dereita:Right to Right Vol:stereoMatrixControlDialog,Esquerda para esquerda Left to LeftstereoMatrixControls*Esquerda para dereita Left to RightstereoMatrixControls*Dereita para esquerda Right to LeftstereoMatrixControls(Dereita para dereitaRight to RightstereoMatrixControlsHDespois de parar voltar ao principioAfter stopping go back to begintimeLineDespois de parar voltar posicin na que se iniciou a reproducin?After stopping go back to position at which playing was startedtimeLineDDespois de parar manter a posicinAfter stopping keep positiontimeLineZActivar/Desactivar o desprazamento automticoEnable/disable auto-scrollingtimeLineJActivar/Desactivar os puntos de bucleEnable/disable loop-pointstimeLineSuxestinHinttimeLinevPrema <Ctrl> para desactivar os puntos de bucle magnticos.-Press to disable magnetic loop-points.timeLineSilenciadoMutedtrackSoloSolotrackCancelarCanceltrackContainer*Non foi posbel atopar un filtro para importar o ficheiro %1. Debera converter este ficheiro a un formato que o LMMS recoeza usando outro software.Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software.trackContainerFNon foi posbel importar o ficheiroCouldn't import filetrackContainer@Non foi posbel abrir o ficheiroCouldn't open filetrackContainer Non foi posbel abrir o ficheiro %1 para lelo. Asegrese de ter permiso de lectura sobre o ficheiro e o directorio que o contn e tente de novo!Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again!trackContainer:A importar un ficheiro FLP...Importing FLP-file...trackContainer<A importar un ficheiro MIDI...Importing MIDI-file...trackContainer,A cargar o proxecto...Loading project...trackContainer$Agarde un anaco...Please wait...trackContainerSilenciadoMutedtrackContentObject*%1:%2 (%3:%4 a %5:%6)%1:%2 (%3:%4 to %5:%6)trackContentObjectView CopiarCopytrackContentObjectViewDuracin actualCurrent lengthtrackContentObjectViewPosicin actualCurrent positiontrackContentObjectViewRecortarCuttrackContentObjectViewBEliminar (botn do medio do rato)Delete (middle mousebutton)trackContentObjectViewSuxestinHinttrackContentObjectViewpSilenciar/Darlle volume (<Ctrl> + botn central do rato)#Mute/unmute ( + middle click)trackContentObjectView ApegarPastetrackContentObjectView\Prema <Ctrl> e arrastre para facer unha copia.%Press and drag to make a copy.trackContentObjectView^Prema <Ctrl> para modificar o tamao librementePress for free resizing.trackContentObjectView.Accins para esta pistaActions for this tracktrackOperationsWidget"Clonar esta pistaClone this tracktrackOperationsWidgetSilenciarMutetrackOperationsWidget(Silenciar esta pistaMute this tracktrackOperationsWidgetPrema <Ctrl> mentres ten a asa de mover premida para iniciar unha accin de arrastrar e soltar.KPress while clicking on move-grip to begin a new drag'n'drop-action.trackOperationsWidget&Eliminar esta pistaRemove this tracktrackOperationsWidgetSoloSolotrackOperationsWidgetBFallou a carga do engadido de VSTFailed loading VST-pluginvestigeInstrument(A cargar un engadidoLoading pluginvestigeInstrumentXAgarde mentres se carga o engadido de VST...'Please wait while loading VST-plugin...vestigeInstrument$Non foi posbel cargar o engadido de VST %1 por algunha razn. Se funciona con outro software de VST en Linux, contacte cun desenvolvedor do LMMS!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer!vestigeInstrumentDesafinar %1 Detune %1vibedDifuso %1  Fuzziness %1 vibedImpulso %1 Impulse %1vibedLonxitude %1 Length %1vibedOitava %1 Octave %1vibed Pan %1Pan %1vibed$Posicin da pa %1Pick %1 positionvibed.Posicin do captador %1Pickup %1 positionvibed&Tensin da corda %1String %1 stiffnessvibed$Volume da corda %1String %1 volumevibed &Axuda&Help vibedViewfPrema aqu para activar/desactivar a forma da onda.&Click here to enable/disable waveform. vibedViewVPrema aqu para normalizar a forma da onda.!Click here to normalize waveform. vibedViewRPrema aqu para unha forma de onda suave.Click here to smooth waveform. vibedViewDesafinar:Detune: vibedView.Activar a forma de ondaEnable waveform vibedViewDifuso: Fuzziness: vibedView$Editor de impulsosImpulse Editor vibedView2Impulso ou estado inicialImpulse or initial state vibedViewLonxitude:Length: vibedViewNormalizar Normalize vibedView OitavaOctave vibedViewPan:Pan: vibedView Posicin da pa:Pick position: vibedView*Posicin do captador:Pickup position: vibedView,Onda de dente de serraSaw wave vibedViewOnda senoidal Sine wave vibedView SuaveSmooth vibedViewOnda cadrada Square wave vibedView CordaString vibedView"Tensin da corda:String stiffness: vibedView$O selector Imp determina se hai que tratar a forma de onda do grfico como un impulso impartido na corda pola pba ou o estado inicial da corda.The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. vibedViewO botn P indica a posicin na que se pulsa a corda escollida. Canto menor sexa, mis prxima estar da ponte.The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. vibedView O botn PU indica a posicin desde a que se recollen as vibracins da corda escollida. Canto menor sexa, mis prximo ser da ponte.The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. vibedView(O botn S indica a tensin da corda escollida. A tensin da corda afecta ao tempo durante o que esta soa. Canto menor sexa, mis tempo ha de soar.The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. vibedView^O botn V indica o volume da corda escollida.4The 'V' knob sets the volume of the selected string. vibedViewO botn Desafinar modifica a altura da corda escollida. Indicar menos de cero fai que a corda soe plana. Con mis de cero a corda soar viva.The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. vibedViewFO botn Lonxitude indica a lonxitude da corda escollida. As cordas mis longas soan durante mis tempo e con mis brillo; porn, tamn consumen mis ciclos da CPU.The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. vibedView0O selector Oitava emprgase para escoller con que harmnico da nota soa a corda. Por exemplo, -2 significa que a corda soa das oitavas por debaixo da fundamental, F significa que a corda soa na fundamental e 6 significa que a cadea soa seix oitavas por riba da fundamental.#The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. vibedViewO botn Pan determina o lugar que ocupa a cadea escollida no campo estreo.PThe Pan knob determines the location of the selected string in the stereo field. vibedViewfO botn Slap engdelle algo de distorsin tipo fuzz corda escollida que se nota mis durante o ataque, anda que tamn se pode usar para facer que a corda soe mis metlica.The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. vibedViewO selector Corda emprgase para escoller a corda que editan os controles. Un instrumento de Vibed pode conter at nove cordas vibrando independentemente. O LED do recanto inferior dereito do editor da forma da onda indica se a corda escollida esst activada.The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. vibedViewZO editor de formas de onda permite controlar o estado inicial ou impulso usado para facer que a corda comece a vibrar. Os botns que hai dereita da grfica inicializan a forma de onda no tipo escollido. O botn ? carga unha forma de onda desde un ficheiro - s se cargan as primeiras 128 mostras. A forma de onda tamn se pode debuxar na grfica. O botn S suaviza a forma de onda. O botn N normaliza a forma de onda.The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. vibedViewOnda triangular Triangle wave vibedViewrEmpregar unha onda de dente de serra para este oscilador.&Use a saw-wave for current oscillator. vibedView`Empregar unha onda senoidal para este oscilador.'Use a sine-wave for current oscillator. vibedView^Empregar unha onda cadrada para este oscilador.)Use a square-wave for current oscillator. vibedViewdEmpregar unha onda triangular para este oscilador.+Use a triangle-wave for current oscillator. vibedViewxEmpregar unha forma de onda predefinida para este oscilador.3Use a user-defined waveform for current oscillator. vibedViewTEmpregar rudo branco para este oscilador.'Use white-noise for current oscillator. vibedView4Onda definida polo usuarioUser defined wave vibedViewVibed modela at nove cordas vibrando independentemente. O selector Corda permite escoller a corda que se desexe editar. O selector Imp escolle se o grfico representa un impulso ou o estado inicial da corda. O selector Oitava escolle o harmnico co que debera vibrar a corda. A grfica permite controlar o estado inicial ou o impulso usados para pr a corda en movemento. O botn V controla o volume. O botn S controla a tensin.da corda. O botn P controla a posicin da pa. O botn PU controla a posicin de observacin. Pan e Detune non deberan precisar explicacin. O botn Slap engdelle un pouco de distorsin tipo fuzz ao son da corda. O botn Lonxitude controla a lonxitude da corda. O LED do recanto inferior dereito do editor da forma da onda determina se a corda est activa no instrumento.hVibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. vibedViewVolume:Volume: vibedView(Onda de rudo brancoWhite noise wave vibedView$Prema para activarClick to enablevisualizationWidgetlPrema para des/activar a visualizacin da sada global6click to enable/disable visualization of master-outputvisualizationWidget Ataque da voz %1Voice %1 attack voiceObject8Desafinacin bruta da voz %1Voice %1 coarse detuning voiceObject&Decamento da voz %1Voice %1 decay voiceObject$Filtrado da voz %1Voice %1 filtered voiceObject0Largo do pulso da voz %1Voice %1 pulse width voiceObject*Relaxamento da voz %1Voice %1 release voiceObject8Modulacin de anel da voz %1Voice %1 ring modulate voiceObject,Sustentacin da voz %1Voice %1 sustain voiceObject0Sincronizacin da voz %1 Voice %1 sync voiceObjectProba da voz %1 Voice %1 test voiceObject.Fonda da onda da voz %1Voice %1 wave shape voiceObjectlmms-1.0.0+bzr2569/data/locale/gl.ts0000644000000000000000000076210312307165142015061 0ustar 00000000000000 AboutDialog About LMMS Sobre o LMMS LMMS (Linux MultiMedia Studio) LMMS (Estudio Multimedia de Linux) Version %1 (%2/%3, Qt %4, %5) Versión %1 (%2/%3, Qt %4, %5) About Sobre LMMS - easy music production for everyone LMMS - produción musical fácil para calquera Authors Autores Translation Tradución Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! Este idioma non está traducido (ou é inglés nativo). Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións existentes, síntase á vontade axudándonos! Simplemente contacte co mantedor! License Licenza Copyright (c) 2004-2014, LMMS developers Copyright (c) 2004-2009, os desenvolvedores do LMMS {2004-2013,?} {2004-2014,?} <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE DISPOSITIVO CHANNELS CANLES AudioFileProcessorView Open other sample Abrir outra mostra Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Prema aquí se desexa abrir outro ficheiro de son. Aparecerá un diálogo no que se pode escoller un ficheiro. As opcións tipo modo de bucle, puntos iniciais e final, valor da amplificación, etc. non se reinician. Polo tanto, pode non soar igual que a mostra orixinal. Reverse sample Inverter a mostra If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Ao activar este botón invértese a mostra completa. Isto é útil para efectos gaioleiros, como un crash invertido. Loop sample at start- and end-point Repetir a mostra en bucle nos puntos inicial e final Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Aquí pódese configurar se se desexa activar o modo de bucle. De activalo, o procesador de ficheiros de son repite entre os puntos inicial e final dunha mostra até que se toca a nota enteira. Isto é últil para cousas como mostras de corda e coro. Amplify: Amplificar: With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Con este botón pódese indicar a relación de amplificación. Cando se indica un valor de 100%, a mostra fica como estaba. Se non, amplifícase para arriba ou para abaixo (o ficheiro mesmo coa mostra non se toca!) Startpoint: Punto inicial: With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Con este botón pódese indicar o punto se desexa que o AudioFileProcessor comece a reproducir a mostra. Se o modo en bucle estiver activado, este é o punto ao que volta o AudioFileProcessor se unha nota é máis longa do que a mostra entre os puntos inicial e final. Endpoint: Punto final: With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Con este botón pódese indicar o punto no que desexe o AudioFileProcessor pare a reprodución da mostra. Se o modo en bucle estiver activado, este é o punto ao que o AudioFileProcessor volve se a nota for máis longa que a mostra entre os puntos inicial e final. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted Reiniciouse o cliente de JACK LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. LMMS foi expulsado por JACK por algunha razón. En consecuencia, reiniciouse a infraestrutura de JACK do LMMS. Terá que realizar as conexións manualmente de novo. JACK server down O servidor de JACK non está a funcionar The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. Semella que o servidor de JACK foi apagado e non foi posíbel iniciar unha instancia nova. En consecuencia, o LMMS non pode preseguir. Hai que gravar este proxecto e reiniciar o JACK e o LMMS. AudioJack::setupWidget CLIENT-NAME CLINTE-NOME CHANNELS CANLES AudioOss::setupWidget DEVICE DISPOSITIVO CHANNELS CANLES AudioPortAudio::setupWidget BACKEND INFRAESTRUTURA DEVICE DISPOSITIVO AudioPulseAudio::setupWidget DEVICE DISPOSITIVO CHANNELS CANLES AudioSdl::setupWidget DEVICE DISPOSITIVO AutomatableModel &Reset (%1%2) &Reiniciar (%1%2) &Copy value (%1%2) &Copiar o valor (%1%2) &Paste value (%1%2) A&pegar o valor (%1%2) Edit song-global automation Editar a automatización global da canción Connected to %1 Ligado a %1 Connected to controller Ligado ao controlador Edit connection... Editar a conexión... Remove connection Eliminar a conexión Connect to controller... Ligar a un controlador... Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) Reproducir/Deter o padrón actual (Espazo) Stop playing of current pattern (Space) Parar a execución do padrón actual (Espazo) Draw mode (Shift+D) Modo de debuxo (Maiúsculas+D) Erase mode (Shift+E) Modo de borrado (Maiúsculas+E) Cut selected values (Ctrl+X) Recortar os valores escollidos (Ctrl+X) Copy selected values (Ctrl+C) Copiar os valores escollidos (Ctrl+C) Paste values from clipboard (Ctrl+V) Apegar os valores do porta-retallos (Ctrl+V) Automation Editor - no pattern Editor de automatización - non hai ningún padrón Automation Editor - %1 Editor de automatización - %1 Please open an automation pattern with the context menu of a control! Abra un padrón de automatización co menú de contexto dun control! Values copied Valores copiados All selected values were copied to the clipboard. Copiáronse todos os valores escollidos no porta-retallos. Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Prema aquí se desexa reproducir este padrón. Isto é útil mentres se edita. O padrón repítese en bucle automaticamente ao chegar ao final. Click here if you want to stop playing of the current pattern. Prema aquí se desexa parar a reprodución deste padrón. Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. Prema aquí e o activarase o modo de debuxo. Neste modo pode engadir e mover valores individuais. Este é o modo por omisión que se emprega a maior parte do tempo. Tamén pode premer «Maiúsculas+D» no teclado para activar este modo. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. Prema aquí e activarase o modo de borrado. Neste modo pódense borrar valores individuais. Tamén pode premer «Maiúsculas+E» no teclado para activar este modo. Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Prema aquí e os valores escollidos recórtanse e van para o porta-retallos. Pódeos apegar en calquera lugar de calquera padrón premendo o botón de apegar. Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Prema aquí e os valores escollidos cópianse no porta-retallos. Pódeos apegar en calquera lugar de calquera padrón premendo o botón de apegar. Click here and the values from the clipboard will be pasted at the first visible measure. Prema aquí e os valores do porta-retallos apegaranse no primeiro compás visíbel. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> Arrastre un control mentres ten <Ctrl> premido AutomationPatternView double-click to open this pattern in automation editor faga duplo clic para abrir este padrón no editor de automatización Open in Automation editor Abrir o editor de automatización Clear Limpar Reset name Restaurar o nome Change name Mudar o nome %1 Connections %1 conexións Disconnect "%1" Desconectar «%1» AutomationTrack Automation track Pista de automatización Controller Controller %1 Controlador %1 ControllerConnectionDialog Connection Settings Configuración da conexión MIDI CONTROLLER CONTROLADOR DE MIDI Input channel Canle de entrada CHANNEL CANLE Input controller Controlador de entrada CONTROLLER CONTROLADOR Auto Detect Detectar automaticamente MIDI-devices to receive MIDI-events from Dispositivos MIDI dos que recibir acontecementos USER CONTROLLER CONTROLADOR DO USUARIO MAPPING FUNCTION FUNCIÓN DE ASIGNACIÓN OK Aceptar Cancel Cancelar LMMS LMMS Cycle Detected. Detectouse un ciclo. ControllerRackView Controller Rack Bastidor de controladores Add Engadir Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls Controles Controllers are able to automate the value of a knob, slider, and other controls. Os controladores poden automatizar o valor dun botón xiratorio ou linear e outros controles. Rename controller Renomear o controlador Enter the new name for this controller Introduza o novo nome deste controlador &Remove this plugin Elimina&r este engadido &Help &Axuda Effect Effect enabled Efecto activado Wet/Dry mix Mestura húmida/seca Gate Porta Decay Decaemento EffectChain Effects enabled Efectos activados EffectRackView EFFECTS CHAIN CADEA DE EFECTOS Add effect Engadir un efecto EffectSelectDialog Add effect Engadir un efecto Plugin description Descrición do engadido EffectView Toggles the effect on or off. Conmuta a activación do efecto. On/Off Activar/Desactivar W/D H/S Wet Level: Nivel de humidade: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. O botón Húmido/Seco indica a relación entre o sinal de entrada e o sinal de efecto que forma a saída. DECAY DECAE Time: Tempo: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. O botón Decaemento controla cantos búferes de silencio han de pasar antes de que o engadido pare de procesar. Valores máis pequenos reducen o esforzo da CPU a risco de recortar a cola nos efectos de demora e reverberación. GATE PORTA Gate: Porta: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. O botón Porta controla o nivel do sinal que se considere como «silencio» mentres se decide cando parar de procesar os sinais. Controls Controles Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. Os engadidos de efectos funcionan como unha serie encadeada de efectos na que o sinal se procesa desde arriba para abaixo. O interruptor Activar/Desactivar permite omitir un engadido dado en calquera momento. O botón Húmido/Seco controla o balance entre o sinal de entrada eo sinal producido que é a saída resultante do efecto. A entrada da etapa é a saída da etapa anterior. Polo tanto, o sinal «seco» dos efectos de abaixo na cadea contén todos os efectos previos. O botón Decaemento controla como se continúa a procesar o sinal despois de relaxar as notas. O efecto para o procesamento dos sinais cando o volume baixa por debaixo dun limiar dado durante un tempo dado. Este botón indica o «tempo dado». Tempos maiores requiren máis CPU, polo que este número debería ser baixo para a maioría dos efectos. Haino que subir para os efectos que producen períodos de silencio longos, como por exemplo as demoras. O botón Porta controla o «limiar dado» do apagado automático do efecto. O reloxo do «tempo dado» comeza así que o nivel do sinal procesado cae por debaixo do nivel indicado con este botón. O botón Controles abre un diálogo para editar os parámetros do efecto. Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar a orden na que se procesan os efectos ou eliminar un efecto de vez. Move &up S&ubir Move &down &Baixar &Remove this plugin Elimina&r este engadido &Help &Axuda EnvelopeAndLfoParameters Predelay Tempo de reverberación Attack Ataque Hold Retención Decay Decaemento Sustain Sustentación Release Relaxamento Modulation Modulación LFO Predelay Tempo de reverberación do LFO LFO Attack Ataque do LFO LFO speed Velocidade do LFO LFO Modulation Modulación do LFO LFO Wave Shape Forma da onda do LFO Freq x 100 Freq x 100 Modulate Env-Amount Modular a cantidade de env EnvelopeAndLfoView DEL TMP REV Predelay: Tempo de reverberación: Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. Empregue este botón para indicar o tempo de reverberación desta envolvente. Canto maior for este valor maior será o intervalo até que comece a envolvente en si. ATT ATAQ Attack: Ataque: Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. Empregue este botón para indicar o tempo de ataque da envolvente escollida. Canto maior for o valor máis tempo lle levará á envolvente aumentar até o nivel de ataque. Escolla un valor pequeno para instrumentos como os pianos e un valor grande para as cordas. HOLD RETEN Hold: Retención: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. Empregue este botón para indicar o tempo de retención da envolvente escollida. Canto maior for este valor máis tempo mantén a envolvente o nivel de ataque antes de comezar a diminuír até o nivel de sustentación. DEC DEC Decay: Decaemento: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. Empregue este botón para indicar o tempo de decaemento da envolvente escollida. Canto maior for este valor máis tempo lle levará á envolvente para diminuír desde o nivel de ataque até o nivel de sustentación. Escolla un valor pequenos para instrumentos como o piano. SUST SUST Sustain: Sustentación: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. Empregue este botón para indicar o nivel de sustentación da envolvente escollida. Canto maior for este valor máis alto é o nivel no que fica a envolvente antes de baixar até cero. REL Release: Relaxamento: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. Empregue este botón para indicar o tempo de relaxamento da envolvente escollida. Canto maior for este valor máis tempo lle leva diminuír desde o nivel de sustentación até cero. Escolla un valor grande para instrumentos como as cordas. AMT CANTIDADE Modulation amount: Cantidade de modulación: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. Empregue este botón para indicar a cantidade de modulación da envolvente escollida. Canto maior for este valor maior máis se verá influenciado o tamaño correspondente (p.ex. o volume ou a frecuencia de corte) por esta envolvente. LFO predelay: Tempo de reverberación do LFO: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. Empregue este botón para indicar o tempo de reverberación deste LFO. Canto maior for este valor, maior será o intervalo até que o LFO comece a oscilar. LFO- attack: Ataque do LFO: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. Empregue este botón para indicar o tempo de ataque do LFO escollido. Canto maior for este valor máis tempo lle levará ao LFO para aumentar a súa amplitude até o máximo. SPD SPD LFO speed: Velocidade do LFO: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. Empregue este botón para indicar a velocidade do LFO escollido. Canto maior for este valor máis rápido oscila o LFO e máis rápido é o efecto. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. Empregue este botón para indicar a cantidade de modulación do LFO escollido. Canto maior for este valor máis se verá influenciado o tamaño escollido (p.ex. o volume ou a frecuencia de corte) por este LFO. Click here for a sine-wave. Prema aquí para unha onda senoidal. Click here for a triangle-wave. Prema aquí para unha onda triangular. Click here for a saw-wave for current. Prema aquí para unha onda de dente de serra. Click here for a square-wave. Prema aquí para unha onda cadrada. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. Prema aquí para unha onda definida polo usuario. Posteriormente, arrastre un ficheiro de mostra correspondente sobre o gráfico de LFO. FREQ x 100 FREQ x 100 Click here if the frequency of this LFO should be multiplied by 100. Prema aquí se desexa multiplicar por 100 a frecuencia deste LFO. multiply LFO-frequency by 100 multiplicar a frecuencia de LFO por 100 MODULATE ENV-AMOUNT MODULAR CANT. ENVO Click here to make the envelope-amount controlled by this LFO. Prema aquí para facer que a cantidade de envolvente sexa controlada por este LFO. control envelope-amount by this LFO controlar a cantidade de envolvente con este LFO ms/LFO: Hint Suxestión Drag a sample from somewhere and drop it in this window. Arrastre un exemplo doutro sitio e sólteo sobre esta xanela. ExportProjectDialog Export project Exportar o proxecto Output Saída File format: Formato de ficheiro: Samplerate: Taxa de mostraxe: 44100 Hz 44100 Hz 48000 Hz 48000 Hz 88200 Hz 88200 Hz 96000 Hz 96000 Hz 192000 Hz 192000 Hz Bitrate: Taxa de bits: 64 KBit/s 64 KBit/s 128 KBit/s 128 KBit/s 160 KBit/s 160 KBit/s 192 KBit/s 192 KBit/s 256 KBit/s 256 KBit/s 320 KBit/s 320 KBit/s Depth: Profundidade: 16 Bit Integer Enteiro de 16 bits 32 Bit Float Vírgula flutuante de 32 bits Please note that not all of the parameters above apply for all file formats. Teña en conta que non todos os parámetros de enriba se poden aplicar a todos os formatos de ficheiro. Quality settings Configuración da calidade Interpolation: Interpolación: Zero Order Hold Retención de orde cero Sinc Fastest Whittaker–Shannon máis rápida Sinc Medium (recommended) Whittaker–Shannon media (recomendada) Sinc Best (very slow!) Whittaker–Shannon mellor (moi lenta!) Oversampling (use with care!): Sobresampleado (usar con coidado!): 1x (None) 1x (Ningún) 2x 2x 4x 4x 8x 8x Sample-exact controllers Controladores de mostras exactas Alias-free oscillators Osciladores sen alias Start Comezar Cancel Cancelar Export as loop (remove end silence) FxMixer Master Global FX %1 Efecto %1 FxMixerView Rename FX channel Mudar o nome desta canle de efectos especiais Enter the new name for this FX channel Introduza o novo nome para esta canle de efectos especiais FX-Mixer Mesturador de efectos especiais FX Fader %1 Fader de efectos %1 Mute Silenciar Mute this FX channel Silenciar esta canle de efectos especiais InstrumentFunctionArpeggio Arpeggio Arpexo Arpeggio type Tipo de arpexo Arpeggio range Intervalo do arpexo Arpeggio time Tempo do arpexo Arpeggio gate Porta do arpexo Arpeggio direction Dirección do arpexo Arpeggio mode Modo do arpexo Up Arriba Down Abaixo Up and down Arriba e abaixo Random Aleatorio Free Libre Sort Ordenar Sync Sincronizar InstrumentFunctionArpeggioView ARPEGGIO ARPEXO An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. Un arpexo é unha técnica de tocar instrumentos (especialmente de corda), que fai que a música sexa máis viva. As cordas deses instrumentos (harpas, por exemplo), púlsanse como acordes. A única diferenza é que se fai de maneira secuencial, polo que as notas non se tocan todas ao mesmo tempo. Os arpexos típicos son tríadas maiores ou menores, aínda que existen moitos outros acordes posíbeis que se poden escoller. RANGE Arpeggio range: Tesitura do arpexo: octave(s) Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. Empregue este botón para indicar a tesitura do arpexo en oitavas. O arpexo escollido reproducirase dentro do número de oitavas indicado. TIME Tempo Arpeggio time: Tempo do arpexo: ms ms Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. GATE PORTA Arpeggio gate: Porta do arpexo: % % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Chord: Direction: Dirección: Mode: Modo: InstrumentFunctionNoteStacking octave oitava Major Maior Majb5 Majb5 minor menor minb5 minb5 sus2 sus2 sus4 sus4 aug aum augsus4 augsus4 tri tri 6 6 6sus4 6sus4 6add9 6add9 m6 m6 m6add9 m6add9 7 7 7sus4 7sus4 7#5 7#5 7b5 7b5 7#9 7#9 7b9 7b9 7#5#9 7#5#9 7#5b9 7#5b9 7b5b9 7b5b9 7add11 7add11 7add13 7add13 7#11 7#11 Maj7 Maj7 Maj7b5 Maj7b5 Maj7#5 Maj7#5 Maj7#11 Maj7#11 Maj7add13 Maj7add13 m7 m7 m7b5 m7b5 m7b9 m7b9 m7add11 m7add11 m7add13 m7add13 m-Maj7 m-Maj7 m-Maj7add11 m-Maj7add11 m-Maj7add13 m-Maj7add13 9 9 9sus4 9sus4 add9 add9 9#5 9b5 9b5 9#11 9b13 9b13 Maj9 Maj9sus4 Maj9#5 Maj9#11 m9 m9 madd9 m9b5 m9-Maj7 11 11b9 11b9 Maj11 m11 m11 m-Maj11 13 13#9 13b9 13b9 13b5b9 13b5b9 Maj13 m13 m13 m-Maj13 Harmonic minor Harmónico menor Melodic minor Melódico menor Whole tone Un ton Diminished Diminuído Major pentatonic Pentatónico maior Minor pentatonic Pentatónico menor Jap in sen Major bebop Maior de bebop Dominant bebop Dominante de bebop Blues Blues Arabic Árabe Enigmatic Enigmático Neopolitan Napolitano Neopolitan minor Napolitano menor Hungarian minor Húngaro menor Dorian Dorio Phrygolydian Frixio-lidio Lydian Lidio Mixolydian Mixolidio Aeolian Eolio Locrian Locrio Chords Acordes Chord type Tipo de acorde Chord range Intervalo do acorde Minor InstrumentFunctionNoteStackingView RANGE INTERVALO Chord range: Intervalo do acorde: octave(s) oitava(s) Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. Empregue este botón para indicar a tesitura do acorde en oitavas. O acorde escollido tocarase dentro do número indicado de oitavas. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT ACTIVAR A ENTRADA DE MIDI CHANNEL CANLE VELOCITY VELOCIDADE ENABLE MIDI OUTPUT ACTIVAR A SAÍDA DE MIDI PROGRAM PROGRAMA MIDI devices to receive MIDI events from Dispositivos MIDI dos que recibir acontecementos MIDI MIDI devices to send MIDI events to Dispositivos MIDI aos que enviar acontecementos MIDI NOTE InstrumentSoundShaping VOLUME VOLUME Volume Volume CUTOFF FREC. CORTE Cutoff frequency Frecuencia de corte RESO RESO Resonance Resonancia Envelopes/LFOs Envolventes/LFO Filter type Tipo de filtro Q/Resonance Q/Resonancia LowPass Pasa-baixas HiPass Pasa-altas BandPass csg Pasa-faixa csg BandPass czpg Pasa-faixa czpg Notch Entalle Allpass Pasa-todo Moog Moog 2x LowPass 2x Pasa-baixas RC LowPass 12dB RC pasa-baixa 12dB RC BandPass 12dB RC pasa-faixa 12dB RC HighPass 12dB RC pasa-alta 12dB RC LowPass 24dB RC pasa-baixa 24dB RC BandPass 24dB RC pasa-faixa 24dB RC HighPass 24dB RC pasa-alta 24dB Vocal Formant Filter Filtro de formante vocal InstrumentSoundShapingView TARGET DESTINO These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! Estas lapelas conteñen envolventes. Son moi importantes para modificar un son dado que son case sempre necesarias para as sínteses subtractivas. Por exemplo, se se ten unha envolvente de volume pódese indicar cando se desexa que o son teña un volume determinado. Se se desexan crear cordas brandas o son ten que entrar e saír moi suavemente. Isto pódese facer indicando tempos de ataque e relaxamento longos. É o mesmo para outros destinos de envolvente, como panning, frecuencia de corte do filtro empregado e así por diante. Fedelle! Seguro que pode crear sons interesantes a partir dunha onde de dente de serra con unhas imples envolventes...! FILTER FILTRO Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. Aquí pódese escoller o filtro incorporado que se desexe empregar para esta pista de instrumento. Os filtros son moi importantes para cambiar as características dun son. Hz Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... Empregue este botón para indicar a frecuencia de corte do filtro escollido. A frecuencia de corte indica a frecuencia á que un filtro corta o sinal. Por exemplo, un filtro pasa-baixas corta todas as frecuencias que ultrapasen a frecuencia de corte. Un filtro pasa-altas corta todas as frecuencias por debaixo da frecuencia de corte, e así por diante... RESO RESO Resonance: Resonancia: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. Empregue este botón para indicar a Q/Resonancia do filtro escollido. A Q/Resonancia indícalle ao filtro canto se desexa amplificar as frecuencias próximas á de corte. FREQ FREQ cutoff frequency: InstrumentTrack unnamed_track pista_sen_nome Volume Volume Panning Panorámica Pitch Altura FX channel Canle de efectos especiais Default preset Predefinido With this knob you can set the volume of the opened channel. Con este botón pódese indicar o volume da canle aberta. Base note Nota base Pitch range InstrumentTrackView Volume Volume Volume: Volume: VOL VOL Panning Panorámica Panning: Panorámica: PAN PAN MIDI MIDI Input Entrada Output Saída InstrumentTrackWindow GENERAL SETTINGS CONFIGURACIÓN XERAL Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. Prema aquí se desexa gravar a configuración desta canle nun ficheiro de predefinicións. Noutras ocasións poderá cargar estas predefinicións facendo duplo clic no navegador de predefinicións. Instrument volume Volume do instrumento Volume: Volume: VOL VOL Panning Panorámica Panning: Panorámica: PAN PAN Pitch Altura Pitch: Altura: cents cents PITCH ALTURA FX channel Canlde de FX ENV/LFO ENV/LFO FUNC FUNC FX FX MIDI MIDI Save preset Gardar as predefinicións XML preset file (*.xpf) Ficheiro de predefinicións en XML (*.xpf) PLUGIN ENGADIDO Save current channel settings in a preset-file Pitch range (semitones) RANGE LadspaControl Link channels Ligar canles LadspaControlDialog Link Channels Ligar canles Channel Canle LadspaControlView Link channels Ligar canles Value: Valor: Sorry, no help available. Desculpe, non hai axuda dispoñíbel. LadspaEffect Effect Efecto Unknown LADSPA plugin %1 requested. Solicitouse un engadido de LADSPA, %1, que é descoñecido. LfoController LFO Controller Controlador de LFO Base value Valor base Oscillator speed Velocidade do oscilador Oscillator amount Cantidade de oscilador Oscillator phase Fase do oscilador Oscillator waveform Forma de onda do oscilador Frequency Multiplier Multiplicador de frecuencia LfoControllerDialog LFO LFO LFO Controller Controlador de LFO BASE BASE Base amount: Cantidade base: todo por facer SPD SPD LFO-speed: Velocidade de SPD: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. Empregue este botón para indicar a velocidade do oscilador de frecuencia baixa (LFO). Canto maior sexa este valor, máis rápido oscila o LFO e máis rápido resulta o efecto. AMT Modulation amount: Cantidade de modulación: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. Empregue este botón para indicar a cantidade de modulación do LFO. Canto maior for este valor, máis se verá influenciado o control conectado (p.ex. volume ou frecuencia de corte) polo LFO. PHS FASE Phase offset: Desprazamento da fase: degrees graos With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Con este botón pódese indicar o desprazamento da fase do oscilador de frecuencia baixa (LFO). Iso significa que se pode mover o punto dunha oscilación no que o oscilador comeza a oscilar. Se, por exemplo, se ten unha onda senoidal e un desprazamento de fase de 180 graos, a onda baixo primeiro. Cunha onda cadrada é o mesmo. Click here for a sine-wave. Prema aquí para unha onda senoidal. Click here for a triangle-wave. Prema aquí para unha onda triangular. Click here for a saw-wave. Prema aquí para unha onda de dente de serra. Click here for a square-wave. Prema aquí para unha onda cadrada. Click here for a a moog saw-wave. Prema aquí para unha onda de dente de serra tipo Moog. Click here for an exponential wave. Prema aquí para unha onda exponencial. Click here for white-noise. Prema aquí para ruído branco. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory Directorio de traballo The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. O directorio de traballo do LMMS %1 non existe. Desexa crealo agora? Pode cambiar o directorio máis tarde indo a Editar -> Configuración. Could not save config-file Non foi posíbel gravar o ficheiro de configuración Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. Non foi posíbel gravar o ficheiro de configuración %1. Probabelmente non se lle permita escribir neste ficheiro. Asegúrese de dispor de acceso para escribir neste ficheiro e ténteo de novo. &Project &Proxecto &New &Novo &Open... &Abrir... Recently opened projects Proxectos abertos recentemente &Save &Gardar Save &As... Gr&avar como... Import... Importar... E&xport... E&xportar... &Quit &Saír &Edit &Editar Settings Configuración &Tools Ferramen&tas &Help &Axuda Online help Axuda na Internet Help Axuda What's this? Que é isto? About Sobre Create new project Crear un proxecto novo Create new project from template Crear un proxecto novo a partir dun modelo Open existing project Abrir un projecto existente Recently opened project Proxecto aberto recentemente Save current project Gravar este proxecto Export current project Exportar este proxecto Show/hide Song-Editor Mostrar/Agochar o editor de cancións By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. Premendo este botón pódese mostrar ou agochar o Editor de Cancións. Coa axuda do Editor de Cancións pódese editar listas de reprodución e indicar cando tocar unha pista. Tamén se poden inserir e mover mostras (p.ex. mostras de rap) directamente na lista de reprodución. Show/hide Beat+Bassline Editor Mostrar/Agochar o Editor de ritmos e liña do baixo By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. Premendo este botón pódese mostrar ou agochar o Editor de ritmos e liña do baixo. Este Editor de ritmos e liña do baixo é necesario para crear ritmos e para abrir, engadir e eliminar canles, así como para recortar, copiar e pegar ritmos e padróns de liñas do baixo e para outras cousas semellantes. Show/hide Piano-Roll Mostrar/Agochar a pianola Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. Prema aquí para mostrar ou agochar a pianola. Coa axuda da pianola pódense editar melodías facilmente. Show/hide Automation Editor Mostrar/Agochar o Editor de automatización Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Prema aquí para mostrar ou agochar o Editor de automatización. Coa axuda do Editor de automatización pódense editar os valores dinámicos facilmente. Show/hide FX Mixer Mostrar/Agochar os Mesturador de efectos especiais Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Prema aquí para mostrar ou agochar o Mesturador de efectos especiais. O Mesturador de efectos especiais é unha ferramenta potente para xestionar os efectos das cancións. Pódense inserir efectos nas diferentes canles de efectos. Show/hide project notes Mostrar/Agochar as notas do proxecto Click here to show or hide the project notes window. In this window you can put down your project notes. Prema aquí para mostrar ou agochar a xanela coas notas do proxecto. Nela pódense apuntar as notas do proxecto. Show/hide controller rack Mostrar/Agochar o bastidor de controladores Untitled Sen título LMMS %1 LMMS %1 Project not saved Proxecto non gardado The current project was modified since last saving. Do you want to save it now? Este proxecto foi modificado desde que se gardou a última vez. Desexa gardalo agora? Open project Abrir un proxecto Save project Gardar o proxecto Help not available Non hai axuda dispoñíbel Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. De momento non hai axuda dispoñíbel no LMMS. Visitehttp://lmms.sf.net/wiki para documentación sobre o LMMS. My projects My samples My presets My home My computer Root directory E&xport tracks... Project recovery It looks like the last session did not end properly. Do you want to recover the project of this session? Configuration file Error while parsing configuration file at line %1:%2: %3 Save as new &version LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 MeterDialog Meter Numerator Numerador do compás Meter Denominator Denominador do compás TIME SIG COMPÁS MeterModel Numerator Numerador Denominator Denominador MidiAlsaRaw::setupWidget DEVICE DISPOSITIVO MidiAlsaSeq::setupWidget DEVICE DISPOSITIVO MidiController MIDI Controller Controlador de MIDI unnamed_midi_controller controlador_de_midi_sen_nome MidiImport Setup incomplete A configuración está incompleta You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. Non se indicou unha fonte de son por omisión no diálogo de configuración (Editar->Configuración). En consecuencia, non se ha de reproducir ningún son unha vez importado este ficheiro de MIDI. Debería descargar unha fonte de son de General MIDI, indicala no diálogo de configuración e tentar de novo. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. O LMMS non foi compilado para que admitise un reprodutor de SoundFont2, que se utiliza para engadir un son por omisión aos ficheiros de MIDI. En consecuencia, non se ha de reproducir ningún son unha vez importado este ficheiro de MIDI. MidiOss::setupWidget DEVICE DISPOSITIVO MidiPort Input channel Canle de entrada Output channel Canle de saída Input controller Controlador de entrada Output controller Controlador de saída Fixed input velocity Velocidade de entrada fixa Fixed output velocity Velocidade de saída fixa Output MIDI program Programa MIDI de saída Receive MIDI-events Recibir acontecementos de MIDI Send MIDI-events Enviar acontecementos de MIDI Fixed output note OscillatorObject Osc %1 volume Volume do oscilador %1 Osc %1 panning Panorámica do oscilador %1 Osc %1 coarse detuning Desafinación bruta do oscilador %1 Osc %1 fine detuning left Desafinación fina esquerda do oscilador %1 Osc %1 fine detuning right Desafinación fina dereita do oscilador %1 Osc %1 phase-offset Desprazamento da fase do oscilador %1 Osc %1 stereo phase-detuning Desafinación de fase en estéreo do oscilador %1 Osc %1 wave shape Forma da onda do oscilador %1 Modulation type %1 Tipo de modulación %1 Osc %1 waveform Forma de onda do oscilador %1 PatmanView Open other patch Abrir outro parche Click here to open another patch-file. Loop and Tune settings are not reset. Prema aquí para abrir outro ficheiro de parche. A configuración dos bucles e a afinación non se restauran. Loop Bucle Loop mode Modo de bucle Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. Aquí pódese alternar entre modos de bucle. Cando está activado, o PatMan emprega a información sobre o bucle dispoñíbel no ficheiro. Tune Afinación Tune mode Modo de afinación Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. Aquí pódese alternar entre modos de afinación. Cando está activado o Patman afina a mostra para que coincida coa frecuencia da nota. No file selected Non escolleu ningún ficheiro Open patch file Abrir un ficheiro de parches Patch-Files (*.pat) Ficheiros de parches (*.pat) PeakController Peak Controller Controlador de picos Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK PICO LFO Controller Controlador do LFO PeakControllerEffectControlDialog BASE BASE Base amount: Cantidade base: Modulation amount: Cantidade de modulación: Attack: Ataque: Release: Relaxamento: AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Valor base Modulation amount Cantidade de modulación Attack Ataque Release Relaxamento Mute output Silenciar a saída Abs Value Amount Multiplicator PianoView Base note Nota base Plugin Plugin not found Non se atopou o engadido The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Non se atopou o engadido «%1» ou non foi posíbel cargalo! Razón: «%2» Error while loading plugin Produciuse un erro ao cargar o engadido Failed to load plugin "%1"! Fallou a carga do engadido «%1»! ProjectRenderer WAV-File (*.wav) Ficheiro wav (*.wav) Compressed OGG-File (*.ogg) Ficheiro OGG comprimido (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: Nome: Maker: Creador: Copyright: Copyright: Requires Real Time: Require tempo real: Yes Si No Non Real Time Capable: Capacidade de tempo real: In Place Broken: En sitio rachado: Channels In: Canles de entrada: Channels Out: Canles de saída: File: Ficheiro: SampleBuffer Open audio file Abrir un ficheiro de son All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Todos os ficheiros de son (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) Ficheiros wave (*.wav) OGG-Files (*.ogg) Ficheiros OGG (*.ogg) DrumSynth-Files (*.ds) Ficheiros do DrumSynth (*.ds) FLAC-Files (*.flac) Ficheiros FLAC (*.flac) SPEEX-Files (*.spx) Ficheiros SPEEX (*.spx) MP3-Files (*.mp3) Ficheiros MP3 (*.mp3) VOC-Files (*.voc) Ficheiros VOC (*.voc) AIFF-Files (*.aif *.aiff) Ficheiros AIFF (*.aif *.aiff) AU-Files (*.au) Ficheiros AU (*.au) RAW-Files (*.raw) Ficheiros RAW (*.raw) SampleTCOView double-click to select sample faga duplo clic para escoller unha mostra Delete (middle mousebutton) Eliminar (botón do medio do rato) Cut Recortar Copy Copiar Paste Apegar Mute/unmute (<Ctrl> + middle click) Silenciar/Darlle volume (<Ctrl> + botón central do rato) Set/clear record Indicar/Limpar a gravación SampleTrack Sample track Pista de mostras Volume Volume SampleTrackView Track volume Volume da pista Channel volume: Volume da canle: VOL VOL TempoSyncKnob Tempo Sync Sincronización do tempo No Sync Non sincronizar Eight beats Oito tempos Whole note Redonda Half note Branca Quarter note Negra 8th note Corchea 16th note Semicorchea 32nd note Fusa Custom... Personalizada... &Help &Axuda Custom Personalizada Synced to Eight Beats Sincronizado a oito tempos Synced to Whole Note Sincronizado á redonda Synced to Half Note Sincronizado á branca Synced to Quarter Note Sincronizado á negra Synced to 8th Note Sincronizado á corchea Synced to 16th Note Sincronizado á semicorchea Synced to 32nd Note Sincronizado á fusa TimeDisplayWidget click to change time units TrackContainer Couldn't import file Non foi posíbel importar o ficheiro Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. Non foi posíbel atopar un filtro para importar o ficheiro %1. Debería converter este ficheiro a un formato que o LMMS recoñeza usando outro software. Couldn't open file Non foi posíbel abrir o ficheiro Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! Non foi posíbel abrir o ficheiro %1 para lelo. Asegúrese de ter permiso de lectura sobre o ficheiro e o directorio que o contén e tente de novo! Loading project... A cargar o proxecto... Cancel Cancelar Please wait... Agarde un anaco... Importing MIDI-file... A importar un ficheiro MIDI... Importing FLP-file... A importar un ficheiro FLP... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Empregar a modulación de fase para modular o oscilador 2 co oscilador 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 Empregar a modulación de amplitude para modular o oscilador 2 co oscilador 1 Mix output of oscillator 1 & 2 Misturar a saída dos osciladores 1 e 2 Synchronize oscillator 1 with oscillator 2 Sincronizar o oscilador 1 co oscilador 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Empregar a modulación de frecuencia para modular o oscilador 2 co oscilador 1 Use phase modulation for modulating oscillator 3 with oscillator 2 Empregar a modulación de fase para modular o oscilador 3 co oscilador 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 Empregar a modulación de amplitude para modular o oscilador 3 co oscilador 2 Mix output of oscillator 2 & 3 Misturar a saída dos osciladores 2 e 3 Synchronize oscillator 2 with oscillator 3 Sincronizar o oscilador 2 co oscilador 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Empregar a modulación de frecuencia para modular o oscilador 3 co oscilador 2 Osc %1 volume: Volume do oscilador %1: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Con este botón pódese indicar o volume do oscilador %1. Ao indicar un valor de 0 o oscilador apágase. Caso contrario pódese ouvir o oscilador tan alto como se indique aquí. Osc %1 panning: Panorámica do oscilador %1 With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Con este botón pódese indicar o panorama («panning») do oscilador %1. Un valor de -100 significa 100% esquerda e un valor de 100 move a saída do oscilador para a dereita. Osc %1 coarse detuning: Desafinación bruta do oscilador %1: semitones semitóns With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Con este botón pódese definir a desafinación bruta do oscilador %1. Pódese desafinar o oscilador 12 semitóns (unha oitava) para arriba e para abaixo. Isto é útil para crear sons cun acorde. Osc %1 fine detuning left: Desafinación fina esquerda do oscilador %1: cents cents With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Con este botón pódese indicar a desafinación fina do oscilador %1 pola canle esquerda. A desafinación fina ten como intervalo -100 cents e +100 cents. Isto é útil para crear sons «gordos». Osc %1 fine detuning right: Desafinación fina dereita do oscilador %1: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Con este botón pódese indicar a desafinación fina do oscilador %1 pola canle dereita. A desafinación fina ten como intervalo -100 cents e +100 cents. Isto é útil para crear sons «gordos». Osc %1 phase-offset: Desprazamento da fase do oscilador %1: degrees graos With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Con este botón pódese indicar o desprazamento de fase do oscilador %1. Iso significa que se pode mover o punto dunha oscilación no que o oscilador comeza a oscilar. Por exemplo, se se ten unha onda senoidal e un desprazamento de fase de 180 graos, a onda vai primeiro para abaixo. O mesmo acontece cunha onda cadrada. Osc %1 stereo phase-detuning: Desafinación de fase en estéreo do oscilador %1: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Conte este botón pódese indicar a desafinación de fase en estéreo do oscilador %1. A desafinación de fase en estéreo indica o tamaño da diferenza entre o desprazamento de fase das canles esquerda e dereita. Isto é moi bon para crear sons con estéreo amplo. Use a sine-wave for current oscillator. Empregar unha onda senoidal para este oscilador. Use a triangle-wave for current oscillator. Empregar unha onda triangular para este oscilador. Use a saw-wave for current oscillator. Empregar unha onda de dente de serra para este oscilador. Use a square-wave for current oscillator. Empregar unha onda cadrada para este oscilador. Use a moog-like saw-wave for current oscillator. Empregar unha onda de dente de serra tipo Moog para este oscilador. Use an exponential wave for current oscillator. Empregar unha onda exponencial para este oscilador. Use white-noise for current oscillator. Empregar ruído branco para este oscilador. Use a user-defined waveform for current oscillator. Empregar unha forma de onda predefinida para este oscilador. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin Abrir outro engadido de VST Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Prema aquí se desexa abrir outro engadido de VST. Ao premer este botón aparece un diálogo para abrir ficheiros no que se pode escoller o ficheiro. Show/hide GUI Mostrar/Agochar a interface gráfica Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Prema aquí para mostrar ou agochar a interface gráfica de usuario do engadido de VST. Turn off all notes Apagar todas as notas Open VST-plugin Abrir o engadido de VST DLL-files (*.dll) Ficheiros DLL (.*dll) EXE-files (*.exe) Ficheiros EXE (*.exe) No VST-plugin loaded Non se cargou ningún engadido de VST Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Save preset Gardar as predefinicións Click here, if you want to save current VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Preset Predefinición by - VST plugin control VstEffectControlDialog Show/hide Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Save preset Gardar as predefinicións Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin A cargar un engadido Please wait while loading VST-plugin... Agarde mentres se carga o engadido de VST... Failed loading VST-plugin Fallou a carga do engadido de VST The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Non foi posíbel cargar o engadido de VST %1 por algunha razón. Se funciona con outro software de VST en Linux, contacte cun desenvolvedor do LMMS! Open Preset Vst Plugin Preset (*.fxp *.fxb) : default " ' Save Preset .fxp .FXP .FXB .fxb ZynAddSubFxInstrument Portamento Filter Frequency Filter Resonance Bandwidth FM Gain Resonance Center Frequency Resonance Bandwidth Forward MIDI Control Change Events ZynAddSubFxView Show GUI Mostrar a interface gráfica Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Prema aquí para mostrar ou agochar a interface gráfica deusuario de ZynAddSubFX. Portamento: PORT Filter Frequency: FREQ FREQ Filter Resonance: RES RES Bandwidth: BW FM Gain: FM GAIN Resonance center frequency: RES CF Resonance bandwidth: RES BW Forward MIDI Control Changes audioFileProcessor Amplify Amplificar Start of sample Inicio da mostra End of sample Final da mostra Reverse sample Inverter a mostra Loop Bucle Stutter bassBoosterControlDialog FREQ FREQ Frequency: Frecuencia: GAIN GAIN Gain: Ganancia RATIO TAXA Ratio: Taxa: bassBoosterControls Frequency Frecuencia Gain Ganancia Ratio Taxa bbEditor Beat+Bassline Editor Editor de ritmos e liña do baixo Play/pause current beat/bassline (Space) Reproducir/Deter o ritmo/a liña do baixo actual (Espazo) Add beat/bassline Engadir un ritmo/liña do baixo Add automation-track Engadir unha pista de automatización Stop playback of current beat/bassline (Space) Parar a reprodución do ritmo/da liña do baixo actual (Espazo) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. Prema aquí para reproducir o ritmo/liña do baixo actual. O ritmo/liña do baixo repítese en bucle automaticamente ao chegar ao final. Click here to stop playing of current beat/bassline. Prema aquí para parar a reprodución do ritmo/liña do baixo actual. Remove steps Eliminar pasos Add steps Engadir pasos bbTCOView Open in Beat+Bassline-Editor Abrir no editor de ritmos e liña do baixo Reset name Restaurar o nome Change name Mudar o nome Change color Mudar a cor bbTrack Beat/Bassline %1 Ritmo/Liña do baixo %1 Clone of %1 bitInvader Samplelength bitInvaderView Sample Length Lonxitude da mostra Sine wave Onda senoidal Triangle wave Onda triangular Saw wave Onda de dente de serra Square wave Onda cadrada White noise wave Onda de ruído branco User defined wave Onda definida polo usuario Smooth Suave Click here to smooth waveform. Prema aquí para unha forma de onda suave. Interpolation Interpolación Normalize Normalizar Draw your own waveform here by dragging your mouse on this graph. Debuxe aquí a súa propia forma de onda arrastrando o rato polo gráfico. Click for a sine-wave. Prema para unha onda senoidal. Click here for a triangle-wave. Prema aquí para unha onda triangular. Click here for a saw-wave. Prema aquí para unha onda de dente de serra. Click here for a square-wave. Prema aquí para unha onda cadrada. Click here for white-noise. Prema aquí para ruído branco. Click here for a user-defined shape. Prema aquí para unha forma definida polo usuario. exportProjectDialog Export project to %1 Exportar o proxecto a %1 Error Erro Error while determining file-encoder device. Please try to choose a different output format. Produciuse un erro ao determinar o dispositivo codificador do ficheiro. Tente escollendo un formato de saída diferente. Rendering: %1% A renderizar: %1% Could not open file Non foi posíbel abrir o ficheiro Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! Non foi posíbel abrir o ficheiro %1 para escribir nel. Asegúrese de ter permisos sobre o ficheiro e o directorio que o contén e tente de novo! fader Please enter a new value between %1 and %2: Introduza un valor novo entre %1 e %2: fileBrowser Browser fileBrowserTreeWidget Send to active instrument-track Open in new instrument-track/Song-Editor Open in new instrument-track/B+B Editor Loading sample Please wait, loading sample for preview... --- Factory files --- graphModel Graph Gráfico kickerInstrument Start frequency Frecuencia inicial End frequency Frecuencia final Decay Decaemento Distortion Distorsión Gain Ganancia kickerInstrumentView Start frequency: Frecuencia inicial: End frequency: Frecuencia final: Decay: Decaemento: Distortion: Distorsión: Gain: Ganancia: knob &Help &Axuda Please enter a new value between -96.0 dBV and 6.0 dBV: Introduza un valor novo entre -96,0 dBV e 6,0 dBV: Please enter a new value between %1 and %2: Introduza un valor novo entre %1 e %2: ladspaBrowserView Available Effects Efectos dispoñíbeis Unavailable Effects Efectos non dispoñíbeis Instruments Instrumentos Analysis Tools Ferramentas de análise Don't know Non sei This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. Este diálogo mostra información sobre todos os engadidos de LADSPA que o LMMS deu localizado. Os engadidos divídense en cinco categorías baseándose nunha interpretación dos tipos e nomes dos portos. Os efectos dispoñíbeis son os que se poden empregar co LMMS. Para que o LMMS poida utilizar un efecto ten que ser, en primeiro lugar e o máis importante, un efecto, o que quere dicir que ten que ter tanto canles de entrada como canles de saída. O LMMS identifica unha canle de entrada como un porto de taxa de son que conteña «in» no nome. As canles de saída identifícanse coas letras «out». Alén disto, o efecto ten que ter o mesmo número de entradas que de saídas e ter capacidade de tempo real. Os efectos non dispoñíbeis son os que foron identificados como efectos mais que non tiñan o mesmo número de canles de entrada que de saída ou non tiñan capacidade de tempo real. Os instrumentos son engadidos nos que só se identificaron canles de saída . As ferramentas de análise son engadidos nos que só se identificaron canles de entrada. Os «non sei» son engadidos nos que non se identificaron canles de entrada nin de saída. Facendo duplo clic sobre calquera dos engadidos mostra información sobre os portos. Type: Tipo: ladspaDescription Plugins Engadidos Description Descrición ladspaPortDialog Ports Portos Name Nome Rate Taxa Direction Dirección Type Tipo Min < Default < Max Mín < Predefinido < Máx Logarithmic Logarítmica SR Dependent Dependente de SR Audio Son Control Control Input Entrada Output Saída Toggled Conmutado Integer Enteiro Float Vírgula flutuante Yes Si lb302Synth VCF Cutoff Frequency Frecuencia de corte do VCF VCF Resonance Resonancia do VCF VCF Envelope Mod Modo de envolvente do VCF VCF Envelope Decay Decaemento da envolvente do VCF Distortion Distorsión Waveform Forma da onda Slide Decay Decamento ao escorregar Slide Escorregar Accent Acento Dead Morte 24dB/oct Filter Filtro de 24dB/oitava lb302SynthView Cutoff Freq: Frec. de corte: Resonance: Resonancia: Env Mod: Mod env: Decay: Decaemento: 303-es-que, 24dB/octave, 3 pole filter Filtro tipo 303, 24dB/oitava, 3 polos Slide Decay: Decamento ao escorregar: DIST: DIST: Saw wave Onda de dente de serra Click here for a saw-wave. Prema aquí para unha onda de dente de serra. Triangle wave Onda triangular Click here for a triangle-wave. Prema aquí para unha onda triangular. Square wave Onda cadrada Click here for a square-wave. Prema aquí para unha onda cadrada. Rounded square wave Onda cadrada arredondada Click here for a square-wave with a rounded end. Prema aquí para unha onda cadrada con final arredondado. Moog wave Onda tipo Moog Click here for a moog-like wave. Prema aquí para unha onda tipo Moog. Sine wave Onda senoidal Click for a sine-wave. Prema para unha onda senoidal. White noise wave Onda de ruído branco Click here for an exponential wave. Prema aquí para unha onda exponencial. Click here for white-noise. Prema aquí para ruído branco. lb303Synth VCF Cutoff Frequency Frecuencia de corte do VCF VCF Resonance Resonancia do VCF VCF Envelope Mod Modo de envolvente do VCF VCF Envelope Decay Decaemento da envolvente do VCF Distortion Distorsión Waveform Forma da onda Slide Decay Decamento ao escorregar Slide Escorregar Accent Acento Dead Morte 24dB/oct Filter Filtro de 24dB/oitava lb303SynthView Cutoff Freq: Frec. de corte: CUT CORTE Resonance: Resonancia: RES RES Env Mod: Mod env: ENV MOD MOD ENV Decay: Decaemento: DEC DEC 303-es-que, 24dB/octave, 3 pole filter Filtro tipo 303, 24dB/oitava, 3 polos Slide Decay: Decamento ao escorregar: SLIDE Escorregar DIST: DIST: DIST DIST WAVE: ONDA: WAVE ONDA malletsInstrument Hardness Dureza Position Posición Vibrato Gain Ganancia do vibrato Vibrato Freq Frecuencia do vibrato Stick Mix Mestura de paus Modulator Modulador Crossfade Transición por esvaecemento LFO Speed Velocidade do LFO LFO Depth Profundidade do LFO ADSR ADSR Pressure Presión Motion Movemento Speed Velocidade Bowed Con arco Spread Propagar Marimba Marimba Vibraphone Vibráfono Agogo Agogó Wood1 Madeira1 Reso Wood2 Madeira2 Beats Golpes Two Fixed Dous fixos Clump Esmagar Tubular Bells Campás tubulares Uniform Bar Lámina uniforme Tuned Bar Lámina afinada Glass Vidro Tibetan Bowl Cunca tibetana Missing files Faltan ficheiros Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! A instalación de Stk semella estar incompleta. Asegúrese de que o paquete Stk completo está instalado! malletsInstrumentView Instrument Instrumento Spread Propagar Spread: Propagar: Hardness Dureza Hardness: Dureza: Position Posición Position: Posición: Vib Gain Gan. vib. Vib Gain: Gan. vib.: Vib Freq Frec. vib.: Vib Freq: Frec. vib.: Stick Mix Mestura de paus Stick Mix: Mestura de paus: Modulator Modulador Modulator: Modulador: Crossfade Transición por esvaecemento Crossfade: Transición por esvaecemento: LFO Speed Velocidade do LFO LFO Speed: Velocidade do LFO: LFO Depth Profundidade do LFO LFO Depth: Profundidade do LFO: ADSR ADSR ADSR: ADSR: Bowed Con arco Pressure Presión Pressure: Presión: Motion Movemento Motion: Movemento: Speed Velocidade Speed: Velocidade: Vibrato Vibrato Vibrato: Vibrato: manageVSTEffectView - VST parameter control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView - VST plugin control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help &Axuda opl2instrument Patch Parche Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Distorsión Volume Volume organicInstrumentView Distortion: Distorsión: Volume: Volume: Randomise Aleatorio Osc %1 waveform: Forma de onda do osciloscopio %1: Osc %1 volume: Volume do oscilador %1: Osc %1 panning: Panorámica do oscilador %1: Osc %1 fine detuning left: Desafinación fina esquerda do oscilador %1: cents cents papuInstrument Sweep time Tempo da varredura Sweep direction Dirección da varredura Sweep RtShift amount Cantidade de Cambio de varredura Wave Pattern Duty Padrón de onda Channel 1 volume Volume da canle 1 Volume sweep direction Dirección da varredura do volume Length of each step in sweep Lonxitude de cada paso en varredura Channel 2 volume Volume da canle 2 Channel 3 volume Volume da canle 3 Channel 4 volume Volume da canle 4 Right Output level Nivel da saída dereita Left Output level Nivel da saída esquerda Channel 1 to SO2 (Left) Canle 1 a SO1 (Esquerda) Channel 2 to SO2 (Left) Canle 2 a SO2 (Esquerda) Channel 3 to SO2 (Left) Canle 3 a SO2 (Esquerda) Channel 4 to SO2 (Left) Canle 4 a SO2 (Esquerda) Channel 1 to SO1 (Right) Canle 1 a SO1 (Dereita) Channel 2 to SO1 (Right) Canle 2 a SO1 (Dereita) Channel 3 to SO1 (Right) Canle 3 a SO1 (Dereita) Channel 4 to SO1 (Right) Canle 4 a SO1 (Dereita) Treble Agudos Bass Graves Shift Register width Cambiar a largura do rexistro papuInstrumentView Sweep Time: Tempo da varredura: Sweep Time Tempo da varredura Sweep RtShift amount: Cantidade de cambio de varredura: Sweep RtShift amount Cantidade de cambio de varredura Wave pattern duty: Padrón de onda de deber: Wave Pattern Duty Padrón de onda de deber Square Channel 1 Volume: Volume da canle cadrada 1: Length of each step in sweep: Lonxitude de cada paso en varredura: Length of each step in sweep Lonxitude de cada paso en varredura Wave pattern duty Padrón de onda de deber Square Channel 2 Volume: Volume da canle cadrada 2: Square Channel 2 Volume Volume da canle cadrada 2 Wave Channel Volume: Volume da canle de ondas: Wave Channel Volume Volume da canle de ondas Noise Channel Volume: Volume da canle de ruído: Noise Channel Volume Volume da canle de ruído SO1 Volume (Right): Volume de SO1 (Dereita): SO1 Volume (Right) Volume de SO1 (Dereita) SO2 Volume (Left): Volume de SO2 (Esquerda): SO2 Volume (Left) Volume de SO2 (Esquerda) Treble: Agudos: Treble Agudos Bass: Graves: Bass Graves Sweep Direction Dirección da varredura Volume Sweep Direction Dirección da varredura do volume Shift Register Width Cambiar a largura do rexistro Channel1 to SO1 (Right) Canle 1 a SO1 (Dereita) Channel2 to SO1 (Right) Canle 1 a SO1 (Dereita) Channel3 to SO1 (Right) Canle 3 a SO1 (Dereita) Channel4 to SO1 (Right) Canle 4 a SO1 (Dereita) Channel1 to SO2 (Left) Canle 1 a SO2 (Esquerda) Channel2 to SO2 (Left) Canle 2 a SO2 (Esquerda) Channel3 to SO2 (Left) Canle 3 a SO2 (Esquerda) Channel4 to SO2 (Left) Canle 4 a SO2 (Esquerda) Wave Pattern Padrón de onda The amount of increase or decrease in frequency A cantidade de aumento ou redución da frecuencia The rate at which increase or decrease in frequency occurs A taxa á que se produce o aumento ou a redución da frecuencia The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. O ciclo de deber é a relación entre a duración (tempo) durante a que un sinal está ACTIVO fronte ao período total do sinal. Square Channel 1 Volume Volume da canle cadrada 1 The delay between step change A demora entre cambios de paso Draw the wave here Debuxe a onda aquí pattern Cannot freeze pattern Non é posíbel conxelar o padrón The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! Non é posíbel conxelar agora o padrón porque estamos no modo de reprodución. Pare e ténteo de novo! patternFreezeStatusDialog Freezing pattern... A conxelar o padrón... Cancel Cancelar patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step faga duplo clic para abrir este padrón na pianola empregue a roda do rato para modificar o volume un paso Open in piano-roll Abrir na pianola Clear all notes Limpar todas as notas Reset name Restaurar o nome Change name Mudar o nome Refreeze Reconxelar Freeze Conxelar Unfreeze Desconxelar Add steps Engadir pasos Remove steps Eliminar pasos PianoRoll Play/pause current pattern (Space) Reproducir/Deter o padrón actual (Espazo) Stop playing of current pattern (Space) Parar a execución do padrón actual (Espazo) Cut selected notes (Ctrl+X) Recortar as notas escollidas (Ctrl+X) Copy selected notes (Ctrl+C) Copiar as notas escollidas (Ctrl+C) Paste notes from clipboard (Ctrl+V) Apegar as notas do porta-retallos (Ctrl+V) Piano-Roll - no pattern Pianola - non hai ningún padrón Piano-Roll - %1 Pianola - %1 Please open a pattern by double-clicking on it! Abra un padrón facendo duplo clic nel! Record notes from MIDI-device/channel-piano Gravar notas dun dispositivo MIDI/piano de canle Record notes from MIDI-device/channel-piano while playing song or BB track Gravar notas dun dispositivo MIDI/piano de canle mentres se reproduce a canción ou pista de ritmos/liña do baixo Draw mode (Shift+D) Modo de debuxo (Maiúsculas+D) Erase mode (Shift+E) Modo de borrado (Maiúsculas+E) Select mode (Shift+S) Modo de selección (Maiúscula+S) Last note Última nota Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Prema aquí para reproducir este padrón. Isto é útil mentres se edita. O padrón repítese en bucle automaticamente ao chegar ao final. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Prema aquí para gravar notas desde un dispositivo MIDI ou desde o piano de proba virtual da xanela da canle correspondente no padrón actual. As notas tocadas ao gravar escríbense neste padrón e despois pódense editar. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Prema aquí para gravar notas desde un dispositivo MIDI ou desde o piano de proba virtual da xanela da canle correspondente no padrón actual. As notas tocadas ao gravar escríbense neste padrón e escóitase a canción ou pista de ritmos/liña do baixo no fondo. Click here to stop playback of current pattern. Prema aquí para parar a reprodución deste padrón. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Prema aquí e os valores escollidos recórtanse e van para o porta-retallos. Pódeos apegar en calquera lugar de calquera padrón premendo o botón de apegar. Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Prema aquí e os valores escollidos cópianse no porta-retallos. Pódeos apegar en calquera lugar de calquera padrón premendo o botón de apegar. Click here and the notes from the clipboard will be pasted at the first visible measure. Prema aquí e os valores do porta-retallos apegaranse no primeiro compás visíbel. Note lock Bloqueo de notas Note Volume Volume das notas Note Panning Panormámica das notas Detune mode (Shift+T) Modo de desafinación (Maiúsculas+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Prema aquí e o activarase o modo de debuxo. Neste modo pode engadir e mover valores individuais. Este é o modo por omisión que se emprega a maior parte do tempo. Tamén pode premer «Maiúsculas+D» no teclado para activar este modo. Neste modo, manteña Ctrl para ir temporalmente ao modo de selección. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Prema aquí e activarase o modo de borrado. Neste modo pódense borrar valores individuais. Tamén pode premer «Maiúsculas+E» no teclado para activar este modo. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Prema aquí e activarase o modo de borrado. Neste modo pódense borrar valores individuais. Como alternativa pode premer Ctrl no modo de debuxo para empregar temporalmente o modo de selección. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Prema aquí e actívase o modo de desafinación.Neste modo pódese premer unhanota para abrir a súa desafinación de automatización. Pódese empregar isto para escorregar entre as notas. Tamén se pode premer «Maiúsculas+T» no teclado para activar este mdo. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser no description sen descrición Instrument plugins Engadidos de instrumento Incomplete monophonic imitation tb303 Imitación monofónica incompleta tb303 Plugin for freely manipulating stereo output Engadido para manipular libremente a saída en estéreo Plugin for controlling knobs with sound peaks Engadido para controlar botóns con picos de son Plugin for enhancing stereo separation of a stereo input file Engadido para mellorar a separación en estéreo dun ficheiro de entrada en estéreo List installed LADSPA plugins Enumerar os engadidos de LADSPA instalados three powerful oscillators you can modulate in several ways tres potentes osciladores que se poden modular de varias maneiras Filter for importing FL Studio projects into LMMS Filtro para importar proxectos do FL Studio ao LMMS versatile kick- & bassdrum-synthesizer sintetizador de kick e tambor baixo versátil GUS-compatible patch instrument Instrumento de parcheo compatíbel con GUS plugin for using arbitrary VST-effects inside LMMS. engadido para empregar efectos de VST arbitrarios no LMMS. Additive Synthesizer for organ-like sounds Sintetizador aditivo para sons tipo órgano plugin for boosting bass engadido para potenciar os graves Tuneful things to bang on Cousas melodiosas nas que bater simple sampler with various settings for using samples (e.g. drums) in an instrument-track sampleador simple con varias opcións para empregar mostras (p.ex. batería) nunha pista de instrumento VST-host for using VST(i)-plugins within LMMS Hóspede de VST para empregar engadidos de VST(i) co LMMS Vibrating string modeler Modelador de cordas vibrantes plugin for using arbitrary LADSPA-effects inside LMMS. engadido para empregar efectos de LADSPA arbitrarios no LMMS. Filter for importing MIDI-files into LMMS Filtro para importar ficheiros MIDI ao LMMS Instrument browser Navegador de instrumentos Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. Arrastre un instrumento para o Editor de cancións, o Editor de ritmos+liña do baixo ou para unha pista de instrumento existente. Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulación dos SID MOS6581 e o MOS8580. Este chip empregábase no computador Commodore 64. Player for SoundFont files Reprodutor de ficheiros SoundFont Emulation of GameBoy (TM) APU Emulación da APU da GameBoy (TM) Customizable wavetable synthesizer Sintetizador de táboa de ondas personalizábel Embedded ZynAddSubFX ZynAddSubFX incorporado Filter for importing Hydrogen files into LMMS 2-operator FM Synth LMMS port of sfxr projectNotes Project notes Notas do proxecto Put down your project notes here. Anote aquí as súas notas sobre o proxecto. Edit Actions Editar as accións &Undo Desfa&cer Ctrl+Z Ctrl+Z &Redo &Refacer Ctrl+Y Ctrl+Y &Copy &Copiar Ctrl+C Ctrl+C Cu&t Cor&tar Ctrl+X Ctrl+X &Paste A&pegar Ctrl+V Ctrl+V Format Actions Accións de formato &Bold &Negrita Ctrl+B Ctrl+B &Italic Cursi&va Ctrl+I Ctrl+I &Underline S&ubliñado Ctrl+U Ctrl+U &Left &Esquerda Ctrl+L Ctrl+L C&enter C&entro Ctrl+E Ctrl+E &Right De&reita Ctrl+R Ctrl+R &Justify &Xustificar Ctrl+J Ctrl+J &Color... &Cor... renameDialog Rename... Mudar o nome... setupDialog Setup LMMS Configuración do LMMS General settings Configuración xeral BUFFER SIZE TAMAÑO DO BÚFER Reset to default-value Restaurar o valor por omisión MISC DIVERSOS Enable tooltips Activar as axudiñas Show restart warning after changing settings Mostrar o aviso sobre o reinicio despois de cambiar a configuración Display volume as dBV Mostrar o volume como dBV Compress project files per default Comprimir os ficheiros dos proxectos por omisión HQ-mode for output audio-device Modo de calidade alta para o dispositivo de son de saída LMMS working directory Directorio de traballo do LMMS VST-plugin directory Directorio dos engadidos de VST Artwork directory Directorio do material gráfico FL Studio installation directory Directorio de instalación do FL Studio STK rawwave directory Directorio de ondas cruas de STK Performance settings Configuración do desempeño UI effects vs. performance Efectos da interface fronte a desempeño Audio settings Configuración do son AUDIO INTERFACE INTERFACE DO SON MIDI settings Configuración do MIDI MIDI INTERFACE INTERFACE MIDI OK Aceptar Cancel Cancelar Restart LMMS Reiniciar o LMMS Please note that most changes won't take effect until you restart LMMS! Teña en conta que a maioría dos cambios non serán efectivos até que se reinicie o LMMS! Frames: %1 Latency: %2 ms Cadencia: %1 Latencia: %2 ms Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Aquí pódese configurar o tamaño do búfer interno empregado polo LMMS. Valores máis pequenos resultan nunha latencia menor mais poden tamén causar son non usábel ou desempeño inadecuado, especialmente en computadores vellos ou en sistemas cun kernel que non sexa de tempo real. Choose LMMS working directory Escoller o directorio de traballo do LMMS Choose your VST-plugin directory Escoller o directorio dos engadidos de VST Choose artwork-theme directory Escoller o directorio do material gráfico Choose FL Studio installation directory Escoller o directorio de instalación do FL Studio Choose LADSPA plugin directory Escoller o directorio dos engadidos de LADSPA Choose STK rawwave directory Escoller o directorio de ondas cruas de STK Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Aquí pódese escoller a interface de son preferida. Dependendo da configuración do sistema durante a compilación pódese escoller entre ALSA, JACK, OSS e máis. Embaixo vese unha caixa que oferece controles para configurar a interface de son escollida. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Aquí pódese escoller a interface de MIDI preferida. Dependendo da configuración do sistema durante a compilación pódese escoller entre ALSA, OSS e máis. Embaixo vese unha caixa que oferece controles para configurar a interface de MIDI escollida. Paths Rutas LADSPA plugin paths Rutas aos engadidos de LADSPA Default Soundfont File Ficheiro Soundfont por omisión Background artwork Gráficos do fondo Choose default SoundFont Escoller a SoundFont por omisión Choose background artwork Escoller os gráficos do fondo One instrument track window mode Compact track buttons Sync VST plugins to host playback Smooth scroll in Song Editor Enable auto save feature Show playback cursor in AudioFileProcessor Enable note labels in piano roll Enable waveform display by default sf2Instrument Bank Banco Patch Parche Gain Ganancia Reverb Reverberación Reverb Roomsize Tamaño da sala de reverberación Reverb Damping Tampón de reverberación Reverb Width Largura da reverberación Reverb Level Nivel de reverberación Chorus Coro Chorus Lines Liñas do coro Chorus Level Nivel do coro Chorus Speed Velocidade do coro Chorus Depth Profundidade do coro sf2InstrumentView Open other SoundFont file Abrir outro ficheiro de SoundFont Click here to open another SF2 file Prema aquí para abrir outro ficheiro de SF2 Choose the patch Escoller o parche Gain Ganancia Apply reverb (if supported) Aplicar reverberación (se o admitir) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. Este botón activa o efecto de reverberación. Isto é útil para efectos gaioleiros, mais só funciona cos ficheiros que o admiten. Reverb Roomsize: Tamaño da sala de reverberación: Reverb Damping: Tampón de reverberación: Reverb Width: Largura da reverberación: Reverb Level: Nivel de reverberación: Apply chorus (if supported) Aplicar un coro (se o admitir) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Este botón activa o efecto de coro. Isto é útil para efectos de echo gaioleiros, mais só funciona cos ficheiros que o admiten. Chorus Lines: Liñas de coro: Chorus Level: Nivel do coro: Chorus Speed: Velocidade do coro: Chorus Depth: Profundidade do coro: Open SoundFont file Abrir un ficheiro de SoundFont SoundFont2 Files (*.sf2) Ficheiros de SoundFont2 (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Corte Resonance Resonancia Filter type Tipo de filtro Voice 3 off Voz 3 apagada Volume Volume Chip model Modelo de chip sidInstrumentView Volume: Volume: Resonance: Resonancia: Cutoff frequency: Frecuencia de corte: High-Pass filter Filtro pasa-alta Band-Pass filter Filtro pasa-faixa Low-Pass filter Filtro pasa-baixa Voice3 Off Voz3 apagada MOS6581 SID SID MOS6581 MOS8580 SID SID MOS6580 Attack: Ataque: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. A taxa de ataque determina como de rápido sobe a Voz %1 desde cero á amplitude de pico. Decay: Decaemento: Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. A taxa de decaemento determina como de rápido cae a saída desde a amplitude de pico ao nivel de Sustentación escollido. Sustain: Sustentación: Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. A saída da voz %1 fica na amplitude de sustentación indicada mentres se manteña a nota. Release: Relaxamento: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. A saída da voz %1 cae desde a amplitude de sustentación até cero na relación de relaxamento escollida. Pulse Width: Largura do pulso: The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. A resolución da largura do pulso permite varrer a largura suavemente sen que sexa posíbel discernir os pasos. Hai que escoller a forma de onda pulso no oscilador %1 para que se ouza un efecto audíbel. Coarse: Crú: The Coarse detuning allows to detune Voice %1 one octave up or down. A desafinación crúa permite desafinar a voz %1 unha oitava para arriba ou para abaixo. Pulse Wave Onda de pulso Triangle Wave Onda triangular SawTooth Dente de serra Noise Ruído Sync Sincronizar Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Sincroniza a frecuencia fundamental do oscilador %1 coa frecuencia fundamental do oscilador %2, producindo efectos de «sincronización dura». Ring-Mod Modo anel Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. O modo anel substitúe a saída da onda de forma triangular do oscilador %1 cunha combinación «modulada en anel» dos osciladores %1 e %2. Filtered Filtrado When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Cando Filtrado está activado, a voz %1 procésase a través do filtro. Cando Filtrado está desactivado, a voz %1 aparece directamente na saída e o filtro non ten ningún efecto sobre ela. Test Proba Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. Proba, cando escollido, restaura e bloquea o oscilador %1 a cero até que remate a proba. song Tempo Tempo Master volume Volume global Master pitch Altura global Project saved Proxecto gravado The project %1 is now saved. O proxecto %1 xa está gravado. Project NOT saved. O proxecto NON está gravado. The project %1 was not saved! O proxecto %1 no nestá gravado! Import file Importar un ficheiro untitled sen título Select file for project-export... Escolla o ficheiro para a exportación do proxecto... Empty project Proxecto baleiro This project is empty so exporting makes no sense. Please put some items into Song Editor first! Este proxecto está baleiro, polo que exportalo non ten xeito. Poña algo primeiro no Editor de cancións! MIDI sequences Secuencias de MIDI FL Studio projects Proxectos de FL Studio All file types Todos os tipos de ficheiro Hydrogen projects Select directory for writing exported tracks... SongEditor Song-Editor Editor de cancións Play song (Space) Reproducir unha canción (Espazo) Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. Prema aquí se desexa reproducir a canción enteira. A reprodución comeza no marcador de posición da canción (verde). Tamén se pode mover durante a reprodución. Stop song (Space) Parar a canción (Espazo) Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. Prema aquí se desexa parar a reprodución da canción. O marcador de posición da canción irá para o principio da canción. Add beat/bassline Engadir un ritmo/liña do baixo Add sample-track Engadir unha pista de mostra Could not open file Non foi posíbel abrir o ficheiro Could not write file Non foi posíbel escribir no ficheiro Add automation-track Engaidr unha pista de automatización Draw mode Modo de debuxo Edit mode (select and move) Modo de edición (escoller e mover) Record samples from Audio-device Gravar mostras dun dispositivo de son Record samples from Audio-device while playing song or BB track Gravar mostras dun dispositivo de son mentres se reproduce a canción ou pista de ritmos/liña do baixo Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Non foi posíbel abrir o ficheiro %1. Probabelmente vostede non teña permiso para ler este ficheiro. Asegúrese de ter cando menos permiso para ler o ficheiro e ténteo de novo. Error in file Hai un erro no ficheiro The file %1 seems to contain errors and therefore can't be loaded. Parece que o ficheiro %1 contén erros e por iso non se pode cargar. Tempo Tempo TEMPO/BPM TEMPO/BPM tempo of song tempo da canción The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). O tempo dunha canción indícase en pulsos por minuto (BPM). Para cambiar o tempo da canción hai que cambiar este valor. Cada compás ten catro pulsos, polo que o tempo en BPM indica cantos compases / 4 hai que tocar nun minuto (ou cantos compases habería que tocar en catro minutos). High quality mode Modo de alta calidade Master volume Volume global master volume volume global Master pitch Altura global master pitch altura global Value: %1% Valor: %1% Value: %1 semitones Valor: %1 semitóns Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Espectro linear Linear Y axis Eixo linear Y spectrumAnalyzerControls Linear spectrum Espectro linear Linear Y-axis Eixo linear Y Channel mode Modo da canle stereoEnhancerControlDialog WIDE LARGO Width: Largura: stereoEnhancerControls Width Largura stereoMatrixControlDialog Left to Left Vol: Volume esquerda para esquerda: Left to Right Vol: Volume esquerda para dereita: Right to Left Vol: Volume dereita para esquerda: Right to Right Vol: Volume dereita para dereita: stereoMatrixControls Left to Left Esquerda para esquerda Left to Right Esquerda para dereita Right to Left Dereita para esquerda Right to Right Dereita para dereita timeLine Enable/disable auto-scrolling Activar/Desactivar o desprazamento automático Enable/disable loop-points Activar/Desactivar os puntos de bucle After stopping go back to begin Despois de parar voltar ao principio After stopping go back to position at which playing was started Despois de parar voltar á posición na que se iniciou a reprodución After stopping keep position Despois de parar manter a posición Hint Suxestión Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted Silenciado Solo Solo trackContentObject Muted Silenciado trackContentObjectView Current position Posición actual Hint Suxestión Press <Ctrl> and drag to make a copy. Prema <Ctrl> e arrastre para facer unha copia. Current length Duración actual Press <Ctrl> for free resizing. Prema <Ctrl> para modificar o tamaño libremente %1:%2 (%3:%4 to %5:%6) %1:%2 (%3:%4 a %5:%6) Delete (middle mousebutton) Eliminar (botón do medio do rato) Cut Recortar Copy Copiar Paste Apegar Mute/unmute (<Ctrl> + middle click) Silenciar/Darlle volume (<Ctrl> + botón central do rato) trackOperationsWidget Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Prema <Ctrl> mentres ten a asa de mover premida para iniciar unha acción de arrastrar e soltar. Actions for this track Accións para esta pista Mute Silenciar Mute this track Silenciar esta pista Solo Solo Clone this track Clonar esta pista Remove this track Eliminar esta pista vestigeInstrument Loading plugin A cargar un engadido Please wait while loading VST-plugin... Agarde mentres se carga o engadido de VST... Failed loading VST-plugin Fallou a carga do engadido de VST The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Non foi posíbel cargar o engadido de VST %1 por algunha razón. Se funciona con outro software de VST en Linux, contacte cun desenvolvedor do LMMS! vibed String %1 volume Volume da corda %1 String %1 stiffness Tensión da corda %1 Pick %1 position Posición da púa %1 Pickup %1 position Posición do captador %1 Pan %1 Pan %1 Detune %1 Desafinar %1 Fuzziness %1 Difuso %1 Length %1 Lonxitude %1 Impulse %1 Impulso %1 Octave %1 Oitava %1 vibedView Volume: Volume: The 'V' knob sets the volume of the selected string. O botón «V» indica o volume da corda escollida. String stiffness: Tensión da corda: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. O botón «S» indica a tensión da corda escollida. A tensión da corda afecta ao tempo durante o que esta soa. Canto menor sexa, máis tempo ha de soar. Pick position: Posición da púa: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. O botón «P» indica a posición na que se pulsa a corda escollida. Canto menor sexa, máis próxima estará da ponte. Pickup position: Posición do captador: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. O botón «PU» indica a posición desde a que se recollen as vibracións da corda escollida. Canto menor sexa, máis próximo será da ponte. Pan: Pan: The Pan knob determines the location of the selected string in the stereo field. O botón Pan determina o lugar que ocupa a cadea escollida no campo estéreo. Detune: Desafinar: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. O botón Desafinar modifica a altura da corda escollida. Indicar menos de cero fai que a corda soe plana. Con máis de cero a corda soará viva. Fuzziness: Difuso: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. O botón Slap engádelle algo de distorsión tipo «fuzz» á corda escollida que se nota máis durante o ataque, aínda que tamén se pode usar para facer que a corda soe máis «metálica». Length: Lonxitude: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. O botón Lonxitude indica a lonxitude da corda escollida. As cordas máis longas soan durante máis tempo e con máis brillo; porén, tamén consumen máis ciclos da CPU. Impulse or initial state Impulso ou estado inicial The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. O selector «Imp» determina se hai que tratar a forma de onda do gráfico como un impulso impartido na corda pola púba ou o estado inicial da corda. Octave Oitava The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. O selector Oitava emprégase para escoller con que harmónico da nota soa a corda. Por exemplo, «-2» significa que a corda soa dúas oitavas por debaixo da fundamental, «F» significa que a corda soa na fundamental e «6» significa que a cadea soa seix oitavas por riba da fundamental. Impulse Editor Editor de impulsos The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. O editor de formas de onda permite controlar o estado inicial ou impulso usado para facer que a corda comece a vibrar. Os botóns que hai á dereita da gráfica inicializan a forma de onda no tipo escollido. O botón «?» carga unha forma de onda desde un ficheiro - só se cargan as primeiras 128 mostras. A forma de onda tamén se pode debuxar na gráfica. O botón «S» suaviza a forma de onda. O botón «N» normaliza a forma de onda. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Vibed modela até nove cordas vibrando independentemente. O selector «Corda» permite escoller a corda que se desexe editar. O selector «Imp» escolle se o gráfico representa un impulso ou o estado inicial da corda. O selector «Oitava» escolle o harmónico co que debería vibrar a corda. A gráfica permite controlar o estado inicial ou o impulso usados para pór a corda en movemento. O botón «V» controla o volume. O botón «S» controla a tensión.da corda. O botón «P» controla a posición da púa. O botón «PU» controla a posición de observación. «Pan» e «Detune» non deberían precisar explicación. O botón «Slap» engádelle un pouco de distorsión tipo «fuzz» ao son da corda. O botón «Lonxitude» controla a lonxitude da corda. O LED do recanto inferior dereito do editor da forma da onda determina se a corda está activa no instrumento. Enable waveform Activar a forma de onda Click here to enable/disable waveform. Prema aquí para activar/desactivar a forma da onda. String Corda The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. O selector Corda emprégase para escoller a corda que editan os controles. Un instrumento de Vibed pode conter até nove cordas vibrando independentemente. O LED do recanto inferior dereito do editor da forma da onda indica se a corda escollida esstá activada. Sine wave Onda senoidal Triangle wave Onda triangular Saw wave Onda de dente de serra Square wave Onda cadrada White noise wave Onda de ruído branco User defined wave Onda definida polo usuario Smooth Suave Click here to smooth waveform. Prema aquí para unha forma de onda suave. Normalize Normalizar Click here to normalize waveform. Prema aquí para normalizar a forma da onda. &Help &Axuda Use a sine-wave for current oscillator. Empregar unha onda senoidal para este oscilador. Use a triangle-wave for current oscillator. Empregar unha onda triangular para este oscilador. Use a saw-wave for current oscillator. Empregar unha onda de dente de serra para este oscilador. Use a square-wave for current oscillator. Empregar unha onda cadrada para este oscilador. Use white-noise for current oscillator. Empregar ruído branco para este oscilador. Use a user-defined waveform for current oscillator. Empregar unha forma de onda predefinida para este oscilador. visualizationWidget click to enable/disable visualization of master-output Prema para des/activar a visualización da saída global Click to enable Prema para activar voiceObject Voice %1 pulse width Largo do pulso da voz %1 Voice %1 attack Ataque da voz %1 Voice %1 decay Decamento da voz %1 Voice %1 sustain Sustentación da voz %1 Voice %1 release Relaxamento da voz %1 Voice %1 coarse detuning Desafinación bruta da voz %1 Voice %1 wave shape Fonda da onda da voz %1 Voice %1 sync Sincronización da voz %1 Voice %1 ring modulate Modulación de anel da voz %1 Voice %1 filtered Filtrado da voz %1 Voice %1 test Proba da voz %1 lmms-1.0.0+bzr2569/data/locale/it.qm0000644000000000000000000056344511517317720015075 0ustar 00000000000000 3/qp/wFC9CDEheį LzyV~ UYo YYUZ&b[d[EjEA l#}1W #}3WA(ON*$*y**0c*0i1*0*0(2*0xC*0*0+++-+++į/N#3yF5f+6uf 9giK9kYK493:d=_dLx@dMz@TkxE 5EZqF|t7GGkGGHjHH!HzHz(HI;N ImImJ'ApJ+FJ<@2JgJmJuPKLbryM5M_DMwMz]N(NhuObz{PW/PWS}AQMS}CQ}SUSSbSS-T.OTZ T.?TʴqITʴx3TxҼUQ*U`>UjVb Vb\:Vh_V+V 1V{V%WiWa4WUX X {X`Z/Z/sZkpZkZSZoRZoa[[j/\]6 ]iX^eq^ercNių(iųRgiųszyZStUZtbZv=|}/4|}}U,x~#%P;;_Bϙ^`\@v C_u_$eGN?7Y) 7iuy=yק1Yק3Y9@QOn&44шJ} bP b >  ] C>z/Nc_+`+U_unws"R/Vk2{7"7o9}09U; =@1x1@۴CpFzoFzJJ9MUTOXPOX^P0UV|Z;nZ;`1xXaUm:/p>7w80z;~o>vu&t+hɄyʭi7(-xՙծh*~8w z<,lyߺV4o`o.;CBaA d|*+ DQ/hYT8J1gdhxa3a (^Y(^6)u,´ f.w4N;: ֖Roa_/bbr%V=t-|xż7]9K%)8n,C,G GGhG:?E?))7)\)wf32o9>>O>ѻ܏Gv3t>v Qgo-~-թsos7s DG2%[uI.Q% :2Q(478Jb8Р:)% @CBHH>{I[YIOXfP~k/P~zSkϡWa/Z.P]}0]Y] /l6lhPlouRxxȣzӊ|Z0U|Z<}",}Q}R~~Ő&ĩ#R$#5#y+.>eN7x|(#%_A~~oWFĽ6UPϯCѫ46=6~קAKקCKNڴքmܗj1"k,l7왞negB =Rչ ?3Y<. ev` 0(M*($)e 1019W:^;:S<<<<0A UٙCYZhFA> JTKʁM$MtMк`PJ0PJh PJ6Qq.YQq.`wnAwwhxYZ;%yTZyT{ (N}F[9 jT NxMJu.u%u&/u&u' uuu, zI{SV<I_InIIhIqhNi*JZ*iqs ?r > q vZ=7Bx9~OˤUžՔ!EPYͥ׸2/2N(&d59غ9ؽ`^Ah fn\tV t1: up uZ @Xl;*1T Ύ-(8$0%)-U#o15Pi7eR7eS7UR8?~QEzCF^F^H8'PeyQQZ\C.{`aE{/a*ifuhqh93h;ll̠lvpӲs vA }o."YA5AkjK]*_̂,F1[wpaWj%N?fnfzttG*tU*t }Þu%%o^94!Zb;EU Z=<5 <5<5͹<5+<5 <58sfߺi˳Dv}ljZC:N^) =E1EE*iVtxV#EC)'vU+pZl1UN=1^6{:gNS#:U)?[@$`C*C*C*:C*A,GkHM9. N9xgQ)XWjqWd%Z+p[e[il@ldmB"rgmz' CPʱP P1iQ"-Y#Fi ..w9<5g5h2>2GT7g hAh(z7h",Y2vcRA2ޔrTAti>t7WwqPrX Ů8 g zyX-4)%) GiYSBU!E' )' )R)z*GBz,D5n8}!;);Z? ~IUIBUIZZ[t\X.acDIcz/hFUfhJV8aiANtm.Jw y %(y %   jj>j)/>M2_2 ]d'MTSH)2Q# SS B L: U}ٚX$ϞQ-I-?% > )! ) j B1Z B17 ^Mf `gf ` 9j `  n; F w Kn d (  ]7 UU( u(e R U- 1a )d N % \ R ~D ·~ *2 ʧ ʵ) ˔  J\ DZ NR ؋a ہ4 DK G *} _  G  . I9%: ". $ r 'm0 )x +q - N Om STnY STn \ \] ]m ` eE9 m u m  m 4 m  s TF u: & e $n ' (d f ? }l Nd2 Nia J V U hy 2G 2s 8AK Ɵ Ƶ8g ^ 4]9 ӗ`% ӰO غ] <4 <H e SԳ Y:K Y: Y: ~d i 7  n . .g .h . ʓ_  "k "( $&y{ + 6 +  * + @ -## - - 5ݙ l>rP  ^N e>PfS'n~Vi'2i: y1 !Xx&ʮ1 R1 2,;}<)B>gGPAQ>Y~]ad^ylcgzln#dyOpնl:N!?=<m`9q`9Ș$aSW/z/P:=Nd'\ ^+ |[~:"1$e()3!7WCgfD>DI{JiJi_U&VXҾ׊Z S[x*j[j^ Et` wm4+ygtRk**7Kn g¥I Lw ƳO~ޝ~iIőrܹiInformazioni suAbout AboutDialogArpeggioArpeggio Arpeggiator.Direzione dell'arpeggioArpeggio direction Arpeggiator$Gate dell'arpeggio Arpeggio gate Arpeggiator$Modo dell'arpeggio Arpeggio mode Arpeggiator,Ampiezza dell'arpeggioArpeggio range Arpeggiator&Tempo dell'arpeggio Arpeggio time Arpeggiator Tipo di arpeggio Arpeggio type ArpeggiatorGiDown Arpeggiator LiberoFree ArpeggiatorCasualeRandom ArpeggiatorOrdinatoSort ArpeggiatorSincronizzatoSync ArpeggiatorSuUp ArpeggiatorSu e gi Up and down Arpeggiator%%ArpeggiatorViewARPEGGIOARPEGGIOArpeggiatorView^Un arpeggio un modo di suonare alcuni strumenti (pizzicati in particolare), che rende la musica pi viva. Le corde di tali strumenti (ad es. un'arpa) vendono pizzicate come accordi. L'unica differenza che ci viene fatto in ordine sequenziale, in modo che le note non vengano suonate allo stesso tempo. Arpeggi tipici sono quelli sulle triadi maggiore o minore, ma ci sono molte altre possibilit tra le quali si pu scegliere.An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select.ArpeggiatorView&Gate dell'arpeggio:Arpeggio gate:ArpeggiatorView.Ampiezza dell'arpeggio:Arpeggio range:ArpeggiatorView(Tempo dell'arpeggio:Arpeggio time:ArpeggiatorViewDirezione: Direction:ArpeggiatorViewGATEGATEArpeggiatorView Modo:Mode:ArpeggiatorViewAMPIEZZARANGEArpeggiatorView TEMPOTIMEArpeggiatorViewQuesta manopola imposta il gate dell'arpeggio. Il gate dell'arpeggio specifica la percentuale di ogni nota che deve essere eseguita. In questo modo si possono creare arpeggi particolari, con le note staccate.Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios.ArpeggiatorViewQuesta manopola imposta l'ampiezza in ottave dell'arpeggio. L'arpeggio selezionato verr suonato all'interno del numero di ottave impostato.Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves.ArpeggiatorViewBQuesta manopola imposta l'ampiezza dell'arpeggio in millisecondi. Il tempo dell'arpeggio specifica per quanto tempo ogni nota dell'arpeggio deve essere eseguita.Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played.ArpeggiatorViewmsmsArpeggiatorViewottava(e) octave(s)ArpeggiatorView CANALICHANNELSAudioAlsa::setupWidgetPERIFERICADEVICEAudioAlsa::setupWidgetAmplificazione:Amplify:AudioFileProcessorView Clicca qui per aprire un altro file audio. Apparir una finestra di dialogo dove sar possibile scegliere il file. Impostazioni come la modalit ripetizione, amplificazione e cos via non vengono reimpostate, pertanto potrebbe non suonare come il file originale.Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample.AudioFileProcessorViewPunto di fine: Endpoint:AudioFileProcessorViewQui possibile impostare se la modalit ripetizione attiva. AudioFileProcessor riproduce tra i punti di inizio e fine di un campione finch tutta la nota stata suonata. Ci utile per campioni di strumenti a corda e cori.Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples.AudioFileProcessorViewAttivando questo pulsante, l'intero campione viene invertito. Ci utile per effetti particolari, ad es. un crash invertito.pIf you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash.AudioFileProcessorView^Ripeti il campione tra i punti di inizio e fine#Loop sample at start- and end-pointAudioFileProcessorView,Apri un altro campioneOpen other sampleAudioFileProcessorView&Inverti il campioneReverse sampleAudioFileProcessorView Punto di inizio: Startpoint:AudioFileProcessorViewQuesta manopola regola l'amplificaione. Con un valore pari a 100% il campione non viene modificato, altrimenti verr amplificato della percentuale specificata (il file originale non viene modificato!)With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!)AudioFileProcessorViewQuesta manopola regola il punto in cui AudioFileProcessor inizier la riproduzione. Se la modalit ripetizione attiva, questo il punto in cui la riproduzione ritorna se una nota pi lunga del campione tra i punti di inizio e fine.With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points.AudioFileProcessorViewQuesta manopola regola il punto in cui AudioFileProcessor terminer la riproduzione. Se la modalit ripetizione attiva, questo il punto in cui la riproduzione si ferma se una nota pi lunga del campione tra i punti di inizio e fine.With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points.AudioFileProcessorView CANALICHANNELSAudioJack::setupWidgetNOME DEL CLIENT CLIENT-NAMEAudioJack::setupWidget CANALICHANNELSAudioOss::setupWidgetPERIFERICADEVICEAudioOss::setupWidgetSOTTOSISTEMABACKENDAudioPortAudio::setupWidgetPERIFERICADEVICEAudioPortAudio::setupWidget CANALICHANNELSAudioPulseAudio::setupWidgetPERIFERICADEVICEAudioPulseAudio::setupWidgetPERIFERICADEVICEAudioSdl::setupWidget(&Copia valore (%1%2)&Copy value (%1%2)AutomatableModel,&Incolla valore (%1%2)&Paste value (%1%2)AutomatableModel"&Reimposta (%1%2) &Reset (%1%2)AutomatableModel2Connetti al controller...Connect to controller...AutomatableModelConnesso a %1Connected to %1AutomatableModel,Connesso al controllerConnected to controllerAutomatableModel.Modifica connessione...Edit connection...AutomatableModelXModifica l'automazione globale della tracciaEdit song-global automationAutomatableModel&Rimuovi connessioneRemove connectionAutomatableModeldTutti i valori sono stati copiati nella clipboard.1All selected values were copied to the clipboard.AutomationEditor8Editor dell'automazione - %1Automation Editor - %1AutomationEditorPEditor dell'automazione - nessun patternAutomation Editor - no patternAutomationEditorCliccando qui si attiva la modalit disegno. In questa modalit possibile aggiungere e spostare singoli valori. Questa la modalit predefinita, che viene usata la maggior parte del tempo. Questa modalit si attiva anche premendo la combinazione di tasti 'Shift+D'.Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode.AutomationEditorrCliccando qui si attiva la modalit cancellazione. In questa modalit possibile cancellare singoli valori. Questa modalit si attiva anche premendo la combinazione di tasti 'Shift+E'.Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode.AutomationEditorCliccando qui si attiva la modalit selezione. In questa modalit possibile selezionare i valori. Questo necessario per tagliare, copiare, incollare o spostare valori. Questa modalit si attiva anche premendo la combinazione di tasti 'Shift+S'.Click here and select-mode will be activated. In this mode you can select values. This is necessary if you want to cut, copy, paste, delete, or move values. You can also press 'Shift+S' on your keyboard to activate this mode.AutomationEditor0Cliccando qui i valori selezionati vengono copiati della clipboard. possibile incollarli ovunque, in qualsiasi pattern, cliccando il pulsante Incolla.Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditor2Cliccando qui i valori selezionati vengono spostati nella clipboard. possibile incollarli ovunque, in qualsiasi pattern, cliccando il pulsante Incolla.Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditorCliccando qui i valori nella clipboard vengono incollati alla prima battuta visibile.YClick here and the values from the clipboard will be pasted at the first visible measure.AutomationEditor&Cliccando qui si riproduce il pattern selezionato. Questo utile mentre lo si modifica. Il pattern viene automaticamente ripetuto quando finisce.Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached.AutomationEditorfCliccando qui si ferma la riproduzione del pattern.>Click here if you want to stop playing of the current pattern.AutomationEditorFCopia i valori selezionati (Ctrl+C)Copy selected values (Ctrl+C)AutomationEditorHTaglia i valori selezionati (Ctrl+X)Cut selected values (Ctrl+X)AutomationEditor4Modalit disegno (Shift+D)Draw mode (Shift+D)AutomationEditor@Modalit cancellazione (Shift+E)Erase mode (Shift+E)AutomationEditorCliccando qui si attiva la modalit spostamento. In questa modalit possibile spostare le note selezionate in modalit selezione. Questa modalit si attiva anche premendo la combinazione di tasti 'Shift+M'.If you click here, move-mode will be activated. In this mode you can move the values you selected in select-mode. You can also press 'Shift+M' on your keyboard to activate this mode.AutomationEditor\Modalit spostamento della selezione (Shift+M)Move selection mode (Shift+M)AutomationEditorJIncolla i valori selezionati (Ctrl+V)$Paste values from clipboard (Ctrl+V)AutomationEditor`Riproduci/metti in pausa questo pattern (Spazio)"Play/pause current pattern (Space)AutomationEditor necessario aprire un pattern di automazione con il menu contestuale di un controllo!EPlease open an automation pattern with the context menu of a control!AutomationEditor8Modalit selezione (Shift+S)Select mode (Shift+S)AutomationEditor`Ferma la riproduzione di questo pattern (Spazio)'Stop playing of current pattern (Space)AutomationEditorValori copiati Values copiedAutomationEditorr possibile disegnare un controllo tenendo premuto <Ctrl>$Drag a control while pressing AutomationPattern%1 connessioni%1 ConnectionsAutomationPatternViewCambia nome Change nameAutomationPatternViewPulisciClearAutomationPatternView Disconnetti "%1"Disconnect "%1"AutomationPatternViewBApri dell'editor dell'AutomazioneOpen in Automation editorAutomationPatternViewCon un doppio click si apre il pattern nell'editor dell'automazione6double-click to open this pattern in automation editorAutomationPatternView,Traccia di automazioneAutomation trackAutomationTrack1111 ChordCreator11b911b9 ChordCreator1313 ChordCreator13#913#9 ChordCreator 13b5b913b5b9 ChordCreator13b913b9 ChordCreator66 ChordCreator 6add96add9 ChordCreator 6sus46sus4 ChordCreator77 ChordCreator7#117#11 ChordCreator7#57#5 ChordCreator 7#5#97#5#9 ChordCreator 7#5b97#5b9 ChordCreator7#97#9 ChordCreator 7add117add11 ChordCreator 7add137add13 ChordCreator7b57b5 ChordCreator 7b5b97b5b9 ChordCreator7b97b9 ChordCreator 7sus47sus4 ChordCreator99 ChordCreator9#119#11 ChordCreator9#59#5 ChordCreator9b139b13 ChordCreator9b59b5 ChordCreator 9sus49sus4 ChordCreator EoliaAeolian ChordCreator ArabaArabic ChordCreator BluesBlues ChordCreator*Ampiezza dell'accordo Chord range ChordCreatorTipo di accordo Chord type ChordCreatorAccordiChords ChordCreatorDiminuita Diminished ChordCreatorBebop dominanteDominant bebop ChordCreator DoricaDorian ChordCreatorEnigmatica Enigmatic ChordCreatorMinore armonicaHarmonic minor ChordCreator Ungherese minoreHungarian minor ChordCreatorJap in sen Jap in sen ChordCreator LocriaLocrian ChordCreator LidiaLydian ChordCreator Maj11Maj11 ChordCreator Maj13Maj13 ChordCreatorMaj7Maj7 ChordCreatorMaj7#11Maj7#11 ChordCreator Maj7#5Maj7#5 ChordCreatorMaj7add13 Maj7add13 ChordCreator Maj7b5Maj7b5 ChordCreatorMaj9Maj9 ChordCreatorMaj9#11Maj9#11 ChordCreator Maj9#5Maj9#5 ChordCreatorMaj9sus4Maj9sus4 ChordCreator Majb5Majb5 ChordCreatorMaggioreMajor ChordCreatorBebop maggiore Major bebop ChordCreator(Pentatonica maggioreMajor pentatonic ChordCreatorMinore melodica Melodic minor ChordCreator$Pentatonica minoreMinor pentatonic ChordCreatorMisolidia Mixolydian ChordCreatorNapoletana Neopolitan ChordCreator"Napoletana minoreNeopolitan minor ChordCreatorPhrygolydian Phrygolydian ChordCreatorToni interi Whole tone ChordCreatoradd9add9 ChordCreatoraugaug ChordCreatoraugsus4augsus4 ChordCreatorm-Maj11m-Maj11 ChordCreatorm-Maj13m-Maj13 ChordCreator m-Maj7m-Maj7 ChordCreatorm-Maj7add11 m-Maj7add11 ChordCreatorm-Maj7add13 m-Maj7add13 ChordCreatorm11m11 ChordCreatorm13m13 ChordCreatorm6m6 ChordCreator m6add9m6add9 ChordCreatorm7m7 ChordCreatorm7add11m7add11 ChordCreatorm7add13m7add13 ChordCreatorm7b5m7b5 ChordCreatorm7b9m7b9 ChordCreatorm9m9 ChordCreatorm9-Maj7m9-Maj7 ChordCreatorm9b5m9b5 ChordCreator madd9madd9 ChordCreator minb5minb5 ChordCreator minoreminor ChordCreator ottavaoctave ChordCreatorsus2sus2 ChordCreatorsus4sus4 ChordCreator triadetri ChordCreatorACCORDICHORDSChordCreatorView.Ampiezza degli accordi: Chord range:ChordCreatorViewAMPIEZZARANGEChordCreatorViewQuesta manopola imposta l'ampiezza degli accordi in ottave. L'accordo selezionato verr eseguito all'interno del numero di ottave impostato.{Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves.ChordCreatorViewottava(e) octave(s)ChordCreatorViewController %1 Controller %1 Controller,Rilevamento automatico Auto DetectControllerConnectionDialog CANALECHANNELControllerConnectionDialogCONTROLLER CONTROLLERControllerConnectionDialogAnnullaCancelControllerConnectionDialog0Impostazioni connessioneConnection SettingsControllerConnectionDialogCiclo rilevato.Cycle Detected.ControllerConnectionDialog$Canale di ingresso Input channelControllerConnectionDialogLMMSLMMSControllerConnectionDialog*FUNZIONE DI MAPPATURAMAPPING FUNCTIONControllerConnectionDialogCONTROLLER MIDIMIDI CONTROLLERControllerConnectionDialogVLe periferiche MIDI ricevono eventi MIDI da(MIDI-devices to receive MIDI-events fromControllerConnectionDialogOKOKControllerConnectionDialog2CONTROLLER PERSONALIZZATOUSER CONTROLLERControllerConnectionDialogAggiungiAddControllerRackView$Rack di ControllerController RackControllerRackView &Aiuto&HelpControllerView,&Elimina questo plugin&Remove this pluginControllerViewI controller possono automatizzare il valore di una manopola, di uno slider e di altri controlli.QControllers are able to automate the value of a knob, slider, and other controls.ControllerViewControlliControlsControllerViewVInserire il nuovo nome di questo controller&Enter the new name for this controllerControllerView&Rinomina controllerRename controllerControllerViewDecadimentoDecayEffectEffetto attivoEffect enabledEffectGateGateEffect(miscelazione Wet/Dry Wet/Dry mixEffect"Effetti abilitatiEffects enabled EffectChain Aggiungi effetto Add effectEffectRackView"CATENA DI EFFETTI EFFECTS CHAINEffectRackView Aggiungi effetto Add effectEffectSelectDialog &Aiuto&Help EffectView,&Elimina questo plugin&Remove this plugin EffectViewControlliControls EffectView I plugin di effetti funzionano come una catena di effetti dove il segnale li attraversa dall'alto verso il basso. Il selettore On/Off permette di saltare un certo plugin in qualsiasi momento. La manopola Wet/Dry controlla il bilanciamento tra il segnale in ingresso e quello effettato che viene generato dall'effetto. L'ingresso di ogni stadio costituito dall'uscita dello stadio precedente, cos il segnale 'dry' degli effetti sottostanti contiene tutti i precedenti effetti. La manopola Decadimento controlla il tempo per cui il segnale viene processato dopo che le note sono state rilasciate. L'effetto smette di processare il segnale quando questo scende sotto una certa soglia per un certo periodo ti tempo. La manopola imposta questo periodo di tempo. Tempi maggiori richiedono pi processore, quindi il tempo tipicamente basso per la maggior parte degli effetti. necessario aumentarlo per effetti che producono lunghi periodi di silenzio, ad es. i delay. La manopola Gate regola la soglia sotto la quale l'effetto smette di processare il segnale. Il conteggio del tempo di silenzio necessario inizia non appena il sengale processato scende sotto la soglia specificata. Il pulsante Controlli apre una finestra per modificare i parametri dell'effetto. Con il click destro si apre un menu conestuale che permette di cambiare l'ordine degli effetti o di eliminarli.SEffect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. EffectViewGATEGATE EffectView Gate:Gate: EffectView,Sposta verso il &basso Move &down EffectView(Sposta verso l'&altoMove &up EffectView On/OffOn/Off EffectViewLa manopola Decadimento controlla quanto silenzio deve esserci prima che il plugin si fermi. Valori pi piccoli riducono il carico del processore ma rischiano di troncare la parte finale degli effetti di delay.The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. EffectViewLa manopola Gate controlla il livello del segnale che considerato 'silenzio' per decidere quando smettere di processare i segnali.zThe Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. EffectViewLa manopola Wet/Dry imposta il rapporto tra il segnale in ingresso e la quantit di effetto udibile in uscita.eThe Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. EffectView Tempo:Time: EffectView>Abilita o disabilita l'effetto.Toggles the effect on or off. EffectViewW/DW/D EffectView<Livello del segnale effettato: Wet Level: EffectViewAttaccoAttackEnvelopeAndLfoParametersDecadimentoDecayEnvelopeAndLfoParametersFreq x 100 Freq x 100EnvelopeAndLfoParametersMantenimentoHoldEnvelopeAndLfoParameters Attacco dell'LFO LFO AttackEnvelopeAndLfoParameters(Modulazione dell'LFOLFO ModulationEnvelopeAndLfoParameters2Ritardo iniziale dell'LFO LFO PredelayEnvelopeAndLfoParameters*Forma d'onda dell'LFOLFO Wave ShapeEnvelopeAndLfoParameters"Velocit dell'LFO LFO speedEnvelopeAndLfoParameters2Modula la quantit di EnvModulate Env-AmountEnvelopeAndLfoParametersModulazione ModulationEnvelopeAndLfoParameters Ritardo inizialePredelayEnvelopeAndLfoParametersRilascioReleaseEnvelopeAndLfoParametersSostegnoSustainEnvelopeAndLfoParametersQ.TAMTEnvelopeAndLfoViewATTATTEnvelopeAndLfoViewAttacco:Attack:EnvelopeAndLfoViewXCliccando qui si ha un'onda a dente di sega.&Click here for a saw-wave for current.EnvelopeAndLfoViewPCliccando qui si ha un'onda sinusoidale.Click here for a sine-wave.EnvelopeAndLfoViewPCliccando qui si ottiene un'onda quadra.Click here for a square-wave.EnvelopeAndLfoViewZCliccando qui si ottiene un'onda triangolare.Click here for a triangle-wave.EnvelopeAndLfoView(Cliccando qui possibile definire una forma d'onda personalizzata. Successivamente possibile trascinare un file di campione nel grafico dell'LFO.aClick here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph.EnvelopeAndLfoViewCliccando qui la frequenza di questo LFO viene moltiplicata per 100.DClick here if the frequency of this LFO should be multiplied by 100.EnvelopeAndLfoViewvCliccando qui questo LFO controlla la quantit di envelope.>Click here to make the envelope-amount controlled by this LFO.EnvelopeAndLfoViewDECDECEnvelopeAndLfoViewRITDELEnvelopeAndLfoViewDecadimento:Decay:EnvelopeAndLfoViewl possibile trascinare un campione in questa finestra.8Drag a sample from somewhere and drop it in this window.EnvelopeAndLfoViewFREQ x 100 FREQ x 100EnvelopeAndLfoViewMANTHOLDEnvelopeAndLfoViewSuggerimentoHintEnvelopeAndLfoViewMantenimento:Hold:EnvelopeAndLfoView4Ritardo iniziale dell'LFO: LFO predelay:EnvelopeAndLfoView$Velocit dell'LFO: LFO speed:EnvelopeAndLfoView"Attacco dell'LFO: LFO- attack:EnvelopeAndLfoView>MODULA LA QUANTITA' DI ENVELOPEMODULATE ENV-AMOUNTEnvelopeAndLfoView0Quantit di modulazione:Modulation amount:EnvelopeAndLfoView"Ritardo iniziale: Predelay:EnvelopeAndLfoViewRILRELEnvelopeAndLfoViewRilascio:Release:EnvelopeAndLfoViewVELSPDEnvelopeAndLfoViewSOSTSUSTEnvelopeAndLfoViewSostegno:Sustain:EnvelopeAndLfoView6Questa manopola imposta il tempo di attaco dell'LFO selezionato. Pi grande questo valore pi tempo l'LFO impiegher per raggiungere la massima ampiezza.Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum.EnvelopeAndLfoViewQuesta manopola imposta il tempo di attacco dell'envelope selezionato. Pi grande questo valore pi tempo passa prima di raggiungere il livello di attacco. Scegliere un valore contenuto per strumenti come pianoforti e un valore grande per gli archi.Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings.EnvelopeAndLfoViewQuesta manopola imposta il tempo di decdimento dell'envelope selezionato. Pi grande questo valore pi lentamente l'envelope decadr dal livello di attacco a quello di sustain. Scegliere un valore piccolo per strumenti come i pianoforti.Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos.EnvelopeAndLfoViewQuesta manopola imposta il tempo di mantenimento dell'envelope selezionato. Pi grande questo valore pi a lungo l'envelope manterr il livello di attacco prima di cominciare a scendere verso il livello di sostegno.Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level.EnvelopeAndLfoViewQuesta manopola imposta la quantit di modulazione dell'LFO selezionato. Pi grande questo valore pi la grandezza selezionata (ad es. il volume o la frequenza di taglio) sar influenzata da questo LFO.Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO.EnvelopeAndLfoViewQuesta manopola imposta la quantit di modulazione dell'envelope selezionato. Pi grande questo valore pi la grandezza corrispondente (ad es. il volume o la frequenza di taglio) sar influenzata da questo envelope.Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope.EnvelopeAndLfoView2Questa manopola imposta il ritardo iniziale dell'envelope selezionato. Pi grande questo valore pi tempo passer prima che l'envelope effettivo inizi.Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope.EnvelopeAndLfoView"Questa manopola imposta il ritardo iniziale dell'LFO selezionato. Pi grande questo valore pi tempo passer prima che l'LFO inizi a oscillare.Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate.EnvelopeAndLfoViewQuesta manopola imposta il tempo di rilascio dell'anvelope selezionato. Pi grande questo valore pi tempo l'envelope impiegher per scendere dal livello di sustain a zero. Scegliere un valore grande per strumenti dal suono morbido, come gli archi.Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings.EnvelopeAndLfoView"Questa manopola imposta la velocit dell'LFO selezionato. Pi grande questo valore pi velocemente l'LFO osciller e pi veloce sar l'effetto.Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect.EnvelopeAndLfoView^Questa manopola imposta il livello di sostegno dell'anvelope selezionato. Pi grande questo valore pi sar alto il livello che l'envelope manterr prima di scendere a zero.Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero.EnvelopeAndLfoView`controlla la quantit di envelope con questo LFO#control envelope-amount by this LFOEnvelopeAndLfoViewms/LFO:ms/LFO:EnvelopeAndLfoViewPmoltiplica la frequenza dell'LFO per 100multiply LFO-frequency by 100EnvelopeAndLfoViewAnnullaCancelExportProjectDialog UscitaOutputExportProjectDialog FX %1FX %1FxMixer MasterMasterFxMixerTInserire il nuovo nome di questo canale FX&Enter the new name for this FX channel FxMixerViewMixer FXFX-Mixer FxMixerViewMutoMute FxMixerView@Mettere questo canale FX in mutoMute this FX channel FxMixerView*Rinomina il canale FXRename FX channel FxMixerView CANALECHANNELInstrumentMidiIOView*ABILITA INGRESSO MIDIENABLE MIDI INPUTInstrumentMidiIOView&ABILITA USCITA MIDIENABLE MIDI OUTPUTInstrumentMidiIOViewPROGRAMMAPROGRAMInstrumentMidiIOViewVALOCITYVELOCITYInstrumentMidiIOViewPassaBasso 2x 2x LowPassInstrumentSoundShapingPassatuttoAllpassInstrumentSoundShapingPassaBanda csg BandPass csgInstrumentSoundShapingPassaBanda czpg BandPass czpgInstrumentSoundShaping CUTOFFCUTOFFInstrumentSoundShaping&Frequenza di taglioCutoff frequencyInstrumentSoundShapingEnvelope/LFOEnvelopes/LFOsInstrumentSoundShapingTipo di filtro Filter typeInstrumentSoundShapingPassaAltoHiPassInstrumentSoundShapingPassaBassoLowPassInstrumentSoundShapingMoogMoogInstrumentSoundShaping NotchNotchInstrumentSoundShapingQ/Risonanza Q/ResonanceInstrumentSoundShapingRISORESOInstrumentSoundShapingRisonanza ResonanceInstrumentSoundShaping VOLUMEVOLUMEInstrumentSoundShaping VolumeVolumeInstrumentSoundShaping CUTOFFCUTOFFInstrumentSoundShapingView FILTROFILTERInstrumentSoundShapingViewQui possibile selezionare il filtro da usare per questa traccia. I filtri sono molto importanti per cambiare le caratteristiche del suono.Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound.InstrumentSoundShapingViewHzHzInstrumentSoundShapingViewRISORESOInstrumentSoundShapingViewRisonanza: Resonance:InstrumentSoundShapingView SCOPOTARGETInstrumentSoundShapingViewQueste schede contengono envelopes. Sono molto importanti per modificare i suoni, senza contare che sono quasi sempre necessarie per la sintesi sottrattiva. Per esempio se si usa un envelope per il volume, si pu impostare quando un suono avr un certo volume. Si potrebbero voler creare archi dal suono morbido, allora il suono deve iniziare e finire in modo molto morbido; ci si ottiene impostando tempi di attacco e di rilascio ampi. Lo stesso vale per le altre funzioni degli envelope, come il panning, la frequenza di taglio dei filtri e cos via. Bisogna semplicemente giocarci un po'! Si possono ottenere suoni veramente interessanti a partire da un'onda a dente di sega usando soltanto qualche envelope...!_These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...!InstrumentSoundShapingViewQuesta manopola imposta il parametro (Q) per la risonanza del filtro selezionato. Il parametro per la risonanza specifica l'ampiezza della campana di frequenze intorno alla frequenza di taglio che devono essere amplificate.Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency.InstrumentSoundShapingViewQuesta manopola imposta la frequenza di taglio del filtro. La frequenza di taglio specifica la frequenza a cui viene tagliato il segnate di un filtro. Per esempio un filtro passa-basso taglia tutte le frequenze sopra la frequenza di taglio, mentre un filtro passa-alto taglia tutte le frequenza al di sotto della frequenza di taglio e cos via...2Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on...InstrumentSoundShapingView(frequenza di taglio:cutoff-frequency:InstrumentSoundShapingViewNota base Base noteInstrumentTrack0Impostazioni predefiniteDefault presetInstrumentTrackCanale FX FX channelInstrumentTrackPanningPanningInstrumentTrack VolumeVolumeInstrumentTrackZQuesta manopola imposta il volume del canale. Impostazioni.uThe LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. MainWindowQuesto progetto stato modificato dopo l'ultimo salvataggio. Vuoi salvarlo adesso?OThe current project was modified since last saving. Do you want to save it now? MainWindowAnnullaUndo MainWindowSenza_nomeUntitled MainWindowCos' questo? What's this? MainWindow&Directory di lavoroWorking directory MainWindow2Denominatore della misuraMeter Denominator MeterDialog.Numeratore della misuraMeter Numerator MeterDialogDenominatore Denominator MeterModelNumeratore Numerator MeterModelPERIFERICADEVICEMidiAlsaRaw::setupWidgetPERIFERICADEVICEMidiAlsaSeq::setupWidgetController MIDIMIDI ControllerMidiController4controller_midi_senza_nomeunnamed_midi_controllerMidiControllerPERIFERICADEVICEMidiOss::setupWidget4Velocity in ingresso fissoFixed input velocityMidiPort0Velocity in uscita fissoFixed output velocityMidiPort$Canale di ingresso Input channelMidiPort0Programma MIDI in uscitaOutput MIDI programMidiPort Canale di uscitaOutput channelMidiPort(Controller il uscitaOutput controllerMidiPort$Ricevi eventi MIDIReceive MIDI-eventsMidiPort"Invia eventi MIDISend MIDI-eventsMidiPort,Modulazione di tipo %1Modulation type %1OscillatorObject$Intonazione osc %1Osc %1 coarse detuningOscillatorObjectFIntonazione precisa osc %1 sinistraOsc %1 fine detuning leftOscillatorObjectBIntonazione precisa osc %1 destraOsc %1 fine detuning rightOscillatorObjectPanning osc %1Osc %1 panningOscillatorObject.Scostamento fase osc %1Osc %1 phase-offsetOscillatorObject<Intonazione fase stereo osc %1Osc %1 stereo phase-detuningOscillatorObjectVolume osc %1 Osc %1 volumeOscillatorObject&Forma d'onda Osc %1Osc %1 wave shapeOscillatorObject&Forma d'onda osc %1Osc %1 waveformOscillatorObjectClicca qui per aprire un altro file di patch. Le impostazioni di ripetizione e intonazione non vengono reimpostate.LClick here to open another patch-file. Loop and Tune settings are not reset. PatmanViewQui puoi scegliere la modalit di ripetizione. Se abilitato, PatMan user l'informazione sulla ripetizione disponibile nel file.jHere you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. PatmanViewQui puoi scegliere la modalit di intonazione. Se abilitato, PatMan intoner il campione alla frequenza della nota.iHere you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. PatmanViewRipetizioneLoop PatmanView(Modalit ripetizione Loop mode PatmanView.Nessun file selezionatoNo file selected PatmanView&Apri un altro patchOpen other patch PatmanView$Apri file di patchOpen patch file PatmanView*File di patch (*.pat)Patch-Files (*.pat) PatmanViewIntonazioneTune PatmanView(Modalit intonazione Tune mode PatmanView*Controller dei picchiPeak ControllerPeakController&Controller dell'LFOLFO ControllerPeakControllerDialog PICCOPEAKPeakControllerDialogQ.TAMT!PeakControllerEffectControlDialogAttacco:Attack:!PeakControllerEffectControlDialogBASEBASE!PeakControllerEffectControlDialog"Quantit di base: Base amount:!PeakControllerEffectControlDialog0Quantit di modulazione:Modulation amount:!PeakControllerEffectControlDialogRilascio:Release:!PeakControllerEffectControlDialogAttaccoAttackPeakControllerEffectControlsValore di base Base valuePeakControllerEffectControls.Quantit di modulazioneModulation amountPeakControllerEffectControlsUscita muta Mute outputPeakControllerEffectControlsRilascioReleasePeakControllerEffectControlsNota base Base note PianoViewBErrore nel caricamento del pluginError while loading pluginPlugin\Non stato possibile caricare il plugin "%1"!Failed to load plugin "%1"!Plugin$Plugin non trovatoPlugin not foundPluginIl plugin "%1" non stato trovato o non stato possibile caricarlo! Motivo: "%2"AThe plugin "%1" wasn't found or could not be loaded! Reason: "%2"PluginJFile in formato OGG compresso (*.ogg)Compressed OGG-File (*.ogg)ProjectRenderer File WAV (*.wav)WAV-File (*.wav)ProjectRenderer&Canali in ingresso: Channels In: QWidget"Canali in uscita:Channels Out: QWidgetCopyright: Copyright: QWidget File:File: QWidget In Place Broken:In Place Broken: QWidgetAutore:Maker: QWidget Nome:Name: QWidgetNoNoQWidget.Abilitato al Real Time:Real Time Capable: QWidget&Richiede Real Time:Requires Real Time: QWidgetSYesQWidget &Aiuto&Help TempoSyncKnobSedicesimo 16th note TempoSyncKnobTrentaduesimo 32nd note TempoSyncKnob Ottavo8th note TempoSyncKnobPersonalizzatoCustom  TempoSyncKnob"Personalizzato... Custom... TempoSyncKnobOtto battiti Eight beats TempoSyncKnobUna met Half note TempoSyncKnobNon in SyncNo Sync TempoSyncKnob Quarto Quarter note TempoSyncKnob$In sync con 16simiSynced to 16th Note TempoSyncKnob$In sync con 32simiSynced to 32nd Note TempoSyncKnob$In sync con ottaviSynced to 8th Note TempoSyncKnob0In sync con otto battitiSynced to Eight Beats TempoSyncKnob(In sync con un mezzoSynced to Half Note TempoSyncKnob$In sync con quartiSynced to Quarter Note TempoSyncKnob*In sync con un interoSynced to Whole Note TempoSyncKnobSync del tempo Tempo Sync TempoSyncKnobUn intero Whole note TempoSyncKnob>Miscelare gli oscillatori 1 e 2Mix output of oscillator 1 & 2TripleOscillatorView>Miscelare gli oscillatori 2 e 3Mix output of oscillator 2 & 3TripleOscillatorView0Intonazione dell'osc %1:Osc %1 coarse detuning:TripleOscillatorViewHIntonazione precisa osc %1 sinistra:Osc %1 fine detuning left:TripleOscillatorViewRIntonazione precisa dell'osc %1 - destra:Osc %1 fine detuning right:TripleOscillatorViewPanning osc %1:Osc %1 panning:TripleOscillatorView:Scostamento fase dell'osc %1:Osc %1 phase-offset:TripleOscillatorViewHIntonazione fase stereo dell'osc %1:Osc %1 stereo phase-detuning:TripleOscillatorViewVolume osc %1:Osc %1 volume:TripleOscillatorViewbSincronizzare l'oscillatore 1 con l'oscillatore 2*Synchronize oscillator 1 with oscillator 2TripleOscillatorViewbSincronizzare l'oscillatore 2 con l'oscillatore 3*Synchronize oscillator 2 with oscillator 3TripleOscillatorViewnUtilizzare un'onda di tipo moog per questo oscillatore.0Use a moog-like saw-wave for current oscillator.TripleOscillatorViewtUtilizzare un'onda a dente di sega per questo oscillatore.&Use a saw-wave for current oscillator.TripleOscillatorViewlUtilizzare un'onda sinusoidale per questo oscillatore.'Use a sine-wave for current oscillator.TripleOscillatorViewbUtilizzare un'onda quadra per questo oscillatore.)Use a square-wave for current oscillator.TripleOscillatorViewlUtilizzare un'onda triangolare per questo oscillatore.+Use a triangle-wave for current oscillator.TripleOscillatorViewrUtilizzare un'onda personalizzata per questo oscillatore.3Use a user-defined waveform for current oscillator.TripleOscillatorViewUsare la modulazione di amplificazione per modulare l'oscillatore 2 con l'oscillatore 1FUse amplitude modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewUsare la modulazione di amplificazione per modulare l'oscillatore 3 con l'oscillatore 2FUse amplitude modulation for modulating oscillator 3 with oscillator 2TripleOscillatorViewnUtilizzare un'onda esponenziale per questo oscillatore./Use an exponential wave for current oscillator.TripleOscillatorViewUsare la modulazione di frequenza per modulare l'oscillatore 2 con l'oscillatore 1FUse frequency modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewUsare la modulazione di frequenza per modulare l'oscillatore 3 con l'oscillatore 2FUse frequency modulation for modulating oscillator 3 with oscillator 2TripleOscillatorViewUsare la modulazione di fase per modulare l'oscillatore 2 con l'oscillatore 1BUse phase modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewUsare la modulazione di fase per modulare l'oscillatore 3 con l'oscillatore 2BUse phase modulation for modulating oscillator 3 with oscillator 2TripleOscillatorView`Utilizzare rumore bianco per questo oscillatore.'Use white-noise for current oscillator.TripleOscillatorViewQuesta manopola regola l'intonazione, con la precisione di 1 semitono, dell'oscillatore %1. L'intonazione pu essere variata di 12 semitoni (un'ottava) in positivo e in negativo. Pu essere usata per creare suoni con un accordo.With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord.TripleOscillatorViewQuesta manopola regola l'intonazione precisa dell'oscillatore %1 per il canale sinistro. La gamma per l'intonazione di precisione va da -100 a +100 centesimi. Pu essere usata per creare suoni "grossi".With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorViewQuesta manopola regola l'intonazione precisa dell'oscillatore %1 per il canale destro. La gamma per l'intonazione di precisione va da -100 a +100 centesimi. Pu essere usata per creare suoni "grossi".With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorViewrQuesta manopola regola il posizionamento nello spettro stereo dell'oscillatore %1. Un valore pari a -100 significa tutto a sinistra mentre un valore pari a 100 significa tutto a destra.With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right.TripleOscillatorViewFQuesta manopola regola lo scostamento della fase dell'oscillatore %1. Ci significa che possibile spostare il punto in cui inizia l'oscillazione. Per esempio, un'onda sinusoidale e uno scostamento della fase di 180 gradi, fanno iniziare l'onda scendendo. Lo stesso vale per un'onda quadra.)With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave.TripleOscillatorViewQuesta manopola regola l'intonazione stereo della fase dell'oscillatore %1. L'intonazione stereo della fase specifica la differenza tra lo scostamento della fase del canale sinistro e quello destro. Questo molto utile per creare suoni con grande ampiezza stereo.With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds.TripleOscillatorView>Questa manopola regola il volume dell'oscillatore %1. Un valore pari a 0 equivale a un oscillatore spento, gli altri valori impostano il volume corrispondente.With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here.TripleOscillatorViewcentesimicentsTripleOscillatorView gradidegreesTripleOscillatorViewsemitoni semitonesTripleOscillatorViewClicca qui per mostrare o nascondere l'interfaccia grafica (GUI) per i plugin VST.QClick here to show or hide the graphical user interface (GUI) of your VST-plugin.VestigeInstrumentView"Clicca qui per aprire un altro plugin VST. Una volta cliccato questo pulsante, si aprir una finestra di dialogo dove potrai selezionare il file.Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file.VestigeInstrumentView File DLL (*.dll)DLL-files (*.dll)VestigeInstrumentView File EXE (*.exe)EXE-files (*.exe)VestigeInstrumentView4Nessun plugin VST caricatoNo VST-plugin loadedVestigeInstrumentViewApri plugin VSTOpen VST-pluginVestigeInstrumentView0Apri un altro plugin VSTOpen other VST-pluginVestigeInstrumentView:Mostra/nascondi l'interfaccia Show/hide GUIVestigeInstrumentView0Disabilita tutte le noteTurn off all notesVestigeInstrumentViewbybyVestigeInstrumentViewJErrore nel caricamento del plugin VSTFailed loading VST-plugin VstPlugin$Caricamento pluginLoading plugin VstPlugin\Prego attendere, caricamento del plugin VST...'Please wait while loading VST-plugin... VstPluginfNon stato possibile caricare il plugin VST %1 a causa di alcuni errori. Se, con altre applicazioni GNU/Linux il plugin funziona, si prega di contattare uno sviluppatore di LMMS!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! VstPluginFREQFREQZynAddSubFxViewRISRESZynAddSubFxViewAmplificazioneAmplifyaudioFileProcessor"Fine del campione End of sampleaudioFileProcessorRipetizioneLoopaudioFileProcessor&Inverti il campioneReverse sampleaudioFileProcessor&Inizio del campioneStart of sampleaudioFileProcessorFREQFREQbassBoosterControlDialogFrequenza: Frequency:bassBoosterControlDialogGUADGAINbassBoosterControlDialogGuadagno:Gain:bassBoosterControlDialogLIVRATIObassBoosterControlDialogLivello:Ratio:bassBoosterControlDialogFrequenza FrequencybassBoosterControlsGuadagnoGainbassBoosterControlsLivelloRatiobassBoosterControlsFAggiungi una traccia di automazioneAdd automation-trackbbEditor,Aggiungi beat/basslineAdd beat/basslinebbEditor(Beat+Bassline EditorBeat+Bassline EditorbbEditorCliccando qui si riprodurre il beat/bassline selezionato. Il beat/bassline ricomincia automaticamente quando finisce.qClick here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached.bbEditorCliccando qui si ferma la riproduzione del beat/bassline attivo.4Click here to stop playing of current beat/bassline.bbEditor|Riproduci/metti in pausa il beat/bassline selezionato (Spazio)(Play/pause current beat/bassline (Space)bbEditorNFerma il beat/bassline attuale (Spazio).Stop playback of current beat/bassline (Space)bbEditorCambia colore Change color bbTCOViewCambia nome Change name bbTCOViewBApri nell'editor di Beat+BasslineOpen in Beat+Bassline-Editor bbTCOViewReimposta nome Reset name bbTCOView Beat/Bassline %1Beat/Bassline %1bbTrack"LunghezzaCampione Samplelength bitInvaderlCliccando qui si ottiene una forma d'onda sinusoidale.Click for a sine-wave.bitInvaderViewbCliccando qui si ottiene un'onda a dente di sega.Click here for a saw-wave.bitInvaderViewPCliccando qui si ottiene un'onda quadra.Click here for a square-wave.bitInvaderViewZCliccando qui si ottiene un'onda triangolare.Click here for a triangle-wave.bitInvaderViewCliccando qui possibile definire una forma d'onda personalizzata.$Click here for a user-defined shape.bitInvaderViewNCliccando qui si ottiene rumore bianco.Click here for white-noise.bitInvaderView`Cliccando qui la forma d'onda viene ammorbidita.Click here to smooth waveform.bitInvaderViewCliccando e trascinando il mouse in questo grafico possibile disegnare una forma d'onda personalizzata.ADraw your own waveform here by dragging your mouse on this graph.bitInvaderViewInterpolazione InterpolationbitInvaderViewNormalizza NormalizebitInvaderView,Lunghezza del campione Sample LengthbitInvaderView(Onda a dente di segaSaw wavebitInvaderView Onda sinusoidale Sine wavebitInvaderViewAmmorbidisciSmoothbitInvaderViewOnda quadra Square wavebitInvaderView Onda triangolare Triangle wavebitInvaderView6Forma d'onda personalizzataUser defined wavebitInvaderViewRumore biancoWhite noise wavebitInvaderViewHNon stato possibile aprire il fileCould not open fileexportProjectDialog&Impossibile aprire in scrittura il file %1. Assicurarsi di avere i permessi in scrittura per il file e la directory contenente il file e riprovare!Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again!exportProjectDialog ErroreErrorexportProjectDialogSi verificato un errore nel tentativo di determinare il dispositivo per la codifica del file. Si prega di selezionare un formato differente.\Error while determining file-encoder device. Please try to choose a different output format.exportProjectDialog2Esporta il progetto in %1Export project to %1exportProjectDialog(Renderizzazione: %1%Rendering: %1%exportProjectDialogGraficoGraph graphModelDecadimentoDecaykickerInstrumentDistorsione DistortionkickerInstrument Frequenza finale End frequencykickerInstrumentGuadagnoGainkickerInstrument$Frequenza inizialeStart frequencykickerInstrumentDecadimento:Decay:kickerInstrumentViewDistorsione: Distortion:kickerInstrumentView"Frequenza finale:End frequency:kickerInstrumentViewGuadagno:Gain:kickerInstrumentView&Frequenza iniziale:Start frequency:kickerInstrumentView &Aiuto&HelpknobPInserire un valore compreso tra %1 e %2:+Please enter a new value between %1 and %2:knobbInserire un nuovo valore tra -96.0 dBV e 6.0 dBV:7Please enter a new value between -96.0 dBV and 6.0 dBV:knob(Strumenti di analisiAnalysis ToolsladspaBrowserView&Effetti disponibiliAvailable EffectsladspaBrowserViewSconosciuto Don't knowladspaBrowserViewStrumenti InstrumentsladspaBrowserViewQuesta finestra mostra le informazioni relative ai plugin LADSPA che LMMS stato in grado di localizzare. I plugin sono divisi in cinque categorie, in base all'interpretazione dei tipi di porta e ai nomi. Gli Effetti Disponibili sono quelli che possono essere usati con LMMS. Perch LMMS possa usare un effetto deve, prima di tutto, essere un effetto, cio deve avere sia ingressi che uscite. LMMS identifica un ingresso come una porta con una frequenza audio associata e che contiene 'in' nel nome. Le uscite sono identificate dalle lettere 'out'. Inoltre, l'effetto deve avere lo stesso numero di ingressi e di uscite e deve poter funzionare in real time. Gli Effetti non Disponibili sono quelli che sono stati identificati come effetti ma che non hanno lo stesso numero di ingressi e uscite oppure non supportano il real time. Gli Strumenti sono plugin che hanno solo uscite. Gli Strumenti di Analisi sono plugin che hanno solo ingressi. Quelli Sconosciuti sono plugin che non hanno n ingressi n uscite. Facendo doppio click sui plugin verranno fornite informazioni sulle relative porte.TThis dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports.ladspaBrowserView Tipo:Type:ladspaBrowserView.Effetti non disponibiliUnavailable EffectsladspaBrowserViewDescrizione DescriptionladspaDescription PluginPluginsladspaDescription AudioAudioladspaPortDialogControlloControlladspaPortDialogDirezione DirectionladspaPortDialogVirgola mobileFloatladspaPortDialogIngressoInputladspaPortDialog InteroIntegerladspaPortDialogLogaritmico LogarithmicladspaPortDialog<Minimo < Predefinito < MassimoMin < Default < MaxladspaPortDialogNomeNameladspaPortDialog UscitaOutputladspaPortDialog PortePortsladspaPortDialogFrequenzaRateladspaPortDialog Dipendente da SR SR DependentladspaPortDialogAbilitatoToggledladspaPortDialogTipoTypeladspaPortDialogSYesladspaPortDialog$Filtro 24dB/ottava24dB/oct Filter lb302SynthAccentoAccent lb302SynthDeadDead lb302SynthDistorsione Distortion lb302Synth SlideSlide lb302Synth"Decadimento slide Slide Decay lb302Synth2VCF - frequenza di taglioVCF Cutoff Frequency lb302Synth>VCF - decadimento dell'envelopeVCF Envelope Decay lb302Synth@VCF - modulazione dell'envelopeVCF Envelope Mod lb302SynthVCF - Risonanza VCF Resonance lb302SynthForma d'ondaWaveform lb302SynthPfiltro tripolare "tipo 303", 24dB/ottava&303-es-que, 24dB/octave, 3 pole filterlb302SynthViewTAGCUTlb302SynthViewlCliccando qui si ottiene una forma d'onda sinusoidale.Click for a sine-wave.lb302SynthViewLCliccando qui si ottieme un'onda moog. Click here for a moog-like wave.lb302SynthViewbCliccando qui si ottiene un'onda a dente di sega.Click here for a saw-wave.lb302SynthViewhCliccando qui si ottiene un'onda quadra arrotondata.0Click here for a square-wave with a rounded end.lb302SynthViewPCliccando qui si ottiene un'onda quadra.Click here for a square-wave.lb302SynthViewZCliccando qui si ottiene un'onda triangolare.Click here for a triangle-wave.lb302SynthViewRCliccando qui si ha un'onda esponenziale.#Click here for an exponential wave.lb302SynthViewNCliccando qui si ottiene rumore bianco.Click here for white-noise.lb302SynthView Freq. di taglio: Cutoff Freq:lb302SynthViewDECDEClb302SynthViewDISTDISTlb302SynthView DIST:DIST:lb302SynthViewDecadimento:Decay:lb302SynthViewENV MODENV MODlb302SynthViewEnv Mod:Env Mod:lb302SynthViewOnda moog Moog wavelb302SynthViewRISRESlb302SynthViewRisonanza: Resonance:lb302SynthView.Onda quadra arrotondataRounded square wavelb302SynthView SLIDESLIDElb302SynthView(Onda a dente di segaSaw wavelb302SynthView Onda sinusoidale Sine wavelb302SynthView$Decadimento slide: Slide Decay:lb302SynthViewOnda quadra Square wavelb302SynthView Onda triangolare Triangle wavelb302SynthViewRumore biancoWhite noise wavelb302SynthView$Filtro 24dB/ottava24dB/oct Filter lb303SynthAccentoAccent lb303SynthDeadDead lb303SynthDistorsione Distortion lb303Synth SlideSlide lb303Synth"Decadimento slide Slide Decay lb303Synth2VCF - frequenza di taglioVCF Cutoff Frequency lb303Synth>VCF - decadimento dell'envelopeVCF Envelope Decay lb303Synth@VCF - modulazione dell'envelopeVCF Envelope Mod lb303SynthVCF - Risonanza VCF Resonance lb303SynthForma d'ondaWaveform lb303SynthPfiltro tripolare "tipo 303", 24dB/ottava&303-es-que, 24dB/octave, 3 pole filterlb303SynthViewTAGCUTlb303SynthView Freq. di taglio: Cutoff Freq:lb303SynthViewDECDEClb303SynthViewDISTDISTlb303SynthView DIST:DIST:lb303SynthViewDecadimento:Decay:lb303SynthViewENV MODENV MODlb303SynthViewEnv Mod:Env Mod:lb303SynthViewRISRESlb303SynthViewRisonanza: Resonance:lb303SynthView SLIDESLIDElb303SynthView$Decadimento slide: Slide Decay:lb303SynthViewONDAWAVElb303SynthView ONDA:WAVE:lb303SynthViewADSRADSRmalletsInstrument AgogoAgogomalletsInstrument BeatsBeatsmalletsInstrument BowedBowedmalletsInstrument ClumpClumpmalletsInstrumentCrossfade CrossfademalletsInstrument GlassGlassmalletsInstrumentDurezzaHardnessmalletsInstrument&Profondit dell'LFO LFO DepthmalletsInstrument"Velocit dell'LFO LFO SpeedmalletsInstrumentMarimbaMarimbamalletsInstrumentFile mancanti Missing filesmalletsInstrumentModulatore ModulatormalletsInstrumentMotoMotionmalletsInstrumentPosizionePositionmalletsInstrumentPressionePressuremalletsInstrumentResoResomalletsInstrumentVelocitSpeedmalletsInstrumentAperturaSpreadmalletsInstrumentStick Mix Stick MixmalletsInstrumentTibetan Bowl Tibetan BowlmalletsInstrumentTubular Bells Tubular BellsmalletsInstrumentTuned Bar Tuned BarmalletsInstrumentTwo Fixed Two FixedmalletsInstrumentUniform Bar Uniform BarmalletsInstrumentVibraphone VibraphonemalletsInstrument(Fequenza del vibrato Vibrato FreqmalletsInstrument(Guadagno del vibrato Vibrato GainmalletsInstrument Legno1Wood1malletsInstrument Legno2Wood2malletsInstrumentL'installazione di Stk sembra incompleta. Assicurarsi che sia installato il pacchetto Stk completo!aYour Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed!malletsInstrumentADSRADSRmalletsInstrumentView ADSR:ADSR:malletsInstrumentView BowedBowedmalletsInstrumentViewCrossfade CrossfademalletsInstrumentViewCrossfade: Crossfade:malletsInstrumentViewDurezzaHardnessmalletsInstrumentViewDurezza: Hardness:malletsInstrumentViewStrumento InstrumentmalletsInstrumentViewProfondit LFO LFO DepthmalletsInstrumentViewProfondit LFO: LFO Depth:malletsInstrumentViewVelocit LFO LFO SpeedmalletsInstrumentViewVelocit LFO: LFO Speed:malletsInstrumentViewModulatore ModulatormalletsInstrumentViewModulatore: Modulator:malletsInstrumentViewMotoMotionmalletsInstrumentView Moto:Motion:malletsInstrumentViewPosizionePositionmalletsInstrumentViewPosizione: Position:malletsInstrumentViewPressionePressuremalletsInstrumentViewPressione: Pressure:malletsInstrumentViewVelocitSpeedmalletsInstrumentViewVelocit:Speed:malletsInstrumentViewAperturaSpreadmalletsInstrumentViewApertura:Spread:malletsInstrumentViewStick Mix Stick MixmalletsInstrumentViewStick Mix: Stick Mix:malletsInstrumentViewFreq VibVib FreqmalletsInstrumentViewFreq Vib: Vib Freq:malletsInstrumentViewGuad VibVib GainmalletsInstrumentViewGuad Vib: Vib Gain:malletsInstrumentViewVibratoVibratomalletsInstrumentViewVibrato:Vibrato:malletsInstrumentView &Aiuto&HelpnineButtonSelectorDistorsione DistortionorganicInstrument VolumeVolumeorganicInstrumentDistorsione: Distortion:organicInstrumentViewHIntonazione precisa osc %1 sinistra:Osc %1 fine detuning left:organicInstrumentViewPanning osc %1:Osc %1 panning:organicInstrumentViewVolume osc %1:Osc %1 volume:organicInstrumentViewOnda osc %1:Osc %1 waveform:organicInstrumentViewRendi casuale RandomiseorganicInstrumentViewVolume:Volume:organicInstrumentViewcentesimicentsorganicInstrumentView BassiBasspapuInstrument.Canale 1 a SO1 (destra)Channel 1 to SO1 (Right)papuInstrument2Canale 1 a SO2 (sinistra)Channel 1 to SO2 (Left)papuInstrument&Volume del canale 1Channel 1 volumepapuInstrument.Canale 2 a SO1 (destra)Channel 2 to SO1 (Right)papuInstrument2Canale 2 a SO2 (sinistra)Channel 2 to SO2 (Left)papuInstrument&Volume del canale 2Channel 2 volumepapuInstrument.Canale 3 a SO1 (destra)Channel 3 to SO1 (Right)papuInstrument2Canale 3 a SO2 (sinistra)Channel 3 to SO2 (Left)papuInstrument&Volume del canale 3Channel 3 volumepapuInstrument.Canale 4 a SO1 (destra)Channel 4 to SO1 (Right)papuInstrument2Canale 4 a SO2 (sinistra)Channel 4 to SO2 (Left)papuInstrument&Volume del canale 4Channel 4 volumepapuInstrument,Volume uscita sinistraLeft Output levelpapuInstrumentFLunghezza di ogni passo nello sweepLength of each step in sweeppapuInstrument(Volume uscita destraRight Output levelpapuInstrumentBAmpiezza spostamento del registroShift Register widthpapuInstrument:Quantit RtShift per lo sweepSweep RtShift amountpapuInstrumentDirezione sweepSweep directionpapuInstrumentTempo di sweep Sweep timepapuInstrumentAltiTreblepapuInstrument4Direzione sweep del volumeVolume sweep directionpapuInstrument"Wave Pattern DutyWave Pattern DutypapuInstrument BassiBasspapuInstrumentView Bassi:Bass:papuInstrumentView.Canale 1 a SO1 (destra)Channel1 to SO1 (Right)papuInstrumentView2Canale 1 a SO2 (sinistra)Channel1 to SO2 (Left)papuInstrumentView.Canale 2 a SO1 (destra)Channel2 to SO1 (Right)papuInstrumentView2Canale 1 a SO2 (sinistra)Channel2 to SO2 (Left)papuInstrumentView.Canale 3 a SO1 (destra)Channel3 to SO1 (Right)papuInstrumentView2Canale 3 a SO2 (sinistra)Channel3 to SO2 (Left)papuInstrumentView.Canale 4 a SO1 (destra)Channel4 to SO1 (Right)papuInstrumentView2Canale 4 a SO2 (sinistra)Channel4 to SO2 (Left)papuInstrumentView(Disegnare l'onda quiDraw the wave herepapuInstrumentViewFLunghezza di ogni passo nello sweepLength of each step in sweeppapuInstrumentViewHLunghezza di ogni passo nello sweep:Length of each step in sweep:papuInstrumentView0Volume rumore del canaleNoise Channel VolumepapuInstrumentView2Volume rumore del canale:Noise Channel Volume:papuInstrumentView&Volume SO1 (destra)SO1 Volume (Right)papuInstrumentView(Volume SO1 (destra):SO1 Volume (Right):papuInstrumentView*Volume SO2 (sinistra)SO2 Volume (Left)papuInstrumentView,Volume SO2 (sinistra):SO2 Volume (Left):papuInstrumentViewBAmpiezza spostamento del registroShift Register WidthpapuInstrumentView4Volume square del canale 1Square Channel 1 VolumepapuInstrumentView6Volume del canale 1 square:Square Channel 1 Volume:papuInstrumentView4Volume square del canale 2Square Channel 2 VolumepapuInstrumentView6Volume square del canale 2:Square Channel 2 Volume:papuInstrumentViewDirezione sweepSweep DirectionpapuInstrumentView:Quantit RtShift per lo sweepSweep RtShift amountpapuInstrumentView<Quantit RtShift per lo sweep:Sweep RtShift amount:papuInstrumentViewTempo di sweep Sweep TimepapuInstrumentViewTempo di sweep: Sweep Time:papuInstrumentViewbLa quantit di aumento o diminuzione di frequenza/The amount of increase or decrease in frequencypapuInstrumentView6Ritardo tra i cambi di stepThe delay between step changepapuInstrumentViewIl duty cycle il rapporto tra il tempo in cui il segnale ON e il periodo completo del segnale.mThe duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal.papuInstrumentViewLa velocit a cui l'aumento o la diminuzione di frequenza avvengono:The rate at which increase or decrease in frequency occurspapuInstrumentViewAltiTreblepapuInstrumentView Alti:Treble:papuInstrumentView4Direzione sweep del volumeVolume Sweep DirectionpapuInstrumentView.Volume wave del canale:Wave Channel VolumepapuInstrumentView.Volume wave del canale:Wave Channel Volume:papuInstrumentViewWave Pattern Wave PatternpapuInstrumentView"Wave Pattern DutyWave Pattern DutypapuInstrumentView"Wave Pattern DutyWave pattern dutypapuInstrumentView$Wave Pattern Duty:Wave pattern duty:papuInstrumentView@Impossibile congelare il patternCannot freeze patternpatternNon stato possibile congelare questo pattern perch in modalit riproduzione. Fermare la riproduzione e riprovare!_The pattern currently cannot be freezed because you're in play-mode. Please stop and try again!patternAnnullaCancelpatternFreezeStatusDialog6Congelamento del pattern...Freezing pattern...patternFreezeStatusDialog%1 note%1 steps patternView 1 nota1 step patternViewAggiungi note Add steps patternViewCambia nome Change name patternView,Cancella tutte le noteClear all notes patternViewCongelaFreeze patternView&Apri nel piano-rollOpen in piano-roll patternView$Congela nuovamenteRefreeze patternViewElimina note Remove steps patternView"Reimposta il nome Reset name patternViewScongelaUnfreeze patternViewun doppio click apre questo pattern nel piano-roll la rotellina del mouse impostare il volume delle noteWdouble-click to open this pattern in piano-roll use mouse wheel to set volume of a step patternViewCliccando qui i valori nella clipboard vengono incollati alla prima battuta visibile.XClick here and the notes from the clipboard will be pasted at the first visible measure. pianoRoll.Cliccando qui le note selezionate verranno copiate negli appunti. possibile incollarle in un punto qualsiasi del pattern cliccando sul tasto incolla.Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRoll0Cliccando qui le note selezionate verranno spostate negli appunti. possibile incollarle in un punto qualsiasi del pattern cliccando sul tasto incolla.Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRoll&Cliccando qui si riproduce il pattern selezionato. Questo utile mentre lo si modifica. Il pattern viene automaticamente ripetuto quando finisce.Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. pianoRollCliccando qui si registrano nel pattern note da una periferica MIDI o dal piano di prova virtuale nella finestra del canale corrispondente. Mentre si registra, tutte le note eseguite vengono scritte in questo pattern e in seguito le si potr riprodurre e modificare.Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. pianoRoll>Cliccando qui si registrano nel pattern note da una periferica MIDI o dal piano di prova virtuale nella finestra del canale corrispondente. Mentre si registra, tutte le note eseguite vengono scritte in questo pattern, sentendo contemporaneamente la canzone o la traccia BB in sottofondo.Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. pianoRolltCliccando qui si ferma la riproduzione del pattern attivo./Click here to stop playback of current pattern. pianoRollDCopia le note selezionate (Ctrl+C)Copy selected notes (Ctrl+C) pianoRollFTaglia le note selezionate (Ctrl+X)Cut selected notes (Ctrl+X) pianoRoll4Modalit disegno (Shift+D)Draw mode (Shift+D) pianoRoll@Modalit cancellazione (Shift+E)Erase mode (Shift+E) pianoRollUltima nota Last note pianoRollNote lock Note lock pianoRollHIncolla le note selezionate (Ctrl+V)#Paste notes from clipboard (Ctrl+V) pianoRollPiano-Roll - %1Piano-Roll - %1 pianoRoll6Piano-Roll - nessun patternPiano-Roll - no pattern pianoRoll`Riproduci/metti in pausa questo pattern (Spazio)"Play/pause current pattern (Space) pianoRollrAprire un pattern con un doppio-click sul pattern stesso!/Please open a pattern by double-clicking on it! pianoRollbRegistra note da una periferica/canale piano MIDI+Record notes from MIDI-device/channel-piano pianoRollRegistra note da una periferica MIDI/canale piano mentre la traccia o la BB track in riproduzioneJRecord notes from MIDI-device/channel-piano while playing song or BB track pianoRoll8Modalit selezione (Shift+S)Select mode (Shift+S) pianoRoll`Ferma la riproduzione di questo pattern (Spazio)'Stop playing of current pattern (Space) pianoRollZSintetizzatore additivo per suoni tipo organo*Additive Synthesizer for organ-like sounds pluginBrowserLSintetizzatore wavetable configurabile"Customizable wavetable synthesizer pluginBrowser possibile trascinare uno strumento nel Song-Editor, nel Beat+Bassline Editor o direttamente in un canale esistente.nDrag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. pluginBrowser2Emulatore di GameBoy!" APUEmulation of GameBoy (TM) APU pluginBrowserEmulazione di MOS6581 and MOS8580 SID. Questo chip era utilizzato nel Commode 64.ZEmulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. pluginBrowserdFiltro per importare progetti di FL Studio in LMMS1Filter for importing FL Studio projects into LMMS pluginBrowserLFiltro per importare file MIDI in LMMS)Filter for importing MIDI-files into LMMS pluginBrowser:strumento compatibile con GUSGUS-compatible patch instrument pluginBrowserTImitazione monofonica del tb303 incompleta%Incomplete monophonic imitation tb303 pluginBrowser4Navigatore degli strumentiInstrument browser pluginBrowser$Plugin strumentaliInstrument plugins pluginBrowserBElenca i plugin LADSPA installatiList installed LADSPA plugins pluginBrowser:Riproduttore di file SounFontPlayer for SoundFont files pluginBrowserlPlugin per controllare le manopole con picchi di suono-Plugin for controlling knobs with sound peaks pluginBrowserlPlugin per migliorare la separazione stereo di un file=Plugin for enhancing stereo separation of a stereo input file pluginBrowserdPlugin per manipolare liberamente un'uscita stereo,Plugin for freely manipulating stereo output pluginBrowser\Oggetti dotati di intonazione su cui picchiareTuneful things to bang on pluginBrowserPHost VST per usare i plugin VST con LMMS-VST-host for using VST(i)-plugins within LMMS pluginBrowser8Modulatore di corde vibrantiVibrating string modeler pluginBrowser&nessuna descrizioneno description pluginBrowserRPlugin per aumentare notevolmente i bassiplugin for boosting bass pluginBrowserdPlugin per usare qualsiasi effetto LADSPA in LMMS.6plugin for using arbitrary LADSPA-effects inside LMMS. pluginBrowser^Plugin per usare qualsiasi effetto VST in LMMS.3plugin for using arbitrary VST-effects inside LMMS. pluginBrowserSemplice campionatore con molte impostazioni per usare campioni (ad es. di percussioni) in una tracciaZsimple sampler with various settings for using samples (e.g. drums) in an instrument-track pluginBrowserrtre potenti oscillatori che puoi modulare in diversi modi;three powerful oscillators you can modulate in several ways pluginBrowserTsintetizzatore di colpo di cassa versatile&versatile kick- & bassdrum-synthesizer pluginBrowser&Grassetto&Bold projectNotes&Colore... &Color... projectNotes &Copia&Copy projectNotes&Corsivo&Italic projectNotes&Giustifica&Justify projectNotes&Sinistra&Left projectNotes&Incolla&Paste projectNotes$&Ripeti operazione&Redo projectNotes&Destra&Right projectNotes&Sottolineato &Underline projectNotes&&Annulla operazione&Undo projectNotes&CentroC&enter projectNotes Ctrl+BCtrl+B projectNotes Ctrl+CCtrl+C projectNotes Ctrl+ECtrl+E projectNotes Ctrl+ICtrl+I projectNotes Ctrl+JCtrl+J projectNotes Ctrl+LCtrl+L projectNotes Ctrl+RCtrl+R projectNotes Ctrl+UCtrl+U projectNotes Ctrl+VCtrl+V projectNotes Ctrl+XCtrl+X projectNotes Ctrl+YCtrl+Y projectNotes Ctrl+ZCtrl+Z projectNotes&TagliaCu&t projectNotesModifica azioni Edit Actions projectNotesFormatta azioniFormat Actions projectNotes"Note del progetto Project notes projectNotesNScrivi qui le note per il tuo progetto.!Put down your project notes here. projectNotesRinomina... Rename... renameDialog0File AIFF (*.aif *.aiff)AIFF-Files (*.aif *.aiff) sampleBufferFile AU (*.au)AU-Files (*.au) sampleBufferTutti i file audio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3)SAll Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) sampleBuffer*File DrumSynth (*.ds)DrumSynth-Files (*.ds) sampleBuffer$File FLAC (*.flac)FLAC-Files (*.flac) sampleBuffer File MP3 (*.mp3)MP3-Files (*.mp3) sampleBuffer File OGG (*.ogg)OGG-Files (*.ogg) sampleBufferApri file audioOpen audio file sampleBuffer File RAW (*.raw)RAW-Files (*.raw) sampleBuffer$File SPEEX (*.spx)SPEEX-Files (*.spx) sampleBuffer File VOC (*.voc)VOC-Files (*.voc) sampleBuffer"File wave (*.wav)Wave-Files (*.wav) sampleBuffer CopiaCopy sampleTCOView TagliaCut sampleTCOViewDElimina (tasto centrale del mouse)Delete (middle mousebutton) sampleTCOViewvAttiva/disattiva la modalit muta (<Ctrl> + tasto centrale)#Mute/unmute ( + middle click) sampleTCOViewIncollaPaste sampleTCOView Set/clear recordSet/clear record sampleTCOViewZFare doppio click per selezionare il campionedouble-click to select sample sampleTCOView&Traccia di campione Sample track sampleTrack VolumeVolume sampleTrack$Volume del canale:Channel volume:sampleTrackView(Volume della traccia Track volumesampleTrackViewVOLVOLsampleTrackView"INTERFACCIA AUDIOAUDIO INTERFACE setupDialog4DIrectory del tema graficoArtwork directory setupDialog$Impostazioni audioAudio settings setupDialog*DIMENSIONE DEL BUFFER BUFFER SIZE setupDialog(Grafica dello sfondoBackground artwork setupDialogAnnullaCancel setupDialoghSeleziona la directory di installazione di FL Studio'Choose FL Studio installation directory setupDialogPSeleziona le directory dei plugin LADSPAChoose LADSPA plugin directory setupDialogPSeleziona la directory di lavoro di LMMSChoose LMMS working directory setupDialogVSeleziona le directory dei file rawwave STKChoose STK rawwave directory setupDialogNSeleziona la directory del tema graficoChoose artwork-theme directory setupDialogBScegliere la grafica dello sfondoChoose background artwork setupDialogDScegliere il SoundFont predefinitoChoose default SoundFont setupDialogRSeleziona la tua directory dei plugin VST Choose your VST-plugin directory setupDialogrPer impostazione predefinita, comprimi i file di progetto"Compress project files per default setupDialog4File SoundFont predefinitoDefault Soundfont File setupDialog`Disabilit gli indicatori di attivit dei canali#Disable channel activity indicators setupDialog0Mostra il volume in dBV Display volume as dBV  setupDialog,Abilita i suggerimentiEnable tooltips setupDialogNDirectory di installazione di FL Studio FL Studio installation directory setupDialog2Frames: %1 Latenza: %2 msFrames: %1 Latency: %2 ms setupDialog*Impostazioni generaliGeneral settings setupDialogPModalit alta qualit per l'uscita audioHQ-mode for output audio-device setupDialogQui possibile selezionare l'interfaccia MIDI. A seconda della configurazione del tuo sistema in fase di compilazione puoi scegliere tra ALSA, OSS e altri. Sotto si trova una casella che offre dei controlli per l'interfaccia MIDI selezionata.Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. setupDialogQui possibile selezionare l'interfaccia audio. A seconda della configurazione del tuo sistema in fase di compilazione puoi scegliere tra ALSA, JACK, OSS e altri. Sotto trovi una casella che offre dei controlli per l'interfaccia audio selezionata.Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. setupDialog*Qui possibile impostare la dimensione del buffer interno usato da LMMS. Valori pi piccoli danno come risultato una latenza pi bassa ma possono causare una qualit audio inutilizzabile o cattive prestazioni, specialmente su computer datati o sistemi con kernel non-realtime.Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. setupDialog4Percorsi dei plugin LADSPALADSPA plugin paths setupDialog6Directory di lavoro di LMMSLMMS working directory setupDialog INTERFACCIA MIDIMIDI INTERFACE setupDialog"Impostazioni MIDI MIDI settings setupDialog VARIEMISC setupDialogOKOK setupDialogrPremi i pulsanti nei canali di piano soltanto manualmente)Only press keys on channel-piano manually setupDialogPercorsiPaths setupDialog0Impostazioni prestazioniPerformance settings setupDialogSi prega di notare che la maggior parte delle modifiche non avr effetto fino al riavvio di LMMS!GPlease note that most changes won't take effect until you restart LMMS! setupDialog>Reimposta al valore predefinitoReset to default-value setupDialogRiavvia LMMS Restart LMMS setupDialog@Directory per i file rawwave STKSTK rawwave directory setupDialogCofigura LMMS Setup LMMS setupDialogDopo aver modificato le impostazioni, mostra un avviso al riavvio,Show restart warning after changing settings setupDialog`Effetti UI (interfaccia grafica) vs. prestazioniUI effects vs. performance setupDialog0Directory dei plugin VSTVST-plugin directory setupDialog BancoBank sf2Instrument ChorusChorus sf2Instrument&Chorus - profondit Chorus Depth sf2Instrument Chorus - livello Chorus Level sf2InstrumentChorus - voci Chorus Lines sf2Instrument"Chorus - velocit Chorus Speed sf2InstrumentGuadagnoGain sf2Instrument PatchPatch sf2InstrumentRiverberoReverb sf2Instrument0Riverbero - attenuazioneReverb Damping sf2Instrument&Riverbero - livello Reverb Level sf2Instrument:Riverbero - dimensione stanzaReverb Roomsize sf2Instrument(Riverbero - ampiezza Reverb Width sf2InstrumentBApplica il chorus (se supportato)Apply chorus (if supported)sf2InstrumentViewHApplica il riverbero (se supportato)Apply reverb (if supported)sf2InstrumentView$Seleziona il patchChoose the patchsf2InstrumentView(Chorus - profondit: Chorus Depth:sf2InstrumentView"Chorus - livello: Chorus Level:sf2InstrumentViewChorus - voci: Chorus Lines:sf2InstrumentView$Chorus - velocit: Chorus Speed:sf2InstrumentViewNClicca qui per aprire un altro file SF2#Click here to open another SF2 filesf2InstrumentViewGuadagnoGainsf2InstrumentView,Apri un file SoundFontOpen SoundFont filesf2InstrumentView8Apri un altro file SoundFontOpen other SoundFont filesf2InstrumentView2Riverbero - attenuazione:Reverb Damping:sf2InstrumentView(Riverbero - livello: Reverb Level:sf2InstrumentView<Riverbero - dimensione stanza:Reverb Roomsize:sf2InstrumentView*Riverbero - ampiezza: Reverb Width:sf2InstrumentView.File SoundFont2 (*.sf2)SoundFont2 Files (*.sf2)sf2InstrumentViewQuesto pulsante abilita l'effetto chorus, che utile per effetti di eco particolari ma funziona solo su file che lo supportano.uThis button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it.sf2InstrumentViewQuesto pulsante abilita l'effetto riverbero, che utile per effetti particolari ma funziona solo su file che lo supportano.pThis button enables the reverb effect. This is useful for cool effects, but only works on files that support it.sf2InstrumentViewModello di chip Chip model sidInstrument TaglioCutoff sidInstrumentTipo di filtro Filter type sidInstrumentRisonanza Resonance sidInstrumentVoce 3 spenta Voice 3 off sidInstrument VolumeVolume sidInstrumentIl livello di attacco determina quanto rapidamente l'uscita della voce %1 sale da zero al picco di amplificazione.\Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude.sidInstrumentViewAttacco:Attack:sidInstrumentView$Filtro passa-bandaBand-Pass filter sidInstrumentViewApprossimativo:Coarse:sidInstrumentView(Frequenza di taglio:Cutoff frequency:sidInstrumentViewIl livello di decadimento determina quanto rapidamente l'uscita ricade dal picco di amplificazione al livello di sostegno impostato.iDecay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level.sidInstrumentViewDecadimento:Decay:sidInstrumentViewFiltratoFilteredsidInstrumentView"Filtro passa-altoHigh-Pass filter sidInstrumentView$Filtro passa-bassoLow-Pass filter sidInstrumentViewMOS6581 SID MOS6581 SID sidInstrumentViewMOS8580 SID MOS8580 SID sidInstrumentView RumoreNoisesidInstrumentViewL'uscita della voce %1 rimarr al livello di sostegno impostato per tutta la durata della nota.]Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held.sidInstrumentViewOnda pulse Pulse WavesidInstrumentViewAmpiezza pulse: Pulse Width:sidInstrumentViewRilascio:Release:sidInstrumentViewRisonanza: Resonance:sidInstrumentView Modulazione ringRing-ModsidInstrumentViewRing-mod rimpiazza l'uscita della forma d'onda triangolare dell'oscillatore %1 con la combinazione "Ring Modulated" degli oscillatori %1 e %2.}Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2.sidInstrumentViewDente di segaSawToothsidInstrumentViewSostegno:Sustain:sidInstrumentViewSincronizzatoSyncsidInstrumentViewIl Sync sincronizza la frequenza fondamentale dell'oscillatore %1 con quella dell'oscillatore %2 producendo effetti di "Hard Sync".Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects.sidInstrumentViewTestTestsidInstrumentViewQuando Test attivo, e finch non viene spento, reimposta e blocca l'oscillatore %1 a zero.PTest, when set, resets and locks Oscillator %1 at zero until Test is turned off.sidInstrumentViewL'intonazione permette di "stonare" la voce %1 verso l'alto o verso il basso di un'ottava.DThe Coarse detuning allows to detune Voice %1 one octave up or down.sidInstrumentViewLa risoluzione dell'ampiezza del Pulse permette di impostare che l'ampiezza venga variata in modo continuo senza salti udibili. Sull'oscillatore %1 deve essere selezionata la forma d'onda Pulse perch si abbia un effetto udibile.The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect.sidInstrumentViewL'uscita della voce %1 ricadr dal livello di sostegno verso il silenzio con la velocit di rilascio impostata.jThe output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate.sidInstrumentView Onda triangolare Triangle WavesidInstrumentViewVoce 3 spenta Voice3 Off sidInstrumentViewVolume:Volume:sidInstrumentViewlQuando il filtraggio attivo, la voce %1 verr processata dal filtro. Quando il filtraggio spento, la voce %1 arriva direttamente all'uscita e il filtro non ha effetto su di essa.When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it.sidInstrumentViewEmpty project Empty projectsong$Progetti FL StudioFL Studio projectssongImporta file Import filesongSequenze MIDIMIDI sequencessong$Altezza principale Master pitchsong"Volume principale Master volumesong@Il progetto NON stato salvato.Project NOT saved.songProgeto salvato Project savedsonghScegliere il file per l'esportazione del progetto...!Select file for project-export...song TempoTemposong>Il progetto %1 stato salvato.The project %1 is now saved.songFIl progetto %1 non stato salvato!The project %1 was not saved!songQuesto progetto vuoto, pertanto non c' nulla da esportare. Prima di esportare necessario inserire alcuni elementi nel Song Editor!`This project is empty so exporting makes no sense. Please put some items into Song Editor first!songsenza_nomeuntitledsongFAggiungi una traccia di automazioneAdd automation-track songEditor,Aggiungi beat/basslineAdd beat/bassline songEditor8Aggiungi traccia di campioneAdd sample-track songEditorRCliccando qui si riproduce l'intera canzone. La riproduzione inizier alla posizione attuale del segnaposto (verde). possibile spostarlo anche durante la riproduzione.Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. songEditorCliccando qui si ferma la riproduzione della canzone. Il segnaposto verr portato all'inizio della canzone.uClick here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. songEditorHNon stato possibile aprire il fileCould not open file songEditor8Impossibile scrivere il fileCould not write file songEditorTImpossibile scrivere il file %1. Probabilmente non si hanno i permessi in scrittura per questo file. Assicurarsi di avere i permessi in scrittura per il file e riprovare.Could not write file %1. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. songEditor Modalit disegno Draw mode songEditorLModalit modifica (seleziona e sposta)Edit mode (select and move) songEditor0Modalit ad alta qualitHigh quality mode songEditor$Altezza principale Master pitch songEditor"Volume principale Master volume songEditor:Riproduci la canzone (Spazio)Play song (Space) songEditorRRegistra campioni da una periferica audio Record samples from Audio-device songEditorRegistra campioni da una periferica audio mentre la canzone o la BB track sono in riproduzione?Record samples from Audio-device while playing song or BB track songEditorSong-Editor Song-Editor songEditorXFerma la riproduzione della canzone (Spazio)Stop song (Space) songEditorTEMPO/BPM TEMPO/BPM songEditor TempoTempo songEditor8Il tempo della canzone specificato in battiti al minuto (BPM). Per cambiare il tempo della canzone bisogna cambiare questo valore. Ogni marcatore ha 4 battiti, pertanto il tempo in BPM specifica quanti marcatori / 4 verranno riprodotti in un minuto (o quanti marcatori in 4 minuti).-The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). songEditor&Valore: %1 semitoniValue: %1 semitones songEditorValore: %1% Value: %1% songEditor$altezza principale master pitch songEditor"volume principale master volume songEditor&tempo della canzone tempo of song songEditorAsse Y lineare Linear Y axisspectrumAnalyzerControlDialogSpettro lineareLinear spectrumspectrumAnalyzerControlDialog&Modalit del canale Channel modespectrumAnalyzerControlsAsse Y lineare Linear Y-axisspectrumAnalyzerControlsSpettro lineareLinear spectrumspectrumAnalyzerControls AMPIOWIDEstereoEnhancerControlDialogAmpiezza:Width:stereoEnhancerControlDialogAmpiezzaWidthstereoEnhancerControls<Volume da Sinistra a Sinistra:Left to Left Vol:stereoMatrixControlDialog8Volume da Sinistra a Destra:Left to Right Vol:stereoMatrixControlDialog8Volume da Destra a Sinistra:Right to Left Vol:stereoMatrixControlDialog4Volume da Destra a Destra:Right to Right Vol:stereoMatrixControlDialog,Da Sinistra a Sinistra Left to LeftstereoMatrixControls(Da Sinistra a Destra Left to RightstereoMatrixControls(Da Destra a Sinistra Right to LeftstereoMatrixControls$Da Destra a DestraRight to RightstereoMatrixControlsfUna volta fermata la riproduzione, torna all'inizioAfter stopping go back to begintimeLineUna volta fermata la riproduzione, torna alla posizione da cui si partiti?After stopping go back to position at which playing was startedtimeLinepUna volta fermata la riproduzione, mantieni la posizioneAfter stopping keep positiontimeLineXAbilita/disabilita lo scorrimento automaticoEnable/disable auto-scrollingtimeLineRAbilita/disabilita i punti di ripetizioneEnable/disable loop-pointstimeLineSuggerimentoHinttimeLine~Premi <Ctrl> per disabilitare i punti di ripetizione magnetici.-Press to disable magnetic loop-points.timeLineMutoMutedtrackSoloSolotrackAnnullaCanceltrackContainer@Non stato possibile trovare un filtro per importare il file %1. necessario convertire questo file in un formato supportato da LMM usando un altro programma.Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software.trackContainerNNon stato possibile importare il fileCouldn't import filetrackContainerHNon stato possibile aprire il fileCouldn't open filetrackContainer,Non stato possibile aprire il file %1 in lettura. Assicurarsi di avere i permessi in lettura per il file e la directory che lo contiene e riprovare!Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again!trackContainer8Importazione del file FLP...Importing FLP-file...trackContainer:Importazione del file MIDI...Importing MIDI-file...trackContainer6Caricamento del progetto...Loading project...trackContainer$Prego attendere...Please wait...trackContainerMutoMutedtrackContentObject0%1:%2 (da %3:%4 a %5:%6)%1:%2 (%3:%4 to %5:%6)trackContentObjectView CopiaCopytrackContentObjectView"Lunghezza attualeCurrent lengthtrackContentObjectView"Posizione attualeCurrent positiontrackContentObjectView TagliaCuttrackContentObjectViewDElimina (tasto centrale del mouse)Delete (middle mousebutton)trackContentObjectViewSuggerimentoHinttrackContentObjectViewvAttiva/disattiva la modalit muta (<Ctrl> + tasto centrale)#Mute/unmute ( + middle click)trackContentObjectViewIncollaPastetrackContentObjectViewdPremere <Ctrl>, cliccare e trascinare per copiare.%Press and drag to make a copy.trackContentObjectView\Premere <Ctrl> per ridimensionare liberamente.Press for free resizing.trackContentObjectView2Azioni per questa tracciaActions for this tracktrackOperationsWidget(Clona questa tracciaClone this tracktrackOperationsWidgetMutoMutetrackOperationsWidgetJMetti questa traccia in modalit mutaMute this tracktrackOperationsWidgetPremere <Ctrl> mentre si clicca sulla maniglia per lo spostamento per iniziare una nuova azione di drag'n'drop.KPress while clicking on move-grip to begin a new drag'n'drop-action.trackOperationsWidget,Elimina questa tracciaRemove this tracktrackOperationsWidgetSoloSolotrackOperationsWidgetJErrore nel caricamento del plugin VSTFailed loading VST-pluginvestigeInstrument$Caricamento pluginLoading pluginvestigeInstrument\Prego attendere, caricamento del plugin VST...'Please wait while loading VST-plugin...vestigeInstrumentfNon stato possibile caricare il plugin VST %1 a causa di alcuni errori. Se, con altre applicazioni GNU/Linux il plugin funziona, si prega di contattare uno sviluppatore di LMMS!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer!vestigeInstrumentIntonazione %1 Detune %1vibedFuzziness %1 Fuzziness %1 vibedImpulso %1 Impulse %1vibedLunghezza %1 Length %1vibedOttava %1 Octave %1vibed Pan %1Pan %1vibed0Posizione del plettro %1Pick %1 positionvibed.Posizione del pickup %1Pickup %1 positionvibed,Durezza della corda %1String %1 stiffnessvibed*Volume della corda %1String %1 volumevibed &Aiuto&Help vibedViewhCliccando qui si abilita/disabilita la forma d'onda.&Click here to enable/disable waveform. vibedViewbCliccando qui la forma d'onda viene normalizzata.!Click here to normalize waveform. vibedView`Cliccando qui la forma d'onda viene ammorbidita.Click here to smooth waveform. vibedViewIntonazione:Detune: vibedView(Abilita forma d'ondaEnable waveform vibedViewFuzziness: Fuzziness: vibedView&Editor dell'impulsoImpulse Editor vibedView0Impulso o stato inizialeImpulse or initial state vibedViewLunghezza:Length: vibedViewNormalizza Normalize vibedView OttavaOctave vibedViewPan:Pan: vibedView,Posizione del plettro:Pick position: vibedView*Posizione del pickup:Pickup position: vibedView(Onda a dente di segaSaw wave vibedView Onda sinusoidale Sine wave vibedViewAmmorbidisciSmooth vibedViewOnda quadra Square wave vibedView CordaString vibedView(Durezza della corda:String stiffness: vibedView:Il selettore 'Imp' determina se la forma d'onda nel grafico deve essere trattata come l'impulso del plettro sulla corda o come lo stato iniziale della corda.The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. vibedViewLa manopola 'P' regola il punto in cui verr 'pizzicata' la corda. Pi basso sar il valore, pi vicino al ponte sar il plettro.The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. vibedViewDLa manopola 'PU' regola la posizione in cui verranno rilevate le vibrazioni della corda selezionata. Pi basso sar il valore, pi vicino al ponte sar il pickup.The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. vibedView`La manopola 'S' regola la durezza della corda selezionata. La durezza della corda influenza la durata della vibrazione. Pi basso sar il valore, pi a lungo suoner la corda.The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. vibedViewrLa manopola 'V' regola il volume della corda selezionata.4The 'V' knob sets the volume of the selected string. vibedViewLa manopola Intonazione regola l'altezza del suono della corda selezionata. Valori sotto lo zero sposteranno l'intonazione della corda verso il bemolle. Valori sopra lo zero spostarenno l'intonazione della corda verso il diesis.The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. vibedViewvLa manopola Lunghezza regola la lunghezza della corda selezionata. Corde pi lunghe suonano pi a lungo e hanno un suono pi brillante. Tuttavia richiedono anche pi tempo del processore.The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. vibedViewFIl seletore Ottava serve per scegliere a quale armonico della nota risuona la corda. Per esempio, '-2' significa che la corda risuona due ottave sotto la fondamentale, 'F' significa che la corda risuona alla fondamentale e '6' significa che la corda risuona sei ottave sopra la fondamentale.#The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. vibedViewLa manopola Pan determina la posizione della corda selezionata nello spettro stereo.PThe Pan knob determines the location of the selected string in the stereo field. vibedViewbLa manopola Slap aggiungeun po' di "sporco" al suono della corda selezionata, sensibile soprattutto nell'attacco, anche se pu essere usato per rendere il suono pi "metallico".The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. vibedViewIl selettore della Corda serve per scegliere su quale corda hanno effetto i controlli. Uno strumento Vibed pu contenere fino a nove corde che indipendenti. Il LED nell'angolo in basso a destra dell'editor della forma d'onda indica se la corda attiva.The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. vibedViewxL'editor della forma d'onda fornisce il controllo sull'impulso iniziale usato per far vibrare la corda. I pulsanti a destra del grafico predispongono una forma d'onda del tipo selezionato. Il pulsante '?' carica la forma d'onda da un file--verranno caricati solo i primi 128 campioni. La forma d'onda pu anche essere disegnata direttamente sul grafico. Il pulsante 'S' ammorbisce la forma d'onda. Il pulsante 'N' normalizza la forma d'onda.The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. vibedView Onda triangolare Triangle wave vibedViewtUtilizzare un'onda a dente di sega per questo oscillatore.&Use a saw-wave for current oscillator. vibedViewlUtilizzare un'onda sinusoidale per questo oscillatore.'Use a sine-wave for current oscillator. vibedViewbUtilizzare un'onda quadra per questo oscillatore.)Use a square-wave for current oscillator. vibedViewlUtilizzare un'onda triangolare per questo oscillatore.+Use a triangle-wave for current oscillator. vibedViewrUtilizzare un'onda personalizzata per questo oscillatore.3Use a user-defined waveform for current oscillator. vibedView`Utilizzare rumore bianco per questo oscillatore.'Use white-noise for current oscillator. vibedView6Forma d'onda personalizzataUser defined wave vibedViewVibed modella fino a nove corde che vibrano indipendentemente. Il selettore 'Corda' permettedi scegliere quale corda modificare. Il selettore 'Imp' sceglie se il grafico sar l'impulso dato o lo stato iniziale della corda. Il selettore 'Ottava' imposta l'armonico a cui risuoner la corda. Il grafico permette di controllare l'impulso (o lo stato iniziale) per far vibrare la corda. La manopola 'V' reogla il volume. La manopola 'S' regola la durezza della corda. La manopola 'P' regola la posiziona del plettro. La manopola 'PU' regola la posizione del pickup. 'Pan' e 'Detune' non dovrebbero aver bisogno di spiegazioni. La manopola 'Slap' aggiunge un po' di "sporco" al suono della corda. La manopola 'Lunghezza' regola la lunghezza della corda. Il LED nell'angolo in basso a destra sull'editor della forma d'onda determina se la corda attiva nello strumento selezionato.hVibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. vibedViewVolume:Volume: vibedViewRumore biancoWhite noise wave vibedViewcliccando si abilita/disabilita la visualizzazione dell'uscita principale6click to enable/disable visualization of master-outputvisualizationWidgetAttacco voce %1Voice %1 attack voiceObject&Intonazione voce %1Voice %1 coarse detuning voiceObject&Decadimento voce %1Voice %1 decay voiceObject$Filtraggio voce %1Voice %1 filtered voiceObject,Ampiezza pulse voce %1Voice %1 pulse width voiceObject Rilascio voce %1Voice %1 release voiceObject0Modulazione ring voce %1Voice %1 ring modulate voiceObject Sostegno voce %1Voice %1 sustain voiceObject0Sincronizzazione voce %1 Voice %1 sync voiceObjectTest voce %1 Voice %1 test voiceObject(Forma d'onda voce %1Voice %1 wave shape voiceObjectlmms-1.0.0+bzr2569/data/locale/it.ts0000644000000000000000000100347012307165142015067 0ustar 00000000000000 AboutDialog About LMMS LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) About Informazioni su LMMS - easy music production for everyone Authors Translation Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! License Copyright (c) 2004-2014, LMMS developers <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE PERIFERICA CHANNELS CANALI AudioFileProcessorView Open other sample Apri un altro campione Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Clicca qui per aprire un altro file audio. Apparirà una finestra di dialogo dove sarà possibile scegliere il file. Impostazioni come la modalità ripetizione, amplificazione e così via non vengono reimpostate, pertanto potrebbe non suonare come il file originale. Reverse sample Inverti il campione If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Attivando questo pulsante, l'intero campione viene invertito. Ciò è utile per effetti particolari, ad es. un crash invertito. Loop sample at start- and end-point Ripeti il campione tra i punti di inizio e fine Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Qui è possibile impostare se la modalità ripetizione è attiva. AudioFileProcessor riproduce tra i punti di inizio e fine di un campione finché tutta la nota è stata suonata. Ciò è utile per campioni di strumenti a corda e cori. Amplify: Amplificazione: With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Questa manopola regola l'amplificaione. Con un valore pari a 100% il campione non viene modificato, altrimenti verrà amplificato della percentuale specificata (il file originale non viene modificato!) Startpoint: Punto di inizio: With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Questa manopola regola il punto in cui AudioFileProcessor inizierà la riproduzione. Se la modalità ripetizione è attiva, questo è il punto in cui la riproduzione ritorna se una nota è più lunga del campione tra i punti di inizio e fine. Endpoint: Punto di fine: With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Questa manopola regola il punto in cui AudioFileProcessor terminerà la riproduzione. Se la modalità ripetizione è attiva, questo è il punto in cui la riproduzione si ferma se una nota è più lunga del campione tra i punti di inizio e fine. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. JACK server down The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack::setupWidget CLIENT-NAME NOME DEL CLIENT CHANNELS CANALI AudioOss::setupWidget DEVICE PERIFERICA CHANNELS CANALI AudioPortAudio::setupWidget BACKEND SOTTOSISTEMA DEVICE PERIFERICA AudioPulseAudio::setupWidget DEVICE PERIFERICA CHANNELS CANALI AudioSdl::setupWidget DEVICE PERIFERICA AutomatableModel &Reset (%1%2) &Reimposta (%1%2) &Copy value (%1%2) &Copia valore (%1%2) &Paste value (%1%2) &Incolla valore (%1%2) Edit song-global automation Modifica l'automazione globale della traccia Connected to %1 Connesso a %1 Connected to controller Connesso al controller Edit connection... Modifica connessione... Remove connection Rimuovi connessione Connect to controller... Connetti al controller... Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) Riproduci/metti in pausa questo pattern (Spazio) Stop playing of current pattern (Space) Ferma la riproduzione di questo pattern (Spazio) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Cliccando qui si riproduce il pattern selezionato. Questo è utile mentre lo si modifica. Il pattern viene automaticamente ripetuto quando finisce. Click here if you want to stop playing of the current pattern. Cliccando qui si ferma la riproduzione del pattern. Draw mode (Shift+D) Modalità disegno (Shift+D) Erase mode (Shift+E) Modalità cancellazione (Shift+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. Cliccando qui si attiva la modalità disegno. In questa modalità è possibile aggiungere e spostare singoli valori. Questa è la modalità predefinita, che viene usata la maggior parte del tempo. Questa modalità si attiva anche premendo la combinazione di tasti 'Shift+D'. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. Cliccando qui si attiva la modalità cancellazione. In questa modalità è possibile cancellare singoli valori. Questa modalità si attiva anche premendo la combinazione di tasti 'Shift+E'. Cut selected values (Ctrl+X) Taglia i valori selezionati (Ctrl+X) Copy selected values (Ctrl+C) Copia i valori selezionati (Ctrl+C) Paste values from clipboard (Ctrl+V) Incolla i valori selezionati (Ctrl+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Cliccando qui i valori selezionati vengono spostati nella clipboard. È possibile incollarli ovunque, in qualsiasi pattern, cliccando il pulsante Incolla. Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Cliccando qui i valori selezionati vengono copiati della clipboard. È possibile incollarli ovunque, in qualsiasi pattern, cliccando il pulsante Incolla. Click here and the values from the clipboard will be pasted at the first visible measure. Cliccando qui i valori nella clipboard vengono incollati alla prima battuta visibile. Automation Editor - no pattern Editor dell'automazione - nessun pattern Automation Editor - %1 Editor dell'automazione - %1 Please open an automation pattern with the context menu of a control! È necessario aprire un pattern di automazione con il menu contestuale di un controllo! Values copied Valori copiati All selected values were copied to the clipboard. Tutti i valori sono stati copiati nella clipboard. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> È possibile disegnare un controllo tenendo premuto <Ctrl> AutomationPatternView double-click to open this pattern in automation editor Con un doppio click si apre il pattern nell'editor dell'automazione Open in Automation editor Apri dell'editor dell'Automazione Clear Pulisci Reset name Change name Cambia nome %1 Connections %1 connessioni Disconnect "%1" Disconnetti "%1" AutomationTrack Automation track Traccia di automazione Controller Controller %1 Controller %1 ControllerConnectionDialog Connection Settings Impostazioni connessione MIDI CONTROLLER CONTROLLER MIDI Input channel Canale di ingresso CHANNEL CANALE Input controller CONTROLLER CONTROLLER Auto Detect Rilevamento automatico MIDI-devices to receive MIDI-events from Le periferiche MIDI ricevono eventi MIDI da USER CONTROLLER CONTROLLER PERSONALIZZATO MAPPING FUNCTION FUNZIONE DI MAPPATURA OK OK Cancel Annulla LMMS LMMS Cycle Detected. Ciclo rilevato. ControllerRackView Controller Rack Rack di Controller Add Aggiungi Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls Controlli Controllers are able to automate the value of a knob, slider, and other controls. I controller possono automatizzare il valore di una manopola, di uno slider e di altri controlli. Rename controller Rinomina controller Enter the new name for this controller Inserire il nuovo nome di questo controller &Remove this plugin &Elimina questo plugin &Help &Aiuto Effect Effect enabled Effetto attivo Wet/Dry mix miscelazione Wet/Dry Gate Gate Decay Decadimento EffectChain Effects enabled Effetti abilitati EffectRackView EFFECTS CHAIN CATENA DI EFFETTI Add effect Aggiungi effetto EffectSelectDialog Add effect Aggiungi effetto Plugin description EffectView Toggles the effect on or off. Abilita o disabilita l'effetto. On/Off On/Off W/D W/D Wet Level: Livello del segnale effettato: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. La manopola Wet/Dry imposta il rapporto tra il segnale in ingresso e la quantità di effetto udibile in uscita. DECAY Time: Tempo: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. La manopola Decadimento controlla quanto silenzio deve esserci prima che il plugin si fermi. Valori più piccoli riducono il carico del processore ma rischiano di troncare la parte finale degli effetti di delay. GATE GATE Gate: Gate: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. La manopola Gate controlla il livello del segnale che è considerato 'silenzio' per decidere quando smettere di processare i segnali. Controls Controlli Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. I plugin di effetti funzionano come una catena di effetti dove il segnale li attraversa dall'alto verso il basso. Il selettore On/Off permette di saltare un certo plugin in qualsiasi momento. La manopola Wet/Dry controlla il bilanciamento tra il segnale in ingresso e quello effettato che viene generato dall'effetto. L'ingresso di ogni stadio è costituito dall'uscita dello stadio precedente, così il segnale 'dry' degli effetti sottostanti contiene tutti i precedenti effetti. La manopola Decadimento controlla il tempo per cui il segnale viene processato dopo che le note sono state rilasciate. L'effetto smette di processare il segnale quando questo scende sotto una certa soglia per un certo periodo ti tempo. La manopola imposta questo periodo di tempo. Tempi maggiori richiedono più processore, quindi il tempo è tipicamente basso per la maggior parte degli effetti. È necessario aumentarlo per effetti che producono lunghi periodi di silenzio, ad es. i delay. La manopola Gate regola la soglia sotto la quale l'effetto smette di processare il segnale. Il conteggio del tempo di silenzio necessario inizia non appena il sengale processato scende sotto la soglia specificata. Il pulsante Controlli apre una finestra per modificare i parametri dell'effetto. Con il click destro si apre un menu conestuale che permette di cambiare l'ordine degli effetti o di eliminarli. Move &up Sposta verso l'&alto Move &down Sposta verso il &basso &Remove this plugin &Elimina questo plugin &Help &Aiuto EnvelopeAndLfoParameters Predelay Ritardo iniziale Attack Attacco Hold Mantenimento Decay Decadimento Sustain Sostegno Release Rilascio Modulation Modulazione LFO Predelay Ritardo iniziale dell'LFO LFO Attack Attacco dell'LFO LFO speed Velocità dell'LFO LFO Modulation Modulazione dell'LFO LFO Wave Shape Forma d'onda dell'LFO Freq x 100 Freq x 100 Modulate Env-Amount Modula la quantità di Env EnvelopeAndLfoView DEL RIT Predelay: Ritardo iniziale: Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. Questa manopola imposta il ritardo iniziale dell'envelope selezionato. Più grande è questo valore più tempo passerà prima che l'envelope effettivo inizi. ATT ATT Attack: Attacco: Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. Questa manopola imposta il tempo di attacco dell'envelope selezionato. Più grande è questo valore più tempo passa prima di raggiungere il livello di attacco. Scegliere un valore contenuto per strumenti come pianoforti e un valore grande per gli archi. HOLD MANT Hold: Mantenimento: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. Questa manopola imposta il tempo di mantenimento dell'envelope selezionato. Più grande è questo valore più a lungo l'envelope manterrà il livello di attacco prima di cominciare a scendere verso il livello di sostegno. DEC DEC Decay: Decadimento: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. Questa manopola imposta il tempo di decdimento dell'envelope selezionato. Più grande è questo valore più lentamente l'envelope decadrà dal livello di attacco a quello di sustain. Scegliere un valore piccolo per strumenti come i pianoforti. SUST SOST Sustain: Sostegno: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. Questa manopola imposta il livello di sostegno dell'anvelope selezionato. Più grande è questo valore più sarà alto il livello che l'envelope manterrà prima di scendere a zero. REL RIL Release: Rilascio: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. Questa manopola imposta il tempo di rilascio dell'anvelope selezionato. Più grande è questo valore più tempo l'envelope impiegherà per scendere dal livello di sustain a zero. Scegliere un valore grande per strumenti dal suono morbido, come gli archi. AMT Q.TÀ Modulation amount: Quantità di modulazione: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. Questa manopola imposta la quantità di modulazione dell'envelope selezionato. Più grande è questo valore più la grandezza corrispondente (ad es. il volume o la frequenza di taglio) sarà influenzata da questo envelope. LFO predelay: Ritardo iniziale dell'LFO: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. Questa manopola imposta il ritardo iniziale dell'LFO selezionato. Più grande è questo valore più tempo passerà prima che l'LFO inizi a oscillare. LFO- attack: Attacco dell'LFO: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. Questa manopola imposta il tempo di attaco dell'LFO selezionato. Più grande è questo valore più tempo l'LFO impiegherà per raggiungere la massima ampiezza. SPD VEL LFO speed: Velocità dell'LFO: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. Questa manopola imposta la velocità dell'LFO selezionato. Più grande è questo valore più velocemente l'LFO oscillerà e più veloce sarà l'effetto. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. Questa manopola imposta la quantità di modulazione dell'LFO selezionato. Più grande è questo valore più la grandezza selezionata (ad es. il volume o la frequenza di taglio) sarà influenzata da questo LFO. Click here for a sine-wave. Cliccando qui si ha un'onda sinusoidale. Click here for a triangle-wave. Cliccando qui si ottiene un'onda triangolare. Click here for a saw-wave for current. Cliccando qui si ha un'onda a dente di sega. Click here for a square-wave. Cliccando qui si ottiene un'onda quadra. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. Cliccando qui è possibile definire una forma d'onda personalizzata. Successivamente è possibile trascinare un file di campione nel grafico dell'LFO. FREQ x 100 FREQ x 100 Click here if the frequency of this LFO should be multiplied by 100. Cliccando qui la frequenza di questo LFO viene moltiplicata per 100. multiply LFO-frequency by 100 moltiplica la frequenza dell'LFO per 100 MODULATE ENV-AMOUNT MODULA LA QUANTITA' DI ENVELOPE Click here to make the envelope-amount controlled by this LFO. Cliccando qui questo LFO controlla la quantità di envelope. control envelope-amount by this LFO controlla la quantità di envelope con questo LFO ms/LFO: ms/LFO: Hint Suggerimento Drag a sample from somewhere and drop it in this window. È possibile trascinare un campione in questa finestra. ExportProjectDialog Export project Output Uscita File format: Samplerate: 44100 Hz 48000 Hz 88200 Hz 96000 Hz 192000 Hz Bitrate: 64 KBit/s 128 KBit/s 160 KBit/s 192 KBit/s 256 KBit/s 320 KBit/s Depth: 16 Bit Integer 32 Bit Float Please note that not all of the parameters above apply for all file formats. Quality settings Interpolation: Zero Order Hold Sinc Fastest Sinc Medium (recommended) Sinc Best (very slow!) Oversampling (use with care!): 1x (None) 2x 4x 8x Sample-exact controllers Alias-free oscillators Start Cancel Annulla Export as loop (remove end silence) FxMixer Master Master FX %1 FX %1 FxMixerView Rename FX channel Rinomina il canale FX Enter the new name for this FX channel Inserire il nuovo nome di questo canale FX FX-Mixer Mixer FX FX Fader %1 Mute Muto Mute this FX channel Mettere questo canale FX in muto InstrumentFunctionArpeggio Arpeggio Arpeggio Arpeggio type Tipo di arpeggio Arpeggio range Ampiezza dell'arpeggio Arpeggio time Tempo dell'arpeggio Arpeggio gate Gate dell'arpeggio Arpeggio direction Direzione dell'arpeggio Arpeggio mode Modo dell'arpeggio Up Su Down Giù Up and down Su e giù Random Casuale Free Libero Sort Ordinato Sync Sincronizzato InstrumentFunctionArpeggioView ARPEGGIO ARPEGGIO An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. Un arpeggio è un modo di suonare alcuni strumenti (pizzicati in particolare), che rende la musica più viva. Le corde di tali strumenti (ad es. un'arpa) vendono pizzicate come accordi. L'unica differenza è che ciò viene fatto in ordine sequenziale, in modo che le note non vengano suonate allo stesso tempo. Arpeggi tipici sono quelli sulle triadi maggiore o minore, ma ci sono molte altre possibilità tra le quali si può scegliere. RANGE AMPIEZZA Arpeggio range: Ampiezza dell'arpeggio: octave(s) ottava(e) Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. Questa manopola imposta l'ampiezza in ottave dell'arpeggio. L'arpeggio selezionato verrà suonato all'interno del numero di ottave impostato. TIME TEMPO Arpeggio time: Tempo dell'arpeggio: ms ms Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. Questa manopola imposta l'ampiezza dell'arpeggio in millisecondi. Il tempo dell'arpeggio specifica per quanto tempo ogni nota dell'arpeggio deve essere eseguita. GATE GATE Arpeggio gate: Gate dell'arpeggio: % % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Questa manopola imposta il gate dell'arpeggio. Il gate dell'arpeggio specifica la percentuale di ogni nota che deve essere eseguita. In questo modo si possono creare arpeggi particolari, con le note staccate. Chord: Direction: Direzione: Mode: Modo: InstrumentFunctionNoteStacking octave ottava Major Maggiore Majb5 Majb5 minor minore minb5 minb5 sus2 sus2 sus4 sus4 aug aug augsus4 augsus4 tri triade 6 6 6sus4 6sus4 6add9 6add9 m6 m6 m6add9 m6add9 7 7 7sus4 7sus4 7#5 7#5 7b5 7b5 7#9 7#9 7b9 7b9 7#5#9 7#5#9 7#5b9 7#5b9 7b5b9 7b5b9 7add11 7add11 7add13 7add13 7#11 7#11 Maj7 Maj7 Maj7b5 Maj7b5 Maj7#5 Maj7#5 Maj7#11 Maj7#11 Maj7add13 Maj7add13 m7 m7 m7b5 m7b5 m7b9 m7b9 m7add11 m7add11 m7add13 m7add13 m-Maj7 m-Maj7 m-Maj7add11 m-Maj7add11 m-Maj7add13 m-Maj7add13 9 9 9sus4 9sus4 add9 add9 9#5 9#5 9b5 9b5 9#11 9#11 9b13 9b13 Maj9 Maj9 Maj9sus4 Maj9sus4 Maj9#5 Maj9#5 Maj9#11 Maj9#11 m9 m9 madd9 madd9 m9b5 m9b5 m9-Maj7 m9-Maj7 11 11 11b9 11b9 Maj11 Maj11 m11 m11 m-Maj11 m-Maj11 13 13 13#9 13#9 13b9 13b9 13b5b9 13b5b9 Maj13 Maj13 m13 m13 m-Maj13 m-Maj13 Harmonic minor Minore armonica Melodic minor Minore melodica Whole tone Toni interi Diminished Diminuita Major pentatonic Pentatonica maggiore Minor pentatonic Pentatonica minore Jap in sen Jap in sen Major bebop Bebop maggiore Dominant bebop Bebop dominante Blues Blues Arabic Araba Enigmatic Enigmatica Neopolitan Napoletana Neopolitan minor Napoletana minore Hungarian minor Ungherese minore Dorian Dorica Phrygolydian Phrygolydian Lydian Lidia Mixolydian Misolidia Aeolian Eolia Locrian Locria Chords Accordi Chord type Tipo di accordo Chord range Ampiezza dell'accordo Minor InstrumentFunctionNoteStackingView RANGE AMPIEZZA Chord range: Ampiezza degli accordi: octave(s) ottava(e) Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. Questa manopola imposta l'ampiezza degli accordi in ottave. L'accordo selezionato verrà eseguito all'interno del numero di ottave impostato. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT ABILITA INGRESSO MIDI CHANNEL CANALE VELOCITY VALOCITY ENABLE MIDI OUTPUT ABILITA USCITA MIDI PROGRAM PROGRAMMA MIDI devices to receive MIDI events from MIDI devices to send MIDI events to NOTE InstrumentSoundShaping VOLUME VOLUME Volume Volume CUTOFF CUTOFF Cutoff frequency Frequenza di taglio RESO RISO Resonance Risonanza Envelopes/LFOs Envelope/LFO Filter type Tipo di filtro Q/Resonance Q/Risonanza LowPass PassaBasso HiPass PassaAlto BandPass csg PassaBanda csg BandPass czpg PassaBanda czpg Notch Notch Allpass Passatutto Moog Moog 2x LowPass PassaBasso 2x RC LowPass 12dB RC BandPass 12dB RC HighPass 12dB RC LowPass 24dB RC BandPass 24dB RC HighPass 24dB Vocal Formant Filter InstrumentSoundShapingView TARGET SCOPO These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! Queste schede contengono envelopes. Sono molto importanti per modificare i suoni, senza contare che sono quasi sempre necessarie per la sintesi sottrattiva. Per esempio se si usa un envelope per il volume, si può impostare quando un suono avrà un certo volume. Si potrebbero voler creare archi dal suono morbido, allora il suono deve iniziare e finire in modo molto morbido; ciò si ottiene impostando tempi di attacco e di rilascio ampi. Lo stesso vale per le altre funzioni degli envelope, come il panning, la frequenza di taglio dei filtri e così via. Bisogna semplicemente giocarci un po'! Si possono ottenere suoni veramente interessanti a partire da un'onda a dente di sega usando soltanto qualche envelope...! FILTER FILTRO Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. Qui è possibile selezionare il filtro da usare per questa traccia. I filtri sono molto importanti per cambiare le caratteristiche del suono. Hz Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... Questa manopola imposta la frequenza di taglio del filtro. La frequenza di taglio specifica la frequenza a cui viene tagliato il segnate di un filtro. Per esempio un filtro passa-basso taglia tutte le frequenze sopra la frequenza di taglio, mentre un filtro passa-alto taglia tutte le frequenza al di sotto della frequenza di taglio e così via... RESO RISO Resonance: Risonanza: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. Questa manopola imposta il parametro (Q) per la risonanza del filtro selezionato. Il parametro per la risonanza specifica l'ampiezza della campana di frequenze intorno alla frequenza di taglio che devono essere amplificate. FREQ FREQ cutoff frequency: InstrumentTrack unnamed_track traccia_senza_nome Volume Volume Panning Panning Pitch FX channel Canale FX Default preset Impostazioni predefinite With this knob you can set the volume of the opened channel. Questa manopola imposta il volume del canale. Base note Nota base Pitch range InstrumentTrackView Volume Volume Volume: Volume: VOL VOL Panning Panning Panning: Panning: PAN PAN MIDI MIDI Input Ingresso Output Uscita InstrumentTrackWindow GENERAL SETTINGS IMPOSTAZIONI GENERALI Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. Cliccando qui si salvano le attuali impostazioni del canale in un file. Sarà poi possibile ricaricare queste impostazioni facendo doppio-click su questo file nel navigatore dei preset. Instrument volume Volume dello strumento Volume: Volume: VOL VOL Panning Panning Panning: Panning: PAN PAN Pitch Pitch: Pitch: cents centesimi PITCH PITCH FX channel Canale FX ENV/LFO ENV/LFO FUNC FUNC FX FX MIDI MIDI Save preset Salva il preset XML preset file (*.xpf) File di preset XML (*.xpf) PLUGIN PLUGIN Save current channel settings in a preset-file Pitch range (semitones) RANGE AMPIEZZA LadspaControl Link channels Abbina i canali LadspaControlDialog Link Channels Canali abbinati Channel Canale LadspaControlView Link channels Abbina i canali Value: Valore: Sorry, no help available. Spiacente, nessun aiuto disponibile LadspaEffect Effect Effetto Unknown LADSPA plugin %1 requested. Il plugin LADSPA %1 richiesto è sconosciuto. LfoController LFO Controller Controller dell'LFO Base value Valore di base Oscillator speed Velocità dell'oscillatore Oscillator amount Quantità di oscillatore Oscillator phase Fase dell'oscillatore Oscillator waveform Forma d'onda dell'oscillatore Frequency Multiplier Moltiplicatore della frequenza LfoControllerDialog LFO LFO LFO Controller Controller dell'LFO BASE BASE Base amount: Quantità di base: todo da fare SPD VEL LFO-speed: Velocità dell'LFO: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. Questa manopola imposta la velocità dell'LFO selezionato. Più grande è questo valore più velocemente l'LFO oscillerà e più veloce sarà l'effetto. AMT Q.TÀ Modulation amount: Quantità di modulazione: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. Questa manopola imposta la quantità di modulazione dell'LFO selezionato. Più grande è questo valore più la grandezza selezionata (ad es. il volume o la frequenza di taglio) sarà influenzata da questo LFO. PHS FASE Phase offset: Scostamento della fase: degrees gradi With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Questa manopola regola lo scostamento della fase per l'LFO. Ciò significa spostare il punto dell'oscillazione da cui parte l'oscillatore. Per esempio, con un'onda sinusoidale e uno scostamento della fase di 180 gradi, l'onda inizierà scendendo. Lo stesso vale per un'onda quadra. Click here for a sine-wave. Cliccando qui si ha un'onda sinusoidale. Click here for a triangle-wave. Cliccando qui si ottiene un'onda triangolare. Click here for a saw-wave. Cliccando qui si ottiene un'onda a dente di sega. Click here for a square-wave. Cliccando qui si ottiene un'onda quadra. Click here for a a moog saw-wave. Cliccando qui si ha un'onda a dente di sega moog. Click here for an exponential wave. Cliccando qui si ha un'onda esponenziale. Click here for white-noise. Cliccando qui si ottiene rumore bianco. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory Directory di lavoro The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. La directory di lavoro di LMMS %1 non esiste. La creo adesso? Questa directory può essere cambiata in un secondo momento dal menu Modifica -> Impostazioni. Could not save config-file Non è stato possibile salvare il file di configurazione Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. Non è stato possibile salvare il file di configurazione %1. Probabilmente non hai i permessi di scrittura per questo file. Assicurati di avere i permessi in scrittura per il file e riprova. &Project &Progetto &New &Nuovo &Open... &Apri... Recently opened projects Progetti aperti di recente &Save &Salva Save &As... Salva &Con Nome... Import... Importa... E&xport... E&sporta... &Quit &Esci &Edit &Modifica Settings Impostazioni &Tools S&trumenti &Help &Aiuto Online help Aiuto in linea Help Aiuto What's this? Cos'è questo? About Informazioni su Create new project Crea un nuovo progetto Create new project from template Crea un nuovo progetto da un modello Open existing project Apri un progetto esistente Recently opened project Progetti aperti di recente Save current project Salva questo progetto Export current project Esporta questo progetto Show/hide Song-Editor Mostra/nascondi il Song-Editor By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. Questo pulsante mostra o nasconde il Song-Editor. Con l'aiuto del Song-Editor è possibile modificare la playlist e specificare quando ogni traccia viene riprodotta. Si possono anche inserire e spostare i campioni (ad es. campioni rap) direttamente nella lista di riproduzione. Show/hide Beat+Bassline Editor Mostra/nascondi il Beat+Bassline Editor By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. Questo pulsante mostra o nasconde il Beat+Bassline Editor. Il Beat+Bassline Editor serve per creare beats, aprire, aggiungere e togliere canali, tagliare, copiare e incollare pattern beat e pattern bassline. Show/hide Piano-Roll Mostra/nascondi il Piano-Roll Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. Questo pulsante mostra o nasconde il Piano-Roll. Con l'aiuto del Piano-Roll è possibile modificare sequenze melodiche in modo semplice. Show/hide Automation Editor Mostra/nascondi l'Editor dell'automazione Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Questo pulsante mostra o nasconde l'editor dell'automazione. Con l'aiuto dell'editor dell'automazione è possibile rendere dinamici alcuni valori in modo semplice. Show/hide FX Mixer Mostra/nascondi il mixer degli effetti Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Questo pulsante mostra o nasconde il mixer degli effetti. Il mixer degli effetti è uno strumento molto potente per gestire gli effetti della canzone. È possibile inserire effetti in altri canali di effetti. Show/hide project notes Mostra/nascondi le note del progetto Click here to show or hide the project notes window. In this window you can put down your project notes. Questo pulsante mostra o nasconde la finestra delle note del progetto. Qui è possibile scrivere le note per il progetto. Show/hide controller rack Mostra/nascondi il rack di controller Untitled Senza_nome LMMS %1 LMMS %1 Project not saved Progetto non salvato The current project was modified since last saving. Do you want to save it now? Questo progetto è stato modificato dopo l'ultimo salvataggio. Vuoi salvarlo adesso? Open project Apri progetto Save project Salva progetto Help not available Aiuto non disponibile Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. Al momento non è disponibile alcun aiuto in LMMS. Visitare http://lmms.sf.net/wiki per la documentazione di LMMS. My projects My samples My presets My home My computer Root directory Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 Project recovery It looks like the last session did not end properly. Do you want to recover the project of this session? Configuration file Error while parsing configuration file at line %1:%2: %3 MeterDialog Meter Numerator Numeratore della misura Meter Denominator Denominatore della misura TIME SIG MeterModel Numerator Numeratore Denominator Denominatore MidiAlsaRaw::setupWidget DEVICE PERIFERICA MidiAlsaSeq::setupWidget DEVICE PERIFERICA MidiController MIDI Controller Controller MIDI unnamed_midi_controller controller_midi_senza_nome MidiImport Setup incomplete You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiOss::setupWidget DEVICE PERIFERICA MidiPort Input channel Canale di ingresso Output channel Canale di uscita Input controller Output controller Controller il uscita Fixed input velocity Velocity in ingresso fisso Fixed output velocity Velocity in uscita fisso Output MIDI program Programma MIDI in uscita Receive MIDI-events Ricevi eventi MIDI Send MIDI-events Invia eventi MIDI Fixed output note OscillatorObject Osc %1 volume Volume osc %1 Osc %1 panning Panning osc %1 Osc %1 coarse detuning Intonazione osc %1 Osc %1 fine detuning left Intonazione precisa osc %1 sinistra Osc %1 fine detuning right Intonazione precisa osc %1 destra Osc %1 phase-offset Scostamento fase osc %1 Osc %1 stereo phase-detuning Intonazione fase stereo osc %1 Osc %1 wave shape Forma d'onda Osc %1 Modulation type %1 Modulazione di tipo %1 Osc %1 waveform Forma d'onda osc %1 PatmanView Open other patch Apri un altro patch Click here to open another patch-file. Loop and Tune settings are not reset. Clicca qui per aprire un altro file di patch. Le impostazioni di ripetizione e intonazione non vengono reimpostate. Loop Ripetizione Loop mode Modalità ripetizione Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. Qui puoi scegliere la modalità di ripetizione. Se abilitato, PatMan userà l'informazione sulla ripetizione disponibile nel file. Tune Intonazione Tune mode Modalità intonazione Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. Qui puoi scegliere la modalità di intonazione. Se abilitato, PatMan intonerà il campione alla frequenza della nota. No file selected Nessun file selezionato Open patch file Apri file di patch Patch-Files (*.pat) File di patch (*.pat) PeakController Peak Controller Controller dei picchi Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK PICCO LFO Controller Controller dell'LFO PeakControllerEffectControlDialog BASE BASE Base amount: Quantità di base: Modulation amount: Quantità di modulazione: Attack: Attacco: Release: Rilascio: AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Valore di base Modulation amount Quantità di modulazione Mute output Uscita muta Attack Attacco Release Rilascio Abs Value Amount Multiplicator PianoView Base note Nota base Plugin Plugin not found Plugin non trovato The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Il plugin "%1" non è stato trovato o non è stato possibile caricarlo! Motivo: "%2" Error while loading plugin Errore nel caricamento del plugin Failed to load plugin "%1"! Non è stato possibile caricare il plugin "%1"! ProjectRenderer WAV-File (*.wav) File WAV (*.wav) Compressed OGG-File (*.ogg) File in formato OGG compresso (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: Nome: Maker: Autore: Requires Real Time: Richiede Real Time: Yes No No Real Time Capable: Abilitato al Real Time: Channels In: Canali in ingresso: Channels Out: Canali in uscita: File: File: Copyright: Copyright: In Place Broken: In Place Broken: SampleBuffer Open audio file Apri file audio All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Tutti i file audio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) File wave (*.wav) OGG-Files (*.ogg) File OGG (*.ogg) DrumSynth-Files (*.ds) File DrumSynth (*.ds) FLAC-Files (*.flac) File FLAC (*.flac) SPEEX-Files (*.spx) File SPEEX (*.spx) MP3-Files (*.mp3) File MP3 (*.mp3) VOC-Files (*.voc) File VOC (*.voc) AIFF-Files (*.aif *.aiff) File AIFF (*.aif *.aiff) AU-Files (*.au) File AU (*.au) RAW-Files (*.raw) File RAW (*.raw) SampleTCOView double-click to select sample Fare doppio click per selezionare il campione Delete (middle mousebutton) Elimina (tasto centrale del mouse) Cut Taglia Copy Copia Paste Incolla Mute/unmute (<Ctrl> + middle click) Attiva/disattiva la modalità muta (<Ctrl> + tasto centrale) Set/clear record Set/clear record SampleTrack Sample track Traccia di campione Volume Volume SampleTrackView Track volume Volume della traccia Channel volume: Volume del canale: VOL VOL TempoSyncKnob Tempo Sync Sync del tempo No Sync Non in Sync Eight beats Otto battiti Whole note Un intero Half note Una metà Quarter note Quarto 8th note Ottavo 16th note Sedicesimo 32nd note Trentaduesimo Custom... Personalizzato... &Help &Aiuto Custom Personalizzato Synced to Eight Beats In sync con otto battiti Synced to Whole Note In sync con un intero Synced to Half Note In sync con un mezzo Synced to Quarter Note In sync con quarti Synced to 8th Note In sync con ottavi Synced to 16th Note In sync con 16simi Synced to 32nd Note In sync con 32simi TimeDisplayWidget click to change time units TrackContainer Couldn't import file Non è stato possibile importare il file Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. Non è stato possibile trovare un filtro per importare il file %1. È necessario convertire questo file in un formato supportato da LMM usando un altro programma. Couldn't open file Non è stato possibile aprire il file Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! Non è stato possibile aprire il file %1 in lettura. Assicurarsi di avere i permessi in lettura per il file e la directory che lo contiene e riprovare! Loading project... Caricamento del progetto... Cancel Annulla Please wait... Prego attendere... Importing MIDI-file... Importazione del file MIDI... Importing FLP-file... Importazione del file FLP... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Usare la modulazione di fase per modulare l'oscillatore 2 con l'oscillatore 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 Usare la modulazione di amplificazione per modulare l'oscillatore 2 con l'oscillatore 1 Mix output of oscillator 1 & 2 Miscelare gli oscillatori 1 e 2 Synchronize oscillator 1 with oscillator 2 Sincronizzare l'oscillatore 1 con l'oscillatore 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Usare la modulazione di frequenza per modulare l'oscillatore 2 con l'oscillatore 1 Use phase modulation for modulating oscillator 3 with oscillator 2 Usare la modulazione di fase per modulare l'oscillatore 3 con l'oscillatore 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 Usare la modulazione di amplificazione per modulare l'oscillatore 3 con l'oscillatore 2 Mix output of oscillator 2 & 3 Miscelare gli oscillatori 2 e 3 Synchronize oscillator 2 with oscillator 3 Sincronizzare l'oscillatore 2 con l'oscillatore 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Usare la modulazione di frequenza per modulare l'oscillatore 3 con l'oscillatore 2 Osc %1 volume: Volume osc %1: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Questa manopola regola il volume dell'oscillatore %1. Un valore pari a 0 equivale a un oscillatore spento, gli altri valori impostano il volume corrispondente. Osc %1 panning: Panning osc %1: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Questa manopola regola il posizionamento nello spettro stereo dell'oscillatore %1. Un valore pari a -100 significa tutto a sinistra mentre un valore pari a 100 significa tutto a destra. Osc %1 coarse detuning: Intonazione dell'osc %1: semitones semitoni With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Questa manopola regola l'intonazione, con la precisione di 1 semitono, dell'oscillatore %1. L'intonazione può essere variata di 12 semitoni (un'ottava) in positivo e in negativo. Può essere usata per creare suoni con un accordo. Osc %1 fine detuning left: Intonazione precisa osc %1 sinistra: cents centesimi With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Questa manopola regola l'intonazione precisa dell'oscillatore %1 per il canale sinistro. La gamma per l'intonazione di precisione va da -100 a +100 centesimi. Può essere usata per creare suoni "grossi". Osc %1 fine detuning right: Intonazione precisa dell'osc %1 - destra: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Questa manopola regola l'intonazione precisa dell'oscillatore %1 per il canale destro. La gamma per l'intonazione di precisione va da -100 a +100 centesimi. Può essere usata per creare suoni "grossi". Osc %1 phase-offset: Scostamento fase dell'osc %1: degrees gradi With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Questa manopola regola lo scostamento della fase dell'oscillatore %1. Ciò significa che è possibile spostare il punto in cui inizia l'oscillazione. Per esempio, un'onda sinusoidale e uno scostamento della fase di 180 gradi, fanno iniziare l'onda scendendo. Lo stesso vale per un'onda quadra. Osc %1 stereo phase-detuning: Intonazione fase stereo dell'osc %1: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Questa manopola regola l'intonazione stereo della fase dell'oscillatore %1. L'intonazione stereo della fase specifica la differenza tra lo scostamento della fase del canale sinistro e quello destro. Questo è molto utile per creare suoni con grande ampiezza stereo. Use a sine-wave for current oscillator. Utilizzare un'onda sinusoidale per questo oscillatore. Use a triangle-wave for current oscillator. Utilizzare un'onda triangolare per questo oscillatore. Use a saw-wave for current oscillator. Utilizzare un'onda a dente di sega per questo oscillatore. Use a square-wave for current oscillator. Utilizzare un'onda quadra per questo oscillatore. Use a moog-like saw-wave for current oscillator. Utilizzare un'onda di tipo moog per questo oscillatore. Use an exponential wave for current oscillator. Utilizzare un'onda esponenziale per questo oscillatore. Use white-noise for current oscillator. Utilizzare rumore bianco per questo oscillatore. Use a user-defined waveform for current oscillator. Utilizzare un'onda personalizzata per questo oscillatore. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin Apri un altro plugin VST Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Clicca qui per aprire un altro plugin VST. Una volta cliccato questo pulsante, si aprirà una finestra di dialogo dove potrai selezionare il file. Show/hide GUI Mostra/nascondi l'interfaccia Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Clicca qui per mostrare o nascondere l'interfaccia grafica (GUI) per i plugin VST. Turn off all notes Disabilita tutte le note Open VST-plugin Apri plugin VST DLL-files (*.dll) File DLL (*.dll) EXE-files (*.exe) File EXE (*.exe) No VST-plugin loaded Nessun plugin VST caricato Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Save preset Salva il preset Click here, if you want to save current VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Preset by - VST plugin control VstEffectControlDialog Show/hide Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Save preset Salva il preset Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin Caricamento plugin Please wait while loading VST-plugin... Prego attendere, caricamento del plugin VST... Failed loading VST-plugin Errore nel caricamento del plugin VST The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Non è stato possibile caricare il plugin VST %1 a causa di alcuni errori. Se, con altre applicazioni GNU/Linux il plugin funziona, si prega di contattare uno sviluppatore di LMMS! Open Preset Vst Plugin Preset (*.fxp *.fxb) : default " ' Save Preset .fxp .FXP .FXB .fxb ZynAddSubFxInstrument Portamento Filter Frequency Filter Resonance Bandwidth FM Gain Resonance Center Frequency Resonance Bandwidth Forward MIDI Control Change Events ZynAddSubFxView Show GUI Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Portamento: PORT Filter Frequency: FREQ FREQ Filter Resonance: RES RIS Bandwidth: BW FM Gain: FM GAIN Resonance center frequency: RES CF Resonance bandwidth: RES BW Forward MIDI Control Changes audioFileProcessor Reverse sample Inverti il campione Amplify Amplificazione Start of sample Inizio del campione End of sample Fine del campione Loop Ripetizione Stutter bassBoosterControlDialog FREQ FREQ Frequency: Frequenza: GAIN GUAD Gain: Guadagno: RATIO LIV Ratio: Livello: bassBoosterControls Frequency Frequenza Gain Guadagno Ratio Livello bbEditor Play/pause current beat/bassline (Space) Riproduci/metti in pausa il beat/bassline selezionato (Spazio) Beat+Bassline Editor Beat+Bassline Editor Add beat/bassline Aggiungi beat/bassline Add automation-track Aggiungi una traccia di automazione Stop playback of current beat/bassline (Space) Ferma il beat/bassline attuale (Spazio) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. Cliccando qui si riprodurre il beat/bassline selezionato. Il beat/bassline ricomincia automaticamente quando finisce. Click here to stop playing of current beat/bassline. Cliccando qui si ferma la riproduzione del beat/bassline attivo. Remove steps Elimina note Add steps Aggiungi note bbTCOView Open in Beat+Bassline-Editor Apri nell'editor di Beat+Bassline Reset name Reimposta nome Change name Cambia nome Change color Cambia colore bbTrack Beat/Bassline %1 Beat/Bassline %1 Clone of %1 bitInvader Samplelength LunghezzaCampione bitInvaderView Sample Length Lunghezza del campione Sine wave Onda sinusoidale Triangle wave Onda triangolare Saw wave Onda a dente di sega Square wave Onda quadra White noise wave Rumore bianco User defined wave Forma d'onda personalizzata Smooth Ammorbidisci Click here to smooth waveform. Cliccando qui la forma d'onda viene ammorbidita. Interpolation Interpolazione Normalize Normalizza Draw your own waveform here by dragging your mouse on this graph. Cliccando e trascinando il mouse in questo grafico è possibile disegnare una forma d'onda personalizzata. Click for a sine-wave. Cliccando qui si ottiene una forma d'onda sinusoidale. Click here for a triangle-wave. Cliccando qui si ottiene un'onda triangolare. Click here for a saw-wave. Cliccando qui si ottiene un'onda a dente di sega. Click here for a square-wave. Cliccando qui si ottiene un'onda quadra. Click here for white-noise. Cliccando qui si ottiene rumore bianco. Click here for a user-defined shape. Cliccando qui è possibile definire una forma d'onda personalizzata. exportProjectDialog Could not open file Non è stato possibile aprire il file Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! Impossibile aprire in scrittura il file %1. Assicurarsi di avere i permessi in scrittura per il file e la directory contenente il file e riprovare! Error Errore Error while determining file-encoder device. Please try to choose a different output format. Si è verificato un errore nel tentativo di determinare il dispositivo per la codifica del file. Si prega di selezionare un formato differente. Rendering: %1% Renderizzazione: %1% Export project to %1 Esporta il progetto in %1 fader Please enter a new value between %1 and %2: Inserire un valore compreso tra %1 e %2: fileBrowser Browser fileBrowserTreeWidget Send to active instrument-track Open in new instrument-track/Song-Editor Open in new instrument-track/B+B Editor Loading sample Please wait, loading sample for preview... --- Factory files --- graphModel Graph Grafico kickerInstrument Start frequency Frequenza iniziale End frequency Frequenza finale Decay Decadimento Distortion Distorsione Gain Guadagno kickerInstrumentView Start frequency: Frequenza iniziale: End frequency: Frequenza finale: Decay: Decadimento: Distortion: Distorsione: Gain: Guadagno: knob &Help &Aiuto Please enter a new value between %1 and %2: Inserire un valore compreso tra %1 e %2: Please enter a new value between -96.0 dBV and 6.0 dBV: Inserire un nuovo valore tra -96.0 dBV e 6.0 dBV: ladspaBrowserView Available Effects Effetti disponibili Unavailable Effects Effetti non disponibili Instruments Strumenti Analysis Tools Strumenti di analisi Don't know Sconosciuto This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. Questa finestra mostra le informazioni relative ai plugin LADSPA che LMMS è stato in grado di localizzare. I plugin sono divisi in cinque categorie, in base all'interpretazione dei tipi di porta e ai nomi. Gli Effetti Disponibili sono quelli che possono essere usati con LMMS. Perché LMMS possa usare un effetto deve, prima di tutto, essere un effetto, cioè deve avere sia ingressi che uscite. LMMS identifica un ingresso come una porta con una frequenza audio associata e che contiene 'in' nel nome. Le uscite sono identificate dalle lettere 'out'. Inoltre, l'effetto deve avere lo stesso numero di ingressi e di uscite e deve poter funzionare in real time. Gli Effetti non Disponibili sono quelli che sono stati identificati come effetti ma che non hanno lo stesso numero di ingressi e uscite oppure non supportano il real time. Gli Strumenti sono plugin che hanno solo uscite. Gli Strumenti di Analisi sono plugin che hanno solo ingressi. Quelli Sconosciuti sono plugin che non hanno né ingressi né uscite. Facendo doppio click sui plugin verranno fornite informazioni sulle relative porte. Type: Tipo: ladspaDescription Plugins Plugin Description Descrizione ladspaPortDialog Ports Porte Name Nome Rate Frequenza Direction Direzione Type Tipo Min < Default < Max Minimo < Predefinito < Massimo Logarithmic Logaritmico SR Dependent Dipendente da SR Control Controllo Input Ingresso Output Uscita Toggled Abilitato Integer Intero Float Virgola mobile Yes Audio Audio lb302Synth VCF Cutoff Frequency VCF - frequenza di taglio VCF Resonance VCF - Risonanza VCF Envelope Mod VCF - modulazione dell'envelope VCF Envelope Decay VCF - decadimento dell'envelope Distortion Distorsione Waveform Forma d'onda Slide Decay Decadimento slide Slide Slide Accent Accento Dead Dead 24dB/oct Filter Filtro 24dB/ottava lb302SynthView Cutoff Freq: Freq. di taglio: Resonance: Risonanza: Env Mod: Env Mod: Decay: Decadimento: 303-es-que, 24dB/octave, 3 pole filter filtro tripolare "tipo 303", 24dB/ottava Slide Decay: Decadimento slide: DIST: DIST: Saw wave Onda a dente di sega Click here for a saw-wave. Cliccando qui si ottiene un'onda a dente di sega. Triangle wave Onda triangolare Click here for a triangle-wave. Cliccando qui si ottiene un'onda triangolare. Square wave Onda quadra Click here for a square-wave. Cliccando qui si ottiene un'onda quadra. Rounded square wave Onda quadra arrotondata Click here for a square-wave with a rounded end. Cliccando qui si ottiene un'onda quadra arrotondata. Moog wave Onda moog Click here for a moog-like wave. Cliccando qui si ottieme un'onda moog. Sine wave Onda sinusoidale Click for a sine-wave. Cliccando qui si ottiene una forma d'onda sinusoidale. White noise wave Rumore bianco Click here for an exponential wave. Cliccando qui si ha un'onda esponenziale. Click here for white-noise. Cliccando qui si ottiene rumore bianco. lb303Synth VCF Cutoff Frequency VCF - frequenza di taglio VCF Resonance VCF - Risonanza VCF Envelope Mod VCF - modulazione dell'envelope VCF Envelope Decay VCF - decadimento dell'envelope Distortion Distorsione Waveform Forma d'onda Slide Decay Decadimento slide Slide Slide Accent Accento Dead Dead 24dB/oct Filter Filtro 24dB/ottava lb303SynthView Cutoff Freq: Freq. di taglio: CUT TAG Resonance: Risonanza: RES RIS Env Mod: Env Mod: ENV MOD ENV MOD Decay: Decadimento: DEC DEC 303-es-que, 24dB/octave, 3 pole filter filtro tripolare "tipo 303", 24dB/ottava Slide Decay: Decadimento slide: SLIDE SLIDE DIST: DIST: DIST DIST WAVE: ONDA: WAVE ONDA malletsInstrument Hardness Durezza Position Posizione Vibrato Gain Guadagno del vibrato Vibrato Freq Fequenza del vibrato Modulator Modulatore LFO Speed Velocità dell'LFO LFO Depth Profondità dell'LFO Pressure Pressione Motion Moto Speed Velocità Spread Apertura Stick Mix Stick Mix Crossfade Crossfade ADSR ADSR Bowed Bowed Missing files File mancanti Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! L'installazione di Stk sembra incompleta. Assicurarsi che sia installato il pacchetto Stk completo! Marimba Marimba Vibraphone Vibraphone Agogo Agogo Wood1 Legno1 Reso Reso Wood2 Legno2 Beats Beats Two Fixed Two Fixed Clump Clump Tubular Bells Tubular Bells Uniform Bar Uniform Bar Tuned Bar Tuned Bar Glass Glass Tibetan Bowl Tibetan Bowl malletsInstrumentView Instrument Strumento Spread Apertura Spread: Apertura: Hardness Durezza Hardness: Durezza: Position Posizione Position: Posizione: Vib Gain Guad Vib Vib Gain: Guad Vib: Vib Freq Freq Vib Vib Freq: Freq Vib: Stick Mix Stick Mix Stick Mix: Stick Mix: Modulator Modulatore Modulator: Modulatore: Crossfade Crossfade Crossfade: Crossfade: LFO Speed Velocità LFO LFO Speed: Velocità LFO: LFO Depth Profondità LFO LFO Depth: Profondità LFO: ADSR ADSR ADSR: ADSR: Pressure Pressione Pressure: Pressione: Motion Moto Motion: Moto: Speed Velocità Speed: Velocità: Bowed Bowed Vibrato Vibrato Vibrato: Vibrato: manageVSTEffectView - VST parameter control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView - VST plugin control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help &Aiuto opl2instrument Patch Patch Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Distorsione Volume Volume organicInstrumentView Distortion: Distorsione: Volume: Volume: Randomise Rendi casuale Osc %1 waveform: Onda osc %1: Osc %1 volume: Volume osc %1: Osc %1 panning: Panning osc %1: Osc %1 fine detuning left: Intonazione precisa osc %1 sinistra: cents centesimi papuInstrument Sweep time Tempo di sweep Sweep direction Direzione sweep Sweep RtShift amount Quantità RtShift per lo sweep Wave Pattern Duty Wave Pattern Duty Channel 1 volume Volume del canale 1 Volume sweep direction Direzione sweep del volume Length of each step in sweep Lunghezza di ogni passo nello sweep Channel 2 volume Volume del canale 2 Channel 3 volume Volume del canale 3 Channel 4 volume Volume del canale 4 Right Output level Volume uscita destra Left Output level Volume uscita sinistra Channel 1 to SO2 (Left) Canale 1 a SO2 (sinistra) Channel 2 to SO2 (Left) Canale 2 a SO2 (sinistra) Channel 3 to SO2 (Left) Canale 3 a SO2 (sinistra) Channel 4 to SO2 (Left) Canale 4 a SO2 (sinistra) Channel 1 to SO1 (Right) Canale 1 a SO1 (destra) Channel 2 to SO1 (Right) Canale 2 a SO1 (destra) Channel 3 to SO1 (Right) Canale 3 a SO1 (destra) Channel 4 to SO1 (Right) Canale 4 a SO1 (destra) Treble Alti Bass Bassi Shift Register width Ampiezza spostamento del registro papuInstrumentView Sweep Time: Tempo di sweep: Sweep Time Tempo di sweep Sweep RtShift amount: Quantità RtShift per lo sweep: Sweep RtShift amount Quantità RtShift per lo sweep Wave pattern duty: Wave Pattern Duty: Wave Pattern Duty Wave Pattern Duty Square Channel 1 Volume: Volume del canale 1 square: Length of each step in sweep: Lunghezza di ogni passo nello sweep: Length of each step in sweep Lunghezza di ogni passo nello sweep Wave pattern duty Wave Pattern Duty Square Channel 2 Volume: Volume square del canale 2: Square Channel 2 Volume Volume square del canale 2 Wave Channel Volume: Volume wave del canale: Wave Channel Volume Volume wave del canale: Noise Channel Volume: Volume rumore del canale: Noise Channel Volume Volume rumore del canale SO1 Volume (Right): Volume SO1 (destra): SO1 Volume (Right) Volume SO1 (destra) SO2 Volume (Left): Volume SO2 (sinistra): SO2 Volume (Left) Volume SO2 (sinistra) Treble: Alti: Treble Alti Bass: Bassi: Bass Bassi Sweep Direction Direzione sweep Volume Sweep Direction Direzione sweep del volume Shift Register Width Ampiezza spostamento del registro Channel1 to SO1 (Right) Canale 1 a SO1 (destra) Channel2 to SO1 (Right) Canale 2 a SO1 (destra) Channel3 to SO1 (Right) Canale 3 a SO1 (destra) Channel4 to SO1 (Right) Canale 4 a SO1 (destra) Channel1 to SO2 (Left) Canale 1 a SO2 (sinistra) Channel2 to SO2 (Left) Canale 1 a SO2 (sinistra) Channel3 to SO2 (Left) Canale 3 a SO2 (sinistra) Channel4 to SO2 (Left) Canale 4 a SO2 (sinistra) Wave Pattern Wave Pattern The amount of increase or decrease in frequency La quantità di aumento o diminuzione di frequenza The rate at which increase or decrease in frequency occurs La velocità a cui l'aumento o la diminuzione di frequenza avvengono The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Il duty cycle è il rapporto tra il tempo in cui il segnale è ON e il periodo completo del segnale. Square Channel 1 Volume Volume square del canale 1 The delay between step change Ritardo tra i cambi di step Draw the wave here Disegnare l'onda qui pattern Cannot freeze pattern Impossibile congelare il pattern The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! Non è stato possibile congelare questo pattern perché in modalità riproduzione. Fermare la riproduzione e riprovare! patternFreezeStatusDialog Freezing pattern... Congelamento del pattern... Cancel Annulla patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step un doppio click apre questo pattern nel piano-roll la rotellina del mouse impostare il volume delle note Open in piano-roll Apri nel piano-roll Clear all notes Cancella tutte le note Reset name Reimposta il nome Change name Cambia nome Refreeze Congela nuovamente Freeze Congela Unfreeze Scongela Add steps Aggiungi note Remove steps Elimina note PianoRoll Play/pause current pattern (Space) Riproduci/metti in pausa questo pattern (Spazio) Record notes from MIDI-device/channel-piano Registra note da una periferica/canale piano MIDI Stop playing of current pattern (Space) Ferma la riproduzione di questo pattern (Spazio) Cut selected notes (Ctrl+X) Taglia le note selezionate (Ctrl+X) Copy selected notes (Ctrl+C) Copia le note selezionate (Ctrl+C) Paste notes from clipboard (Ctrl+V) Incolla le note selezionate (Ctrl+V) Piano-Roll - no pattern Piano-Roll - nessun pattern Piano-Roll - %1 Piano-Roll - %1 Please open a pattern by double-clicking on it! Aprire un pattern con un doppio-click sul pattern stesso! Last note Ultima nota Record notes from MIDI-device/channel-piano while playing song or BB track Registra note da una periferica MIDI/canale piano mentre la traccia o la BB track è in riproduzione Draw mode (Shift+D) Modalità disegno (Shift+D) Erase mode (Shift+E) Modalità cancellazione (Shift+E) Select mode (Shift+S) Modalità selezione (Shift+S) Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Cliccando qui si riproduce il pattern selezionato. Questo è utile mentre lo si modifica. Il pattern viene automaticamente ripetuto quando finisce. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Cliccando qui si registrano nel pattern note da una periferica MIDI o dal piano di prova virtuale nella finestra del canale corrispondente. Mentre si registra, tutte le note eseguite vengono scritte in questo pattern e in seguito le si potrà riprodurre e modificare. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Cliccando qui si registrano nel pattern note da una periferica MIDI o dal piano di prova virtuale nella finestra del canale corrispondente. Mentre si registra, tutte le note eseguite vengono scritte in questo pattern, sentendo contemporaneamente la canzone o la traccia BB in sottofondo. Click here to stop playback of current pattern. Cliccando qui si ferma la riproduzione del pattern attivo. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Cliccando qui le note selezionate verranno spostate negli appunti. È possibile incollarle in un punto qualsiasi del pattern cliccando sul tasto incolla. Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Cliccando qui le note selezionate verranno copiate negli appunti. È possibile incollarle in un punto qualsiasi del pattern cliccando sul tasto incolla. Click here and the notes from the clipboard will be pasted at the first visible measure. Cliccando qui i valori nella clipboard vengono incollati alla prima battuta visibile. Note lock Note lock Note Volume Note Panning Detune mode (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser Instrument plugins Plugin strumentali three powerful oscillators you can modulate in several ways tre potenti oscillatori che puoi modulare in diversi modi no description nessuna descrizione VST-host for using VST(i)-plugins within LMMS Host VST per usare i plugin VST con LMMS simple sampler with various settings for using samples (e.g. drums) in an instrument-track Semplice campionatore con molte impostazioni per usare campioni (ad es. di percussioni) in una traccia Filter for importing FL Studio projects into LMMS Filtro per importare progetti di FL Studio in LMMS Filter for importing MIDI-files into LMMS Filtro per importare file MIDI in LMMS Additive Synthesizer for organ-like sounds Sintetizzatore additivo per suoni tipo organo Vibrating string modeler Modulatore di corde vibranti Plugin for enhancing stereo separation of a stereo input file Plugin per migliorare la separazione stereo di un file Plugin for controlling knobs with sound peaks Plugin per controllare le manopole con picchi di suono versatile kick- & bassdrum-synthesizer sintetizzatore di colpo di cassa versatile GUS-compatible patch instrument strumento compatibile con GUS plugin for using arbitrary LADSPA-effects inside LMMS. Plugin per usare qualsiasi effetto LADSPA in LMMS. Plugin for freely manipulating stereo output Plugin per manipolare liberamente un'uscita stereo Incomplete monophonic imitation tb303 Imitazione monofonica del tb303 incompleta plugin for using arbitrary VST-effects inside LMMS. Plugin per usare qualsiasi effetto VST in LMMS. Tuneful things to bang on Oggetti dotati di intonazione su cui picchiare plugin for boosting bass Plugin per aumentare notevolmente i bassi List installed LADSPA plugins Elenca i plugin LADSPA installati Instrument browser Navigatore degli strumenti Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. È possibile trascinare uno strumento nel Song-Editor, nel Beat+Bassline Editor o direttamente in un canale esistente. Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulazione di MOS6581 and MOS8580 SID. Questo chip era utilizzato nel Commode 64. Player for SoundFont files Riproduttore di file SounFont Emulation of GameBoy (TM) APU Emulatore di GameBoy™ APU Customizable wavetable synthesizer Sintetizzatore wavetable configurabile Embedded ZynAddSubFX 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Project notes Note del progetto Put down your project notes here. Scrivi qui le note per il tuo progetto. Edit Actions Modifica azioni &Undo &Annulla operazione Ctrl+Z Ctrl+Z &Redo &Ripeti operazione Ctrl+Y Ctrl+Y &Copy &Copia Ctrl+C Ctrl+C Cu&t &Taglia Ctrl+X Ctrl+X &Paste &Incolla Ctrl+V Ctrl+V Format Actions Formatta azioni &Bold &Grassetto Ctrl+B Ctrl+B &Italic &Corsivo Ctrl+I Ctrl+I &Underline &Sottolineato Ctrl+U Ctrl+U &Left &Sinistra Ctrl+L Ctrl+L C&enter &Centro Ctrl+E Ctrl+E &Right &Destra Ctrl+R Ctrl+R &Justify &Giustifica Ctrl+J Ctrl+J &Color... &Colore... renameDialog Rename... Rinomina... setupDialog Setup LMMS Cofigura LMMS General settings Impostazioni generali BUFFER SIZE DIMENSIONE DEL BUFFER Reset to default-value Reimposta al valore predefinito MISC VARIE Audio settings Impostazioni audio AUDIO INTERFACE INTERFACCIA AUDIO MIDI settings Impostazioni MIDI MIDI INTERFACE INTERFACCIA MIDI OK OK Cancel Annulla Restart LMMS Riavvia LMMS Please note that most changes won't take effect until you restart LMMS! Si prega di notare che la maggior parte delle modifiche non avrà effetto fino al riavvio di LMMS! Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Qui è possibile impostare la dimensione del buffer interno usato da LMMS. Valori più piccoli danno come risultato una latenza più bassa ma possono causare una qualità audio inutilizzabile o cattive prestazioni, specialmente su computer datati o sistemi con kernel non-realtime. Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Qui è possibile selezionare l'interfaccia audio. A seconda della configurazione del tuo sistema in fase di compilazione puoi scegliere tra ALSA, JACK, OSS e altri. Sotto trovi una casella che offre dei controlli per l'interfaccia audio selezionata. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Qui è possibile selezionare l'interfaccia MIDI. A seconda della configurazione del tuo sistema in fase di compilazione puoi scegliere tra ALSA, OSS e altri. Sotto si trova una casella che offre dei controlli per l'interfaccia MIDI selezionata. Display volume as dBV Mostra il volume in dBV LMMS working directory Directory di lavoro di LMMS VST-plugin directory Directory dei plugin VST Artwork directory DIrectory del tema grafico FL Studio installation directory Directory di installazione di FL Studio Performance settings Impostazioni prestazioni UI effects vs. performance Effetti UI (interfaccia grafica) vs. prestazioni Frames: %1 Latency: %2 ms Frames: %1 Latenza: %2 ms Choose LMMS working directory Seleziona la directory di lavoro di LMMS Choose your VST-plugin directory Seleziona la tua directory dei plugin VST Choose artwork-theme directory Seleziona la directory del tema grafico Choose FL Studio installation directory Seleziona la directory di installazione di FL Studio Enable tooltips Abilita i suggerimenti Show restart warning after changing settings Dopo aver modificato le impostazioni, mostra un avviso al riavvio Compress project files per default Per impostazione predefinita, comprimi i file di progetto HQ-mode for output audio-device Modalità alta qualità per l'uscita audio STK rawwave directory Directory per i file rawwave STK Choose LADSPA plugin directory Seleziona le directory dei plugin LADSPA Choose STK rawwave directory Seleziona le directory dei file rawwave STK Paths Percorsi LADSPA plugin paths Percorsi dei plugin LADSPA Default Soundfont File File SoundFont predefinito Background artwork Grafica dello sfondo Choose default SoundFont Scegliere il SoundFont predefinito Choose background artwork Scegliere la grafica dello sfondo One instrument track window mode Compact track buttons Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Smooth scroll in Song Editor Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Bank Banco Gain Guadagno Reverb Riverbero Reverb Roomsize Riverbero - dimensione stanza Reverb Damping Riverbero - attenuazione Reverb Width Riverbero - ampiezza Reverb Level Riverbero - livello Chorus Lines Chorus - voci Chorus Level Chorus - livello Chorus Speed Chorus - velocità Chorus Depth Chorus - profondità Patch Patch Chorus Chorus sf2InstrumentView Open other SoundFont file Apri un altro file SoundFont Click here to open another SF2 file Clicca qui per aprire un altro file SF2 Choose the patch Seleziona il patch Gain Guadagno Apply reverb (if supported) Applica il riverbero (se supportato) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. Questo pulsante abilita l'effetto riverbero, che è utile per effetti particolari ma funziona solo su file che lo supportano. Reverb Roomsize: Riverbero - dimensione stanza: Reverb Damping: Riverbero - attenuazione: Reverb Width: Riverbero - ampiezza: Reverb Level: Riverbero - livello: Apply chorus (if supported) Applica il chorus (se supportato) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Questo pulsante abilita l'effetto chorus, che è utile per effetti di eco particolari ma funziona solo su file che lo supportano. Chorus Lines: Chorus - voci: Chorus Level: Chorus - livello: Chorus Speed: Chorus - velocità: Chorus Depth: Chorus - profondità: Open SoundFont file Apri un file SoundFont SoundFont2 Files (*.sf2) File SoundFont2 (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Taglio Resonance Risonanza Filter type Tipo di filtro Voice 3 off Voce 3 spenta Volume Volume Chip model Modello di chip sidInstrumentView Volume: Volume: Resonance: Risonanza: Cutoff frequency: Frequenza di taglio: High-Pass filter Filtro passa-alto Band-Pass filter Filtro passa-banda Low-Pass filter Filtro passa-basso Voice3 Off Voce 3 spenta MOS6581 SID MOS6581 SID MOS8580 SID MOS8580 SID Attack: Attacco: Decay: Decadimento: Sustain: Sostegno: Release: Rilascio: Pulse Width: Ampiezza pulse: Coarse: Approssimativo: Pulse Wave Onda pulse Triangle Wave Onda triangolare SawTooth Dente di sega Noise Rumore Sync Sincronizzato Ring-Mod Modulazione ring Filtered Filtrato Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. Il livello di attacco determina quanto rapidamente l'uscita della voce %1 sale da zero al picco di amplificazione. Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. Il livello di decadimento determina quanto rapidamente l'uscita ricade dal picco di amplificazione al livello di sostegno impostato. Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. L'uscita della voce %1 rimarrà al livello di sostegno impostato per tutta la durata della nota. The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. L'uscita della voce %1 ricadrà dal livello di sostegno verso il silenzio con la velocità di rilascio impostata. The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. La risoluzione dell'ampiezza del Pulse permette di impostare che l'ampiezza venga variata in modo continuo senza salti udibili. Sull'oscillatore %1 deve essere selezionata la forma d'onda Pulse perché si abbia un effetto udibile. The Coarse detuning allows to detune Voice %1 one octave up or down. L'intonazione permette di "stonare" la voce %1 verso l'alto o verso il basso di un'ottava. Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Il Sync sincronizza la frequenza fondamentale dell'oscillatore %1 con quella dell'oscillatore %2 producendo effetti di "Hard Sync". Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. Ring-mod rimpiazza l'uscita della forma d'onda triangolare dell'oscillatore %1 con la combinazione "Ring Modulated" degli oscillatori %1 e %2. When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Quando il filtraggio è attivo, la voce %1 verrà processata dal filtro. Quando il filtraggio è spento, la voce %1 arriva direttamente all'uscita e il filtro non ha effetto su di essa. Test Test Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. Quando Test è attivo, e finché non viene spento, reimposta e blocca l'oscillatore %1 a zero. song Project saved Progeto salvato The project %1 is now saved. Il progetto %1 è stato salvato. Project NOT saved. Il progetto NON è stato salvato. The project %1 was not saved! Il progetto %1 non è stato salvato! Import file Importa file untitled senza_nome Select file for project-export... Scegliere il file per l'esportazione del progetto... Tempo Tempo Master volume Volume principale Master pitch Altezza principale Empty project Empty project This project is empty so exporting makes no sense. Please put some items into Song Editor first! Questo progetto è vuoto, pertanto non c'è nulla da esportare. Prima di esportare è necessario inserire alcuni elementi nel Song Editor! MIDI sequences Sequenze MIDI FL Studio projects Progetti FL Studio All file types Hydrogen projects Select directory for writing exported tracks... SongEditor Song-Editor Song-Editor Play song (Space) Riproduci la canzone (Spazio) Stop song (Space) Ferma la riproduzione della canzone (Spazio) Add beat/bassline Aggiungi beat/bassline Add sample-track Aggiungi traccia di campione Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. Cliccando qui si riproduce l'intera canzone. La riproduzione inizierà alla posizione attuale del segnaposto (verde). È possibile spostarlo anche durante la riproduzione. Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. Cliccando qui si ferma la riproduzione della canzone. Il segnaposto verrà portato all'inizio della canzone. Could not open file Non è stato possibile aprire il file Could not write file Impossibile scrivere il file Draw mode Modalità disegno Edit mode (select and move) Modalità modifica (seleziona e sposta) Add automation-track Aggiungi una traccia di automazione Record samples from Audio-device Registra campioni da una periferica audio Record samples from Audio-device while playing song or BB track Registra campioni da una periferica audio mentre la canzone o la BB track sono in riproduzione Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Error in file The file %1 seems to contain errors and therefore can't be loaded. Tempo Tempo TEMPO/BPM TEMPO/BPM tempo of song tempo della canzone The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). Il tempo della canzone è specificato in battiti al minuto (BPM). Per cambiare il tempo della canzone bisogna cambiare questo valore. Ogni marcatore ha 4 battiti, pertanto il tempo in BPM specifica quanti marcatori / 4 verranno riprodotti in un minuto (o quanti marcatori in 4 minuti). High quality mode Modalità ad alta qualità Master volume Volume principale master volume volume principale Master pitch Altezza principale master pitch altezza principale Value: %1% Valore: %1% Value: %1 semitones Valore: %1 semitoni Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Spettro lineare Linear Y axis Asse Y lineare spectrumAnalyzerControls Linear spectrum Spettro lineare Linear Y-axis Asse Y lineare Channel mode Modalità del canale stereoEnhancerControlDialog WIDE AMPIO Width: Ampiezza: stereoEnhancerControls Width Ampiezza stereoMatrixControlDialog Left to Left Vol: Volume da Sinistra a Sinistra: Left to Right Vol: Volume da Sinistra a Destra: Right to Left Vol: Volume da Destra a Sinistra: Right to Right Vol: Volume da Destra a Destra: stereoMatrixControls Left to Left Da Sinistra a Sinistra Left to Right Da Sinistra a Destra Right to Left Da Destra a Sinistra Right to Right Da Destra a Destra timeLine Enable/disable auto-scrolling Abilita/disabilita lo scorrimento automatico Enable/disable loop-points Abilita/disabilita i punti di ripetizione After stopping go back to begin Una volta fermata la riproduzione, torna all'inizio After stopping go back to position at which playing was started Una volta fermata la riproduzione, torna alla posizione da cui si è partiti After stopping keep position Una volta fermata la riproduzione, mantieni la posizione Hint Suggerimento Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted Muto Solo Solo trackContentObject Muted Muto trackContentObjectView Current position Posizione attuale Hint Suggerimento Press <Ctrl> and drag to make a copy. Premere <Ctrl>, cliccare e trascinare per copiare. Current length Lunghezza attuale Press <Ctrl> for free resizing. Premere <Ctrl> per ridimensionare liberamente. %1:%2 (%3:%4 to %5:%6) %1:%2 (da %3:%4 a %5:%6) Delete (middle mousebutton) Elimina (tasto centrale del mouse) Cut Taglia Copy Copia Paste Incolla Mute/unmute (<Ctrl> + middle click) Attiva/disattiva la modalità muta (<Ctrl> + tasto centrale) trackOperationsWidget Clone this track Clona questa traccia Remove this track Elimina questa traccia Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Premere <Ctrl> mentre si clicca sulla maniglia per lo spostamento per iniziare una nuova azione di drag'n'drop. Actions for this track Azioni per questa traccia Mute Muto Mute this track Metti questa traccia in modalità muta Solo Solo vestigeInstrument Loading plugin Caricamento plugin Please wait while loading VST-plugin... Prego attendere, caricamento del plugin VST... Failed loading VST-plugin Errore nel caricamento del plugin VST The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Non è stato possibile caricare il plugin VST %1 a causa di alcuni errori. Se, con altre applicazioni GNU/Linux il plugin funziona, si prega di contattare uno sviluppatore di LMMS! vibed String %1 volume Volume della corda %1 String %1 stiffness Durezza della corda %1 Pick %1 position Posizione del plettro %1 Pickup %1 position Posizione del pickup %1 Detune %1 Intonazione %1 Length %1 Lunghezza %1 Impulse %1 Impulso %1 Octave %1 Ottava %1 Pan %1 Pan %1 Fuzziness %1 Fuzziness %1 vibedView Volume: Volume: The 'V' knob sets the volume of the selected string. La manopola 'V' regola il volume della corda selezionata. String stiffness: Durezza della corda: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. La manopola 'S' regola la durezza della corda selezionata. La durezza della corda influenza la durata della vibrazione. Più basso sarà il valore, più a lungo suonerà la corda. Pick position: Posizione del plettro: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. La manopola 'P' regola il punto in cui verrà 'pizzicata' la corda. Più basso sarà il valore, più vicino al ponte sarà il plettro. Pickup position: Posizione del pickup: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. La manopola 'PU' regola la posizione in cui verranno rilevate le vibrazioni della corda selezionata. Più basso sarà il valore, più vicino al ponte sarà il pickup. Pan: Pan: The Pan knob determines the location of the selected string in the stereo field. La manopola Pan determina la posizione della corda selezionata nello spettro stereo. Detune: Intonazione: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. La manopola Intonazione regola l'altezza del suono della corda selezionata. Valori sotto lo zero sposteranno l'intonazione della corda verso il bemolle. Valori sopra lo zero spostarenno l'intonazione della corda verso il diesis. Fuzziness: Fuzziness: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. La manopola Slap aggiungeun po' di "sporco" al suono della corda selezionata, sensibile soprattutto nell'attacco, anche se può essere usato per rendere il suono più "metallico". Length: Lunghezza: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. La manopola Lunghezza regola la lunghezza della corda selezionata. Corde più lunghe suonano più a lungo e hanno un suono più brillante. Tuttavia richiedono anche più tempo del processore. Impulse or initial state Impulso o stato iniziale The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. Il selettore 'Imp' determina se la forma d'onda nel grafico deve essere trattata come l'impulso del plettro sulla corda o come lo stato iniziale della corda. Octave Ottava The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. Il seletore Ottava serve per scegliere a quale armonico della nota risuona la corda. Per esempio, '-2' significa che la corda risuona due ottave sotto la fondamentale, 'F' significa che la corda risuona alla fondamentale e '6' significa che la corda risuona sei ottave sopra la fondamentale. Impulse Editor Editor dell'impulso The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. L'editor della forma d'onda fornisce il controllo sull'impulso iniziale usato per far vibrare la corda. I pulsanti a destra del grafico predispongono una forma d'onda del tipo selezionato. Il pulsante '?' carica la forma d'onda da un file--verranno caricati solo i primi 128 campioni. La forma d'onda può anche essere disegnata direttamente sul grafico. Il pulsante 'S' ammorbisce la forma d'onda. Il pulsante 'N' normalizza la forma d'onda. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Vibed modella fino a nove corde che vibrano indipendentemente. Il selettore 'Corda' permettedi scegliere quale corda modificare. Il selettore 'Imp' sceglie se il grafico sarà l'impulso dato o lo stato iniziale della corda. Il selettore 'Ottava' imposta l'armonico a cui risuonerà la corda. Il grafico permette di controllare l'impulso (o lo stato iniziale) per far vibrare la corda. La manopola 'V' reogla il volume. La manopola 'S' regola la durezza della corda. La manopola 'P' regola la posiziona del plettro. La manopola 'PU' regola la posizione del pickup. 'Pan' e 'Detune' non dovrebbero aver bisogno di spiegazioni. La manopola 'Slap' aggiunge un po' di "sporco" al suono della corda. La manopola 'Lunghezza' regola la lunghezza della corda. Il LED nell'angolo in basso a destra sull'editor della forma d'onda determina se la corda è attiva nello strumento selezionato. Enable waveform Abilita forma d'onda Click here to enable/disable waveform. Cliccando qui si abilita/disabilita la forma d'onda. String Corda The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. Il selettore della Corda serve per scegliere su quale corda hanno effetto i controlli. Uno strumento Vibed può contenere fino a nove corde che indipendenti. Il LED nell'angolo in basso a destra dell'editor della forma d'onda indica se la corda è attiva. Sine wave Onda sinusoidale Triangle wave Onda triangolare Saw wave Onda a dente di sega Square wave Onda quadra White noise wave Rumore bianco User defined wave Forma d'onda personalizzata Smooth Ammorbidisci Click here to smooth waveform. Cliccando qui la forma d'onda viene ammorbidita. Normalize Normalizza Click here to normalize waveform. Cliccando qui la forma d'onda viene normalizzata. &Help &Aiuto Use a sine-wave for current oscillator. Utilizzare un'onda sinusoidale per questo oscillatore. Use a triangle-wave for current oscillator. Utilizzare un'onda triangolare per questo oscillatore. Use a saw-wave for current oscillator. Utilizzare un'onda a dente di sega per questo oscillatore. Use a square-wave for current oscillator. Utilizzare un'onda quadra per questo oscillatore. Use white-noise for current oscillator. Utilizzare rumore bianco per questo oscillatore. Use a user-defined waveform for current oscillator. Utilizzare un'onda personalizzata per questo oscillatore. visualizationWidget click to enable/disable visualization of master-output cliccando si abilita/disabilita la visualizzazione dell'uscita principale Click to enable voiceObject Voice %1 pulse width Ampiezza pulse voce %1 Voice %1 attack Attacco voce %1 Voice %1 decay Decadimento voce %1 Voice %1 sustain Sostegno voce %1 Voice %1 release Rilascio voce %1 Voice %1 coarse detuning Intonazione voce %1 Voice %1 wave shape Forma d'onda voce %1 Voice %1 sync Sincronizzazione voce %1 Voice %1 ring modulate Modulazione ring voce %1 Voice %1 filtered Filtraggio voce %1 Voice %1 test Test voce %1 lmms-1.0.0+bzr2569/data/locale/ja.qm0000644000000000000000000025105511517317720015042 0ustar 00000000000000/N++hunA/V227".7o@۴}C_FzgFzoOXFOX 0Vp>!~(o>6u+ՙ `lߺo CB-A D%Ga3ݗ (^W(^,´g.4NRo x_/Bth9%8nQCf3n9>.ѻ1t>g~l~#]D(2Q4Z78J.P:)CBHH>EOXP~P~!0Wa]?]YS%l zŐ)ĩR$#{#6yص# RA~CW(6ĽPϯѫ6~ONք왞&0/guBY37Y$. 0}(10v19FA>JyPJPJ Qq.Qq.]`$E``%y`% ic=g5hjztyUw~eW{ D9\ Nvuu uDuuu4uouJ{V I,%IUIIPI&3AžtHͥ(غؽ`+^fn* u u @lW TzΎ g$0%TO-U15 8V EzP?H8RPepQ\C.> fs XvA }o.w"'NÞD\Yo^"~EU߭<5Y9<5c<5d<5<5L<5s(Dt}JZCNP^EPix#EC'v1^-):gNW@Gk)M9.d'Q)]WjYZ+[0p[3l%lmmBWz #{h|>I2)$12O(=22ޔreT[ti>0t?r: Ů 2Y#)=,D5n;ZT? ~?UIͣ[t~\X.yciAN|m.{wQmBg6 mj>,u2+2W]d<)*-X@#)U$Ϟ:;0G/`Gx!BI |QԁS6NiW~ \bsjDnqwvSe5r(c5$!0d1^n% hٝd{MJ X8P1e࣓'OY1 $  % )8 .5n_ 6E 9 I+ Mg T= YAN# hI. hI.6 k p, w%c w% x+ > >8,  _ B1 B1 ^ ` `Y -  n# F w> Knr /   UU u} R 1 L NA ] ·~ ʵ J\Wa D N ؋v ہN DK۰ *? I9 ".w $ rV 'md )x + N STn STn \{ \ ` m 4 m , m  m { s TW  $nYr = N/P N2 h8 ƟhN 4 ӗ` ӰV غ+ < <6 e ~O i̘  : .Q . ʓ,d " $&yA ==^ V c" c.cX c.cO c.c c.c c޵ c d̥( d̥ d̥ t |`  |@ ] s2 k ^щ #   鼣w ]2 [ + Z] j .˙ @ua @uA aoΞ bS#C |. ~` Mz .] .7 0^f ɶ.P Չ9( /^ /^7L ^'c :f'n~^iyf!&ʮE2g<)B>B.P%|Q>JpYd]Gad^{cg*ndyJNYȘ8-N! F |[$en(¬)3Cg0IڍU&CXҾfc^ E׬` ^7K t¥ILE~g~ܹi@ 00000Arpeggio Arpeggiator00000eTArpeggio direction Arpeggiator00000000 Arpeggio gate Arpeggiator00000000 Arpeggio mode Arpeggiator00000^Arpeggio range Arpeggiator00000fB Arpeggio time Arpeggiator00000000 Arpeggio type ArpeggiatorV000000o0r*_>0O0000ni}Vh0g O000oYOl0g0Y0000000O0F0hu0Mu0M0h0W0_i}0k0j00~0Y00000n00F0j i}Vh0n_&0oT0n00F0kr*_>0K00~0Y00Y0y0f0n0T fB0k0j00YT0h0oU0c0f0000000g0o_&000k00W0~0Y0Nhv0j000000ow0Kw튿0n0g0Y000a0000_0O0U00B00]0nN0nS0jT0x0v0S0h00g0M0~0Y0An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select.ArpeggiatorView0S0n0d0~00g000000000c[0W0~0Y0000000000o00000000QhOS0nOU000000oYO0Y00K0g0Y00S00O0H0p0K0c0S0D0D000000000000O\00~0Y0Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios.ArpeggiatorViewz0S0n0d0~00g00000SXOM0g00000{V0xb0W0~0Y0xb0U00_000000oc[0W0_00000ep0n{VQ0goYO0U00~0Y0Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves.ArpeggiatorViewp0S0n0d0~00g00ySXOM0g00000fB00000W0~0Y000000fB0k0oT00n000000n0nw0U0c[0W0~0Y0Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played.ArpeggiatorView 00000CHANNELSAudioAlsa::setupWidget0000DEVICEAudioAlsa::setupWidget00000Y00h00{0K0n00000000000r00M0~0Y000000x0y0X4b@0k000000Lhy:0U00~0Y00000000Yp0h}BNp0P s0j0i0n-[0o00000U00~0[00000000n00000h0oup0j00k0j00K00W00~0[00Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample.AudioFileProcessorView0i0S0K00000000LY0~00K0c[0W0~0Y00000000LY0~00h000000000000o00Y0y0f0n000 0LoYO0U000~0g000000nYp0h}BNp0n00000W0~0Y00000000000000n00000j0i0kRgv0g0Y0Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples.AudioFileProcessorViewv0S0n0000g R0k0Y00p00Y0y0f0n00000LVގ0U00~0Y000000000000h0D0F0K0c0S0D0D000000kO0H0~0Y0pIf you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash.AudioFileProcessorView Yp0h}BNp0g00000000#Loop sample at start- and end-pointAudioFileProcessorViewN0n000000OOpen other sampleAudioFileProcessorView0000VގReverse sampleAudioFileProcessorView0S0n0d0~00gX^Es0et0g0M0~0Y00S0nP$0100%0k0Y00h00000oY S0W0~0[000]0F0g0j0D0h0M0oX^Es0LN N 0W0~0Y[0n000000000]0n0~0~0g 0With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!)AudioFileProcessorView0S0n0d0~00g000000000000000L0L0000oYO0Y0Y0X4b@00000W0~0Y00000000ON0k0W0f0X4T0g0r0h0d0n0000L000000000h00000000n0n000000w0DX4T00S00gc[0W0_OMn0L00000000000Lb;0p0g0Y0With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points.AudioFileProcessorView0S0n0d0~00g00000000000L0000oYO000000Y0OMn0c[0W0~0Y000W0000000LON0nX4T0g0r0h0d0n0000LYp0h}BNp0n0B0D0`0n000000w0DX4T00S0nOMn0o00000000000Lb;0OMn0g0Y0With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points.AudioFileProcessorView 00000CHANNELSAudioJack::setupWidget000000T  CLIENT-NAMEAudioJack::setupWidget 00000CHANNELSAudioOss::setupWidget0000DEVICEAudioOss::setupWidget0000DEVICEAudioPortAudio::setupWidget 00000CHANNELSAudioPulseAudio::setupWidget0000DEVICEAudioPulseAudio::setupWidget0000DEVICEAudioSdl::setupWidget P$0000(&C) (%1%2)&Copy value (%1%2)AutomatableModel"P$00000(&P) (%1%2)&Paste value (%1%2)AutomatableModel0000(&R) (%1%2) &Reset (%1%2)AutomatableModel0000000kc}Connect to controller...AutomatableModel%1 0kc}nConnected to %1AutomatableModel0000000kc}nConnected to controllerAutomatableModel c}0}Edit connection...AutomatableModelkLQhOS0n000000000}Edit song-global automationAutomatableModel c}0mSRemove connectionAutomatableModel4xb0U00_P$0o0Y0y0f00000000k0000U00~0W0_1All selected values were copied to the clipboard.AutomationEditor"000000000000 - %1Automation Editor - %1AutomationEditor*000000000000 - 00000j0WAutomation Editor - no patternAutomationEditor00000Y00h0000000ON0k0W0~0Y00000000g0o0r0h0d0nP$0R0W0_0yR0W0_00W0~0Y00S0n0000L000000gfnk0d0K0D0~0Y0 'Shift+D' 00J0W0f00000000ON0k0g0M0~0Y0Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode.AutomationEditor00000Y00hmS0000ON0k0W0~0Y0mS0000g0o0r0h0d0nP$0mS0g0M0~0Y0 'Shift+E' 00J0W0f0mS0000ON0k0g0M0~0Y0Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode.AutomationEditor00000Y00hxb0000ON0k0W0~0Y0xb0000g0o0D0O0d0K0nP$0xb0g0M0~0Y00S0n0000o0D0O0d0K0nP$00000000000000mS0yR0Y00h0M0k_ʼn0g0Y0 'Shift+S' 00J0W0f0xb00000ON0k0g0M0~0Y0Click here and select-mode will be activated. In this mode you can select values. This is necessary if you want to cut, copy, paste, delete, or move values. You can also press 'Shift+S' on your keyboard to activate this mode.AutomationEditor00000Y00hxb0W0_P$000000000k0000W0~0Y00]0nP$0o00000000b0Y0hNa0n0000nNa0nX4b@0k00000g0M0~0Y0Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditor00000Y00hxb0W0_P$000000000k0000W0~0Y00]0nP$0o00000000b0Y0hNa0n0000nNa0nX4b@0k00000g0M0~0Y0Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditorL00000Y00h00000000K0P$0LgR0nSraK0n\{0k00000U00~0Y0YClick here and the values from the clipboard will be pasted at the first visible measure.AutomationEditor|00000Y00hsW(0n00000oYO0W0~0Y00000}N-0noYO0kOR)0g0Y0}BNOMn0k0O00h00000oRv0k0000U00~0Y0Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached.AutomationEditor000000Y00hsW(0n00000noYO0P\kb0W0~0Y0>Click here if you want to stop playing of the current pattern.AutomationEditor&xb0W0_P$0000 (Ctrl+C)Copy selected values (Ctrl+C)AutomationEditor&xb0W0_P$0000 (Shift+M)Cut selected values (Ctrl+X)AutomationEditor&yR xb00000(Shift+M)Move selection mode (Shift+M)AutomationEditor0P$000000000K00000 (Ctrl+V)$Paste values from clipboard (Ctrl+V)AutomationEditorL0000000n00000000000g0000000000000x00g0O0`0U0DEPlease open an automation pattern with the context menu of a control!AutomationEditorxb000 (Shift+S)Select mode (Shift+S)AutomationEditorP$0o0000U00~0W0_ Values copiedAutomationEditor([LN-0n0000000000<Ctrl>$Drag a control while pressing AutomationPattern%1 P 0nc}%1 ConnectionsAutomationPatternView000ClearAutomationPatternView"%1" 0ReDisconnect "%1"AutomationPatternView 000000000000N-0k0OOpen in Automation editorAutomationPatternViewT RM00000 Reset nameAutomationPatternViewD00000000g0S0n00000000000000000N-0k0r00M0~0Y6double-click to open this pattern in automation editorAutomationPatternView000000000000Automation trackAutomationTrackl0S0n0d0~00g000{V0000000g-[0g0M0~0Y0c[0W0_000000n{VQ0gxb0W0_0000LoYO0U00~0Y0{Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves.ChordCreatorView000000 %1 Controller %1 ControllerRiQ Auto DetectControllerConnectionDialog 00000CHANNELControllerConnectionDialog 000000 CONTROLLERControllerConnectionDialog 00000CancelControllerConnectionDialog000000-[Connection SettingsControllerConnectionDialog00000omS0U00~0W0_0Cycle Detected.ControllerConnectionDialogQeR00000 Input channelControllerConnectionDialog00000 000000Input controllerControllerConnectionDialog00000epMAPPING FUNCTIONControllerConnectionDialogMIDI 000000MIDI CONTROLLERControllerConnectionDialog0000000000USER CONTROLLERControllerConnectionDialogRAddControllerRackView0000000000Controller RackControllerRackView000(&H)&HelpControllerView0S0n000000dS(&R)&Remove this pluginControllerViewZ00000000o00d0~000000000]0nN0n0000000nP$0RS0Y00S0h0L0g0M0~0Y0QControllers are able to automate the value of a knob, slider, and other controls.ControllerView 000000ControlsControllerView(0000000ne0W0DT RM0Qe00f0O0`0U0D&Enter the new name for this controllerControllerView0000000ne9T Rename controllerControllerView00000g REffect enabledEffect00000g REffects enabled EffectChain00000ȏR Add effectEffectRackView000000000 EFFECTS CHAINEffectRackView00000ȏR Add effectEffectSelectDialog000(&H)&Help EffectView0S0n000000dS(&R)&Remove this plugin EffectView 000000Controls EffectView0000000000ep0o0D0d0d0K0n000000n0r0h#0j00g0Y000000oN 0K0N 0kQt0U00~0Y0 On/Off 00000g0D0d0g0c[0W0_00000000000Y00S0h0L0g0M0~0Y. Wet/Dry00d0~00g0000000nQRN-0nQeR00000h0000000000n000000000000g0M0~0Y0 QeR00000oN0dRM0n00000K00nQR0g0Y00j0n0g#0nN 0ne0n000000n 'dry'00000o0]00~0g0n0000000Y0y0fT+00g0D0Y0 Decay 0d0~00g00000L}B00c0_0B0h0i00`0Q0nfB00000Qt0Y00K00M00~0Y0N0H000_fBQ0kN0H000_0W0M0DP$NN 0k0L=0a0_0h0M0k000000oQt0P\kb0W0~0Y00S0n0d0~00g N0H000_fB 00M00~0Y00S0nfB0w0O0Y00hCPU00D0~0Y00Y0j00a0_Y'b0n000000k0d0D0f0o Decay0o\0U0O0Y00y0M0g0Y000000n00F0jw0DfB0nl0u0X0000000nX4T0oDecay0X00Y_ʼn0L0B00~0Y0 Gate 0n0d0~00g0000000LRP\kb0Y00_00n N0H000_0W0M0DP$"0lz00~0Y00S0n000glz00_000NN 0k00000000L=0a00h0h0Y0P0k N0H000_fB 0L0o0X0~00~0Y0 00000000000g0000000n00000n}0000000r00M0~0Y0 S00000Y00h00000000000L0M0~0Y00]0S0g000000L[L0U00uj00K0H0_0000000[Qh0kmS0W0_00g0M0~0Y0 SEffect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. EffectViewN eyR(&d) Move &down EffectViewN eyR(&u)Move &up EffectView000000d0~00o00D0O0d0nq!00000L000000L00000}BN0Y00~0H0kn!0U00j0D0h0D0Q0j0D0K0et0W0~0Y0\0U0O0Y00hCPU0n00000000x00[0~0Y0L000000h000000000n\;\>0L0000000Y0Sqz0L0B00~0Y0The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. EffectView0000d0~00o00000000000000W0~0Y00S0n00000000o0000Qt00D0d}BN0Y00Klz[0Y00kq!0hR$e0U000000g0Y0zThe Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. EffectViewTWet/Dry 0d0~00g0QRN-0nQeR00000h0000000000nRrT00M00~0Y0eThe Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. EffectView000000n 00/00Toggles the effect on or off. EffectView00000g0n0S0N0l&Click here for a saw-wave for current.EnvelopeAndLfoView00000g000lClick here for a sine-wave.EnvelopeAndLfoViewf00000g0000[l_b00B0h0g0[_0Y0000000000LFO0000nN 0k00000W0f0O0`0U0D0aClick here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph.EnvelopeAndLfoView 00000gLFOThlep0P DClick here if the frequency of this LFO should be multiplied by 100.EnvelopeAndLfoViewD00000Y00h00000000n0L0S0nLFO0g0000000U00~0Y0>Click here to make the envelope-amount controlled by this LFO.EnvelopeAndLfoViewJ0i0c0K0K00000000000W0f0M0f0S0n000000k00000W0f0O0`0U0D08Drag a sample from somewhere and drop it in this window.EnvelopeAndLfoView000HintEnvelopeAndLfoViewz0S0n0d0~00gsW(0nLFO0n00000000c[0W0~0Y0Y'0M0O0Y00hLFO0nc/^E0LgY'0k0j00~0g0k0K0K0fB0Lw0O0j00~0Y0Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum.EnvelopeAndLfoView0S0n0d0~00gsW(0n0000000n00000000c[0W0~0Y00S0nP$0Y'0M0O0Y00h0000000n00000000X00Y0n0kw0DfB0L_ʼn0k0j00~0Y0Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings.EnvelopeAndLfoView0S0n0d0~00gsW(0n0000000n00000000c[0W0~0Y00S0nP$0Y'0M0O0Y00h0000000L00000000K0000000000knp0Y00n0k_ʼn0jfB0Lw0O0j00~0Y00000n00F0ji}Vh0k0ow0DfB0x0s0~0Y0Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos.EnvelopeAndLfoView0S0n0d0~00gsW(0n0000000n00000000c[0W0~0Y000S0nP$0Y'0M0O0Y00h0000000L000000000x0nnp0Y00RM0k0000000000i00O00DOc0Y0fB0Lw0O0j00~0Y0Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level.EnvelopeAndLfoView0S0n0d0~00gsW(0nLFO0n000000000c[0W0~0Y00B0_00Y'0M0O0Y00hLFO0n_q00F0Q0x00`P$00000h0K00000Thlep0h0K 0L0J0J0M0O0j00~0Y0Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO.EnvelopeAndLfoView0S0n0d0~00gsW(0n0000000n000000000c[0W0~0Y00S0nP$0Y'0M0O0Y00h0S0n00000L_q0Y0[_0Y0P$0h0K000000Thlep0h0K 0LY'0M0O0j00~00~0Y0Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope.EnvelopeAndLfoView0S0n0d0~00gsW(0n0000000n0000000c[0W0~0Y00S0nfB0w0O0Y00h[0n0000000L00000Y0RM0nfB0Lw0O0j00~0Y0Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope.EnvelopeAndLfoView0S0n0d0~00gsW(0nLFO0n0000000000c[0W0~0Y00S0nP$0Y'0M0O0Y00h0LSFO0L000000Y000~0g0nfB0Lw0O0j00~0Y0Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate.EnvelopeAndLfoView0S0n0d0~00gsW(0n0000000n00000000c[0W0~0Y0P$0Y'0M0O0Y00h000000000K0000kn\0Y00n0k_ʼn0jfB0Lw0O0j00~0Y0000000n00F0ji}Vh0g0o0S0nP$0Y'0M0O0W0f0O0`0U0DUse this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings.EnvelopeAndLfoViewx0S0n0d0~00gsW(0nLFO0n00000c[0W0~0Y0P$0Y'0M0O0Y00hLFO0n000000Le0O0j0c0f000000e0O0j00~0Y0Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect.EnvelopeAndLfoView0S0n0d0~00gsW(0n0000000n000000000c[0W0~0Y0P$0Y'0M0O0Y00h000000L000k0j0RM0k0h0i0~0c0f00000L0O0j00~0Y0Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero.EnvelopeAndLfoView 00000CancelExportProjectDialog00000 %1FX %1FxMixer000MasterFxMixer*0S0n00000000000ne0W0DT RM0QeR&Enter the new name for this FX channel FxMixerView000000000FX-Mixer FxMixerView0000Mute FxMixerView"0S0n000000000000000Mute this FX channel FxMixerView00000000000ne9T Rename FX channel FxMixerView 00000CHANNELInstrumentMidiIOViewMIDI00000g RSENABLE MIDI INPUTInstrumentMidiIOViewMIDI000000g RENABLE MIDI OUTPUTInstrumentMidiIOView 00000PROGRAMInstrumentMidiIOView 00000VELOCITYInstrumentMidiIOView0000VOLUMEInstrumentSoundShaping0000VolumeInstrumentSoundShaping0S0S0g00S0n0000000000000g0d0K0D0_0D00000000000x0s0~0Y00nry`'00K0H00n0k000000o0h0f0͉0g0Y0Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound.InstrumentSoundShapingViewz0S000n000k0o0000000LT+0~00f0~0Y00000000o0Y f0Y00nY'Y ͉0g0Y00000000o0000000000jTb00Y00h0M0o0{0h00i0D0d0_ʼn0g0Y00_0h0H0p00000000000nX4T00Llz0~0c0_0k0j0fB00000g0M0~0Y0000000000O\00_0D0j000000000000000^^80k0000k0Y0_ʼn0L0B00~0Y00]00o00000000h00000000w0O0Y00S0h0g[s0g0M0~0Y0000000000000n00000Thlep0h0D0c0_0{0K0n0000000R6_0g0M000n0k0d0D0f0N`0o0D0c0W00g0Y00S00g0a00c0hJ00g00f0O0`0U0D!00n0S0N0ko0k0D0O0d0K0n0000000O0F0`0Q0g[0k0000j00000O\00S0h0S0g0M0~0Y0_These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...!InstrumentSoundShapingView0S0n0d0~00g0xb0W0_000000n Q/0000000000W0~0Y00Q/000000k0o00000ThlepN؏0g0i00O00DThlep0X^E0U0[00K0c[0W0~0Y0Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency.InstrumentSoundShapingView60S0n000gxb0W0_000000n00000Thlep00000W0~0Y000000Thlep0o000000L000000000Y0Thlep00M00~0Y00_0h0H0p0000000000o00000ThlepNN 0n0Y0y0f0nThlep00000W0~0Y00000000000o00000ThlepNN 0n0Y0y0f0nThlep00000W0~0Y00_0n000000g0T i0g0Y02Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on...InstrumentSoundShapingView0000000 Base noteInstrumentTrack0000VolumeInstrumentTrack40S0n0d0~00g00D0_000000n00000W0~0Y0000000 0g0S0n0000000Y f0g0M0~0YuThe LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. MainWindowJsW(0n0000000og_0000W0f0K0Y f0U00f0D0~0Y0N0000W0~0Y0KOThe current project was modified since last saving. Do you want to save it now? MainWindow0000Undo MainWindow 0S00oOU What's this? MainWindowO\im000000Working directory MainWindow0000DEVICEMidiAlsaRaw::setupWidget0000DEVICEMidiAlsaSeq::setupWidgetMIDI0000000MIDI ControllerMidiControllerT 0j0W_MIDI_000000unnamed_midi_controllerMidiController0000DEVICEMidiOss::setupWidgetQeR00000V[Fixed input velocityMidiPortQR00000V[Fixed output velocityMidiPortQeR00000 Input channelMidiPort00000 000000Input controllerMidiPortQR MIDI 00000Output MIDI programMidiPortQR00000Output channelMidiPort000000 000000Output controllerMidiPortMIDI 00000SOReceive MIDI-eventsMidiPortMIDI 00000OSend MIDI-eventsMidiPort`0S0S000000W0f00{0K0n000000000M0~0Y00000h00000n-[0o00000U00~0[00LClick here to open another patch-file. Loop and Tune settings are not reset. PatmanViewt0S0S0g0000000ON/OFf0W0~0Y0000000ON0j00PatMan0o0000N-0k0B0000`X100O0D0~0Y0jHere you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. PatmanView0S0S0g00000000ON/OFF0W0~0Y00000000ON0j00PatMan 0o0000nThlep0k0B0F00F0k0000000000W0~0Y0iHere you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. PatmanView000Loop PatmanView 000000 Loop mode PatmanView00000Lxb0U00f0~0[0No file selected PatmanView0{0K0n00000OOpen other patch PatmanView000000000OOpen patch file PatmanView0000000 (*.pat)Patch-Files (*.pat) PatmanView0000Tune PatmanView0000000 Tune mode PatmanView000 000000Peak ControllerPeakController0000000 Base note PianoView00000000N-0n000Error while loading pluginPlugin&00000 "%1" 0n0000kY1eWFailed to load plugin "%1"!Plugin000000L0d0K00~0[0Plugin not foundPluginP00000 "%1" 0o0d0K00j0D0K0000g0M0~0[00 SV0o "%2"0g0Y0AThe plugin "%1" wasn't found or could not be loaded! Reason: "%2"Plugin&W'~. OGG-0000 (*.ogg)Compressed OGG-File (*.ogg)ProjectRenderer WAV-0000 (*.wav)WAV-File (*.wav)ProjectRendererQeR00000 Channels In: QWidgetQR00000Channels Out: QWidget 000000 Copyright: QWidget0000File: QWidget QCMaker: QWidgetT RMName: QWidget0D0D0HNoQWidget000000S: Real Time Capable: QWidget0000000L_ʼn: Requires Real Time: QWidget0o0DYesQWidget000(&H)&Help TempoSyncKnob SAQmR{& 16th note TempoSyncKnob N SANR{& 32nd note TempoSyncKnobQkR{&8th note TempoSyncKnob0000Custom  TempoSyncKnob0000 Custom... TempoSyncKnob 000000 Eight beats TempoSyncKnobNR{& Half note TempoSyncKnob^T gNo Sync TempoSyncKnobVR{& Quarter note TempoSyncKnobSAQmR{&0kT gSynced to 16th Note TempoSyncKnobN SANR{&0kT gSynced to 32nd Note TempoSyncKnobQkR{&0kT gSynced to 8th Note TempoSyncKnob0000000kT gSynced to Eight Beats TempoSyncKnobNR{&0kT gSynced to Half Note TempoSyncKnobVR{&0kT gSynced to Quarter Note TempoSyncKnob Qh{&0kT gSynced to Whole Note TempoSyncKnob 000T g Tempo Sync TempoSyncKnobQh{& Whole note TempoSyncKnob"0n0S0N0l0sW(0n000000gOu(&Use a saw-wave for current oscillator.TripleOscillatorView 000l0sW(0n000000gOu('Use a sine-wave for current oscillator.TripleOscillatorViewe_bl0sW(0n000000gOu()Use a square-wave for current oscillator.TripleOscillatorViewN l0sW(0n000000gOu(+Use a triangle-wave for current oscillator.TripleOscillatorView(0000[l_b0sW(0n000000gOu(3Use a user-defined waveform for current oscillator.TripleOscillatorView&00000000sW(0n000000gOu('Use white-noise for current oscillator.TripleOscillatorView~0S0S000000Y00h0VST-000000n000000000000000000GUI)0Lhy:0U00_0^hy:0k0j0c0_00W0~0Y0QClick here to show or hide the graphical user interface (GUI) of your VST-plugin.VestigeInstrumentView0{0K0n VST-00000000000W0_0D0j0000000S0n000000000Y00h00000000000000Ls00f00000x0y0~0Y0Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file.VestigeInstrumentView DLL-0000 (*.dll)DLL-files (*.dll)VestigeInstrumentView EXE-0000 (*.exe)EXE-files (*.exe)VestigeInstrumentView(VST-plugin0o0000U00f0~0[0No VST-plugin loadedVestigeInstrumentViewVST-0000000OOpen VST-pluginVestigeInstrumentView$0{0K0n VST-0000000000Open other VST-pluginVestigeInstrumentViewGUI0nhy:/^hy: Show/hide GUIVestigeInstrumentView0Y0y0f0n0000000k0W0~0Y0Turn off all notesVestigeInstrumentViewVST-000000n000Y1eWFailed loading VST-plugin VstPlugin000000000N-Loading plugin VstPlugin.VST-0000000000Y00J_0a0O0`0U0D'Please wait while loading VST-plugin... VstPluginVST-plugin %100L0D0O0d0K0ntu10g0000g0M0~0[00g0W0_0 00W0]0nVST0LLinux0n0{0K0nVST-0000000gR0O0j0 LMMS 0nvz0k#}a0W0f0O0`0U0D0The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! VstPluginP sAmplifyaudioFileProcessor 0000}BN End of sampleaudioFileProcessor000LoopaudioFileProcessor0000VގReverse sampleaudioFileProcessor 0000땋YStart of sampleaudioFileProcessor0000000000000RAdd automation-trackbbEditor"beat/bassline 0RAdd beat/basslinebbEditor000 00000000000Beat+Bassline EditorbbEditor00000Y00hsW(0n beat/bassline 0oYO0W0~0Y00beat/bassline00o}BNOMn0k0O00hRv0k0000U00~0Y0qClick here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached.bbEditorF00000Y00hsW(0n beat/bassline 0noYO0P\kb0W0~0Y04Click here to stop playing of current beat/bassline.bbEditorDsW(0n beat/bassline 0 Qu/000 (Space)(Play/pause current beat/bassline (Space)bbEditor8beat/bassline 0nQu0P\kb (Space).Stop playback of current beat/bassline (Space)bbEditorr0Y f Change color bbTCOView T RM0Y f Change name bbTCOView$000+000000-000000OOpen in Beat+Bassline-Editor bbTCOViewT RM00000 Reset name bbTCOView beat/bassline %1Beat/Bassline %1bbTrack00000nw0U Samplelength bitInvader00000Y00h000lClick for a sine-wave.bitInvaderView00000Y00h0n0S0N0lClick here for a saw-wave.bitInvaderView00000Y00he_blClick here for a square-wave.bitInvaderView00000Y00hN lClick here for a triangle-wave.bitInvaderView00000Y00h0000l_b$Click here for a user-defined shape.bitInvaderView00000Y00h0000000Click here for white-noise.bitInvaderView 00000Y00hl_b0^snS0W0~0YClick here to smooth waveform.bitInvaderView20000nN 0g00000000W0f0S0S0kl_b0c0M0~0YADraw your own waveform here by dragging your mouse on this graph.bitInvaderView0000000000g0M0~0[0Could not open fileexportProjectDialog0000 %1 0f0M0u(0k00000g0M0~0[00 0S0n00000h00000T+00000000nf0M0j)P0L0B00K0x0W0fQ^f0M00g0O0`0U0D0Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again!exportProjectDialog000ErrorexportProjectDialogX00000000000000lz[0Y00n0000up0j0QR0000000x00g0O0`0U0D0\Error while determining file-encoder device. Please try to choose a different output format.exportProjectDialog$0000000 %1 0k000000Export project to %1exportProjectDialog000000: %1%Rendering: %1%exportProjectDialog000Graph graphModelf DistortionkickerInstrument000(&H)&Helpknob2%1 0h %2 0n0ne0W0DP$0QeR0W0f0O0`0U0D:+Please enter a new value between %1 and %2:knobJ-96.0 dBV 0h 6.0 dBV00n0ne0W0DP$0QeR0W0f0O0`0U0D:7Please enter a new value between -96.0 dBV and 6.0 dBV:knob g000Analysis ToolsladspaBrowserViewR)u(S00000Available EffectsladspaBrowserView N f0j000 Don't knowladspaBrowserViewi}Vh InstrumentsladspaBrowserView:0S0n000000oLMMS0g0d0K0H00Y0y0f0nLADSPA000000n`X10hy:0W0~0Y0000000o0000000hT RM0k00c0f0d0n00000k00Q0f0B00~0Y0 hy:0U00000000oLMME0gR)u(S0j00n0g0Y00B0000000LLMMS0gR)u(S0g0B00_00k0o00~0Z{,N0k000000g0B00S0h0d0~0QeR000000hQR000000c0c0f0j0D0h0D0Q0~0[00LMMS0oT RM0k 'in' 0LT+0~00000000000000QeR000000hX0W0~0Y0QR0000h0W0fX0Y00n0o 'out'00LT+0~0000n0g0Y00U00k000000nQeR0hQR0nep0LT 0X0g0000000nRO\0LS0g0B0_ʼn0L0B00~0Y0 i}Vh000000oQR000000W0K0j0D00n0g0Y0 g0000oQeR000000W0K0j0D00n0g0Y0 N f0j0000oQeR000000QR00000000d0K00j0K0_00n0g0Y 00000000000000Y00h0000n`X10Lhy:0U00~0Y0TThis dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports.ladspaBrowserView000Type:ladspaBrowserViewR)u(N S00000Unavailable EffectsladspaBrowserViewf DescriptionladspaDescription0o0DYesladspaPortDialogf Distortion lb302Synth00000g000lClick for a sine-wave.lb302SynthView"00000g Moog 00_0D0jl_b Click here for a moog-like wave.lb302SynthView00000g0n0S0N0lClick here for a saw-wave.lb302SynthView 00000g\;\>0L0~00~0c0_e_bl0Click here for a square-wave with a rounded end.lb302SynthView00000ge_blClick here for a square-wave.lb302SynthView00000gN lClick here for a triangle-wave.lb302SynthView00000gcepl_b#Click here for an exponential wave.lb302SynthView00000g0000000Click here for white-noise.lb302SynthViewf Distortion lb303SynthpStk-0000000L[Qh0g0j0D00F0g0Y00Stk-000000L0Y0y0f0000000U00f00S0h0x0W0f0O0`0U0DaYour Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed!malletsInstrument000(&H)&HelpnineButtonSelectorf DistortionorganicInstrument0000VolumeorganicInstrument0000000000g0M0~0[0Cannot freeze patternpatternf0000000k0j0c0f00n0g00000osW(00000g0M0~0[000000000P\kb0W0fQfL0W0f0O0`0U0D0_The pattern currently cannot be freezed because you're in play-mode. Please stop and try again!pattern 00000CancelpatternFreezeStatusDialog0000N-0n0000Freezing pattern...patternFreezeStatusDialog%1 0000%1 steps patternView 1 00001 step patternView 0000׏R Add steps patternViewT RMY f Change name patternView0Y0y0f0n0000000Clear all notes patternView0000Freeze patternView00000000OOpen in piano-roll patternView Q0000Refreeze patternView 0000זdS Remove steps patternViewT RM00000 Reset name patternView 0000dUnfreeze patternViewj00000000g0S0n000000000000k0M0~0Y0 00000000g00000n000000000W0~0Y0Wdouble-click to open this pattern in piano-roll use mouse wheel to set volume of a step patternViewT00000Y00h00000000nN-0n0000LgR0nhy:0U00f0\{0k00000U00~0Y0XClick here and the notes from the clipboard will be pasted at the first visible measure. pianoRoll00000Y00hxb0W0f0D00000L00000000k0000U00~0Y000000000b0Y0hNa0n00000n0i0S0k0g00000W0_000000000g0M0~0Y0Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRoll00000Y00hxb0W0f0D00000L00000000k0000U00~0Y000000000b0Y0hNa0n00000n0i0S0k0g00000W0_000000000g0M0~0Y0Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRollf00000Y00hsW(0n00000Qu00S00o0000}N-0kOR)000000ng_0gRv0k0000W0~0Y0Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. pianoRoll00000Y00h0MIDI00000~0_0o[_0Y000000000000n000000000000K00n0000sW(0n00000k20W0~0Y020nQu0W0_0Y0y0f0n0000osW(0n00000kf0M0~00~0Y0f0M0~00_0000o_0K0Qu/}0g0M0~0Y0Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. pianoRoll00000Y00h0MIDI00000~0_0o[_0Y000000000000n000000000000K00n0000sW(0n00000k20W0~0Y020nQu0W0_0Y0y0f0n0000osW(0n00000kf0M0~00~0Y0f0~0_0oBB00000L000000000goYO0U00~0Y0Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. pianoRoll:00000Y00h sW(0n00000n0000000P\kb0W0~0Y0/Click here to stop playback of current pattern. pianoRoll$xb0000n000 (Ctrl+C)Copy selected notes (Ctrl+C) pianoRoll&xb0000nR0S0 (Ctrl+X)Cut selected notes (Ctrl+X) pianoRoll 000000 (shift+D)Draw mode (Shift+D) pianoRoll mS 000 (shift+E)Erase mode (Shift+E) pianoRoll g_0n000 Last note pianoRoll0000000 Note lock pianoRoll400000000K000000000 (Ctrl+V)#Paste notes from clipboard (Ctrl+V) pianoRoll000000 - %1Piano-Roll - %1 pianoRoll000000 - 00000j0WPiano-Roll - no pattern pianoRoll,sW(0n00000nQu/000 (Space)"Play/pause current pattern (Space) pianoRollB 0000 0nN 0g00000000W0f 0000 00D0f0O0`0U0D/Please open a pattern by double-clicking on it! pianoRoll6MIDI-0000/00000-0000K000002+Record notes from MIDI-device/channel-piano pianoRollRf0BB00000QuN-0k0MIDI-0000/00000-0000K000002JRecord notes from MIDI-device/channel-piano while playing song or BB track pianoRollxb000 (Shift+S)Select mode (Shift+S) pianoRoll(sW(0n00000noYOP\kb (Space)'Stop playing of current pattern (Space) pianoRoll4000000_0D0j00000n0_00nNRv0000000*Additive Synthesizer for organ-like sounds pluginBrowser0000000S0j000000000000000"Customizable wavetable synthesizer pluginBrowserfi}Vh0000000000~0_0o000 00000000000~0_0o[XW(0Y0i}Vh00000k00000g0M0~0Y0nDrag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. pluginBrowser2GameBoy (TM) APU0n00000000Emulation of GameBoy (TM) APU pluginBrowser|MOS6581 and MOS8580 SID0n000000000 0S0n0000o00000640000000gcu(0U00f0D0_0ZEmulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. pluginBrowserFFL Studio 0n0000000LMMS0k000000Y0000001Filter for importing FL Studio projects into LMMS pluginBrowser8MIDI00000LMMS0k000000Y00_00n0000)Filter for importing MIDI-files into LMMS pluginBrowserGUSNc0000ni}VhGUS-compatible patch instrument pluginBrowser0tb3030nN [Qh0j00000000000000%Incomplete monophonic imitation tb303 pluginBrowser i}Vh0000Instrument browser pluginBrowseri}Vh00000Instrument plugins pluginBrowser60000000U00f0 LADSPA 000000n000List installed LADSPA plugins pluginBrowser$0000000000000n00000Player for SoundFont files pluginBrowser400000n0000g0d0~000000000Y000000-Plugin for controlling knobs with sound peaks pluginBrowser80000QeR00000n00000000_70Y000000=Plugin for enhancing stereo separation of a stereo input file pluginBrowser$0000QR0u10k0D0X000000,Plugin for freely manipulating stereo output pluginBrowser"0i00i00_0_0Oi}v0j00`0Y00nTuneful things to bang on pluginBrowser< VST(i)000000LMMS0g0d0K0F0_00nVST000-VST-host for using VST(i)-plugins within LMMS pluginBrowser(00000000000000000000Vibrating string modeler pluginBrowser0j0Wno description pluginBrowser0000000h0Y000000plugin for boosting bass pluginBrowser0000/^00000(<Ctrl.> + N-0000000)#Mute/unmute ( + middle click) sampleTCOView0000Paste sampleTCOView20000/000Set/clear record sampleTCOView00000000g0000xbdouble-click to select sample sampleTCOViewSample track Sample track sampleTrack0000Volume sampleTrack000000000Channel volume:sampleTrackView000000000 Track volumesampleTrackView0000000000000AUDIO INTERFACE setupDialog0000000n000000Artwork directory setupDialogR000000Audio settings setupDialog0000000 BUFFER SIZE setupDialogfou(000000Background artwork setupDialog 00000Cancel setupDialog*FL Studio0n0000000x0s0~0Y'Choose FL Studio installation directory setupDialog.LADSPA000000n0000000x0s0~0YChoose LADSPA plugin directory setupDialog$LMMS0nO\im0000000x0s0~0YChoose LMMS working directory setupDialog0STK rawwave 0n0000000x0s0~0YChoose STK rawwave directory setupDialog(0000000000000000x0s0~0YChoose artwork-theme directory setupDialogfou(0000000x0s0~0YChoose background artwork setupDialog$00000000000000x0s0~0YChoose default SoundFont setupDialog&VST000000000000x0s0~0Y Choose your VST-plugin directory setupDialog(00000000000nW'~.0000000k"Compress project files per default setupDialog$00000 000000000000Default Soundfont File setupDialog0000000000000N S#Disable channel activity indicators setupDialog00000 dBV 0ghy:Display volume as dBV  setupDialog000000 ONEnable tooltips setupDialog"FL Studio 0n000000 FL Studio installation directory setupDialog*0000: %1000000: %2 msFrames: %1 Latency: %2 ms setupDialog -[0ubGeneral settings setupDialog(QR0000000000 HQ-0000kHQ-mode for output audio-device setupDialog0S0S0g MIDI 000000000x0s0~0Y000000fB0n0000-[0k00c0f0ALSA0OSS0{I0L0H00y0~0Y0xb0W0_0MIDI 0000000000n00000-[0nk0LN 0k0B00~0Y0Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. setupDialog0S0S0g0Q*QH0Y000000000000000x0s0~0Y000000fB0n0000-[0k00c0fALSA,JACK, OSS {I0Lx0y0~0Y0N 0kxb0W0_00000000000000n000000u(0n00000L0B00~0Y0Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. setupDialog0S0S0g LMMS 0gOu(0Y0Q00000000c[0W0~0Y0P$0L\0U0D0h0000000L\0U0O0j00~0Y0L\0U0Y0N00hS0D000000000000000000X00j0D00000g0o0r0i0D000000000nONN 00r0M0J0S0W0~0Y0Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. setupDialogLADSAPA00000000LADSPA plugin paths setupDialogLMMS0nO\im0000000LMMS working directory setupDialogMIDI 00000000MIDI INTERFACE setupDialogMIDI -[ MIDI settings setupDialog0]0nNMISC setupDialog(00000-0000nb0U00_000`0QbKR)Only press keys on channel-piano manually setupDialog00Paths setupDialog0000000-[Performance settings setupDialog<LMMS 0QwR0Y00~0g00_0D0f0D0nY f0og R0k0j00~0[0GPlease note that most changes won't take effect until you restart LMMS! setupDialog00000P$0k0000Reset to default-value setupDialogLMMS0QwR Restart LMMS setupDialog&STK rawwave00n000000STK rawwave directory setupDialog LMMS-[ Setup LMMS setupDialog&-[Y f_0"00000ȋfTJ"00hy:,Show restart warning after changing settings setupDialog&UI00000 vs. 0000000UI effects vs. performance setupDialogVST-00000000000VST-plugin directory setupDialog|0S0n0|0_00g0000000000ON00K0c0S0D0D000000000kg R00W0K0W0000000000W0_00000k0W0KR0K0j0D0uThis button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it.sf2InstrumentViewz0S0n0000g000000000ON000K0c0S0D0D000000kg R000W0K0W0000000000W0_00000k0W0KR0K0j0D0pThis button enables the reverb effect. This is useful for cool effects, but only works on files that support it.sf2InstrumentView0000Volume sidInstrument^0000^0oQR000 %!1 0L000K0000c/^E0k0i00`0Qe0OY'0M0O0j00K00lz00~0Y0\Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude.sidInstrumentViewZ0000^0oQR0L000c/^E0K0000000000~0g0i00`0Qe0O\0U0O0j00K0lz00~0Y0iDecay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level.sidInstrumentViewPQR000 %1 0o0000LOc0U00f00x0p00_00000c/^E0Oc0W0~0Y0]Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held.sidInstrumentViewRing-mod0000000 %1 0nQR0nN _b0nl_b0000000 %1 0h %20n0000000000U00f0_}D0T00[0kn0Mc0H0~0Y0}Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2.sidInstrumentViewSync Hard Sync"000000u0X0j0L000000 %1 0nWg,Thlep0 00000 %2 0nWg,Thlep0kT g0W0~0Y0Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects.sidInstrumentViewlTest 00000 %1 000000000000000W0_0h0M0Test 0LP\kb0U000~0g0n0000g0Y0PTest, when set, resets and locks Oscillator %1 at zero until Test is turned off.sidInstrumentViewPCoarse000000g0000 %1 000000N N 0k000000g0M0~0Y0DThe Coarse detuning allows to detune Voice %1 one octave up or down.sidInstrumentView000^EP^0o0f00K0j00000u0X00S0h0j0O00000k0000S0j^E0N0H0~0Y000000 %1 0n000l_b0o^0MS00Rg0c0d00F0kxb0U00j0Q00p0j00~0[00The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect.sidInstrumentViewjQR000 %1 0o0xb0U00_00000000gc[0W0_Y'0M0U0g000000000K0000k\0U0O0j00~0Y0jThe output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate.sidInstrumentViewFiltered0LON0j00000 %1 0o0000000c0fQt0U00~0Y00Filtered0L000j00000 $1 0ovcQR0k0J0O000f000000oQR0kiu(0U00~0[00When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it.sidInstrumentViewzz000000 Empty projectsong FL Studio 000000FL Studio projectssong000000000 Import filesongMIDI 00000MIDI sequencessong0000000 Master pitchsong00000000 Master volumesong 0000000o0000U00f0~0[0Project NOT saved.song0000000O[X0W0~0W0_ Project savedsong6000000-0000000Y000000x00g0O0`0U0D!Select file for project-export...song000Temposong$000000 %1 00000W0~0W0_The project %1 is now saved.song(000000 %1 0o0000U00f0~0[0The project %1 was not saved!songj0000000ozz0g0Y0000000oq!0g0Y000000000k00000n0D0f0K00000000W0f0O0`0U0D0`This project is empty so exporting makes no sense. Please put some items into Song Editor first!song&automation-track0RAdd automation-track songEditor beat/bassline RAdd beat/bassline songEditorsample-track RAdd sample-track songEditor00000Y00hfQhOS0oYO0W0~0Y0000000000000}тr 0nOMn0K0QuY0W0~0Y0QuN-0k00000yR0U0Y0S0h00g0M0~0Y0Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. songEditorb00000Y00h0f0nQu0P\kb0W0~0Y00Qu_0000000000000of0ngR0k0000U00~0Y0uClick here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. songEditor0000000000g0M0~0[0Could not open file songEditor00000kf0M00~0[0Could not write file songEditor0000 %1 0kf0M00S00~0[000YR00000nf0M0j)P0L0B00~0[00 0S0n00000nf0M0j)P0L0B00S0h0x0W0fQ^f0M00g0O0`0U0D0Could not write file %1. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. songEditor 000000 Draw mode songEditor}0000(xb{I Edit mode (select and move) songEditor0000000000High quality mode songEditor0000000 Master pitch songEditor00000000 Master volume songEditor000Qu (Space)Play song (Space) songEditor$0000000000K0000002 Record samples from Audio-device songEditorF0000~0_0oBB00000QuN-0k0000000000K0000002?Record samples from Audio-device while playing song or BB track songEditor0000000 Song-Editor songEditor000P\kb (Space)Stop song (Space) songEditor000/BPM TEMPO/BPM songEditor000Tempo songEditorf0n0000oRk0n000ep(BPM)0gc[0W0~0Y0f0n0000Y f0Y0X4T0o0S0nP$0Y f0W0f0O0`0U0D0T\{0o0d0n000000a0~0Y0K00BPM0g0B000U000000o0NR0k00D0O0d0n\{000/4) 0LoYO0U00(0B00D0oR0k0D0O0d0n\{0LoYO0U000K 0K00M00~0Y0-The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). songEditor0000 %1 SJValue: %1 semitones songEditor0000 %1% Value: %1% songEditor0000 000 master pitch songEditor00000000 master volume songEditor f0n000 tempo of song songEditor}BN_0YOMn0k00i0After stopping go back to begintimeLine$}BN_0Qu0LY0U00_OMn0k00i0?After stopping go back to position at which playing was startedtimeLine}BN_00]0nOMn0n0~0~After stopping keep positiontimeLine 000000000n ON/OFFEnable/disable auto-scrollingtimeLine00000000n ON/OFFEnable/disable loop-pointstimeLine000HinttimeLine4<Ctrl>0b0Y0h0000000000000q!RS-Press to disable magnetic loop-points.timeLine0000Mutedtrack00Solotrack 00000CanceltrackContainer0000 %1000000N-000000L0d0K00~0[00g0W0_0 0{0K0n0000000g00S0n00000LMMS0g00000W0f00000000kY c0W0f0O0`0U0D0Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software.trackContainer00000000000g0M0~0[0Couldn't import filetrackContainer0000000000g0M0~0[00Couldn't open filetrackContainer0000 %1 000u(0k00000g0M0~0[00 00000h00000nQe0c0f00000000L00S0K00000W0f00FN^000g0O0`0U0D0Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again!trackContainer$FLP-0000000000N-...Importing FLP-file...trackContainer&MIDI-0000000000N-...Importing MIDI-file...trackContainer000000000N-Loading project...trackContainer0J_0a0O0`0U0D...Please wait...trackContainer0000MutedtrackContentObject000CopytrackContentObjectView sW(0nw0UCurrent lengthtrackContentObjectViewsW(OMnCurrent positiontrackContentObjectView000CuttrackContentObjectViewmS000N-000 Delete (middle mousebutton)trackContentObjectView000HinttrackContentObjectView<0000/0000ȉd(<Ctrl> + N-0000000 #Mute/unmute ( + middle click)trackContentObjectView0000PastetrackContentObjectView20000Y00k0o<Ctl> 000000W0f0O0`0U0D0%Press and drag to make a copy.trackContentObjectView.0000d0k0o<Ctrl>0b0W0f0O0`0U0D0Press for free resizing.trackContentObjectView0S0n00000n00000Actions for this tracktrackOperationsWidget00000Clone this tracktrackOperationsWidget0000MutetrackOperationsWidget0S0n000000000Mute this tracktrackOperationsWidgetdyR000000000N-0k <Ctl >0b0[0p0e0W0D00000000000000Y0000~0Y0KPress while clicking on move-grip to begin a new drag'n'drop-action.trackOperationsWidget00000mSRemove this tracktrackOperationsWidget00SolotrackOperationsWidgetVST-000000n000Y1eWFailed loading VST-pluginvestigeInstrument000000000N-Loading pluginvestigeInstrument.VST-0000000000Y00J_0a0O0`0U0D'Please wait while loading VST-plugin...vestigeInstrumentVST-plugin %100L0D0O0d0K0ntu10g0000g0M0~0[00g0W0_0 00W0]0nVST0LLinux0n0{0K0nVST-0000000gR0O0j0 LMMS 0nvz0k#}a0W0f0O0`0U0D0The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer!vestigeInstrument000(&H)&Help vibedView&00000Y00h0l_b0ng R/q!R0nRc&Click here to enable/disable waveform. vibedView 00000Y00hl_b0000000!Click here to normalize waveform. vibedView00000Y00hl_b00000SClick here to smooth waveform. vibedViewImp 00000o00000nl_b0L000000k00c0f000000kN0H000000000h0W0fbq0000K000000nRgraK0h0W0fbq0000K00M00~0Y0The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. vibedViewtP 0d0~00g000000L000000U00OMn00000W0~0Y0P$0L\0U0D0{0i00000k0D0h0S00L000000U00~0Y0The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. vibedViewPU0d0~00gxb0W0_000000n0i0nOMn0gc/R000000Y00K00000W0~0Y00\0U0DP$0{0i00000h0000000nOMn0L0a0K0D0S0h0k0j00~0Y0The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. vibedViewS 0d0~00gxb0W0_000000n00000X0U 00000W0~0Y00000000n000000o000000L0i00`0Qw0O0j00O0K0k_q0W0~0Y0P$00a0D0U0O0Y00h000000ow0O00M0~0Y0The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. vibedView8V 0d0~00gxb0W0_000000n000000000W0~0Y04The 'V' knob sets the volume of the selected string. vibedViewDetune 0d0~00oxb0W0_000000n0000Y f0W0~0Y00000\0U0DP$0-[0Y00h00000k0j00~0Y00000Y'0M0DP$0c[0Y00h00000k0j00~0Y0The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. vibedViewLength 0d0~00gxb0U00_000000nw0U00000W0~0Y000w0D000000o000w0D0c0f000f00O^0S0H00g0W00F00W0K0W000CPU000000D0~0Y0The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. vibedView0000000000o000000g0000n0i0nP 0L00K00x0y0~0Y0'-2'0oW0n0W0_000000~0g00S0h0aTs0W0~0Y0'F'0o000000LW0g00S0h0aTs0W0~0Y0'6'0o000000LWg,0K0000000n0g0j00S0h0aTs0W0~0Y0#The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. vibedViewFPan 0d0~00o0000X4N-0nxb0W0_000000nOMn0c[0W0~0Y0PThe Pan knob determines the location of the selected string in the stereo field. vibedViewSlap0d0~00oxb0U00_000000k\0W0`0Q0000R0H0~0Y00000g0k00c0h0fx0j_q0L0B00~0Y0000000\^0}0D0k0Y00n0k0d0K0H0~0Y0The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. vibedView0000000000o00000000L}0W0f0D0000000x0v0n0k0d0K0D0~0Y0Vibed i}Vh0o 9g,0~0g0nrz0W0_c/R0W0f0000000T+00g0D0~0Y0l_b00000nSN 0Y00nLED0o0i0n000000L000000K0y:0W0f0D0~0Y0The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. vibedViewThe waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. l_b00000o0000000nc/RՕY[W0kO000RgraK0~0_0o000000n0000000kO0D0~0Y00000nSPt0n0000gl_b00xb0W0_0000kRgS0W0~0Y0'?' 0|0_00g00000K0l_b00000W0~0Y--gR0n128P 0n00000`0Q0L0000U00~0Y0 l_b00000nN-0k0K0Q0~0Y 'S'0000gl_b0^snS0W0~0Y0 'N' 0000gl_b00000000W0~0Y0The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. vibedView"0n0S0N0l0sW(0n000000gOu(&Use a saw-wave for current oscillator. vibedView 000l0sW(0n000000gOu('Use a sine-wave for current oscillator. vibedViewe_bl0sW(0n000000gOu()Use a square-wave for current oscillator. vibedViewN l0sW(0n000000gOu(+Use a triangle-wave for current oscillator. vibedView(0000[l_b0sW(0n000000gOu(3Use a user-defined waveform for current oscillator. vibedView&00000000sW(0n000000gOu('Use white-noise for current oscillator. vibedViewbVibed 0oP 0~0g0nrz0W0fc/R0W0f0D0000000000S0W0~0Y00'String'00000gsW(000000W0f0D0000000x0y0~0Y0'Imp' 00000g00000L0000000B000W0f00n0L000000nRgraK0h0W0f0D00n0Kx0v0S0h0L0g0M0~0Y0'Octavve' 00000g0i0nP 0g000000Lc/R0Y00n0K0Lx0y0~0Y0 0000gRgraK0~0_0o000000R0K0Y0h0M0k0d0K0F000000000000g0M0~0Y0 V 0d0~00g0000000000000'S'0d0~00g00000X0U 00000000 P'0d0~00g_0OOMn0 PU'0d0~00g20000000nOMn 'Pan' 0h0'Detune' 0nf0o0D00j0D0g0W00F00'Slap'0n0d0~00o0000000n0k0000Y\R0H0~0Y0 'length' 0d0~00o000000nw0U00000000W0~0Y l_b00000nSN 0Y00nLED0osW(0ni}Vh0g0i0n000000L000000j0n0Kh0W0f0D0~0Y0hVibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. vibedView600000Y00h00000000000nh/y:^hy:0Rc6click to enable/disable visualization of master-outputvisualizationWidgetlmms-1.0.0+bzr2569/data/locale/ja.ts0000644000000000000000000102004212307165142015037 0ustar 00000000000000 AboutDialog About LMMS LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) About LMMS - easy music production for everyone Authors Translation Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! License Copyright (c) 2004-2014, LMMS developers <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE デバイス CHANNELS チャンネル AudioFileProcessorView Open other sample 他のサンプルを開く Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. クリックすると、ほかのオーディオファイルをひらきます。ファイルを選べる場所にアイアログが表示されます。ループモード・開始点と終了点・倍率などの設定はリセットされません。オリジナルのサンプルとは異なる音になるかもしれません。 Reverse sample サンプル逆回転 If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. このボタンを有効にすれば、すべてのサンプルが逆回転されます。リバースドクラッシュというかっこいいエフェクトに使えます。 Loop sample at start- and end-point 開始点と終了点でサンプルをループ Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. どこからループモードが始まるかを指定します。ループモードが始まるとオーディオプロセッサーは、すべての音(ノート)が演奏されるまで、サンプルの開始点と終了点の間をループします。 ストリングやクワイヤーのサンプルなどに効果的です。 Amplify: With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) このつまみで増幅率を調整できます。この値を100%にするとサンプルは変化しません。そうでないときは増幅率が上下します(実際のサンプルファイルそのままで)。 Startpoint: With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. このつまみでオーディオファイルプロセッサががサンプル演奏を開始する場所をセットします。ループモードをONにしてる場合でひとつのノートがスタートポイントとエンドポイントの間のサンプルより長い場合、これで指定した位置がオーディオプロセッサが戻る点です。 Endpoint: With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. このつまみでオーディオプロセッサがサンプル演奏をストップする位置を指定します。もしループモードがONの場合でひとつのノートが開始点と終了点のあいだのサンプルより長い場合、この位置はオーディオプロセッサが戻る位置です。 Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. JACK server down The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack::setupWidget CLIENT-NAME クライアント名 CHANNELS チャンネル AudioOss::setupWidget DEVICE デバイス CHANNELS チャンネル AudioPortAudio::setupWidget BACKEND DEVICE デバイス AudioPulseAudio::setupWidget DEVICE デバイス CHANNELS チャンネル AudioSdl::setupWidget DEVICE デバイス AutomatableModel &Reset (%1%2) リセット(&R) (%1%2) &Copy value (%1%2) 値をコピー(&C) (%1%2) &Paste value (%1%2) 値をペースト(&P) (%1%2) Edit song-global automation 歌全体のオートメーションを編集 Connected to %1 %1 に接続済 Connected to controller コントローラに接続済 Edit connection... 接続を編集 Remove connection 接続を消去 Connect to controller... コントローラに接続 Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) 現在のパターンの再生/ポーズ (Space) Stop playing of current pattern (Space) 現在のパターンの演奏停止 (Space) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. クリックすると現在のパターンを演奏します。パターン編集中の演奏に便利です。終了位置にくるとパターンは自動的にループされます。 Click here if you want to stop playing of the current pattern. クリックすると現在のパターンの演奏を停止します。 Draw mode (Shift+D) ドローモード (shift+D) Erase mode (Shift+E) 消去 モード (shift+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. クリックするとドローモードをONにします。ドローモードではひとつの値を追加したり移動したりします。このモードがデフォルトで普段つかいます。 'Shift+D' をおしてもドローモードをONにできます。 Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. クリックすると消去モードをONにします。消去モードではひとつの値を消去できます。 'Shift+E' をおしても消去モードをONにできます。 Cut selected values (Ctrl+X) 選択した値をカット (Shift+M) Copy selected values (Ctrl+C) 選択した値をコピー (Ctrl+C) Paste values from clipboard (Ctrl+V) 値をクリップボードからペースト (Ctrl+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. クリックすると選択した値をクリップボードにカットします。その値はペーストボタンを押すと任意のパタンの任意の場所にペーストできます。 Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. クリックすると選択した値をクリップボードにコピーします。その値はペーストボタンを押すと任意のパタンの任意の場所にペーストできます。 Click here and the values from the clipboard will be pasted at the first visible measure. クリックするとクリップボードから値が最初の可視状態の小節にペーストされます。 Automation Editor - no pattern オートメーションエディタ - パターンなし Automation Editor - %1 オートメーションエディタ - %1 Please open an automation pattern with the context menu of a control! コントロールのコンテクストメニューでオートメーションパターンを選んでください Values copied 値はコピーされました All selected values were copied to the clipboard. 選択された値はすべてクリップボードにコピーされました Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> 実行中のドラッグコントロール<Ctrl> AutomationPatternView double-click to open this pattern in automation editor ダブルクリックでこのパターンをオートメーションエディタ中にひらきます Open in Automation editor オートメーションエディタ中に開く Clear クリア Reset name 名前をリセット Change name %1 Connections %1 個の接続 Disconnect "%1" "%1" を切断 AutomationTrack Automation track オートメーショントラック Controller Controller %1 コントローラ %1 ControllerConnectionDialog Connection Settings コントローラ設定 MIDI CONTROLLER MIDI コントローラ Input channel 入力チャンネル CHANNEL チャンネル Input controller インプット コントローラ CONTROLLER コントローラ Auto Detect 自動検出 MIDI-devices to receive MIDI-events from USER CONTROLLER ユーザ コントローラ MAPPING FUNCTION マッピング関数 OK Cancel キャンセル LMMS Cycle Detected. サイクルは消去されました。 ControllerRackView Controller Rack コントローラ ラック Add 追加 Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls コントロール Controllers are able to automate the value of a knob, slider, and other controls. コントローラーは つまみやスライダーやその他のコントロールの値を自動化することができます。 Rename controller コントローラの改名 Enter the new name for this controller コントローラの新しい名前を入れてください &Remove this plugin このプラグインを除去(&R) &Help ヘルプ(&H) Effect Effect enabled エフェクト有効 Wet/Dry mix Gate Decay EffectChain Effects enabled エフェクト有効 EffectRackView EFFECTS CHAIN エフェクトチェイン Add effect エフェクト追加 EffectSelectDialog Add effect エフェクト追加 Plugin description EffectView Toggles the effect on or off. エフェクトの オン/オフ On/Off W/D Wet Level: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. Wet/Dry つまみで 出力中の入力シグナルとエフェクトシグナルの割合をきめます。 DECAY Time: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. ディケイ つまみは いくつの無音バッファがプラグインがプロセスを終了するまえに渡されないといけないかを調整します。小さくするとCPUのオーバヘッドをへらせますが、ディレイとリバー部エフェクトの尻尾がクリッピングする危険があります。 GATE Gate: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. ゲートつまみはシグナルレベルをコントールします。このシグナルレベルはシグナル処理をいつ終了するか決定する際に無音と判断されるレベルです。 Controls コントロール Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. エフェクトプラグイン関数はいつつかのエフェクトのひと連なりです。シグナルは上から下に処理されます。 On/Off スイッチでいつでも指定したプラグインをパイパスすることができます. Wet/Dry つまみで エフェクトの出力中の入力シグナルとエフェクトシグナルのバランスをコントロールできます。 入力ステージは一つ前のステージからの出力です。なので連鎖の下の方のエフェクトの 'dry'シグナルはそれまでのエフェクトをすべて含んでいす。 Decay つまみで ノートが終わったあとどれだけの時間シグナルを処理するかをきめます。与えられた時間内に与えられたしきい値以下に音量が落ちたときにエフェクトは処理を停止します。このつまみで”与えられた時間”をきめます。この時間を長くするとCPUを食います、すなわちた大抵のエフェクトについては Decayは小さくするべきです。ディレイのような長い時間の沈黙を生じるエフェクトの場合はDecayを増やす必要があります。 Gate のつまみで エフェクトが自動停止するための”与えられたしきい値"を決めます。このノブで決めたレベル以下にシグナルレベルが落ちるととすぐに”与えられた時間”がはじまります。 コントロール ボタンで エフェクトのパラメタの編集ダイアログをひらきます。 右クリックするとコンテキストメニューが開きます。そこでエフェクトが実行される順番をかえたりエフェクトを完全に消去したりできます。 Move &up 上方移動(&u) Move &down 下方移動(&d) &Remove this plugin このプラグインを除去(&R) &Help ヘルプ(&H) EnvelopeAndLfoParameters Predelay Attack Hold Decay Sustain Release Modulation LFO Predelay LFO Attack LFO speed LFO Modulation LFO Wave Shape Freq x 100 Modulate Env-Amount EnvelopeAndLfoView DEL Predelay: Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. このつまみで現在のエンベロープのプレディレイを指定します。この時間を長くすると実際のエンベロープがスタートする前の時間が長くなります。 ATT Attack: Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. このつまみで現在のエンベロープのアタックタイムを指定します。この値を大きくするとエンベロープのアタックレベルを増やすのに長い時間が必要になります。 HOLD Hold: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. このつまみで現在のエンベロープのホールドタイムを指定します。 この値を大きくするとエンベロープがサステインレベルへの減衰を始める前にアタックレベルををどれくらい保持する時間が長くなります。 DEC Decay: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. このつまみで現在のエンベロープのディケイタイムを指定します。この値を大きくするとエンベロープがアタックレベルからサスティンレベルに減衰するのに必要な時間が長くなります。ピアノのような楽器には短い時間を選びます。 SUST Sustain: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. このつまみで現在のエンベロープのサスティンレベルを指定します。値を大きくするとエンベロー部がゼロになる前にとどまってるレベルが高くなります。 REL Release: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. このつまみで現在のエンベロープのリリースタイムを指定します。値を大きくするとサスティンレベルからゼロに減少するのに必要な時間が長くなります。ストリングのような楽器ではこの値を大きくしてください AMT Modulation amount: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. このつまみで現在のエンベロープのモジュレーション量を指定します。この値を大きくするとこのエンベロ部が影響する対応する値(音量とかコントロール周波数とか)が大きくなりまります。 LFO predelay: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. このつまみで現在のLFOのプレデイレイタイムを指定します。この値を大きくすると LSFOがオシレートを始めるまでの時間が長くなります。 LFO- attack: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. このつまみで現在のLFOのアタックタイムを指定します。大きくするとLFOの振幅が最大になるまでにかかる時間が長くなります。 SPD LFO speed: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. このつまみで現在のLFOのスピードを指定します。値を大きくするとLFOのオシレートが早くなってエフェクトも早くなります。 Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. このつまみで現在のLFOのモジュレーション量を指定します。あたりを大きくするとLFOの影響をうける選んだ値(ボリウムとかカットオフ周波数とか)がおおきくなります。 Click here for a sine-wave. クリックでサイン波 Click here for a triangle-wave. Click here for a saw-wave for current. クリックでのこぎり波 Click here for a square-wave. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. クリックでユーザー定義波形。あとで、対応するサンプルファイルをLFOグラフの上にドラッグしてください。 FREQ x 100 Click here if the frequency of this LFO should be multiplied by 100. クリックでLFO周波数を100倍 multiply LFO-frequency by 100 MODULATE ENV-AMOUNT Click here to make the envelope-amount controlled by this LFO. クリックすると エンベロープの量がこのLFOでコントロールされます。 control envelope-amount by this LFO ms/LFO: Hint ヒント Drag a sample from somewhere and drop it in this window. どっかからサンプルをドラッグしてきてこのウインドウにドロップしてください。 ExportProjectDialog Export project Output File format: Samplerate: 44100 Hz 48000 Hz 88200 Hz 96000 Hz 192000 Hz Bitrate: 64 KBit/s 128 KBit/s 160 KBit/s 192 KBit/s 256 KBit/s 320 KBit/s Depth: 16 Bit Integer 32 Bit Float Please note that not all of the parameters above apply for all file formats. Quality settings Interpolation: Zero Order Hold Sinc Fastest Sinc Medium (recommended) Sinc Best (very slow!) Oversampling (use with care!): 1x (None) 2x 4x 8x Sample-exact controllers Alias-free oscillators Start Cancel キャンセル Export as loop (remove end silence) FxMixer Master マスタ FX %1 エフェクト %1 FxMixerView Rename FX channel エフェクトチャンネルの改名 Enter the new name for this FX channel このエフェクトチャンネルの新しい名前を入力 FX-Mixer エフェクトミキサー FX Fader %1 Mute ミュート Mute this FX channel このエフェクトチャンネルをミュート InstrumentFunctionArpeggio Arpeggio アルペジオ Arpeggio type アルペジオタイプ Arpeggio range アルペジオ速度 Arpeggio time アルペジオ時間 Arpeggio gate アルペジオゲート Arpeggio direction アルペジオ方向 Arpeggio mode アルペジオモード Up Down Up and down Random Free Sort Sync InstrumentFunctionArpeggioView ARPEGGIO An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. アルペジオは、(爪弾くタイプの楽器で)使われる演奏法です。アルベジオを使うと生き生きとした音楽になります。(ハープのような)楽器の弦は和音のように爪弾かれます。すべての音階を同時にならす和音とは違って、アルペジオでは弦を順々に鳴らします。代表的なアルペジオは長調か短調の3音です。もちろん、たくさんあるその他の可能な和音を選ぶこともできます。 RANGE Arpeggio range: octave(s) Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. このつまみでオクターブ単位でアルペジオ範囲を選択します。選択されたアルペジオは指定したオクターブ数の範囲内で演奏されます。 TIME Arpeggio time: ms Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. このつまみでミリ秒単位でアルペジオ時間をセットします。アルペジオ時間には各々のアルペジオの音の長さを指定します。 GATE Arpeggio gate: % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. このつまみでアルペジオゲートを指定します。アルペジオゲートはアルペジオトーン全体の何パーセントを演奏するかです。これを使えばかっこいいスタッカートアルペジオを作れます。 Chord: Direction: Mode: InstrumentFunctionNoteStacking octave Major Majb5 minor minb5 sus2 sus4 aug augsus4 tri 6 6sus4 6add9 m6 m6add9 7 7sus4 7#5 7b5 7#9 7b9 7#5#9 7#5b9 7b5b9 7add11 7add13 7#11 Maj7 Maj7b5 Maj7#5 Maj7#11 Maj7add13 m7 m7b5 m7b9 m7add11 m7add13 m-Maj7 m-Maj7add11 m-Maj7add13 9 9sus4 add9 9#5 9b5 9#11 9b13 Maj9 Maj9sus4 Maj9#5 Maj9#11 m9 madd9 m9b5 m9-Maj7 11 11b9 Maj11 m11 m-Maj11 13 13#9 13b9 13b5b9 Maj13 m13 m-Maj13 Harmonic minor Melodic minor Whole tone Diminished Major pentatonic Minor pentatonic Jap in sen Major bebop Dominant bebop Blues Arabic Enigmatic Neopolitan Neopolitan minor Hungarian minor Dorian Phrygolydian Lydian Mixolydian Aeolian Locrian Chords Chord type Chord range Minor InstrumentFunctionNoteStackingView RANGE Chord range: octave(s) Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. このつまみでコード範囲をオクターブで設定できます。指定したオクターブの範囲内で選択したコードが演奏されます。 STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT MIDIインプット有効化 CHANNEL チャンネル VELOCITY ベロシティ ENABLE MIDI OUTPUT MIDIアウトプット有効 PROGRAM プログラム MIDI devices to receive MIDI events from MIDI devices to send MIDI events to NOTE InstrumentSoundShaping VOLUME ボリウム Volume ボリウム CUTOFF Cutoff frequency RESO Resonance Envelopes/LFOs Filter type Q/Resonance LowPass HiPass BandPass csg BandPass czpg Notch Allpass Moog 2x LowPass RC LowPass 12dB RC BandPass 12dB RC HighPass 12dB RC LowPass 24dB RC BandPass 24dB RC HighPass 24dB Vocal Formant Filter InstrumentSoundShapingView TARGET These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! これらのタブにはエンペロープが含まれてます。エンベロープは音を変更するの大変重要です。エンベロープはサブストラクティブな合成をするときはほとんどいつも必要です。たとえばボリウムエンベロープの場合、音が決まった音量になる時間をセットできます。ソフトストリングを作りたいならフェードインフェードアウトを非常にソフトにする必要があります。それはアタックタイムとリリースタイムを長くすることで実現できます。パンニング、フィルターのカットオフ周波数といったほかのエンベロープを制御できるものについても事情はいっしょです。これでちょっと遊んでみてください! のこぎり歯にいくつかのエンベロープを使うだけで実にクールなサウンドを作ることこできます。 FILTER Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. ここで、このインスツルメントトラックでつかいたいビルトインフィルターを選びます。音の特性をかえるのにフィルターはとても重要です。 Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... このノブで選択したフィルターのカットオフ周波数をセットします。カットオフ周波数はフィルターがシグナルをカットする周波数をきめます。たとえばローパスフィルターはカットオフ周波数以上のすべての周波数をカットします。ハイパスフィルターはカットオフ周波数以下のすべての周波数をカットします。たのフィルターでも同様です。 RESO Resonance: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. このつまみで、選択したフィルターの Q/レゾナンスをセットします。 Q/レゾナンスにはカットオフ周波数付近でどれくらい周波数を増幅させるかを指定します。 FREQ cutoff frequency: InstrumentTrack unnamed_track Volume ボリウム Panning Pitch FX channel Default preset With this knob you can set the volume of the opened channel. このつまみで 開いたチャンネルの音量をセットします。 Base note ベース ノート Pitch range InstrumentTrackView Volume ボリウム Volume: VOL Panning Panning: PAN MIDI Input Output InstrumentTrackWindow GENERAL SETTINGS Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. くりっくすると、プリセットファイルに現在のチャンネルセッティングをセーブできます。後からプリセットブラウザ中でこのプリセットをダブルクリックするとこのプリセットをロードできます。 Instrument volume Volume: VOL Panning Panning: PAN Pitch Pitch: cents PITCH FX channel ENV/LFO FUNC FX MIDI Save preset XML preset file (*.xpf) PLUGIN Save current channel settings in a preset-file Pitch range (semitones) RANGE LadspaControl Link channels LadspaControlDialog Link Channels Channel LadspaControlView Link channels Value: Sorry, no help available. LadspaEffect Effect Unknown LADSPA plugin %1 requested. 不明なLADSPA プラグイン %1 LfoController LFO Controller Base value Oscillator speed Oscillator amount Oscillator phase Oscillator waveform Frequency Multiplier LfoControllerDialog LFO LFO Controller BASE Base amount: todo SPD LFO-speed: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. このつまみでLFOのスピードをセットします。この値を大きくするとLFOのオシレートが早くなってエフェクトが早くなります。 AMT Modulation amount: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. このつまみで LFOのモジュレーション量をセットします。 この値を大きくすると 接続されたコントロール(ボリウムやカットオフ周波数等)がよりいっそうLFOに影響されるようになります。 PHS Phase offset: degrees With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. このつまみで LFO のフェイズオフセットをセットします。フェイズオフセットはオシレータがオシレートを始める場所動かすことができます。たとえばサイン波でフェイズオフセットが180度なら波は減少からはじめまります。方形波でも同じことです。 Click here for a sine-wave. クリックでサイン波 Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for a a moog saw-wave. クリックで moog のこぎり波 Click here for an exponential wave. クリックで指数波形 Click here for white-noise. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory 作業ディレクトリ The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. LMMSの作業ディレクトリ %1 は存在しません。 今作成しますか? 編集->セッティング でこのディレクトリを変更できます Could not save config-file 設定ファイルをセーブできません Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. 設定ファイル %1 をセーブできません。 多分 ファイルへの書き込み許可がありません。 このファイルの書き込み許可ががあることを確認して再度書き込んでください。 &Project プロジェクト(&P) &New 新規(&N) &Open... 開く(&O) Recently opened projects 最近開いたプロジェクト &Save セーブ(&S) Save &As... 別名セーブ(&A) Import... インポート E&xport... エクスポート(&x) &Quit 終了(&Q) &Edit 編集(&E) Settings セッティング &Tools ツール(&T) &Help ヘルプ(&H) Online help オンラインヘルプ Help ヘルプ What's this? これは何? About Create new project 新規プロジェクト作成 Create new project from template テンプレートから新規プロジェクト作成 Open existing project 既存プロジェクトを開く Recently opened project 最近開いたプロジェクト Save current project 現在のプロジェクトをセーブ Export current project 現在のプロジェクトをエクスポート Show/hide Song-Editor ソングエディタ 表示/非表示 By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. このボタンを押すと。ソングエディタ表示/非表示にできます。ソングエディタの利用によってプレイリストの編集とどのトラックをいつ演奏するかを編集できます。プレイリストの中で直接サンプルを挿入したり移動(rap samples)したりすることもできます。 Show/hide Beat+Bassline Editor ビート+ ベースラインエディタ 表示/非表示 By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. このボタンで、ビート+ベースラインエディタの表示/非表示を切り替えます。ビート+ベースラインエディタで、ビートをつくったり、チャンネルを開いたり足したり除去したり、ベースラインパターンをカット・コピー・ペーストしたり、いろいろできます。 Show/hide Piano-Roll ピアノロール 表示/非表示 Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. ここをクリックして ピアノロールの表示/非表示を切り替えます。 ピアノロールを使うとメロディを簡単に編集できます。 Show/hide Automation Editor オートメーションエディタ 表示/非表示 Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. ここをクリックして オートメーションエディタの表示/非表示を切り替えます。オートメーションエディタでダイナミックな値を簡単に編集できます。 Show/hide FX Mixer エフェクトミキサー 表示/非表示 Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. ここをクリックして エフェクトミキサーの表示/非表示を切り替えます。エフェクトミキサーは曲のエフェクトを管理するパワフルなツールです。エフェクトを異なったエフェクトチャンネルに挿入することができます。 Show/hide project notes プロジェクトノート 表示/非表示 Click here to show or hide the project notes window. In this window you can put down your project notes. ここをクリックして ノートウインドウの表示非表示を切り替えます。ノートウインドウにプロジェクトノートを記入します。 Show/hide controller rack コントローラトラック 表示/非表示 Untitled LMMS %1 Project not saved プロジェクトは未セーブです The current project was modified since last saving. Do you want to save it now? 現在のプロジェクトは最後セーブしてから変更されています。今セーブしますか? Open project プロジェクトを開く Save project プロジェクトを保存 Help not available ヘルプはありません Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. 今のところ LMMSの中にヘルプはありません。 http://lmms.sf.net/wiki に LMMSのドキュメントがあります。 My projects My samples My presets My home My computer Root directory Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 Project recovery It looks like the last session did not end properly. Do you want to recover the project of this session? Configuration file Error while parsing configuration file at line %1:%2: %3 MeterDialog Meter Numerator Meter Denominator TIME SIG MeterModel Numerator Denominator MidiAlsaRaw::setupWidget DEVICE デバイス MidiAlsaSeq::setupWidget DEVICE デバイス MidiController MIDI Controller MIDI コントローラ unnamed_midi_controller 名なし_MIDI_コントローラ MidiImport Setup incomplete You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiOss::setupWidget DEVICE デバイス MidiPort Input channel 入力チャンネル Output channel 出力チャンネル Input controller インプット コントローラ Output controller アウトプット コントローラ Fixed input velocity 入力ベロシティ固定 Fixed output velocity 出力ベロシティ固定 Output MIDI program 出力 MIDI プログラム Receive MIDI-events MIDI イベントを受信 Send MIDI-events MIDI イベントを送信 Fixed output note OscillatorObject Osc %1 volume Osc %1 panning Osc %1 coarse detuning Osc %1 fine detuning left Osc %1 fine detuning right Osc %1 phase-offset Osc %1 stereo phase-detuning Osc %1 wave shape Modulation type %1 Osc %1 waveform PatmanView Open other patch ほかのパッチを開く Click here to open another patch-file. Loop and Tune settings are not reset. ここをクリックして ほかのパッチファイルを開きます。ループとチューンの設定はリセットされません。 Loop ループ Loop mode ループモード Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. ここでループモードをON/OFfします。ループモードONなら、PatManはファイル中にあるループ情報をを使います。 Tune チューン Tune mode チューンモード Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. ここでチューンモードをON/OFFします。チューンモードONなら、PatMan はノートの周波数にあうようにサンプルをチューンします。 No file selected ファイルが選択されてません Open patch file パッチファイルを開く Patch-Files (*.pat) パッチファイル (*.pat) PeakController Peak Controller ピーク コントローラ Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK LFO Controller PeakControllerEffectControlDialog BASE Base amount: Modulation amount: Attack: Release: AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Modulation amount Mute output Attack Release Abs Value Amount Multiplicator PianoView Base note ベース ノート Plugin Plugin not found プラグインが見つかりません The plugin "%1" wasn't found or could not be loaded! Reason: "%2" プラグイン "%1" は見つからないかロードできません。 原因は "%2"です。 Error while loading plugin プラグインロード中のエラー Failed to load plugin "%1"! プラグイン "%1" のロードに失敗! ProjectRenderer WAV-File (*.wav) WAV-ファイル (*.wav) Compressed OGG-File (*.ogg) 圧縮 OGG-ファイル (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: 名前 Maker: 製造元 Copyright: コピーライト Requires Real Time: リアルタイムが必要: Yes はい No いいえ Real Time Capable: リアルタイム可能: In Place Broken: Channels In: 入力チャンネル Channels Out: 出力チャンネル File: ファイル SampleBuffer Open audio file All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) OGG-Files (*.ogg) DrumSynth-Files (*.ds) FLAC-Files (*.flac) SPEEX-Files (*.spx) MP3-Files (*.mp3) VOC-Files (*.voc) AIFF-Files (*.aif *.aiff) AU-Files (*.au) RAW-Files (*.raw) SampleTCOView double-click to select sample ダブルクリックでサンプル選択 Delete (middle mousebutton) Cut カット Copy コピー Paste ペースト Mute/unmute (<Ctrl> + middle click) Set/clear record 録音をセット/クリア SampleTrack Sample track Sample track Volume ボリウム SampleTrackView Track volume トラック ボリウム Channel volume: チャンネルボリウム VOL TempoSyncKnob Tempo Sync テンポ同期 No Sync 非同期 Eight beats エイトビート Whole note 全音符 Half note 二分音符 Quarter note 四分音符 8th note 八分音符 16th note 十六分音符 32nd note 三十二分音符 Custom... カスタム &Help ヘルプ(&H) Custom カスタム Synced to Eight Beats エイトビートに同期 Synced to Whole Note 全音符に同期 Synced to Half Note 二分音符に同期 Synced to Quarter Note 四分音符に同期 Synced to 8th Note 八分音符に同期 Synced to 16th Note 十六分音符に同期 Synced to 32nd Note 三十二分音符に同期 TimeDisplayWidget click to change time units TrackContainer Couldn't import file ファイルをインポートできません Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. ファイル %1をインポート中フィルターが見つかりませんでした。 ほかのソフトウェアで、このファイルをLMMSでサポートしてるフォーマットに変換してください。 Couldn't open file ファイルをオープンできません。 Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! ファイル %1 を読み込み用にオープンできません。 ファイルとファイルの入ってるディレクトリが読み込み可能かチェックしてもう一度読み込んでください。 Loading project... プロジェクトロード中 Cancel キャンセル Please wait... お待ちください... Importing MIDI-file... MIDI-ファイルをインポート中... Importing FLP-file... FLP-ファイルをインポート中... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 Mix output of oscillator 1 & 2 Synchronize oscillator 1 with oscillator 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Use phase modulation for modulating oscillator 3 with oscillator 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 Mix output of oscillator 2 & 3 Synchronize oscillator 2 with oscillator 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Osc %1 volume: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Osc %1 panning: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Osc %1 coarse detuning: semitones With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Osc %1 fine detuning left: cents With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Osc %1 fine detuning right: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Osc %1 phase-offset: degrees With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Osc %1 stereo phase-detuning: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Use a sine-wave for current oscillator. サイン波を現在のオシレータで使用 Use a triangle-wave for current oscillator. 三角波を現在のオシレータで使用 Use a saw-wave for current oscillator. のこぎり波を現在のオシレータで使用 Use a square-wave for current oscillator. 方形波を現在のオシレータで使用 Use a moog-like saw-wave for current oscillator. Use an exponential wave for current oscillator. Use white-noise for current oscillator. ホワイトノイズを現在のオシレータで使用 Use a user-defined waveform for current oscillator. ユーザー定義波形を現在のオシレータで使用 Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin ほかの VST-プラグインをオープン Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. ほかの VST-プラグインをオープンしたいならクリック。このボタンをクリックするとファイルオープンダイアログが現れてファイルを選べます。 Show/hide GUI GUIの表示/非表示 Click here to show or hide the graphical user interface (GUI) of your VST-plugin. ここをクリックすると VST-プラグインのグラフィカルユーザーインターフェース(GUI)が表示されたり非表示になったりします。 Turn off all notes すべてのノートをオフにします。 Open VST-plugin VST-プラグインを開く DLL-files (*.dll) DLL-ファイル (*.dll) EXE-files (*.exe) EXE-ファイル (*.exe) No VST-plugin loaded VST-pluginはロードされてません Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Save preset Click here, if you want to save current VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Preset by - VST plugin control VstEffectControlDialog Show/hide Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Save preset Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin プラグインをロード中 Please wait while loading VST-plugin... VST-プラグインをロードする間お待ちください Failed loading VST-plugin VST-プラグインのロード失敗 The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! VST-plugin %1 がいくつかの理由でロードできませんでした。 もしそのVSTがLinuxのほかのVST-ソフトウェアで動くなら LMMS の開発者に連絡してください。 Open Preset Vst Plugin Preset (*.fxp *.fxb) : default " ' Save Preset .fxp .FXP .FXB .fxb ZynAddSubFxInstrument Portamento Filter Frequency Filter Resonance Bandwidth FM Gain Resonance Center Frequency Resonance Bandwidth Forward MIDI Control Change Events ZynAddSubFxView Show GUI Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Portamento: PORT Filter Frequency: FREQ Filter Resonance: RES Bandwidth: BW FM Gain: FM GAIN Resonance center frequency: RES CF Resonance bandwidth: RES BW Forward MIDI Control Changes audioFileProcessor Amplify 倍率 Start of sample サンプル開始 End of sample サンプル終了 Reverse sample サンプル逆回転 Loop ループ Stutter bassBoosterControlDialog FREQ Frequency: GAIN Gain: RATIO Ratio: bassBoosterControls Frequency Gain Ratio bbEditor Beat+Bassline Editor ビート+ベースライン エディタ Play/pause current beat/bassline (Space) 現在の beat/bassline を 再生/ポーズ (Space) Add beat/bassline beat/bassline を追加 Add automation-track オートメーショントラックを追加 Stop playback of current beat/bassline (Space) beat/bassline の再生を停止 (Space) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. クリックすると現在の beat/bassline を演奏します。 beat/bassline は終了位置にくると自動的にループされます。 Click here to stop playing of current beat/bassline. クリックすると現在の beat/bassline の演奏を停止します。 Remove steps ステップ除去 Add steps ステップ追加 bbTCOView Open in Beat+Bassline-Editor ビート+ベースライン-エディタを開く Reset name 名前をリセット Change name 名前を変更 Change color 色を変更 bbTrack Beat/Bassline %1 beat/bassline %1 Clone of %1 bitInvader Samplelength サンプルの長さ bitInvaderView Sample Length Sine wave Triangle wave Saw wave Square wave White noise wave User defined wave Smooth Click here to smooth waveform. クリックすると波形を平滑化します Interpolation Normalize Draw your own waveform here by dragging your mouse on this graph. グラフの上でマウスドラッグしてここに波形を描きます Click for a sine-wave. クリックするとサイン波 Click here for a triangle-wave. クリックすると三角波 Click here for a saw-wave. クリックするとのこぎり波 Click here for a square-wave. クリックすると方形波 Click here for white-noise. クリックするとホワイトノイズ Click here for a user-defined shape. クリックするとユーザー波形 exportProjectDialog Could not open file ファイルをオープンできません Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! ファイル %1 を書き込み用にオープンできません。 このファイルとファイルを含むディレクトリの書き込み権限があるかを確認して再度書き込んでください。 Error エラー Error while determining file-encoder device. Please try to choose a different output format. ファイルエンコーダデバイスを決定する際のエラー。異なる出力フォーマットを選んでください。 Rendering: %1% レンダリング: %1% Export project to %1 プロジェクトを %1 にエクスポート fader Please enter a new value between %1 and %2: %1 と %2 の間の新しい値を入力してください: fileBrowser Browser fileBrowserTreeWidget Send to active instrument-track Open in new instrument-track/Song-Editor Open in new instrument-track/B+B Editor Loading sample Please wait, loading sample for preview... --- Factory files --- graphModel Graph グラフ kickerInstrument Start frequency End frequency Decay Distortion 説明 Gain kickerInstrumentView Start frequency: End frequency: Decay: Distortion: Gain: knob &Help ヘルプ(&H) Please enter a new value between -96.0 dBV and 6.0 dBV: -96.0 dBV と 6.0 dBV の間の新しい値を入力してください: Please enter a new value between %1 and %2: %1 と %2 の間の新しい値を入力してください: ladspaBrowserView Available Effects 利用可能エフェクト Unavailable Effects 利用不可エフェクト Instruments 楽器 Analysis Tools 解析ツール Don't know 不明なツール This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. このダイアログはLMMSでつかえるすべてのLADSPAプラグインの情報を表示します。プラグインはポートタイプと名前によって5つのカテゴリにわけてあります。 表示されるエフェクトはLMMEで利用可能なものです。あるエフェクトがLMMSで利用可能であるためには、まず第一にエフェクトであることつまり入力チャンネルと出力チャンネルを持ってないといけません。LMMSは名前に 'in' が含まれるオーディオレートポートを入力チャンネルと認識します。出力ポートとして認識するのは 'out' が含まれるものです。さらにエフェクトの入力と出力の数が同じでリアルタイムの動作が可能である必要があります。 楽器プラグインは出力チャンネルしかないものです。 解析ツールは入力チャンネルしかないものです。 不明なツールは入力チャンネルも出力チャンネルもみつからなかたものです プラグインをダブルクリックするとポートの情報が表示されます。 Type: タイプ ladspaDescription Plugins Description 説明 ladspaPortDialog Ports Name Rate Direction Type Min < Default < Max Logarithmic SR Dependent Audio Control Input Output Toggled Integer Float Yes はい lb302Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion 説明 Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb302SynthView Cutoff Freq: Resonance: Env Mod: Decay: 303-es-que, 24dB/octave, 3 pole filter Slide Decay: DIST: Saw wave Click here for a saw-wave. クリックでのこぎり波 Triangle wave Click here for a triangle-wave. クリックで三角波 Square wave Click here for a square-wave. クリックで方形波 Rounded square wave Click here for a square-wave with a rounded end. クリックで尻尾がまるまった方形波 Moog wave Click here for a moog-like wave. クリックで Moog みたいな波形 Sine wave Click for a sine-wave. クリックでサイン波 White noise wave Click here for an exponential wave. クリックで指数波形 Click here for white-noise. クリックでホワイトノイズ lb303Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion 説明 Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb303SynthView Cutoff Freq: CUT Resonance: RES Env Mod: ENV MOD Decay: DEC 303-es-que, 24dB/octave, 3 pole filter Slide Decay: SLIDE DIST: DIST WAVE: WAVE malletsInstrument Hardness Position Vibrato Gain Vibrato Freq Stick Mix Modulator Crossfade LFO Speed LFO Depth ADSR Pressure Motion Speed Bowed Spread Marimba Vibraphone Agogo Wood1 Reso Wood2 Beats Two Fixed Clump Tubular Bells Uniform Bar Tuned Bar Glass Tibetan Bowl Missing files Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! Stk-インストールが完全でないようです。 Stk-パッケージがすべてインストールされてることを確認してください malletsInstrumentView Instrument Spread Spread: Hardness Hardness: Position Position: Vib Gain Vib Gain: Vib Freq Vib Freq: Stick Mix Stick Mix: Modulator Modulator: Crossfade Crossfade: LFO Speed LFO Speed: LFO Depth LFO Depth: ADSR ADSR: Bowed Pressure Pressure: Motion Motion: Speed Speed: Vibrato Vibrato: manageVSTEffectView - VST parameter control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView - VST plugin control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help ヘルプ(&H) opl2instrument Patch Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion 説明 Volume ボリウム organicInstrumentView Distortion: Volume: Randomise Osc %1 waveform: Osc %1 volume: Osc %1 panning: Osc %1 fine detuning left: cents papuInstrument Sweep time Sweep direction Sweep RtShift amount Wave Pattern Duty Channel 1 volume Volume sweep direction Length of each step in sweep Channel 2 volume Channel 3 volume Channel 4 volume Right Output level Left Output level Channel 1 to SO2 (Left) Channel 2 to SO2 (Left) Channel 3 to SO2 (Left) Channel 4 to SO2 (Left) Channel 1 to SO1 (Right) Channel 2 to SO1 (Right) Channel 3 to SO1 (Right) Channel 4 to SO1 (Right) Treble Bass Shift Register width papuInstrumentView Sweep Time: Sweep Time Sweep RtShift amount: Sweep RtShift amount Wave pattern duty: Wave Pattern Duty Square Channel 1 Volume: Length of each step in sweep: Length of each step in sweep Wave pattern duty Square Channel 2 Volume: Square Channel 2 Volume Wave Channel Volume: Wave Channel Volume Noise Channel Volume: Noise Channel Volume SO1 Volume (Right): SO1 Volume (Right) SO2 Volume (Left): SO2 Volume (Left) Treble: Treble Bass: Bass Sweep Direction Volume Sweep Direction Shift Register Width Channel1 to SO1 (Right) Channel2 to SO1 (Right) Channel3 to SO1 (Right) Channel4 to SO1 (Right) Channel1 to SO2 (Left) Channel2 to SO2 (Left) Channel3 to SO2 (Left) Channel4 to SO2 (Left) Wave Pattern The amount of increase or decrease in frequency The rate at which increase or decrease in frequency occurs The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Square Channel 1 Volume The delay between step change Draw the wave here pattern Cannot freeze pattern パターンをフリーズできません The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! プレイモードになってるのでパターンは現在フリーズできません。プレイモードを停止して再試行してください。 patternFreezeStatusDialog Freezing pattern... フリーズ中のパターン Cancel キャンセル patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step ダプルクリックでこのパターンをピアノロールに開きます。 マウスホイールでステップのボリウムをセットします。 Open in piano-roll ピアノロールを開く Clear all notes すべてのノートをクリア Reset name 名前をリセット Change name 名前変更 Refreeze 再フリーズ Freeze フリーズ Unfreeze フリーズ解除 Add steps ステップ追加 Remove steps ステップ除去 PianoRoll Play/pause current pattern (Space) 現在のパターンの再生/ポーズ (Space) Stop playing of current pattern (Space) 現在のパターンの演奏停止 (Space) Cut selected notes (Ctrl+X) 選択ノートの切り取り (Ctrl+X) Copy selected notes (Ctrl+C) 選択ノートのコピー (Ctrl+C) Paste notes from clipboard (Ctrl+V) クリップボードからノートをペースト (Ctrl+V) Piano-Roll - no pattern ピアノロール - パターンなし Piano-Roll - %1 ピアノロール - %1 Please open a pattern by double-clicking on it! ”パターン”!の上でダブルクリックして”パターン”を開いてください Record notes from MIDI-device/channel-piano MIDI-デバイス/チャンネル-ピアノからノートを録音 Record notes from MIDI-device/channel-piano while playing song or BB track 曲やBBトラックを再生中に MIDI-デバイス/チャンネル-ピアノからノートを録音 Draw mode (Shift+D) ドローモード (shift+D) Erase mode (Shift+E) 消去 モード (shift+E) Select mode (Shift+S) 選択モード (Shift+S) Last note 最後のノート Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. クリックすると現在のパターンを再生。これはパターン編集中に便利。パターンの最後で自動的にループします。 Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. クリックすると MIDIデバイスまたは対応するチャンネルウインドウのバーチャルテストピアノからのノートを現在のパターンに録音します。録音の際再生したすべてのノートは現在のパターンに書き込まれます。書き込まれたノートは後から再生/編集できます。 Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. クリックすると MIDIデバイスまたは対応するチャンネルウインドウのバーチャルテストピアノからのノートを現在のパターンに録音します。録音の際再生したすべてのノートは現在のパターンに書き込まれます。曲またはBBトラックがバックグラウンドで演奏されます。 Click here to stop playback of current pattern. クリックすると 現在のパターンのプレイバックを停止します。 Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. クリックすると選択しているノートがクリップボードにカットされます。ペーストボタンを押すと任意のパターンのどこにでもカットしたノートをペーストできます。 Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. クリックすると選択しているノートがクリップボードにコピーされます。ペーストボタンを押すと任意のパターンのどこにでもコピーしたノートをペーストできます。 Click here and the notes from the clipboard will be pasted at the first visible measure. クリックするとクリップボードの中のノートが最初の表示されてる小節にペーストされます。 Note lock ノート ロック Note Volume Note Panning Detune mode (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser no description 記述なし Instrument plugins 楽器プラグイン Incomplete monophonic imitation tb303 tb303の不完全なモノフォニックイミテーション Plugin for freely manipulating stereo output ステレオ出力を自由にいじるプラグイン Plugin for controlling knobs with sound peaks サウンドのピークでつまみをコントロールするプラグイン Plugin for enhancing stereo separation of a stereo input file ステレオ入力ファイルのセパレーションを強調するプラグイン List installed LADSPA plugins インストールされてる LADSPA プラグインのリスト three powerful oscillators you can modulate in several ways いくつかの方法でモジュレートできるフリーでパワフルなオシレータ群 Filter for importing FL Studio projects into LMMS FL Studio のプロジェクトをLMMSにインポートするフィルター versatile kick- & bassdrum-synthesizer versatile キックとバスドラムのシンセサイザー GUS-compatible patch instrument GUS互換パッチの楽器 plugin for using arbitrary VST-effects inside LMMS. 任意のVSTエフェクトをLMMSの中で使うためのプラグイン Additive Synthesizer for organ-like sounds オルガンみたいなサウンドのための付加的シンセサイザー plugin for boosting bass バスをブースとするプラグイン Tuneful things to bang on どんどんたたく音楽的な音をだすもの simple sampler with various settings for using samples (e.g. drums) in an instrument-track 楽器トラックでサンプル(ドラムとか)を使うためのいろいろ設定できる単純なサンプラ VST-host for using VST(i)-plugins within LMMS VST(i)プラグインをLMMSでつかうためのVSTホスト Vibrating string modeler バイブレーティングストリングモジュレータ plugin for using arbitrary LADSPA-effects inside LMMS. 任意のLADSPAエフェクトをLMMSで使うためのプラグイン Filter for importing MIDI-files into LMMS MIDIファイルをLMMSにインポートするためのフィルタ Instrument browser 楽器ブラウザ Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. 楽器を ソングエディタまたはビート+ベースラインエディタまたは存在する楽器トラックにドラッグできます。 Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. MOS6581 and MOS8580 SIDのエミュレーション。 このチップはコモドール64コンピュータで採用されていた。 Player for SoundFont files サウンドフォントファイルのプレイヤー Emulation of GameBoy (TM) APU GameBoy (TM) APUのエミュレーション Customizable wavetable synthesizer カストマイズ可能なウエーブテーブルシンセサイザー Embedded ZynAddSubFX 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Project notes プロジェクトノート Put down your project notes here. Edit Actions &Undo Ctrl+Z &Redo Ctrl+Y &Copy Ctrl+C Cu&t Ctrl+X &Paste Ctrl+V Format Actions &Bold Ctrl+B &Italic Ctrl+I &Underline Ctrl+U &Left Ctrl+L C&enter Ctrl+E &Right Ctrl+R &Justify Ctrl+J &Color... renameDialog Rename... リネーム setupDialog Setup LMMS LMMS設定 General settings 設定を生成 BUFFER SIZE バッファサイズ Reset to default-value デフォルト値にリセット MISC その他 Enable tooltips ツールチップ ON Show restart warning after changing settings 設定変更後 "リスタート警告" を表示 Display volume as dBV ボリウムを dBV で表示 Compress project files per default プロジェクトファイルの圧縮をデフォルトに HQ-mode for output audio-device 出力オーディオデバイスを HQ-モードに LMMS working directory LMMSの作業ディレクトリー VST-plugin directory VST-プラグインディレクトリ Artwork directory アートワークのディレクトリ FL Studio installation directory FL Studio のディレクトリ STK rawwave directory STK rawwave のディレクトリ Performance settings パフォーマンス設定 UI effects vs. performance UIエフェクト vs. パフォーマンス Audio settings 自動セッティング AUDIO INTERFACE オーディオインターフェース MIDI settings MIDI 設定 MIDI INTERFACE MIDI インターフェース OK Cancel キャンセル Restart LMMS LMMS 再起動 Please note that most changes won't take effect until you restart LMMS! LMMS を再起動するまで たいていの変更は有効になりません Frames: %1 Latency: %2 ms フレーム: %1レイテンシイ: %2 ms Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. ここで LMMS で使用する内部バッファサイズを指定します。値が小さいとレイテンシーが小さくなりますが小さすぎると古いコンピュータやリアルタイムカーネルじゃないシステムではひどい音やパフォーマンスの低下をひきおこします。 Choose LMMS working directory LMMSの作業ディレクトリを選びます Choose your VST-plugin directory VSTプラグインディレクトリを選びます Choose artwork-theme directory アートワークテーマディレクトリを選びます Choose FL Studio installation directory FL Studioのディレクトリを選びます Choose LADSPA plugin directory LADSPAプラグインのディレクトリを選びます Choose STK rawwave directory STK rawwave のディレクトリを選びます Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. ここで 優先するオーディオインターフェースを選びます。コンパイル時のシステム設定によってALSA,JACK, OSS 等が選べます。下に選択したオーディオインターフェースのコントロール用のボックスがあります。 Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. ここで MIDI インターフェースを選びます コンパイル時のシステム設定によって ALSA OSS 等がえらべます。選択した MIDI インターフェースをのコントール設定の欄が下にあります。 Paths パス LADSPA plugin paths LADSAPA プラグインパス Default Soundfont File デフォルト サウンドフォントファイル Background artwork 背景用アートワーク Choose default SoundFont デフォルトサウンドフォントを選びます Choose background artwork 背景用アートワークを選びます One instrument track window mode Compact track buttons Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Smooth scroll in Song Editor Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Bank Patch Gain Reverb Reverb Roomsize Reverb Damping Reverb Width Reverb Level Chorus Chorus Lines Chorus Level Chorus Speed Chorus Depth sf2InstrumentView Open other SoundFont file Click here to open another SF2 file Choose the patch Gain Apply reverb (if supported) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. このボタンでリバー部エフェクトをON。 かっこいいエフェクトに有効。 しかしリバーブをサポートしたファイルにしか効かない。 Reverb Roomsize: Reverb Damping: Reverb Width: Reverb Level: Apply chorus (if supported) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. このぼたんでコーラスエフェクトをON。かっこいいエコーエフェクトに有効。しかしコーラスをサポートしたファイルにしか効かない。 Chorus Lines: Chorus Level: Chorus Speed: Chorus Depth: Open SoundFont file SoundFont2 Files (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Resonance Filter type Voice 3 off Volume ボリウム Chip model sidInstrumentView Volume: Resonance: Cutoff frequency: High-Pass filter Band-Pass filter Low-Pass filter Voice3 Off MOS6581 SID MOS8580 SID Attack: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. アタック速度は出力ボイス %!1 がゼロからピーク振幅にどれだけ早く大きくなるからを決めます。 Decay: Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. ディケイ速度は出力がピーク振幅からサスティンレベルまでどれだけ早く小さくなるかを決めます。 Sustain: Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. 出力ボイス %1 はノートが保持されてる間、選ばれたサスティン振幅を保持します。 Release: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. 出力ボイス %1 は 選択されたリリースレートで指定した大きさでサスティンレベルからゼロに小さくなります。 Pulse Width: The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. パルス幅解像度は 明らかなステップを生じることなくスムーズにスイープ可能な幅を与えます。オシレータ %1 のパルス波形は聞き取れる効果を持つように選択されなければなれません。 Coarse: The Coarse detuning allows to detune Voice %1 one octave up or down. Coarseデチューンで ボイス %1 を1オクターブ上下にデチューンできます。 Pulse Wave Triangle Wave SawTooth Noise Sync Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Sync ”Hard Sync"エフェクトを生じながらオシレータ %1 の基本周波数を オシレータ %2 の基本周波数に同期します。 Ring-Mod Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. Ring-mod オシレーター %1 の出力の三角形の波形を オシレータ %1 と %2のリングモジュレートされてた組み合わせに置き換えます。 Filtered When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. FilteredがONなら ボイス %1 はフィルターを通って処理されます。 Filteredがオフなら ボイス $1 は直接出力におくられてフィルターは出力に適用されません。 Test Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. Test オシレータ %1 を セット・リセット・ロックしたとき Test が停止されるまでの間 ゼロです。 song Tempo テンポ Master volume マスターボリウム Master pitch マスターピッチ Project saved プロジェクトを保存しました The project %1 is now saved. プロジェクト %1 をセーブしました Project NOT saved. プロジェクトはセーブされてません The project %1 was not saved! プロジェクト %1 はセーブされてません Import file インポートファイル untitled Select file for project-export... プロジェクト-エクスポートするファイルを選んでください Empty project 空プロジェクト This project is empty so exporting makes no sense. Please put some items into Song Editor first! プロジェクトは空ですエキスポートは無駄です。ソングエディタにアイテムを置いてからエクスポートしてください。 MIDI sequences MIDI シーケンス FL Studio projects FL Studio プロジェクト All file types Hydrogen projects Select directory for writing exported tracks... SongEditor Song-Editor ソングエディタ Play song (Space) ソング再生 (Space) Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. クリックすると曲全体を演奏します。ソングポジションマーカー(緑色)の位置から再生開始します。再生中にマーカーを移動さすこともできます。 Stop song (Space) ソング停止 (Space) Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. クリックすると 曲の再生を停止します。 再生後ソングポジションマーカーは曲の最初にセットされます。 Add beat/bassline beat/bassline 追加 Add sample-track sample-track 追加 Could not open file ファイルをオープンできません Could not write file ファイルに書き込めません Add automation-track automation-track 追加 Draw mode ドローモード Edit mode (select and move) 編集モード (選択等) Record samples from Audio-device オーディオデバイスからサンプルを録音 Record samples from Audio-device while playing song or BB track ソングまたはBBトラックを再生中にオーディオデバイスからサンプルを録音 Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Error in file The file %1 seems to contain errors and therefore can't be loaded. Tempo テンポ TEMPO/BPM テンポ/BPM tempo of song 曲のテンポ The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). 曲のテンポは分毎のビート数(BPM)で指定します。曲のテンポを変更する場合はこの値を変更してください。各小節は4つのビートをもちますから、BPMであらわされるテンポは 一分間に いくつの小節(テンポ/4) が演奏される(あるいは4分間にいくつの小節が演奏されるか)かをきめます。 High quality mode ハイクオリティモード Master volume マスターボリウム master volume マスターボリウム Master pitch マスターピッチ master pitch マスター ピッチ Value: %1% ボリウム %1% Value: %1 semitones ボリウム %1 半音 Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Linear Y axis spectrumAnalyzerControls Linear spectrum Linear Y-axis Channel mode stereoEnhancerControlDialog WIDE Width: stereoEnhancerControls Width stereoMatrixControlDialog Left to Left Vol: Left to Right Vol: Right to Left Vol: Right to Right Vol: stereoMatrixControls Left to Left Left to Right Right to Left Right to Right timeLine Enable/disable auto-scrolling オートスクロールの ON/OFF Enable/disable loop-points ループポイントの ON/OFF After stopping go back to begin 終了後 開始位置にもどる After stopping go back to position at which playing was started 終了後 再生が開始された位置にもどる After stopping keep position 終了後 その位置のまま Hint ヒント Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted ミュート Solo ソロ trackContentObject Muted ミュート trackContentObjectView Current position 現在位置 Hint ヒント Press <Ctrl> and drag to make a copy. コピーするには<Ctl>+ドラッグをしてください。 Current length 現在の長さ Press <Ctrl> for free resizing. フリーズ解除には<Ctrl>を押してください。 %1:%2 (%3:%4 to %5:%6) Delete (middle mousebutton) 消去(マウス中ボタン) Cut カット Copy コピー Paste ペースト Mute/unmute (<Ctrl> + middle click) ミュート/ミュート解除(<Ctrl> + 中ボタンクリック) trackOperationsWidget Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. 移動グリップをクリック中に <Ctl >を押せば 新しいドラッグ&ドロップアクションを始められます。 Actions for this track このトラックのアクション Mute ミュート Mute this track このトラックをミュート Solo ソロ Clone this track トラックを複製 Remove this track トラックを消去 vestigeInstrument Loading plugin プラグインをロード中 Please wait while loading VST-plugin... VST-プラグインをロードする間お待ちください Failed loading VST-plugin VST-プラグインのロード失敗 The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! VST-plugin %1 がいくつかの理由でロードできませんでした。 もしそのVSTがLinuxのほかのVST-ソフトウェアで動くなら LMMS の開発者に連絡してください。 vibed String %1 volume String %1 stiffness Pick %1 position Pickup %1 position Pan %1 Detune %1 Fuzziness %1 Length %1 Impulse %1 Octave %1 vibedView Volume: The 'V' knob sets the volume of the selected string. V つまみで選択したストリングのボリウムをセットします。 String stiffness: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. S つまみで選択したストリングのスチフネス(堅さ)をセットします。 ストリングのスチフネスはストリングがどれだけ長くなり響くかに影響します。値をちいさくするとストリングは長く鳴り響きます。 Pick position: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. P つまみでストリングがピッキングされる位置をセットします。値が小さいほどブリッジに近いところがピッキングされます。 Pickup position: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. PUつまみで選択したストリングのどの位置で振動をモニターするかをセットします。 小さい値ほどブリッジとピックアップの位置がちかいことになります。 Pan: The Pan knob determines the location of the selected string in the stereo field. Pan つまみはステレオ音場中の選択したストリングの位置を指定します。 Detune: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. Detune つまみは選択したストリングのピッチを変更します。ゼロより小さい値を設定するとフラットになります。ゼロより大きい値を指定するとシャープになります。 Fuzziness: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. Slapつまみは選択されたストリングに少しだけファズを加えます。アタック期間にもっとも明確な影響があります。ストリングを金属ぽい音にするのにつかえます。 Length: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. Length つまみで選択されたストリングの長さをセットします。より長いストリングは、より長い間鳴って、より明るく聞こえるでしょう、しかし、よりCPUサイクルを食います。 Impulse or initial state The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. Imp セレクタは グラフの波形がピッキングによってストリングに与えられるインパルスとして扱われるかストリングの初期状態として扱われるかをきめます。 Octave The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. オクターブセレクタはストリングでノートのどの倍音が鳴るかをを選べます。'-2'は基音のしたオクターブまで鳴ることを意味します。'F'はストリングが基音で鳴ることを意味します。'6'はストリングが基本から6オクターブの間でなることを意味します。 Impulse Editor The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. 波形エディタは、ストリングの振動開始字に使われる初期状態またはインパルスのコントロールに使います。グラフの右側のボタンで波形をを選択したタイプに初期化します。'?' ぼたんでファイルから波形をロードします--最初の128個のサンプルだけがロードされます。 波形をグラフの中にかけます 'S'ボタンで波形を平滑化します。 'N' ボタンで波形をノーマライズします。 Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Vibed は7個までの独立して振動しているストリングをモデル化します。 'String'セレクタで現在エディットしているストリングを選べます。'Imp' セレクタで グラフがインパルスをあらわしてるのがストリングの初期状態を表しているのか選ぶことができます。'Octavve' セレクタでどの倍音でストリングが振動するのかが選べます。 グラフで初期状態またはストリングを動かすときにつかうインパルスをコントールできます。 ’V’つまみでボリュームをコントロール 'S'つまみでスチフネス(堅さ)をコントロール ’P'つまみで引く位置 ’PU'つまみで録音ピックアップの位置 'Pan' と 'Detune' の説明はいらないでしょう。 'Slap'のつまみは ストリングの音にファズを多少加えます。 'length' つまみはストリングの長さをコントロールします 波形エディタの右下すみのLEDは現在の楽器でどのストリングがアクティブなのか表しています。 Enable waveform Click here to enable/disable waveform. クリックすると 波形の有効/無効の切換 String The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. ストリングセレクタはコントローラーが編集しているストリングを選ぶのにつかいます。Vibed 楽器は 9本までの独立した振動してるストリングを含んでいます。波形エディタの右下すみのLEDはどのストリングがアクティブかを示しています。 Sine wave Triangle wave Saw wave Square wave White noise wave User defined wave Smooth Click here to smooth waveform. クリックすると波形をスムーズ化 Normalize Click here to normalize waveform. クリックすると波形をノーマライズ &Help ヘルプ(&H) Use a sine-wave for current oscillator. サイン波を現在のオシレータで使用 Use a triangle-wave for current oscillator. 三角波を現在のオシレータで使用 Use a saw-wave for current oscillator. のこぎり波を現在のオシレータで使用 Use a square-wave for current oscillator. 方形波を現在のオシレータで使用 Use white-noise for current oscillator. ホワイトノイズを現在のオシレータで使用 Use a user-defined waveform for current oscillator. ユーザー定義波形を現在のオシレータで使用 visualizationWidget click to enable/disable visualization of master-output クリックするとマスターアウトプットの表/示非表示 切換 Click to enable voiceObject Voice %1 pulse width Voice %1 attack Voice %1 decay Voice %1 sustain Voice %1 release Voice %1 coarse detuning Voice %1 wave shape Voice %1 sync Voice %1 ring modulate Voice %1 filtered Voice %1 test lmms-1.0.0+bzr2569/data/locale/ko.qm0000644000000000000000000022600511517317720015056 0ustar 00000000000000[/NM~+K+ۀunh"R0/VS32a7"57o9}ǥ9>; |@1xH@۴2^CFzh_JrlJxMUTueOXwOXߢV]Z;rZ;yC`1x p>w80~o>qutɄyʭiH7(yծhY 8Xu8<lZ ߺoRoa;CBA N|ÓD/h \8Joa3w  5(^Gr(^A)u,´5.4x4N[: (DRobbtr%9tDOxż9%AcCwGuGmGG?e(?m)@)6))&f3-9>Q>>'ѻt>g~32sUslXs DuI 2Q 78J8:)@bHH>OXP~RP~Sk]] ^lu xx>z|Z~}"Ő>rĩjR$V#yB.P>N|t&#M~ WOϯѫU6~Nք3 J왞O%չ^3$Y YWe 02&(=)e 10619F':^<<ek<<n%J-KNM$}Mк|PJ**PJPPJfQq.GQq.` ``%ب`%g5@Yh75jzt-kJzArJ{wTlwkqw3xYZ$yTcyTl{ 9*RdhuFu_uu uEu8u8u9({چIIIrI Ii+qy%Ls6]  }WioBu6xFˤ(ͥ2)2:t(>]5غؽ`_AV uU uݞ @ AT:Ύ^$0-U15DF^sF^zH8>Q%mZaaEpa*afhnh93 :h; yll!)lb-vA }o.;zAjAoK]+*ĴĖFLwj;LjyvNdfTfZz{uttlt{Gt[t8%%3m!Z;(EUwZ<5<5 <5""<5}<5<5sP(ߺD}vljUZC_NM^ IEDE~EB iE'xD#ECA.+pZ1^6{@wC*LC*jC*p/C*wGkN90Q)FWjWd[[ll,6mB;rgSzG'P >P!P%i"#0$FiB .s.zr5q5wh>277L 7)2W~"Ru241ޔr4Tti5>rt &rg Ů \D)d\)mhYb!E&E' )d' )m5n8};;i;`-ZkIUIZ[t3#\X..ZajchJV̪iAN0sm./o ,oj>22kdy)219#*S 6 i: Uٚ$ϞQ-I-HCx?0d n %UT7Uk<U 8d/DuxqJYr>,yͅ^`P Iʩsʩzc8҆]e]nQeBV࣓OfYa  $ & % )8C 6E 8eS 8e: 9 ItYų I' Mg_ O  Te YAN+ Ysa hI.i k/ p,B p w% w%;G x >  B1 ^ `P `fE  9[ n ` F \U6 ; UZH E #) zz #Ca %Ӵ ' 8Rti 8Rto 9 Fy X d r  t W ?x }l# N N| V h 2sF 2y 8A ^ 4H ӗ`= Ӱי غ^ < e` S& i  D   .Q9 .g ʓU  " " $&y + I -y 5ݙ% |D|mI^Ji>Ji8U&E~XҾ) Z B[x*[^ Ey` yV!}h*t*|7K6 PT|~*~QIui  LMMSAbout AboutDialog DtӘ$Arpeggio ArpeggiatorDtӘ$ )եArpeggio direction ArpeggiatorDtӘ$ tҸ Arpeggio gate ArpeggiatorDtӘ$  Arpeggio mode ArpeggiatorDtӘ$ Arpeggio range ArpeggiatorDtӘ$ ܬ Arpeggio time ArpeggiatorDtӘ$ Dž Arpeggio type ArpeggiatorDDown Arpeggiatorǐ mFree Arpeggiator4ǑRandom Arpeggiator,Sort Arpeggiatorٮ0Sync ArpeggiatorUp Arpeggiator @ D Up and down Arpeggiator DtӘ$ARPEGGIOArpeggiatorViewDtӘ$ tҸ:Arpeggio gate:ArpeggiatorViewDtӘ$ Arpeggio range:ArpeggiatorViewDtӘ$ ܬArpeggio time:ArpeggiatorView)ե Direction:ArpeggiatorViewtҸGATEArpeggiatorViewMode:ArpeggiatorViewRANGEArpeggiatorViewܬTIMEArpeggiatorViewmsArpeggiatorView%  octave(s)ArpeggiatorView00DEVICEAudioAlsa::setupWidgetɝAmplify:AudioFileProcessorView] Endpoint:AudioFileProcessorView Ǒ ] #Loop sample at start- and end-pointAudioFileProcessorViewx 0Open other sampleAudioFileProcessorView <\Reverse sampleAudioFileProcessorViewǑ Startpoint:AudioFileProcessorView t|tŸҸ CLIENT-NAMEAudioJack::setupWidget00DEVICEAudioOss::setupWidget1ԴBACKENDAudioPortAudio::setupWidget00DEVICEAudioPortAudio::setupWidget00DEVICEAudioPulseAudio::setupWidget00DEVICEAudioSdl::setupWidget (%1%2)(&C)&Copy value (%1%2)AutomatableModel  t0 (%1%2)(&P)&Paste value (%1%2)AutomatableModel0T (%1%2)(&R) &Reset (%1%2)AutomatableModelŴ0 Connect to controller...AutomatableModel %1 𬰴(Connected to %1AutomatableModelŴ0 𬰴(Connected to controllerAutomatableModel Ӹ...Edit connection...AutomatableModelx- ǐT ӸEdit song-global automationAutomatableModel pRemove connectionAutomatableModel.̴ ݴ D tܸ\ ՈµȲ.1All selected values were copied to the clipboard.AutomationEditorǐT ӸѮ0 - %1Automation Editor - %1AutomationEditorǐT ӸѮ0 - (4 LAutomation Editor - no patternAutomationEditor2Ǭ (4X ǬD X$t 0| t8Ɣ>Click here if you want to stop playing of the current pattern.AutomationEditor" ݴ  (Ctrl+C)Copy selected values (Ctrl+C)AutomationEditor& ݴ  ǘ|0 (Ctrl+X)Cut selected values (Ctrl+X)AutomationEditor 0 (Shift+D)Draw mode (Shift+D)AutomationEditor$ t (Shift+M)Move selection mode (Shift+M)AutomationEditor,t  #0 (Ctrl+V)$Paste values from clipboard (Ctrl+V)AutomationEditor8Ŵ 8 Tt| ǐT (4<\ Ŵ8Ɣ!EPlease open an automation pattern with the context menu of a control!AutomationEditor (Shift+S)Select mode (Shift+S)AutomationEditor   Values copiedAutomationEditor(<Ctrl> t H Ŵ| L0$Drag a control while pressing AutomationPattern %1 %1 ConnectionsAutomationPatternView t  Change nameAutomationPatternViewpClearAutomationPatternViewt "%1"Disconnect "%1"AutomationPatternViewǐT ӸѮ0 0Open in Automation editorAutomationPatternView t 0T Reset nameAutomationPatternView6ǐT ӸѮ0 t (4D 0X t t6double-click to open this pattern in automation editorAutomationPatternView ǐT ҸAutomation trackAutomationTrackTtMajor ChordCreator̴ Ѥ Whole tone ChordCreatortminor ChordCreator% octave ChordCreatorRANGEChordCreatorView%  octave(s)ChordCreatorView Ŵ0 %1 Controller %1 Controller ǐ  Auto DetectControllerConnectionDialogDCHANNELControllerConnectionDialogŴ0 CONTROLLERControllerConnectionDialogCancelControllerConnectionDialog $Connection SettingsControllerConnectionDialog X x.Cycle Detected.ControllerConnectionDialog Dž% D Input channelControllerConnectionDialog Dž% Ŵ0Input controllerControllerConnectionDialog Q hMAPPING FUNCTIONControllerConnectionDialog  Ŵ0MIDI CONTROLLERControllerConnectionDialog$ tҸ| 0\  00(MIDI-devices to receive MIDI-events fromControllerConnectionDialogUxOKControllerConnectionDialogƩǐ Ŵ0USER CONTROLLERControllerConnectionDialogTX0AddControllerRackView Ŵ0 Controller RackControllerRackView(&H)&HelpControllerViewt x p(&R)&Remove this pluginControllerViewŴControlsControllerView"t Ŵ0| \ t Dž%&Enter the new name for this controllerControllerViewŴ0 x t<\Rename controllerControllerViewDecayEffect ֨ Effect enabledEffecttҸGateEffect ֨ Effects enabled EffectChain ֨ TX0 Add effectEffectRackView ֨ ̴x EFFECTS CHAINEffectRackView ֨ TX0 Add effectEffectSelectDialog(&H)&Help EffectViewt x p(&R)&Remove this plugin EffectViewŴControls EffectViewDECAY EffectViewtҸGATE EffectViewtҸ:Gate: EffectView,/TOn/Off EffectViewܬ:Time: EffectView֨ ,  T ѠToggles the effect on or off. EffectViewDecayEnvelopeAndLfoParametersDECEnvelopeAndLfoView:Decay:EnvelopeAndLfoView׌ҸHintEnvelopeAndLfoViewCancelExportProjectDialog͜%OutputExportProjectDialog4LMute FxMixerViewDCHANNELInstrumentMidiIOView D0  Filter typeInstrumentSoundShaping ResonanceInstrumentSoundShapinghVolumeInstrumentSoundShaping: Resonance:InstrumentSoundShapingView t¤ ǐ Base noteInstrumentTrack0  $Default presetInstrumentTrack FX D FX channelInstrumentTrack(PanningInstrumentTrack@Ŵ \Ҹ (*.mmp *.mmpz *.xml)'MultiMedia Project (*.mmp *.mmpz *.xml) MainWindow`@Ŵ \Ҹ (*.mmp *.mmpz);;@Ŵ \Ҹ  (*.mpt)FMultiMedia Project (*.mmp *.mmpz);;MultiMedia Project Template (*.mpt) MainWindow(|x  Online help MainWindow0t \Ҹ 0Open existing project MainWindow\Ҹ 0 Open project MainWindow\Ҹ ǥ HhProject not saved MainWindow\ \ҸRecently opened project MainWindow\ \ҸRecently opened projects MainWindow Ǒ ՉRedo MainWindow"x t<\ ǥ(&A)... Save &As... MainWindowǬ \Ҹ ǥSave current project MainWindow\Ҹ ǥ Save project MainWindow0$Settings MainWindowǐT ӸѮ0 t0/(00Show/hide Automation Editor MainWindow2Beat+Bassline ӸѮ0 t0/(00Show/hide Beat+Bassline Editor MainWindowFX  t0/(00Show/hide FX Mixer MainWindowD  LPlugin not foundPluginL x "%1" >D  Ŵ }Ŵ,  µȲ! t : "%2"AThe plugin "%1" wasn't found or could not be loaded! Reason: "%2"Plugin"U͕ OGG | (*.ogg)Compressed OGG-File (*.ogg)ProjectRendererWAV | (*.wav)WAV-File (*.wav)ProjectRenderer D x:  Channels In: QWidgetD D: Channels Out: QWidget Ǒ:  Copyright: QWidget |: File: QWidgeth X: In Place Broken: QWidget Ǒǐ: Maker: QWidgett: Name: QWidgetD$NoQWidget ܬ : Real Time Capable: QWidget ܬ DƔ: Requires Real Time: QWidgetYesQWidget(&H)&Help TempoSyncKnob1/16 ǐ 16th note TempoSyncKnob1/32 ǐ 32nd note TempoSyncKnob 1/8 ǐ8th note TempoSyncKnobƩǐCustom  TempoSyncKnob Ʃǐ... Custom... TempoSyncKnob8 DҸ Eight beats TempoSyncKnob 1/2 ǐ Half note TempoSyncKnob ٮ0T LNo Sync TempoSyncKnob 1/4 ǐ Quarter note TempoSyncKnob1/16 ǐ\ ٮ0TSynced to 16th Note TempoSyncKnob1/32 ǐ\ ٮ0TSynced to 32nd Note TempoSyncKnob1/8 ǐ\ ٮ0TSynced to 8th Note TempoSyncKnob8DҸ\ ٮ0TSynced to Eight Beats TempoSyncKnob1/2 ǐ\ ٮ0TSynced to Half Note TempoSyncKnob1/4 ǐ\ ٮ0TSynced to Quarter Note TempoSyncKnob̴ ǐ\ ٮ0TSynced to Whole Note TempoSyncKnob \ ٮ0T Tempo Sync TempoSyncKnob ̴ ǐ Whole note TempoSyncKnobOsc %1 X:Osc %1 volume:TripleOscillatorViewDLL | (*.dll)DLL-files (*.dll)VestigeInstrumentViewEXE | (*.exe)EXE-files (*.exe)VestigeInstrumentView}@ VST x LNo VST-plugin loadedVestigeInstrumentViewVST x 0Open VST-pluginVestigeInstrumentViewx VST x 0Open other VST-pluginVestigeInstrumentViewGUI t0/(00 Show/hide GUIVestigeInstrumentView̴ ǐ D0Turn off all notesVestigeInstrumentView VST x }  $XFailed loading VST-plugin VstPlugin x } Loading plugin VstPlugin.VST x }@ H Ǡ 0...'Please wait while loading VST-plugin... VstPlugin FREQZynAddSubFxViewtRESZynAddSubFxViewɝAmplifyaudioFileProcessor ] End of sampleaudioFileProcessorLoopaudioFileProcessor <\Reverse sampleaudioFileProcessor ǑStart of sampleaudioFileProcessor FREQbassBoosterControlDialog : Frequency:bassBoosterControlDialogtGAINbassBoosterControlDialogt:Gain:bassBoosterControlDialogDRATIObassBoosterControlDialogD:Ratio:bassBoosterControlDialog  FrequencybassBoosterControlstGainbassBoosterControlsDRatiobassBoosterControlsǐT Ҹ TX0Add automation-trackbbEditor"beat/bassline TX0Add beat/basslinebbEditor"Beat+Bassline ӸѮ0Beat+Bassline EditorbbEditorǬ beat/bassline| ǬX0 X 0| t. beat/bassline@ ] IJ ǐ<\ )Ȳ.qClick here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached.bbEditorJǬ beat/bassline ǬD X0 X 0| t.4Click here to stop playing of current beat/bassline.bbEditor@Ǭ beat/bassline Ǭ/Ǡ (Space)(Play/pause current beat/bassline (Space)bbEditor<Ǭ beat/bassline Ǭ  (Space).Stop playback of current beat/bassline (Space)bbEditor  Change color bbTCOView t  Change name bbTCOView.Beat+Bassline ӸѮ0 1G$0Open in Beat+Bassline-Editor bbTCOView t 0T Reset name bbTCOViewBeat/Bassline %1bbTrack 8t Samplelength bitInvaderx D t t.Click for a sine-wave.bitInvaderView ѱ D t 0| tClick here for a saw-wave.bitInvaderView  D t 0| tClick here for a square-wave.bitInvaderView  D t 0| tClick here for a triangle-wave.bitInvaderView"Ʃǐ X| t 0| t$Click here for a user-defined shape.bitInvaderView$TtҸ xtɈ| t 0| tClick here for white-noise.bitInvaderView, D ܷ X0 X 0| tClick here to smooth waveform.bitInvaderViewADraw your own waveform here by dragging your mouse on this graph.bitInvaderView InterpolationbitInvaderView|T NormalizebitInvaderView 8t Sample LengthbitInvaderView ѱ Saw wavebitInvaderView x  Sine wavebitInvaderViewܷSmoothbitInvaderView   Square wavebitInvaderView   Triangle wavebitInvaderViewƩǐ X User defined wavebitInvaderViewTtҸ xtɈ White noise wavebitInvaderView |D  LCould not open fileexportProjectDialog%1\ \Ҹ 0Export project to %1exportProjectDialogGraph graphModelDecaykickerInstrument\ DistortionkickerInstrument ]  End frequencykickerInstrumenttGainkickerInstrument Ǒ Start frequencykickerInstrument:Decay:kickerInstrumentView\: Distortion:kickerInstrumentView ] :End frequency:kickerInstrumentViewt:Gain:kickerInstrumentViewǑ :Start frequency:kickerInstrumentView(&H)&Helpknob0%1 %2 t ȸ\ƴ D Dž%X$:+Please enter a new value between %1 and %2:knobH-96.0 dBV 6.0 dBV t ȸ\ƴ D Dž%X$:7Please enter a new value between -96.0 dBV and 6.0 dBV:knob  ĭlAnalysis ToolsladspaBrowserViewƩ ֨Available EffectsladspaBrowserView L  L Don't knowladspaBrowserView00 InstrumentsladspaBrowserViewTThis dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports.ladspaBrowserView:Type:ladspaBrowserViewƩ \ ֨Unavailable EffectsladspaBrowserViewƔ} DescriptionladspaDescription xPluginsladspaDescription$$AudioladspaPortDialogŴControlladspaPortDialog)ե DirectionladspaPortDialog FloatladspaPortDialogDž%InputladspaPortDialogIntegerladspaPortDialog LogarithmicladspaPortDialog\ < 0 < \Min < Default < MaxladspaPortDialogtNameladspaPortDialog͜%OutputladspaPortDialogҸPortsladspaPortDialogDRateladspaPortDialog SR Xt SR DependentladspaPortDialogѠToggledladspaPortDialogTypeladspaPortDialogYesladspaPortDialog24dB/oct D024dB/oct Filter lb302SynthAccent lb302SynthDead lb302Synth\ Distortion lb302Synth¬|tSlide lb302Synth¬|t  Slide Decay lb302SynthVCF Cutoff VCF Cutoff Frequency lb302SynthVCF 0 VCF Envelope Decay lb302SynthVCF 0 VCF Envelope Mod lb302Synth VCF  VCF Resonance lb302Synth Waveform lb302Synth&303-es-que, 24dB/octave, 3 pole filterlb302SynthViewǘ|0CUTlb302SynthViewx D t tClick for a sine-wave.lb302SynthView Click here for a moog-like wave.lb302SynthViewClick here for a saw-wave.lb302SynthView0e ]X D X 0| t.0Click here for a square-wave with a rounded end.lb302SynthView" D X 0| tClick here for a square-wave.lb302SynthView" D X 0| tClick here for a triangle-wave.lb302SynthView#Click here for an exponential wave.lb302SynthViewClick here for white-noise.lb302SynthViewCutoff : Cutoff Freq:lb302SynthViewDEClb302SynthViewDISTlb302SynthViewDIST:lb302SynthView:Decay:lb302SynthView X ENV MODlb302SynthView X :Env Mod:lb302SynthView Moog wavelb302SynthViewtRESlb302SynthView: Resonance:lb302SynthViewe  Rounded square wavelb302SynthView¬|tSLIDElb302SynthView ѱ Saw wavelb302SynthView x  Sine wavelb302SynthView¬|t : Slide Decay:lb302SynthView   Square wavelb302SynthView   Triangle wavelb302SynthViewTtҸ xtɈ White noise wavelb302SynthView24dB/oct Filter lb303SynthAccent lb303SynthDead lb303Synth\ Distortion lb303SynthSlide lb303Synth Slide Decay lb303SynthVCF Cutoff Frequency lb303SynthVCF Envelope Decay lb303SynthVCF Envelope Mod lb303Synth VCF Resonance lb303SynthWaveform lb303Synth&303-es-que, 24dB/octave, 3 pole filterlb303SynthViewCUTlb303SynthView Cutoff Freq:lb303SynthViewDEClb303SynthViewDISTlb303SynthViewDIST:lb303SynthViewDecay:lb303SynthViewENV MODlb303SynthViewEnv Mod:lb303SynthViewRESlb303SynthView Resonance:lb303SynthViewSLIDElb303SynthView Slide Decay:lb303SynthViewWAVElb303SynthViewWAVE:lb303SynthViewADSRmalletsInstrumentAgogomalletsInstrumentBeatsmalletsInstrumentBowedmalletsInstrumentClumpmalletsInstrument l\¤Әt CrossfademalletsInstrumentGlassmalletsInstrumentHardnessmalletsInstrument LFO DepthmalletsInstrument LFO  LFO SpeedmalletsInstrumentȹMarimbamalletsInstrument Ʋ | Missing filesmalletsInstrument ȸtҸ ModulatormalletsInstrumentXMotionmalletsInstrumentXPositionmalletsInstrumentU%PressuremalletsInstrumentResomalletsInstrumentSpeedmalletsInstrumentSpreadmalletsInstrument ¤ ¤ Stick MixmalletsInstrument Tibetan BowlmalletsInstrument Tubular BellsmalletsInstrument Tuned BarmalletsInstrument Two FixedmalletsInstrument Uniform BarmalletsInstrument VibraphonemalletsInstrument  Vibrato FreqmalletsInstrument t Vibrato GainmalletsInstrumentWood1malletsInstrumentWood2malletsInstrumentaYour Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed!malletsInstrumentADSRmalletsInstrumentViewADSR:malletsInstrumentViewBowedmalletsInstrumentView CrossfademalletsInstrumentView Crossfade:malletsInstrumentViewHardnessmalletsInstrumentView Hardness:malletsInstrumentView00 InstrumentmalletsInstrumentView LFO DepthmalletsInstrumentView LFO Depth:malletsInstrumentView LFO SpeedmalletsInstrumentView LFO Speed:malletsInstrumentView ModulatormalletsInstrumentView Modulator:malletsInstrumentViewMotionmalletsInstrumentViewMotion:malletsInstrumentViewXPositionmalletsInstrumentViewX: Position:malletsInstrumentViewPressuremalletsInstrumentView Pressure:malletsInstrumentViewSpeedmalletsInstrumentViewSpeed:malletsInstrumentViewSpreadmalletsInstrumentViewSpread:malletsInstrumentView Stick MixmalletsInstrumentView Stick Mix:malletsInstrumentViewVib FreqmalletsInstrumentView Vib Freq:malletsInstrumentViewVib GainmalletsInstrumentView Vib Gain:malletsInstrumentViewVibratomalletsInstrumentViewVibrato:malletsInstrumentView&HelpnineButtonSelector DistortionorganicInstrumentVolumeorganicInstrument Distortion:organicInstrumentViewOsc %1 fine detuning left:organicInstrumentViewOsc %1 panning:organicInstrumentViewOsc %1 volume:organicInstrumentViewOsc %1 waveform:organicInstrumentView RandomiseorganicInstrumentViewVolume:organicInstrumentViewcentsorganicInstrumentViewBasspapuInstrumentChannel 1 to SO1 (Right)papuInstrumentChannel 1 to SO2 (Left)papuInstrumentChannel 1 volumepapuInstrumentChannel 2 to SO1 (Right)papuInstrumentChannel 2 to SO2 (Left)papuInstrumentChannel 2 volumepapuInstrumentChannel 3 to SO1 (Right)papuInstrumentChannel 3 to SO2 (Left)papuInstrumentChannel 3 volumepapuInstrumentChannel 4 to SO1 (Right)papuInstrumentChannel 4 to SO2 (Left)papuInstrumentChannel 4 volumepapuInstrumentLeft Output levelpapuInstrumentLength of each step in sweeppapuInstrumentRight Output levelpapuInstrumentShift Register widthpapuInstrumentSweep RtShift amountpapuInstrumentSweep directionpapuInstrument Sweep timepapuInstrumentTreblepapuInstrumentVolume sweep directionpapuInstrumentWave Pattern DutypapuInstrumentBasspapuInstrumentViewBass:papuInstrumentViewChannel1 to SO1 (Right)papuInstrumentViewChannel1 to SO2 (Left)papuInstrumentViewChannel2 to SO1 (Right)papuInstrumentViewChannel2 to SO2 (Left)papuInstrumentViewChannel3 to SO1 (Right)papuInstrumentViewChannel3 to SO2 (Left)papuInstrumentViewChannel4 to SO1 (Right)papuInstrumentViewChannel4 to SO2 (Left)papuInstrumentViewDraw the wave herepapuInstrumentViewLength of each step in sweeppapuInstrumentViewLength of each step in sweep:papuInstrumentViewNoise Channel VolumepapuInstrumentViewNoise Channel Volume:papuInstrumentViewSO1 Volume (Right)papuInstrumentViewSO1 Volume (Right):papuInstrumentViewSO2 Volume (Left)papuInstrumentViewSO2 Volume (Left):papuInstrumentViewShift Register WidthpapuInstrumentViewSquare Channel 1 VolumepapuInstrumentViewSquare Channel 1 Volume:papuInstrumentViewSquare Channel 2 VolumepapuInstrumentViewSquare Channel 2 Volume:papuInstrumentViewSweep DirectionpapuInstrumentViewSweep RtShift amountpapuInstrumentViewSweep RtShift amount:papuInstrumentView Sweep TimepapuInstrumentView Sweep Time:papuInstrumentView/The amount of increase or decrease in frequencypapuInstrumentViewThe delay between step changepapuInstrumentViewmThe duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal.papuInstrumentView:The rate at which increase or decrease in frequency occurspapuInstrumentViewTreblepapuInstrumentViewTreble:papuInstrumentViewVolume Sweep DirectionpapuInstrumentViewWave Channel VolumepapuInstrumentViewWave Channel Volume:papuInstrumentView Wave PatternpapuInstrumentViewWave Pattern DutypapuInstrumentViewWave pattern dutypapuInstrumentViewWave pattern duty:papuInstrumentViewCannot freeze patternpattern_The pattern currently cannot be freezed because you're in play-mode. Please stop and try again!patternCancelpatternFreezeStatusDialogFreezing pattern...patternFreezeStatusDialog %1 %1 steps patternView1 1 step patternView TX0 Add steps patternView t  Change name patternView̴ ǐ ư0Clear all notes patternViewFreeze patternView +  t)#Mute/unmute ( + middle click) sampleTCOView#0Paste sampleTCOViewyL $/tSet/clear record sampleTCOView$ D X0 X t tdouble-click to select sample sampleTCOView Ҹ Sample track sampleTrackhVolume sampleTrack D hChannel volume:sampleTrackView Ҹ h Track volumesampleTrackViewhVOLsampleTrackView$$ x0Әt¤AUDIO INTERFACE setupDialogDҸǑ TArtwork directory setupDialog $$ $Audio settings setupDialog | l0 BUFFER SIZE setupDialog0 DҸlBackground artwork setupDialogCancel setupDialog$FL Studio $X T 'Choose FL Studio installation directory setupDialog"LADSPA x T Choose LADSPA plugin directory setupDialogLMMS Ǒ T Choose LMMS working directory setupDialogSTK  T Choose STK rawwave directory setupDialogDҸl L T Choose artwork-theme directory setupDialog0 DҸl Choose background artwork setupDialog0 ƴܮ4 Choose default SoundFont setupDialogVST x T  Choose your VST-plugin directory setupDialog0 \Ҹ | U͕"Compress project files per default setupDialog0 ƴܮ4 |Default Soundfont File setupDialogD \ ǐ #Disable channel activity indicators setupDialogdBV\ h t0Display volume as dBV  setupDialogĭl Enable tooltips setupDialogFL Studio $X T FL Studio installation directory setupDialog* DŽ: %1 4: %2 msFrames: %1 Latency: %2 ms setupDialog | $General settings setupDialog ͜% $$ 00X HQ HQ-mode for output audio-device setupDialogHere you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. setupDialogHere you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. setupDialogHere you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. setupDialogLADSPA x TLADSPA plugin paths setupDialogLMMS Ǒ TLMMS working directory setupDialog x0Әt¤MIDI INTERFACE setupDialog  $ MIDI settings setupDialog0MISC setupDialogUxOK setupDialog&<\ D-LMMS ǬՉ L t եD X JµȲ.GPlease note that most changes won't take effect until you restart LMMS! setupDialog0<\ 0TReset to default-value setupDialogLMMS ǬՉ Restart LMMS setupDialogSTK  TSTK rawwave directory setupDialogLMMS $ Setup LMMS setupDialog"$ ǬՉ t0,Show restart warning after changing settings setupDialogUI ֨ ՉUI effects vs. performance setupDialogVST- x TVST-plugin directory setupDialogElBank sf2InstrumentT¤Chorus sf2Instrument T¤ Jt Chorus Depth sf2Instrument T¤  Chorus Level sf2Instrument T¤ |x Chorus Lines sf2Instrument T¤  Chorus Speed sf2InstrumenttGain sf2Instrument(XPatch sf2Instrument Reverb sf2Instrument QReverb Damping sf2Instrument  Reverb Level sf2Instrument l0Reverb Roomsize sf2Instrument D Reverb Width sf2InstrumentT¤ Ʃ()Apply chorus (if supported)sf2InstrumentView Ʃ()Apply reverb (if supported)sf2InstrumentView (X Choose the patchsf2InstrumentViewT¤ : Chorus Depth:sf2InstrumentViewT¤ : Chorus Level:sf2InstrumentViewT¤ |x: Chorus Lines:sf2InstrumentViewT¤ : Chorus Speed:sf2InstrumentView0x SF2 |D 0 X 0| t#Click here to open another SF2 filesf2InstrumentViewtGainsf2InstrumentViewOpen SoundFont filesf2InstrumentViewx ƴܰL4 | 0Open other SoundFont filesf2InstrumentView Q:Reverb Damping:sf2InstrumentView : Reverb Level:sf2InstrumentView l0:Reverb Roomsize:sf2InstrumentView D: Reverb Width:sf2InstrumentView L142 | (*.sf2)SoundFont2 Files (*.sf2)sf2InstrumentViewuThis button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it.sf2InstrumentViewnt Ҽ@ ֨ . t@ ֨ ƩX. 찘 X | Ǒt .pThis button enables the reverb effect. This is useful for cool effects, but only works on files that support it.sf2InstrumentViewi x Chip model sidInstrumentCutoff sidInstrument D0  Filter type sidInstrument Resonance sidInstrument Voice 3 off sidInstrumenthVolume sidInstrument\Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude.sidInstrumentViewAttack:sidInstrumentView4(¤ D0Band-Pass filter sidInstrumentViewCoarse:sidInstrumentViewCutoff frequency:sidInstrumentViewiDecay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level.sidInstrumentViewDecay:sidInstrumentViewD0FilteredsidInstrumentViewXt(¤ D0High-Pass filter sidInstrumentView\ư(¤ D0Low-Pass filter sidInstrumentView MOS6581 SID sidInstrumentView MOS8580 SID sidInstrumentViewǡLNoisesidInstrumentView]Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held.sidInstrumentView Pulse WavesidInstrumentView Pulse Width:sidInstrumentViewRelease:sidInstrumentView: Resonance:sidInstrumentView-Ring-ModsidInstrumentView}Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2.sidInstrumentViewSawToothsidInstrumentViewSustain:sidInstrumentViewٮ0SyncsidInstrumentViewSync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects.sidInstrumentViewL¤ҸTestsidInstrumentViewPTest, when set, resets and locks Oscillator %1 at zero until Test is turned off.sidInstrumentViewDThe Coarse detuning allows to detune Voice %1 one octave up or down.sidInstrumentViewThe Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect.sidInstrumentViewjThe output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate.sidInstrumentView Triangle WavesidInstrumentView Voice3 Off sidInstrumentViewh:Volume:sidInstrumentViewWhen Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it.sidInstrumentView H \Ҹ Empty projectsongFL Studio \ҸFL Studio projectssong | }Ŵ$0 Import filesong  ¤MIDI sequencessong ¤0 x Ǭ  BBҸ H $$ 00 yL?Record samples from Audio-device while playing song or BB track songEditor x-ӸѮ0 Song-Editor songEditorx  (Space)Stop song (Space) songEditor \/BPM TEMPO/BPM songEditorTempo songEditor: %1 8ѤValue: %1 semitones songEditor : %1% Value: %1% songEditor ¤0 -Press to disable magnetic loop-points.timeLine4LMutedtrack\SolotrackCanceltrackContainerCouldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software.trackContainer |D }Ŵ,  LCouldn't import filetrackContainer |D  LCouldn't open filetrackContainerCouldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again!trackContainer FLP | }Ŵ$ ...Importing FLP-file...trackContainer | }Ŵ$ ...Importing MIDI-file...trackContainer\Ҹ }Ŵ$ ...Loading project...trackContainerǠ 0乬8Ɣ...Please wait...trackContainer4LMutedtrackContentObject.%1:%2 (%3:%4 | %5:%6 \)%1:%2 (%3:%4 to %5:%6)trackContentObjectViewCopytrackContentObjectView Ǭ 8tCurrent lengthtrackContentObjectView Ǭ XCurrent positiontrackContentObjectViewǘ|0CuttrackContentObjectView ( ư¤Ҽ)Delete (middle mousebutton)trackContentObjectView׌ҸHinttrackContentObjectView04L/4Lt (<Ctrl> +  t)#Mute/unmute ( + middle click)trackContentObjectView#0PastetrackContentObjectView4<Ctrl> t D ̴0 X L0%Press and drag to make a copy.trackContentObjectView4ǐ l0 ǬpX0 X <Ctrl> t0Press for free resizing.trackContentObjectViewt ҸX ǑActions for this tracktrackOperationsWidgett ҸD Clone this tracktrackOperationsWidget4LMutetrackOperationsWidgett ҸD 4LMute this tracktrackOperationsWidgetKPress while clicking on move-grip to begin a new drag'n'drop-action.trackOperationsWidgett ҸD pRemove this tracktrackOperationsWidget\SolotrackOperationsWidget VST x }  $XFailed loading VST-pluginvestigeInstrument x } Loading pluginvestigeInstrument.VST x }@ H Ǡ 0...'Please wait while loading VST-plugin...vestigeInstrumentThe VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer!vestigeInstrument Detune %1vibed Fuzziness %1 vibed Impulse %1vibed 8t %1 Length %1vibed Octave %1vibedPan %1vibedPick %1 positionvibedPickup %1 positionvibedString %1 stiffnessvibedString %1 volumevibed&Help vibedView&Click here to enable/disable waveform. vibedView!Click here to normalize waveform. vibedViewClick here to smooth waveform. vibedViewDetune: vibedViewEnable waveform vibedView Fuzziness: vibedViewImpulse ӸѮ0Impulse Editor vibedViewImpulse or initial state vibedView8t:Length: vibedView Normalize vibedViewOctave vibedViewPan: vibedView X :Pick position: vibedViewPickup position: vibedViewSaw wave vibedView Sine wave vibedViewSmooth vibedView Square wave vibedViewString vibedViewString stiffness: vibedViewThe 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. vibedViewThe 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. vibedViewThe 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. vibedViewThe 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. vibedView4The 'V' knob sets the volume of the selected string. vibedViewThe Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. vibedViewThe Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. vibedView#The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. vibedViewPThe Pan knob determines the location of the selected string in the stereo field. vibedViewThe Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. vibedViewThe String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. vibedViewThe waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. vibedView Triangle wave vibedView&Use a saw-wave for current oscillator. vibedView'Use a sine-wave for current oscillator. vibedView)Use a square-wave for current oscillator. vibedView+Use a triangle-wave for current oscillator. vibedView3Use a user-defined waveform for current oscillator. vibedView'Use white-noise for current oscillator. vibedViewUser defined wave vibedViewhVibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. vibedViewh:Volume: vibedViewWhite noise wave vibedView6click to enable/disable visualization of master-outputvisualizationWidgetVoice %1 attack voiceObjectVoice %1 coarse detuning voiceObjectVoice %1 decay voiceObject %1 D0(Voice %1 filtered voiceObjectVoice %1 pulse width voiceObjectVoice %1 release voiceObject %1 pVoice %1 ring modulate voiceObjectVoice %1 sustain voiceObject %1 ٮ0T Voice %1 sync voiceObject %1 L¤Ҹ Voice %1 test voiceObject %1 Voice %1 wave shape voiceObjectlmms-1.0.0+bzr2569/data/locale/ko.ts0000644000000000000000000067747512307165142015111 0ustar 00000000000000 AboutDialog About LMMS LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) About LMMS란 LMMS - easy music production for everyone Authors Translation Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! License Copyright (c) 2004-2014, LMMS developers <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE 기기 CHANNELS AudioFileProcessorView Open other sample 다른 샘플 열기 Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Reverse sample 샘플 역으로 If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Loop sample at start- and end-point 샘플 시작과 끝점 반복 Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Amplify: 증폭 With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Startpoint: 시작점 With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Endpoint: 끝점 With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. JACK server down The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack::setupWidget CLIENT-NAME 클라이언트명 CHANNELS AudioOss::setupWidget DEVICE 기기 CHANNELS AudioPortAudio::setupWidget BACKEND 백엔드 DEVICE 기기 AudioPulseAudio::setupWidget DEVICE 기기 CHANNELS AudioSdl::setupWidget DEVICE 기기 AutomatableModel &Reset (%1%2) 초기화 (%1%2)(&R) &Copy value (%1%2) 값 복사 (%1%2)(&C) &Paste value (%1%2) 값 붙이기 (%1%2)(&P) Edit song-global automation 노래-전역 자동화 편집 Connected to %1 %1 연결됨 Connected to controller 제어기 연결됨 Edit connection... 연결 편집... Remove connection 연결 제거 Connect to controller... 제어기에 연결 Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) 현재 패턴 재생/잠시 중지 (Space) Stop playing of current pattern (Space) 현재 패턴 재생을 중지 (Space) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Click here if you want to stop playing of the current pattern. 현재 패턴의 재생을 중지하려면 여기를 누르세요 Draw mode (Shift+D) 그리기 모드 (Shift+D) Erase mode (Shift+E) 지우기 모드 (Shift+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. Cut selected values (Ctrl+X) 선택된 값 잘라내기 (Ctrl+X) Copy selected values (Ctrl+C) 선택된 값 복사 (Ctrl+C) Paste values from clipboard (Ctrl+V) 클립보드에서 값 붙여넣기 (Ctrl+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the values from the clipboard will be pasted at the first visible measure. Automation Editor - no pattern 자동화 편집기 - 패턴 없음 Automation Editor - %1 자동화 편집기 - %1 Please open an automation pattern with the context menu of a control! 제어 문맥 메뉴를 가진 자동화 패턴으로 열어주세요! Values copied 복사된 값 All selected values were copied to the clipboard. 전체 선택된 값을 클립보드로 복사했습니다. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> <Ctrl> 누르는 동안 제어를 끌기 AutomationPatternView double-click to open this pattern in automation editor 자동화 편집기에서 이 패턴을 열기위하여 이중 클릭 Open in Automation editor 자동화 편집기에서 열기 Clear 제거 Reset name 이름 초기화 Change name 이름 변경 %1 Connections %1 연결 Disconnect "%1" 연결해제 "%1" AutomationTrack Automation track 자동화 트랙 Controller Controller %1 제어기 %1 ControllerConnectionDialog Connection Settings 연결 설정 MIDI CONTROLLER 미디 제어기 Input channel 입력 채널 CHANNEL 채널 Input controller 입력 제어기 CONTROLLER 제어기 Auto Detect 자동 탐색 MIDI-devices to receive MIDI-events from 미디 이벤트를 받기위한 미디 기기 USER CONTROLLER 사용자 제어기 MAPPING FUNCTION 매핑 함수 OK 확인 Cancel 취소 LMMS Cycle Detected. 순환 인지. ControllerRackView Controller Rack 제어기 랙 Add 더하기 Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls 제어 Controllers are able to automate the value of a knob, slider, and other controls. Rename controller 제어기 다른 이름으로 Enter the new name for this controller 이 제어기를 위한 새 이름 입력 &Remove this plugin 이 플러그인 제거(&R) &Help 도움말(&H) Effect Effect enabled 효과 가능 Wet/Dry mix Gate 게이트 Decay 감쇄 EffectChain Effects enabled 효과 가능 EffectRackView EFFECTS CHAIN 효과 체인 Add effect 효과 더하기 EffectSelectDialog Add effect 효과 더하기 Plugin description EffectView Toggles the effect on or off. 효과 켬 또는 끔 토글 On/Off 켬/끔 W/D Wet Level: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. DECAY 감쇄 Time: 시간: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. GATE 게이트 Gate: 게이트: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. Controls 제어 Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. Move &up Move &down &Remove this plugin 이 플러그인 제거(&R) &Help 도움말(&H) EnvelopeAndLfoParameters Predelay Attack Hold Decay 감쇄 Sustain Release Modulation LFO Predelay LFO Attack LFO speed LFO Modulation LFO Wave Shape Freq x 100 Modulate Env-Amount EnvelopeAndLfoView DEL Predelay: Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. ATT Attack: Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. HOLD Hold: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. DEC 감쇄 Decay: 감쇄: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. SUST Sustain: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. REL Release: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. AMT Modulation amount: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. LFO predelay: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. LFO- attack: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. SPD LFO speed: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave for current. Click here for a square-wave. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. FREQ x 100 Click here if the frequency of this LFO should be multiplied by 100. multiply LFO-frequency by 100 MODULATE ENV-AMOUNT Click here to make the envelope-amount controlled by this LFO. control envelope-amount by this LFO ms/LFO: Hint 힌트 Drag a sample from somewhere and drop it in this window. ExportProjectDialog Export project Output 출력 File format: Samplerate: 44100 Hz 48000 Hz 88200 Hz 96000 Hz 192000 Hz Bitrate: 64 KBit/s 128 KBit/s 160 KBit/s 192 KBit/s 256 KBit/s 320 KBit/s Depth: 16 Bit Integer 32 Bit Float Please note that not all of the parameters above apply for all file formats. Quality settings Interpolation: Zero Order Hold Sinc Fastest Sinc Medium (recommended) Sinc Best (very slow!) Oversampling (use with care!): 1x (None) 2x 4x 8x Sample-exact controllers Alias-free oscillators Start Cancel 취소 Export as loop (remove end silence) FxMixer Master FX %1 FxMixerView Rename FX channel Enter the new name for this FX channel FX-Mixer FX Fader %1 Mute 무음 Mute this FX channel InstrumentFunctionArpeggio Arpeggio 아르페지오 Arpeggio type 아르페지오 타입 Arpeggio range 아르페지오 범위 Arpeggio time 아르페지오 시간 Arpeggio gate 아르페지오 게이트 Arpeggio direction 아르페지오 방향 Arpeggio mode 아르페지오 모드 Up Down 아래 Up and down 위와 아래 Random 무작위 Free 자유롭게 Sort 정렬 Sync 동기 InstrumentFunctionArpeggioView ARPEGGIO 아르페지오 An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. RANGE 범위 Arpeggio range: 아르페지오 범위 octave(s) 옥타브 Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. TIME 시간 Arpeggio time: 아르페지오 시간 ms 밀리초 Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. GATE 게이트 Arpeggio gate: 아르페지오 게이트: % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Chord: Direction: 방향 Mode: 모드 InstrumentFunctionNoteStacking octave 옥타브 Major 메이저 Majb5 minor 마이너 minb5 sus2 sus4 aug augsus4 tri 6 6sus4 6add9 m6 m6add9 7 7sus4 7#5 7b5 7#9 7b9 7#5#9 7#5b9 7b5b9 7add11 7add13 7#11 Maj7 Maj7b5 Maj7#5 Maj7#11 Maj7add13 m7 m7b5 m7b9 m7add11 m7add13 m-Maj7 m-Maj7add11 m-Maj7add13 9 9sus4 add9 9#5 9b5 9#11 9b13 Maj9 Maj9sus4 Maj9#5 Maj9#11 m9 madd9 m9b5 m9-Maj7 11 11b9 Maj11 m11 m-Maj11 13 13#9 13b9 13b5b9 Maj13 m13 m-Maj13 Harmonic minor Melodic minor Whole tone 전체 톤 Diminished Major pentatonic Minor pentatonic Jap in sen Major bebop Dominant bebop Blues Arabic Enigmatic Neopolitan Neopolitan minor Hungarian minor Dorian Phrygolydian Lydian Mixolydian Aeolian Locrian Chords Chord type Chord range Minor InstrumentFunctionNoteStackingView RANGE 범위 Chord range: octave(s) 옥타브 Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT CHANNEL 채널 VELOCITY ENABLE MIDI OUTPUT PROGRAM MIDI devices to receive MIDI events from MIDI devices to send MIDI events to NOTE InstrumentSoundShaping VOLUME Volume 볼륨 CUTOFF Cutoff frequency RESO Resonance 공명 Envelopes/LFOs Filter type 필터 형태 Q/Resonance LowPass HiPass BandPass csg BandPass czpg Notch Allpass Moog 2x LowPass RC LowPass 12dB RC BandPass 12dB RC HighPass 12dB RC LowPass 24dB RC BandPass 24dB RC HighPass 24dB Vocal Formant Filter InstrumentSoundShapingView TARGET These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! FILTER Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... RESO Resonance: 공명: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. FREQ 주파수 cutoff frequency: InstrumentTrack unnamed_track Volume 볼륨 Panning 패닝 Pitch 피치 FX channel FX 채널 Default preset 기본 사전 설정 With this knob you can set the volume of the opened channel. Base note 베이스 박자 Pitch range InstrumentTrackView Volume 볼륨 Volume: 볼륨: VOL 볼륨 Panning 패닝 Panning: 패닝: PAN 패닝 MIDI 미디 Input 입력 Output 출력 InstrumentTrackWindow GENERAL SETTINGS 일반 설정 Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. 사전 설정 파일을 저장하고 싶으면 여기를 클릭. 나중에 사전 설정 브라우저에서 이중 클릭으로 사전 설정을 읽어올 수 있습니다. Instrument volume 기기 볼륨 Volume: 볼륨: VOL 볼륨 Panning 패닝 Panning: 패닝: PAN 패닝 Pitch 피치 Pitch: cents PITCH 피치 FX channel FX 채널 ENV/LFO FUNC FX MIDI 미디 Save preset 사전 설정 저장 XML preset file (*.xpf) XML 사전 설정 파일 (*.xpf) PLUGIN 플러그인 Save current channel settings in a preset-file Pitch range (semitones) RANGE 범위 LadspaControl Link channels 채널 링크 LadspaControlDialog Link Channels 채널 링크 Channel 채널 LadspaControlView Link channels 채널 링크 Value: 값: Sorry, no help available. 미안합니다. 도움말을 사용할 수 없습니다 LadspaEffect Effect 효과 Unknown LADSPA plugin %1 requested. 요청된 미지의 LADSPA 플러그인 %1 LfoController LFO Controller LFO 제어기 Base value Oscillator speed Oscillator amount Oscillator phase Oscillator waveform Frequency Multiplier LfoControllerDialog LFO LFO Controller LFO 제어기 BASE 베이스 Base amount: 베이스 양: todo SPD LFO-speed: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. AMT Modulation amount: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. PHS Phase offset: degrees With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. 톱니 파형을 위해 여기를 클릭 Click here for a square-wave. Click here for a a moog saw-wave. Click here for an exponential wave. Click here for white-noise. 화이트 노이즈를 위해 여기를 클릭 Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory 작업 폴더 The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. Could not save config-file 설정 파일을 저장할 수 없음 Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. &Project 프로젝트(&P) &New 새로(&N) &Open... 열기(&O)... Recently opened projects 최근 열린 프로젝트 &Save 저장(&S) Save &As... 다른 이름으로 저장(&A)... Import... 읽어오기... E&xport... 내보내기(&X)... &Quit 종료(&Q) &Edit 편집(&E) Settings 기본설정 &Tools 도구(&T) &Help 도움말(&H) Online help 온라인 도움말 Help 도움말 What's this? 이것은 무엇? About LMMS란 Create new project 새 프로젝트 생성 Create new project from template 서식에서 새 프로젝트 생성 Open existing project 기존 프로젝트 열기 Recently opened project 최근 열린 프로젝트 Save current project 현재 프로젝트 저장 Export current project 현재 프로젝트 내보내기 Show/hide Song-Editor 노래 편집기 보이기/숨기기 By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. Show/hide Beat+Bassline Editor Beat+Bassline 편집기 보이기/숨기기 By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. Show/hide Piano-Roll 피아노-롤 보이기/숨기기 Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. Show/hide Automation Editor 자동화 편집기 보이기/숨기기 Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Show/hide FX Mixer FX 믹서 보이기/숨기기 Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Show/hide project notes 프로젝트 박자 보이기/숨기기 Click here to show or hide the project notes window. In this window you can put down your project notes. Show/hide controller rack 제어기 랙 보이기/숨기기 Untitled 무제 LMMS %1 LMMS %1 Project not saved 프로젝트 저장 안함 The current project was modified since last saving. Do you want to save it now? 마지막 저장 후 현재 프로젝트가 수정되었습니다. 지금 저장하겠습니까? Open project 프로젝트 열기 Save project 프로젝트 저장 Help not available 도움말을 이용할 수 없습니다 Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. 현재 LMMS에 사용할 수 있는 도움말이 없습니다. LMMS 문서는 http://lmms.sf.net/wiki를 방문하세요. My projects My samples My presets My home My computer Root directory Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 Project recovery It looks like the last session did not end properly. Do you want to recover the project of this session? Configuration file Error while parsing configuration file at line %1:%2: %3 MeterDialog Meter Numerator Meter Denominator TIME SIG MeterModel Numerator Denominator MidiAlsaRaw::setupWidget DEVICE 기기 MidiAlsaSeq::setupWidget DEVICE 기기 MidiController MIDI Controller unnamed_midi_controller MidiImport Setup incomplete You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiOss::setupWidget DEVICE 기기 MidiPort Input channel 입력 채널 Output channel Input controller 입력 제어기 Output controller Fixed input velocity Fixed output velocity Output MIDI program Receive MIDI-events Send MIDI-events Fixed output note OscillatorObject Osc %1 volume Osc %1 panning Osc %1 coarse detuning Osc %1 fine detuning left Osc %1 fine detuning right Osc %1 phase-offset Osc %1 stereo phase-detuning Osc %1 wave shape Modulation type %1 Osc %1 waveform PatmanView Open other patch Click here to open another patch-file. Loop and Tune settings are not reset. Loop 반복 Loop mode Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. Tune Tune mode Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. No file selected Open patch file Patch-Files (*.pat) PeakController Peak Controller Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK LFO Controller LFO 제어기 PeakControllerEffectControlDialog BASE 베이스 Base amount: 베이스 양: Modulation amount: Attack: Release: AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Modulation amount Mute output 무음 출력 Attack Release Abs Value Amount Multiplicator PianoView Base note 베이스 박자 Plugin Plugin not found 플러그인 찾을 수 없음 The plugin "%1" wasn't found or could not be loaded! Reason: "%2" 플러그인 "%1" 찾을 수 없어 읽어올 수 없습니다! 이유: "%2" Error while loading plugin 플러그인 읽는 중 오류 Failed to load plugin "%1"! 플러그인 "%1"을 읽는 중 실패! ProjectRenderer WAV-File (*.wav) WAV 파일 (*.wav) Compressed OGG-File (*.ogg) 압축 OGG 파일 (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: 이름: Maker: 제작자: Copyright: 저작권: Requires Real Time: 실제 시간 필요: Yes No 아니오 Real Time Capable: 실제 시간 가능: In Place Broken: 깨진 곳에 위치: Channels In: 채널 인: Channels Out: 채널 아웃: File: 파일: SampleBuffer Open audio file 오디오 파일 열기 All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) 전체 오디오 파일 (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) Wave 파일 (*.wav) OGG-Files (*.ogg) OGG 파일 (*.ogg) DrumSynth-Files (*.ds) DrumSynth 파일 (*.ds) FLAC-Files (*.flac) FLAC 파일 (*.flac) SPEEX-Files (*.spx) SPEEX 파일 (*.spx) MP3-Files (*.mp3) MP3 파일 (*.mp3) VOC-Files (*.voc) VOC 파일 (*.voc) AIFF-Files (*.aif *.aiff) AIFF 파일 (*.aif *.aiff) AU-Files (*.au) AU 파일 (*.au) RAW-Files (*.raw) RAW 파일 (*.raw) SampleTCOView double-click to select sample 샘플을 선택하기 위하여 이중 클릭 Delete (middle mousebutton) Cut 잘라내기 Copy 복사 Paste 붙여넣기 Mute/unmute (<Ctrl> + middle click) 무음/무음해제 (<Ctrl> + 중간 클릭) Set/clear record 녹음 설정/해제 SampleTrack Sample track 샘플 트랙 Volume 볼륨 SampleTrackView Track volume 트랙 볼륨 Channel volume: 채널 볼륨 VOL 볼륨 TempoSyncKnob Tempo Sync 템포 동기화 No Sync 동기화 없음 Eight beats 8 비트 Whole note 전체 박자 Half note 1/2 박자 Quarter note 1/4 박자 8th note 1/8 박자 16th note 1/16 박자 32nd note 1/32 박자 Custom... 사용자... &Help 도움말(&H) Custom 사용자 Synced to Eight Beats 8비트로 동기화 Synced to Whole Note 전체 박자로 동기화 Synced to Half Note 1/2 박자로 동기화 Synced to Quarter Note 1/4 박자로 동기화 Synced to 8th Note 1/8 박자로 동기화 Synced to 16th Note 1/16 박자로 동기화 Synced to 32nd Note 1/32 박자로 동기화 TimeDisplayWidget click to change time units TrackContainer Couldn't import file 파일을 읽어올 수 없음 Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. Couldn't open file 파일을 열 수 없음 Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! Loading project... 프로젝트 읽어오는 중... Cancel 취소 Please wait... 잠시 기다리세요... Importing MIDI-file... 미디 파일 읽어오는 중... Importing FLP-file... FLP 파일 읽어오는 중... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 Mix output of oscillator 1 & 2 Synchronize oscillator 1 with oscillator 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Use phase modulation for modulating oscillator 3 with oscillator 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 Mix output of oscillator 2 & 3 Synchronize oscillator 2 with oscillator 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Osc %1 volume: Osc %1 볼류: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Osc %1 panning: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Osc %1 coarse detuning: semitones With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Osc %1 fine detuning left: cents With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Osc %1 fine detuning right: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Osc %1 phase-offset: degrees With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Osc %1 stereo phase-detuning: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use a moog-like saw-wave for current oscillator. Use an exponential wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin 다른 VST 플러그인 열기 Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Show/hide GUI GUI 보이기/숨기기 Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Turn off all notes 전체 박자 끄기 Open VST-plugin VST 플러그인 열기 DLL-files (*.dll) DLL 파일 (*.dll) EXE-files (*.exe) EXE 파일 (*.exe) No VST-plugin loaded 읽은 VST 플러그인 없음 Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Save preset 사전 설정 저장 Click here, if you want to save current VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Preset by - VST plugin control VstEffectControlDialog Show/hide Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Save preset 사전 설정 저장 Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin 플러그인 읽는 중 Please wait while loading VST-plugin... VST 플러그인 읽은 동안 잠시 대기... Failed loading VST-plugin VST 플러그인 읽는 중 오류 The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Open Preset Vst Plugin Preset (*.fxp *.fxb) : default " ' Save Preset .fxp .FXP .FXB .fxb ZynAddSubFxInstrument Portamento Filter Frequency Filter Resonance Bandwidth FM Gain Resonance Center Frequency Resonance Bandwidth Forward MIDI Control Change Events ZynAddSubFxView Show GUI Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Portamento: PORT Filter Frequency: FREQ 주파수 Filter Resonance: RES 해상도 Bandwidth: BW FM Gain: FM GAIN Resonance center frequency: RES CF Resonance bandwidth: RES BW Forward MIDI Control Changes audioFileProcessor Amplify 증폭 Start of sample 샘플 시작 End of sample 샘플 끝 Reverse sample 샘플 역으로 Loop 반복 Stutter bassBoosterControlDialog FREQ 주파수 Frequency: 주파수: GAIN 이득 Gain: 이득: RATIO Ratio: 비: bassBoosterControls Frequency 주파수 Gain 이득 Ratio bbEditor Beat+Bassline Editor Beat+Bassline 편집기 Play/pause current beat/bassline (Space) 현재 beat/bassline 재생/잠시 정지(Space) Add beat/bassline beat/bassline 더하기 Add automation-track 자동화 트랙 더하기 Stop playback of current beat/bassline (Space) 현재 beat/bassline 재생 중지 (Space) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. 현재 beat/bassline를 재생하기 위하여 여기를 클릭. beat/bassline은 끝에 도달시 자동으로 반복됩니다. Click here to stop playing of current beat/bassline. 현재 beat/bassline 재생을 정지하기 위하여 여기를 클릭. Remove steps 단계 제거 Add steps 단계 더하기 bbTCOView Open in Beat+Bassline-Editor Beat+Bassline 편집기에서 ㅇ려기 Reset name 이름 초기화 Change name 이름 변경 Change color 색상 변경 bbTrack Beat/Bassline %1 Clone of %1 bitInvader Samplelength 샘플 길이 bitInvaderView Sample Length 샘플 길이 Sine wave 사인 파형 Triangle wave 삼각 파형 Saw wave 톱니 파형 Square wave 사각 파형 White noise wave 화이트 노이즈 파형 User defined wave 사용자 정의 파형 Smooth 부드럽게 Click here to smooth waveform. 파형을 부드럽게 하기 위하여 여기를 클릭 Interpolation 내삽 Normalize 일반화 Draw your own waveform here by dragging your mouse on this graph. Click for a sine-wave. 사인 파형을 위해 클릭. Click here for a triangle-wave. 삼각 파형을 위해 여기를 클릭 Click here for a saw-wave. 톱니 파형을 위해 여기를 클릭 Click here for a square-wave. 사각 파형을 위해 여기를 클릭 Click here for white-noise. 화이트 노이즈를 위해 여기를 클릭 Click here for a user-defined shape. 사용자 정의를 위해 여기를 클릭 exportProjectDialog Could not open file 파일을 열 수 없음 Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! Error Error while determining file-encoder device. Please try to choose a different output format. Rendering: %1% Export project to %1 %1로 프로젝트 내보내기 fader Please enter a new value between %1 and %2: %1 과 %2 사이 새로운 값을 입력하시오: fileBrowser Browser fileBrowserTreeWidget Send to active instrument-track Open in new instrument-track/Song-Editor Open in new instrument-track/B+B Editor Loading sample Please wait, loading sample for preview... --- Factory files --- graphModel Graph kickerInstrument Start frequency 시작 주파수 End frequency 끝 주파수 Decay 감쇄 Distortion 왜곡 Gain 이득 kickerInstrumentView Start frequency: 시작 주파수: End frequency: 끝 주파수: Decay: 감쇄: Distortion: 왜곡: Gain: 이득: knob &Help 도움말(&H) Please enter a new value between -96.0 dBV and 6.0 dBV: -96.0 dBV 과 6.0 dBV 사이 새로운 값을 입력하시오: Please enter a new value between %1 and %2: %1 과 %2 사이 새로운 값을 입력하시오: ladspaBrowserView Available Effects 사용 가능 효과 Unavailable Effects 사용 불가능한 효과 Instruments 기기 Analysis Tools 분석 도구 Don't know 알 수 없음 This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. Type: 형태: ladspaDescription Plugins 플러그인 Description 요약 ladspaPortDialog Ports 포트 Name 이름 Rate Direction 방향 Type 형태 Min < Default < Max 최소 < 기본 < 최대 Logarithmic SR Dependent SR 의존 Audio 오디오 Control 제어 Input 입력 Output 출력 Toggled 토글 Integer 정수 Float 유동 Yes lb302Synth VCF Cutoff Frequency VCF Cutoff 주파수 VCF Resonance VCF 공명 VCF Envelope Mod VCF 감싸기 모드 VCF Envelope Decay VCF 감싸기 감쇄 Distortion 왜곡 Waveform 파형 Slide Decay 슬라이드 감소 Slide 슬라이드 Accent Dead 24dB/oct Filter 24dB/oct 필터 lb302SynthView Cutoff Freq: Cutoff 주파수: Resonance: 공명: Env Mod: 환경 모드: Decay: 감쇄: 303-es-que, 24dB/octave, 3 pole filter Slide Decay: 슬라이드 감쇄: DIST: Saw wave 톱니 파형 Click here for a saw-wave. Triangle wave 삼각 파형 Click here for a triangle-wave. 삼각 파형을 위하여 여기를 클릭 Square wave 사각 파형 Click here for a square-wave. 사각 파형을 위하여 여기를 클릭 Rounded square wave 둥근 사각 파형 Click here for a square-wave with a rounded end. 둥근 끝의 사가 파형을 위하여 여기를 클릭. Moog wave Click here for a moog-like wave. Sine wave 사인 파형 Click for a sine-wave. 사인 파형을 위해 클릭 White noise wave 화이트 노이즈 파형 Click here for an exponential wave. Click here for white-noise. lb303Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion 왜곡 Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb303SynthView Cutoff Freq: CUT Resonance: RES Env Mod: ENV MOD Decay: DEC 303-es-que, 24dB/octave, 3 pole filter Slide Decay: SLIDE DIST: DIST WAVE: WAVE malletsInstrument Hardness Position 위치 Vibrato Gain 떨림 이득 Vibrato Freq 떨림 주파수 Stick Mix 스틱 믹스 Modulator 모듈레이트 Crossfade 크로스페이드 LFO Speed LFO 속도 LFO Depth ADSR Pressure 압력 Motion 모션 Speed 속도 Bowed Spread Marimba 마림바 Vibraphone Agogo Wood1 Reso Wood2 Beats Two Fixed Clump Tubular Bells Uniform Bar Tuned Bar Glass Tibetan Bowl Missing files 없는 파일 Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! malletsInstrumentView Instrument 기기 Spread Spread: Hardness Hardness: Position 위치 Position: 위치: Vib Gain Vib Gain: Vib Freq Vib Freq: Stick Mix Stick Mix: Modulator Modulator: Crossfade Crossfade: LFO Speed LFO Speed: LFO Depth LFO Depth: ADSR ADSR: Bowed Pressure Pressure: Motion Motion: Speed Speed: Vibrato Vibrato: manageVSTEffectView - VST parameter control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView - VST plugin control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help opl2instrument Patch 패치 Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Volume organicInstrumentView Distortion: Volume: Randomise Osc %1 waveform: Osc %1 volume: Osc %1 panning: Osc %1 fine detuning left: cents papuInstrument Sweep time Sweep direction Sweep RtShift amount Wave Pattern Duty Channel 1 volume Volume sweep direction Length of each step in sweep Channel 2 volume Channel 3 volume Channel 4 volume Right Output level Left Output level Channel 1 to SO2 (Left) Channel 2 to SO2 (Left) Channel 3 to SO2 (Left) Channel 4 to SO2 (Left) Channel 1 to SO1 (Right) Channel 2 to SO1 (Right) Channel 3 to SO1 (Right) Channel 4 to SO1 (Right) Treble Bass Shift Register width papuInstrumentView Sweep Time: Sweep Time Sweep RtShift amount: Sweep RtShift amount Wave pattern duty: Wave Pattern Duty Square Channel 1 Volume: Length of each step in sweep: Length of each step in sweep Wave pattern duty Square Channel 2 Volume: Square Channel 2 Volume Wave Channel Volume: Wave Channel Volume Noise Channel Volume: Noise Channel Volume SO1 Volume (Right): SO1 Volume (Right) SO2 Volume (Left): SO2 Volume (Left) Treble: Treble Bass: Bass Sweep Direction Volume Sweep Direction Shift Register Width Channel1 to SO1 (Right) Channel2 to SO1 (Right) Channel3 to SO1 (Right) Channel4 to SO1 (Right) Channel1 to SO2 (Left) Channel2 to SO2 (Left) Channel3 to SO2 (Left) Channel4 to SO2 (Left) Wave Pattern The amount of increase or decrease in frequency The rate at which increase or decrease in frequency occurs The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Square Channel 1 Volume The delay between step change Draw the wave here pattern Cannot freeze pattern The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! patternFreezeStatusDialog Freezing pattern... Cancel patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step 피아노-롤에서 이 패턴을 열기위해 이중 클릭 한 단계 볼륨을 설정하기위하여 마우스 휠 사용 Open in piano-roll 피아노-롤에서 열기 Clear all notes 전체 박자 지우기 Reset name 이름 초기화 Change name 이름 변경 Refreeze Freeze Unfreeze Add steps 단계 더하기 Remove steps 단계 제거 PianoRoll Play/pause current pattern (Space) 현재 패턴 재생/잠시 중지 (Space) Stop playing of current pattern (Space) 현재 패턴 재생을 중지 (Space) Cut selected notes (Ctrl+X) 선택 박자를 잘라내기 (Ctrl+X) Copy selected notes (Ctrl+C) 선택 박자를 복사 (Ctrl+C) Paste notes from clipboard (Ctrl+V) 클립보드에서 박자 붙여넣기 (Ctrl+V) Piano-Roll - no pattern 피아노-롤 - 패턴 없음 Piano-Roll - %1 피아노-롤 - %1 Please open a pattern by double-clicking on it! 이것을 이중 클릭을 함으로서 패턴을 열어주세요. Record notes from MIDI-device/channel-piano 미디 기기/채널 피아노에서 박자 기록 Record notes from MIDI-device/channel-piano while playing song or BB track 노래 또는 BB 트랙 재생시 미디 기기/채널에서 박자 기록 Draw mode (Shift+D) 그리기 모드 (Shift+D) Erase mode (Shift+E) 지우기 모드 (Shift+E) Select mode (Shift+S) 선택 모드 (Shift+S) Last note 마지막 박자 Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Click here to stop playback of current pattern. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the notes from the clipboard will be pasted at the first visible measure. Note lock 박자 잠금 Note Volume Note Panning Detune mode (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser no description 요약 없음 Instrument plugins 기기 플러그인 Incomplete monophonic imitation tb303 Plugin for freely manipulating stereo output Plugin for controlling knobs with sound peaks Plugin for enhancing stereo separation of a stereo input file List installed LADSPA plugins 설치된 LADSPA 플러그인 목록 three powerful oscillators you can modulate in several ways Filter for importing FL Studio projects into LMMS versatile kick- & bassdrum-synthesizer GUS-compatible patch instrument plugin for using arbitrary VST-effects inside LMMS. Additive Synthesizer for organ-like sounds plugin for boosting bass Tuneful things to bang on simple sampler with various settings for using samples (e.g. drums) in an instrument-track VST-host for using VST(i)-plugins within LMMS Vibrating string modeler plugin for using arbitrary LADSPA-effects inside LMMS. LMMS안에서 임의 LADSPA 효과를 이용하기 위한 플러그인 Filter for importing MIDI-files into LMMS 미디 파일을 LMMS로 읽어오기 위한 필터 Instrument browser 기기 브라우저 Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. 각 노래 편집기, Beat+Bassline 편집기 또는 기존 기기 트랙으로 끌기 Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Player for SoundFont files 소리 글꼴 파일을 위한 재생기 Emulation of GameBoy (TM) APU Customizable wavetable synthesizer Embedded ZynAddSubFX 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Project notes 프로젝트 박자 Put down your project notes here. 프로젝트 박자를 여기에 두시오. Edit Actions 작업 편집 &Undo 작업 취소(&U) Ctrl+Z &Redo 작업 재실행(&R) Ctrl+Y &Copy 복사(&C) Ctrl+C Cu&t 잘라내기(&T) Ctrl+X &Paste 붙여넣기(&P) Ctrl+V Format Actions 형식 작업 &Bold 진하게(&B) Ctrl+B &Italic 기울임(&I) Ctrl+I &Underline 밑줄(&U) Ctrl+U &Left 왼쪽(&L) Ctrl+L C&enter 중앙(&E) Ctrl+E &Right 오른쪽(&R) Ctrl+R &Justify 양쪽 배분(&J) Ctrl+J &Color... 색상(&C)... renameDialog Rename... 다른 이름으로... setupDialog Setup LMMS LMMS 설정 General settings 일반 설정 BUFFER SIZE 버퍼 크기 Reset to default-value 기본값으로 초기화 MISC 기타 Enable tooltips 도구 도움말 가능 Show restart warning after changing settings 설정 변경후 재실행 경고 보이기 Display volume as dBV dBV로 볼륨 보이기 Compress project files per default 기본 당 프로젝트 파일 압축 HQ-mode for output audio-device 출력 오디오 기기의 HQ 모드 LMMS working directory LMMS 작업 폴더 VST-plugin directory VST-플러그인 폴더 Artwork directory 아트작업 폴더 FL Studio installation directory FL Studio 설치 폴더 STK rawwave directory STK 원시 파형 폴더 Performance settings 실행 설정 UI effects vs. performance UI 효과 대 실행 Audio settings 오디오 설정 AUDIO INTERFACE 오디오 인터페이스 MIDI settings 미디 설정 MIDI INTERFACE 미디 인터페이스 OK 확인 Cancel 취소 Restart LMMS LMMS 재실행 Please note that most changes won't take effect until you restart LMMS! LMMS 재실행 전까지는 변경이 영향을 미치지 않습니다. Frames: %1 Latency: %2 ms 프레임: %1 래턴시: %2 ms Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Choose LMMS working directory LMMS 작업 폴더 선택 Choose your VST-plugin directory VST 플러그인 폴더 선택 Choose artwork-theme directory 아트워크 테마 폴더 선택 Choose FL Studio installation directory FL Studio 설치 폴더 선택 Choose LADSPA plugin directory LADSPA 플러그인 폴더 선택 Choose STK rawwave directory STK 원시 파형 폴더 선택 Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Paths 경로 LADSPA plugin paths LADSPA 플러그인 폴더 Default Soundfont File 기본 사운드글꼴 파일 Background artwork 배경 아트워크 Choose default SoundFont 기본 사운드글꼴 선택 Choose background artwork 배경 아트워크 선택 One instrument track window mode Compact track buttons Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Smooth scroll in Song Editor Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Bank 뱅크 Patch 패치 Gain 이득 Reverb 리버브 Reverb Roomsize 리버브 룸크기 Reverb Damping 리버브 댐핑 Reverb Width 리버브 너비 Reverb Level 리버브 레벨 Chorus 코러스 Chorus Lines 코러스 라인 Chorus Level 코러스 레벨 Chorus Speed 코러스 속도 Chorus Depth 코러스 깊이 sf2InstrumentView Open other SoundFont file 다른 사운드끌꼴 파일 열기 Click here to open another SF2 file 다른 SF2 파일을 열기 위하여 여기를 클릭 Choose the patch 패치 선택 Gain 이득 Apply reverb (if supported) 리버브 적용(지원시) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. 이 버튼은 리버브 효과 가능. 이것은 쿨 효과에 유용하다. 그러나 지원하는 파일에서만 작업이 가능. Reverb Roomsize: 리버브 룸크기: Reverb Damping: 리버브 댐핑: Reverb Width: 리버브 너비: Reverb Level: 리버브 레벨: Apply chorus (if supported) 코러스 적용(지원시) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Chorus Lines: 코러스 라인: Chorus Level: 코러스 레벨: Chorus Speed: 코러스 속도: Chorus Depth: 코러스 심도: Open SoundFont file SoundFont2 Files (*.sf2) 음성글꼴2 파일 (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Resonance 공명 Filter type 필터 형태 Voice 3 off Volume 볼륨 Chip model 칩 모델 sidInstrumentView Volume: 볼륨: Resonance: 공명: Cutoff frequency: High-Pass filter 하이패스 필터 Band-Pass filter 밴드패스 필터 Low-Pass filter 로우패스 필터 Voice3 Off MOS6581 SID MOS8580 SID Attack: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. Decay: Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. Sustain: Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. Release: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. Pulse Width: The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. Coarse: The Coarse detuning allows to detune Voice %1 one octave up or down. Pulse Wave Triangle Wave SawTooth Noise 잡음 Sync 동기 Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Ring-Mod 링-모드 Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. Filtered 필터 When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Test 테스트 Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. song Tempo 탬포 Master volume 마스터 볼륨 Master pitch 마스터 피치 Project saved 저장된 프로젝트 The project %1 is now saved. 프로젝트 %1 이 지금 저장됨. Project NOT saved. 프로젝트가 저장 안됨 The project %1 was not saved! 프로젝트 %1이 저장되지 않음! Import file 파일 읽어오기 untitled 무제 Select file for project-export... 내보내기 위한 프로젝트 파일 선택... Empty project 빈 프로젝트 This project is empty so exporting makes no sense. Please put some items into Song Editor first! 이 프로젝트가 비어있어 내보내기가 무의미함. 몇 항목을 노래 편집기에 우선 두세요! MIDI sequences 미디 시퀀스 FL Studio projects FL Studio 프로젝트 All file types Hydrogen projects Select directory for writing exported tracks... SongEditor Song-Editor 노래-편집기 Play song (Space) 노래 재생 (Space) Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. Stop song (Space) 노래 정지 (Space) Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. Add sample-track 샘플 트랙 더하기 Could not open file 파일을 열 수 없음 Could not write file 파일을 쓸 수 없음 Add automation-track 자동화 트랙 더하기 Draw mode 그리기 모드 Edit mode (select and move) 편집 모드(선택 및 이동) Record samples from Audio-device 오디오 기기에서 샘플 녹음 Record samples from Audio-device while playing song or BB track 노래 재생 또는 BB트랙 동안 오디오 기기에서 샘플 녹음 Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Error in file The file %1 seems to contain errors and therefore can't be loaded. Add beat/bassline beat/bassline 더하기 Tempo 탬포 TEMPO/BPM 템포/BPM tempo of song 노래 템포 The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). High quality mode 고 양질 모드 Master volume 마스터 볼륨 master volume 마스터 볼륨 Master pitch 마스터 피치 master pitch 마스터 피치 Value: %1% 값: %1% Value: %1 semitones 값: %1 세미톤 Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum 선형 스펙트럼 Linear Y axis 선형 Y 축 spectrumAnalyzerControls Linear spectrum 선형 스펙트럼 Linear Y-axis 선형 Y 축 Channel mode 채널 모드 stereoEnhancerControlDialog WIDE 넓게 Width: 너비: stereoEnhancerControls Width 너비 stereoMatrixControlDialog Left to Left Vol: 왼쪽에서 왼쪽 볼륨: Left to Right Vol: 왼쪽에서 오른쪽 볼륨: Right to Left Vol: 오른쪽에서 왼쪽 볼륨: Right to Right Vol: 오른쪽에서 오른쪽 볼륨: stereoMatrixControls Left to Left 왼쪽에서 왼쪽 Left to Right 왼쪽에서 오른쪽 Right to Left 오른쪽에서 왼쪽 Right to Right 오른쪽에서 오른쪽 timeLine Enable/disable auto-scrolling 자동 스크롤링 가능/불가능 Enable/disable loop-points 순환 점 가능/불가능 After stopping go back to begin 중지 후 처음으로 뒤로 이동 After stopping go back to position at which playing was started 중지 후 재생을 시작한 위치로 뒤로 이동 After stopping keep position 중지 후 위치 유지 Hint 힌트 Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted 무음 Solo 솔로 trackContentObject Muted 무음 trackContentObjectView Current position 현재 위치 Hint 힌트 Press <Ctrl> and drag to make a copy. <Ctrl> 누르고 복사본을 만들기 위하여 끌기 Current length 현재 길이 Press <Ctrl> for free resizing. 자유 크기 재조정하기 위하여 <Ctrl> 누르기 %1:%2 (%3:%4 to %5:%6) %1:%2 (%3:%4 를 %5:%6 로) Delete (middle mousebutton) 삭제 (중간 마우스버튼) Cut 잘라내기 Copy 복사 Paste 붙여넣기 Mute/unmute (<Ctrl> + middle click) 무음/무음해제 (<Ctrl> + 중간 클릭) trackOperationsWidget Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Actions for this track 이 트랙의 작업 Mute 무음 Mute this track 이 트랙을 무음 Solo 솔로 Clone this track 이 트랙을 복제 Remove this track 이 트랙을 제거 vestigeInstrument Loading plugin 플러그인 읽는 중 Please wait while loading VST-plugin... VST 플러그인 읽은 동안 잠시 대기... Failed loading VST-plugin VST 플러그인 읽는 중 오류 The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! vibed String %1 volume String %1 stiffness Pick %1 position Pickup %1 position Pan %1 Detune %1 Fuzziness %1 Length %1 길이 %1 Impulse %1 Octave %1 vibedView Volume: 볼륨: The 'V' knob sets the volume of the selected string. String stiffness: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. Pick position: 위치 지정: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. Pickup position: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. Pan: The Pan knob determines the location of the selected string in the stereo field. Detune: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. Fuzziness: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. Length: 길이: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. Impulse or initial state The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. Octave The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. Impulse Editor Impulse 편집기 The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Enable waveform Click here to enable/disable waveform. String The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. Sine wave Triangle wave Saw wave Square wave White noise wave User defined wave Smooth Click here to smooth waveform. Normalize Click here to normalize waveform. &Help Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. visualizationWidget click to enable/disable visualization of master-output Click to enable voiceObject Voice %1 pulse width Voice %1 attack Voice %1 decay Voice %1 sustain Voice %1 release Voice %1 coarse detuning Voice %1 wave shape 소리 %1 파형 Voice %1 sync 소리 %1 동기화 Voice %1 ring modulate 소리 %1 링 조정 Voice %1 filtered 소리 %1 필터됨 Voice %1 test 소리 %1 테스트 lmms-1.0.0+bzr2569/data/locale/nl.qm0000644000000000000000000023125511517317720015061 0ustar 00000000000000d@dF|GG[jGrH`I;LObz2S}A!S}C!BSU#FSb#vT. TZIUQUjQOVb~Vb+V:V#WWԶZojZo\szy* tU*Ptb*v=f{|}r|}}Up~#:;_ϙ~vcHCe tNu7))'yyק1(ק3)Ji >un"R]K2-9}; 8@۴]C3OXѬOXP0%VaaUhb~uͿʭiՙ?*ߺoDҎka3 `(^(^._ZRoފr%&tr%m:e9> kGOt>g~^]nsHss@%+7:) I[YOXߋZ. ]]YIlhPoNz|Zs|Zr}">}!}"~2~.rĩ.yoxg_#̞Ľd66~קAקCքܗjt왞 =0չbRY(l!10ac19A;:#CYZU Qq.Qq.:`w``%`%Bd ZN@g5mhajzt\rJwww}F+i9xPRumu Hu u u \ucucudIIIZX @s ?r  1 f~A9RUx~Քj9E YغؽhPV u u @En Ύ$0%K-U|7e!7e"7U"D?~ EzEoQdQX/f}o.kokTwe3fftԅÞ/EUoZk<5Q<5U<5W<<5<5@<5sD7ljN`EuTEEnix#ECm1U|1^ A6{:gNt:$@˓M9.V$N94Wj(llZrgz'"#\Fi9eh$C2^ޔr_ti>t 7'D  zy(vq }=YB%p*Gx(5nS;IUIUIZ*czsQhF%)wGE Zj>M/>2,k2Nd T# )S : Uٚ$Ϟ-SEF-SE8-SET3hO1G/pGx!Qc?jDknq[vSe5]53%UUUd\`Jcy/yiy&eo Y\ $ e % )8qN 6Ed 8e 8e 9 T YAN٬ p,oz w%Uo w%k6 B1 B1 , dN w = nZ   U W \U \U \U EX # LUQ #C %Ӵ 9 :_ Fy$ SrR ]0L fy g$%U mbH u݈ wJtC  ,+ D   UUmI ul 1 Y ~z ˔ 5 DE NӒ DK + - 2 N Om 1 STnF STn \ \ `' u: L $nR J3 V h 4 غ$ Y:3W Y:Y' Y:j ~C i PO χ  "΁ $&y' + 4. + j| + q -#Oq =wg V c.c, c.c { c.c  c.c c c d̥ d̥ d̥ tܡ {4 {Я X r # Ɉ$ S 鼣7 .˙7 ao bS# cWv cXk c c) c l8- ^  A 1'w 3' ɶ. Չ9 Չ9 3" i Mr e ^_ fn~oi!&ʮ1C2pe;}7<)B`P^Q><Y]7ad^7dy<8YȘxN ah7WgCgU&~Z r` %m4.M iL5ƳiOverAbout AboutDialog"Arpeggio richtingArpeggio direction ArpeggiatorArpeggio gate Arpeggio gate ArpeggiatorArpeggio modus Arpeggio mode ArpeggiatorArpeggio bereikArpeggio range ArpeggiatorArpeggio tijd Arpeggio time ArpeggiatorArpeggio soort Arpeggio type ArpeggiatorVrijFree ArpeggiatorGesorteerdSort ArpeggiatorSynchroonSync Arpeggiator%%ArpeggiatorViewARPEGGIOARPEGGIOArpeggiatorViewArpeggio gate:Arpeggio gate:ArpeggiatorView Arpeggio bereik:Arpeggio range:ArpeggiatorViewArpeggio tijd:Arpeggio time:ArpeggiatorViewRichting: Direction:ArpeggiatorViewGATEGATEArpeggiatorView Modus:Mode:ArpeggiatorView BEREIKRANGEArpeggiatorViewTIJDTIMEArpeggiatorView6Gebruik deze knop om de arpeggio-tijd in miliseconden in te stellen. De arpeggio-tijd geeft aan hoe lang elke noot binnen de arpeggio gespeeld moet worden.Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played.ArpeggiatorViewmsmsArpeggiatorViewoktave(n) octave(s)ArpeggiatorViewKANALENCHANNELSAudioAlsa::setupWidgetAPPARAATDEVICEAudioAlsa::setupWidgetVersterking:Amplify:AudioFileProcessorViewEindpunt: Endpoint:AudioFileProcessorViewMet deze knop word de sample achterste voren gespeeld. Dit is goed bruikbaar voor leuke effecten, zoals een 'reversed crash'.pIf you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash.AudioFileProcessorViewRSample herhalen tussen start- en eindpunt#Loop sample at start- and end-pointAudioFileProcessorView(Andere sample openenOpen other sampleAudioFileProcessorView Sample omdraaienReverse sampleAudioFileProcessorViewStartpunt: Startpoint:AudioFileProcessorViewKANALENCHANNELSAudioJack::setupWidgetCLIENT-NAAM CLIENT-NAMEAudioJack::setupWidgetKANALENCHANNELSAudioOss::setupWidgetAPPARAATDEVICEAudioOss::setupWidgetAPPARAATDEVICEAudioPortAudio::setupWidgetKANALENCHANNELSAudioPulseAudio::setupWidgetAPPARAATDEVICEAudioPulseAudio::setupWidgetAPPARAATDEVICEAudioSdl::setupWidget.Waarde &kopieren (%1%2)&Copy value (%1%2)AutomatableModel,Waarde &plakken (%1%2)&Paste value (%1%2)AutomatableModel$&Herstellen (%1%2) &Reset (%1%2)AutomatableModel|Alle geselecteerde waarden zijn naar het klembord gekopieerd. 1All selected values were copied to the clipboard.AutomationEditor,Automation-Editor - %1Automation Editor - %1AutomationEditor@Automation-Editor - geen PatternAutomation Editor - no patternAutomationEditorLKopieer geselecteerde waarden (Ctrl+C)Copy selected values (Ctrl+C)AutomationEditorFKnip geselecteerde waarden (Ctrl+X)Cut selected values (Ctrl+X)AutomationEditor*Teken modus (Shift+D)Draw mode (Shift+D)AutomationEditor&Wis modus (Shift+E)Erase mode (Shift+E)AutomationEditorAls je hier klikt, word de verplaats-modus geactiveerdt. In deze modus kun je de in de selecteer-modus geselecteerde waarden verplaatsen. Je kunt ook 'Shift+M' op het toetsenbord gebruiken om deze modus te activeren.If you click here, move-mode will be activated. In this mode you can move the values you selected in select-mode. You can also press 'Shift+M' on your keyboard to activate this mode.AutomationEditorDVerplaats selectie modus (Shift+M)Move selection mode (Shift+M)AutomationEditorDPlak waarden van klembord (Ctrl+V)$Paste values from clipboard (Ctrl+V)AutomationEditorTHuidige pattern afspelen/pauseren (Spatie)"Play/pause current pattern (Space)AutomationEditorOpen aub een automation pattern met het context menu van een controller!EPlease open an automation pattern with the context menu of a control!AutomationEditor2Selecteer modus (Shift+S)Select mode (Shift+S)AutomationEditorRAfspelen huidige pattern stoppen (Spatie)'Stop playing of current pattern (Space)AutomationEditor$Waarden gekopieerd Values copiedAutomationEditorNaam herstellen Reset nameAutomationPatternView1111 ChordCreator11b911b9 ChordCreator1313 ChordCreator13#913#9 ChordCreator 13b5b913b5b9 ChordCreator13b913b9 ChordCreator66 ChordCreator madd96add9 ChordCreator 6sus46sus4 ChordCreator77 ChordCreator7#117#11 ChordCreator7#57#5 ChordCreator 7#5#97#5#9 ChordCreator 7#5b97#5b9 ChordCreator7#97#9 ChordCreator 7add117add11 ChordCreator 7add137add13 ChordCreator7b57b5 ChordCreator 7b5b97b5b9 ChordCreator7b97b9 ChordCreator 7sus47sus4 ChordCreator99 ChordCreator9#119#11 ChordCreator9#59#5 ChordCreator9b139b13 ChordCreator9b59b5 ChordCreator 9sus49sus4 ChordCreatorAeolianAeolian ChordCreatorArabischArabic ChordCreator BluesBlues ChordCreatorAkkoord bereik Chord range ChordCreatorAkkoord soort Chord type ChordCreatorVermindert Diminished ChordCreatorDominante BebopDominant bebop ChordCreator DorianDorian ChordCreatorEnigmatisch Enigmatic ChordCreator"Harmonisch mineurHarmonic minor ChordCreatorZigeunermineurHungarian minor ChordCreatorLocrischLocrian ChordCreatorLydischLydian ChordCreator Maj11Maj11 ChordCreator Maj13Maj13 ChordCreatorMaj7Maj7 ChordCreatorMaj7#11Maj7#11 ChordCreator Maj7#5Maj7#5 ChordCreatorMaj7add13 Maj7add13 ChordCreator Maj7b5Maj7b5 ChordCreatorMaj9Maj9 ChordCreatorMaj9#11Maj9#11 ChordCreator Maj9#5Maj9#5 ChordCreatorMaj9sus4Maj9sus4 ChordCreator Majb5Majb5 ChordCreator MajeurMajor ChordCreatorMajeur bebop Major bebop ChordCreator&Pentatonisch majeurMajor pentatonic ChordCreator Melodisch mineur Melodic minor ChordCreator&Pentatonisch mineurMinor pentatonic ChordCreatorMixolydisch Mixolydian ChordCreatorNeopolitanisch Neopolitan ChordCreator.Neopolitanisches mineurNeopolitan minor ChordCreatorPhrygisch Phrygolydian ChordCreatorHele noot Whole tone ChordCreatoradd9add9 ChordCreatoraugaug ChordCreatoraugsus4augsus4 ChordCreatorm-Maj11m-Maj11 ChordCreatorm-Maj13m-Maj13 ChordCreator m-Maj7m-Maj7 ChordCreatorm-Maj7add11 m-Maj7add11 ChordCreatorm-Maj7add13 m-Maj7add13 ChordCreatorm11m11 ChordCreatorm13m13 ChordCreatorm6m6 ChordCreator m6add9m6add9 ChordCreatorm7m7 ChordCreatorm7add11m7add11 ChordCreatorm7add13m7add13 ChordCreatorm7b5m7b5 ChordCreatorm7b9m7b9 ChordCreatorm9m9 ChordCreatorm9-Maj7m9-Maj7 ChordCreatorm9b5m9b5 ChordCreator madd9madd9 ChordCreator minb5minb5 ChordCreator mineurminor ChordCreator oktaafoctave ChordCreatorsus2sus2 ChordCreatorsus4sus4 ChordCreatortritri ChordCreatorAKKOORDENCHORDSChordCreatorViewAkkoord bereik: Chord range:ChordCreatorView BEREIKRANGEChordCreatorViewoktave(n) octave(s)ChordCreatorView KANAALCHANNELControllerConnectionDialogIngang kanaal Input channelControllerConnectionDialogXMIDI-apparaat voor ontvangen van MIDI-events(MIDI-devices to receive MIDI-events fromControllerConnectionDialogOKOKControllerConnectionDialog &Help&HelpControllerView &Help&Help EffectViewGATEGATE EffectViewFreq x 100 Freq x 100EnvelopeAndLfoParameters0Moduleer Env-IntensiteitModulate Env-AmountEnvelopeAndLfoParametersAMTAMTEnvelopeAndLfoViewATTATTEnvelopeAndLfoViewAttack:Attack:EnvelopeAndLfoView|Klik hier, om de envelope-waarde door de LFO te laten regelen.>Click here to make the envelope-amount controlled by this LFO.EnvelopeAndLfoViewDECDECEnvelopeAndLfoViewDELDELEnvelopeAndLfoView Decay:Decay:EnvelopeAndLfoViewvSleep een willekeurige sample en plaats hem in dit venster.8Drag a sample from somewhere and drop it in this window.EnvelopeAndLfoViewFREQ x 100 FREQ x 100EnvelopeAndLfoViewHOLDHOLDEnvelopeAndLfoViewTipHintEnvelopeAndLfoView Hold:Hold:EnvelopeAndLfoView&MODULEER-ENV-INTENSMODULATE ENV-AMOUNTEnvelopeAndLfoView,Modulatie-intensiteit:Modulation amount:EnvelopeAndLfoViewPredelay: Predelay:EnvelopeAndLfoViewRELRELEnvelopeAndLfoViewRelease:Release:EnvelopeAndLfoViewSPDSPDEnvelopeAndLfoViewSUSTSUSTEnvelopeAndLfoViewSustain:Sustain:EnvelopeAndLfoViewRGebruik deze knop om de attack-tijd van de huidige LFO in te stellen. Hoe groter de waarde, hoe langer het duurt voordat de LFO aan zijn maximaal ingestelde waarde komt.Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum.EnvelopeAndLfoViewGebruik deze knop om de attack-tijd van de huidige envelope in te stellen. Dit is de tijd welke de envelope nodig heeft om aan zijn maximale waarde te komen. Kies een korte tijd voor bv. piano's en een lange tijd voor bv. strijkers.Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings.EnvelopeAndLfoViewGebruik deze knop om de decay-tijd van de huidige envelope in te stellen. Dit is de tijd die nodig is om van het maximale attack-niveau naar het sustain-niveau te gaan. Voor bv. piano moet je een lage waarde kiezen.Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos.EnvelopeAndLfoViewjGebruik deze knop voor het instellen van de hold-tijd van de huidige LFO. Hoe groter de waarde, hoe groter het effect van de LFO op zijn doel heeft (bv. volume, cutoff-frequentie). Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level.EnvelopeAndLfoViewvGebruik deze knop voor het instellen van de modulatiewaarde ven de huidige LFO. Hoe groter de waarde, hoe groter het effect van de LFO op zijn doel heeft (bv. volume, cutoff-frequentie). Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO.EnvelopeAndLfoViewGebruik deze knop om de modulatiewaarde voor de huidige envelope in te stellen. Hoe groter de waarde, hoe meer het gewenste doel (bv. volume of cutoff-frequentie) word beinvloed door de envelope.Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope.EnvelopeAndLfoView:Gebruik deze knop om de attack-tijd van de huidige envelope in te stellen. Dit is de tijd die nodig is totdat de envelope zijn maximale waarde heeft bereikt.Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope.EnvelopeAndLfoView.Gebruik deze knop om de predelay-tijd van de huidige LFO in te stellen. Hoe groter de waarde, hoe langer het duurt voordat de LFO begint te oscilleren.Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate.EnvelopeAndLfoViewGebruik deze knop om de release-tijd van de huidige envelope in te stellen. Dit is de tijd die de envelope nodig heeft om van sustain-niveau weer naar nul te gaan. Kies een grote waarde voor bijvoorbeeld strijkers.Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings.EnvelopeAndLfoViewGebruik deze knop voor het instellen van de LFO-snelheid. Hoe groter de waarde, hoe sneller de LFO oscilleerd en hoe sneller het effect is.Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect.EnvelopeAndLfoView<Gebruik deze knop om het sustain-niveau van de huidige envelope in te stellen. Dit is de waarde van de envelope welke word aangehouden zolang de noot aanhoud.Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero.EnvelopeAndLfoView@envelope-waarde door LFO regelen#control envelope-amount by this LFOEnvelopeAndLfoViewms/LFO:ms/LFO:EnvelopeAndLfoView DempenMute FxMixerView KANAALCHANNELInstrumentMidiIOView2x LowPass 2x LowPassInstrumentSoundShapingAllpassAllpassInstrumentSoundShapingBandpass csg BandPass csgInstrumentSoundShapingBandpass czpg BandPass czpgInstrumentSoundShaping CUTOFFCUTOFFInstrumentSoundShapingFiltersoort Filter typeInstrumentSoundShaping HiPassHiPassInstrumentSoundShapingLowPassLowPassInstrumentSoundShapingMoogMoogInstrumentSoundShaping NotchNotchInstrumentSoundShapingQ/Resonantie Q/ResonanceInstrumentSoundShaping VolumeVolumeInstrumentSoundShaping CUTOFFCUTOFFInstrumentSoundShapingView FILTERFILTERInstrumentSoundShapingView<Hier kun je een ingebouwd filter selecteren, welke je in dit kanaal kunt gebruiken. Filters zijn zeer belangrijk om het karakter van een geluid te veranderen.Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound.InstrumentSoundShapingViewHzHzInstrumentSoundShapingViewDOELTARGETInstrumentSoundShapingView"cutof-frequentie:cutoff-frequency:InstrumentSoundShapingViewGrandtoon Base noteInstrumentTrackFX-Kanaal FX channelInstrumentTrack VolumeVolumeInstrumentTrackMet deze knop kun je het volume van het geopende kanaal instellen.Met acht beats gesynchroniseerdSynced to Eight Beats TempoSyncKnob>Met halve noot gesynchroniseerdSynced to Half Note TempoSyncKnob>Met kwart noot gesynchroniseerdSynced to Quarter Note TempoSyncKnob<Met hele noot gesynchroniseerdSynced to Whole Note TempoSyncKnob(Tempo synchronisatie Tempo Sync TempoSyncKnobHele noot Whole note TempoSyncKnob2Osc %1 grove ontstemming:Osc %1 coarse detuning:TripleOscillatorViewJOscillator %1 Fijn ontstemming links:Osc %1 fine detuning left:TripleOscillatorViewLOscillator %1 Fijn ontstemming rechts:Osc %1 fine detuning right:TripleOscillatorView*Oscillator %1 Balans:Osc %1 panning:TripleOscillatorViewBOscillator %1 fase-verschuiving: Osc %1 phase-offset:TripleOscillatorViewLOscillator %1 stereo fase-veschuiving:Osc %1 stereo phase-detuning:TripleOscillatorView*Oscillator %1 Volume:Osc %1 volume:TripleOscillatorViewMet deze knop stel je de grove ontstemming van oscillator %1 in. Je kunt de oscillator 12 seminote (1oktaaf) naar boven of beneden ontstemmen.Dit is bruikbaar voor het maken van geluiden met een akkoord.With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord.TripleOscillatorViewMet deze knop stel je de fijne ontstemming van oscillator %1 in voor het linker kanaal. Je kunt fijn-ontstemmen met een bereik van -100 cents en +100 cents. Dit is bruikbaar voor het maken van 'vette' geluiden.With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorViewMet deze knop stel je de fijne ontstemming van oscillator %1 in voor het rechter kanaal. Je kunt fijn-ontstemmen met een bereik van -100 cents en +100 cents. Dit is bruikbaar voor het maken van 'vette' geluiden.With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorViewXMet deze knop stel je de balans in voor oscillator %1. Een waarde van -100 betekent 100% links en een waarde van 100 verplaatst het geluid volledig naar het rechter kanaal.With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right.TripleOscillatorViewPMet deze knop stel je de fase-verschuiving van oscillator %1 in. Dit betekend dat je het punt in de oscillatie waar de oscillator begint te oscilleren kunt verplaatsen.)With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave.TripleOscillatorView,Met deze knop stel je het volume van oscillator %1 in. Als deze op 0 staat is de oscillator uit. Anders hoor je de oscillator zo hard als jij hem wil.With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here.TripleOscillatorView gradendegreesTripleOscillatorViewsemitonen semitonesTripleOscillatorViewKlik hier, wanneer je de Grafische Gebruiker Interface (GUI) van je VST-plugin wilt tonen/verbergen.QClick here to show or hide the graphical user interface (GUI) of your VST-plugin.VestigeInstrumentViewHKlik hier, wanner je een andere VST-plugin wilt openen. Nadat je op deze knop gedrukt hebt zal er een bestand-openen-dialoog openen en kun je je bestand selecteren.Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file.VestigeInstrumentView*DLL-Bestanden (*.dll)DLL-files (*.dll)VestigeInstrumentView*EXE-Bestanden (*.exe)EXE-files (*.exe)VestigeInstrumentView.Geen VST-plugin geladenNo VST-plugin loadedVestigeInstrumentViewOpen VST-pluginOpen VST-pluginVestigeInstrumentView*Open ander VST-pluginOpen other VST-pluginVestigeInstrumentView,Alle noten verwijderenTurn off all notesVestigeInstrumentViewdoorbyVestigeInstrumentView0VST-plugin laden misluktFailed loading VST-plugin VstPluginPlugin ladenLoading plugin VstPluginPWacht aub, de VST-plugin word geladen...'Please wait while loading VST-plugin... VstPluginDDe VST-plugin %1 kan om onbekende reden niet worden geladen. Als het wel werkt met andere VST-software onder Linux, neem dan contact op met een LMMS-ontwikkelaar!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! VstPluginVersterkingAmplifyaudioFileProcessor$Eind van de sample End of sampleaudioFileProcessor Sample omdraaienReverse sampleaudioFileProcessor&Begin van de sampleStart of sampleaudioFileProcessor.Beat/Bassline toevoegenAdd beat/basslinebbEditor(Beat+Bassline EditorBeat+Bassline EditorbbEditor`Huidige beat/bassline afspelen/pauseren (Spatie)(Play/pause current beat/bassline (Space)bbEditor Kleur veranderen Change color bbTCOView<In Beat+Bassline-Editor openenOpen in Beat+Bassline-Editor bbTCOViewNaam herstellen Reset name bbTCOView Beat/Bassline %1Beat/Bassline %1bbTrackSamplelengte Samplelength bitInvaderInterpolatie InterpolationbitInvaderViewNormaliseren NormalizebitInvaderViewSample Lengte Sample LengthbitInvaderViewZaagtand golfSaw wavebitInvaderViewSinus golf Sine wavebitInvaderViewUitstrijkerSmoothbitInvaderViewVierkants golf Square wavebitInvaderViewDriehoeks golf Triangle wavebitInvaderView8Gebruiker gedefinieerde golfUser defined wavebitInvaderViewWitte ruisWhite noise wavebitInvaderView.Kan bestand niet openenCould not open fileexportProjectDialog2Exporteer project naar %1Export project to %1exportProjectDialog Decay:Decay:kickerInstrumentView &Help&HelpknobVVoer aub. een waarde in tussen %1 en %2 in:+Please enter a new value between %1 and %2:knobhVoer aub. een waarde tussen -96.0 dBV en 6.0 dBV in:7Please enter a new value between -96.0 dBV and 6.0 dBV:knob Soort:Type:ladspaBrowserViewDECDEClb302SynthView Decay:Decay:lb302SynthViewZaagtand golfSaw wavelb302SynthViewSinus golf Sine wavelb302SynthViewVierkants golf Square wavelb302SynthViewDriehoeks golf Triangle wavelb302SynthViewWitte ruisWhite noise wavelb302SynthViewDECDEClb303SynthView Decay:Decay:lb303SynthView &Help&HelpnineButtonSelector VolumeVolumeorganicInstrumentJOscillator %1 Fijn ontstemming links:Osc %1 fine detuning left:organicInstrumentView*Oscillator %1 Balans:Osc %1 panning:organicInstrumentView*Oscillator %1 Volume:Osc %1 volume:organicInstrumentView.Oscillator %1 Golfvorm:Osc %1 waveform:organicInstrumentViewWillekeurig RandomiseorganicInstrumentViewVolume:Volume:organicInstrumentView4Kan pattern niet bevriezenCannot freeze patternpatternDe pattern kan nu niet bevroren worden, omdat deze in de afspeel-modus is. Stop aub. en probeer opnieuw!_The pattern currently cannot be freezed because you're in play-mode. Please stop and try again!patternAnnulerenCancelpatternFreezeStatusDialog(Pattern bevriezen...Freezing pattern...patternFreezeStatusDialog%1 Steps%1 steps patternView 1 Step1 step patternViewSteps toevoegen Add steps patternView,Alle noten verwijderenClear all notes patternViewBevriezenFreeze patternView(In Piano-Roll openenOpen in piano-roll patternView"Opnieuw bevriezenRefreeze patternView"Steps verwijderen Remove steps patternViewNaam herstellen Reset name patternView0Bevriezen ongedaan makenUnfreeze patternViewdubbel-klik om deze pattern in Piano-Roll te openen volume van de steps is met het muiswiel te veranderenWdouble-click to open this pattern in piano-roll use mouse wheel to set volume of a step patternViewHKopieer geselecteerde noten (Ctrl+C)Copy selected notes (Ctrl+C) pianoRollBKnip geselecteerde noten (Ctrl+X)Cut selected notes (Ctrl+X) pianoRoll*Teken modus (Shift+D)Draw mode (Shift+D) pianoRoll&Wis modus (Shift+E)Erase mode (Shift+E) pianoRollLaatste noot Last note pianoRoll@Plak noten van klembord (Ctrl+V)#Paste notes from clipboard (Ctrl+V) pianoRollPiano-Roll - %1Piano-Roll - %1 pianoRoll0Piano-Roll -geen patternPiano-Roll - no pattern pianoRollTHuidige pattern afspelen/pauseren (Spatie)"Play/pause current pattern (Space) pianoRollfOpen aub. een pattern door er op te dubbel-klikken!/Please open a pattern by double-clicking on it! pianoRollXNoten van MIDI-apparaat/kanaal-piano opnemen+Record notes from MIDI-device/channel-piano pianoRoll2Selecteer modus (Shift+S)Select mode (Shift+S) pianoRollRAfspelen huidige pattern stoppen (Spatie)'Stop playing of current pattern (Space) pianoRoll^Additive Synthesizer voor orgelachtige geluiden*Additive Synthesizer for organ-like sounds pluginBrowserlFilter voor importeren van FL Studio Projecten in LMMS1Filter for importing FL Studio projects into LMMS pluginBrowser^Filter, om MIDI-bestanden in LMMS te importeren)Filter for importing MIDI-files into LMMS pluginBrowser$Instrument PluginsInstrument plugins pluginBrowserhVST-Host voor bebruik van VST(i)-Plugins binnen LMMS-VST-host for using VST(i)-plugins within LMMS pluginBrowserDVibrerende snaarinstrument modelerVibrating string modeler pluginBrowser"geen beschrijvingno description pluginBrowserEenvoudige Sampler met verschillende instellingen voor gebruik van samples (z.B. Drums) in in een instrument-spoorZsimple sampler with various settings for using samples (e.g. drums) in an instrument-track pluginBrowserDrie krachtige Oscillatoren, welke je op verschillende manieren kan moduleren;three powerful oscillators you can modulate in several ways pluginBrowser&Vet&Bold projectNotes&Kleur... &Color... projectNotes&Kopieren&Copy projectNotes&Cursief&Italic projectNotes&Uitgevuld&Justify projectNotes &Links&Left projectNotes&Plakken&Paste projectNotes&Herstellen&Redo projectNotes&Rechts&Right projectNotes&Onderstrepen &Underline projectNotes&Ongedaan maken&Undo projectNotesC&entrerenC&enter projectNotes Ctrl+BCtrl+B projectNotes Ctrl+CCtrl+C projectNotes Ctrl+ECtrl+E projectNotes Ctrl+ICtrl+I projectNotes Ctrl+JCtrl+J projectNotes Ctrl+LCtrl+L projectNotes Ctrl+RCtrl+R projectNotes Ctrl+UCtrl+U projectNotes Ctrl+VCtrl+V projectNotes Ctrl+XCtrl+X projectNotes Ctrl+YCtrl+Y projectNotes Ctrl+ZCtrl+Z projectNotesK&nippenCu&t projectNotesBewerken Edit Actions projectNotes OpmaakFormat Actions projectNotes Project notities Project notes projectNotes@Plaats hier je Project notities.!Put down your project notes here. projectNotesHernoemen... Rename... renameDialog:AIFF-Bestanden (*.aif *.aiff)AIFF-Files (*.aif *.aiff) sampleBuffer&AU-Bestanden (*.au)AU-Files (*.au) sampleBuffer.FLAC-Bestanden (*.flac)FLAC-Files (*.flac) sampleBuffer*OGG-Bestanden (*.ogg)OGG-Files (*.ogg) sampleBuffer(Audio-bestand openenOpen audio file sampleBuffer*RAW-Bestanden (*.raw)RAW-Files (*.raw) sampleBuffer*VOC-Bestanden (*.voc)VOC-Files (*.voc) sampleBuffer,Wave-Bestanden (*.wav)Wave-Files (*.wav) sampleBufferKopierenCopy sampleTCOViewKnippenCut sampleTCOView@Verwijderen (middelste muisknop)Delete (middle mousebutton) sampleTCOViewNDempen/geluid aan (<Ctrl> + middelklik)#Mute/unmute ( + middle click) sampleTCOViewPlakkenPaste sampleTCOViewNdubbel-klik om een sample te selecterendouble-click to select sample sampleTCOViewSample spoor Sample track sampleTrack VolumeVolume sampleTrackAUDIO INTERFACEAUDIO INTERFACE setupDialogArtwork mapArtwork directory setupDialog$Audio instellingenAudio settings setupDialogBUFFERGROOTTE BUFFER SIZE setupDialogAnnulerenCancel setupDialog<Kies FL Studio installatie map'Choose FL Studio installation directory setupDialog$Kies LMMS-werkmap Choose LMMS working directory setupDialog0Artwork-thema map kiezenChoose artwork-theme directory setupDialog,Kies je VST-Plugin map Choose your VST-plugin directory setupDialogJKanaal activiteits LED's uitschakelen#Disable channel activity indicators setupDialog(Volume in dBV tonen Display volume as dBV  setupDialog2FL Studio installatie map FL Studio installation directory setupDialog8Frames: %1 Vertraging: %2 msFrames: %1 Latency: %2 ms setupDialog*Algemene instellingenGeneral settings setupDialogHier kun je je audio-interface instellen. Afhankelijk van de configuratie van je systeem gedurende de compilering, kun je kiezen tussen ALSA, OSS en meer. Hieronder vind je een gedeelte waar je de instellingen van de betreffende interface kunt wijzigen.Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. setupDialogHier kun je je audio-interface instellen. Afhankelijk van de configuratie van je systeem gedurende de compilering, kun je kiezen tussen ALSA, JACK, OSS en meer. Hieronder vind je een gedeelte waar je de instellingen van de betreffende interface kunt wijzigen.Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. setupDialogHHier kun je de interne buffer-grootte instellen welke door LMMS gebruikt zal worden. Lagere waarden zorgen voor een lagere latency (vertraging) maar kunnen de geluidskwaliteit en de performance wel negatief beinvloeden. Dit geld zeker voor oudere computers en systemen zonder realtime-kernel.Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. setupDialogLMMS werkmapLMMS working directory setupDialogMIDI INTERFACEMIDI INTERFACE setupDialog"MIDI Instellingen MIDI settings setupDialog4VERSCHILLENDE INSTELLINGENMISC setupDialogOKOK setupDialog^Toetsen op kanaal-piano alleen manueel bedienen)Only press keys on channel-piano manually setupDialog0Performance instellingenPerformance settings setupDialogHoud er rekening mee dat je LMMS opnieuw moet opstarten om sommige instellingen te activeren!GPlease note that most changes won't take effect until you restart LMMS! setupDialogBTerugzetten naar standaardwaardenReset to default-value setupDialogLMMS herstarten Restart LMMS setupDialogLMMS instellen Setup LMMS setupDialog6UI effecten vs. performanceUI effects vs. performance setupDialogVST-Plugin mapVST-plugin directory setupDialogFiltersoort Filter type sidInstrument VolumeVolume sidInstrumentAttack:Attack:sidInstrumentView Decay:Decay:sidInstrumentViewRelease:Release:sidInstrumentViewSustain:Sustain:sidInstrumentViewSynchroonSyncsidInstrumentViewVolume:Volume:sidInstrumentView$Bestand importeren Import filesong"Master toonhoogte Master pitchsongMaster volume Master volumesong0Project NIET opgeslagen.Project NOT saved.song$Project opgeslagen Project savedsongXSelecteer bestand voor exporteren project...!Select file for project-export...song TempoTemposong@Het project %1 is nu opgeslagen.The project %1 is now saved.songHHet project %1 werd niet opgeslagen!The project %1 was not saved!songnaamloosuntitledsong.Beat/Bassline toevoegenAdd beat/bassline songEditor,Sample spoor toevoegenAdd sample-track songEditor&Klik hier, als je de gehele song wil afspelen. Het afspelen start bij de song-positie-marker (groen). Je kunt ook verplaatsen tijdens het afspelen.Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. songEditor Klik hier, wanneer je het afspelen van de song wilt stoppen. De song-position-marker zal weer naar het begin van je song worden gezet.uClick here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. songEditor.Kan bestand niet openenCould not open file songEditor4Kan bestand niet schrijvenCould not write file songEditor~Kan bestand %1 niet schrijven. Je hebt waarschijnlijk niet de bevoegdheid om dit bestand te schrijven. Zorg ervoor dat je schrijf-bevoegdheid hebt voor deze bestanden en probeer het opnieuw.Could not write file %1. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. songEditorTeken modus Draw mode songEditorPBewerk modus (selecteren en verplaatsen)Edit mode (select and move) songEditor$High quality modusHigh quality mode songEditor"Master toonhoogte Master pitch songEditorMaster volume Master volume songEditor,Song afspelen (Spatie)Play song (Space) songEditorSong-Editor Song-Editor songEditor6Stop afspelen song (Spatie)Stop song (Space) songEditorTEMPO/BPM TEMPO/BPM songEditor TempoTempo songEditor(Waarde: %1 semitonenValue: %1 semitones songEditorWaarde: %1% Value: %1% songEditor"master toonhoogte master pitch songEditormaster volume master volume songEditorafspeelsnelheid tempo of song songEditor6Na stoppen terug naar beginAfter stopping go back to begintimeLinepNa stoppen terug naar positie waar afspelen werd gestart?After stopping go back to position at which playing was startedtimeLine:Na stoppen op positie blijvenAfter stopping keep positiontimeLineJAutomatisch scrollen in-/uitschakelenEnable/disable auto-scrollingtimeLine8Loop-punten in-/uitschakelenEnable/disable loop-pointstimeLineTipHinttimeLinerDruk <Ctrl> om magnetische loop-punten uit te schakelen..-Press to disable magnetic loop-points.timeLineAfbrekenCanceltrackContainerNKan geen filter vinden voor het te importeren bestand %1. Je zult dit bestand met behulp van andere software moeten converteren naar een door LMMS ondersteund formaat.Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software.trackContainer6Kan bestand niet importerenCouldn't import filetrackContainer.Kan bestand niet openenCouldn't open filetrackContainer Kan bestand %1 niet openen voor het schrijven. Zorg ervoor dat je schrijf-bevoegdheid hebt voor deze bestanden en mapen en probeer het opnieuw!Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again!trackContainer2Importeren FLP-bestand...Importing FLP-file...trackContainer4Importeren MIDI-bestand...Importing MIDI-file...trackContainer Project laden...Loading project...trackContainerWachten aub...Please wait...trackContainer.%1:%2 (%3:%4 tot %5:%6)%1:%2 (%3:%4 to %5:%6)trackContentObjectViewKopierenCopytrackContentObjectViewHuidige lengteCurrent lengthtrackContentObjectViewHuidige positieCurrent positiontrackContentObjectViewKnippenCuttrackContentObjectView@Verwijderen (middelste muisknop)Delete (middle mousebutton)trackContentObjectViewTipHinttrackContentObjectViewNDempen/geluid aan (<Ctrl> + middelklik)#Mute/unmute ( + middle click)trackContentObjectViewPlakkenPastetrackContentObjectViewTDruk <Ctrl> voor vrije grootteverandering.Press for free resizing.trackContentObjectView*Acties voor dit spoorActions for this tracktrackOperationsWidget Dit spoor klonenClone this tracktrackOperationsWidget DempenMutetrackOperationsWidgetDruk <Ctrl> tijdens klikken op move-grip om een nieuwe drag'n'drop-actie te starten.KPress while clicking on move-grip to begin a new drag'n'drop-action.trackOperationsWidget*Dit spoor verwijderenRemove this tracktrackOperationsWidget0VST-plugin laden misluktFailed loading VST-pluginvestigeInstrumentPlugin ladenLoading pluginvestigeInstrumentPWacht aub, de VST-plugin word geladen...'Please wait while loading VST-plugin...vestigeInstrumentDDe VST-plugin %1 kan om onbekende reden niet worden geladen. Als het wel werkt met andere VST-software onder Linux, neem dan contact op met een LMMS-ontwikkelaar!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer!vestigeInstrument &Help&Help vibedViewhKlik hier, om een golfvorm te activeren/deactiveren.&Click here to enable/disable waveform. vibedViewTKlik hier, om de golfvorm te normaliseren.!Click here to normalize waveform. vibedViewOntstemming:Detune: vibedView$Golfvorm activerenEnable waveform vibedViewRuigheid: Fuzziness: vibedView2Impuls of begininstellingImpulse or initial state vibedViewLengte:Length: vibedViewNormaliseren Normalize vibedViewBalans:Pan: vibedView Aanslag-positie:Pick position: vibedViewPickup positie:Pickup position: vibedViewZaagtand golfSaw wave vibedViewSinus golf Sine wave vibedViewUitstrijkerSmooth vibedViewVierkants golf Square wave vibedViewHardheid snaar:String stiffness: vibedView@De 'Imp'-knop legt vast of de golfvorm in de grafiek word behandeld als een impulsgever op de snaar tijdens aanslaan, of als de begininstelling van een snaar. The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. vibedViewDe 'P' knop stelt de aanslagpositie in van de snaar aangeven. Hoe lager de waarde hoe dichter er bij de brug word aangeslagen.The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. vibedView$De 'PU' knop stelt de positie in waar de trilling van de snaar word opgepikt. Hoe lager de waarde, hoe dichter de pickup bij de brug geplaatst is.The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. vibedViewVDe 'S' knop stelt de stijfheid in van de geselecteerde snaar. De stijfheid van de snaar bepaalt hoe lang de snaar uittrilt. Hoe lager de waarde, hoe langer de snaar trilt.The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. vibedViewvDe 'V' knop stelt het volume in van de geselecteerde snaar.4The 'V' knob sets the volume of the selected string. vibedViewzDe ontstemknop verandert de toonhoogte van de aangelsgen snaar. Instellingen lager dan 0 zullen het geluid vlakker laten klinken, terwijl het geluid met waarden boven 0 scherper zal worden.The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. vibedView0De lengteknop stelt de lengte van de geselecteerde snaar in. Langere snaren klinken langer en helderder, maar dit vergt wel weer meer van de processor. The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. vibedViewlDe oktaaf-kiezer word gebruikt voor het kiezen met welke harmonische van de noot de snaar zal klinken. Bij '-2' betekent dit bv. dat de snaar 2 oktaven onder de grondtoon ('F') komt.#The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. vibedViewDe Balans knop bepaalt de plek van het geluid in het stereo-beeld. PThe Pan knob determines the location of the selected string in the stereo field. vibedViewfDe Slap knop voegt ruigheid toe aan de geselecteerde snaar en is het meest merkbaar in de attack-fase. Tevens kan dit gebruikt worden om de snaar meer 'metallic' te laten klinken.The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. vibedViewDe snaar-kiezer word gebruikt voor het kiezen van de snar welke bewerkt word. Een Vibed instrument kan tot 9 individueel trillende snaren bevatten. De LED in de rechter benedenhoek van de golfvorm bewerker geeft aan of de geselecteerde snaar actief is.The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. vibedViewzDe golfvorm bewerker levert controle over de aanvangstoestand of impuls welke word gebruikt om een snaar te laten trillen. De knoppen aan de rechterkant van de grafiek geven aan welke golfvorm geselecteerd is. De '?' knop laadt een golfvorm-bestand-alleen de eerste 128 samples worden geladen. De golfvorm kan ook in de grafiek getekend worden. De 'S' knop zal de golfvorm uitstrijken (egaler maken). De 'N; knop zal de golfvorm normaliseren.The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. vibedViewDriehoeks golf Triangle wave vibedView8Gebruiker gedefinieerde golfUser defined wave vibedViewVibed modeleert tot 9 individuele snaren. De 'Snaren' kiezer maakt het mogelijk om de geselecteerde snaar te bewerken. Met 'Imp' kiezer geef je aan of de grafiek de impuls of de beginwaarde weergeeft. Met de 'Octave' kiezer selecteer je de harmonischen waar de snaar mee trilt. De grafiek geeft je de mogelijkheid de beginwaarde en de impuls te beheren om de snaar in beweging te zetten. De 'V' knop stelt het volume in. De 'S' knop stelt de stijfheid in. De 'P' knop stelt de aanslagpositie in. De 'PU' knop stelt de positie van de pichup in. 'Pan' (balans) en 'Detune' (ontstemming) behoeven geen uitleg. De 'Slap' knop voegt wat ruigheid toe aan het geluid van de snaar. De lengteknop stelt de lengte van de snaar in. De LED in de rechter benedenhoek van de golfvorm bewerker geeft aan of de snaar actief is in het huidige instrument.hVibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. vibedViewVolume:Volume: vibedViewWitte ruisWhite noise wave vibedView|Klik om de master-output visuallisatie in- of uit te schakelen6click to enable/disable visualization of master-outputvisualizationWidgetlmms-1.0.0+bzr2569/data/locale/nl.ts0000644000000000000000000073265112307165142015075 0ustar 00000000000000 AboutDialog About LMMS LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) About Over LMMS - easy music production for everyone Authors Translation Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! License Copyright (c) 2004-2014, LMMS developers <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE APPARAAT CHANNELS KANALEN AudioFileProcessorView Open other sample Andere sample openen Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Reverse sample Sample omdraaien If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Met deze knop word de sample achterste voren gespeeld. Dit is goed bruikbaar voor leuke effecten, zoals een 'reversed crash'. Loop sample at start- and end-point Sample herhalen tussen start- en eindpunt Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Amplify: Versterking: With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Startpoint: Startpunt: With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Endpoint: Eindpunt: With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. JACK server down The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack::setupWidget CLIENT-NAME CLIENT-NAAM CHANNELS KANALEN AudioOss::setupWidget DEVICE APPARAAT CHANNELS KANALEN AudioPortAudio::setupWidget BACKEND DEVICE APPARAAT AudioPulseAudio::setupWidget DEVICE APPARAAT CHANNELS KANALEN AudioSdl::setupWidget DEVICE APPARAAT AutomatableModel &Reset (%1%2) &Herstellen (%1%2) &Copy value (%1%2) Waarde &kopieren (%1%2) &Paste value (%1%2) Waarde &plakken (%1%2) Edit song-global automation Connected to %1 Connected to controller Edit connection... Remove connection Connect to controller... Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) Huidige pattern afspelen/pauseren (Spatie) Stop playing of current pattern (Space) Afspelen huidige pattern stoppen (Spatie) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Click here if you want to stop playing of the current pattern. Draw mode (Shift+D) Teken modus (Shift+D) Erase mode (Shift+E) Wis modus (Shift+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. Cut selected values (Ctrl+X) Knip geselecteerde waarden (Ctrl+X) Copy selected values (Ctrl+C) Kopieer geselecteerde waarden (Ctrl+C) Paste values from clipboard (Ctrl+V) Plak waarden van klembord (Ctrl+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the values from the clipboard will be pasted at the first visible measure. Automation Editor - no pattern Automation-Editor - geen Pattern Automation Editor - %1 Automation-Editor - %1 Please open an automation pattern with the context menu of a control! Open aub een automation pattern met het context menu van een controller! Values copied Waarden gekopieerd All selected values were copied to the clipboard. Alle geselecteerde waarden zijn naar het klembord gekopieerd. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> AutomationPatternView double-click to open this pattern in automation editor Open in Automation editor Clear Reset name Naam herstellen Change name %1 Connections Disconnect "%1" AutomationTrack Automation track Controller Controller %1 ControllerConnectionDialog Connection Settings MIDI CONTROLLER Input channel Ingang kanaal CHANNEL KANAAL Input controller CONTROLLER Auto Detect MIDI-devices to receive MIDI-events from MIDI-apparaat voor ontvangen van MIDI-events USER CONTROLLER MAPPING FUNCTION OK OK Cancel LMMS Cycle Detected. ControllerRackView Controller Rack Add Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls Controllers are able to automate the value of a knob, slider, and other controls. Rename controller Enter the new name for this controller &Remove this plugin &Help &Help Effect Effect enabled Wet/Dry mix Gate Decay EffectChain Effects enabled EffectRackView EFFECTS CHAIN Add effect EffectSelectDialog Add effect Plugin description EffectView Toggles the effect on or off. On/Off W/D Wet Level: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. DECAY Time: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. GATE GATE Gate: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. Controls Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. Move &up Move &down &Remove this plugin &Help &Help EnvelopeAndLfoParameters Predelay Attack Hold Decay Sustain Release Modulation LFO Predelay LFO Attack LFO speed LFO Modulation LFO Wave Shape Freq x 100 Freq x 100 Modulate Env-Amount Moduleer Env-Intensiteit EnvelopeAndLfoView DEL DEL Predelay: Predelay: Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. Gebruik deze knop om de attack-tijd van de huidige envelope in te stellen. Dit is de tijd die nodig is totdat de envelope zijn maximale waarde heeft bereikt. ATT ATT Attack: Attack: Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. Gebruik deze knop om de attack-tijd van de huidige envelope in te stellen. Dit is de tijd welke de envelope nodig heeft om aan zijn maximale waarde te komen. Kies een korte tijd voor bv. piano's en een lange tijd voor bv. strijkers. HOLD HOLD Hold: Hold: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. Gebruik deze knop voor het instellen van de hold-tijd van de huidige LFO. Hoe groter de waarde, hoe groter het effect van de LFO op zijn doel heeft (bv. volume, cutoff-frequentie). DEC DEC Decay: Decay: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. Gebruik deze knop om de decay-tijd van de huidige envelope in te stellen. Dit is de tijd die nodig is om van het maximale attack-niveau naar het sustain-niveau te gaan. Voor bv. piano moet je een lage waarde kiezen. SUST SUST Sustain: Sustain: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. Gebruik deze knop om het sustain-niveau van de huidige envelope in te stellen. Dit is de waarde van de envelope welke word aangehouden zolang de noot aanhoud. REL REL Release: Release: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. Gebruik deze knop om de release-tijd van de huidige envelope in te stellen. Dit is de tijd die de envelope nodig heeft om van sustain-niveau weer naar nul te gaan. Kies een grote waarde voor bijvoorbeeld strijkers. AMT AMT Modulation amount: Modulatie-intensiteit: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. Gebruik deze knop om de modulatiewaarde voor de huidige envelope in te stellen. Hoe groter de waarde, hoe meer het gewenste doel (bv. volume of cutoff-frequentie) word beinvloed door de envelope. LFO predelay: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. Gebruik deze knop om de predelay-tijd van de huidige LFO in te stellen. Hoe groter de waarde, hoe langer het duurt voordat de LFO begint te oscilleren. LFO- attack: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. Gebruik deze knop om de attack-tijd van de huidige LFO in te stellen. Hoe groter de waarde, hoe langer het duurt voordat de LFO aan zijn maximaal ingestelde waarde komt. SPD SPD LFO speed: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. Gebruik deze knop voor het instellen van de LFO-snelheid. Hoe groter de waarde, hoe sneller de LFO oscilleerd en hoe sneller het effect is. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. Gebruik deze knop voor het instellen van de modulatiewaarde ven de huidige LFO. Hoe groter de waarde, hoe groter het effect van de LFO op zijn doel heeft (bv. volume, cutoff-frequentie). Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave for current. Click here for a square-wave. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. FREQ x 100 FREQ x 100 Click here if the frequency of this LFO should be multiplied by 100. multiply LFO-frequency by 100 MODULATE ENV-AMOUNT MODULEER-ENV-INTENS Click here to make the envelope-amount controlled by this LFO. Klik hier, om de envelope-waarde door de LFO te laten regelen. control envelope-amount by this LFO envelope-waarde door LFO regelen ms/LFO: ms/LFO: Hint Tip Drag a sample from somewhere and drop it in this window. Sleep een willekeurige sample en plaats hem in dit venster. ExportProjectDialog Export project Output File format: Samplerate: 44100 Hz 48000 Hz 88200 Hz 96000 Hz 192000 Hz Bitrate: 64 KBit/s 128 KBit/s 160 KBit/s 192 KBit/s 256 KBit/s 320 KBit/s Depth: 16 Bit Integer 32 Bit Float Please note that not all of the parameters above apply for all file formats. Quality settings Interpolation: Zero Order Hold Sinc Fastest Sinc Medium (recommended) Sinc Best (very slow!) Oversampling (use with care!): 1x (None) 2x 4x 8x Sample-exact controllers Alias-free oscillators Start Cancel Export as loop (remove end silence) FxMixer Master FX %1 FxMixerView Rename FX channel Enter the new name for this FX channel FX-Mixer FX Fader %1 Mute Dempen Mute this FX channel InstrumentFunctionArpeggio Arpeggio Arpeggio type Arpeggio soort Arpeggio range Arpeggio bereik Arpeggio time Arpeggio tijd Arpeggio gate Arpeggio gate Arpeggio direction Arpeggio richting Arpeggio mode Arpeggio modus Up Down Up and down Random Free Vrij Sort Gesorteerd Sync Synchroon InstrumentFunctionArpeggioView ARPEGGIO ARPEGGIO An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. RANGE BEREIK Arpeggio range: Arpeggio bereik: octave(s) oktave(n) Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. TIME TIJD Arpeggio time: Arpeggio tijd: ms ms Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. Gebruik deze knop om de arpeggio-tijd in miliseconden in te stellen. De arpeggio-tijd geeft aan hoe lang elke noot binnen de arpeggio gespeeld moet worden. GATE GATE Arpeggio gate: Arpeggio gate: % % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Chord: Direction: Richting: Mode: Modus: InstrumentFunctionNoteStacking octave oktaaf Major Majeur Majb5 Majb5 minor mineur minb5 minb5 sus2 sus2 sus4 sus4 aug aug augsus4 augsus4 tri tri 6 6 6sus4 6sus4 6add9 madd9 m6 m6 m6add9 m6add9 7 7 7sus4 7sus4 7#5 7#5 7b5 7b5 7#9 7#9 7b9 7b9 7#5#9 7#5#9 7#5b9 7#5b9 7b5b9 7b5b9 7add11 7add11 7add13 7add13 7#11 7#11 Maj7 Maj7 Maj7b5 Maj7b5 Maj7#5 Maj7#5 Maj7#11 Maj7#11 Maj7add13 Maj7add13 m7 m7 m7b5 m7b5 m7b9 m7b9 m7add11 m7add11 m7add13 m7add13 m-Maj7 m-Maj7 m-Maj7add11 m-Maj7add11 m-Maj7add13 m-Maj7add13 9 9 9sus4 9sus4 add9 add9 9#5 9#5 9b5 9b5 9#11 9#11 9b13 9b13 Maj9 Maj9 Maj9sus4 Maj9sus4 Maj9#5 Maj9#5 Maj9#11 Maj9#11 m9 m9 madd9 madd9 m9b5 m9b5 m9-Maj7 m9-Maj7 11 11 11b9 11b9 Maj11 Maj11 m11 m11 m-Maj11 m-Maj11 13 13 13#9 13#9 13b9 13b9 13b5b9 13b5b9 Maj13 Maj13 m13 m13 m-Maj13 m-Maj13 Harmonic minor Harmonisch mineur Melodic minor Melodisch mineur Whole tone Hele noot Diminished Vermindert Major pentatonic Pentatonisch majeur Minor pentatonic Pentatonisch mineur Jap in sen Major bebop Majeur bebop Dominant bebop Dominante Bebop Blues Blues Arabic Arabisch Enigmatic Enigmatisch Neopolitan Neopolitanisch Neopolitan minor Neopolitanisches mineur Hungarian minor Zigeunermineur Dorian Dorian Phrygolydian Phrygisch Lydian Lydisch Mixolydian Mixolydisch Aeolian Aeolian Locrian Locrisch Chords Chord type Akkoord soort Chord range Akkoord bereik Minor InstrumentFunctionNoteStackingView RANGE BEREIK Chord range: Akkoord bereik: octave(s) oktave(n) Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT CHANNEL KANAAL VELOCITY ENABLE MIDI OUTPUT PROGRAM MIDI devices to receive MIDI events from MIDI devices to send MIDI events to NOTE InstrumentSoundShaping VOLUME Volume Volume CUTOFF CUTOFF Cutoff frequency RESO Resonance Envelopes/LFOs Filter type Filtersoort Q/Resonance Q/Resonantie LowPass LowPass HiPass HiPass BandPass csg Bandpass csg BandPass czpg Bandpass czpg Notch Notch Allpass Allpass Moog Moog 2x LowPass 2x LowPass RC LowPass 12dB RC BandPass 12dB RC HighPass 12dB RC LowPass 24dB RC BandPass 24dB RC HighPass 24dB Vocal Formant Filter InstrumentSoundShapingView TARGET DOEL These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! FILTER FILTER Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. Hier kun je een ingebouwd filter selecteren, welke je in dit kanaal kunt gebruiken. Filters zijn zeer belangrijk om het karakter van een geluid te veranderen. Hz Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... RESO Resonance: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. FREQ cutoff frequency: InstrumentTrack unnamed_track Volume Volume Panning Pitch FX channel FX-Kanaal Default preset With this knob you can set the volume of the opened channel. Met deze knop kun je het volume van het geopende kanaal instellen. Base note Grandtoon Pitch range InstrumentTrackView Volume Volume Volume: Volume: VOL Panning Panning: PAN MIDI MIDI Input Output InstrumentTrackWindow GENERAL SETTINGS Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. Instrument volume Volume: Volume: VOL Panning Panning: PAN Pitch Pitch: cents PITCH FX channel FX-Kanaal ENV/LFO FUNC FX MIDI MIDI Save preset XML preset file (*.xpf) PLUGIN PLUGIN Save current channel settings in a preset-file Pitch range (semitones) RANGE BEREIK LadspaControl Link channels LadspaControlDialog Link Channels Channel LadspaControlView Link channels Value: Sorry, no help available. LadspaEffect Effect Unknown LADSPA plugin %1 requested. LfoController LFO Controller Base value Oscillator speed Oscillator amount Oscillator phase Oscillator waveform Frequency Multiplier LfoControllerDialog LFO LFO Controller BASE Base amount: todo SPD SPD LFO-speed: LFO-snelheid: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. AMT AMT Modulation amount: Modulatie-intensiteit: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. PHS Phase offset: degrees graden With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for a a moog saw-wave. Click here for an exponential wave. Click here for white-noise. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. Could not save config-file Kan config-bestand opslaan Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. &Project &Project &New &Nieuw &Open... &Openen... Recently opened projects &Save Op&slaan Save &As... Opslaan &als... Import... E&xport... &Quit &Afsluiten &Edit &Bewerken Settings &Tools &Help &Help Online help Help Help What's this? Wat is dit? About Over Create new project Nieuw project aanmaken Create new project from template Open existing project Open bestaand project Recently opened project Save current project Sla huidig project op Export current project Exporteer huidig project Show/hide Song-Editor Toon/Verberg Song-Bewerker By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. Show/hide Beat+Bassline Editor Toon/Verberg Beat+Bassline Bewerker By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. Show/hide Piano-Roll Toon/Verberg Piano-Roll Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. Show/hide Automation Editor Toon/verberg Automation Editor Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Show/hide FX Mixer Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Show/hide project notes Toon/Verberg Project notities Click here to show or hide the project notes window. In this window you can put down your project notes. Show/hide controller rack Untitled LMMS %1 LMMS %1 Project not saved Project niet opgeslagen The current project was modified since last saving. Do you want to save it now? Het huidige project is gewijzigd sinds de laatste keer dat het is opgeslagen. Wil je het nu opslaan? Open project Open project Save project Sla project op Help not available Hulp niet beschikbaar Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. My projects My samples My presets My home My computer Root directory Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 Project recovery It looks like the last session did not end properly. Do you want to recover the project of this session? Configuration file Error while parsing configuration file at line %1:%2: %3 MeterDialog Meter Numerator Meter Denominator TIME SIG MeterModel Numerator Denominator MidiAlsaRaw::setupWidget DEVICE APPARAAT MidiAlsaSeq::setupWidget DEVICE APPARAAT MidiController MIDI Controller unnamed_midi_controller MidiImport Setup incomplete You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiOss::setupWidget DEVICE APPARAAT MidiPort Input channel Ingang kanaal Output channel Uitgang kanaal Input controller Output controller Fixed input velocity Fixed output velocity Output MIDI program Receive MIDI-events Ontvangen MIDI-events Send MIDI-events verzenden MIDI-events Fixed output note OscillatorObject Osc %1 volume Oscillator %1 Volume Osc %1 panning Oscillator %1 Balans Osc %1 coarse detuning Osc %1 grove ontstemming Osc %1 fine detuning left Oscillator %1 Fijn ontstemming links Osc %1 fine detuning right Oscillator %1 Fijn ontstemming rechts Osc %1 phase-offset Oscillator %1 fase-verschuiving Osc %1 stereo phase-detuning Oscillator %1 stereo fase-veschuiving Osc %1 wave shape Oscillator %1 Golfvorm Modulation type %1 Osc %1 waveform Oscillator %1 Golfvorm PatmanView Open other patch Click here to open another patch-file. Loop and Tune settings are not reset. Loop Loop mode Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. Tune Tune mode Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. No file selected Open patch file Patch-Files (*.pat) PeakController Peak Controller Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK LFO Controller PeakControllerEffectControlDialog BASE Base amount: Modulation amount: Modulatie-intensiteit: Attack: Attack: Release: Release: AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Modulation amount Modulatie-intensiteit Mute output Attack Release Abs Value Amount Multiplicator PianoView Base note Grandtoon Plugin Plugin not found Plugin niet gevonden The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Error while loading plugin Fout bij laden Plugin Failed to load plugin "%1"! ProjectRenderer WAV-File (*.wav) Compressed OGG-File (*.ogg) Gecomprimeerd OGG-Bestand (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: Maker: Copyright: Requires Real Time: Yes No Real Time Capable: In Place Broken: Channels In: Channels Out: File: SampleBuffer Open audio file Audio-bestand openen All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) Wave-Bestanden (*.wav) OGG-Files (*.ogg) OGG-Bestanden (*.ogg) DrumSynth-Files (*.ds) FLAC-Files (*.flac) FLAC-Bestanden (*.flac) SPEEX-Files (*.spx) MP3-Files (*.mp3) VOC-Files (*.voc) VOC-Bestanden (*.voc) AIFF-Files (*.aif *.aiff) AIFF-Bestanden (*.aif *.aiff) AU-Files (*.au) AU-Bestanden (*.au) RAW-Files (*.raw) RAW-Bestanden (*.raw) SampleTCOView double-click to select sample dubbel-klik om een sample te selecteren Delete (middle mousebutton) Verwijderen (middelste muisknop) Cut Knippen Copy Kopieren Paste Plakken Mute/unmute (<Ctrl> + middle click) Dempen/geluid aan (<Ctrl> + middelklik) Set/clear record SampleTrack Sample track Sample spoor Volume Volume SampleTrackView Track volume Channel volume: VOL TempoSyncKnob Tempo Sync Tempo synchronisatie No Sync Geen synchronisatie Eight beats Acht beats Whole note Hele noot Half note Halve noot Quarter note Kwart noot 8th note Achtste noot 16th note 16e noot 32nd note 32e noot Custom... &Help &Help Custom Synced to Eight Beats Met acht beats gesynchroniseerd Synced to Whole Note Met hele noot gesynchroniseerd Synced to Half Note Met halve noot gesynchroniseerd Synced to Quarter Note Met kwart noot gesynchroniseerd Synced to 8th Note Met achtste noot gesynchroniseerd Synced to 16th Note Met 16e noot gesynchroniseerd Synced to 32nd Note Met 32e noot gesynchroniseerd TimeDisplayWidget click to change time units TrackContainer Couldn't import file Kan bestand niet importeren Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. Kan geen filter vinden voor het te importeren bestand %1. Je zult dit bestand met behulp van andere software moeten converteren naar een door LMMS ondersteund formaat. Couldn't open file Kan bestand niet openen Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! Kan bestand %1 niet openen voor het schrijven. Zorg ervoor dat je schrijf-bevoegdheid hebt voor deze bestanden en mapen en probeer het opnieuw! Loading project... Project laden... Cancel Please wait... Wachten aub... Importing MIDI-file... Importeren MIDI-bestand... Importing FLP-file... Importeren FLP-bestand... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 Mix output of oscillator 1 & 2 Synchronize oscillator 1 with oscillator 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Use phase modulation for modulating oscillator 3 with oscillator 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 Mix output of oscillator 2 & 3 Synchronize oscillator 2 with oscillator 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Osc %1 volume: Oscillator %1 Volume: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Met deze knop stel je het volume van oscillator %1 in. Als deze op 0 staat is de oscillator uit. Anders hoor je de oscillator zo hard als jij hem wil. Osc %1 panning: Oscillator %1 Balans: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Met deze knop stel je de balans in voor oscillator %1. Een waarde van -100 betekent 100% links en een waarde van 100 verplaatst het geluid volledig naar het rechter kanaal. Osc %1 coarse detuning: Osc %1 grove ontstemming: semitones semitonen With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Met deze knop stel je de grove ontstemming van oscillator %1 in. Je kunt de oscillator 12 seminote (1oktaaf) naar boven of beneden ontstemmen.Dit is bruikbaar voor het maken van geluiden met een akkoord. Osc %1 fine detuning left: Oscillator %1 Fijn ontstemming links: cents With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Met deze knop stel je de fijne ontstemming van oscillator %1 in voor het linker kanaal. Je kunt fijn-ontstemmen met een bereik van -100 cents en +100 cents. Dit is bruikbaar voor het maken van 'vette' geluiden. Osc %1 fine detuning right: Oscillator %1 Fijn ontstemming rechts: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Met deze knop stel je de fijne ontstemming van oscillator %1 in voor het rechter kanaal. Je kunt fijn-ontstemmen met een bereik van -100 cents en +100 cents. Dit is bruikbaar voor het maken van 'vette' geluiden. Osc %1 phase-offset: Oscillator %1 fase-verschuiving: degrees graden With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Met deze knop stel je de fase-verschuiving van oscillator %1 in. Dit betekend dat je het punt in de oscillatie waar de oscillator begint te oscilleren kunt verplaatsen. Osc %1 stereo phase-detuning: Oscillator %1 stereo fase-veschuiving: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use a moog-like saw-wave for current oscillator. Use an exponential wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin Open ander VST-plugin Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Klik hier, wanner je een andere VST-plugin wilt openen. Nadat je op deze knop gedrukt hebt zal er een bestand-openen-dialoog openen en kun je je bestand selecteren. Show/hide GUI Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Klik hier, wanneer je de Grafische Gebruiker Interface (GUI) van je VST-plugin wilt tonen/verbergen. Turn off all notes Alle noten verwijderen Open VST-plugin Open VST-plugin DLL-files (*.dll) DLL-Bestanden (*.dll) EXE-files (*.exe) EXE-Bestanden (*.exe) No VST-plugin loaded Geen VST-plugin geladen Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Save preset Click here, if you want to save current VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Preset by - VST plugin control VstEffectControlDialog Show/hide Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Save preset Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin Plugin laden Please wait while loading VST-plugin... Wacht aub, de VST-plugin word geladen... Failed loading VST-plugin VST-plugin laden mislukt The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! De VST-plugin %1 kan om onbekende reden niet worden geladen. Als het wel werkt met andere VST-software onder Linux, neem dan contact op met een LMMS-ontwikkelaar! Open Preset Vst Plugin Preset (*.fxp *.fxb) : default " ' Save Preset .fxp .FXP .FXB .fxb ZynAddSubFxInstrument Portamento Filter Frequency Filter Resonance Bandwidth FM Gain Resonance Center Frequency Resonance Bandwidth Forward MIDI Control Change Events ZynAddSubFxView Show GUI Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Portamento: PORT Filter Frequency: FREQ Filter Resonance: RES Bandwidth: BW FM Gain: FM GAIN Resonance center frequency: RES CF Resonance bandwidth: RES BW Forward MIDI Control Changes audioFileProcessor Amplify Versterking Start of sample Begin van de sample End of sample Eind van de sample Reverse sample Sample omdraaien Loop Stutter bassBoosterControlDialog FREQ Frequency: GAIN Gain: RATIO Ratio: bassBoosterControls Frequency Gain Ratio bbEditor Play/pause current beat/bassline (Space) Huidige beat/bassline afspelen/pauseren (Spatie) Beat+Bassline Editor Beat+Bassline Editor Add beat/bassline Beat/Bassline toevoegen Add automation-track Stop playback of current beat/bassline (Space) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. Click here to stop playing of current beat/bassline. Remove steps Steps verwijderen Add steps Steps toevoegen bbTCOView Open in Beat+Bassline-Editor In Beat+Bassline-Editor openen Reset name Naam herstellen Change name Change color Kleur veranderen bbTrack Beat/Bassline %1 Beat/Bassline %1 Clone of %1 bitInvader Samplelength Samplelengte bitInvaderView Sample Length Sample Lengte Sine wave Sinus golf Triangle wave Driehoeks golf Saw wave Zaagtand golf Square wave Vierkants golf White noise wave Witte ruis User defined wave Gebruiker gedefinieerde golf Smooth Uitstrijker Click here to smooth waveform. Interpolation Interpolatie Normalize Normaliseren Draw your own waveform here by dragging your mouse on this graph. Click for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for white-noise. Click here for a user-defined shape. exportProjectDialog Could not open file Kan bestand niet openen Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! Error Error while determining file-encoder device. Please try to choose a different output format. Rendering: %1% Export project to %1 Exporteer project naar %1 fader Please enter a new value between %1 and %2: Voer aub. een waarde in tussen %1 en %2 in: fileBrowser Browser fileBrowserTreeWidget Send to active instrument-track Open in new instrument-track/Song-Editor Open in new instrument-track/B+B Editor Loading sample Please wait, loading sample for preview... --- Factory files --- graphModel Graph kickerInstrument Start frequency End frequency Decay Distortion Gain kickerInstrumentView Start frequency: End frequency: Decay: Decay: Distortion: Gain: knob &Help &Help Please enter a new value between %1 and %2: Voer aub. een waarde in tussen %1 en %2 in: Please enter a new value between -96.0 dBV and 6.0 dBV: Voer aub. een waarde tussen -96.0 dBV en 6.0 dBV in: ladspaBrowserView Available Effects Unavailable Effects Instruments Analysis Tools Don't know This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. Type: Soort: ladspaDescription Plugins Description ladspaPortDialog Ports Name Rate Direction Type Min < Default < Max Logarithmic SR Dependent Audio Control Input Output Toggled Integer Float Yes lb302Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb302SynthView Cutoff Freq: Resonance: Env Mod: Decay: Decay: 303-es-que, 24dB/octave, 3 pole filter Slide Decay: DIST: Saw wave Zaagtand golf Click here for a saw-wave. Triangle wave Driehoeks golf Click here for a triangle-wave. Square wave Vierkants golf Click here for a square-wave. Rounded square wave Click here for a square-wave with a rounded end. Moog wave Click here for a moog-like wave. Sine wave Sinus golf Click for a sine-wave. White noise wave Witte ruis Click here for an exponential wave. Click here for white-noise. lb303Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb303SynthView Cutoff Freq: CUT Resonance: RES Env Mod: ENV MOD Decay: Decay: DEC DEC 303-es-que, 24dB/octave, 3 pole filter Slide Decay: SLIDE DIST: DIST WAVE: WAVE malletsInstrument Hardness Position Vibrato Gain Vibrato Freq Stick Mix Modulator Crossfade LFO Speed LFO Depth ADSR Pressure Motion Speed Bowed Spread Marimba Vibraphone Agogo Wood1 Reso Wood2 Beats Two Fixed Clump Tubular Bells Uniform Bar Tuned Bar Glass Tibetan Bowl Missing files Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! malletsInstrumentView Instrument Spread Spread: Hardness Hardness: Position Position: Vib Gain Vib Gain: Vib Freq Vib Freq: Stick Mix Stick Mix: Modulator Modulator: Crossfade Crossfade: LFO Speed LFO Speed: LFO Depth LFO Depth: ADSR ADSR: Bowed Pressure Pressure: Motion Motion: Speed Speed: Vibrato Vibrato: manageVSTEffectView - VST parameter control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView - VST plugin control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help &Help opl2instrument Patch Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Volume Volume organicInstrumentView Distortion: Volume: Volume: Randomise Willekeurig Osc %1 waveform: Oscillator %1 Golfvorm: Osc %1 volume: Oscillator %1 Volume: Osc %1 panning: Oscillator %1 Balans: Osc %1 fine detuning left: Oscillator %1 Fijn ontstemming links: cents papuInstrument Sweep time Sweep direction Sweep RtShift amount Wave Pattern Duty Channel 1 volume Volume sweep direction Length of each step in sweep Channel 2 volume Channel 3 volume Channel 4 volume Right Output level Left Output level Channel 1 to SO2 (Left) Channel 2 to SO2 (Left) Channel 3 to SO2 (Left) Channel 4 to SO2 (Left) Channel 1 to SO1 (Right) Channel 2 to SO1 (Right) Channel 3 to SO1 (Right) Channel 4 to SO1 (Right) Treble Bass Shift Register width papuInstrumentView Sweep Time: Sweep Time Sweep RtShift amount: Sweep RtShift amount Wave pattern duty: Wave Pattern Duty Square Channel 1 Volume: Length of each step in sweep: Length of each step in sweep Wave pattern duty Square Channel 2 Volume: Square Channel 2 Volume Wave Channel Volume: Wave Channel Volume Noise Channel Volume: Noise Channel Volume SO1 Volume (Right): SO1 Volume (Right) SO2 Volume (Left): SO2 Volume (Left) Treble: Treble Bass: Bass Sweep Direction Volume Sweep Direction Shift Register Width Channel1 to SO1 (Right) Channel2 to SO1 (Right) Channel3 to SO1 (Right) Channel4 to SO1 (Right) Channel1 to SO2 (Left) Channel2 to SO2 (Left) Channel3 to SO2 (Left) Channel4 to SO2 (Left) Wave Pattern The amount of increase or decrease in frequency The rate at which increase or decrease in frequency occurs The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Square Channel 1 Volume The delay between step change Draw the wave here pattern Cannot freeze pattern Kan pattern niet bevriezen The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! De pattern kan nu niet bevroren worden, omdat deze in de afspeel-modus is. Stop aub. en probeer opnieuw! patternFreezeStatusDialog Freezing pattern... Pattern bevriezen... Cancel Annuleren patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step dubbel-klik om deze pattern in Piano-Roll te openen volume van de steps is met het muiswiel te veranderen Open in piano-roll In Piano-Roll openen Clear all notes Alle noten verwijderen Reset name Naam herstellen Change name Refreeze Opnieuw bevriezen Freeze Bevriezen Unfreeze Bevriezen ongedaan maken Add steps Steps toevoegen Remove steps Steps verwijderen PianoRoll Cut selected notes (Ctrl+X) Knip geselecteerde noten (Ctrl+X) Copy selected notes (Ctrl+C) Kopieer geselecteerde noten (Ctrl+C) Paste notes from clipboard (Ctrl+V) Plak noten van klembord (Ctrl+V) Play/pause current pattern (Space) Huidige pattern afspelen/pauseren (Spatie) Stop playing of current pattern (Space) Afspelen huidige pattern stoppen (Spatie) Piano-Roll - %1 Piano-Roll - %1 Piano-Roll - no pattern Piano-Roll -geen pattern Please open a pattern by double-clicking on it! Open aub. een pattern door er op te dubbel-klikken! Record notes from MIDI-device/channel-piano Noten van MIDI-apparaat/kanaal-piano opnemen Last note Laatste noot Draw mode (Shift+D) Teken modus (Shift+D) Erase mode (Shift+E) Wis modus (Shift+E) Select mode (Shift+S) Selecteer modus (Shift+S) Record notes from MIDI-device/channel-piano while playing song or BB track Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Click here to stop playback of current pattern. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the notes from the clipboard will be pasted at the first visible measure. Note lock Note Volume Note Panning Detune mode (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser Instrument plugins Instrument Plugins three powerful oscillators you can modulate in several ways Drie krachtige Oscillatoren, welke je op verschillende manieren kan moduleren VST-host for using VST(i)-plugins within LMMS VST-Host voor bebruik van VST(i)-Plugins binnen LMMS no description geen beschrijving Additive Synthesizer for organ-like sounds Additive Synthesizer voor orgelachtige geluiden Vibrating string modeler Vibrerende snaarinstrument modeler Filter for importing MIDI-files into LMMS Filter, om MIDI-bestanden in LMMS te importeren simple sampler with various settings for using samples (e.g. drums) in an instrument-track Eenvoudige Sampler met verschillende instellingen voor gebruik van samples (z.B. Drums) in in een instrument-spoor Filter for importing FL Studio projects into LMMS Filter voor importeren van FL Studio Projecten in LMMS Incomplete monophonic imitation tb303 Plugin for freely manipulating stereo output Plugin for controlling knobs with sound peaks Plugin for enhancing stereo separation of a stereo input file List installed LADSPA plugins versatile kick- & bassdrum-synthesizer GUS-compatible patch instrument plugin for using arbitrary VST-effects inside LMMS. plugin for boosting bass Tuneful things to bang on plugin for using arbitrary LADSPA-effects inside LMMS. Instrument browser Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Player for SoundFont files Emulation of GameBoy (TM) APU Customizable wavetable synthesizer Embedded ZynAddSubFX 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Put down your project notes here. Plaats hier je Project notities. Project notes Project notities Edit Actions Bewerken &Undo &Ongedaan maken Ctrl+Z Ctrl+Z &Redo &Herstellen Ctrl+Y Ctrl+Y &Copy &Kopieren Ctrl+C Ctrl+C Cu&t K&nippen Ctrl+X Ctrl+X &Paste &Plakken Ctrl+V Ctrl+V Format Actions Opmaak &Bold &Vet Ctrl+B Ctrl+B &Italic &Cursief Ctrl+I Ctrl+I &Underline &Onderstrepen Ctrl+U Ctrl+U &Left &Links Ctrl+L Ctrl+L C&enter C&entreren Ctrl+E Ctrl+E &Right &Rechts Ctrl+R Ctrl+R &Justify &Uitgevuld Ctrl+J Ctrl+J &Color... &Kleur... renameDialog Rename... Hernoemen... setupDialog Setup LMMS LMMS instellen General settings Algemene instellingen BUFFER SIZE BUFFERGROOTTE Reset to default-value Terugzetten naar standaardwaarden MISC VERSCHILLENDE INSTELLINGEN Audio settings Audio instellingen AUDIO INTERFACE AUDIO INTERFACE MIDI settings MIDI Instellingen MIDI INTERFACE MIDI INTERFACE OK OK Cancel Annuleren Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Hier kun je de interne buffer-grootte instellen welke door LMMS gebruikt zal worden. Lagere waarden zorgen voor een lagere latency (vertraging) maar kunnen de geluidskwaliteit en de performance wel negatief beinvloeden. Dit geld zeker voor oudere computers en systemen zonder realtime-kernel. Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Hier kun je je audio-interface instellen. Afhankelijk van de configuratie van je systeem gedurende de compilering, kun je kiezen tussen ALSA, JACK, OSS en meer. Hieronder vind je een gedeelte waar je de instellingen van de betreffende interface kunt wijzigen. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Hier kun je je audio-interface instellen. Afhankelijk van de configuratie van je systeem gedurende de compilering, kun je kiezen tussen ALSA, OSS en meer. Hieronder vind je een gedeelte waar je de instellingen van de betreffende interface kunt wijzigen. Restart LMMS LMMS herstarten Please note that most changes won't take effect until you restart LMMS! Houd er rekening mee dat je LMMS opnieuw moet opstarten om sommige instellingen te activeren! LMMS working directory LMMS werkmap VST-plugin directory VST-Plugin map Choose LMMS working directory Kies LMMS-werkmap Choose your VST-plugin directory Kies je VST-Plugin map Performance settings Performance instellingen UI effects vs. performance UI effecten vs. performance Frames: %1 Latency: %2 ms Frames: %1 Vertraging: %2 ms Artwork directory Artwork map Choose artwork-theme directory Artwork-thema map kiezen Display volume as dBV Volume in dBV tonen FL Studio installation directory FL Studio installatie map Choose FL Studio installation directory Kies FL Studio installatie map Enable tooltips Show restart warning after changing settings Compress project files per default HQ-mode for output audio-device STK rawwave directory Choose LADSPA plugin directory Choose STK rawwave directory Paths LADSPA plugin paths Default Soundfont File Background artwork Choose default SoundFont Choose background artwork One instrument track window mode Compact track buttons Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Smooth scroll in Song Editor Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Bank Patch Gain Reverb Reverb Roomsize Reverb Damping Reverb Width Reverb Level Chorus Chorus Lines Chorus Level Chorus Speed Chorus Depth sf2InstrumentView Open other SoundFont file Click here to open another SF2 file Choose the patch Gain Apply reverb (if supported) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. Reverb Roomsize: Reverb Damping: Reverb Width: Reverb Level: Apply chorus (if supported) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Chorus Lines: Chorus Level: Chorus Speed: Chorus Depth: Open SoundFont file SoundFont2 Files (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Resonance Filter type Filtersoort Voice 3 off Volume Volume Chip model sidInstrumentView Volume: Volume: Resonance: Cutoff frequency: High-Pass filter Band-Pass filter Low-Pass filter Voice3 Off MOS6581 SID MOS8580 SID Attack: Attack: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. Decay: Decay: Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. Sustain: Sustain: Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. Release: Release: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. Pulse Width: The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. Coarse: The Coarse detuning allows to detune Voice %1 one octave up or down. Pulse Wave Triangle Wave SawTooth Noise Sync Synchroon Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Ring-Mod Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. Filtered When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Test Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. song Tempo Tempo Master volume Master volume Master pitch Master toonhoogte Project saved Project opgeslagen The project %1 is now saved. Het project %1 is nu opgeslagen. Project NOT saved. Project NIET opgeslagen. The project %1 was not saved! Het project %1 werd niet opgeslagen! Import file Bestand importeren untitled naamloos Select file for project-export... Selecteer bestand voor exporteren project... Empty project This project is empty so exporting makes no sense. Please put some items into Song Editor first! MIDI sequences FL Studio projects All file types Hydrogen projects Select directory for writing exported tracks... SongEditor Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. Klik hier, wanneer je het afspelen van de song wilt stoppen. De song-position-marker zal weer naar het begin van je song worden gezet. Could not open file Kan bestand niet openen Could not write file Kan bestand niet schrijven Song-Editor Song-Editor Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. Klik hier, als je de gehele song wil afspelen. Het afspelen start bij de song-positie-marker (groen). Je kunt ook verplaatsen tijdens het afspelen. Play song (Space) Song afspelen (Spatie) Stop song (Space) Stop afspelen song (Spatie) Add beat/bassline Beat/Bassline toevoegen Add sample-track Sample spoor toevoegen Draw mode Teken modus Edit mode (select and move) Bewerk modus (selecteren en verplaatsen) Add automation-track Record samples from Audio-device Record samples from Audio-device while playing song or BB track Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Error in file The file %1 seems to contain errors and therefore can't be loaded. Tempo Tempo TEMPO/BPM TEMPO/BPM tempo of song afspeelsnelheid The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). High quality mode High quality modus Master volume Master volume master volume master volume Master pitch Master toonhoogte master pitch master toonhoogte Value: %1% Waarde: %1% Value: %1 semitones Waarde: %1 semitonen Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Linear Y axis spectrumAnalyzerControls Linear spectrum Linear Y-axis Channel mode stereoEnhancerControlDialog WIDE Width: stereoEnhancerControls Width stereoMatrixControlDialog Left to Left Vol: Left to Right Vol: Right to Left Vol: Right to Right Vol: stereoMatrixControls Left to Left Left to Right Right to Left Right to Right timeLine Enable/disable auto-scrolling Automatisch scrollen in-/uitschakelen Enable/disable loop-points Loop-punten in-/uitschakelen After stopping go back to begin Na stoppen terug naar begin After stopping go back to position at which playing was started Na stoppen terug naar positie waar afspelen werd gestart After stopping keep position Na stoppen op positie blijven Hint Tip Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted Solo trackContentObject Muted trackContentObjectView Current position Huidige positie Hint Tip Press <Ctrl> and drag to make a copy. Current length Huidige lengte Press <Ctrl> for free resizing. Druk <Ctrl> voor vrije grootteverandering. %1:%2 (%3:%4 to %5:%6) %1:%2 (%3:%4 tot %5:%6) Delete (middle mousebutton) Verwijderen (middelste muisknop) Cut Knippen Copy Kopieren Paste Plakken Mute/unmute (<Ctrl> + middle click) Dempen/geluid aan (<Ctrl> + middelklik) trackOperationsWidget Clone this track Dit spoor klonen Remove this track Dit spoor verwijderen Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Druk <Ctrl> tijdens klikken op move-grip om een nieuwe drag'n'drop-actie te starten. Actions for this track Acties voor dit spoor Mute Dempen Mute this track Solo vestigeInstrument Failed loading VST-plugin VST-plugin laden mislukt The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! De VST-plugin %1 kan om onbekende reden niet worden geladen. Als het wel werkt met andere VST-software onder Linux, neem dan contact op met een LMMS-ontwikkelaar! Loading plugin Plugin laden Please wait while loading VST-plugin... Wacht aub, de VST-plugin word geladen... vibed String %1 volume String %1 stiffness Pick %1 position Pickup %1 position Pan %1 Detune %1 Fuzziness %1 Length %1 Impulse %1 Octave %1 vibedView Volume: Volume: The 'V' knob sets the volume of the selected string. De 'V' knop stelt het volume in van de geselecteerde snaar. String stiffness: Hardheid snaar: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. De 'S' knop stelt de stijfheid in van de geselecteerde snaar. De stijfheid van de snaar bepaalt hoe lang de snaar uittrilt. Hoe lager de waarde, hoe langer de snaar trilt. Pick position: Aanslag-positie: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. De 'P' knop stelt de aanslagpositie in van de snaar aangeven. Hoe lager de waarde hoe dichter er bij de brug word aangeslagen. Pickup position: Pickup positie: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. De 'PU' knop stelt de positie in waar de trilling van de snaar word opgepikt. Hoe lager de waarde, hoe dichter de pickup bij de brug geplaatst is. Pan: Balans: The Pan knob determines the location of the selected string in the stereo field. De Balans knop bepaalt de plek van het geluid in het stereo-beeld. Detune: Ontstemming: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. De ontstemknop verandert de toonhoogte van de aangelsgen snaar. Instellingen lager dan 0 zullen het geluid vlakker laten klinken, terwijl het geluid met waarden boven 0 scherper zal worden. Fuzziness: Ruigheid: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. De Slap knop voegt ruigheid toe aan de geselecteerde snaar en is het meest merkbaar in de attack-fase. Tevens kan dit gebruikt worden om de snaar meer 'metallic' te laten klinken. Length: Lengte: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. De lengteknop stelt de lengte van de geselecteerde snaar in. Langere snaren klinken langer en helderder, maar dit vergt wel weer meer van de processor. Impulse or initial state Impuls of begininstelling The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. De 'Imp'-knop legt vast of de golfvorm in de grafiek word behandeld als een impulsgever op de snaar tijdens aanslaan, of als de begininstelling van een snaar. Octave The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. De oktaaf-kiezer word gebruikt voor het kiezen met welke harmonische van de noot de snaar zal klinken. Bij '-2' betekent dit bv. dat de snaar 2 oktaven onder de grondtoon ('F') komt. Impulse Editor The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. De golfvorm bewerker levert controle over de aanvangstoestand of impuls welke word gebruikt om een snaar te laten trillen. De knoppen aan de rechterkant van de grafiek geven aan welke golfvorm geselecteerd is. De '?' knop laadt een golfvorm-bestand-alleen de eerste 128 samples worden geladen. De golfvorm kan ook in de grafiek getekend worden. De 'S' knop zal de golfvorm uitstrijken (egaler maken). De 'N; knop zal de golfvorm normaliseren. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Vibed modeleert tot 9 individuele snaren. De 'Snaren' kiezer maakt het mogelijk om de geselecteerde snaar te bewerken. Met 'Imp' kiezer geef je aan of de grafiek de impuls of de beginwaarde weergeeft. Met de 'Octave' kiezer selecteer je de harmonischen waar de snaar mee trilt. De grafiek geeft je de mogelijkheid de beginwaarde en de impuls te beheren om de snaar in beweging te zetten. De 'V' knop stelt het volume in. De 'S' knop stelt de stijfheid in. De 'P' knop stelt de aanslagpositie in. De 'PU' knop stelt de positie van de pichup in. 'Pan' (balans) en 'Detune' (ontstemming) behoeven geen uitleg. De 'Slap' knop voegt wat ruigheid toe aan het geluid van de snaar. De lengteknop stelt de lengte van de snaar in. De LED in de rechter benedenhoek van de golfvorm bewerker geeft aan of de snaar actief is in het huidige instrument. Enable waveform Golfvorm activeren Click here to enable/disable waveform. Klik hier, om een golfvorm te activeren/deactiveren. String The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. De snaar-kiezer word gebruikt voor het kiezen van de snar welke bewerkt word. Een Vibed instrument kan tot 9 individueel trillende snaren bevatten. De LED in de rechter benedenhoek van de golfvorm bewerker geeft aan of de geselecteerde snaar actief is. Sine wave Sinus golf Triangle wave Driehoeks golf Saw wave Zaagtand golf Square wave Vierkants golf White noise wave Witte ruis User defined wave Gebruiker gedefinieerde golf Smooth Uitstrijker Click here to smooth waveform. Normalize Normaliseren Click here to normalize waveform. Klik hier, om de golfvorm te normaliseren. &Help &Help Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. visualizationWidget click to enable/disable visualization of master-output Klik om de master-output visuallisatie in- of uit te schakelen Click to enable voiceObject Voice %1 pulse width Voice %1 attack Voice %1 decay Voice %1 sustain Voice %1 release Voice %1 coarse detuning Voice %1 wave shape Voice %1 sync Voice %1 ring modulate Voice %1 filtered Voice %1 test lmms-1.0.0+bzr2569/data/locale/pl.qm0000644000000000000000000061073311716275316015072 0ustar 00000000000000dbcjP DmDvm#}1_#}3_?(Y*$'*y(!**0j*0p-*0N*0:*0*0*0++(+)G++Y+į* /Næ4ʩ5f76u9giVn9kYV93@:ddgdW@dXt@TE \EZ׭F|GGG7GHjHipHi1H6HHzHz̎HI;XImsImJ'ivJ+R.J<@ϲJmJiJKLbM5MMbM~N(2NhObzPW PWS}A[S}C[7SU\Sb\S@T.YTZTA>TʴTʴ`TxlUQ6U`fUjVb(Vbc0VhVSV5aVVM'W WW |WiiWW~KX X XZ/Z/ZkZkZZZo{#ZoO[Ν\]6 .p]s^eqզ^erc^cNh iųiųciųszyatUatbav=&8|}B?|}}U??~#MZ;;;_Nϙ?-^g 9/hVvPCue!NQ7aX) 7OiiyIy xק1`ק3`@QOnJ[W3DJ b b PC C C>/N+H+}un"R H/V27"(7o9}X9-m;n,; =@۴mCFzFzJеJمMUT]OXyeOXP0^NVZ;Z;*aU'mLp>#w807z; n~o>duNwtSFɄy0ʭi(7(U.ՙ,ծhRd8݊472<Tlߺ~oKoVz;CBhA b|RRDzQ/hQjt8JKua3- (^yR(^)u,´5.4Nb: wRo_/r%^{t@yxż^ ~zK9:%<58n8C7FGGsGrGG??;))f3 9> >%>ѻ5G[.|mt>6wgH~ Ss`sǷst-(E DR%buIU"ݎc"ݎp% :n2Q434278Ji:)1D?@CBHH>I[YUIOXP~P~Wa;Z.Z]1]YOlBlh lou6xxz|ZC\|Zh}"/R}[}\G~~Ő8MĩJaR$<5#H#6y>[0x'|Ӿ #M=A~ov~WRkĽ$3Pϯѫ>6I6 ~קAVקCWNZքܗjD98%F왞c/gtB- =c|չ32+3"YI . 0)(^(7 )e31019nZ:^ ;:] <<^<<ʚA ULCYZFA>JM$9MtMк޲PJPJPJQq.yQq.E`H`N`%y`%c=#:d ZRg5:hi{0njztkJېl rJOw~e/wwrwxYZbyT yTH{ O}Fb9.Oy  NxXY}u u1u2[u2u35u=uu!.2U{|6VZIfYI II9@IhYfiR0%Z e~Fqq***+*+]+++,),\ , ,h"d'zC^Ux}~Ye Aˤ<(}FžՔ3`EZgͥ221;(8غ.ؽ`e|AhvP@dfncfDK#PC_dCpV. t1MT u uz @lO K2S]h7oo(>7T722Rޔr3Titi9r>t/7_gqZrgY Ů_ 8c zy`Q@%))! XYdB^!E!EoS!Ew1&rzA' )' )(,?)~*GS,D-d5n8}3;Q2;ZH? ~%-?C'I kUIMUIZb[t\X.YaŁclczBhF]hJV_SiAN im.wy %y %3   j>Uj?/>X2e2 ]#d3yT\A$);f2g"#?S  ut: 1LUisٚ$Ϟz-SED-SE-SEl3h<;lG/xGx!I  QS6NHU.U.W~h\n@bsxc?Y;dRdR'eEJeekjD5m4gnqvSme5=%n5;Ԫ$6yDS#EHCwHCض0dmn6%QUhU#U!6dJ8wyy0ya*^QPma^ ¸¸4&ʩҊʩNc8k]]e=p࣓QOWmc~Ydn  :    $ 4> %! )8? *0 .5n 3': 6Ex 8e 8e> 9J 9t G ItYU Ie8 Mgk O T YANj YsS hI.G7 hI. k l8 p,= pg w%9 w%4x xf |b? >Q, >Y 9 5O 6 C B1z B1  ^v `< ` 9 gb " nG  F= w Kn kw n   UU;F u: R UT 1 ; N 7 Tx c@ ~U ·~( *Zs ʧM ʵ;| ˔)  J\ D N{K ؋n ڮ ڮZ ہ@ DK$ zs 6 ׾} (U *L ]S _ I97 ".x $ r 'm* )x& +A - 3' 9yr N> Om"n S'J STnx STnd \" \; ] ` eEK m  m l m Ȩ m  s TZ u:  $n I 4 : ?= }l Nk! Np] J V hF R" 2 2 8A Ɵ Ƶ8nc ^V 4 ӗ`8) ӰxU غb 2 <G <ӏ e= Sܨ Y:C Y: Y:1 ~ iP h ^  _ . .B .t . ʓf m "Y "O $&y< (c + + 2d + h -# -m -  ^C  + oZ ]7 Ɉ] / 9 ޖ 9N 9  鼣O ]oE  /l /v" | +OE Zpf  5 rZ ` (Dd@ .˙Q @uQ @uo @u* ZV ao bS#K c ce c cu c= fbш l8i |.se V * }N S"E    ; 1_ 3_ .I .Ղ f  0^ ɶ.g J Չ9O Չ9 3[ )> Z" ( /^IN /^ JferZ8% ^u d:EerRWf{n~i30Dy=2o!o&ʮ+2>9uSU;}#<)B>1GؠPM]Q>Y](ad^cg8n6dy8OpݟN()?e<)f)r/`9;`9wȘsh\WW#zWt Paa^,dN>"9u  |[9  L}(M"YV$e()3s7W&?ICgD>DnE.I#JiJiM|oU&mXҾmZ [x*[(^ E` CiI :m4pڸyZ߻*}*7Kf y¥I!LPƳZ~~ܹ"1iInformacjeAbout AboutDialog O programie LMMS About LMMS AboutDialogAutorzyAuthors AboutDialogPCopyright (c) 2004-2010, LMMS developers(Copyright (c) 2004-2010, LMMS developers AboutDialogSpolszczenie LMMS: Radek SBowik Podzikowania dla: Marii SBowik - za wstpn korekt, Tomasza Gradowskiego - za cenne uwagi i sugestie zmian. Zauwa|one bBdy i propozycje zmian tBumaczenia prosz zgBasza na e-mail: radek[maBpka]vibender[kropka]comCurrent language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! AboutDialog<LMMS (Linux MultiMedia Studio)LMMS (Linux MultiMedia Studio) AboutDialogVLMMS - Batwa produkcja muzyczna dla ka|dego)LMMS - easy music production for everyone AboutDialogLicencjaLicense AboutDialogTBumaczenie Translation AboutDialog8Wersja %1 (%2/%3, Qt %4, %5)Version %1 (%2/%3, Qt %4, %5) AboutDialog6http://lmms.sourceforge.nethttp://lmms.sourceforge.net AboutDialogArpeggioArpeggio Arpeggiator"Kierunek arpeggioArpeggio direction Arpeggiator(Bramkowanie arpeggio Arpeggio gate ArpeggiatorTryb arpeggio Arpeggio mode ArpeggiatorZakres arpeggioArpeggio range ArpeggiatorOkres arpeggio Arpeggio time ArpeggiatorRodzaj arpeggio Arpeggio type Arpeggiator W dBDown ArpeggiatorAsynchronicznyFree Arpeggiator LosowoRandom ArpeggiatorPosortowanySort ArpeggiatorSynchronicznySync Arpeggiator W grUp ArpeggiatorNaprzemiennie Up and down Arpeggiator%%ArpeggiatorViewARPEGGIOARPEGGIOArpeggiatorView2Arpeggio jest metod odtwarzania (zwBaszcza krtkobrzmicych) instrumentw, ktra czyni muzyk o wiele |ywsz. W odr|nieniu od zwyczajnego wykonania akordu, gdzie dzwiki odtwarzane s rwnocze[nie w przypadku wykonywania arpeggio nuty uderzane s sekwencyjnie jedna po drugiej. Typowe arpeggia skBadaj si z trjdzwikw durowych lub molowych ale istnieje te| wiele innych akordw, ktre mo|esz zastosowa.An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select.ArpeggiatorView*Bramkowanie arpeggio:Arpeggio gate:ArpeggiatorView Zakres arpeggio:Arpeggio range:ArpeggiatorViewOkres arpeggio:Arpeggio time:ArpeggiatorViewKierunek: Direction:ArpeggiatorView BRAMKAGATEArpeggiatorView Tryb:Mode:ArpeggiatorView ZAKRESRANGEArpeggiatorView OKRESTIMEArpeggiatorViewU|yj tego pokrtBa do ustawienia bramkowania arpeggio. Bramka arpeggio okre[la procentowo jak dBugo ma by odtwarzana ka|da nuta arpeggio. Za jej pomoc mo|na dokona artykulacji dzwikw w formie staccato.Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios.ArpeggiatorViewU|yj tego pokrtBa do ustawienia rozpito[ci arpeggio w oktawach. Wybrane arpeggio bdzie odgrywane w zakresie okre[lonej liczby oktaw.Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves.ArpeggiatorViewU|yj tego pokrtBa do ustawienia okresu arpeggio w milisekundach. Okres arpeggio ustala jak dBugo bdzie odtwarzany ka|dy dzwik.Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played.ArpeggiatorViewmsmsArpeggiatorViewoktawa(y) octave(s)ArpeggiatorView KANAAYCHANNELSAudioAlsa::setupWidgetURZDZENIEDEVICEAudioAlsa::setupWidgetWzmocnienie:Amplify:AudioFileProcessorViewNKliknij w tym miejscu je[li chcesz zaBadowa inny plik audio. Otworzy si okno gdzie bdziesz mgB zaznaczy wybrany plik. Ustawienia takie jak tryb ptli, punkty pocztku i koDca, warto[ wzmocnienia i inne nie zostan zresetowane wic to co uzyskasz mo|e brzmie inaczej ni| oryginalna prbka.Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample.AudioFileProcessorView"Znacznik koDcowy: Endpoint:AudioFileProcessorViewJe[li uaktywnisz t kontrolk prbka bdzie odtwarzana w zakresie od znacznika pocztkowego do koDcowego podczas gdy klawisz instrumentu jest naci[nity. Mo|e by to przydatne w przypadku sampli instrumentw strunowych czy chrkw.Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples.AudioFileProcessorView>Je[li uaktywnisz t kontrolk caBa prbka bdzie odtwarzana wstecz. Mo|e to by przydatne do stworzenia efektw dzwikowych np. puszczonej wstecz blachy crash.pIf you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash.AudioFileProcessorViewhZaptl prbk od znacznika pocztkowego do koDcowego#Loop sample at start- and end-pointAudioFileProcessorView$Otwrz inn prbkOpen other sampleAudioFileProcessorViewOdwr prbkReverse sampleAudioFileProcessorView(Znacznik-pocztkowy: Startpoint:AudioFileProcessorView~Za pomoc tego pokrtBa mo|esz ustawi wspBczynnik wzmocnienia. Domy[ln warto[ci jest 100%. Poni|ej prbka jest [ciszana a powy|ej podgBa[niana (zmiany nie maj wpBywu na sam plik sampla!)With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!)AudioFileProcessorViewPZa pomoc tego pokrtBa mo|esz ustawi poBo|enie znacznika pocztku odtwarzania, czyli miejsca, od ktrego prbka ma by odtwarzana. Gdy uaktywnisz tryb zaptlenia bdzie to punkt do ktrego Sampler bdzie powracaB je[li nuta jest dBu|sza ni| wycinek prbki pomidzy znacznikami pocztku i koDca.With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points.AudioFileProcessorViewZa pomoc tego pokrtBa mo|esz ustawi poBo|enie znacznika koDca odtwarzania, czyli miejsca gdzie koDczy si odtwarzanie prbki. Gdy uaktywnisz tryb zaptlenia bdzie to punkt z ktrego Sampler bdzie przeskakiwaB do znacznika pocztkowego je[li nuta jest dBu|sza ni| wycinek prbki pomidzy znacznikami pocztku i koDca.With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points.AudioFileProcessorView2Klient JACK zrestartowanyJACK client restarted AudioJack*Serwer JACK wyBczonyJACK server down AudioJackLMMS zostaB odrzucony przez JACK z jakiego[ powodu. Back-end LMMSa zostaB zrestartowany wic mo|esz ponownie dokona rcznych poBczeD.LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. AudioJackWydaje si, |e serwer JACK zostaB wyBczony i uruchomienie nowej instancji nie powiodBo si wic LMMS nie mo|e kontynuowa pracy. Nale|y zapisa projekt i uruchomi serwer JACK i LMMSa ponownie.The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack KANAAYCHANNELSAudioJack::setupWidgetNAZWA-KLIENTA CLIENT-NAMEAudioJack::setupWidget KANAAYCHANNELSAudioOss::setupWidgetURZDZENIEDEVICEAudioOss::setupWidgetBACKENDBACKENDAudioPortAudio::setupWidgetURZDZENIEDEVICEAudioPortAudio::setupWidget KANAAYCHANNELSAudioPulseAudio::setupWidgetURZDZENIEDEVICEAudioPulseAudio::setupWidgetURZDZENIEDEVICEAudioSdl::setupWidget,&Kopiuj warto[ (%1%2)&Copy value (%1%2)AutomatableModel*&Wklej warto[ (%1%2)&Paste value (%1%2)AutomatableModel&Resetuj (%1%2) &Reset (%1%2)AutomatableModel0PodBcz do kontrolera...Connect to controller...AutomatableModel PodBczony do %1Connected to %1AutomatableModel0PodBczony do kontroleraConnected to controllerAutomatableModel(Edytuj poBczenie...Edit connection...AutomatableModelBEdytuj globaln automatyk utworuEdit song-global automationAutomatableModelUsuD poBczenieRemove connectionAutomatableModelxWszystkie zaznaczone warto[ci zostaBy skopiowane do schowka.1All selected values were copied to the clipboard.AutomationEditor,Edytor Automatyki - %1Automation Editor - %1AutomationEditorBEdytor automatyki - brak patternuAutomation Editor - no patternAutomationEditorKliknij tutaj aby przej[ do trybu rysowania. W tym trybie mo|esz dodawa i przemieszcza pojedyDcze warto[ci. To domy[lny tryb, ktry bdziesz wykorzystywa przez wikszo[ czasu. Mo|esz go aktywowa z poziomu klawiatury za pomoc skrtu 'Shift+D'.Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode.AutomationEditorDKliknij tutaj aby przej[ do trybu kasowania. W tym trybie mo|esz usuwa pojedyDcze warto[ci. Mo|esz go aktywowa z poziomu klawiatury za pomoc skrtu 'Shift+E'.Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode.AutomationEditor@Kliknij tutaj aby przej[ do trybu zaznaczania. W tym trybie mo|esz zaznacza pojedyncze warto[ci jak i caBe grupy uBatwiajc sobie prac z wycinaniem, kopiowaniem, wklejaniem, usuwaniem bdz przemieszczaniem elementw. Mo|esz go aktywowa z poziomu klawiatury za pomoc skrtu 'Shift+S'.Click here and select-mode will be activated. In this mode you can select values. This is necessary if you want to cut, copy, paste, delete, or move values. You can also press 'Shift+S' on your keyboard to activate this mode.AutomationEditor$Kliknij tutaj a zaznaczone elementy zostan skopiowane do schowka. Mo|esz je wklei gdziekolwiek w dowolnym patternie za pomoc przycisku 'Wklej'.Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditor8Kliknij tutaj a zaznaczone elementy zostan wycite i umieszczone w schowku. Mo|esz je wklei gdziekolwiek w dowolnym patternie za pomoc przycisku 'Wklej'.Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditorKliknij tutaj a elementy ze schowka zostan przeklejone w miejsce zaznaczenia.YClick here and the values from the clipboard will be pasted at the first visible measure.AutomationEditorKliknij tutaj je[li chcesz odtworzy aktualny pattern. Ta opcja jest przydatna przy edytowaniu patternu - zostanie on automatycznie zaptlony.Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached.AutomationEditorKliknij tutaj je[li chcesz zatrzyma odtwarzanie aktualnego patternu.>Click here if you want to stop playing of the current pattern.AutomationEditorHSkopiuj zaznaczone elementy (Ctrl+C)Copy selected values (Ctrl+C)AutomationEditorFWytnij zaznaczone elementy (Ctrl+X)Cut selected values (Ctrl+X)AutomationEditor0Tryb rysowania (Shift+D)Draw mode (Shift+D)AutomationEditor4Tryb wymazywania (Shift+E)Erase mode (Shift+E)AutomationEditorKliknij tutaj aby przej[ do trybu przemieszczania zaznaczeD. W tym trybie mo|esz przemieszcza wcze[niej zaznaczone elementy. Mo|esz go aktywowa z poziomu klawiatury za pomoc skrtu 'Shift+M'.If you click here, move-mode will be activated. In this mode you can move the values you selected in select-mode. You can also press 'Shift+M' on your keyboard to activate this mode.AutomationEditorTTryb przemieszczania zaznaczenia (Shift+M)Move selection mode (Shift+M)AutomationEditorDWklej zaznaczone elementy (Ctrl+V)$Paste values from clipboard (Ctrl+V)AutomationEditorVOdtwrz/zatrzymaj aktualny pattern (Spacja)"Play/pause current pattern (Space)AutomationEditorOtwrz pattern automatyki za pomoc menu kontekstowego regulatora!EPlease open an automation pattern with the context menu of a control!AutomationEditor4Tryb zaznaczania (Shift+S)Select mode (Shift+S)AutomationEditordZatrzymaj odtwarzanie aktualnego patternu (Spacja)'Stop playing of current pattern (Space)AutomationEditor&Warto[ci skopiowane Values copiedAutomationEditor\Przecignij trzymajc wci[nity klawisz <Ctrl>$Drag a control while pressing AutomationPattern%1 PoBczenia%1 ConnectionsAutomationPatternViewZmieD nazw Change nameAutomationPatternViewWyczy[ClearAutomationPatternViewRozBcz "%1"Disconnect "%1"AutomationPatternView8Otwrz w Edytorze AutomatykiOpen in Automation editorAutomationPatternViewZresetuj nazw Reset nameAutomationPatternViewzPodwjne kliknicie otwiera ten pattern w edytorze automatyki6double-click to open this pattern in automation editorAutomationPatternView$Zcie|ka automatykiAutomation trackAutomationTrack11 ChordCreator11b9 ChordCreator13 ChordCreator13#9 ChordCreator13b5b9 ChordCreator13b9 ChordCreator6 ChordCreator6add9 ChordCreator6sus4 ChordCreator7 ChordCreator7#11 ChordCreator7#5 ChordCreator7#5#9 ChordCreator7#5b9 ChordCreator7#9 ChordCreator7add11 ChordCreator7add13 ChordCreator7b5 ChordCreator7b5b9 ChordCreator7b9 ChordCreator7sus4 ChordCreator9 ChordCreator9#11 ChordCreator9#5 ChordCreator9b13 ChordCreator9b5 ChordCreator9sus4 ChordCreatorAeolian ChordCreatorArabic ChordCreatorBlues ChordCreator Chord range ChordCreator Chord type ChordCreatorChords ChordCreator Diminished ChordCreatorDominant bebop ChordCreatorDorian ChordCreator Enigmatic ChordCreatorHarmonic minor ChordCreatorHungarian minor ChordCreator Jap in sen ChordCreatorLocrian ChordCreatorLydian ChordCreatorMaj11 ChordCreatorMaj13 ChordCreatorMaj7 ChordCreatorMaj7#11 ChordCreatorMaj7#5 ChordCreator Maj7add13 ChordCreatorMaj7b5 ChordCreatorMaj9 ChordCreatorMaj9#11 ChordCreatorMaj9#5 ChordCreatorMaj9sus4 ChordCreatorMajb5 ChordCreatorMajor ChordCreator Major bebop ChordCreatorMajor pentatonic ChordCreator Melodic minor ChordCreatorMinor pentatonic ChordCreator Mixolydian ChordCreator Neopolitan ChordCreatorNeopolitan minor ChordCreator Phrygolydian ChordCreator Whole tone ChordCreatoradd9 ChordCreatoraug ChordCreatoraugsus4 ChordCreatorm-Maj11 ChordCreatorm-Maj13 ChordCreatorm-Maj7 ChordCreator m-Maj7add11 ChordCreator m-Maj7add13 ChordCreatorm11 ChordCreatorm13 ChordCreatorm6 ChordCreatorm6add9 ChordCreatorm7 ChordCreatorm7add11 ChordCreatorm7add13 ChordCreatorm7b5 ChordCreatorm7b9 ChordCreatorm9 ChordCreatorm9-Maj7 ChordCreatorm9b5 ChordCreatormadd9 ChordCreatorminb5 ChordCreatorminor ChordCreatoroctave ChordCreatorsus2 ChordCreatorsus4 ChordCreatortri ChordCreator AKORDYCHORDSChordCreatorViewZakres akordu: Chord range:ChordCreatorView ZAKRESRANGEChordCreatorViewU|yj tego pokrtBa aby ustawi zakres akordu w oktawach. Wybrany akord bdzie odgrywany w ramach okre[lonej liczby oktaw.{Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves.ChordCreatorViewoktawa(y) octave(s)ChordCreatorViewKontroler %1 Controller %1 ControllerAutodetekcja Auto DetectControllerConnectionDialog KANAACHANNELControllerConnectionDialogKONTROLER CONTROLLERControllerConnectionDialog AnulujCancelControllerConnectionDialog*Ustawienia PoBczeniaConnection SettingsControllerConnectionDialogDetekcja Cyklu.Cycle Detected.ControllerConnectionDialogKanaB wej[ciowy Input channelControllerConnectionDialog&Kontroler wej[ciowyInput controllerControllerConnectionDialogLMMSLMMSControllerConnectionDialog"FUNKCJA MAPOWANIAMAPPING FUNCTIONControllerConnectionDialogKONTROLER MIDIMIDI CONTROLLERControllerConnectionDialogXUrzdzenia MIDI odbierajce zdarzenia MIDI z(MIDI-devices to receive MIDI-events fromControllerConnectionDialogOKOKControllerConnectionDialog*KONTROLER U{YTKOWNIKAUSER CONTROLLERControllerConnectionDialog DodajAddControllerRackView Rack KontrolerwController RackControllerRackView &Pomoc&HelpControllerView &UsuD t wtyczk&Remove this pluginControllerViewKontrolery umo|liwiaj automatyzacj warto[ci pokrteB, suwakw i innych regulatorw.QControllers are able to automate the value of a knob, slider, and other controls.ControllerView UstawControlsControllerViewNWprowadz now nazw dla tego kontrolera&Enter the new name for this controllerControllerView,ZmieD nazw kontroleraRename controllerControllerViewZanikanieDecayEffectEfekt wBczonyEffect enabledEffect BramkaGateEffect,Miksowanie Suchy/Mokry Wet/Dry mixEffectEfekty wBczoneEffects enabled EffectChainDodaj efekt Add effectEffectRackView AACCUCH EFEKTOWY EFFECTS CHAINEffectRackViewDodaj efekt Add effectEffectSelectDialogOpis wtyczkiPlugin descriptionEffectSelectDialog &Pomoc&Help EffectView &UsuD t wtyczk&Remove this plugin EffectView UstawControls EffectView ZANIK.DECAY EffectViewAaDcuch wtyczek efektowych w ktrym sygnaB przetwarzany jest od gry do doBu. Kontrolka 'On/Off' umo|liwia pominicie danej wtyczki w ka|dej chwili. PokrtBo 'Suchy/Mokry' (Wet/Dry) okre[la wspBczynnik mieszania sygnaBu wej[ciowego z sygnaBem przetworzonym przez wtyczk. SygnaB wyj[ciowy wtyczki jest rwnocze[nie sygnaBem wej[ciowym wtyczki nastpnej. PokrtBo 'Zanikanie' okre[la jak dBugo sygnaB bdzie przetwarzany przez wtyczk po zakoDczeniu nuty. Wtyczka zakoDczy przetwarzanie gdy poziom sygnaBu zmniejszy si poni|ej zadanego progu w danym okresie czasu. Ta gaBka okre[la wBa[nie ten czas. Krtszy bdzie skutkowa mniejszym obci|eniem procesora ale w przypadku dBugo wybrzmiewajcych efektw - np. delay czy reverb - lepiej go zwikszy. PokrtBo 'Bramka' okre[la prg sygnaBu przy ktrym wtyczka koDczy dziaBanie. Przycisk 'Regulatory' otwiera okno w ktrym mo|na dostosowa parametry wtyczki. Prawoklik otwiera menu kontekstowe z pomoc ktrego mo|na zmieni porzdek efektw w BaDcuchu lub usun wybrane efekty.SEffect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. EffectView BRAM.GATE EffectViewBramka:Gate: EffectView Przemie[ w &dB Move &down EffectView"Przemie[ w &grMove &up EffectView On/OffOn/Off EffectViewPokrtBo zanikania okre[la jak dBugo bdzie trwaBo przetwarzanie sygnaBu przez wtyczk. Ni|sze warto[ci zmniejszaj obci|enie procesora ale mog skutkowa obcinaniem ogona pogBosowego w deley'ach i reverb'ach.The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. EffectViewPokrtBo bramki okre[la poziom sygnaBu, ktry zostanie rozpoznany jako cisza aby zatrzyma przetwarzanie sygnaBu.zThe Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. EffectViewPokrtBo Mokry/Suchy (Wet/Dry) okre[la wspBczynnik pomidzy sygnaBem nieprzetworzonym a sygnaBem po naBo|eniu efektu. Warto[ci dodatnie domiksowywuj sygnaB przetworzony w fazie a ujemne w przeciwfazie do sygnaBu nieprzetworzonego.eThe Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. EffectView Czas:Time: EffectView*WBcza/wyBcza efekt.Toggles the effect on or off. EffectViewW/DW/D EffectView.Poziom 'Mokrego' (Wet): Wet Level: EffectViewAtakAttackEnvelopeAndLfoParametersZanikanieDecayEnvelopeAndLfoParameters&Czstotliwo[ x 100 Freq x 100EnvelopeAndLfoParametersPrzetrzymanieHoldEnvelopeAndLfoParametersAtak LFO LFO AttackEnvelopeAndLfoParametersModulacja LFOLFO ModulationEnvelopeAndLfoParametersOpznienie LFO LFO PredelayEnvelopeAndLfoParameters KsztaBt fali LFOLFO Wave ShapeEnvelopeAndLfoParametersSzybko[ LFO LFO speedEnvelopeAndLfoParameters>WspBczynnik modulacji obwiedniModulate Env-AmountEnvelopeAndLfoParametersModulacja ModulationEnvelopeAndLfoParametersOpznieniePredelayEnvelopeAndLfoParametersWybrzmiewanieReleaseEnvelopeAndLfoParametersPodtrzymanieSustainEnvelopeAndLfoParametersAMTAMTEnvelopeAndLfoViewATTATTEnvelopeAndLfoView Atak:Attack:EnvelopeAndLfoViewfKliknij tutaj aby przeBczy na fal piBoksztaBtn.&Click here for a saw-wave for current.EnvelopeAndLfoViewdKliknij tutaj aby przeBczy na fal sinusoidaln.Click here for a sine-wave.EnvelopeAndLfoViewbKliknij tutaj aby przeBczy na fal prostoktn.Click here for a square-wave.EnvelopeAndLfoView^Kliknij tutaj aby przeBczy na fal trjktn.Click here for a triangle-wave.EnvelopeAndLfoViewHKliknij tutaj aby przeBczy na ksztaBt fali zdefiniowany przez u|ytkownika. Po tym fakcie przecignij do okna LFO prbk ze zdefiniowanym wcze[niej ksztaBtem fali.aClick here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph.EnvelopeAndLfoViewtKliknij tutaj aby 100-krotnie zwikszy czstotliwo[ LFO.DClick here if the frequency of this LFO should be multiplied by 100.EnvelopeAndLfoViewKliknij tutaj aby LFO kontrolowaB wspBczynnik modulacji sygnaBu przez obwiedni.>Click here to make the envelope-amount controlled by this LFO.EnvelopeAndLfoViewDECDECEnvelopeAndLfoViewDELDELEnvelopeAndLfoViewZanikanie:Decay:EnvelopeAndLfoViewfPrzecignij prbk skdkolwiek i upu[ w tym oknie.8Drag a sample from somewhere and drop it in this window.EnvelopeAndLfoViewFREQ x 100 FREQ x 100EnvelopeAndLfoViewHOLDHOLDEnvelopeAndLfoViewWskazwkaHintEnvelopeAndLfoViewPrzetrzymanie:Hold:EnvelopeAndLfoViewOpznienie LFO: LFO predelay:EnvelopeAndLfoViewSzybko[ LFO: LFO speed:EnvelopeAndLfoViewAtak LFO: LFO- attack:EnvelopeAndLfoView:MODULUJ WSPACZYNNIK OBWIEDNIMODULATE ENV-AMOUNTEnvelopeAndLfoView.WspBczynnik modulacji:Modulation amount:EnvelopeAndLfoViewOpznienie: Predelay:EnvelopeAndLfoViewRELRELEnvelopeAndLfoViewWybrzmiewanie:Release:EnvelopeAndLfoViewSPDSPDEnvelopeAndLfoViewSUSTSUSTEnvelopeAndLfoViewPodtrzymanie:Sustain:EnvelopeAndLfoView\U|yj tego pokrtBa aby ustawi czas ataku LFO.Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum.EnvelopeAndLfoViewfU|yj tego pokrtBa aby ustawi czas ataku obwiedni.Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings.EnvelopeAndLfoViewnU|yj tego pokrtBa aby ustawi czas zanikania obwiedni.Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos.EnvelopeAndLfoViewvU|yj tego pokrtBa aby ustawi czas przetrzymania obwiedni.Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level.EnvelopeAndLfoViewU|yj tego pokrtBa aby ustawi wspBczynnik modulacji sygnaBu przez Generator Przebiegw Wolnozmiennych (LFO).Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO.EnvelopeAndLfoViewU|yj tego pokrtBa aby ustawi wspBczynnik modulacji sygnaBu przez generator obwiedni.Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope.EnvelopeAndLfoViewU|yj tego pokrtBa aby ustawi czas wstpnego opznienia dla obwiedni sygnaBu.Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope.EnvelopeAndLfoViewfU|yj tego pokrtBa aby ustawi czas opznienia LFO.Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate.EnvelopeAndLfoViewvU|yj tego pokrtBa aby ustawi czas wybrzmiewania obwiedni.Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings.EnvelopeAndLfoViewlU|yj tego pokrtBa aby ustawi prdko[ oscylacji LFO.Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect.EnvelopeAndLfoViewxU|yj tego pokrtBa aby ustawi poziom podtrzymania obwiedni.Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero.EnvelopeAndLfoViewZkontroluj wspBczynnik obwiedni przez ten LFO#control envelope-amount by this LFOEnvelopeAndLfoViewms/LFO:ms/LFO:EnvelopeAndLfoView4czstotliwo[ LFO razy 100multiply LFO-frequency by 100EnvelopeAndLfoView128 KBit/s 128 KBit/sExportProjectDialog16 Bit Integer16 Bit IntegerExportProjectDialog160 KBit/s 160 KBit/sExportProjectDialog192 KBit/s 192 KBit/sExportProjectDialog192000 Hz 192000 HzExportProjectDialog1x (Brak) 1x (None)ExportProjectDialog256 KBit/s 256 KBit/sExportProjectDialog2x2xExportProjectDialog32 Bit Float 32 Bit FloatExportProjectDialog320 KBit/s 320 KBit/sExportProjectDialog44100 Hz44100 HzExportProjectDialog48000 Hz48000 HzExportProjectDialog4x4xExportProjectDialog64 KBit/s 64 KBit/sExportProjectDialog88200 Hz88200 HzExportProjectDialog8x8xExportProjectDialog96000 Hz96000 HzExportProjectDialog,Oscylatory bez aliaswAlias-free oscillatorsExportProjectDialogPrzepBywno[:Bitrate:ExportProjectDialog AnulujCancelExportProjectDialog*Rozdzielczo[ bitowa:Depth:ExportProjectDialog"Eksportuj projektExport projectExportProjectDialogFormat pliku: File format:ExportProjectDialogInterpolacja:Interpolation:ExportProjectDialogWyj[cieOutputExportProjectDialogFNadprbkowanie (u|ywa ostro|nie!):Oversampling (use with care!):ExportProjectDialogZauwa|, |e nie wszystkie powy|sze parametry odnosz si do wszystkich formatw zapisu.LPlease note that not all of the parameters above apply for all file formats.ExportProjectDialog$Ustawienia jako[ciQuality settingsExportProjectDialog2Kontrolery 'Sample-exact'Sample-exact controllersExportProjectDialog4Czstotliwo[ prbkowania: Samplerate:ExportProjectDialogDSinc Najlepsza (koszmarnie wolna!)Sinc Best (very slow!)ExportProjectDialogSinc Najszybsza Sinc FastestExportProjectDialog.Sinc Zrednia (zalecana)Sinc Medium (recommended)ExportProjectDialogRozpocznijStartExportProjectDialogBPodtrzymanie Zerowego Rzdu (ZOH)Zero Order HoldExportProjectDialog FX %1FX %1FxMixer MasterMasterFxMixerTWprowadz now nazw tego kanaBu efektowego&Enter the new name for this FX channel FxMixerViewFX Fader %1 FX Fader %1 FxMixerViewFX-MixerFX-Mixer FxMixerViewWyciszenieMute FxMixerView2Wycisz ten kanaB efektowyMute this FX channel FxMixerView:ZmieD nazw kanaBu efektowegoRename FX channel FxMixerView KANAACHANNELInstrumentMidiIOView$WACZ WEJZCIE MIDIENABLE MIDI INPUTInstrumentMidiIOView$WACZ WYJZCIE MIDIENABLE MIDI OUTPUTInstrumentMidiIOViewNUrzdzenia MIDI odbierajce zdarzenia z(MIDI devices to receive MIDI events fromInstrumentMidiIOViewNUrzdzenia MIDI wysyBajce zdarzenia do#MIDI devices to send MIDI events toInstrumentMidiIOViewPROGRAMPROGRAMInstrumentMidiIOView$PRDKOZ UDERZENIAVELOCITYInstrumentMidiIOView$2xDolnoprzepustowy 2x LowPassInstrumentSoundShaping"WszechprzepustowyAllpassInstrumentSoundShaping,Pasmowoprzepustowy csg BandPass csgInstrumentSoundShaping.Pasmowoprzepustowy czpg BandPass czpgInstrumentSoundShaping CUTOFFCUTOFFInstrumentSoundShaping.Czstotliwo[ granicznaCutoff frequencyInstrumentSoundShaping0Obwiednie/Oscylatory LFOEnvelopes/LFOsInstrumentSoundShapingRodzaj filtru Filter typeInstrumentSoundShaping GrnoprzepustowyHiPassInstrumentSoundShaping DolnoprzepustowyLowPassInstrumentSoundShapingMoogMoogInstrumentSoundShapingPasmowozaporowyNotchInstrumentSoundShapingDDobro/Zafalowanie charakterystyki Q/ResonanceInstrumentSoundShapingRESORESOInstrumentSoundShaping6Zafalowanie charakterystyki ResonanceInstrumentSoundShapingGAOZNOZVOLUMEInstrumentSoundShapingGBo[no[VolumeInstrumentSoundShaping CUTOFFCUTOFFInstrumentSoundShapingView FILTRFILTERInstrumentSoundShapingViewJW tym miejscu mo|esz wybra wbudowany filtr, ktry chcesz naBo|y na t [cie|k instrumentu. Filtry s bardzo istotne z punktu ksztaBtowania charakterystyki dzwiku.Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound.InstrumentSoundShapingViewHzHzInstrumentSoundShapingViewRESORESOInstrumentSoundShapingView8Zafalowanie charakterystyki: Resonance:InstrumentSoundShapingView TARGETTARGETInstrumentSoundShapingViewTe zakBadki zawieraj obwiednie. S bardzo wa|ne przy modyfikacji dzwiku. Praktycznie zawsze s konieczne przy syntezie subtraktywnej. PrzykBadowo je[li mamy do czynienia z obwiedni amplitudy mo|esz ustali w ktrych momentach dzwik ma mie okre[lon gBo[no[. Je[li chcesz stworzy parti Bagodnych smykw ich dzwik powinien narasta i opada bardzo powoli. Mo|esz to uzyska przez ustawienie dBugich czasw ataku i wybrzmiewania. Podobnie jest w przypadku obwiedni innych parametrw jak panoramowanie czy czstotliwo[ graniczna. Mo|esz uzyska atrakcyjne dzwiki modyfikujc brzmienie ju| samej fali piBoksztaBtnej za pomoc r|nych obwiedni!_These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...!InstrumentSoundShapingViewPU|yj tego pokrtBa aby ustawi dobro albo zafalowanie charakterystyki wybranego filtru. Te parametry okre[laj zachowanie filtru w okolicach czstotliwo[ci granicznej.Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency.InstrumentSoundShapingView~U|yj tego pokrtBa aby ustawi czstotliwo[ graniczn wybranego filtru. Czstotliwo[ ta okre[la ktre czstotliwo[ci bd wycinane przez filtr. PrzykBadowo filtr dolnoprzepustowy wycina caBe pasmo czstotliwo[ciowe powy|ej czstotliwo[ci granicznej. W przypadku filtru grnoprzepustowego jest odwrotnie i tak dalej...2Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on...InstrumentSoundShapingView0czstotliwo[ graniczna:cutoff-frequency:InstrumentSoundShapingViewNuta bazowa Base noteInstrumentTrack&Ustawienia domy[lneDefault presetInstrumentTrackKanaB FX FX channelInstrumentTrackPanoramowaniePanningInstrumentTrackOdstrojeniePitchInstrumentTrackGBo[no[VolumeInstrumentTrackZa pomoc tego pokrtBa mo|esz okre[li gBo[no[ otwartego kanaBu.Poka|/ukryj notatki do projektuShow/hide project notes MainWindowKatalog roboczy LMMSa %1 nie istnieje. Stworzy go teraz? Mo|esz zmieni katalog pzniej poprzez Edycja -> Ustawienia.uThe LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. MainWindowBie|cy projekt zostaB zmodyfikowany od ostatniego zapisu. Czy chcesz go zapisa teraz?OThe current project was modified since last saving. Do you want to save it now? MainWindow CofnijUndo MainWindowNienazwaneUntitled MainWindowCo to jest? What's this? MainWindowKatalog roboczyWorking directory MainWindow*Denominator MetrycznyMeter Denominator MeterDialog&Numerator MetrycznyMeter Numerator MeterDialog METRUMTIME SIG MeterDialogDenominator Denominator MeterModelNumerator Numerator MeterModelURZDZENIEDEVICEMidiAlsaRaw::setupWidgetURZDZENIEDEVICEMidiAlsaSeq::setupWidgetKontroler MIDIMIDI ControllerMidiController0kontroler midi bez nazwyunnamed_midi_controllerMidiController2Konfiguracja niekompletnaSetup incomplete MidiImportTego LMMS nie skompilowano ze wsparciem odtwarzacza SoundFont2, ktry jest wykorzystywany do dodawania domy[lnych dzwikw do zaimportowanych plikw MIDI. Wskutek tego po zaimportowaniu pliku MIDI nie usByszysz |adnego dzwiku.You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiImportNie masz skonfigurowanego domy[lnego soundfonta w oknie dialogowym (Edycja->Ustawienia). Bdzie to skutkowa brakiem dzwiku po zaimportowaniu pliku MIDI. Powiniene[ pobra soundfonty General MIDI, dokona zmiany ustawieD i sprbowa ponownie.You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. MidiImportURZDZENIEDEVICEMidiOss::setupWidget<Zafiksowana prdko[ wej[ciowaFixed input velocityMidiPort<Zafiksowana prdko[ wyj[ciowaFixed output velocityMidiPortKanaB wej[ciowy Input channelMidiPort&Kontroler wej[ciowyInput controllerMidiPort,Wyj[ciowy program MIDIOutput MIDI programMidiPortKanaB wyj[ciowyOutput channelMidiPort&Kontroler wyj[ciowyOutput controllerMidiPort0Odbieraj komunikaty MIDIReceive MIDI-eventsMidiPort.WysyBaj komunikaty MIDISend MIDI-eventsMidiPort&Rodzaj modulacji %1Modulation type %1OscillatorObject4Osc %1 zgrubne odstrojenieOsc %1 coarse detuningOscillatorObject@Osc %1 dokBadne odstrojenie lewoOsc %1 fine detuning leftOscillatorObjectBOsc %1 dokBadne odstrojenie prawoOsc %1 fine detuning rightOscillatorObject(Osc %1 panoramowanieOsc %1 panningOscillatorObject4Osc %1 przesunicie fazoweOsc %1 phase-offsetOscillatorObject<Osc %1 odstrojenie fazy stereoOsc %1 stereo phase-detuningOscillatorObjectOsc %1 gBo[no[ Osc %1 volumeOscillatorObject&Osc %1 ksztaBt faliOsc %1 wave shapeOscillatorObjectOsc %1 przebiegOsc %1 waveformOscillatorObjectKliknij tutaj, aby otworzy inny plik Patch. Ustawienia ptli i dostrojenia nie zostan zresetowane.LClick here to open another patch-file. Loop and Tune settings are not reset. PatmanViewW tym miejscu mo|esz uruchomi tryb zaptlenia. Je[li to zrobisz PatMan bdzie u|ywaB informacji o ptli dostpnych w pliku.jHere you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. PatmanViewW tym miejscu mo|esz uruchomi tryb dostrojenia. Patman dostroi prbk do czstotliwo[ci nut.iHere you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. PatmanView PtlaLoop PatmanViewTryb zaptlenia Loop mode PatmanView2Nie wybrano |adnego plikuNo file selected PatmanView,Otwrz inny plik PatchOpen other patch PatmanView"Otwrz plik PatchOpen patch file PatmanView&Pliki Patch (*.pat)Patch-Files (*.pat) PatmanViewDostrojenieTune PatmanView Tryb dostrojenia Tune mode PatmanViewPeak KontrolerPeak ControllerPeakControllerKontroler LFOLFO ControllerPeakControllerDialogPEAKPEAKPeakControllerDialogWSPACZYNNIKAMT!PeakControllerEffectControlDialogATAKATTACK!PeakControllerEffectControlDialog Atak:Attack:!PeakControllerEffectControlDialogBAZABASE!PeakControllerEffectControlDialog$WspBczynnik bazy: Base amount:!PeakControllerEffectControlDialogZANIKANIEDECAY!PeakControllerEffectControlDialog.WspBczynnik modulacji:Modulation amount:!PeakControllerEffectControlDialogWybrzmiewanie:Release:!PeakControllerEffectControlDialogNarastanieAttackPeakControllerEffectControlsWarto[ bazowa Base valuePeakControllerEffectControls,WspBczynnik modulacjiModulation amountPeakControllerEffectControlsWycisz wyj[cie Mute outputPeakControllerEffectControlsWybrzmiewanieReleasePeakControllerEffectControlsNuta podstawowa Base note PianoViewNWystpiB bBd podczas Badowania wtyczkiError while loading pluginPluginBNie mo|na zaBadowa wtyczki "%1"!Failed to load plugin "%1"!Plugin,Nie znaleziono wtyczkiPlugin not foundPluginWtyczka "%1" Nie zostaBa odnaleziona albo nie mo|e zosta zaBadowana! Powd: "%2"AThe plugin "%1" wasn't found or could not be loaded! Reason: "%2"Plugin<Skompresowany plik OGG (*.ogg)Compressed OGG-File (*.ogg)ProjectRenderer Plik WAV (*.wav)WAV-File (*.wav)ProjectRenderer$KanaBy wej[ciowe:  Channels In: QWidget$KanaBy wyj[ciowe: Channels Out: QWidget"Prawa autorskie:  Copyright: QWidget Plik: File: QWidgetTwrca: Maker: QWidgetNazwa: Name: QWidgetNieNoQWidgetRZdolno[ do pracy w czasie rzeczywistym: Real Time Capable: QWidget8Wymaga czasu rzeczywistego: Requires Real Time: QWidgetTakYesQWidget &Pomoc&Help TempoSyncKnobSzesnastka 16th note TempoSyncKnob&Trzydziestka dwjka 32nd note TempoSyncKnob semka8th note TempoSyncKnob WBasneCustom  TempoSyncKnobWBasne... Custom... TempoSyncKnobOsiem uderzeD Eight beats TempoSyncKnobPBnuta Half note TempoSyncKnob&Brak synchronizacjiNo Sync TempoSyncKnobwiernuta Quarter note TempoSyncKnob<Zsynchronizowane do szesnastkiSynced to 16th Note TempoSyncKnobNZsynchronizowane do trzydziestki dwjkiSynced to 32nd Note TempoSyncKnob4Zsynchronizowane do semkiSynced to 8th Note TempoSyncKnobBZsynchronizowane do o[miu uderzeDSynced to Eight Beats TempoSyncKnob6Zsynchronizowane do pBnutySynced to Half Note TempoSyncKnob<Zsynchronizowane do wiernutySynced to Quarter Note TempoSyncKnob<Zsynchronizowane do caBej nutySynced to Whole Note TempoSyncKnob(Synchronizacja tempa Tempo Sync TempoSyncKnobCaBa nuta Whole note TempoSyncKnob@Miksuj wyj[cia oscylatorw 1 & 2Mix output of oscillator 1 & 2TripleOscillatorView@Miksuj wyj[cia oscylatorw 2 & 3Mix output of oscillator 2 & 3TripleOscillatorView:Osc %1 - zgrubne odstrojenie:Osc %1 coarse detuning:TripleOscillatorViewJOsc %1 - dokBadne odstrojenie w lewo:Osc %1 fine detuning left:TripleOscillatorViewLOsc %1 - dokBadne odstrojenie w prawo:Osc %1 fine detuning right:TripleOscillatorView.Osc %1 - panoramowanie:Osc %1 panning:TripleOscillatorView:Osc %1 - przesunicie fazowe:Osc %1 phase-offset:TripleOscillatorViewBOsc %1 - odstrojenie fazy stereo:Osc %1 stereo phase-detuning:TripleOscillatorView$Osc %1 - gBo[no[:Osc %1 volume:TripleOscillatorViewPSynchronizuj oscylator 1 z oscylatorem 2*Synchronize oscillator 1 with oscillator 2TripleOscillatorViewPSynchronizuj oscylator 2 z oscylatorem 3*Synchronize oscillator 2 with oscillator 3TripleOscillatorView|U|yj piBoksztaBtnego przebiegu mooga dla bie|cego oscylatora.0Use a moog-like saw-wave for current oscillator.TripleOscillatorViewdU|yj fali piBoksztaBtnej dla bie|cego oscylatora.&Use a saw-wave for current oscillator.TripleOscillatorViewbU|yj fali sinusoidalnej dla bie|cego oscylatora.'Use a sine-wave for current oscillator.TripleOscillatorView`U|yj fali prostoktnej dla bie|cego oscylatora.)Use a square-wave for current oscillator.TripleOscillatorView\U|yj fali trjktnej dla bie|cego oscylatora.+Use a triangle-wave for current oscillator.TripleOscillatorViewTU|yj fali zdefiniowanej przez u|ytkownika.3Use a user-defined waveform for current oscillator.TripleOscillatorViewU|yj modulacji amplitudowej aby zmodulowa oscylator 2 oscylatorem 1FUse amplitude modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewU|yj modulacji amplitudowej aby zmodulowa oscylator 3 oscylatorem 2FUse amplitude modulation for modulating oscillator 3 with oscillator 2TripleOscillatorView`U|yj fali wykBadniczej dla bie|cego oscylatora./Use an exponential wave for current oscillator.TripleOscillatorViewU|yj modulacji czstotliwo[ciowej aby zmodulowa oscylator 2 oscylatorem 1FUse frequency modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewU|yj modulacji czstotliwo[ciowej aby zmodulowa oscylator 3 oscylatorem 2FUse frequency modulation for modulating oscillator 3 with oscillator 2TripleOscillatorView~U|yj modulacji fazowej aby zmodulowa oscylator 2 oscylatorem 1BUse phase modulation for modulating oscillator 2 with oscillator 1TripleOscillatorView~U|yj modulacji fazowej aby zmodulowa oscylator 3 oscylatorem 2BUse phase modulation for modulating oscillator 3 with oscillator 2TripleOscillatorViewXU|yj biaBego szumu dla bie|cego oscylatora.'Use white-noise for current oscillator.TripleOscillatorView$Za pomoc tego pokrtBa mo|esz ustawi zgrubne odstrojenie oscylatora %1. Mo|esz odstraja oscylator o 12 pBtonw (caB oktaw) w gr lub w dB.With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord.TripleOscillatorView:Za pomoc tego pokrtBa mo|esz ustawi dokBadne odstrojenie oscylatora %1 dla lewego kanaBu. Zakres regulacji mie[ci si w przedziale od -100 do +100 centw.With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorView<Za pomoc tego pokrtBa mo|esz ustawi dokBadne odstrojenie oscylatora %1 dla prawego kanaBu. Zakres regulacji mie[ci si w przedziale od -100 do +100 centw.With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorViewZa pomoc tego pokrtBa mo|esz ustawi panoramowanie oscylatora %1. Warto[ -100 przesuwa oscylator 100% w lewo, warto[ 100 - 100% w prawo.With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right.TripleOscillatorView`Za pomoc tego pokrtBa mo|esz ustawi przesunicie fazowe oscylatora %1. Oznacza to, |e mo|esz przemie[ci w czasie moment w ktrym oscylator rozpoczyna drgania. Na przykBad je[li mamy do czynienie z fal sinusoidaln, wprowadzenie przesunicia fazowego o warto[ci 180 stopni spowoduje, |e pierwsza poBwka fali zacznie by generowana w stron warto[ci ujemnych, odwrotnie ni| w przypadku przesunicia fazowego o warto[ci 0 stopni.)With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave.TripleOscillatorViewZa pomoc tego pokrtBa mo|esz ustawi odstrojenie fazy stereo oscylatora %1. Oznacza to, |e masz wpByw na r|nic fazy pomidzy lewym i prawym kanaBem. Ta gaBka pomo|e Ci stworzy szeroko brzmice dzwiki.With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds.TripleOscillatorViewZa pomoc tego pokrtBa mo|esz ustawi gBo[no[ oscylatora %1. Je[li zadasz warto[ 0 oscylator zostanie wyBczony.With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here.TripleOscillatorView centycentsTripleOscillatorView stopnidegreesTripleOscillatorViewpBtony semitonesTripleOscillatorViewKliknij tutaj, aby zaznaczy presety aktualnie zaBadowane do wtyczki VST.>Click here to select presets that are currently loaded in VST.VestigeInstrumentViewKliknij tutaj aby pokaza graficzny interfejs u|ytkownika (GUI) wtyczki VST.QClick here to show or hide the graphical user interface (GUI) of your VST-plugin.VestigeInstrumentViewKliknij tutaj, je[li chcesz kontrolowa wtyczk VST z hosta LMMS.8Click here, if you want to control VST-plugin from host.VestigeInstrumentViewKliknij tutaj, je[li chcesz otworzy inny preset wtyczki VST w formacie *.fxp lub *.fxb.GClick here, if you want to open another *.fxp, *.fxb VST-plugin preset.VestigeInstrumentViewKliknij tutaj je[li chcesz otworzy inn wtyczk VST. Po klikniciu otworzy si okno dialogowe w ktrym bdziesz mgB zaznaczy wybrany plik.Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file.VestigeInstrumentViewKliknij tutaj, je[li chcesz zapisa bie|ce ustawienia wtyczki VST.CClick here, if you want to save current VST-plugin presset program.VestigeInstrumentViewKliknij tutaj, je[li chcesz przeBczy na inny preset wtyczki VST.HClick here, if you want to switch to another VST-plugin presset program.VestigeInstrumentViewDKontroluj wtyczk VST z hosta LMMS!Control VST-plugin from LMMS hostVestigeInstrumentView"Pliki DLL (*.dll)DLL-files (*.dll)VestigeInstrumentView"Pliki EXE (*.exe)EXE-files (*.exe)VestigeInstrumentViewNastpny (+)Next (+)VestigeInstrumentView4Nie zaBadowano wtyczki VSTNo VST-plugin loadedVestigeInstrumentView$Otwrz wtyczk VSTOpen VST-pluginVestigeInstrumentView2Otwrz preset wtyczki VSTOpen VST-plugin presetVestigeInstrumentView.Otwrz inn wtyczk VSTOpen other VST-pluginVestigeInstrumentView PresetPresetVestigeInstrumentViewPoprzedni (-) Previous (-)VestigeInstrumentViewZapisz preset Save presetVestigeInstrumentViewPoka|/ukryj GUI Show/hide GUIVestigeInstrumentView*Wycisz wszystkie nutyTurn off all notesVestigeInstrumentView przezbyVestigeInstrumentViewKliknij tutaj, je[li chcesz zaznaczy presety aktualnie zaBadowane do wtyczki VST.>Click here to select presets that are currently loaded in VST.VstEffectControlDialogKliknij tutaj, je[li chcesz kontrolowa wtyczk VST z hosta LMMS.8Click here, if you want to control VST-plugin from host.VstEffectControlDialogKliknij tutaj, je[li chcesz otworzy inny preset wtyczki VST w formacie *.fxp lub *.fxb.GClick here, if you want to open another *.fxp, *.fxb VST-plugin preset.VstEffectControlDialogKliknij tutaj, je[li chcesz zapisa bie|ce ustawienia wtyczki VST.CClick here, if you want to save current VST-plugin presset program.VstEffectControlDialogKliknij tutaj, je[li chcesz przeBczy na inny preset wtyczki VST.HClick here, if you want to switch to another VST-plugin presset program.VstEffectControlDialogDKontroluj wtyczk VST z hosta LMMS!Control VST-plugin from LMMS hostVstEffectControlDialogNastpny (+)Next (+)VstEffectControlDialog2Otwrz preset wtyczki VSTOpen VST-plugin presetVstEffectControlDialogPoprzedni (-) Previous (-)VstEffectControlDialogZapisz preset Save presetVstEffectControlDialog,Poka|/ukryj VST FX GUIShow/hide VST FX GUIVstEffectControlDialog.FXB.FXB VstPlugin.FXP.FXP VstPlugin.fxb.fxb VstPlugin.fxp.fxp VstPlugin: domy[lne : default VstPluginLAadowanie wtyczki VST nie powiodBo siFailed loading VST-plugin VstPlugin"Aadowanie wtyczkiLoading plugin VstPluginOtwrz Preset Open Preset VstPluginNAadowanie wtyczki VST. Prosz czeka...'Please wait while loading VST-plugin... VstPluginZapisz Preset Save Preset VstPluginjWtyczka VST %1 nie mo|e zosta zaBadowana z jakiego[ powodu. Je[li pracuje normalnie z innym oprogramowaniem VST pod Linuksem prosz koniecznie skontaktowa si z developerami LMMS!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! VstPlugin@Preset wtyczki VST (*.fxp *.fxb)Vst Plugin Preset (*.fxp *.fxb) VstPluginSzeroko[ Pasma BandwidthZynAddSubFxInstrumentWzmocnienie FMFM GainZynAddSubFxInstrument(Czstotliwo[ FiltraFilter FrequencyZynAddSubFxInstrument$Zafalowanie FiltraFilter ResonanceZynAddSubFxInstrumentTPrzeka| Zdarzenia MIDI typu Control Change"Forward MIDI Control Change EventsZynAddSubFxInstrumentPortamento PortamentoZynAddSubFxInstrument6Szeroko[ Pasma ZafalowaniaResonance BandwidthZynAddSubFxInstrumentDCzstotliwo[ Zrodkowa ZafalowaniaResonance Center FrequencyZynAddSubFxInstrumentBWBWZynAddSubFxView Szeroko[ Pasma: Bandwidth:ZynAddSubFxViewKliknij tutaj, aby pokaza lub ukry graficzny interfejs u|ytkownika (GUI) syntezatora ZynAddSubFX.MClick here to show or hide the graphical user interface (GUI) of ZynAddSubFX.ZynAddSubFxViewFM GAINFM GAINZynAddSubFxViewWzmocnienie FM:FM Gain:ZynAddSubFxViewFREQFREQZynAddSubFxView*Czstotliwo[ Filtra:Filter Frequency:ZynAddSubFxView&Zafalowanie Filtra:Filter Resonance:ZynAddSubFxViewTPrzeka| zdarzenia MIDI typu Control ChangeForward MIDI Control ChangesZynAddSubFxViewPORTPORTZynAddSubFxViewPortamento: Portamento:ZynAddSubFxViewRESRESZynAddSubFxView RES BWRES BWZynAddSubFxView RES-CFRES CFZynAddSubFxView8Szeroko[ pasma zafalowania:Resonance bandwidth:ZynAddSubFxViewFCzstotliwo[ [rodkowa zafalowania:Resonance center frequency:ZynAddSubFxViewPoka| GUIShow GUIZynAddSubFxViewWzmacniajAmplifyaudioFileProcessorKoniec sampla End of sampleaudioFileProcessor PtlaLoopaudioFileProcessorOdwr prbkReverse sampleaudioFileProcessorPocztek samplaStart of sampleaudioFileProcessorFREQFREQbassBoosterControlDialogCzstotliwo[: Frequency:bassBoosterControlDialogGAINGAINbassBoosterControlDialogWzmocnienie:Gain:bassBoosterControlDialog RATIORATIObassBoosterControlDialogWspBczynnik:Ratio:bassBoosterControlDialogCzstotliwo[ FrequencybassBoosterControlsWzmocnienieGainbassBoosterControlsWspBczynnikRatiobassBoosterControls0Dodaj [cie|k automatykiAdd automation-trackbbEditor:Dodaj lini perkusyjn/basowAdd beat/basslinebbEditor,Edytor Perkusji i BasuBeat+Bassline EditorbbEditorKliknij tutaj, aby odtworzy bie|c lini perkusyjn/basow. Zostanie ona automatycznie zaptlona.qClick here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached.bbEditorKliknij tutaj, aby zatrzyma odtwarzanie bie|cej linii perkusyjnej/basowej.4Click here to stop playing of current beat/bassline.bbEditorrOdtwrz/ZapaBzuj bie|c lini perkusyjn/basow (Spacja)(Play/pause current beat/bassline (Space)bbEditorZatrzymaj odtwarzanie bie|cej linii perkusyjnej/basowej (Spacja).Stop playback of current beat/bassline (Space)bbEditorZmieD kolor Change color bbTCOViewZmieD nazw Change name bbTCOViewBOtwrz w Edytorze Perkusji i BasuOpen in Beat+Bassline-Editor bbTCOViewZresetuj nazw Reset name bbTCOViewPerkusja/Bas %1Beat/Bassline %1bbTrackDuplikat %1 Clone of %1bbTrackDBugo[ prbki Samplelength bitInvader`Kliknij aby przeBczy na przebieg sinusoidalny.Click for a sine-wave.bitInvaderViewbKliknij aby przeBczy na przebieg piBoksztaBtny.Click here for a saw-wave.bitInvaderView^Kliknij aby przeBczy na przebieg prostoktny.Click here for a square-wave.bitInvaderViewZKliknij aby przeBczy na przebieg trjktny.Click here for a triangle-wave.bitInvaderViewKliknij aby przeBczy na przebieg zdefiniowany przez u|ytkownika.$Click here for a user-defined shape.bitInvaderViewbKliknij aby przeBczy na przebieg stochastyczny.Click here for white-noise.bitInvaderViewLKliknij tutaj, aby wygBadzi przebieg.Click here to smooth waveform.bitInvaderViewNarysuj swj wBasny przebieg przecigajc kursorem po tym wykresie.ADraw your own waveform here by dragging your mouse on this graph.bitInvaderViewInterpolacja InterpolationbitInvaderViewNormalizacja NormalizebitInvaderViewDBugo[ Prbki Sample LengthbitInvaderView$Fala piBoksztaBtnaSaw wavebitInvaderView"Fala sinusoidalna Sine wavebitInvaderViewWygBadzanieSmoothbitInvaderView Fala prostoktna Square wavebitInvaderViewFala trjktna Triangle wavebitInvaderViewNPrzebieg zdefiniowany przez u|ytkownikaUser defined wavebitInvaderViewBiaBy szumWhite noise wavebitInvaderView0Nie mo|na otworzy plikuCould not open fileexportProjectDialog8Nie da si otworzy pliku %1 do zapisu. Upewnij si, |e masz uprawnienia zapisu do tego pliku i katalogu w ktrym si znajduje a nastpnie sprbuj ponownie!Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again!exportProjectDialogBBdErrorexportProjectDialogWystpiB bBd podczas okre[lania enkodera. Sprbuj wybra inny format wyj[ciowy.\Error while determining file-encoder device. Please try to choose a different output format.exportProjectDialog,Eksport projektu do %1Export project to %1exportProjectDialogRendering: %1%Rendering: %1%exportProjectDialogPrzegldarkaBrowser fileBrowser8--- Pliki preinstalowane ------ Factory files ---fileBrowserTreeWidget Aadowanie prbkiLoading samplefileBrowserTreeWidget^Otwrz na nowej [cie|ce Edytora Perkusji i Basu'Open in new instrument-track/B+B EditorfileBrowserTreeWidgetPOtwrz na nowej [cie|ce Edytora Piosenki(Open in new instrument-track/Song-EditorfileBrowserTreeWidgetVAadowanie podgldu prbki, prosz czeka...*Please wait, loading sample for preview...fileBrowserTreeWidgetJWy[lij na aktywn [cie|k instrumentuSend to active instrument-trackfileBrowserTreeWidget WykresGraph graphModelZanikanieDecaykickerInstrumentZnieksztaBcenie DistortionkickerInstrument*Czstotliwo[ koDcowa End frequencykickerInstrumentWzmocnienieGainkickerInstrument0Czstotliwo[ pocztkowaStart frequencykickerInstrumentZanikanie:Decay:kickerInstrumentView ZnieksztaBcenie: Distortion:kickerInstrumentView,Czstotliwo[ koDcowa:End frequency:kickerInstrumentViewWzmocnienie:Gain:kickerInstrumentView2Czstotliwo[ pocztkowa:Start frequency:kickerInstrumentView &Pomoc&HelpknobNWprowadz now warto[ pomidzy %1 a %2:+Please enter a new value between %1 and %2:knobfWprowadz now warto[ pomidzy -96.0 dBV a 6.0 dBV:7Please enter a new value between -96.0 dBV and 6.0 dBV:knob*Narzdzia AnalizujceAnalysis ToolsladspaBrowserViewDostpne EfektyAvailable EffectsladspaBrowserViewNieznane Don't knowladspaBrowserViewInstrumenty InstrumentsladspaBrowserViewTo okno dialogowe wy[wietla informacje o wszystkich wtyczkach LADSPA jakie LMMS byB w stanie zlokalizowa. Wtyczki s podzielone na pi kategorii bazujcych na intepretacji ich portw i nazw. Efekty dostpne to te, ktre mog zosta u|yte przez LMMS. Aby wtyczka efektowa mogBa zosta wykorzystana musi posiada zarwno kanaBy wej[ciowe jak i wyj[ciowe. KanaBy wej[ciowe s identyfikowane jako zawierajce wyraz 'in' w nazwie kanaBu, kanaBy wyj[ciowe natomiast powinny w nazwie zawiera sBowo 'out'. Ponadto efekt musi posiada tak sam liczb wej[ i wyj[ a tak|e obsBugiwa tryb pracy w czasie rzeczywistym. Efekty niedostpne to takie, ktre posiadaj r|n liczb wej[ i wyj[ albo nie potrafi pracowa w czasie rzeczywistym. Instrumenty to wtyczki, w ktrych udaBo si zidentyfikowa jedynie kanaBy wyj[ciowe. Narzdzia Analizujce to wtyczki, w ktrych rozpoznano tylko kanaBy wej[ciowe. Nieznane to wtyczki, ktrych kanaBy zarwno wej[ciowe jak i wyj[ciowe pozostaj niezidentyfikowane. Podwjne kliknicie na ktrejkolwiek wtyczce otworzy okienko z informacjami o dostpnych portach.TThis dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports.ladspaBrowserViewRodzaj:Type:ladspaBrowserView$Niedostpne EfektyUnavailable EffectsladspaBrowserViewOpis DescriptionladspaDescriptionWtyczkiPluginsladspaDescription AudioAudioladspaPortDialogRegulatorControlladspaPortDialogKierunek DirectionladspaPortDialog$ZmiennoprzecinkoweFloatladspaPortDialogWej[cieInputladspaPortDialogCaBkowiteIntegerladspaPortDialogLogarytmiczny LogarithmicladspaPortDialog(Min < Domy[lne < MaxMin < Default < MaxladspaPortDialog NazwaNameladspaPortDialogWyj[cieOutputladspaPortDialog PortyPortsladspaPortDialog TempoRateladspaPortDialogZale|ny od SR SR DependentladspaPortDialogPrzeBczalneToggledladspaPortDialog RodzajTypeladspaPortDialogTakYesladspaPortDialogFiltr 24dB/okt24dB/oct Filter lb302Synth AkcentAccent lb302Synth MartwyDead lb302SynthZnieksztaBcenie Distortion lb302SynthZlizganieSlide lb302Synth(Zlizgajce Zanikanie Slide Decay lb302Synth4Czstotliwo[ Odcicia VCFVCF Cutoff Frequency lb302Synth,Zanikanie Obwiedni VCFVCF Envelope Decay lb302Synth0Modyfikacja Obwiedni VCFVCF Envelope Mod lb302SynthRezonans VCF VCF Resonance lb302Synth"KsztaBt PrzebieguWaveform lb302SynthP303-es-que, 24dB/oktaw, filtr III rzdu&303-es-que, 24dB/octave, 3 pole filterlb302SynthViewCUTCUTlb302SynthViewnKliknij tutaj, aby przeBczy na przebieg sinusoidalny.Click for a sine-wave.lb302SynthView`Kliknij tutaj, aby przeBczy na przebieg mooga. Click here for a moog-like wave.lb302SynthViewpKliknij tutaj, aby przeBczy na przebieg piBoksztaBtny.Click here for a saw-wave.lb302SynthViewKliknij tutaj, aby przeBczy na przebieg prostoktny z zaokrglonymi naro|ami.0Click here for a square-wave with a rounded end.lb302SynthViewlKliknij tutaj, aby przeBczy na przebieg prostoktny.Click here for a square-wave.lb302SynthViewhKliknij tutaj, aby przeBczy na przebieg trjktny.Click here for a triangle-wave.lb302SynthViewlKliknij tutaj, aby przeBczy na przebieg wykBadniczy.#Click here for an exponential wave.lb302SynthViewpKliknij tutaj, aby przeBczy na przebieg stochastyczny.Click here for white-noise.lb302SynthViewCzst. Odc.: Cutoff Freq:lb302SynthViewDECDEClb302SynthViewDISTDISTlb302SynthView DIST:DIST:lb302SynthViewZanikanie:Decay:lb302SynthViewENV MODENV MODlb302SynthViewMod. Obw.:Env Mod:lb302SynthViewFala Mooga Moog wavelb302SynthViewRESRESlb302SynthViewRezonans: Resonance:lb302SynthView:Fala prostoktna, zaokrglonaRounded square wavelb302SynthView SLIDESLIDElb302SynthView$Fala piBoksztaBtnaSaw wavelb302SynthView"Fala sinusoidalna Sine wavelb302SynthView.Zanikanie z po[lizgiem: Slide Decay:lb302SynthView Fala prostoktna Square wavelb302SynthViewFala trjktna Triangle wavelb302SynthViewBiaBy szumWhite noise wavelb302SynthViewFiltr 24dB/okt24dB/oct Filter lb303Synth AkcentAccent lb303Synth MartwyDead lb303SynthZnieksztaBcenie Distortion lb303SynthPo[lizgSlide lb303Synth,Zanikanie z po[lizgiem Slide Decay lb303Synth4Czstotliwo[ Odcicia VCFVCF Cutoff Frequency lb303Synth,Zanikanie Obwiedni VCFVCF Envelope Decay lb303Synth0Modyfikacja Obwiedni VCFVCF Envelope Mod lb303SynthRezonans VCF VCF Resonance lb303Synth"KsztaBt PrzebieguWaveform lb303SynthP303-es-que, 24dB/oktaw, filtr III rzdu&303-es-que, 24dB/octave, 3 pole filterlb303SynthViewCUTCUTlb303SynthViewCzst. Odc.: Cutoff Freq:lb303SynthViewDECDEClb303SynthViewDISTDISTlb303SynthView DIST:DIST:lb303SynthViewZanikanie:Decay:lb303SynthViewENV MODENV MODlb303SynthViewMod. Obw.:Env Mod:lb303SynthViewRESRESlb303SynthViewRezonans: Resonance:lb303SynthView SLIDESLIDElb303SynthView.Zanikanie z po[lizgiem: Slide Decay:lb303SynthViewFALAWAVElb303SynthView FALA:WAVE:lb303SynthViewADSRADSRmalletsInstrument AgogoAgogomalletsInstrumentUderzeniaBeatsmalletsInstrumentPochylenieBowedmalletsInstrumentStpnicieClumpmalletsInstrumentCrossfade CrossfademalletsInstrumentHarfa SzklanaGlassmalletsInstrumentTwardo[HardnessmalletsInstrumentLFO - GBboko[ LFO DepthmalletsInstrumentLFO - Szybko[ LFO SpeedmalletsInstrumentMarimbaMarimbamalletsInstrumentPominite pliki Missing filesmalletsInstrumentModulator ModulatormalletsInstrumentRuchMotionmalletsInstrumentPozycjaPositionmalletsInstrumentCi[nieniePressuremalletsInstrumentRezonansResomalletsInstrumentPrdko[SpeedmalletsInstrumentRozstrzaBSpreadmalletsInstrumentStick Mix Stick MixmalletsInstrument Misy TybetaDskie Tibetan BowlmalletsInstrumentDzwony Rurowe Tubular BellsmalletsInstrumentDwa Zafiksowane Two FixedmalletsInstrumentWibrafon VibraphonemalletsInstrument.Vibrato - Czstotliwo[ Vibrato FreqmalletsInstrument*Vibrato - Wzmocnienie Vibrato GainmalletsInstrument Wood1Wood1malletsInstrument Wood2Wood2malletsInstrumentWyglda na to, |e Twoja instalacja Stk jest niekompletna. Upewnij si, |e caBa paczka Stk zostaBa zainstalowana!aYour Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed!malletsInstrumentADSRADSRmalletsInstrumentView ADSR:ADSR:malletsInstrumentViewPochylenieBowedmalletsInstrumentViewCrossfade CrossfademalletsInstrumentViewCrossfade: Crossfade:malletsInstrumentViewTwardo[HardnessmalletsInstrumentViewTwardo[: Hardness:malletsInstrumentViewInstrument InstrumentmalletsInstrumentViewLFO - GBboko[ LFO DepthmalletsInstrumentView LFO - GBboko[: LFO Depth:malletsInstrumentViewLFO - Szybko[ LFO SpeedmalletsInstrumentViewLFO - Szybko[: LFO Speed:malletsInstrumentViewModulator ModulatormalletsInstrumentViewModulator: Modulator:malletsInstrumentViewRuchMotionmalletsInstrumentView Ruch:Motion:malletsInstrumentViewPozycjaPositionmalletsInstrumentViewPozycja: Position:malletsInstrumentViewCi[nieniePressuremalletsInstrumentViewCi[nienie: Pressure:malletsInstrumentViewPrdko[SpeedmalletsInstrumentViewPrdko[:Speed:malletsInstrumentViewRozstrzaBSpreadmalletsInstrumentViewRozstrzaB:Spread:malletsInstrumentViewStick Mix Stick MixmalletsInstrumentViewStick Mix: Stick Mix:malletsInstrumentViewVib-CzstVib FreqmalletsInstrumentViewVib-Czst: Vib Freq:malletsInstrumentViewVib-WzmVib GainmalletsInstrumentViewVib-Wzm: Vib Gain:malletsInstrumentViewVibratoVibratomalletsInstrumentViewVibrato:Vibrato:malletsInstrumentViewKliknij tutaj, je[li chcesz zsynchronizowa wszystkie parametry z wtyczk VST.EClick here if you want to synchronize all parameters with VST plugin.manageVSTEffectView$Synchronizacja VSTVST SyncmanageVSTEffectViewKliknij tutaj, je[li chcesz zsynchronizowa wszystkie parametry z wtyczk VST.EClick here if you want to synchronize all parameters with VST plugin.manageVestigeInstrumentView$Synchronizacja VSTVST SyncmanageVestigeInstrumentViewPomoc [&H]&HelpnineButtonSelectorZnieksztaBcenie DistortionorganicInstrumentGBo[no[VolumeorganicInstrument ZnieksztaBcenie: Distortion:organicInstrumentView>Osc %1 dokBadne strojenie lewo:Osc %1 fine detuning left:organicInstrumentView*Osc %1 panoramowanie:Osc %1 panning:organicInstrumentView Osc %1 gBo[no[:Osc %1 volume:organicInstrumentView Osc %1 przebieg:Osc %1 waveform:organicInstrumentViewRandomizuj RandomiseorganicInstrumentViewGBo[no[:Volume:organicInstrumentViewcent(y)centsorganicInstrumentViewBasyBasspapuInstrument"GBo[no[ kanaBu 1Channel 1 volumepapuInstrument"GBo[no[ kanaBu 2Channel 2 volumepapuInstrument"GBo[no[ kanaBu 3Channel 3 volumepapuInstrument"GBo[no[ kanaBu 4Channel 4 volumepapuInstrument*Poziom Wyj[cia LewegoLeft Output levelpapuInstrument>DBugo[ ka|dego kroku wobulacjiLength of each step in sweeppapuInstrument,Poziom Wyj[cia PrawegoRight Output levelpapuInstrument$Kierunek wobulacjiSweep directionpapuInstrumentOkres wobulacji Sweep timepapuInstrumentSopranyTreblepapuInstrument8Kierunek wobulacji gBo[no[ciVolume sweep directionpapuInstrumentBasyBasspapuInstrumentView Basy:Bass:papuInstrumentView Narysuj przebiegDraw the wave herepapuInstrumentView>DBugo[ ka|dego kroku wobulacjiLength of each step in sweeppapuInstrumentView@DBugo[ ka|dego kroku wobulacji:Length of each step in sweep:papuInstrumentView$Kierunek wobulacjiSweep DirectionpapuInstrumentViewOkres wobulacji Sweep TimepapuInstrumentView Okres wobulacji: Sweep Time:papuInstrumentViewSopranyTreblepapuInstrumentViewSoprany:Treble:papuInstrumentView8Kierunek wobulacji gBo[no[ciVolume Sweep DirectionpapuInstrumentView6Nie mo|na zamrozi patternuCannot freeze patternpatternW tej chwili pattern nie mo|e zosta zamro|ony poniewa| znajdujesz si w trybie odtwarzania. Zatrzymaj i sprbuj ponownie!_The pattern currently cannot be freezed because you're in play-mode. Please stop and try again!pattern AnulujCancelpatternFreezeStatusDialog,Zamra|anie patternu...Freezing pattern...patternFreezeStatusDialog%1 krokw%1 steps patternView 1 krok1 step patternViewDodaj kroki Add steps patternViewZmieD nazw Change name patternView,Wyczy[ wszystkie nutyClear all notes patternView ZamrzFreeze patternView8Otwrz w Edytorze PianolowymOpen in piano-roll patternViewZamrz ponownieRefreeze patternViewUsuD kroki Remove steps patternViewZresetuj nazw Reset name patternViewRozmrzUnfreeze patternViewPodwjne kliknicie otwiera pattern w Edytorze Pianolowym u|yj kBka myszy aby ustawi gBo[no[ poszczeglnych krokwWdouble-click to open this pattern in piano-roll use mouse wheel to set volume of a step patternViewKliknij tutaj, aby przej[ do trybu odstrojenia. W tym trybie mo|esz odstraja nuty w oknie, ktre otworzy si po klikniciu na nich. Ten tryb mo|esz aktywowa z poziomu klawiatury przez wci[nicie kombinacji 'Shift+T'.Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. pianoRollrKliknij tutaj, aby przej[ do trybu rysowania. W tym trybie mo|esz dodawa, przemieszcza i zmienia rozmiar nut To domy[lny tryb, ktry bdziesz u|ywa przez wikszo[ czasu. Mo|esz go aktywowa z poziomu klawiatury za pomoc skrtu 'Shift+D'. Przytrzymaj klawisz 'Ctrl' aby czasowo przej[ do trybu zaznaczenia.Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. pianoRoll(Kliknij tutaj, aby przej[ do trybu kasowania. W tym trybie mo|esz usuwa nuty. Mo|esz go aktywowa z poziomu klawiatury za pomoc skrtu 'Shift+E'.Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. pianoRollKliknij tutaj, aby przej[ do trybu zaznaczania. W tym trybie mo|esz zaznacza pojedyncze nuty lub caBe ich grupy. Alternatywnie mo|esz przytrzyma klawisz 'Ctrl' w trybie rysowania aby tymczasowo przej[ do trybu zaznaczania.Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. pianoRollKliknij tutaj a nuty ze schowka zostan przeklejone w miejsce zaznaczenia.XClick here and the notes from the clipboard will be pasted at the first visible measure. pianoRollKliknij tutaj a zaznaczone nuty zostan skopiowane do schowka. Mo|esz wklei je gdziekolwiek w dowolnym patternie za pomoc przycisku 'Wklej'.Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRoll0Kliknij tutaj a zaznaczone nuty zostan wycite i umieszczone w schowku. Mo|esz wklei je gdziekolwiek w dowolnym patternie za pomoc przycisku 'Wklej'.Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRollKliknij tutaj je[li chcesz odtworzy bie|cy pattern. Pattern zostanie automatycznie zaptlony.Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. pianoRollKliknij tutaj, aby nagra nuty z kontrolera MIDI lub wirtualnego pianina przypisanego do tego kanaBu. Podczas nagrywania wszystkie nuty ktre zagrasz zostan zapisane na pattern i bdziesz mgB odtworzy i edytowa je pzniej.Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. pianoRollKliknij tutaj, aby nagra nuty z kontrolera MIDI lub wirtualnego pianina przypisanego do tego kanaBu. Podczas nagrywania bdziesz sBysze utwr lub lini perkusyjn/basow a wszystkie nuty ktre zagrasz zostan zapisane na pattern.Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. pianoRollKliknij tutaj je[li chcesz zatrzyma odtwarzanie bie|cego patternu./Click here to stop playback of current pattern. pianoRoll@Skopiuj zaznaczone nuty (Ctrl+C)Copy selected notes (Ctrl+C) pianoRoll>Wytnij zaznaczone nuty (Ctrl+X)Cut selected notes (Ctrl+X) pianoRoll4Tryb odstrojenia (Shift+T)Detune mode (Shift+T) pianoRoll0Tryb rysowania (Shift+D)Draw mode (Shift+D) pianoRoll4Tryb wymazywania (Shift+E)Erase mode (Shift+E) pianoRollOstatnia nuta Last note pianoRoll$Panoramowanie Nuty Note Panning pianoRollGBo[no[ Nuty Note Volume pianoRollBlokada nuty Note lock pianoRoll<Wklej nuty ze schowka (Ctrl+V)#Paste notes from clipboard (Ctrl+V) pianoRoll*Edytor Pianolowy - %1Piano-Roll - %1 pianoRoll@Edytor Pianolowy - brak patternuPiano-Roll - no pattern pianoRollVOdtwrz/zatrzymaj aktualny pattern (Spacja)"Play/pause current pattern (Space) pianoRollJOtwrz pattern podwjnym klikniciem!/Please open a pattern by double-clicking on it! pianoRolldNagraj nuty za pomoc zewntrznego kontrolera MIDI+Record notes from MIDI-device/channel-piano pianoRollNagraj nuty za pomoc zewntrznego kontrolera MIDI w trakcie odtwarzania podkBadu dzwikowegoJRecord notes from MIDI-device/channel-piano while playing song or BB track pianoRoll4Tryb zaznaczania (Shift+S)Select mode (Shift+S) pianoRollbZatrzymaj odtwarzanie bie|cego patternu (Spacja)'Stop playing of current pattern (Space) pianoRollSyntezator Addytywny umo|liwiajcy stworzenie dzwikw zbli|onych brzmieniem do organw.*Additive Synthesizer for organ-like sounds pluginBrowser`Konfigurowalny syntezator tablicowy (wavetable)."Customizable wavetable synthesizer pluginBrowserPrzecignij instrument do Edytora Piosenki, Edytora Perkusji i Basu lub na wybran [cie|k.nDrag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. pluginBrowserBWbudowany syntezator ZynAddSubFX.Embedded ZynAddSubFX pluginBrowserFEmulator ukBadu APU GameBoy'a (TM).Emulation of GameBoy (TM) APU pluginBrowserEmulator ukBadu dzwikowego SID (MOS6581 i MOS8580) Te ukBady scalone byBy stosowane w komputerach Commodore 64.ZEmulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. pluginBrowserbFiltr do importowania projektw FL Studio w LMMS.1Filter for importing FL Studio projects into LMMS pluginBrowserTFiltr do importowania plikw MIDI do LMMS.)Filter for importing MIDI-files into LMMS pluginBrowser`Instrument kompatybilny z standardem sampli GUS.GUS-compatible patch instrument pluginBrowserfNiezupeBna monofoniczna emulacja syntezatora tb303.%Incomplete monophonic imitation tb303 pluginBrowser2Przegldarka instrumentwInstrument browser pluginBrowser*Instrumenty wtyczkoweInstrument plugins pluginBrowserDPoka| zainstalowane wtyczki LADSPAList installed LADSPA plugins pluginBrowser8Odtwarzacz plikw SoundFont.Player for SoundFont files pluginBrowserWtyczka do kontrolowania regulatorw za po[rednictwem szczytw dzwiku.-Plugin for controlling knobs with sound peaks pluginBrowserDWtyczka rozszerzajca baz stereo.=Plugin for enhancing stereo separation of a stereo input file pluginBrowserWtyczka do nieograniczonego manipulowania wyj[ciami stereofonicznymi.,Plugin for freely manipulating stereo output pluginBrowser@Melodyjny instrument paBeczkowy.Tuneful things to bang on pluginBrowserjHost VST pozwalajcy na u|ycie wtyczek VST(i) w LMMS.-VST-host for using VST(i)-plugins within LMMS pluginBrowser6Symulator drgajcej struny.Vibrating string modeler pluginBrowserbrak opisuno description pluginBrowserHWtyczka polepszajca brzmienie basu.plugin for boosting bass pluginBrowserWtyczka umo|liwiajca zaBadowanie dowolnego efektu LADSPA wewntrz LMMS.6plugin for using arbitrary LADSPA-effects inside LMMS. pluginBrowserWtyczka umo|liwiajca zaBadowanie dowolnego efektu VST wewntrz LMMS.3plugin for using arbitrary VST-effects inside LMMS. pluginBrowserProsty sampler z r|nymi ustawieniami pozwalajcy na wstawienie sampli bezpo[rednio na [cie|ki.Zsimple sampler with various settings for using samples (e.g. drums) in an instrument-track pluginBrowserTrzy pot|ne oscylatory, ktre mo|esz modulowa na kilka r|nych sposobw.;three powerful oscillators you can modulate in several ways pluginBrowsernWszechstronny syntezator do kick'u i stopy perkusyjnej.&versatile kick- & bassdrum-synthesizer pluginBrowserWytBu[ [&B]&Bold projectNotesKolor... &Color... projectNotes&Kopiuj&Copy projectNotesKursywa [&I]&Italic projectNotesJustowanie [&J]&Justify projectNotesLewo [&L]&Left projectNotes &Wklej&Paste projectNotesPowtrz [&R]&Redo projectNotesPrawo [&R]&Right projectNotes"Podkre[lenie [&U] &Underline projectNotesCofnij [&U]&Undo projectNotes Centrowanie [&E]C&enter projectNotes Ctrl+BCtrl+B projectNotes Ctrl+CCtrl+C projectNotes Ctrl+ECtrl+E projectNotes Ctrl+ICtrl+I projectNotes Ctrl+JCtrl+J projectNotes Ctrl+LCtrl+L projectNotes Ctrl+RCtrl+R projectNotes Ctrl+UCtrl+U projectNotes Ctrl+VCtrl+V projectNotes Ctrl+XCtrl+X projectNotes Ctrl+YCtrl+Y projectNotes Ctrl+ZCtrl+Z projectNotesWy&tnijCu&t projectNotesEdytuj Akcje Edit Actions projectNotesFormatowanieFormat Actions projectNotes Notatki projektu Project notes projectNotes\Umie[ tutaj swoje zapiski dotyczce projektu.!Put down your project notes here. projectNotesZmieD nazw... Rename... renameDialog2Pliki AIFF (*.aif *.aiff)AIFF-Files (*.aif *.aiff) sampleBufferPliki AU (*.au)AU-Files (*.au) sampleBufferWszystkie pliki Audio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3)SAll Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) sampleBuffer,Pliki DrumSynth (*.ds)DrumSynth-Files (*.ds) sampleBuffer&Pliki FLAC (*.flac)FLAC-Files (*.flac) sampleBuffer"Pliki MP3 (*.mp3)MP3-Files (*.mp3) sampleBuffer"Pliki OGG (*.ogg)OGG-Files (*.ogg) sampleBuffer"Otwrz plik audioOpen audio file sampleBuffer"Pliki RAW (*.raw)RAW-Files (*.raw) sampleBuffer&Pliki SPEEX (*.spx)SPEEX-Files (*.spx) sampleBuffer"Pliki VOC (*.voc)VOC-Files (*.voc) sampleBuffer"Pliki WAV (*.wav)Wave-Files (*.wav) sampleBuffer KopiujCopy sampleTCOView WytnijCut sampleTCOView:Skasuj (naci[nij rolk myszy)Delete (middle mousebutton) sampleTCOViewnWycisz/anuluj wyciszenie (<Ctrl> + kliknij rolk myszy)#Mute/unmute ( + middle click) sampleTCOView WklejPaste sampleTCOView,Ustaw/wyczy[ nagranieSet/clear record sampleTCOViewHwybierz sampla podwjnym klikniciemdouble-click to select sample sampleTCOViewZcie|ka audio Sample track sampleTrackGBo[no[Volume sampleTrack GBo[no[ kanaBu:Channel volume:sampleTrackView GBo[no[ [cie|ki Track volumesampleTrackViewVOLVOLsampleTrackViewINTERFEJS AUDIOAUDIO INTERFACE setupDialog"Katalog z grafikArtwork directory setupDialog Ustawienia audioAudio settings setupDialogROZMIAR BUFORA BUFFER SIZE setupDialogGrafika tBaBackground artwork setupDialog AnulujCancel setupDialogLWybierz katalog z instalacj FL Studio'Choose FL Studio installation directory setupDialog<Wybierz katalog wtyczek LADSPAChoose LADSPA plugin directory setupDialog8Wybierz katalog roboczy LMMSChoose LMMS working directory setupDialog6Wybierz katalog STK rawwaveChoose STK rawwave directory setupDialog2Wybierz katalog z grafikChoose artwork-theme directory setupDialog&Wybierz grafik tBaChoose background artwork setupDialog4Wybierz domy[lny SoundFontChoose default SoundFont setupDialog6Wybierz katalog wtyczek VST Choose your VST-plugin directory setupDialogDDomy[lnie kompresuj pliki projektu"Compress project files per default setupDialog.Domy[lny plik SoundfontDefault Soundfont File setupDialogFWyBcz wskazniki aktywno[ci kanaBw#Disable channel activity indicators setupDialogGBo[no[ w dBVDisplay volume as dBV  setupDialog"WBcz podpowiedziEnable tooltips setupDialog8Katalog instalacji FL Studio FL Studio installation directory setupDialog2Ramki: %1 Latencja: %2 msFrames: %1 Latency: %2 ms setupDialog*Podstawowe ustawieniaGeneral settings setupDialog\Tryb wysokiej jako[ci wyj[cia urzdzenia audioHQ-mode for output audio-device setupDialogTutaj mo|esz wybra preferowany interfejs MIDI. W zale|no[ci od konfiguracji systemu podczas kompilacji mo|esz wybiera pomidzy ALSA, OSS i innymi. Poni|ej znajduje si sekcja w ktrej mo|esz zmieni ustawienia wybranego interfejsu.Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. setupDialogTutaj mo|esz wybra preferowany interfejs audio. W zale|no[ci od konfiguracji Twojego systemu podczas kompilacji mo|esz wybiera pomidzy ALSA, JACK, OSS i innymi. Poni|ej znajduje si sekcja w ktrej mo|esz zmieni ustawienia wybranego interfejsu.Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. setupDialog Tutaj mo|esz ustawi rozmiar wewntrznego bufora u|ywanego przez LMMS. Ni|sze warto[ci skutkuj mniejsz latencj ale mog powodowa znieksztaBcenia dzwiku lub kiepsk wydajno[, zwBaszcza na starszych komputerach lub kernelach bez obsBugi czasu rzeczywistego.Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. setupDialog2Zcie|ki do wtyczek LADSPALADSPA plugin paths setupDialog(Katalog roboczy LMMSLMMS working directory setupDialogINTERFEJS MIDIMIDI INTERFACE setupDialogUstawienia MIDI MIDI settings setupDialogDODATKOWEMISC setupDialogOKOK setupDialogpTryb jednego, wsplnego okna dla wszystkich instrumentw One instrument track window mode setupDialog~Reakcja klawiatury muzycznej kanaBu tylko na bezpo[redni nacisk)Only press keys on channel-piano manually setupDialogZcie|kiPaths setupDialog*Ustawienia wydajno[ciPerformance settings setupDialogpWikszo[ zmian da efekt dopiero po zrestartowaniu LMMS!GPlease note that most changes won't take effect until you restart LMMS! setupDialog<Zresetuj do warto[ci domy[lnejReset to default-value setupDialogRestart LMMS Restart LMMS setupDialog&Katalog STK rawwaveSTK rawwave directory setupDialog"Konfiguracja LMMS Setup LMMS setupDialogrOstrze|enie o konieczno[ci restartu po zmianie parametrw,Show restart warning after changing settings setupDialogLPBynne przewijanie w Edytorze PiosenkiSmooth scroll in Song Editor setupDialog<Efekty interfejsu vs wydajno[UI effects vs. performance setupDialog&Katalog wtyczek VSTVST-plugin directory setupDialogBankBank sf2Instrument ChorusChorus sf2Instrument"GBboko[ chorusu Chorus Depth sf2InstrumentPoziom chorusu Chorus Level sf2InstrumentLinie chorusu Chorus Lines sf2Instrument Prdko[ chorusu Chorus Speed sf2InstrumentWzmocnienieGain sf2Instrument PrbkaPatch sf2Instrument PogBosReverb sf2Instrument"TBumienie pogBosuReverb Damping sf2InstrumentPoziom pogBosu Reverb Level sf2Instrument*Rozmiar pomieszczeniaReverb Roomsize sf2Instrument$Rozpito[ pogBosu Reverb Width sf2Instrument<NaB| chorus (je[li wspierane)Apply chorus (if supported)sf2InstrumentView<NaB| pogBos (je[li wspierane)Apply reverb (if supported)sf2InstrumentViewWybierz prbkChoose the patchsf2InstrumentView$GBboko[ chorusu: Chorus Depth:sf2InstrumentViewPoziom chorusu: Chorus Level:sf2InstrumentViewLinie chorusu: Chorus Lines:sf2InstrumentView"Prdko[ chorusu: Chorus Speed:sf2InstrumentViewRKliknij tutaj, aby otworzy inny plik SF2#Click here to open another SF2 filesf2InstrumentViewWzmocnienieGainsf2InstrumentView*Otwrz plik SoundFontOpen SoundFont filesf2InstrumentView4Otwrz inny plik SoundFontOpen other SoundFont filesf2InstrumentView$TBumienie pogBosu:Reverb Damping:sf2InstrumentViewPoziom pogBosu: Reverb Level:sf2InstrumentView,Rozmiar pomieszczenia:Reverb Roomsize:sf2InstrumentView&Rozpito[ pogBosu: Reverb Width:sf2InstrumentView0Pliki SoundFont2 (*.sf2)SoundFont2 Files (*.sf2)sf2InstrumentViewTen przycisk wBcza chorus. DziaBa tylko na plikach, ktre wspieraj t funkcj.uThis button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it.sf2InstrumentViewTen przycisk wBcza pogBos. DziaBa tylko na plikach, ktre wspieraj t funkcj.pThis button enables the reverb effect. This is useful for cool effects, but only works on files that support it.sf2InstrumentViewRodzaj scalaka Chip model sidInstrument.Czstotliwo[ granicznaCutoff sidInstrumentRodzaj filtru Filter type sidInstrument6Zafalowanie charakterystyki Resonance sidInstrumentWyBcz gBos 3 Voice 3 off sidInstrumentGBo[no[Volume sidInstrumentWarto[ ataku (Attack) okre[la jak szybko sygnaB wyj[ciowy gBosu %1 narasta od zera do warto[ci szczytowej.\Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude.sidInstrumentView Atak:Attack:sidInstrumentView2Filtr pasmowoprzepustowy Band-Pass filter sidInstrumentView(Zgrubne odstrojenie:Coarse:sidInstrumentView0Czstotliwo[ graniczna:Cutoff frequency:sidInstrumentViewWarto[ zanikania (Decay) decyduje jak szybko sygnaB wyj[ciowy opada od warto[ci szczytowej do ustalonego poziomu podtrzymania (Sustain).iDecay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level.sidInstrumentViewZanikanie:Decay:sidInstrumentViewFiltrowanyFilteredsidInstrumentView.Filtr grnoprzepustowy High-Pass filter sidInstrumentView.Filtr dolnoprzepustowy Low-Pass filter sidInstrumentViewMOS6581 SID  MOS6581 SID sidInstrumentViewMOS8580 SID  MOS8580 SID sidInstrumentViewSzumNoisesidInstrumentViewBSygnaB wyj[ciowy gBosu %1 bdzie utrzymywaB poziom podtrzymania (Sustain) tak dBugo, jak nuta bdzie odtwarzania (klawisz klawiatury muzycznej bdzie wci[nity).]Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held.sidInstrumentView(Przebieg Prostoktny Pulse WavesidInstrumentViewBWspBczynnik wypeBnienia impulsu: Pulse Width:sidInstrumentViewZwolnienie:Release:sidInstrumentView8Zafalowanie charakterystyki: Resonance:sidInstrumentView.Modulacja Pier[cieniowaRing-ModsidInstrumentView"Modulacja Pier[cieniowa (koBowa) podmienia sygnaB trjktny na wyj[ciu oscylatora %1 na pier[cieniowo zmodulowan kombinacj oscylatorw %1 i %2.}Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2.sidInstrumentView,Przebieg PiBoksztaBtnySawToothsidInstrumentViewPodtrzymanie:Sustain:sidInstrumentViewSynchronizacjaSyncsidInstrumentViewSynchronizacja koordynuje w czasie fundamentalne czstotliwo[ci oscylatorw %1 i %2 tworzc efekty "Hard Sync".Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects.sidInstrumentViewTestTestsidInstrumentViewKiedy wBczony jest Test, oscylator %1 zostanie czasowo zresetowany i zablokowany.PTest, when set, resets and locks Oscillator %1 at zero until Test is turned off.sidInstrumentViewZgrubne odstrojenie pozwala zmieni wysoko[ gBosu %1 o oktaw w gr lub w dB.DThe Coarse detuning allows to detune Voice %1 one octave up or down.sidInstrumentView*WspBczynnik wypeBnienia impulsu okre[la stosunek czasu trwania impulsu do okresu tego impulsu. Pozwala na pBynn zmian wysoko[ci tonu bez dostrzegalnego przej[cia midzy dzwikami. Nale|y wybra prostoktny ksztaBt fali oscylatora %1 aby dostrzec jakikolwiek sByszalny efekt.The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect.sidInstrumentView(SygnaB wyj[ciowy gBosu %1 opadnie od poziomu podtrzymania (Sustain) do poziomu zerowego po czasie okre[lonym przez parametr wybrzmiewania (Release).jThe output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate.sidInstrumentView$Przebieg Trjktny Triangle WavesidInstrumentViewWyBcz gBos 3  Voice3 Off sidInstrumentViewGBo[no[:Volume:sidInstrumentViewDKiedy wBczona jest filtracja, gBos %1 bdzie przetwarzany przez filtr. Kiedy filtracja jest wyBczona, gBos %1 pojawi si bezpo[rednio na wyj[ciu, bez filtracji.When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it.sidInstrumentViewwszystkie plikiAll file typessongPusty projekt Empty projectsong$projekty FL StudioFL Studio projectssongImportuj plik Import filesongsekwencje MIDIMIDI sequencessong$GBwne odstrojenie Master pitchsongGBwna gBo[no[ Master volumesong4Projekt NIE JEST zapisany.Project NOT saved.song Projekt zapisany Project savedsongRWybierz plik aby wyeksportowa projekt...!Select file for project-export...song TempoTemposongFProjekt %1 zostaB wBa[nie zapisany.The project %1 is now saved.song:Projekt %1 nie jest zapisany!The project %1 was not saved!songTen projekt jest pusty wic eksportowanie go nie ma najmniejszego sensu. Najpierw umie[ kilka elementw w Edytorze Piosenki!`This project is empty so exporting makes no sense. Please put some items into Song Editor first!songniezatytuBowaneuntitledsong0Dodaj [cie|k automatykiAdd automation-track songEditor:Dodaj lini basow/perkusyjnAdd beat/bassline songEditor0Dodaj [cie|k z samplamiAdd sample-track songEditor<Kliknij tutaj, je[li chcesz odtworzy caB piosenk. Odtwarzanie rozpocznie si od zielonego znacznika pozycji. Mo|esz go przemieszcza w trakcie odtwarzania.Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. songEditorKliknij tutaj, je[li chcesz zatrzyma odtwarzanie piosenki. Znacznik pozycji zostanie ustawiony na pocztek utworu.uClick here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. songEditor0Nie mo|na otworzy plikuCould not open file songEditortNie da si otworzy pliku %1. Prawdopodobnie nie posiadasz uprawnieD do odczytu tego pliku. Upewnij si, |e masz przynajmniej uprawnienia odczytu tego pliku a nastpnie sprbuj ponownie.Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. songEditor.Nie mo|na zapisa plikuCould not write file songEditor8Nie mo|na zapisa pliku %1. Prawdopodobnie nie posiadasz uprawnieD zapisu do tego pliku. Upewnij si, |e masz prawo zapisu do tego pliku i sprbuj ponownie.Could not write file %1. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. songEditorTryb rysowania Draw mode songEditorVTryb edycji (zaznaczanie i przemieszczanie)Edit mode (select and move) songEditorBBd w pliku Error in file songEditor*Tryb wysokiej jako[ciHigh quality mode songEditor$Odstrojenie gBwne Master pitch songEditorGBo[no[ gBwna Master volume songEditor2Odtwrz piosenk (Spacja)Play song (Space) songEditor@Nagraj sample z urzdzenia audio Record samples from Audio-device songEditorNagrywa sample z urzdzenia audio podczas odtwarzania piosenki lub [cie|ki perkusji/basu?Record samples from Audio-device while playing song or BB track songEditor"Edytor Kompozycji Song-Editor songEditorNZatrzymaj odtwarzanie piosenki (Spacja)Stop song (Space) songEditorTEMPO/BPM TEMPO/BPM songEditor TempoTempo songEditorWyglda na to, |e plik %1 zawiera bBdy i nie mo|e zosta zaBadowany.BThe file %1 seems to contain errors and therefore can't be loaded. songEditorTempo piosenki jest wyra|ane w uderzeniach na minut (BPM, Beats Per Minute). Je[li chcesz zmieni szybko[ swojej piosenki zmodyfikuj t warto[. Ka|dy takt zawiera cztery uderzenia, std tempo w BPM wyra|a jak wiele taktw / 4 powinno by odtworzone w cigu minuty (albo - je[li wolisz - jak wiele taktw ma by odtworzonych w cigu 4 minut).-The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). songEditor(Warto[: %1 pBtonwValue: %1 semitones songEditorWarto[: %1% Value: %1% songEditor$odstrojenie gBwne master pitch songEditorgBo[no[ gBwna master volume songEditortempo piosenki tempo of song songEditor,O[ Y skalowana liniowo Linear Y axisspectrumAnalyzerControlDialog4Spektrum skalowane liniowoLinear spectrumspectrumAnalyzerControlDialogTryb kanaBu Channel modespectrumAnalyzerControls,O[ Y skalowana liniowo Linear Y-axisspectrumAnalyzerControls4Spektrum skalowane liniowoLinear spectrumspectrumAnalyzerControlsROZSZERZWIDEstereoEnhancerControlDialogSzeroko[:Width:stereoEnhancerControlDialogSzeroko[WidthstereoEnhancerControls4GBo[no[ Lewy IN Lewy OUT:Left to Left Vol:stereoMatrixControlDialog6GBo[no[ Lewy IN Prawy OUT:Left to Right Vol:stereoMatrixControlDialog6GBo[no[ Prawy IN Lewy OUT:Right to Left Vol:stereoMatrixControlDialog8GBo[no[ Prawy IN Prawy OUT:Right to Right Vol:stereoMatrixControlDialog&Lewy IN >> Lewy OUT Left to LeftstereoMatrixControls(Lewy IN >> Prawy OUT Left to RightstereoMatrixControls(Prawy IN >> Lewy OUT Right to LeftstereoMatrixControls*Prawy IN >> Prawy OUTRight to RightstereoMatrixControlsBPo zatrzymaniu powr do pocztkuAfter stopping go back to begintimeLinePo zatrzymaniu powr do pozycji z ktrej rozpoczto odtwarzanie?After stopping go back to position at which playing was startedtimeLine>Po zatrzymaniu utrzymaj pozycjAfter stopping keep positiontimeLine8WBcz/wyBcz autoprzewijanieEnable/disable auto-scrollingtimeLine8WBcz/wyBcz znaczniki ptliEnable/disable loop-pointstimeLineWskazwkaHinttimeLinevNaci[nij <Ctrl> aby wyBczy przyciganie znacznikw ptli.-Press to disable magnetic loop-points.timeLineWyciszoneMutedtrackSoloSolotrack AnulujCanceltrackContainerDNie mo|na odnalez filtra do zaimportowania pliku %1. Powinienie[ przekonwertowa ten plik do formatu wspieranego przez LMMS z pomoc zewntrznego oprogramowania.Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software.trackContainer8Nie mo|na zaimportowa plikuCouldn't import filetrackContainer0Nie mo|na otworzy plikuCouldn't open filetrackContainer6Nie da si otworzy pliku %1 do odczytu. Upewnij si, |e masz uprawnienia do odczytu tego pliku i katalogu zawierajcego plik a nastpnie sprbuj ponownie!Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again!trackContainer2Importowanie pliku FLP...Importing FLP-file...trackContainer4Importowanie pliku MIDI...Importing MIDI-file...trackContainer*Aadowanie projektu...Loading project...trackContainer Prosz czeka...Please wait...trackContainerWyciszoneMutedtrackContentObject,%1:%2 (%3:%4 do %5:%6)%1:%2 (%3:%4 to %5:%6)trackContentObjectView KopiujCopytrackContentObjectView Aktualna dBugo[Current lengthtrackContentObjectViewBie|ca pozycjaCurrent positiontrackContentObjectView WytnijCuttrackContentObjectView8Kasuj (naci[nij rolk myszy)Delete (middle mousebutton)trackContentObjectViewWskazwkaHinttrackContentObjectViewtWycisz/anuluj wyciszenie (<Ctrl> + kliknicie rolk myszy)#Mute/unmute ( + middle click)trackContentObjectView WklejPastetrackContentObjectViewbNaci[nij <Ctrl> i przecignij aby stworzy kopi.%Press and drag to make a copy.trackContentObjectViewHNaci[nij <Ctrl> aby zmieni rozmiar.Press for free resizing.trackContentObjectView*Akcje dla tej [cie|kiActions for this tracktrackOperationsWidget"Klonuj t [cie|kClone this tracktrackOperationsWidgetWyciszenieMutetrackOperationsWidget"Wycisz t [cie|kMute this tracktrackOperationsWidgetNaci[nij <Ctrl> podczas przecigania elementu kursorem aby rozpocz now akcj 'przecignij i upu['.KPress while clicking on move-grip to begin a new drag'n'drop-action.trackOperationsWidgetUsuD t [cie|kRemove this tracktrackOperationsWidgetSoloSolotrackOperationsWidgetLAadowanie wtyczki VST nie powiodBo siFailed loading VST-pluginvestigeInstrument"Aadowanie wtyczkiLoading pluginvestigeInstrumentNAadowanie wtyczki VST. Prosz czeka...'Please wait while loading VST-plugin...vestigeInstrumentjWtyczka VST %1 nie mo|e zosta zaBadowana z jakiego[ powodu. Je[li pracuje normalnie z innym oprogramowaniem VST pod Linuksem prosz koniecznie skontaktowa si z developerami LMMS!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer!vestigeInstrumentOdstrojenie %1 Detune %1vibedRozmycie %1 Fuzziness %1 vibedImpuls %1 Impulse %1vibedDBugo[ %1 Length %1vibedOktawa %1 Octave %1vibed Panoramowanie %1Pan %1vibed&Punkt Wymuszenia %1Pick %1 positionvibed,Punkt Monitorowania %1Pickup %1 positionvibed*String %1 - sztywno[String %1 stiffnessvibed(String %1 - gBo[no[String %1 volumevibed &Pomoc&Help vibedViewZKliknij tutaj, aby wBczy/wyBczy przebieg.&Click here to enable/disable waveform. vibedViewTKliknij tutaj, aby znormalizowa przebieg.!Click here to normalize waveform. vibedViewLKliknij tutaj, aby wygBadzi przebieg.Click here to smooth waveform. vibedViewOdstrojenie:Detune: vibedViewWBcz przebiegEnable waveform vibedViewRozmycie: Fuzziness: vibedViewEdytor ImpulsuImpulse Editor vibedView<Wymuszenie lub stan pocztkowyImpulse or initial state vibedViewDBugo[:Length: vibedViewNormalizacja Normalize vibedView OktawaOctave vibedViewPanoramowanie:Pan: vibedView"Punkt Wymuszenia:Pick position: vibedView(Punkt Monitorowania:Pickup position: vibedView,Przebieg PiBoksztaBtnySaw wave vibedView*Przebieg Sinusoidalny Sine wave vibedViewWygBadzanieSmooth vibedView(Przebieg Prostoktny Square wave vibedView StrunaString vibedView"Sztywno[ struny:String stiffness: vibedViewPrzeBcznik 'Imp' okre[la czy przebieg z wykresu ma by wymuszeniem przyBo|onym struny czy ma odpowiada za pocztkowy jej stan (ksztaBt).The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. vibedViewPokrtBo 'P' ustala pozycj punktu w ktrym wymuszenie zostanie przyBo|one do struny.The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. vibedViewPokrtBo 'PU' ustala pozycj punktu w ktrym bd monitorowane (nasBuchiwane) drgania struny.The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. vibedViewPokrtBo 'S' ustala sztywno[ wybranej struny. Sztywno[ struny okre[la jak dBugo bdzie ona drga. Ni|sze sztywno[ci wydBu|aj czas drgaD.The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. vibedViewZPokrtBo 'V' ustala gBo[no[ wybranej struny.4The 'V' knob sets the volume of the selected string. vibedViewbPokrtBo 'Odstrojenie' modyfikuje wysoko[ tonu wybranej struny. Warto[ci ni|sze ni| zero powoduj spBaszczenie brzmienia. Warto[ci powy|ej zera skutkuj wyostrzeniem brzmienia.The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. vibedView8PokrtBo dBugo[ci sBu|y do zmiany dBugo[ci wybranej struny. DBu|sza struna bdzie drga dBu|ej i ja[niej, jednak zu|yje wicej mocy obliczeniowej procesora.The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. vibedViewPrzeBcznik oktawy sBu|y do wyboru, na jakich czstotliwo[ciach harmonicznych bdzie drga struna. Na przykBad ustawienie warto[ci -2 sprawi, |e otrzymamy dzwik dwie oktawy ni|szy od czstotliwo[ci podstawowej struny, warto[ 'F' oznacza, |e otrzymany dzwik bdzie miaB czstotliwo[ zgodn z czstotliwo[ci fundamentaln za[ warto[ '6' przesunie czstotliwo[ drgaD o 6 oktaw w gr.#The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. vibedViewPokrtBo 'Pan' determinuje poBo|enie wybranej struny w przestrzeni stereo.PThe Pan knob determines the location of the selected string in the stereo field. vibedViewTPokrtBo Slap dodaje nieco efektu fuzz do wybranej struny, sByszalnego zwBaszcza podczas fazy ataku. Mo|e by u|ywane aby uczyni brzmienie struny bardziej 'metalicznym'.The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. vibedViewPrzeBcznik struny sBu|y wyboru struny, ktr bdziemy modyfikowa. Instrument Vibed mo|e zawiera do 9 niezale|nych ukBadw drgajcych. Kontrolka LED w prawym dolnym rogu edytora ksztaBtu fali pokazuje, czy wybrana struna jest aktywna.The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. vibedViewEdytor ksztaBtu przebiegu pozwala kontrolowa struktur impulsu, ktry powoduje wzbudzenie drgaD struny. Przycisk po prawej umo|liwia wybr ksztaBtu fali. Przycisk '?' zaBaduje przebieg z pliku - jedynie pierwsze 128 prbek zostanie zaBadowanych. Przebieg mo|e zosta narysowany rcznie. Przycisk 'S' wygBadza przebieg. Przycisk 'N' normalizuje przebieg.The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. vibedView$Przebieg Trjktny Triangle wave vibedViewdU|yj fali piBoksztaBtnej dla bie|cego oscylatora.&Use a saw-wave for current oscillator. vibedViewbU|yj fali sinusoidalnej dla bie|cego oscylatora.'Use a sine-wave for current oscillator. vibedView`U|yj fali prostoktnej dla bie|cego oscylatora.)Use a square-wave for current oscillator. vibedView\U|yj fali trjktnej dla bie|cego oscylatora.+Use a triangle-wave for current oscillator. vibedViewU|yj fali zdefiniowanej przez u|ytkownika dla bie|cego oscylatora.3Use a user-defined waveform for current oscillator. vibedViewXU|yj biaBego szumu dla bie|cego oscylatora.'Use white-noise for current oscillator. vibedViewNPrzebieg zdefiniowany przez u|ytkownikaUser defined wave vibedViewDSymulator do dziewiciu niezale|nych, wibrujcych strun. PrzeBcznik struny umo|liwia wybr strun, ktre maj by edytowane. PrzeBcznik oktawy okre[la czstotliwo[ci harmoniczne, na ktrych bdzie drga struna. Wykres umo|liwia zadanie ksztaBtu wymuszenia, ktre wprawia strun w drgania. PokrtBo 'V' reguluje gBo[no[. GaBka 'S' modyfikuje sztywno[ struny. PokrtBo 'P' zmienia poBo|enie Punktu Wymuszenia. GaBka 'PU' zmienia poBo|enie Punktu Monitorowania. PokrtBo 'Slap' dodaje do dzwiku struny troch efektu fuzz. PokrtBo 'DBugo[' reguluje dBugo[ struny. Kontrolka LED w prawym dolnym rogu edytora ksztaBtu fali pokazuje, czy wybrana struna jest aktywna.hVibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. vibedViewGBo[no[:Volume: vibedViewBiaBy SzumWhite noise wave vibedView&Kliknij aby wBczyClick to enablevisualizationWidget|Kliknij tutaj, aby wBczy/wyBczy wizualizacj kanaBu master6click to enable/disable visualization of master-outputvisualizationWidgetAtak gBosu %1Voice %1 attack voiceObject8Zgrubne odstrojenie gBosu %1Voice %1 coarse detuning voiceObject$Zanikanie gBosu %1Voice %1 decay voiceObject(Filtrowanie gBosu %1Voice %1 filtered voiceObjectRWspBczynnik wypeBnienia impulsu gBosu %1Voice %1 pulse width voiceObject,Wybrzmiewanie gBosu %1Voice %1 release voiceObject@Modulacja pier[cieniowa gBosu %1Voice %1 ring modulate voiceObject*Podtrzymanie gBosu %1Voice %1 sustain voiceObject.Synchronizacja gBosu %1 Voice %1 sync voiceObjectTest gBosu %1 Voice %1 test voiceObject*KsztaBt fali gBosu %1Voice %1 wave shape voiceObject , lmms-1.0.0+bzr2569/data/locale/pl.ts0000644000000000000000000076016312307165142015076 0ustar 00000000000000 AboutDialog About LMMS O programie LMMS LMMS (Linux MultiMedia Studio) LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) Wersja %1 (%2/%3, Qt %4, %5) About Informacje LMMS - easy music production for everyone LMMS - łatwa produkcja muzyczna dla każdego Authors Autorzy Translation Tłumaczenie Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! Spolszczenie LMMS: Radek Słowik Podziękowania dla: Marii Słowik - za wstępną korektę, Tomasza Gradowskiego - za cenne uwagi i sugestie zmian. Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: radek[małpka]vibender[kropka]com License Licencja Copyright (c) 2004-2014, LMMS developers Copyright (c) 2004-2010, LMMS developers {2004-2014,?} <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE URZĄDZENIE CHANNELS KANAŁY AudioFileProcessorView Open other sample Otwórz inną próbkę Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Kliknij w tym miejscu jeśli chcesz załadować inny plik audio. Otworzy się okno gdzie będziesz mógł zaznaczyć wybrany plik. Ustawienia takie jak tryb pętli, punkty początku i końca, wartość wzmocnienia i inne nie zostaną zresetowane więc to co uzyskasz może brzmieć inaczej niż oryginalna próbka. Reverse sample Odwróć próbkę If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Jeśli uaktywnisz tę kontrolkę cała próbka będzie odtwarzana wstecz. Może to być przydatne do stworzenia efektów dźwiękowych np. puszczonej wstecz blachy crash. Loop sample at start- and end-point Zapętl próbkę od znacznika początkowego do końcowego Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Jeśli uaktywnisz tę kontrolkę próbka będzie odtwarzana w zakresie od znacznika początkowego do końcowego podczas gdy klawisz instrumentu jest naciśnięty. Może być to przydatne w przypadku sampli instrumentów strunowych czy chórków. Amplify: Wzmocnienie: With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Za pomocą tego pokrętła możesz ustawić współczynnik wzmocnienia. Domyślną wartością jest 100%. Poniżej próbka jest ściszana a powyżej podgłaśniana (zmiany nie mają wpływu na sam plik sampla!) Startpoint: Znacznik-początkowy: With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Za pomocą tego pokrętła możesz ustawić położenie znacznika początku odtwarzania, czyli miejsca, od którego próbka ma być odtwarzana. Gdy uaktywnisz tryb zapętlenia będzie to punkt do którego Sampler będzie powracał jeśli nuta jest dłuższa niż wycinek próbki pomiędzy znacznikami początku i końca. Endpoint: Znacznik końcowy: With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Za pomocą tego pokrętła możesz ustawić położenie znacznika końca odtwarzania, czyli miejsca gdzie kończy się odtwarzanie próbki. Gdy uaktywnisz tryb zapętlenia będzie to punkt z którego Sampler będzie przeskakiwał do znacznika początkowego jeśli nuta jest dłuższa niż wycinek próbki pomiędzy znacznikami początku i końca. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted Klient JACK zrestartowany LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. LMMS został odrzucony przez JACK z jakiegoś powodu. Back-end LMMSa został zrestartowany więc możesz ponownie dokonać ręcznych połączeń. JACK server down Serwer JACK wyłączony The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. Wydaje się, że serwer JACK został wyłączony i uruchomienie nowej instancji nie powiodło się więc LMMS nie może kontynuować pracy. Należy zapisać projekt i uruchomić serwer JACK i LMMSa ponownie. AudioJack::setupWidget CLIENT-NAME NAZWA-KLIENTA CHANNELS KANAŁY AudioOss::setupWidget DEVICE URZĄDZENIE CHANNELS KANAŁY AudioPortAudio::setupWidget BACKEND BACKEND DEVICE URZĄDZENIE AudioPulseAudio::setupWidget DEVICE URZĄDZENIE CHANNELS KANAŁY AudioSdl::setupWidget DEVICE URZĄDZENIE AutomatableModel &Reset (%1%2) &Resetuj (%1%2) &Copy value (%1%2) &Kopiuj wartość (%1%2) &Paste value (%1%2) &Wklej wartość (%1%2) Edit song-global automation Edytuj globalną automatykę utworu Connected to %1 Podłączony do %1 Connected to controller Podłączony do kontrolera Edit connection... Edytuj połączenie... Remove connection Usuń połączenie Connect to controller... Podłącz do kontrolera... Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) Odtwórz/zatrzymaj aktualny pattern (Spacja) Stop playing of current pattern (Space) Zatrzymaj odtwarzanie aktualnego patternu (Spacja) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Kliknij tutaj jeśli chcesz odtworzyć aktualny pattern. Ta opcja jest przydatna przy edytowaniu patternu - zostanie on automatycznie zapętlony. Click here if you want to stop playing of the current pattern. Kliknij tutaj jeśli chcesz zatrzymać odtwarzanie aktualnego patternu. Draw mode (Shift+D) Tryb rysowania (Shift+D) Erase mode (Shift+E) Tryb wymazywania (Shift+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. Kliknij tutaj aby przejść do trybu rysowania. W tym trybie możesz dodawać i przemieszczać pojedyńcze wartości. To domyślny tryb, który będziesz wykorzystywać przez większość czasu. Możesz go aktywować z poziomu klawiatury za pomocą skrótu 'Shift+D'. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. Kliknij tutaj aby przejść do trybu kasowania. W tym trybie możesz usuwać pojedyńcze wartości. Możesz go aktywować z poziomu klawiatury za pomocą skrótu 'Shift+E'. Cut selected values (Ctrl+X) Wytnij zaznaczone elementy (Ctrl+X) Copy selected values (Ctrl+C) Skopiuj zaznaczone elementy (Ctrl+C) Paste values from clipboard (Ctrl+V) Wklej zaznaczone elementy (Ctrl+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Kliknij tutaj a zaznaczone elementy zostaną wycięte i umieszczone w schowku. Możesz je wkleić gdziekolwiek w dowolnym patternie za pomocą przycisku 'Wklej'. Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Kliknij tutaj a zaznaczone elementy zostaną skopiowane do schowka. Możesz je wkleić gdziekolwiek w dowolnym patternie za pomocą przycisku 'Wklej'. Click here and the values from the clipboard will be pasted at the first visible measure. Kliknij tutaj a elementy ze schowka zostaną przeklejone w miejsce zaznaczenia. Automation Editor - no pattern Edytor automatyki - brak patternu Automation Editor - %1 Edytor Automatyki - %1 Please open an automation pattern with the context menu of a control! Otwórz pattern automatyki za pomocą menu kontekstowego regulatora! Values copied Wartości skopiowane All selected values were copied to the clipboard. Wszystkie zaznaczone wartości zostały skopiowane do schowka. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> Przeciągnij trzymając wciśnięty klawisz <Ctrl> AutomationPatternView double-click to open this pattern in automation editor Podwójne kliknięcie otwiera ten pattern w edytorze automatyki Open in Automation editor Otwórz w Edytorze Automatyki Clear Wyczyść Reset name Zresetuj nazwę Change name Zmień nazwę %1 Connections %1 Połączenia Disconnect "%1" Rozłącz "%1" AutomationTrack Automation track Ścieżka automatyki Controller Controller %1 Kontroler %1 ControllerConnectionDialog Connection Settings Ustawienia Połączenia MIDI CONTROLLER KONTROLER MIDI Input channel Kanał wejściowy CHANNEL KANAŁ Input controller Kontroler wejściowy CONTROLLER KONTROLER Auto Detect Autodetekcja MIDI-devices to receive MIDI-events from Urządzenia MIDI odbierające zdarzenia MIDI z USER CONTROLLER KONTROLER UŻYTKOWNIKA MAPPING FUNCTION FUNKCJA MAPOWANIA OK OK Cancel Anuluj LMMS LMMS Cycle Detected. Detekcja Cyklu. ControllerRackView Controller Rack Rack Kontrolerów Add Dodaj Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls Ustaw Controllers are able to automate the value of a knob, slider, and other controls. Kontrolery umożliwiają automatyzację wartości pokręteł, suwaków i innych regulatorów. Rename controller Zmień nazwę kontrolera Enter the new name for this controller Wprowadź nową nazwę dla tego kontrolera &Remove this plugin &Usuń tę wtyczkę &Help &Pomoc Effect Effect enabled Efekt włączony Wet/Dry mix Miksowanie Suchy/Mokry Gate Bramka Decay Zanikanie EffectChain Effects enabled Efekty włączone EffectRackView EFFECTS CHAIN ŁAŃCUCH EFEKTOWY Add effect Dodaj efekt EffectSelectDialog Add effect Dodaj efekt Plugin description Opis wtyczki EffectView Toggles the effect on or off. Włącza/wyłącza efekt. On/Off On/Off W/D W/D Wet Level: Poziom 'Mokrego' (Wet): The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. Pokrętło Mokry/Suchy (Wet/Dry) określa współczynnik pomiędzy sygnałem nieprzetworzonym a sygnałem po nałożeniu efektu. Wartości dodatnie domiksowywują sygnał przetworzony w fazie a ujemne w przeciwfazie do sygnału nieprzetworzonego. DECAY ZANIK. Time: Czas: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. Pokrętło zanikania określa jak długo będzie trwało przetwarzanie sygnału przez wtyczkę. Niższe wartości zmniejszają obciążenie procesora ale mogą skutkować obcinaniem ogona pogłosowego w deley'ach i reverb'ach. GATE BRAM. Gate: Bramka: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. Pokrętło bramki określa poziom sygnału, który zostanie rozpoznany jako cisza aby zatrzymać przetwarzanie sygnału. Controls Ustaw Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. Łańcuch wtyczek efektowych w którym sygnał przetwarzany jest od góry do dołu. Kontrolka 'On/Off' umożliwia pominięcie danej wtyczki w każdej chwili. Pokrętło 'Suchy/Mokry' (Wet/Dry) określa współczynnik mieszania sygnału wejściowego z sygnałem przetworzonym przez wtyczkę. Sygnał wyjściowy wtyczki jest równocześnie sygnałem wejściowym wtyczki następnej. Pokrętło 'Zanikanie' określa jak długo sygnał będzie przetwarzany przez wtyczkę po zakończeniu nuty. Wtyczka zakończy przetwarzanie gdy poziom sygnału zmniejszy się poniżej zadanego progu w danym okresie czasu. Ta gałka określa właśnie ten czas. Krótszy będzie skutkować mniejszym obciążeniem procesora ale w przypadku długo wybrzmiewających efektów - np. delay czy reverb - lepiej go zwiększyć. Pokrętło 'Bramka' określa próg sygnału przy którym wtyczka kończy działanie. Przycisk 'Regulatory' otwiera okno w którym można dostosować parametry wtyczki. Prawoklik otwiera menu kontekstowe z pomocą którego można zmienić porządek efektów w łańcuchu lub usunąć wybrane efekty. Move &up Przemieść w &górę Move &down Przemieść w &dół &Remove this plugin &Usuń tę wtyczkę &Help &Pomoc EnvelopeAndLfoParameters Predelay Opóźnienie Attack Atak Hold Przetrzymanie Decay Zanikanie Sustain Podtrzymanie Release Wybrzmiewanie Modulation Modulacja LFO Predelay Opóźnienie LFO LFO Attack Atak LFO LFO speed Szybkość LFO LFO Modulation Modulacja LFO LFO Wave Shape Kształt fali LFO Freq x 100 Częstotliwość x 100 Modulate Env-Amount Współczynnik modulacji obwiedni EnvelopeAndLfoView DEL DEL Predelay: Opóźnienie: Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. Użyj tego pokrętła aby ustawić czas wstępnego opóźnienia dla obwiedni sygnału. ATT ATT Attack: Atak: Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. Użyj tego pokrętła aby ustawić czas ataku obwiedni. HOLD HOLD Hold: Przetrzymanie: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. Użyj tego pokrętła aby ustawić czas przetrzymania obwiedni. DEC DEC Decay: Zanikanie: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. Użyj tego pokrętła aby ustawić czas zanikania obwiedni. SUST SUST Sustain: Podtrzymanie: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. Użyj tego pokrętła aby ustawić poziom podtrzymania obwiedni. REL REL Release: Wybrzmiewanie: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. Użyj tego pokrętła aby ustawić czas wybrzmiewania obwiedni. AMT AMT Modulation amount: Współczynnik modulacji: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. Użyj tego pokrętła aby ustawić współczynnik modulacji sygnału przez generator obwiedni. LFO predelay: Opóźnienie LFO: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. Użyj tego pokrętła aby ustawić czas opóźnienia LFO. LFO- attack: Atak LFO: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. Użyj tego pokrętła aby ustawić czas ataku LFO. SPD SPD LFO speed: Szybkość LFO: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. Użyj tego pokrętła aby ustawić prędkość oscylacji LFO. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. Użyj tego pokrętła aby ustawić współczynnik modulacji sygnału przez Generator Przebiegów Wolnozmiennych (LFO). Click here for a sine-wave. Kliknij tutaj aby przełączyć na falę sinusoidalną. Click here for a triangle-wave. Kliknij tutaj aby przełączyć na falę trójkątną. Click here for a saw-wave for current. Kliknij tutaj aby przełączyć na falę piłokształtną. Click here for a square-wave. Kliknij tutaj aby przełączyć na falę prostokątną. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. Kliknij tutaj aby przełączyć na kształt fali zdefiniowany przez użytkownika. Po tym fakcie przeciągnij do okna LFO próbkę ze zdefiniowanym wcześniej kształtem fali. FREQ x 100 FREQ x 100 Click here if the frequency of this LFO should be multiplied by 100. Kliknij tutaj aby 100-krotnie zwiększyć częstotliwość LFO. multiply LFO-frequency by 100 częstotliwość LFO razy 100 MODULATE ENV-AMOUNT MODULUJ WSPÓŁCZYNNIK OBWIEDNI Click here to make the envelope-amount controlled by this LFO. Kliknij tutaj aby LFO kontrolował współczynnik modulacji sygnału przez obwiednię. control envelope-amount by this LFO kontroluj współczynnik obwiedni przez ten LFO ms/LFO: ms/LFO: Hint Wskazówka Drag a sample from somewhere and drop it in this window. Przeciągnij próbkę skądkolwiek i upuść w tym oknie. ExportProjectDialog Export project Eksportuj projekt Output Wyjście File format: Format pliku: Samplerate: Częstotliwość próbkowania: 44100 Hz 44100 Hz 48000 Hz 48000 Hz 88200 Hz 88200 Hz 96000 Hz 96000 Hz 192000 Hz 192000 Hz Bitrate: Przepływność: 64 KBit/s 64 KBit/s 128 KBit/s 128 KBit/s 160 KBit/s 160 KBit/s 192 KBit/s 192 KBit/s 256 KBit/s 256 KBit/s 320 KBit/s 320 KBit/s Depth: Rozdzielczość bitowa: 16 Bit Integer 16 Bit Integer 32 Bit Float 32 Bit Float Please note that not all of the parameters above apply for all file formats. Zauważ, że nie wszystkie powyższe parametry odnoszą się do wszystkich formatów zapisu. Quality settings Ustawienia jakości Interpolation: Interpolacja: Zero Order Hold Podtrzymanie Zerowego Rzędu (ZOH) Sinc Fastest Sinc Najszybsza Sinc Medium (recommended) Sinc Średnia (zalecana) Sinc Best (very slow!) Sinc Najlepsza (koszmarnie wolna!) Oversampling (use with care!): Nadpróbkowanie (używać ostrożnie!): 1x (None) 1x (Brak) 2x 2x 4x 4x 8x 8x Sample-exact controllers Nie mam pojęcia co oznacza i jak działa opcja 'sample-exact' Kontrolery 'Sample-exact' Alias-free oscillators Oscylatory bez aliasów Start Rozpocznij Cancel Anuluj Export as loop (remove end silence) FxMixer Master Master FX %1 FX %1 FxMixerView Rename FX channel Zmień nazwę kanału efektowego Enter the new name for this FX channel Wprowadź nową nazwę tego kanału efektowego FX-Mixer FX-Mixer FX Fader %1 FX Fader %1 Mute Wyciszenie Mute this FX channel Wycisz ten kanał efektowy InstrumentFunctionArpeggio Arpeggio Arpeggio Arpeggio type Rodzaj arpeggio Arpeggio range Zakres arpeggio Arpeggio time Okres arpeggio Arpeggio gate Bramkowanie arpeggio Arpeggio direction Kierunek arpeggio Arpeggio mode Tryb arpeggio Up W górę Down W dół Up and down Naprzemiennie Random Losowo Free Asynchroniczny Sort Posortowany Sync InstrumentFunctionArpeggioView ARPEGGIO ARPEGGIO An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. Arpeggio jest metodą odtwarzania (zwłaszcza krótkobrzmiących) instrumentów, która czyni muzykę o wiele żywszą. W odróżnieniu od zwyczajnego wykonania akordu, gdzie dźwięki odtwarzane są równocześnie w przypadku wykonywania arpeggio nuty uderzane są sekwencyjnie jedna po drugiej. Typowe arpeggia składają się z trójdźwięków durowych lub molowych ale istnieje też wiele innych akordów, które możesz zastosować. RANGE ZAKRES Arpeggio range: Zakres arpeggio: octave(s) oktawa(y) Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. Użyj tego pokrętła do ustawienia rozpiętości arpeggio w oktawach. Wybrane arpeggio będzie odgrywane w zakresie określonej liczby oktaw. TIME OKRES Arpeggio time: Okres arpeggio: ms ms Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. Użyj tego pokrętła do ustawienia okresu arpeggio w milisekundach. Okres arpeggio ustala jak długo będzie odtwarzany każdy dźwięk. GATE Arpeggio gate: Bramkowanie arpeggio: % % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Użyj tego pokrętła do ustawienia bramkowania arpeggio. Bramka arpeggio określa procentowo jak długo ma być odtwarzana każda nuta arpeggio. Za jej pomocą można dokonać artykulacji dźwięków w formie staccato. Chord: Direction: Kierunek: Mode: Tryb: InstrumentFunctionNoteStacking octave Major Majb5 minor minb5 sus2 sus4 aug augsus4 tri 6 6sus4 6add9 m6 m6add9 7 7sus4 7#5 7b5 7#9 7b9 7#5#9 7#5b9 7b5b9 7add11 7add13 7#11 Maj7 Maj7b5 Maj7#5 Maj7#11 Maj7add13 m7 m7b5 m7b9 m7add11 m7add13 m-Maj7 m-Maj7add11 m-Maj7add13 9 9sus4 add9 9#5 9b5 9#11 9b13 Maj9 Maj9sus4 Maj9#5 Maj9#11 m9 madd9 m9b5 m9-Maj7 11 11b9 Maj11 m11 m-Maj11 13 13#9 13b9 13b5b9 Maj13 m13 m-Maj13 Harmonic minor Melodic minor Whole tone Diminished Major pentatonic Minor pentatonic Jap in sen Major bebop Dominant bebop Blues Arabic Enigmatic Neopolitan Neopolitan minor Hungarian minor Dorian Phrygolydian Lydian Mixolydian Aeolian Locrian Chords Chord type Chord range Minor InstrumentFunctionNoteStackingView RANGE ZAKRES Chord range: Zakres akordu: octave(s) oktawa(y) Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. Użyj tego pokrętła aby ustawić zakres akordu w oktawach. Wybrany akord będzie odgrywany w ramach określonej liczby oktaw. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT WŁĄCZ WEJŚCIE MIDI CHANNEL KANAŁ VELOCITY PRĘDKOŚĆ UDERZENIA ENABLE MIDI OUTPUT WŁĄCZ WYJŚCIE MIDI PROGRAM PROGRAM MIDI devices to receive MIDI events from Urządzenia MIDI odbierające zdarzenia z MIDI devices to send MIDI events to Urządzenia MIDI wysyłające zdarzenia do NOTE InstrumentSoundShaping VOLUME GŁOŚNOŚĆ Volume Głośność CUTOFF CUTOFF Cutoff frequency Częstotliwość graniczna RESO RESO Resonance Zafalowanie charakterystyki Envelopes/LFOs Obwiednie/Oscylatory LFO Filter type Rodzaj filtru Q/Resonance Dobroć/Zafalowanie charakterystyki LowPass Dolnoprzepustowy HiPass Górnoprzepustowy BandPass csg Pasmowoprzepustowy csg BandPass czpg Pasmowoprzepustowy czpg Notch Pasmowozaporowy Allpass Wszechprzepustowy Moog Moog 2x LowPass 2xDolnoprzepustowy RC LowPass 12dB RC BandPass 12dB RC HighPass 12dB RC LowPass 24dB RC BandPass 24dB RC HighPass 24dB Vocal Formant Filter InstrumentSoundShapingView TARGET TARGET These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! Te zakładki zawierają obwiednie. Są bardzo ważne przy modyfikacji dźwięku. Praktycznie zawsze są konieczne przy syntezie subtraktywnej. Przykładowo jeśli mamy do czynienia z obwiednią amplitudy możesz ustalić w których momentach dźwięk ma mieć określoną głośność. Jeśli chcesz stworzyć partię łagodnych smyków ich dźwięk powinien narastać i opadać bardzo powoli. Możesz to uzyskać przez ustawienie długich czasów ataku i wybrzmiewania. Podobnie jest w przypadku obwiedni innych parametrów jak panoramowanie czy częstotliwość graniczna. Możesz uzyskać atrakcyjne dźwięki modyfikując brzmienie już samej fali piłokształtnej za pomocą różnych obwiedni! FILTER FILTR Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. W tym miejscu możesz wybrać wbudowany filtr, który chcesz nałożyć na tę ścieżkę instrumentu. Filtry są bardzo istotne z punktu kształtowania charakterystyki dźwięku. Hz Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... Użyj tego pokrętła aby ustawić częstotliwość graniczną wybranego filtru. Częstotliwość ta określa które częstotliwości będą wycinane przez filtr. Przykładowo filtr dolnoprzepustowy wycina całe pasmo częstotliwościowe powyżej częstotliwości granicznej. W przypadku filtru górnoprzepustowego jest odwrotnie i tak dalej... RESO RESO Resonance: Zafalowanie charakterystyki: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. Użyj tego pokrętła aby ustawić dobroć albo zafalowanie charakterystyki wybranego filtru. Te parametry określają zachowanie filtru w okolicach częstotliwości granicznej. FREQ FREQ cutoff frequency: InstrumentTrack unnamed_track nienazwana ścieżka Volume Głośność Panning Panoramowanie Pitch Odstrojenie FX channel Kanał FX Default preset Ustawienia domyślne With this knob you can set the volume of the opened channel. Za pomocą tego pokrętła możesz określić głośność otwartego kanału. Base note Nuta bazowa Pitch range InstrumentTrackView Volume Głośność Volume: Głośność: VOL VOL Panning Panoramowanie Panning: Panoramowanie: PAN PAN MIDI MIDI Input Wejście Output Wyjście InstrumentTrackWindow GENERAL SETTINGS GŁÓWNE USTAWIENIA Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. Kliknij tutaj jeśli chcesz zachować ustawienia obecnego kanału w formie pliku presetu. Później możesz go wczytać poprzez dwuklik w przeglądarce presetów. Instrument volume Głośność instrumentu Volume: Głośność: VOL VOL Panning Panoramowanie Panning: Panoramowanie: PAN PAN Pitch Odstrojenie Pitch: Odstrojenie: cents cent(y) PITCH PITCH FX channel Kanał FX ENV/LFO ENV/LFO FUNC FUNC FX FX MIDI MIDI Save preset Zachowaj ustawienia XML preset file (*.xpf) Plik XML presetu (*.xpf) PLUGIN WTYCZKA Save current channel settings in a preset-file Zachowaj ustawienia bieżącego kanału w formie pliku presetu Pitch range (semitones) RANGE ZAKRES LadspaControl Link channels Połącz kanały LadspaControlDialog Link Channels Połącz kanały Channel Kanał LadspaControlView Link channels Połącz kanały Value: Wartość: Sorry, no help available. Przepraszamy, pomoc jest niedostępna. LadspaEffect Effect Efekt Unknown LADSPA plugin %1 requested. Nieznana wtyczka LADSPA %1 żądanie. LfoController LFO Controller Kontroler LFO Base value Wartość bazowa Oscillator speed Prędkość oscylatora Oscillator amount Współczynnik oscylatora Oscillator phase Faza oscylatora Oscillator waveform Kształt fali oscylatora Frequency Multiplier Mnożnik częstotliwości LfoControllerDialog LFO LFO LFO Controller Kontroler LFO BASE BASE Base amount: Współczynnik bazowy: todo do zrobienia SPD SPD LFO-speed: Prędkość LFO: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. Użyj tego pokrętła aby ustawić szybkość LFO. Wyższe wartości przyspieszają drgania Generatora Przebiegów Wolnozmiennych. AMT AMT Modulation amount: Współczynnik modulacji: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. Użyj tego pokrętła aby ustawić współczynnik modulacji sygnału przez LFO. Wyższe wartości zwiększają wpływ LFO na podłączone do niego regulatory (np. głośność lub częstotliwość graniczną). PHS PHS Phase offset: Przesunięcie fazowe: degrees stopni(e) With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Za pomocą tego pokrętła możesz ustawić przesunięcie fazowe LFO, czyli punkt w którym oscylator rozpoczyna przebieg. Przykładowo jeśli mamy do czynienia z falą sinusoidalną i wprowadzimy przesunięcie fazowe o wartości 180 stopni pierwsza połówka fali zostanie wygenerowana w dół a nie w górę jak bez przesunięcia. Click here for a sine-wave. Kliknij tutaj aby przestawić kształt fali na sinusoidalny. Click here for a triangle-wave. Kliknij tutaj aby przestawić kształt fali na trójkątny. Click here for a saw-wave. Kliknij tutaj aby przestawić kształt fali na piłokształtny. Click here for a square-wave. Kliknij tutaj aby przestawić kształt fali na prostokątny. Click here for a a moog saw-wave. Kliknij tutaj aby przestawić kształt fali na piłę Moog'a. Click here for an exponential wave. Kliknij tutaj aby przestawić kształt fali na wykładniczy. Click here for white-noise. Kliknij tutaj aby przestawić kształt fali na stochastyczny. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory Katalog roboczy The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. Katalog roboczy LMMSa %1 nie istnieje. Stworzyć go teraz? Możesz zmienić katalog później poprzez Edycja -> Ustawienia. Could not save config-file Nie można zapisać pliku konfiguracyjnego Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. Nie można zapisać pliku konfiguracyjnego %1. Prawdopodobnie nie masz uprawnień zapisu do tego pliku. Upewnij się, że masz prawo zapisu do tego pliku i spróbuj ponownie. &Project &Projekt &New &Nowy &Open... &Otwórz... Recently opened projects Ostatnie projekty &Save &Zapisz Save &As... Zapisz &Jako... Import... Import... E&xport... Eksport [&X]... &Quit Zakończ [&Q] &Edit &Edycja Settings Ustawienia &Tools &Narzędzia &Help &Pomoc Online help Pomoc on-line Help Pomoc What's this? Co to jest? About O LMMS Create new project Stwórz nowy projekt Create new project from template Stwórz nowy projekt jako szablon Open existing project Otwórz istniejący projekt Recently opened project Ostatnio otwierane projekty Save current project Zapisz bieżący projekt Export current project Eksportuj bieżący projekt Show/hide Song-Editor Pokaż/ukryj Edytor Kompozycji By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. Poprzez naciśnięcie tego przycisku możesz pokazać lub ukryć Edytor Kompozycji. Za pomocą Edytora Kompozycji możesz modyfikować playlistę utworu oraz określić gdzie i kiedy ścieżki będą odtwarzane. Możesz też wstawiać sample bezpośrednio na playlistę. Show/hide Beat+Bassline Editor Pokaż/ukryj Edytor Perkusji i Basu By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. Poprzez naciśnięcie tego przycisku możesz pokazać lub ukryć Edytor Perkusji i Basu. Edytor Perkusji i Basu służy do stworzenia linii perkusyjnej i basowej utworu. Możesz wprowadzać w nim zmiany podobne jak w Edytorze Piosenki. Show/hide Piano-Roll Pokaż/ukryj Edytor Pianolowy Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. Kliknij tutaj aby pokazać lub ukryć Edytor Pianolowy. Za jego pomocą możesz w prosty sposób modyfikować melodię. Show/hide Automation Editor Pokaż/ukryj Edytor Automatyki Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Kliknij tutaj aby pokazać lub ukryć Edytor Automatyki. Za jego pomocą możesz w prosty sposób modyfikować dynamiczne wartości wszelkich regulatorów. Show/hide FX Mixer Pokaż/ukryj Mikser Efektów Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Kliknij tutaj aby pokazać lub ukryć Mikser Efektów. Mikser Efektów jest potężnym narzędziem wspomagającym zarządzanie efektami i ścieżkami w Twojej produkcji. Możesz wstawiać wtyczki efektowe na różne kanały dodatkowo wzbogacając brzmienie utworu. Show/hide project notes Pokaż/ukryj notatki do projektu Click here to show or hide the project notes window. In this window you can put down your project notes. Kliknij tutaj aby pokazać lub ukryć okno z notatkami do projektu. W tym oknie możesz zapisywać wszystko co przychodzi Ci na myśl w związku z projektem. Show/hide controller rack Pokaż/ukryj rack kontrolerów Untitled Nienazwane LMMS %1 LMMS %1 Project not saved Projekt nie zapisany The current project was modified since last saving. Do you want to save it now? Bieżący projekt został zmodyfikowany od ostatniego zapisu. Czy chcesz go zapisać teraz? Open project Otwórz projekt Save project Zapisz projekt Help not available Pomoc niedostępna Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. Aktualnie pomoc dla LMMS jest niedostępna. Odwiedź witrynę http://lmms.sf.net/wiki for documentation on LMMS. My projects Projekty My samples Sample My presets Presety My home Katalog domowy My computer Mój komputer Root directory Katalog główny Project recovery Odzyskiwanie projektu It looks like the last session did not end properly. Do you want to recover the project of this session? Wygląda na to, że ostatnia sesja nie została zakończona poprawnie. Czy chcesz ją teraz przywrócić? Configuration file Plik konfiguracyjny Error while parsing configuration file at line %1:%2: %3 Błąd podczas parsowania pliku konfiguracyjnego w linii %1:%2: %3 Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 MeterDialog Meter Numerator Numerator Metryczny Meter Denominator Denominator Metryczny TIME SIG METRUM MeterModel Numerator Numerator Denominator Denominator MidiAlsaRaw::setupWidget DEVICE URZĄDZENIE MidiAlsaSeq::setupWidget DEVICE URZĄDZENIE MidiController MIDI Controller Kontroler MIDI unnamed_midi_controller kontroler midi bez nazwy MidiImport Setup incomplete Konfiguracja niekompletna You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. Nie masz skonfigurowanego domyślnego soundfonta w oknie dialogowym (Edycja->Ustawienia). Będzie to skutkować brakiem dźwięku po zaimportowaniu pliku MIDI. Powinieneś pobrać soundfonty General MIDI, dokonać zmiany ustawień i spróbować ponownie. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. Tego LMMS nie skompilowano ze wsparciem odtwarzacza SoundFont2, który jest wykorzystywany do dodawania domyślnych dźwięków do zaimportowanych plików MIDI. Wskutek tego po zaimportowaniu pliku MIDI nie usłyszysz żadnego dźwięku. MidiOss::setupWidget DEVICE URZĄDZENIE MidiPort Input channel Kanał wejściowy Output channel Kanał wyjściowy Input controller Kontroler wejściowy Output controller Kontroler wyjściowy Fixed input velocity Zafiksowana prędkość wejściowa Fixed output velocity Zafiksowana prędkość wyjściowa Output MIDI program Wyjściowy program MIDI Receive MIDI-events Odbieraj komunikaty MIDI Send MIDI-events Wysyłaj komunikaty MIDI Fixed output note OscillatorObject Osc %1 volume Osc %1 głośność Osc %1 panning Osc %1 panoramowanie Osc %1 coarse detuning Osc %1 zgrubne odstrojenie Osc %1 fine detuning left Osc %1 dokładne odstrojenie lewo Osc %1 fine detuning right Osc %1 dokładne odstrojenie prawo Osc %1 phase-offset Osc %1 przesunięcie fazowe Osc %1 stereo phase-detuning Osc %1 odstrojenie fazy stereo Osc %1 wave shape Osc %1 kształt fali Modulation type %1 Rodzaj modulacji %1 Osc %1 waveform Osc %1 przebieg PatmanView Open other patch Otwórz inny plik Patch Click here to open another patch-file. Loop and Tune settings are not reset. Kliknij tutaj, aby otworzyć inny plik Patch. Ustawienia pętli i dostrojenia nie zostaną zresetowane. Loop Pętla Loop mode Tryb zapętlenia Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. W tym miejscu możesz uruchomić tryb zapętlenia. Jeśli to zrobisz PatMan będzie używał informacji o pętli dostępnych w pliku. Tune Dostrojenie Tune mode Tryb dostrojenia Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. W tym miejscu możesz uruchomić tryb dostrojenia. Patman dostroi próbkę do częstotliwości nut. No file selected Nie wybrano żadnego pliku Open patch file Otwórz plik Patch Patch-Files (*.pat) Pliki Patch (*.pat) PeakController Peak Controller Peak Kontroler Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK PEAK LFO Controller Kontroler LFO PeakControllerEffectControlDialog BASE BAZA Base amount: Współczynnik bazy: Modulation amount: Współczynnik modulacji: Attack: Atak: Release: Wybrzmiewanie: AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Wartość bazowa Modulation amount Współczynnik modulacji Mute output Wycisz wyjście Attack Narastanie Release Wybrzmiewanie Abs Value Amount Multiplicator PianoView Base note Nuta podstawowa Plugin Plugin not found Nie znaleziono wtyczki The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Wtyczka "%1" Nie została odnaleziona albo nie może zostać załadowana! Powód: "%2" Error while loading plugin Wystąpił błąd podczas ładowania wtyczki Failed to load plugin "%1"! Nie można załadować wtyczki "%1"! ProjectRenderer WAV-File (*.wav) Plik WAV (*.wav) Compressed OGG-File (*.ogg) Skompresowany plik OGG (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: Nazwa: Maker: Twórca: Copyright: Prawa autorskie: Requires Real Time: Wymaga czasu rzeczywistego: Yes Tak No Nie Real Time Capable: Zdolność do pracy w czasie rzeczywistym: In Place Broken: Channels In: Kanały wejściowe: Channels Out: Kanały wyjściowe: File: Plik: SampleBuffer Open audio file Otwórz plik audio All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wszystkie pliki Audio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) Pliki WAV (*.wav) OGG-Files (*.ogg) Pliki OGG (*.ogg) DrumSynth-Files (*.ds) Pliki DrumSynth (*.ds) FLAC-Files (*.flac) Pliki FLAC (*.flac) SPEEX-Files (*.spx) Pliki SPEEX (*.spx) MP3-Files (*.mp3) Pliki MP3 (*.mp3) VOC-Files (*.voc) Pliki VOC (*.voc) AIFF-Files (*.aif *.aiff) Pliki AIFF (*.aif *.aiff) AU-Files (*.au) Pliki AU (*.au) RAW-Files (*.raw) Pliki RAW (*.raw) SampleTCOView double-click to select sample wybierz sampla podwójnym kliknięciem Delete (middle mousebutton) Cut Wytnij Copy Kopiuj Paste Wklej Mute/unmute (<Ctrl> + middle click) Set/clear record Ustaw/wyczyść nagranie SampleTrack Sample track Ścieżka audio Volume Głośność SampleTrackView Track volume Głośność ścieżki Channel volume: Głośność kanału: VOL VOL TempoSyncKnob Tempo Sync Synchronizacja tempa No Sync Brak synchronizacji Eight beats Osiem uderzeń Whole note Cała nuta Half note Półnuta Quarter note Ćwierćnuta 8th note Ósemka 16th note Szesnastka 32nd note Trzydziestka dwójka Custom... Własne... &Help &Pomoc Custom Własne Synced to Eight Beats Zsynchronizowane do ośmiu uderzeń Synced to Whole Note Zsynchronizowane do całej nuty Synced to Half Note Zsynchronizowane do półnuty Synced to Quarter Note Zsynchronizowane do ćwierćnuty Synced to 8th Note Zsynchronizowane do ósemki Synced to 16th Note Zsynchronizowane do szesnastki Synced to 32nd Note Zsynchronizowane do trzydziestki dwójki TimeDisplayWidget click to change time units TrackContainer Couldn't import file Nie można zaimportować pliku Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. Nie można odnaleźć filtra do zaimportowania pliku %1. Powinienieś przekonwertować ten plik do formatu wspieranego przez LMMS z pomocą zewnętrznego oprogramowania. Couldn't open file Nie można otworzyć pliku Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! Nie da się otworzyć pliku %1 do odczytu. Upewnij się, że masz uprawnienia do odczytu tego pliku i katalogu zawierającego plik a następnie spróbuj ponownie! Loading project... Ładowanie projektu... Cancel Anuluj Please wait... Proszę czekać... Importing MIDI-file... Importowanie pliku MIDI... Importing FLP-file... Importowanie pliku FLP... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Użyj modulacji fazowej aby zmodulować oscylator 2 oscylatorem 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 Użyj modulacji amplitudowej aby zmodulować oscylator 2 oscylatorem 1 Mix output of oscillator 1 & 2 Miksuj wyjścia oscylatorów 1 & 2 Synchronize oscillator 1 with oscillator 2 Synchronizuj oscylator 1 z oscylatorem 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Użyj modulacji częstotliwościowej aby zmodulować oscylator 2 oscylatorem 1 Use phase modulation for modulating oscillator 3 with oscillator 2 Użyj modulacji fazowej aby zmodulować oscylator 3 oscylatorem 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 Użyj modulacji amplitudowej aby zmodulować oscylator 3 oscylatorem 2 Mix output of oscillator 2 & 3 Miksuj wyjścia oscylatorów 2 & 3 Synchronize oscillator 2 with oscillator 3 Synchronizuj oscylator 2 z oscylatorem 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Użyj modulacji częstotliwościowej aby zmodulować oscylator 3 oscylatorem 2 Osc %1 volume: Osc %1 - głośność: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Za pomocą tego pokrętła możesz ustawić głośność oscylatora %1. Jeśli zadasz wartość 0 oscylator zostanie wyłączony. Osc %1 panning: Osc %1 - panoramowanie: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Za pomocą tego pokrętła możesz ustawić panoramowanie oscylatora %1. Wartość -100 przesuwa oscylator 100% w lewo, wartość 100 - 100% w prawo. Osc %1 coarse detuning: Osc %1 - zgrubne odstrojenie: semitones półtony With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Za pomocą tego pokrętła możesz ustawić zgrubne odstrojenie oscylatora %1. Możesz odstrajać oscylator o 12 półtonów (całą oktawę) w górę lub w dół. Osc %1 fine detuning left: Osc %1 - dokładne odstrojenie w lewo: cents centy With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Za pomocą tego pokrętła możesz ustawić dokładne odstrojenie oscylatora %1 dla lewego kanału. Zakres regulacji mieści się w przedziale od -100 do +100 centów. Osc %1 fine detuning right: Osc %1 - dokładne odstrojenie w prawo: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Za pomocą tego pokrętła możesz ustawić dokładne odstrojenie oscylatora %1 dla prawego kanału. Zakres regulacji mieści się w przedziale od -100 do +100 centów. Osc %1 phase-offset: Osc %1 - przesunięcie fazowe: degrees stopni With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Za pomocą tego pokrętła możesz ustawić przesunięcie fazowe oscylatora %1. Oznacza to, że możesz przemieścić w czasie moment w którym oscylator rozpoczyna drgania. Na przykład jeśli mamy do czynienie z falą sinusoidalną, wprowadzenie przesunięcia fazowego o wartości 180 stopni spowoduje, że pierwsza połówka fali zacznie być generowana w stronę wartości ujemnych, odwrotnie niż w przypadku przesunięcia fazowego o wartości 0 stopni. Osc %1 stereo phase-detuning: Osc %1 - odstrojenie fazy stereo: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Za pomocą tego pokrętła możesz ustawić odstrojenie fazy stereo oscylatora %1. Oznacza to, że masz wpływ na różnicę fazy pomiędzy lewym i prawym kanałem. Ta gałka pomoże Ci stworzyć szeroko brzmiące dźwięki. Use a sine-wave for current oscillator. Użyj fali sinusoidalnej dla bieżącego oscylatora. Use a triangle-wave for current oscillator. Użyj fali trójkątnej dla bieżącego oscylatora. Use a saw-wave for current oscillator. Użyj fali piłokształtnej dla bieżącego oscylatora. Use a square-wave for current oscillator. Użyj fali prostokątnej dla bieżącego oscylatora. Use a moog-like saw-wave for current oscillator. Użyj piłokształtnego przebiegu mooga dla bieżącego oscylatora. Use an exponential wave for current oscillator. Użyj fali wykładniczej dla bieżącego oscylatora. Use white-noise for current oscillator. Użyj białego szumu dla bieżącego oscylatora. Use a user-defined waveform for current oscillator. Użyj fali zdefiniowanej przez użytkownika. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin Otwórz inną wtyczkę VST Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Kliknij tutaj jeśli chcesz otworzyć inną wtyczkę VST. Po kliknięciu otworzy się okno dialogowe w którym będziesz mógł zaznaczyć wybrany plik. Show/hide GUI Pokaż/ukryj GUI Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Kliknij tutaj aby pokazać graficzny interfejs użytkownika (GUI) wtyczki VST. Turn off all notes Wycisz wszystkie nuty Open VST-plugin Otwórz wtyczkę VST DLL-files (*.dll) Pliki DLL (*.dll) EXE-files (*.exe) Pliki EXE (*.exe) No VST-plugin loaded Nie załadowano wtyczki VST Control VST-plugin from LMMS host Kontroluj wtyczkę VST z hosta LMMS Click here, if you want to control VST-plugin from host. Kliknij tutaj, jeśli chcesz kontrolować wtyczkę VST z hosta LMMS. Open VST-plugin preset Otwórz preset wtyczki VST Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Kliknij tutaj, jeśli chcesz otworzyć inny preset wtyczki VST w formacie *.fxp lub *.fxb. Previous (-) Poprzedni (-) Save preset Zapisz preset Next (+) Następny (+) Click here to select presets that are currently loaded in VST. Kliknij tutaj, aby zaznaczyć presety aktualnie załadowane do wtyczki VST. Preset Preset Click here, if you want to switch to another VST-plugin preset program. Click here, if you want to save current VST-plugin preset program. by - VST plugin control VstEffectControlDialog Control VST-plugin from LMMS host Kontroluj wtyczkę VST z hosta LMMS Click here, if you want to control VST-plugin from host. Kliknij tutaj, jeśli chcesz kontrolować wtyczkę VST z hosta LMMS. Open VST-plugin preset Otwórz preset wtyczki VST Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Kliknij tutaj, jeśli chcesz otworzyć inny preset wtyczki VST w formacie *.fxp lub *.fxb. Previous (-) Poprzedni (-) Next (+) Następny (+) Click here to select presets that are currently loaded in VST. Kliknij tutaj, jeśli chcesz zaznaczyć presety aktualnie załadowane do wtyczki VST. Save preset Zapisz preset Show/hide Click here, if you want to switch to another VST-plugin preset program. Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin Ładowanie wtyczki Please wait while loading VST-plugin... Ładowanie wtyczki VST. Proszę czekać... Failed loading VST-plugin Ładowanie wtyczki VST nie powiodło się The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Wtyczka VST %1 nie może zostać załadowana z jakiegoś powodu. Jeśli pracuje normalnie z innym oprogramowaniem VST pod Linuksem proszę koniecznie skontaktować się z developerami LMMS! Open Preset Otwórz Preset Vst Plugin Preset (*.fxp *.fxb) Preset wtyczki VST (*.fxp *.fxb) : default : domyślne Save Preset Zapisz Preset .fxp .fxp .FXP .FXP .FXB .FXB .fxb .fxb " ' ZynAddSubFxInstrument Portamento Portamento Filter Frequency Częstotliwość Filtra Filter Resonance Zafalowanie Filtra Bandwidth Szerokość Pasma FM Gain Wzmocnienie FM Resonance Center Frequency Częstotliwość Środkowa Zafalowania Resonance Bandwidth Szerokość Pasma Zafalowania Forward MIDI Control Change Events Przekaż Zdarzenia MIDI typu Control Change ZynAddSubFxView Show GUI Pokaż GUI Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Kliknij tutaj, aby pokazać lub ukryć graficzny interfejs użytkownika (GUI) syntezatora ZynAddSubFX. Portamento: Portamento: PORT PORT Filter Frequency: Częstotliwość Filtra: FREQ FREQ Filter Resonance: Zafalowanie Filtra: RES RES Bandwidth: Szerokość Pasma: BW BW FM Gain: Wzmocnienie FM: FM GAIN FM GAIN Resonance center frequency: Częstotliwość środkowa zafalowania: RES CF RES-CF Resonance bandwidth: Szerokość pasma zafalowania: RES BW RES BW Forward MIDI Control Changes Przekaż zdarzenia MIDI typu Control Change audioFileProcessor Amplify Wzmacniaj Start of sample Początek sampla End of sample Koniec sampla Reverse sample Odwróć próbkę Loop Pętla Stutter bassBoosterControlDialog FREQ FREQ Frequency: Częstotliwość: GAIN GAIN Gain: Wzmocnienie: RATIO RATIO Ratio: Współczynnik: bassBoosterControls Frequency Częstotliwość Gain Wzmocnienie Ratio Współczynnik bbEditor Beat+Bassline Editor Edytor Perkusji i Basu Play/pause current beat/bassline (Space) Odtwórz/Zapałzuj bieżącą linię perkusyjną/basową (Spacja) Add beat/bassline Dodaj linię perkusyjną/basową Add automation-track Dodaj ścieżkę automatyki Stop playback of current beat/bassline (Space) Zatrzymaj odtwarzanie bieżącej linii perkusyjnej/basowej (Spacja) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. Kliknij tutaj, aby odtworzyć bieżącą linię perkusyjną/basową. Zostanie ona automatycznie zapętlona. Click here to stop playing of current beat/bassline. Kliknij tutaj, aby zatrzymać odtwarzanie bieżącej linii perkusyjnej/basowej. Remove steps Usuń kroki Add steps Dodaj kroki bbTCOView Open in Beat+Bassline-Editor Otwórz w Edytorze Perkusji i Basu Reset name Zresetuj nazwę Change name Zmień nazwę Change color Zmień kolor bbTrack Beat/Bassline %1 Perkusja/Bas %1 Clone of %1 Duplikat %1 bitInvader Samplelength Długość próbki bitInvaderView Sample Length Długość Próbki Sine wave Fala sinusoidalna Triangle wave Fala trójkątna Saw wave Fala piłokształtna Square wave Fala prostokątna White noise wave Biały szum User defined wave Przebieg zdefiniowany przez użytkownika Smooth Wygładzanie Click here to smooth waveform. Kliknij tutaj, aby wygładzić przebieg. Interpolation Interpolacja Normalize Normalizacja Draw your own waveform here by dragging your mouse on this graph. Narysuj swój własny przebieg przeciągając kursorem po tym wykresie. Click for a sine-wave. Kliknij aby przełączyć na przebieg sinusoidalny. Click here for a triangle-wave. Kliknij aby przełączyć na przebieg trójkątny. Click here for a saw-wave. Kliknij aby przełączyć na przebieg piłokształtny. Click here for a square-wave. Kliknij aby przełączyć na przebieg prostokątny. Click here for white-noise. Kliknij aby przełączyć na przebieg stochastyczny. Click here for a user-defined shape. Kliknij aby przełączyć na przebieg zdefiniowany przez użytkownika. exportProjectDialog Could not open file Nie można otworzyć pliku Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! Nie da się otworzyć pliku %1 do zapisu. Upewnij się, że masz uprawnienia zapisu do tego pliku i katalogu w którym się znajduje a następnie spróbuj ponownie! Error Błąd Error while determining file-encoder device. Please try to choose a different output format. Wystąpił błąd podczas określania enkodera. Spróbuj wybrać inny format wyjściowy. Rendering: %1% Rendering: %1% Export project to %1 Eksport projektu do %1 fader Please enter a new value between %1 and %2: Wprowadź nową wartość pomiędzy %1 a %2: fileBrowser Browser Przeglądarka fileBrowserTreeWidget Send to active instrument-track Wyślij na aktywną ścieżkę instrumentu Open in new instrument-track/Song-Editor Otwórz na nowej ścieżce Edytora Piosenki Open in new instrument-track/B+B Editor Otwórz na nowej ścieżce Edytora Perkusji i Basu Loading sample Ładowanie próbki Please wait, loading sample for preview... Ładowanie podglądu próbki, proszę czekać... --- Factory files --- --- Pliki preinstalowane --- graphModel Graph Wykres kickerInstrument Start frequency Częstotliwość początkowa End frequency Częstotliwość końcowa Decay Zanikanie Distortion Zniekształcenie Gain Wzmocnienie kickerInstrumentView Start frequency: Częstotliwość początkowa: End frequency: Częstotliwość końcowa: Decay: Zanikanie: Distortion: Zniekształcenie: Gain: Wzmocnienie: knob &Help &Pomoc Please enter a new value between -96.0 dBV and 6.0 dBV: Wprowadź nową wartość pomiędzy -96.0 dBV a 6.0 dBV: Please enter a new value between %1 and %2: Wprowadź nową wartość pomiędzy %1 a %2: ladspaBrowserView Available Effects Dostępne Efekty Unavailable Effects Niedostępne Efekty Instruments Instrumenty Analysis Tools Narzędzia Analizujące Don't know Nieznane This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. To okno dialogowe wyświetla informacje o wszystkich wtyczkach LADSPA jakie LMMS był w stanie zlokalizować. Wtyczki są podzielone na pięć kategorii bazujących na intepretacji ich portów i nazw. Efekty dostępne to te, które mogą zostać użyte przez LMMS. Aby wtyczka efektowa mogła zostać wykorzystana musi posiadać zarówno kanały wejściowe jak i wyjściowe. Kanały wejściowe są identyfikowane jako zawierające wyraz 'in' w nazwie kanału, kanały wyjściowe natomiast powinny w nazwie zawierać słowo 'out'. Ponadto efekt musi posiadać taką samą liczbę wejść i wyjść a także obsługiwać tryb pracy w czasie rzeczywistym. Efekty niedostępne to takie, które posiadają różną liczbę wejść i wyjść albo nie potrafią pracować w czasie rzeczywistym. Instrumenty to wtyczki, w których udało się zidentyfikować jedynie kanały wyjściowe. Narzędzia Analizujące to wtyczki, w których rozpoznano tylko kanały wejściowe. Nieznane to wtyczki, których kanały zarówno wejściowe jak i wyjściowe pozostają niezidentyfikowane. Podwójne kliknięcie na którejkolwiek wtyczce otworzy okienko z informacjami o dostępnych portach. Type: Rodzaj: ladspaDescription Plugins Wtyczki Description Opis ladspaPortDialog Ports Porty Name Nazwa Rate Tempo Direction Kierunek Type Rodzaj Min < Default < Max Min < Domyślne < Max Logarithmic Logarytmiczny SR Dependent Zależny od SR Audio Audio Control Regulator Input Wejście Output Wyjście Toggled Przełączalne Integer Całkowite Float Zmiennoprzecinkowe Yes Tak lb302Synth VCF Cutoff Frequency Częstotliwość Odcięcia VCF VCF Resonance Rezonans VCF VCF Envelope Mod Modyfikacja Obwiedni VCF VCF Envelope Decay Zanikanie Obwiedni VCF Distortion Zniekształcenie Waveform Kształt Przebiegu Slide Decay Ślizgające Zanikanie Slide Ślizganie Accent Akcent Dead Martwy 24dB/oct Filter Filtr 24dB/okt lb302SynthView Cutoff Freq: Częst. Odc.: Resonance: Rezonans: Env Mod: Mod. Obw.: Decay: Zanikanie: 303-es-que, 24dB/octave, 3 pole filter 303-es-que, 24dB/oktawę, filtr III rzędu Slide Decay: Zanikanie z poślizgiem: DIST: DIST: Saw wave Fala piłokształtna Click here for a saw-wave. Kliknij tutaj, aby przełączyć na przebieg piłokształtny. Triangle wave Fala trójkątna Click here for a triangle-wave. Kliknij tutaj, aby przełączyć na przebieg trójkątny. Square wave Fala prostokątna Click here for a square-wave. Kliknij tutaj, aby przełączyć na przebieg prostokątny. Rounded square wave Fala prostokątna, zaokrąglona Click here for a square-wave with a rounded end. Kliknij tutaj, aby przełączyć na przebieg prostokątny z zaokrąglonymi narożami. Moog wave Fala Mooga Click here for a moog-like wave. Kliknij tutaj, aby przełączyć na przebieg mooga. Sine wave Fala sinusoidalna Click for a sine-wave. Kliknij tutaj, aby przełączyć na przebieg sinusoidalny. White noise wave Biały szum Click here for an exponential wave. Kliknij tutaj, aby przełączyć na przebieg wykładniczy. Click here for white-noise. Kliknij tutaj, aby przełączyć na przebieg stochastyczny. lb303Synth VCF Cutoff Frequency Częstotliwość Odcięcia VCF VCF Resonance Rezonans VCF VCF Envelope Mod Modyfikacja Obwiedni VCF VCF Envelope Decay Zanikanie Obwiedni VCF Distortion Zniekształcenie Waveform Kształt Przebiegu Slide Decay Zanikanie z poślizgiem Slide Poślizg Accent Akcent Dead Martwy 24dB/oct Filter Filtr 24dB/okt lb303SynthView Cutoff Freq: Częst. Odc.: CUT CUT Resonance: Rezonans: RES RES Env Mod: Mod. Obw.: ENV MOD ENV MOD Decay: Zanikanie: DEC DEC 303-es-que, 24dB/octave, 3 pole filter 303-es-que, 24dB/oktawę, filtr III rzędu Slide Decay: Zanikanie z poślizgiem: SLIDE SLIDE DIST: DIST: DIST DIST WAVE: FALA: WAVE FALA malletsInstrument Hardness Twardość Position Pozycja Vibrato Gain Vibrato - Wzmocnienie Vibrato Freq Vibrato - Częstotliwość Stick Mix Stick Mix Modulator Modulator Crossfade Crossfade LFO Speed LFO - Szybkość LFO Depth LFO - Głębokość ADSR ADSR Pressure Ciśnienie Motion Ruch Speed Prędkość Bowed Pochylenie Spread Rozstrzał Marimba Marimba Vibraphone Wibrafon Agogo Agogo Wood1 Wood1 Reso Rezonans Wood2 Wood2 Beats Uderzenia Two Fixed Dwa Zafiksowane Clump Stąpnięcie Tubular Bells Dzwony Rurowe Uniform Bar Tuned Bar Glass Harfa Szklana Tibetan Bowl Misy Tybetańskie Missing files Pominięte pliki Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! Wygląda na to, że Twoja instalacja Stk jest niekompletna. Upewnij się, że cała paczka Stk została zainstalowana! malletsInstrumentView Instrument Instrument Spread Rozstrzał Spread: Rozstrzał: Hardness Twardość Hardness: Twardość: Position Pozycja Position: Pozycja: Vib Gain Vib-Wzm Vib Gain: Vib-Wzm: Vib Freq Vib-Częst Vib Freq: Vib-Częst: Stick Mix Stick Mix Stick Mix: Stick Mix: Modulator Modulator Modulator: Modulator: Crossfade Crossfade Crossfade: Crossfade: LFO Speed LFO - Szybkość LFO Speed: LFO - Szybkość: LFO Depth LFO - Głębokość LFO Depth: LFO - Głębokość: ADSR ADSR ADSR: ADSR: Bowed Pochylenie Pressure Ciśnienie Pressure: Ciśnienie: Motion Ruch Motion: Ruch: Speed Prędkość Speed: Prędkość: Vibrato Vibrato Vibrato: Vibrato: manageVSTEffectView VST Sync Synchronizacja VST Click here if you want to synchronize all parameters with VST plugin. Kliknij tutaj, jeśli chcesz zsynchronizować wszystkie parametry z wtyczką VST. - VST parameter control Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView VST Sync Synchronizacja VST Click here if you want to synchronize all parameters with VST plugin. Kliknij tutaj, jeśli chcesz zsynchronizować wszystkie parametry z wtyczką VST. - VST plugin control Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help Pomoc [&H] opl2instrument Patch Próbka Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Zniekształcenie Volume Głośność organicInstrumentView Distortion: Zniekształcenie: Volume: Głośność: Randomise Randomizuj Osc %1 waveform: Osc %1 przebieg: Osc %1 volume: Osc %1 głośność: Osc %1 panning: Osc %1 panoramowanie: Osc %1 fine detuning left: Osc %1 dokładne strojenie lewo: cents cent(y) papuInstrument Sweep time Okres wobulacji Sweep direction Kierunek wobulacji Sweep RtShift amount Wave Pattern Duty Channel 1 volume Głośność kanału 1 Volume sweep direction Kierunek wobulacji głośności Length of each step in sweep Długość każdego kroku wobulacji Channel 2 volume Głośność kanału 2 Channel 3 volume Głośność kanału 3 Channel 4 volume Głośność kanału 4 Right Output level Poziom Wyjścia Prawego Left Output level Poziom Wyjścia Lewego Channel 1 to SO2 (Left) Channel 2 to SO2 (Left) Channel 3 to SO2 (Left) Channel 4 to SO2 (Left) Channel 1 to SO1 (Right) Channel 2 to SO1 (Right) Channel 3 to SO1 (Right) Channel 4 to SO1 (Right) Treble Soprany Bass Basy Shift Register width papuInstrumentView Sweep Time: Okres wobulacji: Sweep Time Okres wobulacji Sweep RtShift amount: Sweep RtShift amount Wave pattern duty: Wave Pattern Duty Square Channel 1 Volume: Length of each step in sweep: Długość każdego kroku wobulacji: Length of each step in sweep Długość każdego kroku wobulacji Wave pattern duty Square Channel 2 Volume: Square Channel 2 Volume Wave Channel Volume: Wave Channel Volume Noise Channel Volume: Noise Channel Volume SO1 Volume (Right): SO1 Volume (Right) SO2 Volume (Left): SO2 Volume (Left) Treble: Soprany: Treble Soprany Bass: Basy: Bass Basy Sweep Direction Kierunek wobulacji Volume Sweep Direction Kierunek wobulacji głośności Shift Register Width Channel1 to SO1 (Right) Channel2 to SO1 (Right) Channel3 to SO1 (Right) Channel4 to SO1 (Right) Channel1 to SO2 (Left) Channel2 to SO2 (Left) Channel3 to SO2 (Left) Channel4 to SO2 (Left) Wave Pattern The amount of increase or decrease in frequency The rate at which increase or decrease in frequency occurs The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Square Channel 1 Volume The delay between step change Draw the wave here Narysuj przebieg pattern Cannot freeze pattern Nie można zamrozić patternu The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! W tej chwili pattern nie może zostać zamrożony ponieważ znajdujesz się w trybie odtwarzania. Zatrzymaj i spróbuj ponownie! patternFreezeStatusDialog Freezing pattern... Zamrażanie patternu... Cancel Anuluj patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step Podwójne kliknięcie otwiera pattern w Edytorze Pianolowym użyj kółka myszy aby ustawić głośność poszczególnych kroków Open in piano-roll Otwórz w Edytorze Pianolowym Clear all notes Wyczyść wszystkie nuty Reset name Zresetuj nazwę Change name Zmień nazwę Refreeze Zamróź ponownie Freeze Zamróź Unfreeze Rozmróź Add steps Dodaj kroki Remove steps Usuń kroki PianoRoll Play/pause current pattern (Space) Odtwórz/zatrzymaj aktualny pattern (Spacja) Stop playing of current pattern (Space) Zatrzymaj odtwarzanie bieżącego patternu (Spacja) Cut selected notes (Ctrl+X) Wytnij zaznaczone nuty (Ctrl+X) Copy selected notes (Ctrl+C) Skopiuj zaznaczone nuty (Ctrl+C) Paste notes from clipboard (Ctrl+V) Wklej nuty ze schowka (Ctrl+V) Piano-Roll - no pattern Edytor Pianolowy - brak patternu Piano-Roll - %1 Edytor Pianolowy - %1 Please open a pattern by double-clicking on it! Otwórz pattern podwójnym kliknięciem! Record notes from MIDI-device/channel-piano Nagraj nuty za pomocą zewnętrznego kontrolera MIDI Record notes from MIDI-device/channel-piano while playing song or BB track Nagraj nuty za pomocą zewnętrznego kontrolera MIDI w trakcie odtwarzania podkładu dźwiękowego Draw mode (Shift+D) Tryb rysowania (Shift+D) Erase mode (Shift+E) Tryb wymazywania (Shift+E) Select mode (Shift+S) Tryb zaznaczania (Shift+S) Last note Ostatnia nuta Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Kliknij tutaj jeśli chcesz odtworzyć bieżący pattern. Pattern zostanie automatycznie zapętlony. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Kliknij tutaj, aby nagrać nuty z kontrolera MIDI lub wirtualnego pianina przypisanego do tego kanału. Podczas nagrywania wszystkie nuty które zagrasz zostaną zapisane na pattern i będziesz mógł odtworzyć i edytować je później. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Kliknij tutaj, aby nagrać nuty z kontrolera MIDI lub wirtualnego pianina przypisanego do tego kanału. Podczas nagrywania będziesz słyszeć utwór lub linię perkusyjną/basową a wszystkie nuty które zagrasz zostaną zapisane na pattern. Click here to stop playback of current pattern. Kliknij tutaj jeśli chcesz zatrzymać odtwarzanie bieżącego patternu. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Kliknij tutaj a zaznaczone nuty zostaną wycięte i umieszczone w schowku. Możesz wkleić je gdziekolwiek w dowolnym patternie za pomocą przycisku 'Wklej'. Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Kliknij tutaj a zaznaczone nuty zostaną skopiowane do schowka. Możesz wkleić je gdziekolwiek w dowolnym patternie za pomocą przycisku 'Wklej'. Click here and the notes from the clipboard will be pasted at the first visible measure. Kliknij tutaj a nuty ze schowka zostaną przeklejone w miejsce zaznaczenia. Note lock Blokada nuty Note Volume Głośność Nuty Note Panning Panoramowanie Nuty Detune mode (Shift+T) Tryb odstrojenia (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Kliknij tutaj, aby przejść do trybu rysowania. W tym trybie możesz dodawać, przemieszczać i zmieniać rozmiar nut To domyślny tryb, który będziesz używać przez większość czasu. Możesz go aktywować z poziomu klawiatury za pomocą skrótu 'Shift+D'. Przytrzymaj klawisz 'Ctrl' aby czasowo przejść do trybu zaznaczenia. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Kliknij tutaj, aby przejść do trybu kasowania. W tym trybie możesz usuwać nuty. Możesz go aktywować z poziomu klawiatury za pomocą skrótu 'Shift+E'. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Kliknij tutaj, aby przejść do trybu zaznaczania. W tym trybie możesz zaznaczać pojedyncze nuty lub całe ich grupy. Alternatywnie możesz przytrzymać klawisz 'Ctrl' w trybie rysowania aby tymczasowo przejść do trybu zaznaczania. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Kliknij tutaj, aby przejść do trybu odstrojenia. W tym trybie możesz odstrajać nuty w oknie, które otworzy się po kliknięciu na nich. Ten tryb możesz aktywować z poziomu klawiatury przez wciśnięcie kombinacji 'Shift+T'. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser no description brak opisu Instrument plugins Instrumenty wtyczkowe Incomplete monophonic imitation tb303 Niezupełna monofoniczna emulacja syntezatora tb303. Plugin for freely manipulating stereo output Wtyczka do nieograniczonego manipulowania wyjściami stereofonicznymi. Plugin for controlling knobs with sound peaks Wtyczka do kontrolowania regulatorów za pośrednictwem szczytów dźwięku. Plugin for enhancing stereo separation of a stereo input file Wtyczka rozszerzająca bazę stereo. List installed LADSPA plugins Pokaż zainstalowane wtyczki LADSPA three powerful oscillators you can modulate in several ways Trzy potężne oscylatory, które możesz modulować na kilka różnych sposobów. Filter for importing FL Studio projects into LMMS Filtr do importowania projektów FL Studio w LMMS. versatile kick- & bassdrum-synthesizer Wszechstronny syntezator do kick'u i stopy perkusyjnej. GUS-compatible patch instrument Instrument kompatybilny z standardem sampli GUS. plugin for using arbitrary VST-effects inside LMMS. Wtyczka umożliwiająca załadowanie dowolnego efektu VST wewnątrz LMMS. Additive Synthesizer for organ-like sounds Syntezator Addytywny umożliwiający stworzenie dźwięków zbliżonych brzmieniem do organów. plugin for boosting bass Wtyczka polepszająca brzmienie basu. Tuneful things to bang on Melodyjny instrument pałeczkowy. simple sampler with various settings for using samples (e.g. drums) in an instrument-track Prosty sampler z różnymi ustawieniami pozwalający na wstawienie sampli bezpośrednio na ścieżki. VST-host for using VST(i)-plugins within LMMS Host VST pozwalający na użycie wtyczek VST(i) w LMMS. Vibrating string modeler Symulator drgającej struny. plugin for using arbitrary LADSPA-effects inside LMMS. Wtyczka umożliwiająca załadowanie dowolnego efektu LADSPA wewnątrz LMMS. Filter for importing MIDI-files into LMMS Filtr do importowania plików MIDI do LMMS. Instrument browser Przeglądarka instrumentów Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. Przeciągnij instrument do Edytora Piosenki, Edytora Perkusji i Basu lub na wybraną ścieżkę. Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulator układu dźwiękowego SID (MOS6581 i MOS8580) Te układy scalone były stosowane w komputerach Commodore 64. Player for SoundFont files Odtwarzacz plików SoundFont. Emulation of GameBoy (TM) APU Emulator układu APU GameBoy'a (TM). Customizable wavetable synthesizer Konfigurowalny syntezator tablicowy (wavetable). Embedded ZynAddSubFX Wbudowany syntezator ZynAddSubFX. 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Project notes Notatki projektu Put down your project notes here. Umieść tutaj swoje zapiski dotyczące projektu. Edit Actions Edytuj Akcje &Undo Cofnij [&U] Ctrl+Z Ctrl+Z &Redo Powtórz [&R] Ctrl+Y Ctrl+Y &Copy &Kopiuj Ctrl+C Ctrl+C Cu&t Wy&tnij Ctrl+X Ctrl+X &Paste &Wklej Ctrl+V Ctrl+V Format Actions Formatowanie &Bold Wytłuść [&B] Ctrl+B Ctrl+B &Italic Kursywa [&I] Ctrl+I Ctrl+I &Underline Podkreślenie [&U] Ctrl+U Ctrl+U &Left Lewo [&L] Ctrl+L Ctrl+L C&enter Centrowanie [&E] Ctrl+E Ctrl+E &Right Prawo [&R] Ctrl+R Ctrl+R &Justify Justowanie [&J] Ctrl+J Ctrl+J &Color... Kolor... renameDialog Rename... Zmień nazwę... setupDialog Setup LMMS Konfiguracja LMMS General settings Podstawowe ustawienia BUFFER SIZE ROZMIAR BUFORA Reset to default-value Zresetuj do wartości domyślnej MISC DODATKOWE Enable tooltips Włącz podpowiedzi Show restart warning after changing settings Ostrzeżenie o konieczności restartu po zmianie parametrów Display volume as dBV Głośność w dBV Compress project files per default Domyślnie kompresuj pliki projektu HQ-mode for output audio-device Tryb wysokiej jakości wyjścia urządzenia audio LMMS working directory Katalog roboczy LMMS VST-plugin directory Katalog wtyczek VST Artwork directory Katalog z grafiką FL Studio installation directory Katalog instalacji FL Studio STK rawwave directory Katalog STK rawwave Performance settings Ustawienia wydajności UI effects vs. performance Efekty interfejsu vs wydajność Audio settings Ustawienia audio AUDIO INTERFACE INTERFEJS AUDIO MIDI settings Ustawienia MIDI MIDI INTERFACE INTERFEJS MIDI OK OK Cancel Anuluj Restart LMMS Restart LMMS Please note that most changes won't take effect until you restart LMMS! Większość zmian da efekt dopiero po zrestartowaniu LMMS! Frames: %1 Latency: %2 ms Ramki: %1 Latencja: %2 ms Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Tutaj możesz ustawić rozmiar wewnętrznego bufora używanego przez LMMS. Niższe wartości skutkują mniejszą latencją ale mogą powodować zniekształcenia dźwięku lub kiepską wydajność, zwłaszcza na starszych komputerach lub kernelach bez obsługi czasu rzeczywistego. Choose LMMS working directory Wybierz katalog roboczy LMMS Choose your VST-plugin directory Wybierz katalog wtyczek VST Choose artwork-theme directory Wybierz katalog z grafiką Choose FL Studio installation directory Wybierz katalog z instalacją FL Studio Choose LADSPA plugin directory Wybierz katalog wtyczek LADSPA Choose STK rawwave directory Wybierz katalog STK rawwave Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Tutaj możesz wybrać preferowany interfejs audio. W zależności od konfiguracji Twojego systemu podczas kompilacji możesz wybierać pomiędzy ALSA, JACK, OSS i innymi. Poniżej znajduje się sekcja w której możesz zmienić ustawienia wybranego interfejsu. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Tutaj możesz wybrać preferowany interfejs MIDI. W zależności od konfiguracji systemu podczas kompilacji możesz wybierać pomiędzy ALSA, OSS i innymi. Poniżej znajduje się sekcja w której możesz zmienić ustawienia wybranego interfejsu. Paths Ścieżki LADSPA plugin paths Ścieżki do wtyczek LADSPA Default Soundfont File Domyślny plik Soundfont Background artwork Grafika tła Choose default SoundFont Wybierz domyślny SoundFont Choose background artwork Wybierz grafikę tła One instrument track window mode Tryb jednego, wspólnego okna dla wszystkich instrumentów Smooth scroll in Song Editor Płynne przewijanie w Edytorze Piosenki Compact track buttons Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Bank Bank Patch Próbka Gain Wzmocnienie Reverb Pogłos Reverb Roomsize Rozmiar pomieszczenia Reverb Damping Tłumienie pogłosu Reverb Width Rozpiętość pogłosu Reverb Level Poziom pogłosu Chorus Chorus Chorus Lines Linie chorusu Chorus Level Poziom chorusu Chorus Speed Prędkość chorusu Chorus Depth Głębokość chorusu sf2InstrumentView Open other SoundFont file Otwórz inny plik SoundFont Click here to open another SF2 file Kliknij tutaj, aby otworzyć inny plik SF2 Choose the patch Wybierz próbkę Gain Wzmocnienie Apply reverb (if supported) Nałóż pogłos (jeśli wspierane) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. Ten przycisk włącza pogłos. Działa tylko na plikach, które wspierają tę funkcję. Reverb Roomsize: Rozmiar pomieszczenia: Reverb Damping: Tłumienie pogłosu: Reverb Width: Rozpiętość pogłosu: Reverb Level: Poziom pogłosu: Apply chorus (if supported) Nałóż chorus (jeśli wspierane) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Ten przycisk włącza chorus. Działa tylko na plikach, które wspierają tę funkcję. Chorus Lines: Linie chorusu: Chorus Level: Poziom chorusu: Chorus Speed: Prędkość chorusu: Chorus Depth: Głębokość chorusu: Open SoundFont file Otwórz plik SoundFont SoundFont2 Files (*.sf2) Pliki SoundFont2 (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Częstotliwość graniczna Resonance Zafalowanie charakterystyki Filter type Rodzaj filtru Voice 3 off Wyłącz głos 3 Volume Głośność Chip model Rodzaj scalaka sidInstrumentView Volume: Głośność: Resonance: Zafalowanie charakterystyki: Cutoff frequency: Częstotliwość graniczna: High-Pass filter Filtr górnoprzepustowy Band-Pass filter Filtr pasmowoprzepustowy Low-Pass filter Filtr dolnoprzepustowy Voice3 Off Wyłącz głos 3 MOS6581 SID MOS6581 SID MOS8580 SID MOS8580 SID Attack: Atak: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. Wartość ataku (Attack) określa jak szybko sygnał wyjściowy głosu %1 narasta od zera do wartości szczytowej. Decay: Zanikanie: Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. Wartość zanikania (Decay) decyduje jak szybko sygnał wyjściowy opada od wartości szczytowej do ustalonego poziomu podtrzymania (Sustain). Sustain: Podtrzymanie: Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. Sygnał wyjściowy głosu %1 będzie utrzymywał poziom podtrzymania (Sustain) tak długo, jak nuta będzie odtwarzania (klawisz klawiatury muzycznej będzie wciśnięty). Release: Zwolnienie: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. Sygnał wyjściowy głosu %1 opadnie od poziomu podtrzymania (Sustain) do poziomu zerowego po czasie określonym przez parametr wybrzmiewania (Release). Pulse Width: Współczynnik wypełnienia impulsu: The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. Współczynnik wypełnienia impulsu określa stosunek czasu trwania impulsu do okresu tego impulsu. Pozwala na płynną zmianę wysokości tonu bez dostrzegalnego przejścia między dźwiękami. Należy wybrać prostokątny kształt fali oscylatora %1 aby dostrzec jakikolwiek słyszalny efekt. Coarse: Zgrubne odstrojenie: The Coarse detuning allows to detune Voice %1 one octave up or down. Zgrubne odstrojenie pozwala zmienić wysokość głosu %1 o oktawę w górę lub w dół. Pulse Wave Przebieg Prostokątny Triangle Wave Przebieg Trójkątny SawTooth Przebieg Piłokształtny Noise Szum Sync Synchronizacja Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Synchronizacja koordynuje w czasie fundamentalne częstotliwości oscylatorów %1 i %2 tworząc efekty "Hard Sync". Ring-Mod Modulacja Pierścieniowa Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. Modulacja Pierścieniowa (kołowa) podmienia sygnał trójkątny na wyjściu oscylatora %1 na pierścieniowo zmodulowaną kombinację oscylatorów %1 i %2. Filtered Filtrowany When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Kiedy włączona jest filtracja, głos %1 będzie przetwarzany przez filtr. Kiedy filtracja jest wyłączona, głos %1 pojawi się bezpośrednio na wyjściu, bez filtracji. Test Test Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. Kiedy włączony jest Test, oscylator %1 zostanie czasowo zresetowany i zablokowany. song Tempo Tempo Master volume Główna głośność Master pitch Główne odstrojenie Project saved Projekt zapisany The project %1 is now saved. Projekt %1 został właśnie zapisany. Project NOT saved. Projekt NIE JEST zapisany. The project %1 was not saved! Projekt %1 nie jest zapisany! Import file Importuj plik untitled niezatytułowane Select file for project-export... Wybierz plik aby wyeksportować projekt... Empty project Pusty projekt This project is empty so exporting makes no sense. Please put some items into Song Editor first! Ten projekt jest pusty więc eksportowanie go nie ma najmniejszego sensu. Najpierw umieść kilka elementów w Edytorze Piosenki! MIDI sequences sekwencje MIDI FL Studio projects projekty FL Studio All file types wszystkie pliki Hydrogen projects Select directory for writing exported tracks... SongEditor Song-Editor Edytor Kompozycji Play song (Space) Odtwórz piosenkę (Spacja) Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. Kliknij tutaj, jeśli chcesz odtworzyć całą piosenkę. Odtwarzanie rozpocznie się od zielonego znacznika pozycji. Możesz go przemieszczać w trakcie odtwarzania. Stop song (Space) Zatrzymaj odtwarzanie piosenki (Spacja) Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. Kliknij tutaj, jeśli chcesz zatrzymać odtwarzanie piosenki. Znacznik pozycji zostanie ustawiony na początek utworu. Add beat/bassline Dodaj linię basową/perkusyjną Add sample-track Dodaj ścieżkę z samplami Could not open file Nie można otworzyć pliku Could not write file Nie można zapisać pliku Add automation-track Dodaj ścieżkę automatyki Draw mode Tryb rysowania Edit mode (select and move) Tryb edycji (zaznaczanie i przemieszczanie) Record samples from Audio-device Nagraj sample z urządzenia audio Record samples from Audio-device while playing song or BB track Nagrywa sample z urządzenia audio podczas odtwarzania piosenki lub ścieżki perkusji/basu Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Nie da się otworzyć pliku %1. Prawdopodobnie nie posiadasz uprawnień do odczytu tego pliku. Upewnij się, że masz przynajmniej uprawnienia odczytu tego pliku a następnie spróbuj ponownie. Error in file Błąd w pliku The file %1 seems to contain errors and therefore can't be loaded. Wygląda na to, że plik %1 zawiera błędy i nie może zostać załadowany. Tempo Tempo TEMPO/BPM TEMPO/BPM tempo of song tempo piosenki The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). Tempo piosenki jest wyrażane w uderzeniach na minutę (BPM, Beats Per Minute). Jeśli chcesz zmienić szybkość swojej piosenki zmodyfikuj tę wartość. Każdy takt zawiera cztery uderzenia, stąd tempo w BPM wyraża jak wiele taktów / 4 powinno być odtworzone w ciągu minuty (albo - jeśli wolisz - jak wiele taktów ma być odtworzonych w ciągu 4 minut). High quality mode Tryb wysokiej jakości Master volume Głośność główna master volume głośność główna Master pitch Odstrojenie główne master pitch odstrojenie główne Value: %1% Wartość: %1% Value: %1 semitones Wartość: %1 półtonów Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Spektrum skalowane liniowo Linear Y axis Oś Y skalowana liniowo spectrumAnalyzerControls Linear spectrum Spektrum skalowane liniowo Linear Y-axis Oś Y skalowana liniowo Channel mode Tryb kanału stereoEnhancerControlDialog WIDE ROZSZERZ Width: Szerokość: stereoEnhancerControls Width Szerokość stereoMatrixControlDialog Left to Left Vol: Głośność Lewy IN Lewy OUT: Left to Right Vol: Głośność Lewy IN Prawy OUT: Right to Left Vol: Głośność Prawy IN Lewy OUT: Right to Right Vol: Głośność Prawy IN Prawy OUT: stereoMatrixControls Left to Left Lewy IN >> Lewy OUT Left to Right Lewy IN >> Prawy OUT Right to Left Prawy IN >> Lewy OUT Right to Right Prawy IN >> Prawy OUT timeLine Enable/disable auto-scrolling Włącz/wyłącz autoprzewijanie Enable/disable loop-points Włącz/wyłącz znaczniki pętli After stopping go back to begin Po zatrzymaniu powróć do początku After stopping go back to position at which playing was started Po zatrzymaniu powróć do pozycji z której rozpoczęto odtwarzanie After stopping keep position Po zatrzymaniu utrzymaj pozycję Hint Wskazówka Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted Wyciszone Solo Solo trackContentObject Muted Wyciszone trackContentObjectView Current position Bieżąca pozycja Hint Wskazówka Press <Ctrl> and drag to make a copy. Naciśnij <Ctrl> i przeciągnij aby stworzyć kopię. Current length Aktualna długość Press <Ctrl> for free resizing. Naciśnij <Ctrl> aby zmienić rozmiar. %1:%2 (%3:%4 to %5:%6) %1:%2 (%3:%4 do %5:%6) Delete (middle mousebutton) Kasuj (naciśnij rolkę myszy) Cut Wytnij Copy Kopiuj Paste Wklej Mute/unmute (<Ctrl> + middle click) Wycisz/anuluj wyciszenie (<Ctrl> + kliknięcie rolką myszy) trackOperationsWidget Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Naciśnij <Ctrl> podczas przeciągania elementu kursorem aby rozpocząć nową akcję 'przeciągnij i upuść'. Actions for this track Akcje dla tej ścieżki Mute Wyciszenie Mute this track Wycisz tę ścieżkę Solo Solo Clone this track Klonuj tę ścieżkę Remove this track Usuń tę ścieżkę vestigeInstrument Loading plugin Ładowanie wtyczki Please wait while loading VST-plugin... Ładowanie wtyczki VST. Proszę czekać... Failed loading VST-plugin Ładowanie wtyczki VST nie powiodło się The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Wtyczka VST %1 nie może zostać załadowana z jakiegoś powodu. Jeśli pracuje normalnie z innym oprogramowaniem VST pod Linuksem proszę koniecznie skontaktować się z developerami LMMS! vibed String %1 volume String %1 - głośność String %1 stiffness String %1 - sztywność Pick %1 position Punkt Wymuszenia %1 Pickup %1 position Punkt Monitorowania %1 Pan %1 Panoramowanie %1 Detune %1 Odstrojenie %1 Fuzziness %1 Rozmycie %1 Length %1 Długość %1 Impulse %1 Impuls %1 Octave %1 Oktawa %1 vibedView Volume: Głośność: The 'V' knob sets the volume of the selected string. Pokrętło 'V' ustala głośność wybranej struny. String stiffness: Sztywność struny: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. Pokrętło 'S' ustala sztywność wybranej struny. Sztywność struny określa jak długo będzie ona drgać. Niższe sztywności wydłużają czas drgań. Pick position: Punkt Wymuszenia: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. Pokrętło 'P' ustala pozycję punktu w którym wymuszenie zostanie przyłożone do struny. Pickup position: Punkt Monitorowania: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. Pokrętło 'PU' ustala pozycję punktu w którym będą monitorowane (nasłuchiwane) drgania struny. Pan: Panoramowanie: The Pan knob determines the location of the selected string in the stereo field. Pokrętło 'Pan' determinuje położenie wybranej struny w przestrzeni stereo. Detune: Odstrojenie: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. Pokrętło 'Odstrojenie' modyfikuje wysokość tonu wybranej struny. Wartości niższe niż zero powodują spłaszczenie brzmienia. Wartości powyżej zera skutkują wyostrzeniem brzmienia. Fuzziness: Rozmycie: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. Pokrętło Slap dodaje nieco efektu fuzz do wybranej struny, słyszalnego zwłaszcza podczas fazy ataku. Może być używane aby uczynić brzmienie struny bardziej 'metalicznym'. Length: Długość: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. Pokrętło długości służy do zmiany długości wybranej struny. Dłuższa struna będzie drgać dłużej i jaśniej, jednak zużyje więcej mocy obliczeniowej procesora. Impulse or initial state Wymuszenie lub stan początkowy The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. Przełącznik 'Imp' określa czy przebieg z wykresu ma być wymuszeniem przyłożonym struny czy ma odpowiadać za początkowy jej stan (kształt). Octave Oktawa The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. Przełącznik oktawy służy do wyboru, na jakich częstotliwościach harmonicznych będzie drgać struna. Na przykład ustawienie wartości -2 sprawi, że otrzymamy dźwięk dwie oktawy niższy od częstotliwości podstawowej struny, wartość 'F' oznacza, że otrzymany dźwięk będzie miał częstotliwość zgodną z częstotliwością fundamentalną zaś wartość '6' przesunie częstotliwość drgań o 6 oktaw w górę. Impulse Editor Edytor Impulsu The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. Edytor kształtu przebiegu pozwala kontrolować strukturę impulsu, który powoduje wzbudzenie drgań struny. Przycisk po prawej umożliwia wybór kształtu fali. Przycisk '?' załaduje przebieg z pliku - jedynie pierwsze 128 próbek zostanie załadowanych. Przebieg może zostać narysowany ręcznie. Przycisk 'S' wygładza przebieg. Przycisk 'N' normalizuje przebieg. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Symulator do dziewięciu niezależnych, wibrujących strun. Przełącznik struny umożliwia wybór strun, które mają być edytowane. Przełącznik oktawy określa częstotliwości harmoniczne, na których będzie drgać struna. Wykres umożliwia zadanie kształtu wymuszenia, które wprawia strunę w drgania. Pokrętło 'V' reguluje głośność. Gałka 'S' modyfikuje sztywność struny. Pokrętło 'P' zmienia położenie Punktu Wymuszenia. Gałka 'PU' zmienia położenie Punktu Monitorowania. Pokrętło 'Slap' dodaje do dźwięku struny trochę efektu fuzz. Pokrętło 'Długość' reguluje długość struny. Kontrolka LED w prawym dolnym rogu edytora kształtu fali pokazuje, czy wybrana struna jest aktywna. Enable waveform Włącz przebieg Click here to enable/disable waveform. Kliknij tutaj, aby włączyć/wyłączyć przebieg. String Struna The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. Przełącznik struny służy wyboru struny, którą będziemy modyfikować. Instrument Vibed może zawierać do 9 niezależnych układów drgających. Kontrolka LED w prawym dolnym rogu edytora kształtu fali pokazuje, czy wybrana struna jest aktywna. Sine wave Przebieg Sinusoidalny Triangle wave Przebieg Trójkątny Saw wave Przebieg Piłokształtny Square wave Przebieg Prostokątny White noise wave Biały Szum User defined wave Przebieg zdefiniowany przez użytkownika Smooth Wygładzanie Click here to smooth waveform. Kliknij tutaj, aby wygładzić przebieg. Normalize Normalizacja Click here to normalize waveform. Kliknij tutaj, aby znormalizować przebieg. &Help &Pomoc Use a sine-wave for current oscillator. Użyj fali sinusoidalnej dla bieżącego oscylatora. Use a triangle-wave for current oscillator. Użyj fali trójkątnej dla bieżącego oscylatora. Use a saw-wave for current oscillator. Użyj fali piłokształtnej dla bieżącego oscylatora. Use a square-wave for current oscillator. Użyj fali prostokątnej dla bieżącego oscylatora. Use white-noise for current oscillator. Użyj białego szumu dla bieżącego oscylatora. Use a user-defined waveform for current oscillator. Użyj fali zdefiniowanej przez użytkownika dla bieżącego oscylatora. visualizationWidget click to enable/disable visualization of master-output Kliknij tutaj, aby włączyć/wyłączyć wizualizację kanału master Click to enable Kliknij aby włączyć voiceObject Voice %1 pulse width Współczynnik wypełnienia impulsu głosu %1 Voice %1 attack Atak głosu %1 Voice %1 decay Zanikanie głosu %1 Voice %1 sustain Podtrzymanie głosu %1 Voice %1 release Wybrzmiewanie głosu %1 Voice %1 coarse detuning Zgrubne odstrojenie głosu %1 Voice %1 wave shape Kształt fali głosu %1 Voice %1 sync Synchronizacja głosu %1 Voice %1 ring modulate Modulacja pierścieniowa głosu %1 Voice %1 filtered Filtrowanie głosu %1 Voice %1 test Test głosu %1 lmms-1.0.0+bzr2569/data/locale/pt_br.qm0000644000000000000000000013431111517317720015551 0ustar 00000000000000+į6un93GG>JGHCZI;BObzeSbRT.Uj6GVbVbtV/VxWl7W\sių;iųc+iųutbv=G|}Q|}th}UO;yvEeJNTH){;- #unG"R@E9; @۴@yaUHuʭi8ՙߺ4ota39 B.BRor%FtQ%MG5g~Ar@zv%7x:) OXR]Y.lh5o3zxQ|ZR|Zt}"yOxG#t~wքkܗjSuv9mչk[(Kr10C19h;:CYZ7d Z3Ig5L[hDHjzt? rJd}F9x 5g6uu *u pu u NuEcuEuEI*I3IwIIZ;1d0c  /rs~s7~JՔJJEغ{ؽyh5V uo u @]MPT5%0-U{Ez*Pff}o.Jk7_ltÞEU`ZsnDyElj;N}/ESEu9EMifxf#ECL1Ur6{:gNcM9.8Z+o}l=zzx'"#?Fi9F:h{2At P [:B*GVIUI QUI}ZczR<hFw, =223d S U: U~$Ϟ3h4TG/jjDKnq>xvSge5/d?^yJyI;y{eNB % )8P_ 6E~ T p,N / B1i B1 w M E5 # LU6 :_` Fy SQU ]0] u wJS   D ry UUL uL 1| < ci ~X ˔O DM 'm8 + -  Om  STnh STnq \ \k `u u: }l: Jn 4k< غz8 Y: Y:!]k~& k7WG|CgU&gE` q2LƳ}iw SobreAbout AboutDialog"Portal de harpeio Arpeggio gate Arpeggiator"Escala de harpeioArpeggio range Arpeggiator Tempo de harpeio Arpeggio time ArpeggiatorHARPEIOARPEGGIOArpeggiatorView$Portal de harpeio:Arpeggio gate:ArpeggiatorView$Escala de harpeio:Arpeggio range:ArpeggiatorView"Tempo de harpeio:Arpeggio time:ArpeggiatorView PORTALGATEArpeggiatorView ESCALARANGEArpeggiatorView TEMPOTIMEArpeggiatorViewUse este boto para ajustar o tempo de harpeio em milesegundos. O tempo de harpeio especifica qual longo cada ton de herpeio ser.Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played.ArpeggiatorViewoitava(s) octave(s)ArpeggiatorView CANAISCHANNELSAudioAlsa::setupWidgetDISPOSITIVODEVICEAudioAlsa::setupWidgetAmplificar:Amplify:AudioFileProcessorViewPonto final: Endpoint:AudioFileProcessorViewSe voc ativar este boto, toda a amostra ser invertida. Isto til para fazer uns efeitos legais, ex. um rudo eltrico ao contrrio.pIf you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash.AudioFileProcessorViewXAmostra em loop do ponto de incio ao de fim#Loop sample at start- and end-pointAudioFileProcessorView&Abrir outra amostraOpen other sampleAudioFileProcessorViewAmostra reversaReverse sampleAudioFileProcessorView Ponto de incio: Startpoint:AudioFileProcessorView CANAISCHANNELSAudioJack::setupWidgetNOME-DO-CLIENTE CLIENT-NAMEAudioJack::setupWidget CANAISCHANNELSAudioOss::setupWidgetDISPOSITIVODEVICEAudioOss::setupWidgetDISPOSITIVODEVICEAudioPortAudio::setupWidget CANAISCHANNELSAudioPulseAudio::setupWidgetDISPOSITIVODEVICEAudioPulseAudio::setupWidgetDISPOSITIVODEVICEAudioSdl::setupWidget(&Copiar valor (%1%2)&Copy value (%1%2)AutomatableModel&C&olar valor (%1%2)&Paste value (%1%2)AutomatableModelDTocar/pausar padro atual (Espao)"Play/pause current pattern (Space)AutomationEditorLParar de tocar o padro atual (Espao)'Stop playing of current pattern (Space)AutomationEditorMudar nome Change nameAutomationPatternViewRestaurar nome Reset nameAutomationPatternViewArbicoArabic ChordCreator BluesBlues ChordCreator"Escala de acordes Chord range ChordCreatorDiminudo Diminished ChordCreatorBebop dominanteDominant bebop ChordCreator DricoDorian ChordCreatorEnigmtico Enigmatic ChordCreatorHarmonico menorHarmonic minor ChordCreatorHngaro menorHungarian minor ChordCreator MaiorMajor ChordCreatorBebop maior Major bebop ChordCreator"Pentatnico maiorMajor pentatonic ChordCreatorMeldico menor Melodic minor ChordCreator"Pentatnico menorMinor pentatonic ChordCreatorNapolitano Neopolitan ChordCreator"Neopolitano menorNeopolitan minor ChordCreatorTodo o tom Whole tone ChordCreator menorminor ChordCreator oitavaoctave ChordCreator ACORDECHORDSChordCreatorView$Escala de acordes: Chord range:ChordCreatorView ESCALARANGEChordCreatorViewoitava(s) octave(s)ChordCreatorView CANALCHANNELControllerConnectionDialogCancelarCancelControllerConnectionDialog\Dispositivos MIDI para receber eventos MIDI de(MIDI-devices to receive MIDI-events fromControllerConnectionDialogOKOKControllerConnectionDialog Aj&uda&HelpControllerView Aj&uda&Help EffectView PORTALGATE EffectViewQNTAMTEnvelopeAndLfoViewATQATTEnvelopeAndLfoViewAtaque:Attack:EnvelopeAndLfoViewClique aqui para que a quantidade do envelope seja controlada por este LFO.>Click here to make the envelope-amount controlled by this LFO.EnvelopeAndLfoViewDETDECEnvelopeAndLfoView APAGARDELEnvelopeAndLfoViewDeteriorao:Decay:EnvelopeAndLfoView ESPERAHOLDEnvelopeAndLfoViewEspera:Hold:EnvelopeAndLfoView,MODULAR QUANTIDADE-ENVMODULATE ENV-AMOUNTEnvelopeAndLfoView0Quantidade de modulao:Modulation amount:EnvelopeAndLfoViewPr-atraso: Predelay:EnvelopeAndLfoViewLIBRELEnvelopeAndLfoViewLibera:Release:EnvelopeAndLfoViewVELSPDEnvelopeAndLfoViewSustentao:Sustain:EnvelopeAndLfoViewUse este boto para ajustar o tempo de ataque do LFO atual. Quanto maior este valor, mais o tempo o LFO leva para atingir sua amplitude mxima.Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum.EnvelopeAndLfoViewLUse este boto para ajustar o tempo de ataque do envelope atual. Quanto maior este valor, mais longo o tempo que o envelope precisar para aumentar o nvel de ataque.Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings.EnvelopeAndLfoViewUse este boto para ajustar o tempo de deteriorao do envelope atual. Quanto maior este valor, mais longo o tempo que o envelope precisa para diminuir do nvel de ataque para o nvel sustentvel. Escolha um valor pequeno para instrumentos como piano.Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos.EnvelopeAndLfoViewUse este boto para ajustar o tempo de espera do envelope atual. Quanto maior este valor, mais longo o tempo que o envelope segura o nvel de ataque antes de diminuir para o nvel sustentvel.Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level.EnvelopeAndLfoViewVUse este boto para ajustar a quantidade de modulao do LFO atual. Quanto maior este valor, mais o tamanho (ex. volume ou frequncia de corte) ser influnciado pelo LFO.Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO.EnvelopeAndLfoView~Use este boto para ajustar a quantidade de modulao do envelope atual. Quanto maior este valor, mais o tamanho do acorde (ex. volume ou frequncia de corte) ser influnciado pelo envelope.Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope.EnvelopeAndLfoViewUse este boto para ajustar o pr-atraso do envelope atual. Quanto maior este valor, mais longo o tempo antes de iniciar o envelope atual.Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope.EnvelopeAndLfoView Use este boto para ajustar o tempo de pr-atraso do LFO atual. Quanto maior este valor, maior o tempo ontes do LFO comear a oscilar.Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate.EnvelopeAndLfoViewUse este boto para ajustar o tempo de liberao do envelope atual. Quanto maior este valor, mais longo o tempo que o envelope precisa para diminuir do nvel de sustentao para zero. Escolha um valor grande para instrumentos com cordas.Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings.EnvelopeAndLfoViewUse este boto para ajustar a velocidade do LFO atual. Quanto maior este valor, mais rapidamente o LFO oscila e mais rpido ser seu efeito.Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect.EnvelopeAndLfoView:Use este boto para ajustar o nvel de sustentao do envelope atual. Quanto maior este valor, maio ser o nvel que o envelope espera antes de ir para zero.Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero.EnvelopeAndLfoView\controla a quantidade do envelope por este LFO#control envelope-amount by this LFOEnvelopeAndLfoViewms/LFO:ms/LFO:EnvelopeAndLfoViewCancelarCancelExportProjectDialog CANALCHANNELInstrumentMidiIOView"2x Passagem Baixa 2x LowPassInstrumentSoundShapingPassagem TotalAllpassInstrumentSoundShaping*Passagem da Faixa csg BandPass csgInstrumentSoundShaping,Passagem da Faixa czpg BandPass czpgInstrumentSoundShapingINTERRUPOCUTOFFInstrumentSoundShapingPassagem AltaHiPassInstrumentSoundShapingPassagem BaixaLowPassInstrumentSoundShapingEntalheNotchInstrumentSoundShapingQ/Resonncia Q/ResonanceInstrumentSoundShapingINTERRUPOCUTOFFInstrumentSoundShapingView FILTROFILTERInstrumentSoundShapingViewALVOTARGETInstrumentSoundShapingView(freqncia de corte:cutoff-frequency:InstrumentSoundShapingViewtCom este boto voc pode ajustar o volume do canal aberto.Sincronizado com a Nota InteiraSynced to Whole Note TempoSyncKnobSincronia Tempo Sync TempoSyncKnobNota inteira Whole note TempoSyncKnob.Detom grosseiro Osc %1:Osc %1 coarse detuning:TripleOscillatorView6Detom fino esquerdo Osc %1:Osc %1 fine detuning left:TripleOscillatorView,Detom fino direito %1:Osc %1 fine detuning right:TripleOscillatorViewPanning Osc %1:Osc %1 panning:TripleOscillatorView6Compensador de fase Osc %1:Osc %1 phase-offset:TripleOscillatorView:Detom de fase estreo Osc %1:Osc %1 stereo phase-detuning:TripleOscillatorViewVolume Osc %1:Osc %1 volume:TripleOscillatorViewCom este boto voc pode ajustar o detom grosseiro do oscilador %1. Voc pode descer o tom do oscilador 12 semitons (1 oitava) para cima e para baixo. Isto til para criar sons com um acorde.With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord.TripleOscillatorViewdCom este boto voc pode ajustar o detom fino do oscilador %1 para o canal esquerdo. O detom fino varia entre -100 centavos e +100 centavos. Isto til para criar sons 'gordos'.With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorViewbCom este boto voc pode ajustar o detom fino do oscilador %1 para o canal direito. O detom fino varia entre -100 centavos e +100 centavos. Isto til para criar sons 'gordos'.With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorView$Com este boto voc pode ajustar o panning do oscilador %1. O valor -100 significa 100% esquerda e 100 move a saida do oscilador para a direita.With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right.TripleOscillatorViewbCom este boto voc pode ajustar o compensador de fase do oscilador %1. Isso significa que voc pode move o ponto de uma oscilao onde o oscilador comea oscilar. Por exemplo, se voc tem uma onda-seno e tem uma compensao de fase de 180 graus, a onda vai primeiro descer. o mesmo com onda-quadrada.)With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave.TripleOscillatorViewCom este boto voc pode ajustar o volume do oscilador %1. Quando voc seleciona o valor 0, o oscilador desligado. Com outros valores voc vai escutar o oscilador to alto quanto voc o ajustar.With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here.TripleOscillatorViewcentavoscentsTripleOscillatorView grausdegreesTripleOscillatorViewClique aqui para mostrar ou esconder a interface grfica do usurio (GUI) do plugin VST.QClick here to show or hide the graphical user interface (GUI) of your VST-plugin.VestigeInstrumentViewClique aqui se voc quer abrir outro plugin VST. clicando neste boto, voc ver uma caixa da seleo para escolher o arquivo.Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file.VestigeInstrumentView(Arquivos DLL (*.dll)DLL-files (*.dll)VestigeInstrumentView(Arquivos EXE (*.exe)EXE-files (*.exe)VestigeInstrumentView4Nenhum plgin VST carregadoNo VST-plugin loadedVestigeInstrumentView Abrir plugin VSTOpen VST-pluginVestigeInstrumentView,Abrir outro plugin VSTOpen other VST-pluginVestigeInstrumentViewporbyVestigeInstrumentView8Falha ao carregar plugin VSTFailed loading VST-plugin VstPlugin8O plugin VST no pode ser carregado por alguma razo. Se ele rodar com outro programa VST no Linux, por favor entre em contato com um desenvolvedor do LMMS!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! VstPluginAmplificarAmplifyaudioFileProcessorFim da amostra End of sampleaudioFileProcessorAmostra reversaReverse sampleaudioFileProcessor"Incio da amostraStart of sampleaudioFileProcessor,Adicionar batida/baixoAdd beat/basslinebbEditor,Editor de Batida+BaixoBeat+Bassline EditorbbEditorTTocar/pausar a batida/baixo atual (Espao)(Play/pause current beat/bassline (Space)bbEditorMudar cor Change color bbTCOViewMudar nome Change name bbTCOView>Abrir no editor de Batida/BaixoOpen in Beat+Bassline-Editor bbTCOViewRestaurar nome Reset name bbTCOViewBatida/Baixo %1Beat/Bassline %1bbTrack<No possvel abrir o arquivoCould not open fileexportProjectDialogfNo possvel abrir o arquivo %1 para gravao. Por favor certifique-se que voc tem permisso para gravao no arquivo e se o arquivo se encontra no diretrio e tente novamente!Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again!exportProjectDialog0Exportar projeto para %1Export project to %1exportProjectDialogDeteriorao:Decay:kickerInstrumentView Aj&uda&Helpknob`Por favor entre com um novo valor entre %1 e %2:+Please enter a new value between %1 and %2:knob Tipo:Type:ladspaBrowserViewDETDEClb302SynthViewDeteriorao:Decay:lb302SynthViewDETDEClb303SynthViewDeteriorao:Decay:lb303SynthView Aj&uda&HelpnineButtonSelector6Detom fino esquerdo Osc %1:Osc %1 fine detuning left:organicInstrumentViewPanning Osc %1:Osc %1 panning:organicInstrumentViewVolume Osc %1:Osc %1 volume:organicInstrumentViewcentavoscentsorganicInstrumentView<No possvel congelar padroCannot freeze patternpatternO padro atualmente no pode ser congelado porque voc est no modo tocar (play-mode). Por favor pare e tente novamente!_The pattern currently cannot be freezed because you're in play-mode. Please stop and try again!patternCancelarCancelpatternFreezeStatusDialog(Congelando padro...Freezing pattern...patternFreezeStatusDialog%1 passos%1 steps patternView1 passo1 step patternViewAdicionar passo Add steps patternViewMudar nome Change name patternView*Limpar todas as notasClear all notes patternViewCongelarFreeze patternView2Abrir nas teclas do pianoOpen in piano-roll patternViewRe-congelarRefreeze patternViewRemover passo Remove steps patternViewRestaurar nome Reset name patternViewDescongelarUnfreeze patternViewDCopiar notas selecionadas (Ctrl+C)Copy selected notes (Ctrl+C) pianoRollHRecortar notas selecionadas (Ctrl+X)Cut selected notes (Ctrl+X) pianoRollZColar notas da rea de transferncia (Ctrl+V)#Paste notes from clipboard (Ctrl+V) pianoRoll(Teclas do piano - %1Piano-Roll - %1 pianoRoll>Teclas do piano - nenhum padroPiano-Roll - no pattern pianoRollDTocar/pausar padro atual (Espao)"Play/pause current pattern (Space) pianoRollnPor favor abra um padro com um duplo clique sobre ele!/Please open a pattern by double-clicking on it! pianoRoll^Gravar notas do dispositivo MIDI/canal do piano+Record notes from MIDI-device/channel-piano pianoRollLParar de tocar o padro atual (Espao)'Stop playing of current pattern (Space) pianoRoll.Plugins de instrumentosInstrument plugins pluginBrowsertrs osciladores poderosos que voc pode modular de vrias maneiras;three powerful oscillators you can modulate in several ways pluginBrowser&Negrito&Bold projectNotes&Cor... &Color... projectNotes&Copiar&Copy projectNotes&Itlico&Italic projectNotes&Justificar&Justify projectNotes&Esquerda&Left projectNotes C&olar&Paste projectNotes&Refazer&Redo projectNotesDi&reita&Right projectNotesS&ublinhado &Underline projectNotesDes&fazer&Undo projectNotesC&entroC&enter projectNotes Ctrl+BCtrl+B projectNotes Ctrl+CCtrl+C projectNotes Ctrl+ECtrl+E projectNotes Ctrl+ICtrl+I projectNotes Ctrl+JCtrl+J projectNotes Ctrl+LCtrl+L projectNotes Ctrl+RCtrl+R projectNotes Ctrl+UCtrl+U projectNotes Ctrl+VCtrl+V projectNotes Ctrl+XCtrl+X projectNotes Ctrl+YCtrl+Y projectNotes Ctrl+ZCtrl+Z projectNotesRecor&tarCu&t projectNotesAes de edio Edit Actions projectNotes&Aes de formataoFormat Actions projectNotes Notas do projeto Project notes projectNotes2Faa suas anotaes aqui.!Put down your project notes here. projectNotesRenomear... Rename... renameDialog8Arquivos AIFF (*.aif *.aiff)AIFF-Files (*.aif *.aiff) sampleBuffer$Arquivos AU (*.au)AU-Files (*.au) sampleBuffer(Arquivos OGG (*.ogg)OGG-Files (*.ogg) sampleBuffer,Abrir arquivo de udioOpen audio file sampleBuffer(Arquivos RAW (*.raw)RAW-Files (*.raw) sampleBuffer(Arquivos VOC (*.voc)VOC-Files (*.voc) sampleBuffer*Arquivos Wave (*.wav)Wave-Files (*.wav) sampleBuffer CopiarCopy sampleTCOViewRecortarCut sampleTCOView ColarPaste sampleTCOViewHDuplo clique para selecionar amostradouble-click to select sample sampleTCOView"Trilha de amostra Sample track sampleTrack Volume do canal:Channel volume:sampleTrackView$INTERFACE DE UDIOAUDIO INTERFACE setupDialog,Configuraes de udioAudio settings setupDialog"TAMANHO DO BUFFER BUFFER SIZE setupDialogCancelarCancel setupDialog(Configuraes geraisGeneral settings setupDialog Aqui voc pode selecionar sua interface de MIDI preferida. Dependendo das configuraes do sistema durante a compilao, voc poder escolher entre ALSA, OSS e outros. Abaixo voc ver uma caixa que oferece controles para ajustar a interface de MIDI selecionada.Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. setupDialogAqui voc pode selecionar sua interface de udio preferida. Dependendo das configuraes do sistema durante a compilao, voc poder escolher entre ALSA, JACK, OSS e outros. Abaixo voc ver uma caixa que oferece controles para ajustar a interface de udio selecionada.Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. setupDialogAqui voc pode ajustar o tamanho do buffer interno usado pelo LMMS. Valores menores resultam em menor latncia mas talvez causem soms inscutveis ou m performance, especialmente em computadores atigos ou sistema com kernel no compilados para trabalhar em tempo real.Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. setupDialog"INTERFACE DO MIDIMIDI INTERFACE setupDialog*Configuraes do MIDI MIDI settings setupDialogMISCMISC setupDialogOKOK setupDialogPor favor note que a maioria das mudanas no tero efeito antes de reiniciar o LMMS!GPlease note that most changes won't take effect until you restart LMMS! setupDialog0Restaurar o valor padroReset to default-value setupDialogReiniciar LMMS Restart LMMS setupDialogConfigurar LMMS Setup LMMS setupDialogAtaque:Attack:sidInstrumentViewDeteriorao:Decay:sidInstrumentViewLibera:Release:sidInstrumentViewSustentao:Sustain:sidInstrumentView Importar arquivo Import filesong$Projeto NO salvo.Project NOT saved.song\Selecione o arquivo para exportar o projeto...!Select file for project-export...songsem nomeuntitledsong,Adicionar batida/baixoAdd beat/bassline songEditor4Adicionar trlha de amostraAdd sample-track songEditorClique aqui se voc quer tocar toda a msica. A msica iniciar no posio do marcador (verde). Voc pode move-lo enquanto estiver tocando.Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. songEditorClique aqui se voc quer parar de tocar a msica. O marcador de posio (verde), ser ajustado para o incio da msica.uClick here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. songEditor<No possvel abrir o arquivoCould not open file songEditor>No possivel gravar o arquivoCould not write file songEditor,Modo de alta qualidadeHigh quality mode songEditor*Tocar msica (Espao)Play song (Space) songEditor Editor de msica Song-Editor songEditor*Parar msica (Espao)Stop song (Space) songEditorTEMPO/BPM TEMPO/BPM songEditor(lance (pitch) mestre master pitch songEditortempo da msica tempo of song songEditor@Quando parar volta para o comeoAfter stopping go back to begintimeLineQuando parar volta para a posio que estava quando comeou a tocar?After stopping go back to position at which playing was startedtimeLine:Quando parar mantm a posioAfter stopping keep positiontimeLine6Ativa/desativa auto-rolagemEnable/disable auto-scrollingtimeLine:Ativa/desativa pontos de loopEnable/disable loop-pointstimeLineCancelarCanceltrackContainer4Importando arquivo MIDI...Importing MIDI-file...trackContainer*Carregando projeto...Loading project...trackContainer(Por favor aquarde...Please wait...trackContainer CopiarCopytrackContentObjectViewRecortarCuttrackContentObjectView ColarPastetrackContentObjectView$Clonar esta trilhaClone this tracktrackOperationsWidget&Remover esta trilhaRemove this tracktrackOperationsWidget8Falha ao carregar plugin VSTFailed loading VST-pluginvestigeInstrument8O plugin VST no pode ser carregado por alguma razo. Se ele rodar com outro programa VST no Linux, por favor entre em contato com um desenvolvedor do LMMS!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer!vestigeInstrument Aj&uda&Help vibedView"Escolher posio:Pick position: vibedView Coletar posio:Pickup position: vibedViewClique para habilitar/desabilitar a visualizao da sada mestre6click to enable/disable visualization of master-outputvisualizationWidgetlmms-1.0.0+bzr2569/data/locale/pt_br.ts0000644000000000000000000071723112307165142015567 0ustar 00000000000000 AboutDialog About LMMS LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) About Sobre LMMS - easy music production for everyone Authors Translation Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! License Copyright (c) 2004-2014, LMMS developers <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE DISPOSITIVO CHANNELS CANAIS AudioFileProcessorView Open other sample Abrir outra amostra Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Reverse sample Amostra reversa If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Se você ativar este botão, toda a amostra será invertida. Isto é útil para fazer uns efeitos legais, ex. um ruído elétrico ao contrário. Loop sample at start- and end-point Amostra em loop do ponto de início ao de fim Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Amplify: Amplificar: With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Startpoint: Ponto de início: With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Endpoint: Ponto final: With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. JACK server down The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack::setupWidget CLIENT-NAME NOME-DO-CLIENTE CHANNELS CANAIS AudioOss::setupWidget DEVICE DISPOSITIVO CHANNELS CANAIS AudioPortAudio::setupWidget BACKEND DEVICE DISPOSITIVO AudioPulseAudio::setupWidget DEVICE DISPOSITIVO CHANNELS CANAIS AudioSdl::setupWidget DEVICE DISPOSITIVO AutomatableModel &Reset (%1%2) &Copy value (%1%2) &Copiar valor (%1%2) &Paste value (%1%2) C&olar valor (%1%2) Edit song-global automation Connected to %1 Connected to controller Edit connection... Remove connection Connect to controller... Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) Tocar/pausar padrão atual (Espaço) Stop playing of current pattern (Space) Parar de tocar o padrão atual (Espaço) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Click here if you want to stop playing of the current pattern. Draw mode (Shift+D) Erase mode (Shift+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. Cut selected values (Ctrl+X) Copy selected values (Ctrl+C) Paste values from clipboard (Ctrl+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the values from the clipboard will be pasted at the first visible measure. Automation Editor - no pattern Automation Editor - %1 Please open an automation pattern with the context menu of a control! Values copied All selected values were copied to the clipboard. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> AutomationPatternView double-click to open this pattern in automation editor Open in Automation editor Clear Reset name Restaurar nome Change name Mudar nome %1 Connections Disconnect "%1" AutomationTrack Automation track Controller Controller %1 ControllerConnectionDialog Connection Settings MIDI CONTROLLER Input channel CHANNEL CANAL Input controller CONTROLLER Auto Detect MIDI-devices to receive MIDI-events from Dispositivos MIDI para receber eventos MIDI de USER CONTROLLER MAPPING FUNCTION OK OK Cancel Cancelar LMMS Cycle Detected. ControllerRackView Controller Rack Add Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls Controllers are able to automate the value of a knob, slider, and other controls. Rename controller Enter the new name for this controller &Remove this plugin &Help Aj&uda Effect Effect enabled Wet/Dry mix Gate Decay EffectChain Effects enabled EffectRackView EFFECTS CHAIN Add effect EffectSelectDialog Add effect Plugin description EffectView Toggles the effect on or off. On/Off W/D Wet Level: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. DECAY Time: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. GATE PORTAL Gate: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. Controls Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. Move &up Move &down &Remove this plugin &Help Aj&uda EnvelopeAndLfoParameters Predelay Attack Hold Decay Sustain Release Modulation LFO Predelay LFO Attack LFO speed LFO Modulation LFO Wave Shape Freq x 100 Modulate Env-Amount EnvelopeAndLfoView DEL APAGAR Predelay: Pré-atraso: Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. Use este botão para ajustar o pré-atraso do envelope atual. Quanto maior este valor, mais longo o tempo antes de iniciar o envelope atual. ATT ATQ Attack: Ataque: Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. Use este botão para ajustar o tempo de ataque do envelope atual. Quanto maior este valor, mais longo o tempo que o envelope precisará para aumentar o nível de ataque. HOLD ESPERA Hold: Espera: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. Use este botão para ajustar o tempo de espera do envelope atual. Quanto maior este valor, mais longo o tempo que o envelope segura o nível de ataque antes de diminuir para o nível sustentável. DEC DET Decay: Deterioração: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. Use este botão para ajustar o tempo de deterioração do envelope atual. Quanto maior este valor, mais longo o tempo que o envelope precisa para diminuir do nível de ataque para o nível sustentável. Escolha um valor pequeno para instrumentos como piano. SUST Sustain: Sustentação: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. Use este botão para ajustar o nível de sustentação do envelope atual. Quanto maior este valor, maio será o nível que o envelope espera antes de ir para zero. REL LIB Release: Libera: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. Use este botão para ajustar o tempo de liberação do envelope atual. Quanto maior este valor, mais longo o tempo que o envelope precisa para diminuir do nível de sustentação para zero. Escolha um valor grande para instrumentos com cordas. AMT QNT Modulation amount: Quantidade de modulação: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. Use este botão para ajustar a quantidade de modulação do envelope atual. Quanto maior este valor, mais o tamanho do acorde (ex. volume ou frequência de corte) será influênciado pelo envelope. LFO predelay: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. Use este botão para ajustar o tempo de pré-atraso do LFO atual. Quanto maior este valor, maior o tempo ontes do LFO começar a oscilar. LFO- attack: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. Use este botão para ajustar o tempo de ataque do LFO atual. Quanto maior este valor, mais o tempo o LFO leva para atingir sua amplitude máxima. SPD VEL LFO speed: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. Use este botão para ajustar a velocidade do LFO atual. Quanto maior este valor, mais rapidamente o LFO oscila e mais rápido será seu efeito. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. Use este botão para ajustar a quantidade de modulação do LFO atual. Quanto maior este valor, mais o tamanho (ex. volume ou frequência de corte) será influênciado pelo LFO. Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave for current. Click here for a square-wave. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. FREQ x 100 Click here if the frequency of this LFO should be multiplied by 100. multiply LFO-frequency by 100 MODULATE ENV-AMOUNT MODULAR QUANTIDADE-ENV Click here to make the envelope-amount controlled by this LFO. Clique aqui para que a quantidade do envelope seja controlada por este LFO. control envelope-amount by this LFO controla a quantidade do envelope por este LFO ms/LFO: ms/LFO: Hint Drag a sample from somewhere and drop it in this window. ExportProjectDialog Export project Output File format: Samplerate: 44100 Hz 48000 Hz 88200 Hz 96000 Hz 192000 Hz Bitrate: 64 KBit/s 128 KBit/s 160 KBit/s 192 KBit/s 256 KBit/s 320 KBit/s Depth: 16 Bit Integer 32 Bit Float Please note that not all of the parameters above apply for all file formats. Quality settings Interpolation: Zero Order Hold Sinc Fastest Sinc Medium (recommended) Sinc Best (very slow!) Oversampling (use with care!): 1x (None) 2x 4x 8x Sample-exact controllers Alias-free oscillators Start Cancel Cancelar Export as loop (remove end silence) FxMixer Master FX %1 FxMixerView Rename FX channel Enter the new name for this FX channel FX-Mixer FX Fader %1 Mute Mute this FX channel InstrumentFunctionArpeggio Arpeggio Arpeggio type Arpeggio range Escala de harpeio Arpeggio time Tempo de harpeio Arpeggio gate Portal de harpeio Arpeggio direction Arpeggio mode Up Down Up and down Random Free Sort Sync InstrumentFunctionArpeggioView ARPEGGIO HARPEIO An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. RANGE ESCALA Arpeggio range: Escala de harpeio: octave(s) oitava(s) Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. TIME TEMPO Arpeggio time: Tempo de harpeio: ms Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. Use este botão para ajustar o tempo de harpeio em milesegundos. O tempo de harpeio especifica qual longo cada ton de herpeio será. GATE PORTAL Arpeggio gate: Portal de harpeio: % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Chord: Direction: Mode: InstrumentFunctionNoteStacking octave oitava Major Maior Majb5 minor menor minb5 sus2 sus4 aug augsus4 tri 6 6sus4 6add9 m6 m6add9 7 7sus4 7#5 7b5 7#9 7b9 7#5#9 7#5b9 7b5b9 7add11 7add13 7#11 Maj7 Maj7b5 Maj7#5 Maj7#11 Maj7add13 m7 m7b5 m7b9 m7add11 m7add13 m-Maj7 m-Maj7add11 m-Maj7add13 9 9sus4 add9 9#5 9b5 9#11 9b13 Maj9 Maj9sus4 Maj9#5 Maj9#11 m9 madd9 m9b5 m9-Maj7 11 11b9 Maj11 m11 m-Maj11 13 13#9 13b9 13b5b9 Maj13 m13 m-Maj13 Harmonic minor Harmonico menor Melodic minor Melódico menor Whole tone Todo o tom Diminished Diminuído Major pentatonic Pentatônico maior Minor pentatonic Pentatônico menor Jap in sen Major bebop Bebop maior Dominant bebop Bebop dominante Blues Blues Arabic Arábico Enigmatic Enigmático Neopolitan Napolitano Neopolitan minor Neopolitano menor Hungarian minor Húngaro menor Dorian Dórico Phrygolydian Lydian Mixolydian Aeolian Locrian Chords Chord type Chord range Escala de acordes Minor InstrumentFunctionNoteStackingView RANGE ESCALA Chord range: Escala de acordes: octave(s) oitava(s) Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT CHANNEL CANAL VELOCITY ENABLE MIDI OUTPUT PROGRAM MIDI devices to receive MIDI events from MIDI devices to send MIDI events to NOTE InstrumentSoundShaping VOLUME Volume CUTOFF INTERRUPÇÃO Cutoff frequency RESO Resonance Envelopes/LFOs Filter type Q/Resonance Q/Resonância LowPass Passagem Baixa HiPass Passagem Alta BandPass csg Passagem da Faixa csg BandPass czpg Passagem da Faixa czpg Notch Entalhe Allpass Passagem Total Moog 2x LowPass 2x Passagem Baixa RC LowPass 12dB RC BandPass 12dB RC HighPass 12dB RC LowPass 24dB RC BandPass 24dB RC HighPass 24dB Vocal Formant Filter InstrumentSoundShapingView TARGET ALVO These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! FILTER FILTRO Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... RESO Resonance: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. FREQ cutoff frequency: InstrumentTrack unnamed_track Volume Panning Pitch FX channel Default preset With this knob you can set the volume of the opened channel. Com este botão você pode ajustar o volume do canal aberto. Base note Pitch range InstrumentTrackView Volume Volume: VOL Panning Panning: PAN MIDI Input Output InstrumentTrackWindow GENERAL SETTINGS AJUSTES GERAIS Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. Clique aqui se você quer salvar os ajustes do canal atual em um preset-file. Depois você pode carregar estes ajustes dando um duplo clique nele no navegador de pré-ajustes. Instrument volume Volume: VOL Panning Panning: PAN Pitch Pitch: cents centavos PITCH FX channel ENV/LFO FUNC FX MIDI Save preset XML preset file (*.xpf) PLUGIN Save current channel settings in a preset-file Pitch range (semitones) RANGE ESCALA LadspaControl Link channels LadspaControlDialog Link Channels Channel LadspaControlView Link channels Value: Sorry, no help available. LadspaEffect Effect Unknown LADSPA plugin %1 requested. LfoController LFO Controller Base value Oscillator speed Oscillator amount Oscillator phase Oscillator waveform Frequency Multiplier LfoControllerDialog LFO LFO Controller BASE Base amount: todo SPD VEL LFO-speed: Velocidade do LFO: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. AMT QNT Modulation amount: Quantidade de modulação: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. PHS Phase offset: degrees graus With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for a a moog saw-wave. Click here for an exponential wave. Click here for white-noise. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. Could not save config-file O arquivo de configuração não pode ser salvo Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. &Project &Projeto &New &Novo &Open... &Abrir... Recently opened projects &Save &Salvar Save &As... Salvar &como... Import... E&xport... &Quit Sai&r &Edit Settings &Tools &Help Aj&uda Online help Help Ajuda What's this? O que é isso? About Sobre Create new project Criar novo projeto Create new project from template Open existing project Abrir projeto existente Recently opened project Save current project Salvar projeto atual Export current project Exportar projeto atual Show/hide Song-Editor Mostrar/esconder Editor de música By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. Show/hide Beat+Bassline Editor Mostrar/esconder Editor de Batida+Baixo By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. Show/hide Piano-Roll Mostrar/esconder Teclas do piano Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. Show/hide Automation Editor Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Show/hide FX Mixer Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Show/hide project notes Mostrar/esconder notas do projeto Click here to show or hide the project notes window. In this window you can put down your project notes. Show/hide controller rack Untitled LMMS %1 LMMS %1 Project not saved Projeto não salvo The current project was modified since last saving. Do you want to save it now? O projeto atual foi modificado. Quer salvá-lo agora? Open project Abrir projeto Save project Salvar projeto Help not available Ajuda não disponível Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. My projects My samples My presets My home My computer Root directory Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 Project recovery It looks like the last session did not end properly. Do you want to recover the project of this session? Configuration file Error while parsing configuration file at line %1:%2: %3 MeterDialog Meter Numerator Meter Denominator TIME SIG MeterModel Numerator Denominator MidiAlsaRaw::setupWidget DEVICE DISPOSITIVO MidiAlsaSeq::setupWidget DEVICE DISPOSITIVO MidiController MIDI Controller unnamed_midi_controller MidiImport Setup incomplete You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiOss::setupWidget DEVICE DISPOSITIVO MidiPort Input channel Output channel Input controller Output controller Fixed input velocity Fixed output velocity Output MIDI program Receive MIDI-events Send MIDI-events Fixed output note OscillatorObject Osc %1 volume Volume Osc %1 Osc %1 panning Panning Osc %1 Osc %1 coarse detuning Detom grosseiro Osc %1 Osc %1 fine detuning left Detom fino esquerdo Osc %1 Osc %1 fine detuning right Detom fino direito %1 Osc %1 phase-offset Compensador de fase Osc %1 Osc %1 stereo phase-detuning Detom de fase estéreo Osc %1 Osc %1 wave shape Modulation type %1 Osc %1 waveform PatmanView Open other patch Click here to open another patch-file. Loop and Tune settings are not reset. Loop Loop mode Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. Tune Tune mode Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. No file selected Open patch file Patch-Files (*.pat) PeakController Peak Controller Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK LFO Controller PeakControllerEffectControlDialog BASE Base amount: Modulation amount: Quantidade de modulação: Attack: Ataque: Release: Libera: AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Modulation amount Quantidade de modulação Mute output Attack Release Abs Value Amount Multiplicator PianoView Base note Plugin Plugin not found Plugin não encontrado The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Error while loading plugin Erro ao carregar plugin Failed to load plugin "%1"! ProjectRenderer WAV-File (*.wav) Compressed OGG-File (*.ogg) Arquivo OGG compactado (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: Maker: Copyright: Requires Real Time: Yes No Real Time Capable: In Place Broken: Channels In: Channels Out: File: SampleBuffer Open audio file Abrir arquivo de áudio All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) Arquivos Wave (*.wav) OGG-Files (*.ogg) Arquivos OGG (*.ogg) DrumSynth-Files (*.ds) FLAC-Files (*.flac) SPEEX-Files (*.spx) MP3-Files (*.mp3) VOC-Files (*.voc) Arquivos VOC (*.voc) AIFF-Files (*.aif *.aiff) Arquivos AIFF (*.aif *.aiff) AU-Files (*.au) Arquivos AU (*.au) RAW-Files (*.raw) Arquivos RAW (*.raw) SampleTCOView double-click to select sample Duplo clique para selecionar amostra Delete (middle mousebutton) Cut Recortar Copy Copiar Paste Colar Mute/unmute (<Ctrl> + middle click) Set/clear record SampleTrack Sample track Trilha de amostra Volume SampleTrackView Track volume Channel volume: Volume do canal: VOL TempoSyncKnob Tempo Sync Sincronia No Sync Sem Sincronia Eight beats Oito batidas Whole note Nota inteira Half note Meia nota Quarter note 1/4 de nota 8th note 8o nota 16th note 16o nota 32nd note 32o nota Custom... &Help Aj&uda Custom Synced to Eight Beats Sincronizado com Oito Batidas Synced to Whole Note Sincronizado com a Nota Inteira Synced to Half Note Sincronizado com Meia Nota Synced to Quarter Note Sincronizado com 1/4 de Nota Synced to 8th Note Sincronizado com a 8o Nota Synced to 16th Note Sincronizado com a 16o Nota Synced to 32nd Note Sincronizado com a 32o Nota TimeDisplayWidget click to change time units TrackContainer Couldn't import file Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. Couldn't open file Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! Loading project... Carregando projeto... Cancel Cancelar Please wait... Por favor aquarde... Importing MIDI-file... Importando arquivo MIDI... Importing FLP-file... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 Mix output of oscillator 1 & 2 Synchronize oscillator 1 with oscillator 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Use phase modulation for modulating oscillator 3 with oscillator 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 Mix output of oscillator 2 & 3 Synchronize oscillator 2 with oscillator 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Osc %1 volume: Volume Osc %1: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Com este botão você pode ajustar o volume do oscilador %1. Quando você seleciona o valor 0, o oscilador é desligado. Com outros valores você vai escutar o oscilador tão alto quanto você o ajustar. Osc %1 panning: Panning Osc %1: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Com este botão você pode ajustar o panning do oscilador %1. O valor -100 significa 100% à esquerda e 100 move a saida do oscilador para a direita. Osc %1 coarse detuning: Detom grosseiro Osc %1: semitones With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Com este botão você pode ajustar o detom grosseiro do oscilador %1. Você pode descer o tom do oscilador 12 semitons (1 oitava) para cima e para baixo. Isto é útil para criar sons com um acorde. Osc %1 fine detuning left: Detom fino esquerdo Osc %1: cents centavos With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Com este botão você pode ajustar o detom fino do oscilador %1 para o canal esquerdo. O detom fino varia entre -100 centavos e +100 centavos. Isto é útil para criar sons 'gordos'. Osc %1 fine detuning right: Detom fino direito %1: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Com este botão você pode ajustar o detom fino do oscilador %1 para o canal direito. O detom fino varia entre -100 centavos e +100 centavos. Isto é útil para criar sons 'gordos'. Osc %1 phase-offset: Compensador de fase Osc %1: degrees graus With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Com este botão você pode ajustar o compensador de fase do oscilador %1. Isso significa que você pode move o ponto de uma oscilação onde o oscilador começa à oscilar. Por exemplo, se você tem uma onda-seno e tem uma compensação de fase de 180 graus, a onda vai primeiro descer. É o mesmo com onda-quadrada. Osc %1 stereo phase-detuning: Detom de fase estéreo Osc %1: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use a moog-like saw-wave for current oscillator. Use an exponential wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin Abrir outro plugin VST Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Clique aqui se você quer abrir outro plugin VST. clicando neste botão, você verá uma caixa da seleção para escolher o arquivo. Show/hide GUI Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Clique aqui para mostrar ou esconder a interface gráfica do usuário (GUI) do plugin VST. Turn off all notes Open VST-plugin Abrir plugin VST DLL-files (*.dll) Arquivos DLL (*.dll) EXE-files (*.exe) Arquivos EXE (*.exe) No VST-plugin loaded Nenhum plgin VST carregado Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Save preset Click here, if you want to save current VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Preset by - VST plugin control VstEffectControlDialog Show/hide Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Save preset Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin Please wait while loading VST-plugin... Failed loading VST-plugin Falha ao carregar plugin VST The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! O plugin VST não pode ser carregado por alguma razão. Se ele rodar com outro programa VST no Linux, por favor entre em contato com um desenvolvedor do LMMS! Open Preset Vst Plugin Preset (*.fxp *.fxb) : default " ' Save Preset .fxp .FXP .FXB .fxb ZynAddSubFxInstrument Portamento Filter Frequency Filter Resonance Bandwidth FM Gain Resonance Center Frequency Resonance Bandwidth Forward MIDI Control Change Events ZynAddSubFxView Show GUI Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Portamento: PORT Filter Frequency: FREQ Filter Resonance: RES Bandwidth: BW FM Gain: FM GAIN Resonance center frequency: RES CF Resonance bandwidth: RES BW Forward MIDI Control Changes audioFileProcessor Reverse sample Amostra reversa Amplify Amplificar Start of sample Início da amostra End of sample Fim da amostra Loop Stutter bassBoosterControlDialog FREQ Frequency: GAIN Gain: RATIO Ratio: bassBoosterControls Frequency Gain Ratio bbEditor Beat+Bassline Editor Editor de Batida+Baixo Play/pause current beat/bassline (Space) Tocar/pausar a batida/baixo atual (Espaço) Add beat/bassline Adicionar batida/baixo Add automation-track Stop playback of current beat/bassline (Space) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. Click here to stop playing of current beat/bassline. Remove steps Remover passo Add steps Adicionar passo bbTCOView Open in Beat+Bassline-Editor Abrir no editor de Batida/Baixo Reset name Restaurar nome Change name Mudar nome Change color Mudar cor bbTrack Beat/Bassline %1 Batida/Baixo %1 Clone of %1 bitInvader Samplelength bitInvaderView Sample Length Sine wave Triangle wave Saw wave Square wave White noise wave User defined wave Smooth Click here to smooth waveform. Interpolation Normalize Draw your own waveform here by dragging your mouse on this graph. Click for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for white-noise. Click here for a user-defined shape. exportProjectDialog Could not open file Não é possível abrir o arquivo Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! Não é possível abrir o arquivo %1 para gravação. Por favor certifique-se que você tem permissão para gravação no arquivo e se o arquivo se encontra no diretório e tente novamente! Error Error while determining file-encoder device. Please try to choose a different output format. Rendering: %1% Export project to %1 Exportar projeto para %1 fader Please enter a new value between %1 and %2: Por favor entre com um novo valor entre %1 e %2: fileBrowser Browser fileBrowserTreeWidget Send to active instrument-track Open in new instrument-track/Song-Editor Open in new instrument-track/B+B Editor Loading sample Please wait, loading sample for preview... --- Factory files --- graphModel Graph kickerInstrument Start frequency End frequency Decay Distortion Gain kickerInstrumentView Start frequency: End frequency: Decay: Deterioração: Distortion: Gain: knob &Help Aj&uda Please enter a new value between %1 and %2: Por favor entre com um novo valor entre %1 e %2: Please enter a new value between -96.0 dBV and 6.0 dBV: ladspaBrowserView Available Effects Unavailable Effects Instruments Analysis Tools Don't know This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. Type: Tipo: ladspaDescription Plugins Description ladspaPortDialog Ports Name Rate Direction Type Min < Default < Max Logarithmic SR Dependent Audio Control Input Output Toggled Integer Float Yes lb302Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb302SynthView Cutoff Freq: Resonance: Env Mod: Decay: Deterioração: 303-es-que, 24dB/octave, 3 pole filter Slide Decay: DIST: Saw wave Click here for a saw-wave. Triangle wave Click here for a triangle-wave. Square wave Click here for a square-wave. Rounded square wave Click here for a square-wave with a rounded end. Moog wave Click here for a moog-like wave. Sine wave Click for a sine-wave. White noise wave Click here for an exponential wave. Click here for white-noise. lb303Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb303SynthView Cutoff Freq: CUT Resonance: RES Env Mod: ENV MOD Decay: Deterioração: DEC DET 303-es-que, 24dB/octave, 3 pole filter Slide Decay: SLIDE DIST: DIST WAVE: WAVE malletsInstrument Hardness Position Vibrato Gain Vibrato Freq Stick Mix Modulator Crossfade LFO Speed LFO Depth ADSR Pressure Motion Speed Bowed Spread Marimba Vibraphone Agogo Wood1 Reso Wood2 Beats Two Fixed Clump Tubular Bells Uniform Bar Tuned Bar Glass Tibetan Bowl Missing files Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! malletsInstrumentView Instrument Spread Spread: Hardness Hardness: Position Position: Vib Gain Vib Gain: Vib Freq Vib Freq: Stick Mix Stick Mix: Modulator Modulator: Crossfade Crossfade: LFO Speed LFO Speed: LFO Depth LFO Depth: ADSR ADSR: Bowed Pressure Pressure: Motion Motion: Speed Speed: Vibrato Vibrato: manageVSTEffectView - VST parameter control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView - VST plugin control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help Aj&uda opl2instrument Patch Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Volume organicInstrumentView Distortion: Volume: Randomise Osc %1 waveform: Osc %1 volume: Volume Osc %1: Osc %1 panning: Panning Osc %1: Osc %1 fine detuning left: Detom fino esquerdo Osc %1: cents centavos papuInstrument Sweep time Sweep direction Sweep RtShift amount Wave Pattern Duty Channel 1 volume Volume sweep direction Length of each step in sweep Channel 2 volume Channel 3 volume Channel 4 volume Right Output level Left Output level Channel 1 to SO2 (Left) Channel 2 to SO2 (Left) Channel 3 to SO2 (Left) Channel 4 to SO2 (Left) Channel 1 to SO1 (Right) Channel 2 to SO1 (Right) Channel 3 to SO1 (Right) Channel 4 to SO1 (Right) Treble Bass Shift Register width papuInstrumentView Sweep Time: Sweep Time Sweep RtShift amount: Sweep RtShift amount Wave pattern duty: Wave Pattern Duty Square Channel 1 Volume: Length of each step in sweep: Length of each step in sweep Wave pattern duty Square Channel 2 Volume: Square Channel 2 Volume Wave Channel Volume: Wave Channel Volume Noise Channel Volume: Noise Channel Volume SO1 Volume (Right): SO1 Volume (Right) SO2 Volume (Left): SO2 Volume (Left) Treble: Treble Bass: Bass Sweep Direction Volume Sweep Direction Shift Register Width Channel1 to SO1 (Right) Channel2 to SO1 (Right) Channel3 to SO1 (Right) Channel4 to SO1 (Right) Channel1 to SO2 (Left) Channel2 to SO2 (Left) Channel3 to SO2 (Left) Channel4 to SO2 (Left) Wave Pattern The amount of increase or decrease in frequency The rate at which increase or decrease in frequency occurs The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Square Channel 1 Volume The delay between step change Draw the wave here pattern Cannot freeze pattern Não é possível congelar padrão The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! O padrão atualmente não pode ser congelado porque você está no modo tocar (play-mode). Por favor pare e tente novamente! patternFreezeStatusDialog Freezing pattern... Congelando padrão... Cancel Cancelar patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step Open in piano-roll Abrir nas teclas do piano Clear all notes Limpar todas as notas Reset name Restaurar nome Change name Mudar nome Refreeze Re-congelar Freeze Congelar Unfreeze Descongelar Add steps Adicionar passo Remove steps Remover passo PianoRoll Play/pause current pattern (Space) Tocar/pausar padrão atual (Espaço) Record notes from MIDI-device/channel-piano Gravar notas do dispositivo MIDI/canal do piano Stop playing of current pattern (Space) Parar de tocar o padrão atual (Espaço) Cut selected notes (Ctrl+X) Recortar notas selecionadas (Ctrl+X) Copy selected notes (Ctrl+C) Copiar notas selecionadas (Ctrl+C) Paste notes from clipboard (Ctrl+V) Colar notas da área de transferência (Ctrl+V) Piano-Roll - no pattern Teclas do piano - nenhum padrão Piano-Roll - %1 Teclas do piano - %1 Please open a pattern by double-clicking on it! Por favor abra um padrão com um duplo clique sobre ele! Record notes from MIDI-device/channel-piano while playing song or BB track Draw mode (Shift+D) Erase mode (Shift+E) Select mode (Shift+S) Last note Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Click here to stop playback of current pattern. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the notes from the clipboard will be pasted at the first visible measure. Note lock Note Volume Note Panning Detune mode (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser Instrument plugins Plugins de instrumentos three powerful oscillators you can modulate in several ways três osciladores poderosos que você pode modular de várias maneiras no description Incomplete monophonic imitation tb303 Plugin for freely manipulating stereo output Plugin for controlling knobs with sound peaks Plugin for enhancing stereo separation of a stereo input file List installed LADSPA plugins Filter for importing FL Studio projects into LMMS versatile kick- & bassdrum-synthesizer GUS-compatible patch instrument plugin for using arbitrary VST-effects inside LMMS. Additive Synthesizer for organ-like sounds plugin for boosting bass Tuneful things to bang on simple sampler with various settings for using samples (e.g. drums) in an instrument-track VST-host for using VST(i)-plugins within LMMS Vibrating string modeler plugin for using arbitrary LADSPA-effects inside LMMS. Filter for importing MIDI-files into LMMS Instrument browser Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Player for SoundFont files Emulation of GameBoy (TM) APU Customizable wavetable synthesizer Embedded ZynAddSubFX 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Project notes Notas do projeto Put down your project notes here. Faça suas anotações aqui. Edit Actions Ações de edição &Undo Des&fazer Ctrl+Z Ctrl+Z &Redo &Refazer Ctrl+Y Ctrl+Y &Copy &Copiar Ctrl+C Ctrl+C Cu&t Recor&tar Ctrl+X Ctrl+X &Paste C&olar Ctrl+V Ctrl+V Format Actions Ações de formatação &Bold &Negrito Ctrl+B Ctrl+B &Italic &Itálico Ctrl+I Ctrl+I &Underline S&ublinhado Ctrl+U Ctrl+U &Left &Esquerda Ctrl+L Ctrl+L C&enter C&entro Ctrl+E Ctrl+E &Right Di&reita Ctrl+R Ctrl+R &Justify &Justificar Ctrl+J Ctrl+J &Color... &Cor... renameDialog Rename... Renomear... setupDialog Setup LMMS Configurar LMMS General settings Configurações gerais BUFFER SIZE TAMANHO DO BUFFER Reset to default-value Restaurar o valor padrão MISC MISC Audio settings Configurações de Áudio AUDIO INTERFACE INTERFACE DE ÁUDIO MIDI settings Configurações do MIDI MIDI INTERFACE INTERFACE DO MIDI OK OK Cancel Cancelar Restart LMMS Reiniciar LMMS Please note that most changes won't take effect until you restart LMMS! Por favor note que a maioria das mudanças não terão efeito antes de reiniciar o LMMS! Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Aqui você pode ajustar o tamanho do buffer interno usado pelo LMMS. Valores menores resultam em menor latência mas talvez causem soms inscutáveis ou má performance, especialmente em computadores atigos ou sistema com kernel não compilados para trabalhar em tempo real. Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Aqui você pode selecionar sua interface de áudio preferida. Dependendo das configurações do sistema durante a compilação, você poderá escolher entre ALSA, JACK, OSS e outros. Abaixo você verá uma caixa que oferece controles para ajustar a interface de áudio selecionada. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Aqui você pode selecionar sua interface de MIDI preferida. Dependendo das configurações do sistema durante a compilação, você poderá escolher entre ALSA, OSS e outros. Abaixo você verá uma caixa que oferece controles para ajustar a interface de MIDI selecionada. Enable tooltips Show restart warning after changing settings Display volume as dBV Compress project files per default HQ-mode for output audio-device LMMS working directory VST-plugin directory Artwork directory FL Studio installation directory STK rawwave directory Performance settings UI effects vs. performance Frames: %1 Latency: %2 ms Choose LMMS working directory Choose your VST-plugin directory Choose artwork-theme directory Choose FL Studio installation directory Choose LADSPA plugin directory Choose STK rawwave directory Paths LADSPA plugin paths Default Soundfont File Background artwork Choose default SoundFont Choose background artwork One instrument track window mode Compact track buttons Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Smooth scroll in Song Editor Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Bank Patch Gain Reverb Reverb Roomsize Reverb Damping Reverb Width Reverb Level Chorus Chorus Lines Chorus Level Chorus Speed Chorus Depth sf2InstrumentView Open other SoundFont file Click here to open another SF2 file Choose the patch Gain Apply reverb (if supported) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. Reverb Roomsize: Reverb Damping: Reverb Width: Reverb Level: Apply chorus (if supported) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Chorus Lines: Chorus Level: Chorus Speed: Chorus Depth: Open SoundFont file SoundFont2 Files (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Resonance Filter type Voice 3 off Volume Chip model sidInstrumentView Volume: Resonance: Cutoff frequency: High-Pass filter Band-Pass filter Low-Pass filter Voice3 Off MOS6581 SID MOS8580 SID Attack: Ataque: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. Decay: Deterioração: Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. Sustain: Sustentação: Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. Release: Libera: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. Pulse Width: The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. Coarse: The Coarse detuning allows to detune Voice %1 one octave up or down. Pulse Wave Triangle Wave SawTooth Noise Sync Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Ring-Mod Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. Filtered When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Test Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. song Tempo Master volume Master pitch Project saved The project %1 is now saved. Project NOT saved. Projeto NÃO salvo. The project %1 was not saved! Import file Importar arquivo untitled sem nome Select file for project-export... Selecione o arquivo para exportar o projeto... Empty project This project is empty so exporting makes no sense. Please put some items into Song Editor first! MIDI sequences FL Studio projects All file types Hydrogen projects Select directory for writing exported tracks... SongEditor Song-Editor Editor de música Play song (Space) Tocar música (Espaço) Stop song (Space) Parar música (Espaço) Add beat/bassline Adicionar batida/baixo Add sample-track Adicionar trlha de amostra Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. Clique aqui se você quer tocar toda a música. A música iniciará no posição do marcador (verde). Você pode move-lo enquanto estiver tocando. Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. Clique aqui se você quer parar de tocar a música. O marcador de posição (verde), será ajustado para o início da música. Could not open file Não é possível abrir o arquivo Could not write file Não é possivel gravar o arquivo Add automation-track Draw mode Edit mode (select and move) Record samples from Audio-device Record samples from Audio-device while playing song or BB track Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Error in file The file %1 seems to contain errors and therefore can't be loaded. Tempo TEMPO/BPM TEMPO/BPM tempo of song tempo da música The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). High quality mode Modo de alta qualidade Master volume master volume Master pitch master pitch lance (pitch) mestre Value: %1% Value: %1 semitones Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Linear Y axis spectrumAnalyzerControls Linear spectrum Linear Y-axis Channel mode stereoEnhancerControlDialog WIDE Width: stereoEnhancerControls Width stereoMatrixControlDialog Left to Left Vol: Left to Right Vol: Right to Left Vol: Right to Right Vol: stereoMatrixControls Left to Left Left to Right Right to Left Right to Right timeLine Enable/disable auto-scrolling Ativa/desativa auto-rolagem Enable/disable loop-points Ativa/desativa pontos de loop After stopping go back to begin Quando parar volta para o começo After stopping go back to position at which playing was started Quando parar volta para a posição que estava quando começou a tocar After stopping keep position Quando parar mantém a posição Hint Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted Solo trackContentObject Muted trackContentObjectView Current position Hint Press <Ctrl> and drag to make a copy. Current length Press <Ctrl> for free resizing. %1:%2 (%3:%4 to %5:%6) Delete (middle mousebutton) Cut Recortar Copy Copiar Paste Colar Mute/unmute (<Ctrl> + middle click) trackOperationsWidget Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Actions for this track Mute Mute this track Solo Clone this track Clonar esta trilha Remove this track Remover esta trilha vestigeInstrument Failed loading VST-plugin Falha ao carregar plugin VST The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! O plugin VST não pode ser carregado por alguma razão. Se ele rodar com outro programa VST no Linux, por favor entre em contato com um desenvolvedor do LMMS! Loading plugin Please wait while loading VST-plugin... vibed String %1 volume String %1 stiffness Pick %1 position Pickup %1 position Pan %1 Detune %1 Fuzziness %1 Length %1 Impulse %1 Octave %1 vibedView Volume: The 'V' knob sets the volume of the selected string. String stiffness: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. Pick position: Escolher posição: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. Pickup position: Coletar posição: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. Pan: The Pan knob determines the location of the selected string in the stereo field. Detune: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. Fuzziness: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. Length: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. Impulse or initial state The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. Octave The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. Impulse Editor The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Enable waveform Click here to enable/disable waveform. String The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. Sine wave Triangle wave Saw wave Square wave White noise wave User defined wave Smooth Click here to smooth waveform. Normalize Click here to normalize waveform. &Help Aj&uda Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. visualizationWidget click to enable/disable visualization of master-output Clique para habilitar/desabilitar a visualização da saída mestre Click to enable voiceObject Voice %1 pulse width Voice %1 attack Voice %1 decay Voice %1 sustain Voice %1 release Voice %1 coarse detuning Voice %1 wave shape Voice %1 sync Voice %1 ring modulate Voice %1 filtered Voice %1 test lmms-1.0.0+bzr2569/data/locale/ru.qm0000644000000000000000000046406511517317720015105 0ustar 00000000000000Ea/N0+.+un!"R/V72s7"9}]9; ;=lP@۴@CFzWFz[UOX|OXmV Z;eZ;jaUm np>w80z;mS~#o>uhɄy:ʭiՙqE8BJ<͵lD1ߺ`oo;mCBLA 1DXa3"G F(^'(^,´.64Nׂ: gRo_/rBtuxż9o%A8n(CGtGGxGw'Gu?XA?`k"f3-9>,tѻGt>V+g~هת|s;s_UsCODB%FuIΌ% :2Q%84e7}8JMi:)!s@VCBHH> NOXPP~7aP~Wa+] ]Yl3'lhsly uDz}m|Z|Zp}"~v0~k[Őe[ĩ##6iyYw.v>tNs<x|g#iA~s~F+WBĽ>Pϯѫs6:6~}Nքܗj'S왞!6{S2gBB =!Nչ3MY9. @ 0((10ݻ:^<<X<<`A UCYZFA> JѻM$nMtMкmPJPJ5PJYQq.(Qq.j`9``%`%d Zg5hߡjztbrJ8w~e!w9w^wxYZ/{ }FF96[ NͯJuu" u"u#1u#|uxuuVjkyl{VkIJII|IIhEZTq/V}  @u(A])bE=xrFˤž9ՔO}wͥ(Kغ ؽ~`I7Ah<fnGOVr t1  u;S u @|TΎ$0T%.-UyEzH8Pe6Q.QrZ\\C.caEcXa*fzhh93FlllUpA}o.A]AbkK]*-~͇̂F6w%/HDjkEN}f:fzmqG,tftÞs%y%zwo^6#ع;EUZW<5<52<5<5o<5e<5s3D~e}ilj`ZCRNb^% E=EqdEi%5x$#EC'vb1UE1^*r6{:gN!?[@^C*C*^%C*cAC*GkDM9.nN9Q)&aWj?Wd"OZ+;[P[T l=xlSmB rg8z}'i"U-q#ԐFiE.f0.l 95d5j-hj>2C7+RS;(c7B2Aip2ޔrںti>/gtCrU Ů% 1/ YW' )X' )`*)b*G,D5np8};s;Sx>Zp? ~$IUI>UIZFX[tE\X.8cziANm.ӡwFy %y %p2 j>),jw2I2L]ud#)2K}#ovS : Uiٚ\$Ϟ-SE::-SE^-SE;PZG/*Gx!I QS6NJU=UW~-\Bc?ExeE jDynqvS&e55 UW;g$5S#O0dQn&c%aU9U^dU\=dJCcyoyy֕nR^T%PP ,¸n¸ʩfpʩlc86]X]ae~࣓A?`YJRW DI $ $s % )8 .5n9 6E@ 8e8 8e 9I GL ItY IH MgS7 OEl T  YAN YsU hI. hI.58 k; p, w%( w%k xI |b% > >7 %  B1( B1 ^F `4d `YE 9 K' n7 F w KnF N jn   UU" u Rh 1 Nh e S ! ~l ·~- * ʧn ʵd ˔ X J\ Dk NB ؋/ ہ1B DKR k *f- _w? I9 ".ϋ $ r 'm= )x3 + - x5 N Om_ STn'Z STn \ \+ ]V `z eE { m ? m Wp m _ m o u: y  $n z $ d ?j }l NN NS Jx V h 2e 2k 8A Ɵ Ƶ8Q ^7 4+ ӗ` Ӱ غ8 <@ <5 Y:x Y: Y: ~ i m  v .qL . .5 .Zg ʓJa "} $&yV + yf +  + ے -# -n -k pGkP>Q>Y ]zad^cgDndyOpN?٬<98a`9W`9_Ș8PoNm + |[ I"Н$eš()37WkCgD>n:DmIU&%XҾEZ [x*[c^ E6` m4my>o 7K3 4!x~~6tgiiGq ?@>3@0<<5About AboutDialog@?5468>Arpeggio Arpeggiator(0?@02;5=85 0@?5468>Arpeggio direction Arpeggiator&0?>;=5=85 0@?5468> Arpeggio gate Arpeggiator 568< 0@?5468> Arpeggio mode Arpeggiator6'0AB>B=K9 480?07>= 0@?5468>Arpeggio range Arpeggiator5@8>4 0@?5468> Arpeggio time Arpeggiator"8? 0@?5468> Arpeggio type Arpeggiator=87Down Arpeggiator!2>1>4=>Free Arpeggiator!;CG09=>Random Arpeggiator#?>@O4>G8BLSort Arpeggiator !8=E@>=878@>20BLSync Arpeggiator 25@EUp Arpeggiator25@E 8 2=87 Up and down Arpeggiator ARPEGGIOArpeggiatorView@?468>  @07=>284=>ABL 8A?>;=5=8O 0::>@4>2 =0 D>@B5?80=> 8 AB@C==KE 8=AB@C<5=B0E, :0: =0 0@D5, :>340 72C:8 0::>@40 A;54CNB >48= 70 4@C38<.An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select.ArpeggiatorView.>MDD8F85=B 70?>;=5=8O:Arpeggio gate:ArpeggiatorView$80?07>= 0@?5468>:Arpeggio range:ArpeggiatorView 5@8>4 0@?5468>:Arpeggio time:ArpeggiatorView0?@02;5=85: Direction:ArpeggiatorViewGATEArpeggiatorView  568<:Mode:ArpeggiatorViewRANGEArpeggiatorView  /TIMEArpeggiatorView: 53C;8@>2:0 70?>;=5=8O 4;O 0@?5468>. >MDD8F85=B 70?>;=5=8O ?>:07K205B, :0:0O G0ABL :064>3> B>=0 1C45B ?@>83@0=0. @>AB>9 A?>A>1 A>74020BL AB0::0B>->@?5468>.Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios.ArpeggiatorView A?>;L7C9B5 @CG:C, GB>1K CAB0=>28BL 480?07>= 0@?5468> (2 >:B020E). K1@0==K9 B8? 0@?5468> 1C45B >E20BK20BL C:070==>5 :>;8G5AB2> >:B02.Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves.ArpeggiatorView 53C;8@>2:0 ?5@8>40 0@?5468> - 2@5<O (2 <8;;8A5:C=40E), :>B>@>5 4>;6=5= 72CG0BL :064K9 B>= 0@?5468>.Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played.ArpeggiatorView<AmsArpeggiatorView:B02[0/K] octave(s)ArpeggiatorView'! CHANNELSAudioAlsa::setupWidget#!" !"DEVICEAudioAlsa::setupWidget#A8;5=85:Amplify:AudioFileProcessorView06<8B5 745AL, GB>1K >B:@KBL 4@C3>9 72C:>2>9 D09;. @8 MB>< ?>O28BAO AB0=40@B=K9 480;>3 2K1>@0 D09;0. @8 MB>< A>E@0=ONBAO 2A5 =0AB@>9:8, B0:85 :0: @568< ?>2B>@0, B>G:8 =0G0;0/:>=F0, CA8;5=85.Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample.AudioFileProcessorView>=5G=0O B>G:0: Endpoint:AudioFileProcessorView45AL 2K <>65B5 C:070BL, A;54C5B ;8 ?>2B>@OBL 72C: ?@8 4>AB865=88 :>=F0 D09;0. A;8 2:;NG5=>, B> AudioFileProcessor 1C45B ?>2B>@OBL G0ABL 72C:0 <564C =0G0;L=>9 8 :>=5G=>9 B>G:0<8. -B> <>65B 1KBL ?>;57=K< 4;O G53>-=81C4L 2@>45 AB@C==KE 8;8 >1@07F>2 0::>@4>2.Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples.AudioFileProcessorView5@525@=CBL >1@075F. >6=> ?>;CG0BL 70102=K5 MDD5:BK - =0?@8<5@, ?5@52Q@=CBK9 27@K2.pIf you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash.AudioFileProcessorView>AB>O==> 2>A?@>872>48BL CG0AB>: >1@07F0 <564C =0G0;L=>9 8 :>=5G=>9 B>G:0<8#Loop sample at start- and end-pointAudioFileProcessorView,B:@KBL 4@C3>9 >1@075FOpen other sampleAudioFileProcessorView&5@525@=CBL >1@075FReverse sampleAudioFileProcessorView 0G0;L=0O B>G:0: Startpoint:AudioFileProcessorView-B0 @CG:0 7040QB :>MDD8F85=B CA8;5=8O. @8 7=0G5=88 100% 8AE>4=K9 72C: =5 <5=O5BAO, 5A;8 65 =5B  >= 1C45B >A;01;5= 8;8 CA8;5=. (1@0B8B5 2=8<0=85, GB> 2K1@0==K9 D09; ?@8 MB>< >AB0=5BAO =5B@>=CBK<.)With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!)AudioFileProcessorView-B0 @CG:0 CAB0=02;8205B B>G:C, A :>B>@>9 1C45B =0G8=0BLAO 2>A?@>872545=85 >1@07F0. @8 2:;NGQ==>< ?>2B>@5 <>4C;L 2>A?@>872545=8O 1C45B 2>72@0I0BLAO : MB>9 B>G:5, 5A;8 =>B0 4;8B5;L=59 G0AB8 >1@07F0 <56 =0G0;L=>9 8 :>=5G=>9 B>G:0<8.With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points.AudioFileProcessorView-B0 @CG:0 CAB0=02;8205B B>G:C, 345 1C45B 70:0=G820BLAO 2>A?@>872545=85 >1@07F0. @8 2:;NGQ==>< ?>2B>@5 <>4C;L 2>A?@>872545=8O ?> 4>AB865=88 MB>3> <5AB0 2>72@0B8BAO : =0G0;L=>9 B>G:5, 5A;8 =>B0 4;8B5;L=59 G0AB8 >1@07F0 <56 =0G0;L=>9 8 :>=5G=>9 B>G:0<8.With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points.AudioFileProcessorView'! CHANNELSAudioJack::setupWidget/ " CLIENT-NAMEAudioJack::setupWidget'! CHANNELSAudioOss::setupWidget#!" !"DEVICEAudioOss::setupWidget@0925@BACKENDAudioPortAudio::setupWidget#!" !"DEVICEAudioPortAudio::setupWidget'! CHANNELSAudioPulseAudio::setupWidget#!" !"DEVICEAudioPulseAudio::setupWidget#!" !"DEVICEAudioSdl::setupWidget$&>?8@>20BL (%1%2)&Copy value (%1%2)AutomatableModel &AB028BL (%1%2)&Paste value (%1%2)AutomatableModel &!1@>A8BL (%1%2) &Reset (%1%2)AutomatableModel6!>548=8BL A :>=B@>;;5@><...Connect to controller...AutomatableModel">4A>548=5=> : %1Connected to %1AutomatableModel4?>4A>548=5=> : :>=B@>;;5@CConnected to controllerAutomatableModel.0AB@>8BL A>548=5=85...Edit connection...AutomatableModel$#40;8BL A>548=5=85Remove connectionAutomatableModel\K1@0==K5 7=0G5=8O A:>?8@>20=K 2 1CD5@ >1<5=0.1All selected values were copied to the clipboard.AutomationEditorH 540:B>@ 2@5<5==KE 7028A8<>AB59  %1Automation Editor - %1AutomationEditorZ 540:B>@ 2@5<5==KE 7028A8<>AB59  =5B H01;>=0Automation Editor - no patternAutomationEditorH@8 =060B88 =0 MBC :=>?:C 0:B828@C5BAO @568< @8A>20=8O =>B, :>B>@K9 O2;O5BAO @568<>< ?> C<>;G0=8N 8 8A?>;L7C5BAO 1>;LHCN G0ABL 2@5<5=8.  MB>< @568<5 2K <>65B5 4>102;OBL/?5@5<5I0BL 8 87<5=OBL 4;8B5;L=>ABL >48=>G=KE =>B. ;O 2:;NG5=8O MB>3> @568<0 <>6=> 8A?>;L7>20BL :><18=0F8N :;028H Shift+D.Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode.AutomationEditor\@8 =060B88 =0 MBC :=>?:C 0:B828@C5BAO @568< AB8@0=8O.  MB>< @568<5 2K <>65B5 AB8@0BL =>BK ?> >4=>9. ;O 2:;NG5=8O MB>3> @568<0 <>6=> 8A?>;L7>20BL :><18=0F8N :;028H Shift+E.Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode.AutomationEditorH@8 =060B88 =0 MBC :=>?:C 0:B828@C5BAO @568< 2K1>@0 =>B.  MB>< @568<5 2K <>65B5 2K18@0BL =>BK 4;O ?>A;54CNI8E 459AB289. -B> =5>1E>48<>, 5A;8 2K E>B8B5 2K@570BL, :>?8@>20BL, 2AB02;OBL 8;8 ?5@5<5I0BL A@07C =5A:>;L:> =>B. ;O 2:;NG5=8O MB>3> @568<0 <>6=> 8A?>;L7>20BL :><18=0F8N :;028H Shift+S.Click here and select-mode will be activated. In this mode you can select values. This is necessary if you want to cut, copy, paste, delete, or move values. You can also press 'Shift+S' on your keyboard to activate this mode.AutomationEditor2@8 =060B88 =0 MBC :=>?:C 2K45;5=K5 =>BK 1C4CB A:>?8@>20=K 2 1CD5@. >765 2K <>65B5 2AB028BL 8E 2 ;N1>5 <5AB> ;N1>3> H01;>=0 A ?><>ILN :=>?:8 "AB028BL".Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditor0@8 =060B88 =0 MBC :=>?:C 2K45;5=K5 =>BK 1C4CB ?5@5<5I5=K 2 1CD5@. >765 2K <>65B5 2AB028BL 8E 2 ;N1>5 <5AB> ;N1>3> H01;>=0 A ?><>ILN :=>?:8 "AB028BL".Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button.AutomationEditor@8 =060B88 =0 MBC :=>?:C =>BK 87 1CD5@0 1C4CB 2AB02;5=K 2 ?@52K9 2848<K9 B0:B.YClick here and the values from the clipboard will be pasted at the first visible measure.AutomationEditor$06<8B5 745AL GB>1K ?@>83@0BL B5:CI89 H01;>=. -B> <>65B ?@83>48BLAO ?@8 53> @540:B8@>20=88. (01;>= 02B><0B8G5A:8 ?>2B>@O5BAO ?@8 4>AB865=88 :>=F0.Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached.AutomationEditor06<8B5 745AL, 5A;8 2K E>B8B5 ?@8>AB0=>28BL/?@>4>;68BL 2>A?@>872545=85 B5:CI53> H01;>=0.>Click here if you want to stop playing of the current pattern.AutomationEditorT>?8@>20BL 2K1@0==K5 =>BK 2 1CD5@ (Ctrl+C)Copy selected values (Ctrl+C)AutomationEditor@K@570BL 2K1@0==K5 =>BK (Ctrl+X)Cut selected values (Ctrl+X)AutomationEditor2 568< @8A>20=8O (Shift+D)Draw mode (Shift+D)AutomationEditor8 568< AB8@0=8O =>B (Shift+E)Erase mode (Shift+E)AutomationEditor@8 =060B88 =0 MBC :=>?:C 0:B828@C5BAO @568< ?5@5<5I5=8O.  MB>< @568<5 2K <>65B5 ?5@5<5I0BL 2K1@0==K5 @0=55 (2 @568<5 2K1>@0) =>BK. ;O 2:;NG5=8O MB>3> @568<0 <>6=> 8A?>;L7>20BL :><18=0F8N :;028H Shift+E.If you click here, move-mode will be activated. In this mode you can move the values you selected in select-mode. You can also press 'Shift+M' on your keyboard to activate this mode.AutomationEditorT 568< ?5@5<5I5=8O 2K1@0==KE =>B (Shift+M)Move selection mode (Shift+M)AutomationEditorHAB028BL 7=0G5=8O 87 1CD5@0 (Ctrl+V)$Paste values from clipboard (Ctrl+V)AutomationEditor\>A?@>872545=85 B:CI53> H01;>=0/?0C70 (@>15;)"Play/pause current pattern (Space)AutomationEditorB:@K209B5 @540B>@ 2@5<5==KE 7028A8<>AB59 G5@57 :>=B5:AB=>5 <5=N @53C;OB>@0!EPlease open an automation pattern with the context menu of a control!AutomationEditor4 568< 2K1>@0 =>B (Shift+S)Select mode (Shift+S)AutomationEditorTAB0=>28BL 2>A?@>87245=85 H01;>=0 (@>15;)'Stop playing of current pattern (Space)AutomationEditor(=0G5=8O A:>?8@>20=K Values copiedAutomationEditor!>548=5=8O %1%1 ConnectionsAutomationPatternView5@58<5=>20BL Change nameAutomationPatternViewG8AB8BLClearAutomationPatternView BA>548=8BL %1Disconnect "%1"AutomationPatternView@0AB@>9:0 7028A8<>AB8 >B 2@5<5=8Open in Automation editorAutomationPatternView"!1@>A8BL =0720=85 Reset nameAutomationPatternView2064K IQ;:=8B5 <KHLN GB>1K =0AB@>8BL 7028A8<>ABL >B 2@5<5=8 4;O MB>3> H01;>=06double-click to open this pattern in automation editorAutomationPatternView*>@>6:0 02B><0B870F88Automation trackAutomationTrack4'0AB>B=K9 480?07>= 0::>@40 Chord range ChordCreator"8? 0::>@40 Chord type ChordCreator ::>@4Chords ChordCreator06>@=K9Major ChordCreator8=>@=K9minor ChordCreator :B020octave ChordCreator  CHORDSChordCreatorView"80?07>= 0::>@40: Chord range:ChordCreatorViewRANGEChordCreatorView-B>B @53C;OB>@ 87<5=O5B G0AB>B=K9 480?07>= 0:>@40: 0::>@4 1C45B A>45@60BL C:070==>5 G8A;> >:B02.{Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves.ChordCreatorView:B02[0/K] octave(s)ChordCreatorView>=B@>;;5@ %1 Controller %1 Controller2B>>?@545;5=85 Auto DetectControllerConnectionDialog CHANNELControllerConnectionDialog"   CONTROLLERControllerConnectionDialogB<5=8BLCancelControllerConnectionDialog(0@0<5B@K A>548=5=8OConnection SettingsControllerConnectionDialog1=0@C65= F8:;.Cycle Detected.ControllerConnectionDialogE>4=>9 :0=0; Input channelControllerConnectionDialog$E>4=>9 :>=B@>;;5@Input controllerControllerConnectionDialogLMMSLMMSControllerConnectionDialog>=B@>;;5@ MIDIMIDI CONTROLLERControllerConnectionDialogd#AB@>9AB20 MIDI, A :>B>@KE =C6=> ?@8=8<0BL A>1KB8O(MIDI-devices to receive MIDI-events fromControllerConnectionDialog##OKControllerConnectionDialog",. "  USER CONTROLLERControllerConnectionDialog>1028BLAddControllerRackView>=B@>;;5@KController RackControllerRackView&!?@02:0&HelpControllerView&#1@0BL D8;LB@&Remove this pluginControllerView>=B@>;;5@K A;C60BL 4;O 02B><0B870F88 87<5=5=89 7=0G5=8O @53C;OB>@>2, ?>;7C=:>2 8;8 4@C38E :>=B@>;;5@>2.QControllers are able to automate the value of a knob, slider, and other controls.ControllerView0@0<5B@KControlsControllerViewL2548B5 =>2>5 =0720=85 4;O :>=B@>;;5@0&Enter the new name for this controllerControllerView05@58<5=>20BL :>=B@>;;5@Rename controllerControllerView;8B. A?040DecayEffect-DD5:B 2:;NGQ=Effect enabledEffect "8H8=0GateEffect8 53C;OB>@ 3;C18=K D8;LB@0F88 Wet/Dry mixEffect -DD5:BK 2:;NGQ=KEffects enabled EffectChain>1028BL D8;LB@ Add effectEffectRackView&, $,"  EFFECTS CHAINEffectRackView>1028BL D8;LB@ Add effectEffectSelectDialog&!?@02:0&Help EffectView&#1@0BL D8;LB@&Remove this plugin EffectView0@0<5B@KControls EffectView!DECAY EffectViewh!83=0; ?@>E>48B ?>A;54>20B5;L=> G5@57 2A5 CAB0=>2;5==K5 D8;LB@K (A5@EC 2=87). 5@5:;NG0B5;L :;/K:; ?>72>;O5B 2 ;N1>9 <><5=B 2:;NG0BL/2K:;NG0BL D8;LB@.  53C;OB>@ 3;C18=K D8;LB@0F88 >?@545;O5B 4>;N A83=0;0, 87<5=O5<CN D8;LB@><. E>4=>9 A83=0; :064>3> D8;LB@0 O2;O5BAO 2KE>4>< ?@54K4CI53>, B0: GB> 4>;O =5D8;LB@>20==>3> A83=0;0 ?@8 ?@>E>645=88 ?> F5?>G:5 ?>AB>O==> ?0405B.  53C;OB>@ 4;8B5;L=>AB8 ?>A;5459AB28O D8;LB@0 >?@545;O5B 2@5<O, :>B>@>5 1C45B 459AB2>20BL D8;LB@ ?>A;5 >:>=G0=8O ?>A;54=59 =>BK. '5< <5=LH5 7=0G5=85, B5< <5=LH5 B@51>20=8O : &, >4=0:> MB> <>65B 2K720BL >1@57:C 72C:0 ?@8 8A?>;L7>20=88 MDD5:B>2 7045@6:8. ;O 1>;LH8=AB20 65 MDD5:B>2 53> <>6=> 2K18@0BL 4>AB0B>G=> <0;K<.  53C;OB>@ C@>2=O B8H8=K A;C68B 4;O C:070=8O =08<5=LH53> C@>2=O A83=0;0, :>B>@K9 5IQ 1C45B ?>AK;0BLAO D8;LB@0<; 2AQ, GB> =865 MB>3> C@>2=O, @0AA<0B@805BAO :0: B8H8=0  8 =5 >1@010BK205BAO. =>?:0 0@0<5B@K  >B:@K205B >:=>, 345 2K <>65B5 ?5@540BL ?0@0<5B@K <>4C;N. >=B5:AB=>5 <5=N, 2K7K205<>5 I5;G:>< ?@02>9 :=>?:>9 <KH8, ?>72>;O5B <5=OBL ?>@O4>: A;54>20=8O D8;LB@>2 8 C40;OBL 8E.SEffect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. EffectViewGATE EffectView#@>25=L B8H8=K:Gate: EffectView"5@5<5AB8BL &=865 Move &down EffectView"5@5<5AB8BL &2KH5Move &up EffectView:;/K:;On/Off EffectView -B>B @53C;OB>@ CAB0=02;8205B 2@5<O, :>B>@>5 1C45B 459AB2>20BL D8;LB@ ?>A;5 ?>A;54=59 =>BK. '5< <5=LH5 7=0G5=85, B5< <5=LH5 B@51>20=8O : &, >4=0:> MB> <>65B 2K720BL >1@57:C 72C:0 ?@8 8A?>;L7>20=88 MDD5:B>2 7045@6:8.The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. EffectViewR-B>B @53C;OB>@ >?@545;O5B =08<5=LH89 C@>25=L A83=0;0, :>B>@K9 5IQ 1C45B ?>AK;0BLAO D8;LB@0<; 2AQ, GB> =865 MB>3> C@>2=O, @0AA<0B@805BAO :0: B8H8=0  8 =5 >1@010BK205BAO.zThe Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. EffectView 53C;OB>@ 3;C18=K D8;LB@0F88 >?@545;O5B 4>;N A83=0;0, 87<5=O5<CN D8;LB@><, B. 5. :>B>@0O G0ABL 2KE>4=>3> A83=0;0 ?@>H;0 G5@57 MB>B D8;LB@.eThe Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. EffectView:045@6:0 C=8GB>65=8O D8;LB@0:Time: EffectView4:;NG05B/2K:;NG05B D8;LB@.Toggles the effect on or off. EffectView0 D8;LB@W/D EffectView.;8B5;L=>ABL =0@0AB0=8OAttackEnvelopeAndLfoParameters;8B. A?040DecayEnvelopeAndLfoParameters'!" x 100 Freq x 100EnvelopeAndLfoParameters&;8B5;L=>ABL 3@51=OHoldEnvelopeAndLfoParameters0@0AB0=85 LFO LFO AttackEnvelopeAndLfoParameters>4C;OF8O LFOLFO ModulationEnvelopeAndLfoParameters045@6:0 LFO LFO PredelayEnvelopeAndLfoParameters"$>@<0 A83=0;0 LFOLFO Wave ShapeEnvelopeAndLfoParameters!:>@>ABL LFO LFO speedEnvelopeAndLfoParameters(>4C;8@>20BL >1;>6:CModulate Env-AmountEnvelopeAndLfoParameters>4C;OF8O ModulationEnvelopeAndLfoParameters045@6:0PredelayEnvelopeAndLfoParameters2;8B5;L=>ABL 8AG57=>25=8OReleaseEnvelopeAndLfoParameters$AB0B>G=K9 C@>25=LSustainEnvelopeAndLfoParametersAMTEnvelopeAndLfoView !"ATTEnvelopeAndLfoView0;8B5;L=>ABL =0@0AB0=8O:Attack:EnvelopeAndLfoViewB5=5@8@>20BL ?8;>>1@07=K9 A83=0;.&Click here for a saw-wave for current.EnvelopeAndLfoViewf5=5@8@>20BL 30@<>=8G5A:89 (A8=CA>840;L=K9) A83=0;.Click here for a sine-wave.EnvelopeAndLfoView*!35=5@8@>20BL <50=4@.Click here for a square-wave.EnvelopeAndLfoViewB!35=5@8@>20BL B@5C3>;L=K9 A83=0;.Click here for a triangle-wave.EnvelopeAndLfoView<040BL D>@<C A83=0;0 87 D09;0.aClick here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph.EnvelopeAndLfoViewj06<8B5, GB>1K C25;8G8BL G0AB>BC MB>3> LFO 2 AB> @07.DClick here if the frequency of this LFO should be multiplied by 100.EnvelopeAndLfoView06<8B5 AN40, GB>1K 3;C18=0 <>4C;OF88 >1;>6:8 704020;0AL MB8< LFO.>Click here to make the envelope-amount controlled by this LFO.EnvelopeAndLfoView!DECEnvelopeAndLfoView DELEnvelopeAndLfoView&;8B5;L=>ABL A?040:Decay:EnvelopeAndLfoViewV5@5B0I8B5 2 MB> >:=> :0:>9-=81C4L >1@075F.8Drag a sample from somewhere and drop it in this window.EnvelopeAndLfoView'!"" x 100 FREQ x 100EnvelopeAndLfoViewHOLDHOLDEnvelopeAndLfoView>4A:07:0HintEnvelopeAndLfoView(;8B5;L=>ABL 3@51=O:Hold:EnvelopeAndLfoView&@54. 7045@6:0 LFO: LFO predelay:EnvelopeAndLfoView!:>@>ABL LFO: LFO speed:EnvelopeAndLfoView0@0AB0=85 LFO: LFO- attack:EnvelopeAndLfoView(# ", #MODULATE ENV-AMOUNTEnvelopeAndLfoView$;C18=0 <>4C;OF88:Modulation amount:EnvelopeAndLfoView045@6:0: Predelay:EnvelopeAndLfoView!'RELEnvelopeAndLfoView4;8B5;L=>ABL 8AG57=>25=8O:Release:EnvelopeAndLfoView! SPDEnvelopeAndLfoView!"SUSTEnvelopeAndLfoView&AB0B>G=K9 C@>25=L:Sustain:EnvelopeAndLfoView-B>B @53C;OB>@ CAB0=02;8205B 2@5<O 2>7@0AB0=8O 4;O B5:CI59 >1;>6:8. '5< 1>;LH5 7=0G5=85, B5< 4>;LH5 E0@0:B5@8AB8:0 (=-@, 3@><:>ABL) 2>7@0AB05B 4> <0:A8<C<0. ;O 8=AB@C<5=>2 2@>45 ?80=8=> E0@0:B5@=K <0;K5 2@5<5=0 =0@0AB0=8O, 0 4;O AB@C==KE - 1>;LH85.Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings.EnvelopeAndLfoView-B>B @53C;OB>@ CAB0=02;8205B 2@5<O A?040 4;O B5:CI59 >1;>6:8. '5< 1>;LH5 7=0G5=85, B5< 4>;LH5 C@>25=L C<5=LH05BAO >B <0:A8<0;L=>3> 4> >AB0B>G=>3>. ;O 8=AB@C<5=B>2 2@>45 ?80=8=> A;54C5B 2K18@0BL =51>;LH85 7=0G5=8O.Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos.EnvelopeAndLfoView-B0 @CG:0 CAB0=02;8205B 4;8B5;L=>ABL 3@51=O 2>;=K B5:CI59 >1;>6:8. '5< 1>;LH5 7=0G5=85, B5< 4>;LH5 >1;>6:0 C45@68205B =081>;LH89 C@>25=L.Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level.EnvelopeAndLfoView|-B>B @53C;OB>@ CAB0=02;8205B 3;C18=C <>4C;OF88 4;O B5:CI53> LFO. '5< 1>;LH5 7=0G5=85, B5< 2 1>;LH59 AB5?5=8 2K1@0==0O E0@0:B5@8AB8:0 (=-@, 3@><:>ABL 8;8 G0AB>B0 A@570) 1C45B 7028A5BL >B LFO.Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO.EnvelopeAndLfoView-B>B @53C;OB>@ CAB0=02;8205B 3;C18=C <>4C;OF88 4;O B5:CI59 >1;>6:8. '5< 1>;LH5 7=0G5=85, B5< 2 1>;LH59 AB5?5=8 2K1@0==0O E0@0:B5@8AB8:0 (=-@, 3@><:>ABL 8;8 G0AB>B0 A@570) 1C45B 7028A5BL >B >1;>6:8.Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope.EnvelopeAndLfoView-B>B @53C;OB>@ >?@545;O5B 7045@6:C ?5@54 2>A?@>872545=85< 72C:0.Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope.EnvelopeAndLfoView-B>B @53C;OB>@ >?@545;O5B 7045@6:C ?5@54 70?CA:>< LFO (LFO==87:>G0AB>B=K9 35=5@0B>@).Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate.EnvelopeAndLfoView-B>B @53C;OB>@ CAB0=02;8205B 2@5<O 8AG57=>25=8O 4;O B5:CI59 >1;>6:8. '5< 1>;LH5 7=0G5=85, B5< 4>;LH5 E0@0:B5@8AB8:0 (=-@, 3@><:>ABL) C<5=LH05BAO >B >AB0B>G=>3> C@>2=O 4> =C;O. ;O AB@C==KE 8=AB@C<5=B>2 A;54C5B 2K18@0BL 1>;LH85 7=0G5=8O.Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings.EnvelopeAndLfoViewf-B>B @53C;OB>@ CAB0=02;O205B A:>@>ABL B5:CI53> LFO.Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect.EnvelopeAndLfoView-B>B @53C;OB>@ CAB0=02;8205B >AB0B>G=K9 C@>25=L. -B0 25;8G8=0 ?>:07K205B, A :0:>3> C@>2=O A>>B25BAB2CNI0O E0@0:B5@8AB8:0 A=8605BAO 4> =C;O.Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero.EnvelopeAndLfoViewl 07@5H8BL MB><C LFO 704020BL 3;C18=C <>4C;OF88 >1;>6:8#control envelope-amount by this LFOEnvelopeAndLfoView5@8>4:ms/LFO:EnvelopeAndLfoView>#25;8G8BL G0AB>BC LFO 2 100 @07multiply LFO-frequency by 100EnvelopeAndLfoViewB<5=8BLCancelExportProjectDialog KE>4OutputExportProjectDialogB2548B5 =>2>5 =0720=85 4;O :0=0;0&Enter the new name for this FX channel FxMixerView8:H5@ FXFX-Mixer FxMixerView03;CH8BLMute FxMixerView,5@58<5=>20BL :0=0; FXRename FX channel FxMixerView CHANNELInstrumentMidiIOView$ csg BandPass csgInstrumentSoundShaping$ czpg BandPass czpgInstrumentSoundShaping! CUTOFFInstrumentSoundShaping'0AB>B0 A@570Cutoff frequencyInstrumentSoundShaping1;>6:8/LFOEnvelopes/LFOsInstrumentSoundShaping"8? D8;LB@0 Filter typeInstrumentSoundShaping$'HiPassInstrumentSoundShaping$'LowPassInstrumentSoundShaping(>;>A=>-703@0640NI89NotchInstrumentSoundShaping#A8;5=85 Q/ResonanceInstrumentSoundShaping#!RESOInstrumentSoundShaping#A8;5=85 ResonanceInstrumentSoundShaping !",VOLUMEInstrumentSoundShaping@><:>ABLVolumeInstrumentSoundShaping! CUTOFFInstrumentSoundShapingView $," FILTERInstrumentSoundShapingView45AL 2K <>65B5 2K1@0BL D8;LB@ 4;O MB>3> 8=AB@C<5=B0. $8;LB@K <>3CB 4>2>;L=> A8;L=> <5=OBL 72CG0=85.Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound.InstrumentSoundShapingViewFHzInstrumentSoundShapingView#!RESOInstrumentSoundShapingView#A8;5=85: Resonance:InstrumentSoundShapingView% " !"TARGETInstrumentSoundShapingViewF-B0 2:;04:0 ?>72>;O5B 20< =0AB@>8BL >1;>6:8. =8 >G5=L 206=K 4;O =0AB@>9:8 72CG0=8O. 0?@8<5@, A ?><>ILN >1;>6:8 3@><:>AB8 2K <>65B5 7040BL 7028A8<>ABL 3@><:>AB8 72CG0=8O >B 2@5<5=8. A;8 20< ?>=04>18BAO M<C;8@>20BL <O3:85 AB@C==K5, ?@>AB> 70409B5 1>;LH85 2@5<5=0 =0@0AB0=8O 8 8AG57=>25=8O 72C:0. ! ?><>ILN >1;>65: 8 =87:>G0AB>B=>3> 35=5@0B>@0 (LFO) 2K 2 =5A:>;L:> I5;G:>2 <KH8 A<>65B5 A>740BL ?@>AB> =525@>OB=K5 72C:8!_These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...!InstrumentSoundShapingView-B0 @CG:0 7040QB CA8;5=85 A83=0;0 =0 G0AB>B0 A@570 (@57>=0=A=>9 G0AB>B5).Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency.InstrumentSoundShapingView-B>B @53C;OB>@ CAB0=02;8205B G0AB>BC A@570 4;O 2K1@0==>3> D8;LB@0.  ?@8<5@C, $' 1C45B A@570BL A83=0; =0 G0AB>B0E 2KH5 G0AB>BK A@570, ?>;>A=>-?@>?CA:0NI89 D8;LB@ 1C45B E>@>H> ?@>?CA:0BL A83=0; B>;L:> =0 7040==>9 G0AB>B5 8 B0: 40;55...2Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on...InstrumentSoundShapingView'0AB>B0 A@570:cutoff-frequency:InstrumentSoundShapingView?>@=0O =>B0 Base noteInstrumentTrack5 =0720=>Default presetInstrumentTrack0=0; FX FX channelInstrumentTrack!4283 2KA>BKPitchInstrumentTrack@><:>ABLVolumeInstrumentTrackL 53C;8@>2:0 3@><:>AB8 B5:CI53> :0=0;0.4InputInstrumentTrackViewMIDIMIDIInstrumentTrackView KE>4OutputInstrumentTrackViewPANInstrumentTrackView!B5@5>10;0=A:Panning:InstrumentTrackView VOLInstrumentTrackView@><:>ABLVolumeInstrumentTrackView@><:>ABL:Volume:InstrumentTrackView06<8B5 AN40, GB>1K A>E@0=8BL =0AB@>9:8 B5:CI53> :0=0;0 2 D09; ?@54CAB0=>2>:. >765 2K A<>65B5 703@C78BL MB8 =0AB@>9:8 G5@57 ?@>A<>B@I8:.Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser.InstrumentTrackWindow/LFOENV/LFOInstrumentTrackWindow /  FUNCInstrumentTrackWindow FXFX CHNLInstrumentTrackWindow0=0; FX FX channelInstrumentTrackWindow)  " +GENERAL SETTINGSInstrumentTrackWindow*@><:>ABL 8=AB@C<5=B0Instrument volumeInstrumentTrackWindowMIDIMIDIInstrumentTrackWindowPANInstrumentTrackWindow !PITCHInstrumentTrackWindow #,PLUGINInstrumentTrackWindow!B5@5>10;0=A:Panning:InstrumentTrackWindow!4283 2KA>BKPitchInstrumentTrackWindow!4283 2KA>BK:Pitch:InstrumentTrackWindow VOLInstrumentTrackWindow@><:>ABL:Volume:InstrumentTrackWindow F5=B>2centsInstrumentTrackWindow!2O70BL :0=0;K Link channels LadspaControl 0=0; Channel LadspaControlDialog!2O70BL :0=0;K Link ChannelsLadspaControlDialog!2O70BL :0=0;K Link channelsLadspaControlView,728=8B5, A?@02:8 =5B.Sorry, no help available.LadspaControlView=0G5=85: Value:LadspaControlView -DD5:BEffect LadspaEffectP0?@>H5= =58725AB=K9 <>4C;L LADSPA %1.#Unknown LADSPA plugin %1 requested. LadspaEffect ?>@=>5 7=0G5=85 Base value LfoController"=>68B5;L G0AB>BKFrequency Multiplier LfoController>=B@>;;5@ LFOLFO Controller LfoController$070 35=5@0B>@0Oscillator phase LfoController&!:>@>ABL 35=5@0B>@0Oscillator speed LfoController8$>@<0 A83=0;0 4;O 35=5@0B>@0Oscillator waveform LfoControllerAMTLfoControllerDialogT5=5@8@>20BL ?8;>>1@07=K9 A83=0; :0: moog.!Click here for a a moog saw-wave.LfoControllerDialogD!35=5@8@>20BL ?8;>>1@07=K9 A83=0;.Click here for a saw-wave.LfoControllerDialogf5=5@8@>20BL 30@<>=8G5A:89 (A8=CA>840;L=K9) A83=0;.Click here for a sine-wave.LfoControllerDialog*!35=5@8@>20BL <50=4@.Click here for a square-wave.LfoControllerDialogB!35=5@8@>20BL B@5C3>;L=K9 A83=0;.Click here for a triangle-wave.LfoControllerDialog8040BL D>@<C A83=0;0 A0<><C.$Click here for a user-defined shape.LfoControllerDialogJ5=5@8@>20BL M:A?>=5=F80;L=K9 A83=0;.#Click here for an exponential wave.LfoControllerDialog0!35=5@8@>20BL 15;K9 HC<.Click here for white-noise.LfoControllerDialog>=B@>;;5@ LFOLFO ControllerLfoControllerDialog!:>@>ABL LFO: LFO-speed:LfoControllerDialog$;C18=0 <>4C;OF88:Modulation amount:LfoControllerDialog!$PHSLfoControllerDialog!4283 D07K: Phase offset:LfoControllerDialog! SPDLfoControllerDialogj-B>B @53C;OB>@ CAB0=02;8205B 3;C18=C <>4C;OF88 4;O LFO. '5< 1>;LH5 7=0G5=85, B5< 2 1>;LH59 AB5?5=8 2K1@0==0O E0@0:B5@8AB8:0 (=-@, 3@><:>ABL 8;8 G0AB>B0 A@570) 1C45B 7028A5BL >B LFO.Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO.LfoControllerDialog-B>B @53C;OB>@ CAB0=02;O205B A:>@>ABL LFO. '5< 1>;LH5 7=0G5=85, B5< 1>;LH5 G0AB>B0 35=5@0B>@0.zUse this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect.LfoControllerDialog`-B>B @53C;OB>@ CAB0=02;8205B =0G0;L=CN D07C 35=5@0B>@0 =87:>9 G0BA>BK (LFO), B. 5. B>G:C, A :>B>@>9 35=5@0B>@ =0G8=05B 2K@010BK20BL A83=0;. 0?@8<5@, 5A;8 2K 7040;8 A8=CA>840;L=CN D>@<C A83=0;0 8 =0G0;L=CN D07C 180, 2>;=0 A=0G0;0 ?>94QB 2=87, 0 =5 225@E. "> 65 4;O <50=4@0 (A83=0;0 ?@O<>C3>;L=>9 D>@<K).#With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave.LfoControllerDialogdegreesLfoControllerDialogA45;0BLtodoLfoControllerDialog&@02:0&Edit MainWindow&!?@02:0&Help MainWindow &>2K9&New MainWindow&B:@KBL...&Open... MainWindow&@>5:B&Project MainWindow &K9B8&Quit MainWindow&!>E@0=8BL&Save MainWindow&!5@28A&Tools MainWindow ?@>3@0<<5About MainWindown> =060B8N MB>9 :=>?:8 70?CA:05BAO ?>H03>2K9 A5:25=A>@ ?@>872545=8O. = =5>1E>48< 4;O CAB0=>2:8 @8B<0, 4>102;5=8O 8 C40;5=8O :0=0;>2, 2K@570=8O, :>?8@>20=8O 8 2AB02:8 H01;>=>2 8 B. ?.By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. MainWindow> =060B8N MB>9 :=>?:8 70?CA:05BAO D8=0;L=K9 A5:25=A>@. ! 53> ?><>ILN 2K <>65B5 @540:B8@>20BL :><?>78F8N 8 CAB0=02;820BL 2@5<O 2>A?@>872545=8O 4;O 2A5E 4>@>65:. "0:65 2K <>65B5 2AB02;OBL 8 ?5@542830BL >1@07FK =5?>A@54AB25==> 2 A?8A:5 2>A?@>872545=8O.By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. MainWindowP060B85< MB>9 :=>?:8 ?>:07K205BAO/C18@05BAO >:=> @540:B>@0 2@5<5==<b>K</b>E 7028A8<>AB59. ! 53> ?><>ILN 2K <>65B5 @540:B8@>20BL 87<5=5=8O 2K1@0==KE 25;8G8= A> 2@5<5=5<.Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. MainWindowB06<8B5 745AL GB>1K A:@KBL/?>:070BL <8:H5@ FX. = O2;O5BAO <>I=K< 8=AB@C<5=B>< 4;O C?@02;5=8O MDD5:B0<8. K <>65B5 2AB02;OBL MDD5:BK 2 @07;8G=K5 :0=0;K MDD5:B>2.Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. MainWindow> =060B8N MB>9 :=>?:8 70?CA:05BAO A5:25=A>@ LMMS. ! 53> ?><>ILN 2K <>65B5 ;53:> @540:B8@>20BL H01;>=K <5;>488.pClick here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. MainWindow-B0 :=>?:0 ?>:07K205B/?@OG5B >:=> A 70<5B:0<8.  MB>< >:=5 2K <>65B5 ?><5I0BL ;N1K5 :><<5=B0@88 : A2>59 :><?>78F88.hClick here to show or hide the project notes window. In this window you can put down your project notes. MainWindow65 <>3C A>E@0=8BL =0AB@>9:8Could not save config-file MainWindow5 <>3C 70?8A0BL =0AB@>9:8 2 D09; %1. >7<>6=>, 2K =5 >1;0405B5 ?@020<8 =0 70?8AL 2 =53>. >60;C9AB0, ?@>25@LB5 A2>8 ?@020 8 ?>?@>1C9B5 A=>20.Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. MainWindow(!>740BL =>2K9 ?@>5:BCreate new project MainWindow>!>740BL =>2K9 ?@>5:B ?> H01;>=C Create new project from template MainWindow>:0 GB> A?@02:0 4;O LMMS =5 =0?8A0=0. 5@>OB=>, K A<>65B5 =09B8 =C6=K5 <0B5@80;K =0 http://lmms.sf.net/wiki .lCurrently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. MainWindow&-:A?>@B... E&xport... MainWindowJ-:A?>@B8@>20BL ?@>5:B 2 72C:>2>9 D09;Export current project MainWindow!?@02:0Help MainWindow$!?@02:0 =54>ABC?=0Help not available MainWindow<?>@B... Import... MainWindowLMMS %1LMMS %1 MainWindowTC;LB8<5489=K9 ?@>5:B (*.mmp *.mmpz *.xml)'MultiMedia Project (*.mmp *.mmpz *.xml) MainWindowC;LB8<5489=K9 ?@>5:B (*.mmp *.mmpz *.xml);;(01;>= <C;LB8<5489=9=>3> ?@>5:B0 (*.mpt)FMultiMedia Project (*.mmp *.mmpz);;MultiMedia Project Template (*.mpt) MainWindow!?@02:0 2 A5B8 Online help MainWindow6B:@KBL ACI5AB2CNI89 ?@>5:BOpen existing project MainWindowB:@KBL ?@>5:B Open project MainWindow$@>5:B =5 A>E@0=Q=Project not saved MainWindow>>A;54=85 >B:@K202H85AO ?@>5:BKRecently opened project MainWindow>>A;54=85 >B:@K202H85AO ?@>5:BKRecently opened projects MainWindow65@=CBL >B<5=Q==>5 459AB285Redo MainWindow"!>E@0=8BL &:0:... Save &As... MainWindow0!>E@0=8BL B5:CI89 ?@>5:BSave current project MainWindow !>E@0=8BL ?@>5:B Save project MainWindow0@0<5B@KSettings MainWindowl>:070BL/A:@KBL @540:B>@ 2@5<5==<b>K</b>E 7028A8<>AB59Show/hide Automation Editor MainWindowF>:070BL/A:@KBL ?>H03>2K9 A5:25=A>@Show/hide Beat+Bassline Editor MainWindow2>:070BL/A:@KBL <8:H5@ FXShow/hide FX Mixer MainWindow@>:070BL/A:@KBL =>B=K9 A5:25=A>@Show/hide Piano-Roll MainWindowF>:070BL/A:@KBL D8=0;L=K9 A5:25=A>@Show/hide Song-Editor MainWindowP>:070BL/A:@KBL C?@02;5=85 :>=B@>;;5@0<8Show/hide controller rack MainWindowB>:070BL/A:@KBL 70<5B:8 : ?@>5:BCShow/hide project notes MainWindow 01>G89 :0B0;>3 LMMS (%1) =5 ACI5AB2C5B. !>740BL 53>? >765 2K A<>65B5 A<5=8BL 53> G5@57 @02:0 -> 0@0<5B@K.uThe LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. MainWindowR@>5:B 1K; 87<5=Q=. !>E@0=8BL 53> A59G0A?OThe current project was modified since last saving. Do you want to save it now? MainWindow"B<5=8BL 459AB285Undo MainWindow5=0720==K9Untitled MainWindow'B> MB>? What's this? MainWindow( 01>G89 :0B0;>3 LMMSWorking directory MainWindow=0<5=0B5;LMeter Denominator MeterDialog'8A;8B5;LMeter Numerator MeterDialog=0<5=0B5;L Denominator MeterModel'8A;8B5;L Numerator MeterModel#!" !"DEVICEMidiAlsaRaw::setupWidget#!" !"DEVICEMidiAlsaSeq::setupWidget>=B@>;;5@ MIDIMIDI ControllerMidiController#!" !"DEVICEMidiOss::setupWidgetE>4=>9 :0=0; Input channelMidiPort$E>4=>9 :>=B@>;;5@Input controllerMidiPortKE>4=>9 :0=0;Output channelMidiPort&KE>4=>9 :>=B@>;;5@Output controllerMidiPort,@8=8<0BL A>1KB8O MIDIReceive MIDI-eventsMidiPort.B?@02;OBL A>1KB8O MIDISend MIDI-eventsMidiPort""8? <>4C;OF88: %1Modulation type %1OscillatorObject@ 0AAB@>9:0 35=5@0B>@0 %1 (3@C1>)Osc %1 coarse detuningOscillatorObjectL 0AAB@>9:0 ;52>3> :0=0;0 35=5@0B>@0 %1Osc %1 fine detuning leftOscillatorObjectN 0AAB@>9:0 ?@02>3> :0=0;0 35=5@0B>@0 %1Osc %1 fine detuning rightOscillatorObject<!B5@5>10;0=A 4;O 35=5@0B>@0 %1Osc %1 panningOscillatorObject8!4283 D07K 4;O 35=5@0B>@0 %1Osc %1 phase-offsetOscillatorObject^$07>20O @0AAB@>9:0 35=5@0B>@0 %1 <564C :0=0;0<8Osc %1 stereo phase-detuningOscillatorObject.@><:>ABL 35=5@0B>@0 %1 Osc %1 volumeOscillatorObject<$>@<0 A83=0;0 35=5@0B>@0 No %1Osc %1 wave shapeOscillatorObject>$>@<0 A83=0;0 4;O 35=5@0B>@0 %1Osc %1 waveformOscillatorObject06<8B5 GB>1K >B:@KBL 4@C3>9 ?0BG-D09;. 0AB@>9:8 ?@8 MB>< A>E@0=OBAO.LClick here to open another patch-file. Loop and Tune settings are not reset. PatmanView45AL 2:;NG05BAO/2K:;NG05BAO @568< ?>2B>@0. A;8 >= 2:;NGQ=, B> PatMan 1C45B 8A?>;L7>20BL 8=D>@<0F8N > ?>2B>@5 87 D09;0.jHere you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. PatmanView45AL 2:;NG05BAO/2K:;NG05BAO @568< ?>4AB@>9:8. A;8 >= 2:;NGQ=, B> PatMan 87<5=8B >1@075F B0:, GB>1K >= A>2?040; ?> G0AB>B5 A =>B>9.iHere you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. PatmanView>2B>@OBLLoop PatmanView 568< ?>2B>@0 Loop mode PatmanView5 2K1@0= D09;No file selected PatmanView&B:@KBL 4@C3>9 ?0BGOpen other patch PatmanView"B:@KBL ?0BG-D09;Open patch file PatmanView$0BG-D09;K (*.pat)Patch-Files (*.pat) PatmanView>4AB@>8BLTune PatmanView&>4AB@>8BL ?>4 =>BC Tune mode PatmanView>=B@>;;5@ LFOLFO ControllerPeakControllerDialogAMT!PeakControllerEffectControlDialog0;8B5;L=>ABL =0@0AB0=8O:Attack:!PeakControllerEffectControlDialog!DECAY!PeakControllerEffectControlDialog$;C18=0 <>4C;OF88:Modulation amount:!PeakControllerEffectControlDialog4;8B5;L=>ABL 8AG57=>25=8O:Release:!PeakControllerEffectControlDialog.;8B5;L=>ABL =0@0AB0=8OAttackPeakControllerEffectControls ?>@=>5 7=0G5=85 Base valuePeakControllerEffectControls";C18=0 <>4C;OF88Modulation amountPeakControllerEffectControls03;CH8BL Mute outputPeakControllerEffectControls2;8B5;L=>ABL 8AG57=>25=8OReleasePeakControllerEffectControls?>@=0O =>B0 Base note PianoView,H81:0 703@C7:8 <>4C;OError while loading pluginPlugin8H81:0 703@C7:8 <>4C;O %1!Failed to load plugin "%1"!Plugin >4C;L =5 =0945=Plugin not foundPlugin>4C;L %1 >BACBAB2C5B ;81> =5 <>65B 1KBL 703@C65=! @8G8=0: %2AThe plugin "%1" wasn't found or could not be loaded! Reason: "%2"Plugin.!60BK9 D09; OGG (*.ogg)Compressed OGG-File (*.ogg)ProjectRenderer $09; WAV (*.wav)WAV-File (*.wav)ProjectRenderer"E>4=KE :0=0;>2:  Channels In: QWidget$KE>4=KE :0=0;>2: Channels Out: QWidget&@020 ?@8=04;560B:  Copyright: QWidget $09;: File: QWidget:E>4 8 2KE>4 <>3CB A>2?040BL:In Place Broken: QWidget!>740;: Maker: QWidget0720=85: Name: QWidget5BNoQWidget4 01>B0 2 @50;L=>< 2@5<5=8:Real Time Capable: QWidgetN"@51C5BAO >1@01>B:0 2 @50;L=>< 2@5<5=8:Requires Real Time: QWidget0YesQWidget&!?@02:0&Help TempoSyncKnob1/16 =>BK 16th note TempoSyncKnob1/32 =>BK 32nd note TempoSyncKnob>AL<0O =>BK8th note TempoSyncKnob0AB@>8BL Custom  TempoSyncKnob0AB@>8BL... Custom... TempoSyncKnob0>A5<L C40@>2 (425 =>BK) Eight beats TempoSyncKnob>;C=>B0 Half note TempoSyncKnob"!8=E@>=870F88 =5BNo Sync TempoSyncKnob'5B25@BL =>BK Quarter note TempoSyncKnob:!8=E@>=878@>20=> ?> 1/16 =>BKSynced to 16th Note TempoSyncKnob:!8=E@>=878@>20=> ?> 1/32 =>BKSynced to 32nd Note TempoSyncKnob8!8=E@>=878@>20=> ?> 1/8 =>BKSynced to 8th Note TempoSyncKnob<!8=E@>=878@>20=> ?> 42C< =>B0<Synced to Eight Beats TempoSyncKnobB!8=E@>=878@>20=> ?> ?>;>28=5 =>BKSynced to Half Note TempoSyncKnobB!8=E@>=878@>20=> ?> G5B25@B8 =>BKSynced to Quarter Note TempoSyncKnob<!8=E@>=878@>20=> ?> F5;>9 =>B5Synced to Whole Note TempoSyncKnob!8=E@>=870F8O Tempo Sync TempoSyncKnob&5;0O =>B0 Whole note TempoSyncKnob\&!<5H0BL A83=0;K ?5@2>3> 8 2B>@>3> 35=5@0B>@>2Mix output of oscillator 1 & 2TripleOscillatorViewd&!<5H0==K9 2KE>4 >B 2B>@>3> 8 B@5BL53> 35=5@0B>@>2Mix output of oscillator 2 & 3TripleOscillatorViewB 0AAB@>9:0 35=5@0B>@0 %1 (3@C1>):Osc %1 coarse detuning:TripleOscillatorViewN 0AAB@>9:0 ;52>3> :0=0;0 35=5@0B>@0 %1:Osc %1 fine detuning left:TripleOscillatorViewP 0AAB@>9:0 ?@02>3> :0=0;0 35=5@0B>@0 %1:Osc %1 fine detuning right:TripleOscillatorView>!B5@5>10;0=A 4;O 35=5@0B>@0 %1:Osc %1 panning:TripleOscillatorView:!4283 D07K 4;O 35=5@0B>@0 %1:Osc %1 phase-offset:TripleOscillatorView`$07>20O @0AAB@>9:0 35=5@0B>@0 %1 <564C :0=0;0<8:Osc %1 stereo phase-detuning:TripleOscillatorView0@><:>ABL 35=5@0B>@0 %1:Osc %1 volume:TripleOscillatorViewX!8=E@>=878@>20BL ?5@2K9 35=5@0B>@ ?> 2B>@><C*Synchronize oscillator 1 with oscillator 2TripleOscillatorViewZ!8=E@>=878@>20BL 2B>@>9 35=5@0B>@ ?> B@5BL5<C*Synchronize oscillator 2 with oscillator 3TripleOscillatorViewZ5=5@8@>20BL ?8;>>1@07=K9 A83=0;, :0: 2 moog.0Use a moog-like saw-wave for current oscillator.TripleOscillatorViewB5=5@8@>20BL ?8;>>1@07=K9 A83=0;.&Use a saw-wave for current oscillator.TripleOscillatorViewf5=5@8@>20BL 30@<>=8G5A:89 (A8=CA>840;L=K9) A83=0;.'Use a sine-wave for current oscillator.TripleOscillatorView(5=5@8@>20BL <50=4@.)Use a square-wave for current oscillator.TripleOscillatorView@5=5@8@>20BL B@5C3>;L=K9 A83=0;.+Use a triangle-wave for current oscillator.TripleOscillatorView*040BL D>@<C A83=0;0.3Use a user-defined waveform for current oscillator.TripleOscillatorView>4C;8@>20BL 0<?;8BC4C 35=5@0B>@0 2 A83=0;>< A ?5@2>3> 35=5@0B>@0FUse amplitude modulation for modulating oscillator 2 with oscillator 1TripleOscillatorView>4C;8@>20BL 0<?;8BC4C 35=5@0B>@0 3 A83=0;>< A> 2B>@>3> 35=5@0B>@0FUse amplitude modulation for modulating oscillator 3 with oscillator 2TripleOscillatorViewJ5=5@8@>20BL M:A?>=5=F80;L=K9 A83=0;./Use an exponential wave for current oscillator.TripleOscillatorView~>4C;8@>20BL G0AB>BC 35=5@0B>@0 2 A83=0;>< A ?5@2>3> 35=5@0B>@0FUse frequency modulation for modulating oscillator 2 with oscillator 1TripleOscillatorView>4C;8@>20BL G0AB>BC 35=5@0B>@0 3 A83=0;>< A> 2B>@>3> 35=5@0B>@0FUse frequency modulation for modulating oscillator 3 with oscillator 2TripleOscillatorViewn>4C;8@>20BL D07C 2B>@>3> 35=5@0B>@0 A83=0;>< A ?5@2>3>BUse phase modulation for modulating oscillator 2 with oscillator 1TripleOscillatorViewr>4C;8@>20BL D07C B@5BL53> 35=5@0B>@0 A83=0;>< A> 2B>@>3>BUse phase modulation for modulating oscillator 3 with oscillator 2TripleOscillatorView.5=5@8@>20BL 15;K9 HC<.'Use white-noise for current oscillator.TripleOscillatorView@C10O @53C;8@>2:0 @0AAB@>9:8 35=5@0B>@0 %1. >7<>6=0 @0AAB@>9:0 4> 12 ?>;CB>=>2 (4> >4=>9 >:B02K) 225@E 8 2=87. >;57=> 4;O A>740=8O 0::>@4>2.With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord.TripleOscillatorViewl-B>B @53C;OB>@ CAB0=02;8205B B>G=CN @0AAB>9:C 4;O ;52>3> :0=0;0 35=5@0B>@0 %1.  0AAB@>9:0 7040QBAO 2 480?07>=5 >B -100 A>BKE 4> +100 A>BKE. -B> ?>;57=> 4;O A>740=8O "B>;ABKE" 72C:>2.With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorViewn-B>B @53C;OB>@ CAB0=02;8205B B>G=CN @0AAB>9:C 4;O ?@02>3> :0=0;0 35=5@0B>@0 %1.  0AAB@>9:0 7040QBAO 2 480?07>=5 >B -100 A>BKE 4> +100 A>BKE. -B> ?>;57=> 4;O A>740=8O "B>;ABKE" 72C:>2.With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds.TripleOscillatorView 53C;OB>@ AB5@5>10;0=A0 35=5@0B>@0 %1. 5;8G8=0 -100 >7=0G05B, GB> A83=0; 84QB B>;L:> 2 ;52K9 :0=0;, 0 100 - 2 ?@02K9.With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right.TripleOscillatorView>-B>B @53C;OB>@ CAB0=02;8205B =0G0;L=CN D07C 35=5@0B>@0 !%1, B. 5. B>G:C, A :>B>@>9 35=5@0B>@ =0G8=05B 2K@010BK20BL A83=0;. 0?@8<5@, 5A;8 2K 7040;8 A8=CA>840;L=CN D>@<C A83=0;0 8 =0G0;L=CN D07C 180, 2>;=0 A=0G0;0 ?>94QB 2=87, 0 =5 225@E. "> 65 4;O <50=4@0 (A83=0;0 ?@O<>C3>;L=>9 D>@<K).)With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave.TripleOscillatorViewR-B>B @53C;OB>@ CAB0=02;8205B D07>2CN @0AAB@>9:C 35=5@0B>@0 %1 <564C :0=0;0<8, B> 5ABL @07=>ABL D07 <564C ;52K< 8 ?@02K< :0=0;0<8. -B> C4>1=> 4;O A>740=8O AB5@5>MDD5:B>2.With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds.TripleOscillatorView-B>B @53C;OB>@ CAB0=02;8205B 3@><:>ABL 35=5@0B>@0 %1. A;8 0, B> 35=5@0B>@ 2K:;NG05BAO.With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here.TripleOscillatorView F5=B>2centsTripleOscillatorViewdegreesTripleOscillatorView?>;CB>=[0,>2] semitonesTripleOscillatorView-B0 :=>?:0 A:@K205B/?>:07K205B 3@0D8G5A:89 ?>;L7>20B5;LA:89 8=B5@D59A (GUI) 2K1@0==>3> <>4C;O VST.QClick here to show or hide the graphical user interface (GUI) of your VST-plugin.VestigeInstrumentView>06<8B5 AN40, 5A;8 2K E>B8B5 >B:@KBL 4@C3>9 <>4C;L VST. >A;5 =060B8O =0 :=>?:C ?>O28BAO AB0=40@B=K9 480;>3 2K1>@0 D09;0, 345 2K A<>65B5 2K1@0BL =C6=K9 <>4C;L.Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file.VestigeInstrumentView.818;8>B5:8 DLL (*.dll)DLL-files (*.dll)VestigeInstrumentView*@>3@0<<K EXE (*.exe)EXE-files (*.exe)VestigeInstrumentView,>4C;L VST =5 703@C65=No VST-plugin loadedVestigeInstrumentView$B:@KBL <>4C;L VSTOpen VST-pluginVestigeInstrumentView2>:070BL/A:@KBL 8=B5@D59A Show/hide GUIVestigeInstrumentView$K:;NG8BL 2A5 =>BKTurn off all notesVestigeInstrumentView>BbyVestigeInstrumentView85 A<>3 703@C78BL <>4C;L VSTFailed loading VST-plugin VstPlugin03@C7:0 <>4C;OLoading plugin VstPluginR>4>648B5, ?>:0 703@C605BAO <>4C;L VST...'Please wait while loading VST-plugin... VstPlugin$BG53>-B> <>4C;L VST %1 =5 <>3 1KBL 703@C65=. A;8 4@C3>5 ?@>3@0<<=>5 >15A?5G5=85 VST @01>B05B C 0A ?>4 Linux'><, A2O68B5AL A @07@01>BG8:>< LMMS!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! VstPlugin'!"FREQZynAddSubFxView#!RESZynAddSubFxView#A8;5=85AmplifyaudioFileProcessor>=5F >1@07F0 End of sampleaudioFileProcessor>2B>@OBLLoopaudioFileProcessor&5@525@=CBL >1@075FReverse sampleaudioFileProcessor0G0;> >1@07F0Start of sampleaudioFileProcessor'!"FREQbassBoosterControlDialog'0AB>B0: Frequency:bassBoosterControlDialog#!GAINbassBoosterControlDialog#A8;5=85:Gain:bassBoosterControlDialog"RATIObassBoosterControlDialogB=>H5=85:Ratio:bassBoosterControlDialog'0AB>B0 FrequencybassBoosterControls#A8;5=85GainbassBoosterControlsB=>H5=85RatiobassBoosterControls<>1028BL 4>@>6:C 02B><0B870F88Add automation-trackbbEditor.>1028BL @8B</;59B<>B82Add beat/basslinebbEditor&>H03>2K9 A5:25=A>@Beat+Bassline EditorbbEditor06<8B5 GB>1K ?@>83@0BL 70?8AL ;59B<B>820. 0?8AL 1C45B ?>2B>@OBLAO ?>A;5 >:>=G0=8O.qClick here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached.bbEditorHAB0=>28BL 2>A?@>872545=85 (@>15;).4Click here to stop playing of current beat/bassline.bbEditor*>A?@>872545=85/?0C70(Play/pause current beat/bassline (Space)bbEditornAB0=>28BL 2>A?@>872545=85 B5:CI53> ;59B<>B820 ( ).Stop playback of current beat/bassline (Space)bbEditor7<5=8BL F25B Change color bbTCOView5@58<5=>20BL Change name bbTCOView<B:@KBL 2 ?>H03>2>< A5:25=A>@5Open in Beat+Bassline-Editor bbTCOView"!1@>A8BL =0720=85 Reset name bbTCOView59B<>B82 %1Beat/Bassline %1bbTrack;8B5;L=>ABL Samplelength bitInvaderh!35=5@8@>20BL 30@<>=8G5A:89 (A8=CA>840;L=K9) A83=0;.Click for a sine-wave.bitInvaderViewD!35=5@8@>20BL ?8;>>1@07=K9 A83=0;.Click here for a saw-wave.bitInvaderView*!35=5@8@>20BL <50=4@.Click here for a square-wave.bitInvaderViewB!35=5@8@>20BL B@5C3>;L=K9 A83=0;.Click here for a triangle-wave.bitInvaderView8040BL D>@<C A83=0;0 A0<><C.$Click here for a user-defined shape.bitInvaderView0!35=5@8@>20BL 15;K9 HC<.Click here for white-noise.bitInvaderViewL)Q;:=8B5 GB>1K A3;048BL D>@<C A83=0;0.Click here to smooth waveform.bitInvaderViewX45AL 2K <>65B5 @8A>20BL A>1AB25==K9 A83=0;.ADraw your own waveform here by dragging your mouse on this graph.bitInvaderView=B5@?>;OF8O InterpolationbitInvaderView>@<0;87>20BL NormalizebitInvaderView(;8B5;L=>ABL >1@07F0 Sample LengthbitInvaderView8;0Saw wavebitInvaderView!8=CA>840 Sine wavebitInvaderView!3;048BLSmoothbitInvaderView 50=4@ Square wavebitInvaderView"@5C3>;L=8: Triangle wavebitInvaderView >;L7>20B5;LA:0OUser defined wavebitInvaderView5;K9 HC<White noise wavebitInvaderView(5 <>3C >B:@KBL D09;Could not open fileexportProjectDialog5 <>3C >B:@KBL D09; %1 4;O 70?8A8. @>25@LB5, >1;0405B5 ;8 2K ?@020<8 =0 70?8AL 2 2K1@0==K9 D09; 8 A>45@60I89 53> :0B0;>3 8 ?>?@>1C9B5 A=>20!Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again!exportProjectDialog H81:0ErrorexportProjectDialogH81:0 ?@8 >?@545;5=88 :>48@>2I8:0 D09;0. >?@>1C9B5 2K1@0BL 4@C3>9 F5;52>9 D>@<0B.\Error while determining file-encoder device. Please try to choose a different output format.exportProjectDialog8-:A?>@B :><?>78F88 2 D09; %1Export project to %1exportProjectDialog1@01>B:0: %1%Rendering: %1%exportProjectDialog;8B. A?040DecaykickerInstrumentA:065=85 DistortionkickerInstrument >=5G=0O G0AB>B0 End frequencykickerInstrument#A8;5=85GainkickerInstrument"0G0;L=0O G0AB>B0Start frequencykickerInstrument&;8B5;L=>ABL A?040:Decay:kickerInstrumentViewA:065=85: Distortion:kickerInstrumentView">=5G=0O G0AB>B0:End frequency:kickerInstrumentView#A8;5=85:Gain:kickerInstrumentView$0G0;L=0O G0AB>B0:Start frequency:kickerInstrumentView&!?@02:0&HelpknobJ2548B5 =>2>5 7=0G5=85 <564C %1 8 %2:+Please enter a new value between %1 and %2:knob~2548B5 =>2>5 7=0G5=85 <564C 96,0 4 8 6,0 4 (?> =0?@O65=8N):7Please enter a new value between -96.0 dBV and 6.0 dBV:knob=0;870B>@KAnalysis ToolsladspaBrowserView">ABC?=K5 MDD5:BKAvailable EffectsladspaBrowserView58725AB=K5 Don't knowladspaBrowserView=AB@C<5=BK InstrumentsladspaBrowserView MB>< >:=5 ?>:070=0 8=D>@<0F8O >1> 2A5E <>4C;OE LADSPA, :>B>@K5 >1=0@C68;0 LMMS. =8 @0745;5=K =0 ?OBL :0B53>@89, 2 7028A8<>AB8 >B =0720=89 8 B8?>2 ?>@B>2. >ABC?=K5 MDD5:BK  MB> B5, :>B>@K5 <>3CB 1KBL 8A?>;L7>0=K 2 LMMS. 'B>1K MDD5:B LADSPA <>3 1KBL 8A?>;L7>20=, >= 4>;65=, 2>-?5@2KE, 1KBL A>1AB25==> MDD5:B><, B. 5. 8<5BL :0: 2E>4=K5 B0: 8 2KE>4=K5 :0=0;K. LMMS 2 :0G5AB25 2E>4=>3> :0=0;0 2>A?@8=8<05B 0C48>?>@B, A>45@60I89 2 =0720=88 in , 0 2KE>4=K5 C7=0QB ?> ?>4AB@>:5 out . ;O 8A?>;L7>20=8O 2 LMMS G8A;> 2E>4=KE :0=0;>2 4>;6=> A>2?040BL A G8A;>< 2KE>4=KE, 8 MDD5:B 4>;65= 8<5BL 2>7<>6=>ABL 8A?>;L7>20=8O 2 @50;L=>< 2@5<5=8. 54>ABC?=K5 MDD5:BK  MB> <>4C;8 LADSPA, >?>7=0==K5 2 :0G5AB25 MDD5:B>2, >4=0:> ;81> A =5A>2?040NI8<8 :>;8G5AB0<8 2E>4=KE/2KE>4=KE :0=0;>2, ;81> =5 ?@54=07=0G5==K5 4;O 8A?>;L7>20=8O 2 @50;L=>< 2@5<5=8. =AB@C<5=BK  MB> <>4C;8, C :>B>@KE 5ABL B>;L:> 2KE>4=K5 :0=0;K. =0;870B>@K  MB> <>4C;8, >1;040NI85 ;8HL 2E>4=K<8 :0=0;0<8. 58725AB=K5  <>4C;8, C :>B>@KE =5 1K;> >1=0@C65=> =8 2E>4=KE, =8 2KE>4=KE :0=0;>2. 2>9=>9 I5;G>: ;C2>9 :=>?:>9 <KH8 ?> <>4C;N 40AB 8=D>@<0F8N > 53> ?>@B0E.TThis dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports.ladspaBrowserView"8?:Type:ladspaBrowserView&54>ABC?=K5 MDD5:BKUnavailable EffectsladspaBrowserView?8A0=85 DescriptionladspaDescription >4C;8PluginsladspaDescription C48>AudioladspaPortDialog#?@02;5=85ControlladspaPortDialog0?@02;5=85 DirectionladspaPortDialog@>1=>5FloatladspaPortDialogE>4InputladspaPortDialog &5;>5IntegerladspaPortDialog>30@8D<8G5A:89 LogarithmicladspaPortDialog008<. < !B0=40@B < 081.Min < Default < MaxladspaPortDialog0720=85NameladspaPortDialog KE>4OutputladspaPortDialog >@BKPortsladspaPortDialog'0AB>B0 2K1>@:8RateladspaPortDialog SR DependentladspaPortDialog:;NG5=>ToggledladspaPortDialog"8?TypeladspaPortDialog0YesladspaPortDialogA:065=85 Distortion lb302Synth"'0AB>B0 A@570 VCFVCF Cutoff Frequency lb302Synth!?04 VCFVCF Envelope Decay lb302Synth*;C18=0 <>4C;OF88 VCFVCF Envelope Mod lb302Synth#A8;5=85 VCF Resonance lb302Synth$>@<0 A83=0;0Waveform lb302Synth! CUTlb302SynthViewh!35=5@8@>20BL 30@<>=8G5A:89 (A8=CA>840;L=K9) A83=0;.Click for a sine-wave.lb302SynthViewD!35=5@8@>20BL ?8;>>1@07=K9 A83=0;.Click here for a saw-wave.lb302SynthView*!35=5@8@>20BL <50=4@.Click here for a square-wave.lb302SynthViewB!35=5@8@>20BL B@5C3>;L=K9 A83=0;.Click here for a triangle-wave.lb302SynthViewJ5=5@8@>20BL M:A?>=5=F80;L=K9 A83=0;.#Click here for an exponential wave.lb302SynthView0!35=5@8@>20BL 15;K9 HC<.Click here for white-noise.lb302SynthView'0AB>B0 A@570: Cutoff Freq:lb302SynthView!DEClb302SynthView!DISTlb302SynthView!:DIST:lb302SynthView&;8B5;L=>ABL A?040:Decay:lb302SynthViewENV MODlb302SynthView$;C18=0 <>4C;OF88:Env Mod:lb302SynthView#!RESlb302SynthView#A8;5=85: Resonance:lb302SynthView8;0Saw wavelb302SynthView!8=CA>840 Sine wavelb302SynthView 50=4@ Square wavelb302SynthView"@5C3>;L=8: Triangle wavelb302SynthView5;K9 HC<White noise wavelb302SynthViewA:065=85 Distortion lb303Synth"'0AB>B0 A@570 VCFVCF Cutoff Frequency lb303Synth!?04 VCFVCF Envelope Decay lb303Synth*;C18=0 <>4C;OF88 VCFVCF Envelope Mod lb303Synth#A8;5=85 VCF Resonance lb303Synth$>@<0 A83=0;0Waveform lb303Synth! CUTlb303SynthView'0AB>B0 A@570: Cutoff Freq:lb303SynthView!DEClb303SynthView!DISTlb303SynthView!:DIST:lb303SynthView&;8B5;L=>ABL A?040:Decay:lb303SynthViewENV MODlb303SynthView$;C18=0 <>4C;OF88:Env Mod:lb303SynthView#!RESlb303SynthView#A8;5=85: Resonance:lb303SynthView $>@<0WAVElb303SynthView $>@<0:WAVE:lb303SynthView8A:>B5:0AgogomalletsInstrument #40@KBeatsmalletsInstrument"O6Q;0O ?>ABC?LClumpmalletsInstrument5@5E>4 CrossfademalletsInstrument !B5:;>GlassmalletsInstrument!:>@>ABL LFO LFO SpeedmalletsInstrument0@8<10MarimbamalletsInstrument&BACBAB2CNI85 D09;K Missing filesmalletsInstrument>4C;OB>@ ModulatormalletsInstrument>;>65=85PositionmalletsInstrument02;5=85PressuremalletsInstrument#!ResomalletsInstrument!:>@>ABLSpeedmalletsInstrument"815BA:85 H0@K Tibetan BowlmalletsInstrument,"@C1G0BK5 :>;>:>;LG8:8 Tubular BellsmalletsInstrument81@0D>= VibraphonemalletsInstrument'0AB>B0 281@0B> Vibrato FreqmalletsInstrument #A8;5=85 281@0B> Vibrato GainmalletsInstrument5@52>1Wood1malletsInstrument5@52>2Wood2malletsInstrument>E>65, GB> CAB0=>2;5=K =5 2A5 ?0:5BK STK. 0< A;54C5B MB> ?@>25@8BL!aYour Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed!malletsInstrument5@5E>4 CrossfademalletsInstrumentView5@5E>4: Crossfade:malletsInstrumentView=AB@C<5=B InstrumentmalletsInstrumentView!:>@>ABL LFO LFO SpeedmalletsInstrumentView!:>@>ABL LFO: LFO Speed:malletsInstrumentView>4C;OB>@ ModulatormalletsInstrumentView>4C;OB>@: Modulator:malletsInstrumentView>;>65=85PositionmalletsInstrumentView>;>65=85: Position:malletsInstrumentView02;5=85PressuremalletsInstrumentView02;5=85: Pressure:malletsInstrumentView!:>@>ABLSpeedmalletsInstrumentView!:>@>ABL:Speed:malletsInstrumentView'0AB. 281Vib FreqmalletsInstrumentView81@0B>: Vib Freq:malletsInstrumentView#A8;. 281@0B>Vib GainmalletsInstrumentView#A8;. 281@0B>: Vib Gain:malletsInstrumentView81@0B>VibratomalletsInstrumentView81@0B>:Vibrato:malletsInstrumentView&!?@02:0&HelpnineButtonSelectorA:065=85 DistortionorganicInstrument@><:>ABLVolumeorganicInstrumentA:065=85: Distortion:organicInstrumentViewN 0AAB@>9:0 ;52>3> :0=0;0 35=5@0B>@0 %1:Osc %1 fine detuning left:organicInstrumentView>!B5@5>10;0=A 4;O 35=5@0B>@0 %1:Osc %1 panning:organicInstrumentView0@><:>ABL 35=5@0B>@0 %1:Osc %1 volume:organicInstrumentView@$>@<0 A83=0;0 4;O 35=5@0B>@0 %1:Osc %1 waveform:organicInstrumentView!;CG09=> RandomiseorganicInstrumentView@><:>ABL:Volume:organicInstrumentView F5=B>2centsorganicInstrumentView 86=85BasspapuInstrumentLB ?5@2>3> :0=0;0 : SO1 (?@02K9 :0=0;)Channel 1 to SO1 (Right)papuInstrumentJB ?5@2>3> :0=0;0 : SO2 (;52K9 :0=0;)Channel 1 to SO2 (Left)papuInstrument0@><:>ABL ?5@2>3> :0=0;0Channel 1 volumepapuInstrumentLB 2B>@>3> :0=0;0 : SO1 (?@02K9 :0=0;)Channel 2 to SO1 (Right)papuInstrumentJB 2B>@>3> :0=0;0 : SO2 (;52K9 :0=0;)Channel 2 to SO2 (Left)papuInstrument0@><:>ABL 2B>@>3> :0=0;0Channel 2 volumepapuInstrumentNB B@5BL53> :0=0;0 : SO1 (?@02K9 :0=0;)Channel 3 to SO1 (Right)papuInstrumentLB B@5BL53> :0=0;0 : SO2 (;52K9 :0=0;)Channel 3 to SO2 (Left)papuInstrument2@><:>ABL B@5BL53> :0=0;0Channel 3 volumepapuInstrumentRB G5B2Q@B>3> :0=0;0 : SO1 (?@02K9 :0=0;)Channel 4 to SO1 (Right)papuInstrumentPB G5B2Q@B>3> :0=0;0 : SO2 (;52K9 :0=0;)Channel 4 to SO2 (Left)papuInstrument6@><:>ABL G5B2Q@B>3> :0=0;0Channel 4 volumepapuInstrument,KE>4=>9 C@>25=L A;520Left Output levelpapuInstrument.KE>4=>9 C@>25=L A?@020Right Output levelpapuInstrument5@E=85TreblepapuInstrument 86=85BasspapuInstrumentView86=85:Bass:papuInstrumentView5@E=85TreblepapuInstrumentView5@E=85:Treble:papuInstrumentView25 <>3C 70<>@>78BL H01;>=Cannot freeze patternpattern(01;>= =5 <>65B 1KBL 70<>@>65=, B0: :0: >= ?@>83@K205BAO 2 40==K9 <><5=B. AB0=>28B5 2>A?@>872545=85 8 ?>?@>1C9B5 A=>20!_The pattern currently cannot be freezed because you're in play-mode. Please stop and try again!patternB<5=8BLCancelpatternFreezeStatusDialog*0<>@06820N H01;>=...Freezing pattern...patternFreezeStatusDialog%1 H03(0/>2)%1 steps patternView 1 H031 step patternView>1028BL H038 Add steps patternView5@58<5=>20BL Change name patternViewG8AB8BLClear all notes patternView0<>@>78BLFreeze patternView(B:@KBL 2 A5:25=A>@5Open in piano-roll patternView5@570<>@>78BLRefreeze patternView#40;8BL H038 Remove steps patternView"!1@>A8BL =0720=85 Reset name patternView 07<>@>78BLUnfreeze patternView'B>1K >B:@KBL MB>B H01;>= 2 A5:25=A>@5, 42064K =0 =Q< IQ;:=8B5 A?>;L7C9B5 :>;QA8:> <KH8 4;O CAB0=>2:8 3@><:>AB8 >B45;L=>3> H030Wdouble-click to open this pattern in piano-roll use mouse wheel to set volume of a step patternView@8 =060B88 =0 MBC :=>?:C =>BK 87 1CD5@0 1C4CB 2AB02;5=K 2 ?@52K9 2848<K9 B0:B.XClick here and the notes from the clipboard will be pasted at the first visible measure. pianoRoll0@8 =060B88 =0 MBC :=>?:C 2K45;5=K5 =>BK 1C4CB ?5@5<5I5=K 2 1CD5@. >765 2K <>65B5 2AB028BL 8E 2 ;N1>5 <5AB> ;N1>3> H01;>=0 A ?><>ILN :=>?:8 "AB028BL".Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRoll0@8 =060B88 =0 MBC :=>?:C 2K45;5=K5 =>BK 1C4CB ?5@5<5I5=K 2 1CD5@. >765 2K <>65B5 2AB028BL 8E 2 ;N1>5 <5AB> ;N1>3> H01;>=0 A ?><>ILN :=>?:8 "AB028BL".Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. pianoRoll$06<8B5 745AL GB>1K ?@>83@0BL B5:CI89 H01;>=. -B> <>65B ?@83>48BLAO ?@8 53> @540:B8@>20=88. > >:>=G0=88 H01;>=0 2>A?@>872545=85 =0G=QBAO A=0G0;0.Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. pianoRollX06<8B5 MBC :=>?:C, 5A;8 2K E>B8B5 70?8A0BL =>BK A CAB@>9AB20 MIDI 8;8 28@BC0;L=>3> A8=B570B>@0 A>>B25BAB2CNI53> :0=0;0. >765 2K A<>65B5 >B@540:B8@>20BL 70?8A0==K9 H01;>=.Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. pianoRoll06<8B5 MBC :=>?:C, 5A;8 2K E>B8B5 70?8A0BL =>BK A CAB@>9AB20 MIDI 8;8 28@BC0;L=>3> A8=B570B>@0 A>>B25BAB2CNI53> :0=0;0. > 2@5<O 70?8A8 2A5 =>BK 70?8AK20NBAO 2 MB>B H01;>=, 8 2K 1C45B5 A;KH0BL :><?>78F8N 8;8 ;59B<>B82.Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. pianoRoll06<8B5 745AL, 5A;8 2K E>B8B5 >AB0=>28BL 2>A?@>872545=85 B5:CI53> H01;>=0./Click here to stop playback of current pattern. pianoRollV>?8@>20BL 2K45;5==K5 =>BK 2 1CD5@ (Ctrl+X)Copy selected notes (Ctrl+C) pianoRollX5@5<5AB8BL 2K45;5==K5 =>BK 2 1CD5@ (Ctrl+X)Cut selected notes (Ctrl+X) pianoRoll2 568< @8A>20=8O (Shift+D)Draw mode (Shift+D) pianoRoll8 568< AB8@0=8O =>B (Shift+E)Erase mode (Shift+E) pianoRoll> ?>A;. =>B5 Last note pianoRoll@AB028BL =>BK 87 1CD5@0 (Ctrl+V)#Paste notes from clipboard (Ctrl+V) pianoRoll!5:25=A>@ - %1Piano-Roll - %1 pianoRoll.!5:25=A>@ - 157 H01;>=0Piano-Roll - no pattern pianoRoll\>A?@>872545=85 B:CI53> H01;>=0/?0C70 (@>15;)"Play/pause current pattern (Space) pianoRoll`B:@>9B5 H01;>= A ?><>ILN 42>9=>3> I5;G:0 <KHLN!/Please open a pattern by double-clicking on it! pianoRollr0?8A0BL =>BK A F8D@>2>3> <C7K:0;L=>3> 8=AB@C<5=B0 (MIDI)+Record notes from MIDI-device/channel-piano pianoRoll0?8A0BL =>BK A F8D@>2>3> <C7K:0;L=>3> 8=AB@C<5=B0 (MIDI) 2> 2@5<O 2>A?@>872545=8O :><?>78F88 8;8 ;59B<>B820JRecord notes from MIDI-device/channel-piano while playing song or BB track pianoRoll4 568< 2K1>@0 =>B (Shift+S)Select mode (Shift+S) pianoRollTAB0=>28BL 2>A?@>87245=85 H01;>=0 (@>15;)'Stop playing of current pattern (Space) pianoRoll<!8=B570B>@ 72C:>2 2@>45 >@30=0*Additive Synthesizer for organ-like sounds pluginBrowserK <>65B5 ?5@5=>A8BL =C6=K5 20< 8=AB@C<5=BK 87 MB>9 ?0=5;8 2 D8=0;L=K9 8;8 ?>H03>2K9 A5:25=A>@.nDrag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. pluginBrowserJ-<C;OF8O 0C48>?@>F5AA>@0 GameBoy (TM)Emulation of GameBoy (TM) APU pluginBrowser-<C;OF8O MOS6581 8 MOS8580. A?>;L7>20;>AL =0 :><?LNB5@5 Commodore 64.ZEmulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. pluginBrowserR$8;LB@ 4;O 8<?>@B8@>20=8O D09;>2 FL Stuio1Filter for importing FL Studio projects into LMMS pluginBrowserZ$8;LB@ 4;O 2:;NG5=85 D09;0 MIDI 2 ?@>5:B LMMS)Filter for importing MIDI-files into LMMS pluginBrowserD0BG-8=AB@C<5=B, A>2<5AB8<K9 A GUSGUS-compatible patch instrument pluginBrowserV57025@HQ==0O <>=>D>=8G5A:0O 8<8B0F8O tb303%Incomplete monophonic imitation tb303 pluginBrowser=AB@C<5=BKInstrument browser pluginBrowser=AB@C<5=BKInstrument plugins pluginBrowserH>:070BL CAB0=>2;5==K5 <>4C;8 LADSPAList installed LADSPA plugins pluginBrowser<@>83@K20B5;L D09;>2 SoundFontPlayer for SoundFont files pluginBrowserx>4C;L 4;O CAB0=>2:8 7=0G5=89 @53C;OB>@>2 ?> ?8:0< 3@><:>AB8-Plugin for controlling knobs with sound peaks pluginBrowsern>4C;L, CA8;820NI89 @07=8FC <564C :0=0;0<8 AB5@5>70?8A8=Plugin for enhancing stereo separation of a stereo input file pluginBrowserb>4C;L 4;O ?@>872>;L=>3> C?@02;5=8O AB5@5>2KE>4><,Plugin for freely manipulating stereo output pluginBrowser$5;>48G=K5 C40@=K5Tuneful things to bang on pluginBrowser>>445@6:0 <>4C;59 VST(i) 2 LMMS-VST-host for using VST(i)-plugins within LMMS pluginBrowser-<C;OF8O AB@C=Vibrating string modeler pluginBrowser(>?8A0=85 >BACBAB2C5Bno description pluginBrowser0>4C;L, CA8;820NI89 10AKplugin for boosting bass pluginBrowserz>4C;L, ?>72>;ONI89 8A?>;L7>20BL 2 LMMS ;N1K5 MDD5:BK LADSPA.6plugin for using arbitrary LADSPA-effects inside LMMS. pluginBrowsert>4C;L, ?>72>;ONI89 8A?>;L7>20BL 2 LMMS ;N1K5 MDD5:BK VST.3plugin for using arbitrary VST-effects inside LMMS. pluginBrowser>4:;NG5=85 ?@>872>;L=>3> 72C:>2>3> >1@07F0 A =5:>B>@>9 2>7<>6=>ABLN =0AB@>9:8Zsimple sampler with various settings for using samples (e.g. drums) in an instrument-track pluginBrowserl"@8 35=5@0B>@0, :>B>@K5 K <>65B5 =0AB@0820BL ?> 2:CAC;three powerful oscillators you can modulate in several ways pluginBrowser>=>3>F5;52>9 A8=B570B>@ C40@=KE&versatile kick- & bassdrum-synthesizer pluginBrowser>;C&68@=K9&Bold projectNotes&&25B... &Color... projectNotes&>?8@>20BL&Copy projectNotes&C@A82&Italic projectNotes> &H8@8=5&Justify projectNotes> &;52><C :@0N&Left projectNotes&AB028BL&Paste projectNotes&>2B>@8BL&Redo projectNotes > &?@02><C :@0N&Right projectNotes&>4G5@:=CBL &Underline projectNotes&B<5=8BL&Undo projectNotes> &F5=B@CC&enter projectNotesCtrl+B projectNotesCtrl+C projectNotesCtrl+E projectNotesCtrl+I projectNotesCtrl+J projectNotesCtrl+L projectNotesCtrl+R projectNotesCtrl+U projectNotesCtrl+V projectNotesCtrl+X projectNotesCtrl+Y projectNotesCtrl+Z projectNotes&K@570BLCu&t projectNotes @02:0 Edit Actions projectNotes$>@<0B8@>20=85Format Actions projectNotes"0<5B:8 : ?@>5:BC Project notes projectNotesb45AL 2K <>65B5 45@60BL 70<5B:8 : A2>5<C ?@>5:BC.!Put down your project notes here. projectNotes 5@58<5=>20BL... Rename... renameDialog2$09;K AIFF (*.aif *.aiff)AIFF-Files (*.aif *.aiff) sampleBuffer$09;K AU (*.au)AU-Files (*.au) sampleBufferA5 72C:>2K5 D09;K (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3)SAll Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) sampleBuffer,$09;K DrumSynth (*.ds)DrumSynth-Files (*.ds) sampleBuffer&$09;K FLAC (*.flac)FLAC-Files (*.flac) sampleBuffer,$09;K MPEG1 L3 (*.mp3)MP3-Files (*.mp3) sampleBuffer"$09;K OGG (*.ogg)OGG-Files (*.ogg) sampleBuffer*B:@KBL 72C:>2>9 D09;Open audio file sampleBuffer"$09;K RAW (*.raw)RAW-Files (*.raw) sampleBuffer&$09;K SPEEX (*.spx)SPEEX-Files (*.spx) sampleBuffer"$09;K VOC (*.voc)VOC-Files (*.voc) sampleBuffer$$09;K Wave (*.wav)Wave-Files (*.wav) sampleBuffer>?8@>20BLCopy sampleTCOViewK@570BLCut sampleTCOView:#40;8BL (A@54=OO :=>?:0 <KH8)Delete (middle mousebutton) sampleTCOView\03;CH8BL/2:;NG8BL (Crl + A@54=OO :=>?:0 <KH8)#Mute/unmute ( + middle click) sampleTCOViewAB028BLPaste sampleTCOView4#AB0=>28BL/>G8AB8BL 70?8ALSet/clear record sampleTCOViewl;O 2K1>@0 D09;0->1@07F0 A45;09B5 42>9=>9 I5;G>: <KHLNdouble-click to select sample sampleTCOView>@>6:0 Sample track sampleTrack@><:>ABLVolume sampleTrack"@><:>ABL :0=0;0:Channel volume:sampleTrackView"@><:>ABL 4>@>6:8 Track volumesampleTrackView VOLsampleTrackView #/ !!"AUDIO INTERFACE setupDialog>0B0;>3 A M;5<5=B0<8 >D>@<;5=8OArtwork directory setupDialog0@0<5B@K 72C:0Audio settings setupDialog  #$  BUFFER SIZE setupDialogB<5=8BLCancel setupDialog0K1>@ :0B0;>30 FL Studio'Choose FL Studio installation directory setupDialogBK1>@ :0B0;>30 A <>4C;O<8 LADSPA Choose LADSPA plugin directory setupDialog8K1>@ @01>G53> :0B0;>30 LMMSChoose LMMS working directory setupDialog$K1>@ :0B0;>30 STKChoose STK rawwave directory setupDialogTK1>@ :0B0;>30 A B5<>9 >D>@<;5=8O 4;O LMMSChoose artwork-theme directory setupDialog<K1>@ :0B0;>30 4;O <>4C;59 VST Choose your VST-plugin directory setupDialogF> C<>;G0=8N A68<0BL D09;K ?@>5:B>2"Compress project files per default setupDialogNB:;NG8BL 8=48:0B>@K 0:B82=>AB8 :0=0;>2#Disable channel activity indicators setupDialogRB>1@060BL 3@><:>AB8 2 45F815;0E (=0?@.) Display volume as dBV  setupDialog<:;NG8BL 2A?;K20NI85 ?>4A:07:8Enable tooltips setupDialog60B0;>3 CAB0=>2:8 FL Studio FL Studio installation directory setupDialog2$@03<5=B>2: %1 B:;8:: %2Frames: %1 Latency: %2 ms setupDialog1I85 ?0@0<5B@KGeneral settings setupDialogP 568< 2KA>:>3> :0G5AB20 4;O 2K2>40 72C:0HQ-mode for output audio-device setupDialog>60;C9AB0, 2K15@8B5 8=B5@D59A MIDI.  7028A8<>AB8 >B :>=D83C@0F88 2> 2@5<O :><?8;8@>20=8O ?@>3@0<<K, 2K <>65B5 8A?>;L7>20BL ALSA, OSS 8 4@C385.  =86=59 G0AB8 >:=0 =0AB@>9:8 <>6=> 7040BL A?5F8D8G5A:85 ?0@0<5B@K 2K1@0==>3> 8=B5@D59A0.Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. setupDialog>60;C9AB0, 2K15@8B5 72C:>2CN A8AB5<C.  7028A8<>AB8 >B :>=D83C@0F88 2> 2@5<O :><?8;8@>20=8O ?@>3@0<<K, 2K <>65B5 8A?>;L7>20BL ALSA, JACK, OSS 8 4@C385.  =86=59 G0AB8 >:=0 =0AB@>9:8 <>6=> 7040BL A?5F8D8G5A:85 ?0@0<5B@K 2K1@0==>9 A8AB5<K.Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. setupDialog45AL 2K <>65B5 =0AB@>8BL @07<5@ 2=CB@5==53> 72C:>2>3> 1CD5@0 LMMS. 5=LH85 7=0G5=8O 40NB <5=LH55 2@5<O >B:;8:0 ?@>3@0<<K, => ?>2KH0NB ?>B@51;5=85 @5AC@A>2 - MB> >A>15==> 70<5B=> =0 AB0@KE <0H8=0E 8 A8AB5<0E, O4@> :>B>@KE =5 ?>445@68205B ?@8>@8B5B0 @50;L=>3> 2@5<5=8. A;8 =01;N405BAO ?@5@K28ABK9 72C:, ?>?@>1C9B5 C25;8G8BL @07<5@ 1CD5@0.Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. setupDialog( 01>G89 :0B0;>3 LMMSLMMS working directory setupDialog" $! MIDIMIDI INTERFACE setupDialog0@0<5B@K MIDI MIDI settings setupDialog  MISC setupDialogOK setupDialogV=>?:8 =0 "@>O;5" =068<0NBAO B>;L:> 2@CG=CN)Only press keys on channel-piano manually setupDialog80@0<5B@K ?@>872>48B5;L=>AB8Performance settings setupDialog#GB8B5, GB> 1>;LH8=AB2> =0AB@>5: =5 2ABC?OB 2 A8;C 4> ?5@570?CA:0 ?@>3@0<<K!GPlease note that most changes won't take effect until you restart LMMS! setupDialogD>AAB0=>28BL 7=0G5=85 ?> C<>;G0=8NReset to default-value setupDialog$5@570?CAB8B5 LMMS Restart LMMS setupDialog0B0;>3 STKSTK rawwave directory setupDialog0AB@>9:0 LMMS Setup LMMS setupDialogd>:07K20BL ?@54C?@5645=85 ?>A;5 87<5=5=8O =0AB@>5:,Show restart warning after changing settings setupDialogJ87C0;L=K5 MDD5:BK/?@>872>48B5;L=>ABLUI effects vs. performance setupDialog&0B0;>3 <>4C;59 VSTVST-plugin directory setupDialog#A8;5=85Gain sf2Instrument-E>Reverb sf2Instrument#@>25=L ME0 Reverb Level sf2InstrumentR!>740BL MDD5:B E>@0 (5A;8 ?>445@68205BAO)Apply chorus (if supported)sf2InstrumentViewB!>740BL ME> (5A;8 ?>445@68205BAO)Apply reverb (if supported)sf2InstrumentViewK1@0BL ?0BGChoose the patchsf2InstrumentViewV06<8B5 745AL GB>1K >B:@KBL 4@C3>9 D09; SF2#Click here to open another SF2 filesf2InstrumentView#A8;5=85Gainsf2InstrumentView.B:@KBL D09; SoundFrontOpen SoundFont filesf2InstrumentView<B:@KBL 4@C3>9 D09; SoundFrontOpen other SoundFont filesf2InstrumentView" 07<5@ ?><5I5=8O:Reverb Roomsize:sf2InstrumentView-B0 :=>?:0 2:;NG05B MDD5:B E>@0. -B> <>65B ?@83>48BLAO, => @01>B05B =5 4;O 2A5E D09;>2.uThis button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it.sf2InstrumentView-B0 :=>?:0 2:;NG05B MDD5:B ME0. -B> <>65B ?@83>48BLAO, => @01>B05B =5 4;O 2A5E D09;>2.pThis button enables the reverb effect. This is useful for cool effects, but only works on files that support it.sf2InstrumentView>45;L G8?0 Chip model sidInstrument!@57Cutoff sidInstrument"8? D8;LB@0 Filter type sidInstrument#A8;5=85 Resonance sidInstrument@><:>ABLVolume sidInstrument;8B5;L=>ABL =0@0AB0=8O >?@545;O5B, =0A:>;L:> 1KAB@> 3@><:>ABL %1-3> 3>;>A0 2>7@0AB05B >B =C;O 4> =081>;LH53> 7=0G5=8O.\Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude.sidInstrumentView0;8B5;L=>ABL =0@0AB0=8O:Attack:sidInstrumentView$Band-Pass filter sidInstrumentView'0AB>B0 A@570:Cutoff frequency:sidInstrumentView;8B5;L=>ABL A?040 >?@545;O5B, =0A:>;L:> 1KAB@> 3@><:>ABL ?0405B >B <0:A8<C<0 4> >AB0B>G=>3> C@>2=O.iDecay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level.sidInstrumentView&;8B5;L=>ABL A?040:Decay:sidInstrumentView$8;LB@>20BLFilteredsidInstrumentView$'High-Pass filter sidInstrumentView$'Low-Pass filter sidInstrumentView MOS6581 SID sidInstrumentView MOS8580 SID sidInstrumentView(C<NoisesidInstrumentView@><:>ABL %1-3> 3>;>A0 1C45B >AB020BLAO =0 MB>< C@>2=5, ?>:0 4;8BAO =>B0.]Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held.sidInstrumentView4;8B5;L=>ABL 8AG57=>25=8O:Release:sidInstrumentView#A8;5=85: Resonance:sidInstrumentView 8;0 SawToothsidInstrumentView&AB0B>G=K9 C@>25=L:Sustain:sidInstrumentView !8=E@>=878@>20BLSyncsidInstrumentView $;06>:TestsidInstrumentViewA;8 D;06>: CAB0=>2;5=, B> %1-9 35=5@0B>@ 2K40QB =C;52>9 A83=0; (?>:0 D;06>: =5 A=8<5BAO).PTest, when set, resets and locks Oscillator %1 at zero until Test is turned off.sidInstrumentView@><:>ABL %1-3> 3>;>A0 1C45B ?040BL >B >AB0B>G=>3> C@>2=O 4> =C;O A C:070==>9 745AL A:>@>ABLN.jThe output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate.sidInstrumentView"@5C3>;L=8: Triangle WavesidInstrumentView@><:>ABL:Volume:sidInstrumentViewA;8 MB>B D;06>: CAB0=>2;5=, B> %1-9 3>;>A 1C45B ?@>E>48BL G5@57 D8;LB@. =0G5 3>;>A !%1 1C45B ?>4020BLAO ?@O<> =0 2KE>4.When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it.sidInstrumentView@>5:B ?CAB Empty projectsong<?>@B D09;0 Import filesong"1I0O 2KA>B0 B>=0 Master pitchsong1I0O 3@><:>ABL Master volumesong&@>5:B  !% .Project NOT saved.song@>5:B A>E@0=Q= Project savedsongFK1>@ D09;0 4;O M:A?>@B0 ?@>5:B0...!Select file for project-export...song"5<?Temposong&@>5:B %1 A>E@0=Q=.The project %1 is now saved.song,@>5:B %1 =5 A>E@0=Q=!The project %1 was not saved!song@>5:B =8G53> =5 A>45@68B, B0: GB> 8 M:A?>@B8@>20BL =5G53>. !=0G0;0 4>102LB5 E>BO 1K >4=C 4>@>6:C A ?><>ILN A5:25=A>@0!`This project is empty so exporting makes no sense. Please put some items into Song Editor first!song5=0720==>5untitledsong<>1028BL 4>@>6:C 02B><0B870F88Add automation-track songEditor$>1028BL @8B</10AKAdd beat/bassline songEditor>1028BL D09;Add sample-track songEditor606<8B5, GB>1K ?@>A;CH0BL A>740==CN <5;>48N. >A?@>872545=85 =0G=QBAO A ?>78F88 :C@A>@0 (75;Q=K9 B@5C3>;L=8:); 2K <>65B5 42830BL 53> 2> 2@5<O ?@>83@K20=8O.Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. songEditor06<8B5 AN40, 5A;8 2K E>B8B5 >AB0=>28BL 2>A?@>872545=85 <5;>488. C@A>@ ?@8 MB>< 1C45B CAB0=>2;5= =0 =0G0;> :><?>78F88.uClick here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. songEditor(5 <>3C >B:@KBL D09;Could not open file songEditor*5 <>3C 70?8A0BL D09;Could not write file songEditor5 A<>3 70?8A0BL D09; %1. >7<>6=>, C 20A =5B =5>1E>48<KE 4;O MB>3> ?@02. @>25@LB5 20H8 ?@020 =0 70?8AL 2 MB>B D09;.Could not write file %1. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. songEditor 568< @8A>20=8O Draw mode songEditor<@02:0 (2K45;5=85/?5@5<5I5=85)Edit mode (select and move) songEditor KA>:>5 :0G5AB2>High quality mode songEditor"1I0O 2KA>B0 B>=0 Master pitch songEditor1I0O 3@><:>ABL Master volume songEditor>0G0BL 2>A?@>872545=85 (@>15;)Play song (Space) songEditorP0?8A0BL >1@075F A> 72C:>2>3> CAB@>9AB20 Record samples from Audio-device songEditor0?8A0BL =>BK A> 72C:>2>9 ?;0BK 2> 2@5<O 2>A?@>872545=8O :><?>78F88 8;8 ;59B<>B820?Record samples from Audio-device while playing song or BB track songEditor&$8=0;L=K9 A5:25=A>@ Song-Editor songEditorFAB0=>28BL 2>A?@>872545=85 (@>15;)Stop song (Space) songEditor"/BPM TEMPO/BPM songEditor"5<?Tempo songEditor.-B> 7=0G5=85 7040QB B5<? <5;>488 2 C40@0E 2 <8=CBC (0=3;. 011@. BPM). 0 :064K9 B0:B ?@8E>48BAO G5BK@5 C40@0, B0: GB> B5<? 2 C40@0E 2 <8=CBC D0:B8G5A:8 C:07K205B, A:>;L:> G5B25@B59 B0:B0 ?@>83@K205BAO 70 <8=CBC (8;8, GB> B> 65, :>;8G5AB2> B0:B>2, ?@>83@K205<KE 70 G5BK@5 <8=CBK).-The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). songEditor4=0G5=85: %1 ?>;CB>=(0/>2)Value: %1 semitones songEditor=0G5=85: %1% Value: %1% songEditor"1I0O 2KA>B0 B>=0 master pitch songEditor1I0O 3@><:>ABL master volume songEditor"5<? <5;>488 tempo of song songEditor(8=59=0O >AL >@48=0B Linear Y axisspectrumAnalyzerControlDialog8=59=K9 A?5:B@Linear spectrumspectrumAnalyzerControlDialog 568< :0=0;0 Channel modespectrumAnalyzerControls(8=59=0O >AL >@48=0B Linear Y-axisspectrumAnalyzerControls8=59=K9 A?5:B@Linear spectrumspectrumAnalyzerControls&B ;52>3> =0 ;52K9:Left to Left Vol:stereoMatrixControlDialog(B ;52>3> =0 ?@02K9:Left to Right Vol:stereoMatrixControlDialog(B ?@02>3> =0 ;52K9:Right to Left Vol:stereoMatrixControlDialog*B ?@02>3> =0 ?@02K9:Right to Right Vol:stereoMatrixControlDialog$B ;52>3> =0 ;52K9 Left to LeftstereoMatrixControls&B ;52>3> =0 ?@02K9 Left to RightstereoMatrixControls&B ?@02>3> =0 ;52K9 Right to LeftstereoMatrixControls(B ?@02>3> =0 ?@02K9Right to RightstereoMatrixControlsD>A;5 >AB0=>20 ?5@5E>48BL : =0G0;CAfter stopping go back to begintimeLine>A;5 >AB0=>20 ?5@5E>48BL : <5ABC, A :>B>@>3> =0G0;>AL 2>A?@>872545=85?After stopping go back to position at which playing was startedtimeLine8AB020BLAO =0 <5AB5 >AB0=>20After stopping keep positiontimeLine,:;/2K:; 02B>?@>:@CB:CEnable/disable auto-scrollingtimeLine0:;/2K:; B>G:8 ?5@5<>B:8Enable/disable loop-pointstimeLine>4A:07:0HinttimeLine06<8B5 [CTRL] GB>1K >B:;NG8BL ?@82O7:C B>G5: ?5@5E>40 : B0:B0<.-Press to disable magnetic loop-points.timeLine03;CHQ=Mutedtrack>=>SolotrackB<5=8BLCanceltrackContainer5 <>3C =09B8 D8;LB@ 4;O D09;0 %1. ;O ?>4:;NG5=8O MB>3> D09;0 ?@5>1@07C9B5 53> 2 D>@<0B, ?>445@68205<K9 LMMS.Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software.trackContainer45 <>3C 8<?>@B8@>20BL D09;Couldn't import filetrackContainer(5 <>3C >B:@KBL D09;Couldn't open filetrackContainer5 <>3C >B:@KBL D09; %1 4;O 70?8A8. @>25@LB5, >1;0405B5 ;8 2K ?@020<8 =0 70?8AL 2 2K1@0==K9 D09; 8 A>45@60I89 53> :0B0;>3 8 ?>?@>1C9B5 A=>20!Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again!trackContainer,<?>@B8@CN D09; FLP...Importing FLP-file...trackContainer.<?>@B8@CN D09; MIDI...Importing MIDI-file...trackContainer"'B5=85 ?@>5:B0...Loading project...trackContainer0>4>648B5, ?>60;C9AB0...Please wait...trackContainer03;CHQ=MutedtrackContentObject2%1:%2 (>B %3:%4 4> %5:%6)%1:%2 (%3:%4 to %5:%6)trackContentObjectView>?8@>20BLCopytrackContentObjectView;8B5;L=>ABLCurrent lengthtrackContentObjectView>78F8OCurrent positiontrackContentObjectViewK@570BLCuttrackContentObjectView:#40;8BL (A@54=OO :=>?:0 <KH8)Delete (middle mousebutton)trackContentObjectView>4A:07:0HinttrackContentObjectView\03;CH8BL/2:;NG8BL (Crl + A@54=OO :=>?:0 <KH8)#Mute/unmute ( + middle click)trackContentObjectViewAB028BLPastetrackContentObjectView`06<8B5 <Ctrl> 8 >B?CAB8B5, GB>1K A>740BL :>?8N.%Press and drag to make a copy.trackContentObjectViewT;O A2>1>4=>3> ?5@5<5I5=8O =06<8B5 <Ctrl>.Press for free resizing.trackContentObjectView259AB28O 4;O MB>9 4>@>6:8Actions for this tracktrackOperationsWidget$>?8@>20BL 4>@>6:CClone this tracktrackOperationsWidget03;CH8BLMutetrackOperationsWidget"B:;NG8BL 4>@>6:CMute this tracktrackOperationsWidget;O ?5@5B0A:820=8O 2 4@C3>5 >:=> =06<8B5 <Ctrl> ?@8 =060B88 =0 MBC ?>;>A:C.KPress while clicking on move-grip to begin a new drag'n'drop-action.trackOperationsWidget#40;8BL 4>@>6:CRemove this tracktrackOperationsWidget>=>SolotrackOperationsWidget85 A<>3 703@C78BL <>4C;L VSTFailed loading VST-pluginvestigeInstrument03@C7:0 <>4C;OLoading pluginvestigeInstrumentR>4>648B5, ?>:0 703@C605BAO <>4C;L VST...'Please wait while loading VST-plugin...vestigeInstrument$BG53>-B> <>4C;L VST %1 =5 <>3 1KBL 703@C65=. A;8 4@C3>5 ?@>3@0<<=>5 >15A?5G5=85 VST @01>B05B C 0A ?>4 Linux'><, A2O68B5AL A @07@01>BG8:>< LMMS!The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer!vestigeInstrument 0AAB@>9:0 %1 Detune %1vibed5GQB:>ABL %1 Fuzziness %1 vibed<?C;LA %1 Impulse %1vibed;8=0 %1 Length %1vibed:B020 %1 Octave %1vibed!B5@5>10;0=A %1Pan %1vibed 04 %1Pick %1 positionvibed<>;>65=85 %1-3> 72C:>A=8<0B5;OPickup %1 positionvibed*QAB:>ABL %1-9 AB@C=KString %1 stiffnessvibed*@><:>ABL %1-9 AB@C=KString %1 volumevibed&!?@02:0&Help vibedViewR06<8B5, GB>1K 2:;NG8BL/2K:;NG8BL A83=0;.&Click here to enable/disable waveform. vibedViewH06<8B5, GB>1K =>@<0;87>20BL A83=0;.!Click here to normalize waveform. vibedViewL)Q;:=8B5 GB>1K A3;048BL D>@<C A83=0;0.Click here to smooth waveform. vibedView 0AAB@>9:0:Detune: vibedView:;NG8BLEnable waveform vibedView5GQB:>ABL: Fuzziness: vibedView. 540:B>@ D>@<K 8<?C;LA0Impulse Editor vibedViewL0G0;L=0O A:>@>ABL/=0G0;L=>5 A>AB>O=85Impulse or initial state vibedView ;8=0:Length: vibedView>@<0;87>20BL Normalize vibedView :B020Octave vibedView!B5@5>10;0=A:Pan: vibedView04:Pick position: vibedView2>;>65=85 72C:>A=8<0B5;O:Pickup position: vibedView8;0Saw wave vibedView!8=CA>840 Sine wave vibedView!3;048BLSmooth vibedView 50=4@ Square wave vibedView !B@C=0String vibedViewQAB:>ABL:String stiffness: vibedView\5@5:;NG0B5;L Imp  CAB0=02;8205B @568< @01>BK AB@C=K: 5A;8 >= 2:;NGQ=, B> C:070==0O D>@<0 A83=0;0 8=B5@?@5B8@C5BAO :0: =0G0;L=K9 8<?C;LA, 8=0G5  :0: =0G0;L=0O D>@<0 AB@C=K.The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. vibedView 53C;OB>@ 'P' CAB0=02;8205B <5AB> AB@C=K, 345 >=0 1C45B ?@860B0 . '5< =865 7=0G5=85, B5< 1;865 MB> <5AB> 1C45B : :>1K;:5.The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. vibedView 53C;OB>@ 'PU' CAB0=02;8205B <5AB> AB@C=K, >B:C40 1C45B A=8<0BLAO 72C:. '5< =865 7=0G5=85, B5< 1;865 MB> <5AB> 1C45B : :>1K;:5.The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. vibedViewN 53C;OB>@ 'S' CAB0=02;8205B 6QAB:>ABL B5:CI59 AB@C=K. -B>B ?0@0<5B@ >B25G05B 70 4;8B5;L=>ABL 72CG0=8O AB@C=K (G5< 1>;LH5 7=0G5=85 6QAB:>AB8, B5< B>;LH5 725=8B AB@C=0).The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. vibedViewj 53C;OB>@ 'V' CAB0=02;8205B 3@><:>ABL B5:CI59 AB@C=K.4The 'V' knob sets the volume of the selected string. vibedView$ 53C;OB>@ @0AAB@>9:8 87<5=O5B A4283 G0AB>BK 4;O B5:CI59 AB@C=K. B@8F0B5;L=K5 7=0G5=8O 70AB02OB AB@C=C 72CG0BL 15<>;L=>, ?>;>68B5;L=K5  4857=>. The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. vibedView. 53C;OB>@ 4;8=K CAB0=02;8205B 4;8=C B5:CI59 AB@C=K. '5< 4;8==55 AB@C=0, B5< 1>;55 G8ABK9 8 4>;389 72C: >=0 40QB; >4=0:> MB> B@51C5B 1>;LH5 @5AC@A>2 &.The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. vibedViewn5@5:;NG0B5;L >:B02 ?>72>;O5B C:070BL 30@<>=8:C >A=>2=>9 G0AB>BK, =0 :>B>@>9 1C45B 72CG0BL AB@C=0. 0?@8<5@, -2  >7=0G05B, GB> AB@C=0 1C45B 72CG0BL 42C<O >:B020<8 =865 >A=>2=>9 G0AB>BK, F  70AB028B AB@C=C 725=5BL =0 >A=>2=>9 G0AB>B5 8=AB@C<5=B0, 0 6   =0 G0AB>B5, =0 H5ABL >:B02 1>;55 2KA>:>9, G5< >A=>2=0O.#The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. vibedViewz-B>B @53C;OB>@ CAB0=02;8205B AB5@5>10;0=A 4;O B5:CI59 AB@C=K.PThe Pan knob determines the location of the selected string in the stereo field. vibedView>-B>B @53C;OB>@ 4>102;O5B @07<KB>AB8 72C:C, GB> =081>;55 70<5B=> 2> 2@5<O =0@0AB0=8O, 2?@>G5< MB> <>65B 8A?>;L7>20BLAO GB>1K A45;0BL 72C: 1>;55 <5B0;;8G5A:8< .The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. vibedView5@5:;NG0B5;L AB@C= ?>72>;O5B 2K1@0BL AB@C=C, GL8 A2>9AB20 @540:B8@CNBAO. =AB@C<5=B Vibed A>45@68B 4> 452OB8 =57028A8<> 72CG0I8E AB@C=, 8=48:0B>@ 2 ;52>< =86=5< C3;C ?>:07K205B, 0:B82=0 ;8 B5:CI0O AB@C=0 (B. 5. 1C45B ;8 >=0 A;KH=0).The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. vibedView 540:B>@ D>@<K ?>72>;O5B O2=> C:070BL ?@>D8;L AB@C=K 2 =0G0;L=K9 <><5=B 2@5<5=8, ;81> 5Q =0G0;L=K9 8<?C;LA (2 708A8<>AB8 >B A>AB>O=8O ?5@5:;NG0B5;O Imp ). =>?:8 A?@020 >B @8AC=:0 ?>72>;ONB 704020BL =5:>B>@K5 AB0=40@B=K5 D>@<K, ?@8GQ< :=>?:0 '?' A;C68B 4;O 7040=8O D>@<K 87 ?@>872>;L=>3> 72C:>2>3> D09;0 (703@C60NBAO ?5@2K5 128 M;5<5=B>2 2K1>@:8). "0:65 D>@<0 A83=0;0 <>65B 1KBL ?@>AB> =0@8A>20=0 A ?><>ILN <KH8. =>?:0 'S' A3;048B B5:CICN D>@<C. =>?:0 'N' =>@<0;87C5B C@>25=L.The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. vibedView"@5C3>;L=8: Triangle wave vibedViewB5=5@8@>20BL ?8;>>1@07=K9 A83=0;.&Use a saw-wave for current oscillator. vibedViewf5=5@8@>20BL 30@<>=8G5A:89 (A8=CA>840;L=K9) A83=0;.'Use a sine-wave for current oscillator. vibedView(5=5@8@>20BL <50=4@.)Use a square-wave for current oscillator. vibedView@5=5@8@>20BL B@5C3>;L=K9 A83=0;.+Use a triangle-wave for current oscillator. vibedView*040BL D>@<C A83=0;0.3Use a user-defined waveform for current oscillator. vibedView.5=5@8@>20BL 15;K9 HC<.'Use white-noise for current oscillator. vibedView >;L7>20B5;LA:0OUser defined wave vibedView=AB@C<5=B Vibed  <>45;8@C5B 4> 452OB8 =57028A8<KE >4=>2@5<5==> 72CG0I8E AB@C=. 5@5:;NG0B5;L Strings  ?>72>;O5B 2K1@0BL AB@C=C, GL8 A2>9AB20 @540:B8@CNBAO. 5@5:;NG0B5;L Imp  CAB0=02;8205B @568< @01>BK AB@C=K: 5A;8 >= 2:;NGQ=, B> C:070==0O D>@<0 A83=0;0 8=B5@?@5B8@C5BAO :0: =0G0;L=K9 8<?C;LA, 8=0G5  :0: =0G0;L=0O D>@<0 AB@C=K. 5@5:;NG0B5;L Octave  ?>72>;O5B C:070BL 30@<>=8:C >A=>2=>9 G0AB>BK, =0 :>B>@>9 1C45B 72CG0BL AB@C=0.  540:B>@ D>@<K ?>72>;O5B O2=> C:070BL ?@>D8;L AB@C=K 2 =0G0;L=K9 <><5=B 2@5<5=8, ;81> 5Q =0G0;L=K9 8<?C;LA.  53C;OB>@ 'V' CAB0=02;8205B 3@><:>ABL B5:CI59 AB@C=K, 'S'  6QAB:>ABL, 'P'  <5AB>, 345 ?@860B0 AB@C=0, 0 'PU''  ?>;>65=85 72C:>A=8<0B5;O  53C;OB>@K @0AAB@>9:8 8 AB5@5>10;0=A0, 5ABL =045640, =5 =C640NBAO 2 >1JOA=5=8OE.  CG:0 ;8=0  @53C;8@C5B 4;8=C AB@C=K =48:0B>@-?5@5:;NG0B5;L A;520 A=87C >?@545;O5B, 2:;NG5=0 ;8 B5:CI0O AB@C=0.hVibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. vibedView@><:>ABL:Volume: vibedView5;K9 HC<White noise wave vibedView\06<8B5, GB>1K 2:;NG8BL/2K:;NG8BL 287C0;870F8N6click to enable/disable visualization of master-outputvisualizationWidget.0@0AB0=85 %1-3> 3>;>A0Voice %1 attack voiceObject> 0AAB@>9:0 %1-3> 3>;>A0 (3@C1>)Voice %1 coarse detuning voiceObject"!?04 %1-3> 3>;>A0Voice %1 decay voiceObject,$8;LB@>20BL %1-9 3>;>AVoice %1 filtered voiceObject2AG57=>25=8O %1-3> 3>;>A0Voice %1 release voiceObjectFAB0B>G=K9 C@>25=L 4;O %1-3> 3>;>A0Voice %1 sustain voiceObject4!8=E@>=870F8O %1-3> 3>;>A0 Voice %1 sync voiceObject<$>@<0 A83=0;0 4;O %1-3> 3>;>A0Voice %1 wave shape voiceObject ) , lmms-1.0.0+bzr2569/data/locale/ru.ts0000644000000000000000000105650512307165142015110 0ustar 00000000000000 AboutDialog About LMMS LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) About О программе LMMS - easy music production for everyone Authors Translation Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! License Copyright (c) 2004-2014, LMMS developers <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE УСТРОЙСТВО CHANNELS ЧИСЛО КАНАЛОВ AudioFileProcessorView Open other sample Открыть другой образец Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Нажмите здесь, чтобы открыть другой звуковой файл. При этом появится стандартный диалог выбора файла. При этом сохраняются все настройки, такие как режим повтора, точки начала/конца, усиление. Reverse sample Перевернуть образец If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Перевернуть образец. Можно получать забавные эффекты - например, перевёрнутый взрыв. Loop sample at start- and end-point Постоянно воспроизводить участок образца между начальной и конечной точками Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Здесь вы можете указать, следует ли повторять звук при достижении конца файла. Если включено, то AudioFileProcessor будет повторять часть звука между начальной и конечной точками. Это может быть полезным для чего-нибудь вроде струнных или образцов аккордов. Amplify: Усиление: With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Эта ручка задаёт коэффициент усиления. При значении 100% исходный звук не меняется, если же нет ― он будет ослаблен или усилен. (Обратите внимание, что выбранный файл при этом останется нетронутым.) Startpoint: Начальная точка: With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Эта ручка устанавливает точку, с которой будет начинаться воспроизведение образца. При включённом повторе модуль воспроизведения будет возвращаться к этой точке, если нота длительней части образца меж начальной и конечной точками. Endpoint: Конечная точка: With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Эта ручка устанавливает точку, где будет заканчиваться воспроизведение образца. При включённом повторе модуль воспроизведения по достижении этого места возвратится к начальной точке, если нота длительней части образца меж начальной и конечной точками. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. JACK server down The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack::setupWidget CLIENT-NAME ИМЯ КЛИЕНТА CHANNELS ЧИСЛО КАНАЛОВ AudioOss::setupWidget DEVICE УСТРОЙСТВО CHANNELS ЧИСЛО КАНАЛОВ AudioPortAudio::setupWidget BACKEND Драйвер DEVICE УСТРОЙСТВО AudioPulseAudio::setupWidget DEVICE УСТРОЙСТВО CHANNELS ЧИСЛО КАНАЛОВ AudioSdl::setupWidget DEVICE УСТРОЙСТВО AutomatableModel &Reset (%1%2) &Сбросить (%1%2) &Copy value (%1%2) &Копировать (%1%2) &Paste value (%1%2) &Вставить (%1%2) Edit song-global automation Connected to %1 Подсоединено к %1 Connected to controller подсоединено к контроллеру Edit connection... Настроить соединение... Remove connection Удалить соединение Connect to controller... Соединить с контроллером... Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) Воспроизведение ткущего шаблона/пауза (Пробел) Stop playing of current pattern (Space) Остановить воспроизвдение шаблона (Пробел) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Нажмите здесь чтобы проиграть текущий шаблон. Это может пригодиться при его редактировании. Шаблон автоматически повторяется при достижении конца. Click here if you want to stop playing of the current pattern. Нажмите здесь, если вы хотите приостановить/продолжить воспроизведение текущего шаблона. Draw mode (Shift+D) Режим рисования (Shift+D) Erase mode (Shift+E) Режим стирания нот (Shift+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. При нажатии на эту кнопку активируется режим рисования нот, который является режимом по умолчанию и используется большую часть времени. В этом режиме вы можете добавлять/перемещать и изменять длительность одиночных нот. Для включения этого режима можно использовать комбинацию клавиш Shift+D. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. При нажатии на эту кнопку активируется режим стирания. В этом режиме вы можете стирать ноты по одной. Для включения этого режима можно использовать комбинацию клавиш Shift+E. Cut selected values (Ctrl+X) Вырезать выбранные ноты (Ctrl+X) Copy selected values (Ctrl+C) Копировать выбранные ноты в буфер (Ctrl+C) Paste values from clipboard (Ctrl+V) Вставить значения из буфера (Ctrl+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. При нажатии на эту кнопку выделеные ноты будут перемещены в буфер. Позже вы можете вставить их в любое место любого шаблона с помощью кнопки "Вставить". Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. При нажатии на эту кнопку выделеные ноты будут скопированы в буфер. Позже вы можете вставить их в любое место любого шаблона с помощью кнопки "Вставить". Click here and the values from the clipboard will be pasted at the first visible measure. При нажатии на эту кнопку ноты из буфера будут вставлены в превый видимый такт. Automation Editor - no pattern Редактор временных зависимостей — нет шаблона Automation Editor - %1 Редактор временных зависимостей — %1 Please open an automation pattern with the context menu of a control! Открывайте редатор временных зависимостей через контекстное меню регулятора! Values copied Значения скопированы All selected values were copied to the clipboard. Выбранные значения скопированы в буфер обмена. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> AutomationPatternView double-click to open this pattern in automation editor Дважды щёлкните мышью чтобы настроить зависимость от времени для этого шаблона Open in Automation editor Настройка зависимости от времени Clear Очистить Reset name Сбросить название Change name Переименовать %1 Connections Соединения %1 Disconnect "%1" Отсоединить «%1» AutomationTrack Automation track Дорожка автоматизации Controller Controller %1 Контроллер %1 ControllerConnectionDialog Connection Settings Параметры соединения MIDI CONTROLLER Контроллер MIDI Input channel Входной канал CHANNEL КАНАЛ Input controller Входной контроллер CONTROLLER КОНТРОЛЛЕР Auto Detect Автоопределение MIDI-devices to receive MIDI-events from Устройства MIDI, с которых нужно принимать события USER CONTROLLER ПОЛЬЗ. КОНТРОЛЛЕР MAPPING FUNCTION OK УГУ Cancel Отменить LMMS LMMS Cycle Detected. Обнаружен цикл. ControllerRackView Controller Rack Контроллеры Add Добавить Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls Параметры Controllers are able to automate the value of a knob, slider, and other controls. Контроллеры служать для автоматизации изменений значения регуляторов, ползунков или других контроллеров. Rename controller Переименовать контроллер Enter the new name for this controller Введите новое название для контроллера &Remove this plugin &Убрать фильтр &Help &Справка Effect Effect enabled Эффект включён Wet/Dry mix Регулятор глубины фильтрации Gate Тишина Decay Длит. спада EffectChain Effects enabled Эффекты включёны EffectRackView EFFECTS CHAIN ЦЕПЬ ФИЛЬТРОВ Add effect Добавить фильтр EffectSelectDialog Add effect Добавить фильтр Plugin description EffectView Toggles the effect on or off. Включает/выключает фильтр. On/Off Вкл/Выкл W/D На фильтр Wet Level: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. Регулятор глубины фильтрации определяет долю сигнала, изменяемую фильтром, т. е. которая часть выходного сигнала прошла через этот фильтр. DECAY СПАД Time: Задержка уничтожения фильтра: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. Этот регулятор устанавливает время, которое будет действовать фильтр после последней ноты. Чем меньше значение, тем меньше требования к ЦП, однако это может вызвать обрезку звука при использовании эффектов задержки. GATE ЗАПОЛНЕНИЕ Gate: Уровень тишины: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. Этот регулятор определяет наименьший уровень сигнала, который ещё будет посылаться фильтрам; всё, что ниже этого уровня, рассматриается как „тишина“ и не обрабатывается. Controls Параметры Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. Сигнал проходит последовательно через все установленные фильтры (серху вниз). Переключатель Вкл/Выкл позволяет в любой момент включать/выключать фильтр. Регулятор глубины фильтрации определяет долю сигнала, изменяемую фильтром. Входной сигнал каждого фильтра является выходом предыдущего, так что доля нефильтрованного сигнала при прохождении по цепочке постоянно падает. Регулятор длительности последействия фильтра определяет время, которое будет действовать фильтр после окончания последней ноты. Чем меньше значение, тем меньше требования к ЦП, однако это может вызвать обрезку звука при использовании эффектов задержки. Для большинства же эффектов его можно выбирать достаточно малым. Регулятор уровня тишины служит для указания наименьшего уровня сигнала, который ещё будет посылаться фильтрам; всё, что ниже этого уровня, рассматриается как „тишина“ и не обрабатывается. Кнопка „Параметры“ открывает окно, где вы можете передать параметры модулю. Контекстное меню, вызываемое щелчком правой кнопкой мыши, позволяет менять порядок следования фильтров и удалять их. Move &up Переместить &выше Move &down Переместить &ниже &Remove this plugin &Убрать фильтр &Help &Справка EnvelopeAndLfoParameters Predelay Задержка Attack Длительность нарастания Hold Длительность гребня Decay Длит. спада Sustain Остаточный уровень Release Длительность исчезновения Modulation Модуляция LFO Predelay Задержка LFO LFO Attack Нарастание LFO LFO speed Скорость LFO LFO Modulation Модуляция LFO LFO Wave Shape Форма сигнала LFO Freq x 100 ЧАСТ x 100 Modulate Env-Amount Модулировать обложку EnvelopeAndLfoView DEL ЗДРЖ Predelay: Задержка: Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. Этот регулятор определяет задержку перед воспроизведением звука. ATT НРСТ Attack: Длительность нарастания: Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. Этот регулятор устанавливает время возрастания для текущей обложки. Чем больше значение, тем дольше характеристика (н-р, громкость) возрастает до максимума. Для инструменов вроде пианино характерны малые времена нарастания, а для струнных - большие. HOLD HOLD Hold: Длительность гребня: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. Эта ручка устанавливает длительность гребня волны текущей обложки. Чем больше значение, тем дольше обложка удерживает наибольший уровень. DEC СПАД Decay: Длительность спада: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. Этот регулятор устанавливает время спада для текущей обложки. Чем больше значение, тем дольше уровень уменьшается от максимального до остаточного. Для инструментов вроде пианино следует выбирать небольшие значения. SUST ОСТ Sustain: Остаточный уровень: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. Этот регулятор устанавливает остаточный уровень. Эта величина показывает, с какого уровня соответствующая характеристика снижается до нуля. REL ИСЧ Release: Длительность исчезновения: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. Этот регулятор устанавливает время исчезновения для текущей обложки. Чем больше значение, тем дольше характеристика (н-р, громкость) уменьшается от остаточного уровня до нуля. Для струнных инструментов следует выбирать большие значения. AMT МОД Modulation amount: Глубина модуляции: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. Этот регулятор устанавливает глубину модуляции для текущей обложки. Чем больше значение, тем в большей степени выбранная характеристика (н-р, громкость или частота среза) будет зависеть от обложки. LFO predelay: Пред. задержка LFO: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. Этот регулятор определяет задержку перед запуском LFO (LFO=низкочастотный генератор). LFO- attack: Нарастание LFO: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. SPD СКОР LFO speed: Скорость LFO: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. Этот регулятор устанавлявает скорость текущего LFO. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. Этот регулятор устанавливает глубину модуляции для текущего LFO. Чем больше значение, тем в большей степени выбранная характеристика (н-р, громкость или частота среза) будет зависеть от LFO. Click here for a sine-wave. Генерировать гармонический (синусоидальный) сигнал. Click here for a triangle-wave. Сгенерировать треугольный сигнал. Click here for a saw-wave for current. Генерировать пилообразный сигнал. Click here for a square-wave. Сгенерировать меандр. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. Задать форму сигнала из файла. FREQ x 100 ЧАСТОТА x 100 Click here if the frequency of this LFO should be multiplied by 100. Нажмите, чтобы увеличить частоту этого LFO в сто раз. multiply LFO-frequency by 100 Увеличить частоту LFO в 100 раз MODULATE ENV-AMOUNT МОДУЛИРОВАТЬ ОБЛОЖКУ Click here to make the envelope-amount controlled by this LFO. Нажмите сюда, чтобы глубина модуляции обложки задавалась этим LFO. control envelope-amount by this LFO Разрешить этому LFO задавать глубину модуляции обложки ms/LFO: Период: Hint Подсказка Drag a sample from somewhere and drop it in this window. Перетащите в это окно какой-нибудь образец. ExportProjectDialog Export project Output Выход File format: Samplerate: 44100 Hz 48000 Hz 88200 Hz 96000 Hz 192000 Hz Bitrate: 64 KBit/s 128 KBit/s 160 KBit/s 192 KBit/s 256 KBit/s 320 KBit/s Depth: 16 Bit Integer 32 Bit Float Please note that not all of the parameters above apply for all file formats. Quality settings Interpolation: Zero Order Hold Sinc Fastest Sinc Medium (recommended) Sinc Best (very slow!) Oversampling (use with care!): 1x (None) 2x 4x 8x Sample-exact controllers Alias-free oscillators Start Cancel Отменить Export as loop (remove end silence) FxMixer Master FX %1 FxMixerView Rename FX channel Переименовать канал FX Enter the new name for this FX channel Введите новое название для канала FX-Mixer Микшер FX FX Fader %1 Mute Заглушить Mute this FX channel InstrumentFunctionArpeggio Arpeggio Арпеджио Arpeggio type Тип арпеджио Arpeggio range Частотный диапазон арпеджио Arpeggio time Период арпеджио Arpeggio gate Заполнение арпеджио Arpeggio direction Направление арпеджио Arpeggio mode Режим арпеджио Up Вверх Down Вниз Up and down Вверх и вниз Random Случайно Free Свободно Sort Упорядочить Sync Синхронизировать InstrumentFunctionArpeggioView ARPEGGIO АРПЕДЖИО An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. Арпджио — разновидность исполнения аккордов на фортепиано и струнных инструментах, как на арфе, когда звуки аккорда следуют один за другим. RANGE ДИАПАЗОН Arpeggio range: Диапазон арпеджио: octave(s) Октав[а/ы] Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. Используйте ручку, чтобы установить диапазон арпеджио (в октавах). Выбранный тип арпеджио будет охватывать указанное количество октав. TIME ВРЕМЯ Arpeggio time: Период арпеджио: ms мс Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. Регулировка периода арпеджио - время (в миллисекундах), которое должнен звучать каждый тон арпеджио. GATE ЗАПОЛНЕНИЕ Arpeggio gate: Коэффициент заполнения: % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Регулировка заполнения для арпеджио. Коэффициент заполнения показывает, какая часть каждого тона будет проиграна. Простой способ создавать стаккато-орпеджио. Chord: Direction: Направление: Mode: Режим: InstrumentFunctionNoteStacking octave Октава Major Мажорный Majb5 minor Минорный minb5 sus2 sus4 aug augsus4 tri 6 6sus4 6add9 m6 m6add9 7 7sus4 7#5 7b5 7#9 7b9 7#5#9 7#5b9 7b5b9 7add11 7add13 7#11 Maj7 Maj7b5 Maj7#5 Maj7#11 Maj7add13 m7 m7b5 m7b9 m7add11 m7add13 m-Maj7 m-Maj7add11 m-Maj7add13 9 9sus4 add9 9#5 9b5 9#11 9b13 Maj9 Maj9sus4 Maj9#5 Maj9#11 m9 madd9 m9b5 m9-Maj7 11 11b9 Maj11 m11 m-Maj11 13 13#9 13b9 13b5b9 Maj13 m13 m-Maj13 Harmonic minor Melodic minor Whole tone Diminished Major pentatonic Minor pentatonic Jap in sen Major bebop Dominant bebop Blues Arabic Enigmatic Neopolitan Neopolitan minor Hungarian minor Dorian Phrygolydian Lydian Mixolydian Aeolian Locrian Chords Аккорд Chord type Тип аккорда Chord range Частотный диапазон аккорда Minor InstrumentFunctionNoteStackingView RANGE ДИАПАЗОН Chord range: Диапазон аккорда: octave(s) Октав[а/ы] Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. Этот регулятор изменяет частотный диапазон акорда: аккорд будет содержать указанное число октав. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT CHANNEL КАНАЛ VELOCITY ENABLE MIDI OUTPUT PROGRAM MIDI devices to receive MIDI events from MIDI devices to send MIDI events to NOTE InstrumentSoundShaping VOLUME ГРОМКОСТЬ Volume Громкость CUTOFF СРЕЗ Cutoff frequency Частота среза RESO УСИЛ Resonance Усиление Envelopes/LFOs Обложки/LFO Filter type Тип фильтра Q/Resonance Усиление LowPass ФНЧ HiPass ФВЧ BandPass csg ППФ csg BandPass czpg ППФ czpg Notch Полосно-заграждающий Allpass Moog 2x LowPass RC LowPass 12dB RC BandPass 12dB RC HighPass 12dB RC LowPass 24dB RC BandPass 24dB RC HighPass 24dB Vocal Formant Filter InstrumentSoundShapingView TARGET ХАРАКТЕРИСТИКА These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! Эта вкладка позволяет вам настроить обложки. Они очень важны для настройки звучания. Например, с помощью обложки громкости вы можете задать зависимость громкости звучания от времени. Если вам понадобится эмулировать мягкие струнные, просто задайте большие времена нарастания и исчезновения звука. С помощью обложек и низкочастотного генератора (LFO) вы в несколько щелчков мыши сможете создать просто невероятные звуки! FILTER ФИЛЬТР Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. Здесь вы можете выбрать фильтр для этого инструмента. Фильтры могут довольно сильно менять звучание. Hz Гц Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... Этот регулятор устанавливает частоту среза для выбранного фильтра. К примеру, ФНЧ будет срезать сигнал на частотах выше частоты среза, полосно-пропускающий фильтр будет хорошо пропускать сигнал только на заданной частоте и так далее... RESO УСИЛ Resonance: Усиление: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. Эта ручка задаёт усиление сигнала на частота среза (резонансной частоте). FREQ ЧАСТ cutoff frequency: InstrumentTrack unnamed_track безымянный канал Volume Громкость Panning Pitch Сдвиг высоты FX channel Канал FX Default preset Не названо With this knob you can set the volume of the opened channel. Регулировка громкости текущего канала. Base note Опорная нота Pitch range InstrumentTrackView Volume Громкость Volume: Громкость: VOL ГРМК Panning Panning: Стереобаланс: PAN БАЛ MIDI MIDI Input Вход Output Выход InstrumentTrackWindow GENERAL SETTINGS ОБЩИЕ ПАРАМЕТРЫ Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. Нажмите сюда, чтобы сохранить настройки текущего канала в файл предустановок. Позже вы сможете загрузить эти настройки через просмотрщик. Instrument volume Громкость инструмента Volume: Громкость: VOL ГРМК Panning Panning: Стереобаланс: PAN БАЛ Pitch Сдвиг высоты Pitch: Сдвиг высоты: cents центов PITCH СДВИГ FX channel Канал FX ENV/LFO ОБЛ/LFO FUNC АКК / АРП FX MIDI MIDI Save preset XML preset file (*.xpf) PLUGIN МОДУЛЬ Save current channel settings in a preset-file Pitch range (semitones) RANGE ДИАПАЗОН LadspaControl Link channels Связать каналы LadspaControlDialog Link Channels Связать каналы Channel Канал LadspaControlView Link channels Связать каналы Value: Значение: Sorry, no help available. Извините, справки нет. LadspaEffect Effect Эффект Unknown LADSPA plugin %1 requested. Запрошен неизвестный модуль LADSPA «%1». LfoController LFO Controller Контроллер LFO Base value Опорное значение Oscillator speed Скорость генератора Oscillator amount Oscillator phase Фаза генератора Oscillator waveform Форма сигнала для генератора Frequency Multiplier Множитель частоты LfoControllerDialog LFO LFO Controller Контроллер LFO BASE Base amount: todo сделать SPD СКОР LFO-speed: Скорость LFO: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. Этот регулятор устанавлявает скорость LFO. Чем больше значение, тем больше частота генератора. AMT МОД Modulation amount: Глубина модуляции: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. Этот регулятор устанавливает глубину модуляции для LFO. Чем больше значение, тем в большей степени выбранная характеристика (н-р, громкость или частота среза) будет зависеть от LFO. PHS СДФ Phase offset: Сдвиг фазы: degrees ˚ With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Этот регулятор устанавливает начальную фазу генератора низкой чатсоты (LFO), т. е. точку, с которой генератор начинает вырабатывать сигнал. Например, если вы задали синусоидальную форму сигнала и начальную фазу 180º, волна сначала пойдёт вниз, а не вверх. То же для меандра (сигнала прямоугольной формы). Click here for a sine-wave. Генерировать гармонический (синусоидальный) сигнал. Click here for a triangle-wave. Сгенерировать треугольный сигнал. Click here for a saw-wave. Сгенерировать пилообразный сигнал. Click here for a square-wave. Сгенерировать меандр. Click here for a a moog saw-wave. Генерировать пилообразный сигнал как moog. Click here for an exponential wave. Генерировать экспоненциальный сигнал. Click here for white-noise. Сгенерировать белый шум. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory Рабочий каталог LMMS The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. Рабочий каталог LMMS (%1) не существует. Создать его? Позже вы сможете сменить его через Правка -> Параметры. Could not save config-file Не могу сохранить настройки Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. Не могу записать настройки в файл %1. Возможно, вы не обладаете правами на запись в него. Пожалуйста, проверьте свои права и попробуйте снова. &Project &Проект &New &Новый &Open... &Открыть... Recently opened projects Последние открывавшиеся проекты &Save &Сохранить Save &As... Сохранить &как... Import... Импорт... E&xport... &Экспорт... &Quit &Выйти &Edit &Правка Settings Параметры &Tools &Сервис &Help &Справка Online help Справка в сети Help Справка What's this? Что это? About О программе Create new project Создать новый проект Create new project from template Создать новый проект по шаблону Open existing project Открыть существующий проект Recently opened project Последние открывавшиеся проекты Save current project Сохранить текущий проект Export current project Экспортировать проект в звуковой файл Show/hide Song-Editor Показать/скрыть финальный секвенсор By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. По нажатию этой кнопки запускается финальный секвенсор. С его помощью вы можете редактировать композицию и устанавливать время воспроизведения для всех дорожек. Также вы можете вставлять и передвигать образцы непосредственно в списке воспроизведения. Show/hide Beat+Bassline Editor Показать/скрыть пошаговый секвенсор By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. По нажатию этой кнопки запускается пошаговый секвенсор произведения. Он необходим для установки ритма, добавления и удаления каналов, вырезания, копирования и вставки шаблонов и т. п. Show/hide Piano-Roll Показать/скрыть нотный секвенсор Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. По нажатию этой кнопки запускается секвенсор LMMS. С его помощью вы можете легко редактировать шаблоны мелодии. Show/hide Automation Editor Показать/скрыть редактор временн<b>ы</b>х зависимостей Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Нажатием этой кнопки показывается/убирается окно редактора временн<b>ы</b>х зависимостей. С его помощью вы можете редактировать изменения выбранных величин со временем. Show/hide FX Mixer Показать/скрыть микшер FX Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Нажмите здесь чтобы скрыть/показать микшер FX. Он является мощным инструментом для управления эффектами. Вы можете вставлять эффекты в различные каналы эффектов. Show/hide project notes Показать/скрыть заметки к проекту Click here to show or hide the project notes window. In this window you can put down your project notes. Эта кнопка показывает/прячет окно с заметками. В этом окне вы можете помещать любые комментарии к своей композиции. Show/hide controller rack Показать/скрыть управление контроллерами Untitled Неназванный LMMS %1 LMMS %1 Project not saved Проект не сохранён The current project was modified since last saving. Do you want to save it now? Проект был изменён. Сохранить его сейчас? Open project Открыть проект Save project Сохранить проект Help not available Справка недоступна Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. Пока что справка для LMMS не написана. Вероятно, Вы сможете найти нужные материалы на http://lmms.sf.net/wiki . My projects My samples My presets My home My computer Root directory Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 Project recovery It looks like the last session did not end properly. Do you want to recover the project of this session? Configuration file Error while parsing configuration file at line %1:%2: %3 MeterDialog Meter Numerator Числитель Meter Denominator Знаменатель TIME SIG MeterModel Numerator Числитель Denominator Знаменатель MidiAlsaRaw::setupWidget DEVICE УСТРОЙСТВО MidiAlsaSeq::setupWidget DEVICE УСТРОЙСТВО MidiController MIDI Controller Контроллер MIDI unnamed_midi_controller MidiImport Setup incomplete You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiOss::setupWidget DEVICE УСТРОЙСТВО MidiPort Input channel Входной канал Output channel Выходной канал Input controller Входной контроллер Output controller Выходной контроллер Fixed input velocity Fixed output velocity Output MIDI program Receive MIDI-events Принимать события MIDI Send MIDI-events Отправлять события MIDI Fixed output note OscillatorObject Osc %1 volume Громкость генератора %1 Osc %1 panning Стереобаланс для генератора %1 Osc %1 coarse detuning Расстройка генератора %1 (грубо) Osc %1 fine detuning left Расстройка левого канала генератора %1 Osc %1 fine detuning right Расстройка правого канала генератора %1 Osc %1 phase-offset Сдвиг фазы для генератора %1 Osc %1 stereo phase-detuning Фазовая расстройка генератора %1 между каналами Osc %1 wave shape Форма сигнала генератора No %1 Modulation type %1 Тип модуляции: %1 Osc %1 waveform Форма сигнала для генератора %1 PatmanView Open other patch Открыть другой патч Click here to open another patch-file. Loop and Tune settings are not reset. Нажмите чтобы открыть другой патч-файл. Настройки при этом сохранятся. Loop Повторять Loop mode Режим повтора Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. Здесь включается/выключается режим повтора. Если он включён, то PatMan будет использовать информацию о повторе из файла. Tune Подстроить Tune mode Подстроить под ноту Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. Здесь включается/выключается режим подстройки. Если он включён, то PatMan изменит образец так, чтобы он совпадал по частоте с нотой. No file selected Не выбран файл Open patch file Открыть патч-файл Patch-Files (*.pat) Патч-файлы (*.pat) PeakController Peak Controller Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK LFO Controller Контроллер LFO PeakControllerEffectControlDialog BASE Base amount: Modulation amount: Глубина модуляции: Attack: Длительность нарастания: Release: Длительность исчезновения: AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Опорное значение Modulation amount Глубина модуляции Mute output Заглушить Attack Длительность нарастания Release Длительность исчезновения Abs Value Amount Multiplicator PianoView Base note Опорная нота Plugin Plugin not found Модуль не найден The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Модуль «%1» отсутствует либо не может быть загружен! Причина: «%2» Error while loading plugin Ошибка загрузки модуля Failed to load plugin "%1"! Ошибка загрузки модуля «%1»! ProjectRenderer WAV-File (*.wav) Файл WAV (*.wav) Compressed OGG-File (*.ogg) Сжатый файл OGG (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: Название: File: Файл: Maker: Создал: Copyright: Права принадлежат: Requires Real Time: Требуется обработка в реальном времени: Yes Да No Нет Real Time Capable: Работа в реальном времени: In Place Broken: Вход и выход могут совпадать: Channels In: Входных каналов: Channels Out: Выходных каналов: SampleBuffer Open audio file Открыть звуковой файл All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Все звуковые файлы (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) Файлы Wave (*.wav) OGG-Files (*.ogg) Файлы OGG (*.ogg) DrumSynth-Files (*.ds) Файлы DrumSynth (*.ds) FLAC-Files (*.flac) Файлы FLAC (*.flac) SPEEX-Files (*.spx) Файлы SPEEX (*.spx) MP3-Files (*.mp3) Файлы MPEG1 L3 (*.mp3) VOC-Files (*.voc) Файлы VOC (*.voc) AIFF-Files (*.aif *.aiff) Файлы AIFF (*.aif *.aiff) AU-Files (*.au) Файлы AU (*.au) RAW-Files (*.raw) Файлы RAW (*.raw) SampleTCOView double-click to select sample Для выбора файла-образца сделайте двойной щелчок мышью Delete (middle mousebutton) Удалить (средняя кнопка мыши) Cut Вырезать Copy Копировать Paste Вставить Mute/unmute (<Ctrl> + middle click) Заглушить/включить (Crl + средняя кнопка мыши) Set/clear record Установить/очистить запись SampleTrack Sample track Дорожка Volume Громкость SampleTrackView Track volume Громкость дорожки Channel volume: Громкость канала: VOL ГРМК TempoSyncKnob Tempo Sync Синхронизация No Sync Синхронизации нет Eight beats Восемь ударов (две ноты) Whole note Целая нота Half note Полунота Quarter note Четверть ноты 8th note Восьмая ноты 16th note 1/16 ноты 32nd note 1/32 ноты Custom... Настроить... &Help &Справка Custom Настроить Synced to Eight Beats Синхронизировано по двум нотам Synced to Whole Note Синхронизировано по целой ноте Synced to Half Note Синхронизировано по половине ноты Synced to Quarter Note Синхронизировано по четверти ноты Synced to 8th Note Синхронизировано по 1/8 ноты Synced to 16th Note Синхронизировано по 1/16 ноты Synced to 32nd Note Синхронизировано по 1/32 ноты TimeDisplayWidget click to change time units TrackContainer Couldn't import file Не могу импортировать файл Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. Не могу найти фильтр для файла %1. Для подключения этого файла преобразуйте его в формат, поддерживаемый LMMS. Couldn't open file Не могу открыть файл Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! Не могу открыть файл %1 для записи. Проверьте, обладаете ли вы правами на запись в выбранный файл и содержащий его каталог и попробуйте снова! Loading project... Чтение проекта... Cancel Отменить Please wait... Подождите, пожалуйста... Importing MIDI-file... Импортирую файл MIDI... Importing FLP-file... Импортирую файл FLP... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Модулировать фазу второго генератора сигналом с первого Use amplitude modulation for modulating oscillator 2 with oscillator 1 Модулировать амплитуду генератора 2 сигналом с первого генератора Mix output of oscillator 1 & 2 &Смешать сигналы первого и второго генераторов Synchronize oscillator 1 with oscillator 2 Синхронизировать первый генератор по второму Use frequency modulation for modulating oscillator 2 with oscillator 1 Модулировать частоту генератора 2 сигналом с первого генератора Use phase modulation for modulating oscillator 3 with oscillator 2 Модулировать фазу третьего генератора сигналом со второго Use amplitude modulation for modulating oscillator 3 with oscillator 2 Модулировать амплитуду генератора 3 сигналом со второго генератора Mix output of oscillator 2 & 3 &Смешанный выход от второго и третьего генераторов Synchronize oscillator 2 with oscillator 3 Синхронизировать второй генератор по третьему Use frequency modulation for modulating oscillator 3 with oscillator 2 Модулировать частоту генератора 3 сигналом со второго генератора Osc %1 volume: Громкость генератора %1: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Этот регулятор устанавливает громкость генератора %1. Если 0, то генератор выключается. Osc %1 panning: Стереобаланс для генератора %1: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Регулятор стереобаланса генератора %1. Величина -100 означает, что сигнал идёт только в левый канал, а 100 - в правый. Osc %1 coarse detuning: Расстройка генератора %1 (грубо): semitones полутон[а,ов] With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Грубая регулировка расстройки генератора %1. Возможна расстройка до 12 полутонов (до одной октавы) вверх и вниз. Полезно для создания аккордов. Osc %1 fine detuning left: Расстройка левого канала генератора %1: cents центов With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Этот регулятор устанавливает точную расстойку для левого канала генератора %1. Расстройка задаётся в диапазоне от -100 сотых до +100 сотых. Это полезно для создания "толстых" звуков. Osc %1 fine detuning right: Расстройка правого канала генератора %1: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Этот регулятор устанавливает точную расстойку для правого канала генератора %1. Расстройка задаётся в диапазоне от -100 сотых до +100 сотых. Это полезно для создания "толстых" звуков. Osc %1 phase-offset: Сдвиг фазы для генератора %1: degrees ˚ With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Этот регулятор устанавливает начальную фазу генератора №%1, т. е. точку, с которой генератор начинает вырабатывать сигнал. Например, если вы задали синусоидальную форму сигнала и начальную фазу 180º, волна сначала пойдёт вниз, а не вверх. То же для меандра (сигнала прямоугольной формы). Osc %1 stereo phase-detuning: Фазовая расстройка генератора %1 между каналами: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Этот регулятор устанавливает фазовую расстройку генератора %1 между каналами, то есть разность фаз между левым и правым каналами. Это удобно для создания стереоэффектов. Use a sine-wave for current oscillator. Генерировать гармонический (синусоидальный) сигнал. Use a triangle-wave for current oscillator. Генерировать треугольный сигнал. Use a saw-wave for current oscillator. Генерировать пилообразный сигнал. Use a square-wave for current oscillator. Генерировать меандр. Use a moog-like saw-wave for current oscillator. Генерировать пилообразный сигнал, как в moog. Use an exponential wave for current oscillator. Генерировать экспоненциальный сигнал. Use white-noise for current oscillator. Генерировать белый шум. Use a user-defined waveform for current oscillator. Задать форму сигнала. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Нажмите сюда, если вы хотите открыть другой модуль VST. После нажатия на кнопку появится стандартный диалог выбора файла, где вы сможете выбрать нужный модуль. Show/hide GUI Показать/скрыть интерфейс Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Эта кнопка скрывает/показывает графический пользовательский интерфейс (GUI) выбранного модуля VST. Turn off all notes Выключить все ноты Open VST-plugin Открыть модуль VST DLL-files (*.dll) Бибилиотеки DLL (*.dll) EXE-files (*.exe) Программы EXE (*.exe) No VST-plugin loaded Модуль VST не загружен Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Save preset Click here, if you want to save current VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Preset by - VST plugin control VstEffectControlDialog Show/hide Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Save preset Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin Загрузка модуля Please wait while loading VST-plugin... Подождите, пока загружается модуль VST... Failed loading VST-plugin Не смог загрузить модуль VST The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Отчего-то модуль VST %1 не мог быть загружен. Если другое программное обеспечение VST работает у Вас под Linux'ом, свяжитесь с разработчиком LMMS! Open Preset Vst Plugin Preset (*.fxp *.fxb) : default " ' Save Preset .fxp .FXP .FXB .fxb ZynAddSubFxInstrument Portamento Filter Frequency Filter Resonance Bandwidth FM Gain Resonance Center Frequency Resonance Bandwidth Forward MIDI Control Change Events ZynAddSubFxView Show GUI Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Portamento: PORT Filter Frequency: FREQ ЧАСТ Filter Resonance: RES УСИЛ Bandwidth: BW FM Gain: FM GAIN Resonance center frequency: RES CF Resonance bandwidth: RES BW Forward MIDI Control Changes audioFileProcessor Amplify Усиление Start of sample Начало образца End of sample Конец образца Reverse sample Перевернуть образец Loop Повторять Stutter bassBoosterControlDialog FREQ ЧАСТ Frequency: Частота: GAIN УСИЛ Gain: Усиление: RATIO ОТН Ratio: Отношение: bassBoosterControls Frequency Частота Gain Усиление Ratio Отношение bbEditor Play/pause current beat/bassline (Space) Воспроизведение/пауза Add beat/bassline Добавить ритм/лейтмотив Beat+Bassline Editor Пошаговый секвенсор Stop playback of current beat/bassline (Space) Остановить воспроизведение текущего лейтмотива (ПРОБЕЛ) Add automation-track Добавить дорожку автоматизации Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. Нажмите чтобы проиграть запись лейтмтоива. Запись будет повторяться после окончания. Click here to stop playing of current beat/bassline. Остановить воспроизведение (Пробел). Remove steps Удалить шаги Add steps Добавить шаги bbTCOView Open in Beat+Bassline-Editor Открыть в пошаговом секвенсоре Reset name Сбросить название Change name Переименовать Change color Изменить цвет bbTrack Beat/Bassline %1 Лейтмотив %1 Clone of %1 bitInvader Samplelength Длительность bitInvaderView Sample Length Длительность образца Draw your own waveform here by dragging your mouse on this graph. Здесь вы можете рисовать собственный сигнал. Sine wave Синусоида Click for a sine-wave. Сгенерировать гармонический (синусоидальный) сигнал. Triangle wave Треугольник Click here for a triangle-wave. Сгенерировать треугольный сигнал. Saw wave Пила Click here for a saw-wave. Сгенерировать пилообразный сигнал. Square wave Меандр Click here for a square-wave. Сгенерировать меандр. White noise wave Белый шум Click here for white-noise. Сгенерировать белый шум. User defined wave Пользовательская Click here for a user-defined shape. Задать форму сигнала самому. Smooth Сгладить Click here to smooth waveform. Щёлкните чтобы сгладить форму сигнала. Interpolation Интерполяция Normalize Нормализовать exportProjectDialog Could not open file Не могу открыть файл Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! Не могу открыть файл %1 для записи. Проверьте, обладаете ли вы правами на запись в выбранный файл и содержащий его каталог и попробуйте снова! Error Ошибка Error while determining file-encoder device. Please try to choose a different output format. Ошибка при определении кодировщика файла. Попробуйте выбрать другой целевой формат. Rendering: %1% Обработка: %1% Export project to %1 Экспорт композиции в файл %1 fader Please enter a new value between %1 and %2: Введите новое значение между %1 и %2: fileBrowser Browser fileBrowserTreeWidget Send to active instrument-track Open in new instrument-track/Song-Editor Open in new instrument-track/B+B Editor Loading sample Please wait, loading sample for preview... --- Factory files --- graphModel Graph kickerInstrument Start frequency Начальная частота End frequency Конечная частота Decay Длит. спада Distortion Искажение Gain Усиление kickerInstrumentView Start frequency: Начальная частота: End frequency: Конечная частота: Decay: Длительность спада: Distortion: Искажение: Gain: Усиление: knob &Help &Справка Please enter a new value between %1 and %2: Введите новое значение между %1 и %2: Please enter a new value between -96.0 dBV and 6.0 dBV: Введите новое значение между –96,0 дБ и 6,0 дБ (по напряжению): ladspaBrowserView Available Effects Доступные эффекты Unavailable Effects Недоступные эффекты Instruments Инструменты Analysis Tools Анализаторы Don't know Неизвестные This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. В этом окне показана информация обо всех модулях LADSPA, которые обнаружила LMMS. Они разделены на пять категорий, в зависимости от названий и типов портов. Доступные эффекты — это те, которые могут быть использоаны в LMMS. Чтобы эффект LADSPA мог быть использован, он должен, во-первых, быть собственно эффектом, т. е. иметь как входные так и выходные каналы. LMMS в качестве входного канала воспринимает аудиопорт, содержащий в названии „in“, а выходные узнаёт по подстроке „out“. Для использования в LMMS число входных каналов должно совпадать с числом выходных, и эффект должен иметь возможность использования в реальном времени. Недоступные эффекты — это модули LADSPA, опознанные в качестве эффектов, однако либо с несовпадающими количестами входных/выходных каналов, либо не предназначенные для использования в реальном времени. Инструменты — это модули, у которых есть только выходные каналы. Анализаторы — это модули, обладающие лишь входными каналами. Неизвестные — модули, у которых не было обнаружено ни входных, ни выходных каналов. Двойной щелчок лувой кнопкой мыши по модулю даст информацию о его портах. Type: Тип: ladspaDescription Plugins Модули Description Описание ladspaPortDialog Name Название Rate Частота выборки Direction Направление Type Тип Min < Default < Max Наим. < Стандарт < Наиб. Logarithmic Логарифмический SR Dependent Audio Аудио Control Управление Input Вход Output Выход Toggled Включено Integer Целое Float Дробное Yes Да Ports Порты lb302Synth VCF Cutoff Frequency Частота среза VCF VCF Resonance Усиление VCF Envelope Mod Глубина модуляции VCF VCF Envelope Decay Спад VCF Slide Accent Dead Slide Decay Distortion Искажение Waveform Форма сигнала 24dB/oct Filter lb302SynthView Cutoff Freq: Частота среза: Resonance: Усиление: Env Mod: Глубина модуляции: Decay: Длительность спада: 303-es-que, 24dB/octave, 3 pole filter Slide Decay: DIST: ИСК: Saw wave Пила Click here for a saw-wave. Сгенерировать пилообразный сигнал. Triangle wave Треугольник Click here for a triangle-wave. Сгенерировать треугольный сигнал. Square wave Меандр Click here for a square-wave. Сгенерировать меандр. Rounded square wave Click here for a square-wave with a rounded end. Moog wave Click here for a moog-like wave. Sine wave Синусоида Click for a sine-wave. Сгенерировать гармонический (синусоидальный) сигнал. White noise wave Белый шум Click here for an exponential wave. Генерировать экспоненциальный сигнал. Click here for white-noise. Сгенерировать белый шум. lb303Synth VCF Cutoff Frequency Частота среза VCF VCF Resonance Усиление VCF Envelope Mod Глубина модуляции VCF VCF Envelope Decay Спад VCF Distortion Искажение Waveform Форма сигнала Slide Decay Slide Accent Dead 24dB/oct Filter lb303SynthView Cutoff Freq: Частота среза: CUT СРЕЗ Resonance: Усиление: RES УСИЛ Env Mod: Глубина модуляции: ENV MOD МОД Decay: Длительность спада: DEC СПАД 303-es-que, 24dB/octave, 3 pole filter Slide Decay: SLIDE DIST: ИСК: DIST ИСК WAVE: Форма: WAVE Форма malletsInstrument Hardness Position Положение Vibrato Gain Усиление вибрато Vibrato Freq Частота вибрато Stick Mix Modulator Модулятор Crossfade Переход LFO Speed Скорость LFO LFO Depth ADSR Pressure Давление Motion Speed Скорость Bowed Spread Missing files Отсутствующие файлы Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! Похоже, что установлены не все пакеты STK. Вам следует это проверить! Marimba Маримба Vibraphone Вибрафон Agogo Дискотека Wood1 Дерево1 Reso УСИЛ Wood2 Дерево2 Beats Удары Two Fixed Clump Тяжёлая поступь Tubular Bells Трубчатые колокольчики Uniform Bar Tuned Bar Glass Стекло Tibetan Bowl Тибетские шары malletsInstrumentView Instrument Инструмент Spread Spread: Hardness Hardness: Position Положение Position: Положение: Vib Gain Усил. вибрато Vib Gain: Усил. вибрато: Vib Freq Част. виб Vib Freq: Вибрато: Stick Mix Stick Mix: Modulator Модулятор Modulator: Модулятор: Crossfade Переход Crossfade: Переход: LFO Speed Скорость LFO LFO Speed: Скорость LFO: LFO Depth LFO Depth: ADSR ADSR: Bowed Pressure Давление Pressure: Давление: Motion Motion: Speed Скорость Speed: Скорость: Vibrato Вибрато Vibrato: Вибрато: manageVSTEffectView - VST parameter control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView - VST plugin control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help &Справка opl2instrument Patch Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Искажение Volume Громкость organicInstrumentView Distortion: Искажение: Volume: Громкость: Randomise Случайно Osc %1 waveform: Форма сигнала для генератора %1: Osc %1 volume: Громкость генератора %1: Osc %1 panning: Стереобаланс для генератора %1: Osc %1 fine detuning left: Расстройка левого канала генератора %1: cents центов papuInstrument Sweep time Sweep direction Sweep RtShift amount Wave Pattern Duty Channel 1 volume Громкость первого канала Volume sweep direction Length of each step in sweep Channel 2 volume Громкость второго канала Channel 3 volume Громкость третьего канала Channel 4 volume Громкость четвёртого канала Right Output level Выходной уровень справа Left Output level Выходной уровень слева Channel 1 to SO2 (Left) От первого канала к SO2 (левый канал) Channel 2 to SO2 (Left) От второго канала к SO2 (левый канал) Channel 3 to SO2 (Left) От третьего канала к SO2 (левый канал) Channel 4 to SO2 (Left) От четвёртого канала к SO2 (левый канал) Channel 1 to SO1 (Right) От первого канала к SO1 (правый канал) Channel 2 to SO1 (Right) От второго канала к SO1 (правый канал) Channel 3 to SO1 (Right) От третьего канала к SO1 (правый канал) Channel 4 to SO1 (Right) От четвёртого канала к SO1 (правый канал) Treble Верхние Bass Нижние Shift Register width papuInstrumentView Sweep Time: Sweep Time Sweep RtShift amount: Sweep RtShift amount Wave pattern duty: Wave Pattern Duty Square Channel 1 Volume: Length of each step in sweep: Length of each step in sweep Wave pattern duty Square Channel 2 Volume: Square Channel 2 Volume Wave Channel Volume: Wave Channel Volume Noise Channel Volume: Noise Channel Volume SO1 Volume (Right): SO1 Volume (Right) SO2 Volume (Left): SO2 Volume (Left) Treble: Верхние: Treble Верхние Bass: Нижние: Bass Нижние Sweep Direction Volume Sweep Direction Shift Register Width Channel1 to SO1 (Right) Channel2 to SO1 (Right) Channel3 to SO1 (Right) Channel4 to SO1 (Right) Channel1 to SO2 (Left) Channel2 to SO2 (Left) Channel3 to SO2 (Left) Channel4 to SO2 (Left) Wave Pattern The amount of increase or decrease in frequency The rate at which increase or decrease in frequency occurs The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Square Channel 1 Volume The delay between step change Draw the wave here pattern Cannot freeze pattern Не могу заморозить шаблон The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! Шаблон не может быть заморожен, так как он проигрывается в данный момент. Остановите воспроизведение и попробуйте снова! patternFreezeStatusDialog Freezing pattern... Замораживаю шаблон... Cancel Отменить patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step Чтобы открыть этот шаблон в секвенсоре, дважды на нём щёлкните Используйте колёсико мыши для установки громкости отдельного шага Open in piano-roll Открыть в секвенсоре Clear all notes Очистить Reset name Сбросить название Change name Переименовать Refreeze Перезаморозить Freeze Заморозить Unfreeze Разморозить Add steps Добавить шаги Remove steps Удалить шаги PianoRoll Cut selected notes (Ctrl+X) Переместить выделенные ноты в буфер (Ctrl+X) Copy selected notes (Ctrl+C) Копировать выделенные ноты в буфер (Ctrl+X) Paste notes from clipboard (Ctrl+V) Вставить ноты из буфера (Ctrl+V) Play/pause current pattern (Space) Воспроизведение ткущего шаблона/пауза (Пробел) Stop playing of current pattern (Space) Остановить воспроизвдение шаблона (Пробел) Piano-Roll - no pattern Секвенсор - без шаблона Piano-Roll - %1 Секвенсор - %1 Please open a pattern by double-clicking on it! Откройте шаблон с помощью двойного щелчка мышью! Record notes from MIDI-device/channel-piano Записать ноты с цифрового музыкального инструмента (MIDI) Last note По посл. ноте Draw mode (Shift+D) Режим рисования (Shift+D) Erase mode (Shift+E) Режим стирания нот (Shift+E) Select mode (Shift+S) Режим выбора нот (Shift+S) Record notes from MIDI-device/channel-piano while playing song or BB track Записать ноты с цифрового музыкального инструмента (MIDI) во время воспроизведения композиции или лейтмотива Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Нажмите здесь чтобы проиграть текущий шаблон. Это может пригодиться при его редактировании. По окончании шаблона воспроизведение начнётся сначала. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Нажмите эту кнопку, если вы хотите записать ноты с устройства MIDI или виртуального синтезатора соответствующего канала. Позже вы сможете отредактировать записанный шаблон. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Нажмите эту кнопку, если вы хотите записать ноты с устройства MIDI или виртуального синтезатора соответствующего канала. Во время записи все ноты записываются в этот шаблон, и вы будете слышать композицию или лейтмотив. Click here to stop playback of current pattern. Нажмите здесь, если вы хотите остановить воспроизведение текущего шаблона. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. При нажатии на эту кнопку выделеные ноты будут перемещены в буфер. Позже вы можете вставить их в любое место любого шаблона с помощью кнопки "Вставить". Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. При нажатии на эту кнопку выделеные ноты будут перемещены в буфер. Позже вы можете вставить их в любое место любого шаблона с помощью кнопки "Вставить". Click here and the notes from the clipboard will be pasted at the first visible measure. При нажатии на эту кнопку ноты из буфера будут вставлены в превый видимый такт. Note lock Note Volume Note Panning Detune mode (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser Instrument plugins Инструменты three powerful oscillators you can modulate in several ways Три генератора, которые Вы можете настраивать по вкусу no description описание отсутствует VST-host for using VST(i)-plugins within LMMS Поддержка модулей VST(i) в LMMS Additive Synthesizer for organ-like sounds Синтезатор звуков вроде органа simple sampler with various settings for using samples (e.g. drums) in an instrument-track Подключение произвольного звукового образца с некоторой возможностью настройки Filter for importing MIDI-files into LMMS Фильтр для включение файла MIDI в проект LMMS plugin for using arbitrary LADSPA-effects inside LMMS. Модуль, позволяющий использовать в LMMS любые эффекты LADSPA. Tuneful things to bang on Мелодичные ударные plugin for using arbitrary VST-effects inside LMMS. Модуль, позволяющий использовать в LMMS любые эффекты VST. Vibrating string modeler Эмуляция струн Filter for importing FL Studio projects into LMMS Фильтр для импортирования файлов FL Stuio Incomplete monophonic imitation tb303 Незавершённая монофоническая имитация tb303 versatile kick- & bassdrum-synthesizer Многоцелевой синтезатор ударных Instrument browser Инструменты Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. Вы можете переносить нужные вам инструменты из этой панели в финальный или пошаговый секвенсор. Plugin for enhancing stereo separation of a stereo input file Модуль, усиливающий разницу между каналами стереозаписи plugin for boosting bass Модуль, усиливающий басы Emulation of GameBoy (TM) APU Эмуляция аудиопроцессора GameBoy (TM) Plugin for freely manipulating stereo output Модуль для произвольного управления стереовыходом Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Эмуляция MOS6581 и MOS8580. Использовалось на компьютере Commodore 64. List installed LADSPA plugins Показать установленные модули LADSPA Player for SoundFont files Проигрыватель файлов SoundFont Plugin for controlling knobs with sound peaks Модуль для установки значений регуляторов по пикам громкости GUS-compatible patch instrument Патч-инструмент, совместимый с GUS Customizable wavetable synthesizer Embedded ZynAddSubFX 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Put down your project notes here. Здесь вы можете держать заметки к своему проекту. Project notes Заметки к проекту Edit Actions Правка &Undo &Отменить Ctrl+Z &Redo &Повторить Ctrl+Y &Copy &Копировать Ctrl+C Cu&t &Вырезать Ctrl+X &Paste &Вставить Ctrl+V Format Actions Форматирование &Bold Полу&жирный Ctrl+B &Italic &Курсив Ctrl+I &Underline &Подчеркнуть Ctrl+U &Left По &левому краю Ctrl+L C&enter По &центру Ctrl+E &Right По &правому краю Ctrl+R &Justify По &ширине Ctrl+J &Color... &Цвет... renameDialog Rename... Переименовать... setupDialog Setup LMMS Настройка LMMS General settings Общие параметры BUFFER SIZE РАЗМЕР БУФЕРА Reset to default-value Восстановить значение по умолчанию MISC РАЗНОЕ Audio settings Параметры звука AUDIO INTERFACE ЗВУКОВАЯ СИСТЕМА MIDI settings Параметры MIDI MIDI INTERFACE ИНТЕРФЕЙС MIDI OK Cancel Отменить Restart LMMS Перезапустите LMMS Please note that most changes won't take effect until you restart LMMS! Учтите, что большинство настроек не вступят в силу до перезапуска программы! Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Здесь вы можете настроить размер внутреннего звукового буфера LMMS. Меньшие значения дают меньшее время отклика программы, но повышают потребление ресурсов - это особенно заметно на старых машинах и системах, ядро которых не поддерживает приоритета реального времени. Если наблюдается прерывистый звук, попробуйте увеличить размер буфера. Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Пожалуйста, выберите звуковую систему. В зависимости от конфигурации во время компилирования программы, вы можете использовать ALSA, JACK, OSS и другие. В нижней части окна настройки можно задать специфические параметры выбранной системы. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Пожалуйста, выберите интерфейс MIDI. В зависимости от конфигурации во время компилирования программы, вы можете использовать ALSA, OSS и другие. В нижней части окна настройки можно задать специфические параметры выбранного интерфейса. LMMS working directory Рабочий каталог LMMS VST-plugin directory Каталог модулей VST Choose LMMS working directory Выбор рабочего каталога LMMS Choose your VST-plugin directory Выбор каталога для модулей VST Performance settings Параметры производительности UI effects vs. performance Визуальные эффекты/производительность Frames: %1 Latency: %2 ms Фрагментов: %1 Отклик: %2 Artwork directory Каталог с элементами оформления Choose artwork-theme directory Выбор каталога с темой оформления для LMMS Display volume as dBV Отображать громкости в децибелах (напр.) FL Studio installation directory Каталог установки FL Studio STK rawwave directory Каталог STK Choose FL Studio installation directory Выбор каталога FL Studio Choose LADSPA plugin directory Выбор каталога с модулями LADSPA Choose STK rawwave directory Выбор каталога STK Enable tooltips Включить всплывающие подсказки Show restart warning after changing settings Показывать предупреждение после изменения настроек Compress project files per default По умолчанию сжимать файлы проектов HQ-mode for output audio-device Режим высокого качества для вывода звука Paths LADSPA plugin paths Default Soundfont File Background artwork Choose default SoundFont Choose background artwork One instrument track window mode Compact track buttons Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Smooth scroll in Song Editor Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Bank Patch Gain Усиление Reverb Эхо Reverb Roomsize Reverb Damping Reverb Width Reverb Level Уровень эха Chorus Chorus Lines Chorus Level Chorus Speed Chorus Depth sf2InstrumentView Open other SoundFont file Открыть другой файл SoundFront Click here to open another SF2 file Нажмите здесь чтобы открыть другой файл SF2 Choose the patch Выбрать патч Gain Усиление Apply reverb (if supported) Создать эхо (если поддерживается) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. Эта кнопка включает эффект эха. Это может пригодиться, но работает не для всех файлов. Reverb Roomsize: Размер помещения: Reverb Damping: Reverb Width: Reverb Level: Apply chorus (if supported) Создать эффект хора (если поддерживается) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Эта кнопка включает эффект хора. Это может пригодиться, но работает не для всех файлов. Chorus Lines: Chorus Level: Chorus Speed: Chorus Depth: Open SoundFont file Открыть файл SoundFront SoundFont2 Files (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Срез Resonance Усиление Filter type Тип фильтра Voice 3 off Volume Громкость Chip model Модель чипа sidInstrumentView Volume: Громкость: Resonance: Усиление: Cutoff frequency: Частота среза: High-Pass filter ФВЧ Band-Pass filter ППФ Low-Pass filter ФНЧ Voice3 Off MOS6581 SID MOS8580 SID Attack: Длительность нарастания: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. Длительность нарастания определяет, насколько быстро громкость %1-го голоса возрастает от нуля до наибольшего значения. Decay: Длительность спада: Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. Длительность спада определяет, насколько быстро громкость падает от максимума до остаточного уровня. Sustain: Остаточный уровень: Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. Громкость %1-го голоса будет оставаться на этом уровне, пока длится нота. Release: Длительность исчезновения: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. Громкость %1-го голоса будет падать от остаточного уровня до нуля с указанной здесь скоростью. Pulse Width: The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. Coarse: The Coarse detuning allows to detune Voice %1 one octave up or down. Pulse Wave Triangle Wave Треугольник SawTooth Пила Noise Шум Sync Синхронизировать Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Ring-Mod Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. Filtered Фильтровать When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Если этот флажок установлен, то %1-й голос будет проходить через фильтр. Иначе голос №%1 будет подаваться прямо на выход. Test Флажок Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. Если «флажок» установлен, то %1-й генератор выдаёт нулевой сигнал (пока флажок не снимется). song Tempo Темп Master volume Общая громкость Master pitch Общая высота тона Project saved Проект сохранён The project %1 is now saved. Проект %1 сохранён. Project NOT saved. Проект НЕ СОХРАНЁН. The project %1 was not saved! Проект %1 не сохранён! Import file Импорт файла Empty project Проект пуст This project is empty so exporting makes no sense. Please put some items into Song Editor first! Проект ничего не содержит, так что и экспортировать нечего. Сначала добавьте хотя бы одну дорожку с помощью секвенсора! untitled Неназванное Select file for project-export... Выбор файла для экспорта проекта... MIDI sequences FL Studio projects All file types Hydrogen projects Select directory for writing exported tracks... SongEditor Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. Нажмите сюда, если вы хотите остановить воспроизведение мелодии. Курсор при этом будет установлен на начало композиции. Could not open file Не могу открыть файл Could not write file Не могу записать файл Song-Editor Финальный секвенсор Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. Нажмите, чтобы прослушать созданную мелодию. Воспроизведение начнётся с позиции курсора (зелёный треугольник); вы можете двигать его во время проигрывания. Play song (Space) Начать воспроизведение (Пробел) Stop song (Space) Остановить воспроизведение (Пробел) Add beat/bassline Добавить ритм/басы Add sample-track Добавить файл Draw mode Режим рисования Edit mode (select and move) Правка (выделение/перемещение) Record samples from Audio-device Записать образец со звукового устройства Record samples from Audio-device while playing song or BB track Записать ноты со звуковой платы во время воспроизведения композиции или лейтмотива Add automation-track Добавить дорожку автоматизации Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Error in file The file %1 seems to contain errors and therefore can't be loaded. Tempo Темп TEMPO/BPM ТЕМП/BPM tempo of song Темп мелодии The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). Это значение задаёт темп мелодии в ударах в минуту (англ. аббр. BPM). На каждый такт приходится четыре удара, так что темп в ударах в минуту фактически указывает, сколько четвертей такта проигрывается за минуту (или, что то же, количество тактов, проигрываемых за четыре минуты). High quality mode Высокое качество Master volume Общая громкость master volume Общая громкость Master pitch Общая высота тона master pitch Общая высота тона Value: %1% Значение: %1% Value: %1 semitones Значение: %1 полутон(а/ов) Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Линейный спектр Linear Y axis Линейная ось ординат spectrumAnalyzerControls Linear spectrum Линейный спектр Linear Y-axis Линейная ось ординат Channel mode Режим канала stereoEnhancerControlDialog WIDE Width: stereoEnhancerControls Width stereoMatrixControlDialog Left to Left Vol: От левого на левый: Left to Right Vol: От левого на правый: Right to Left Vol: От правого на левый: Right to Right Vol: От правого на правый: stereoMatrixControls Left to Left От левого на левый Left to Right От левого на правый Right to Left От правого на левый Right to Right От правого на правый timeLine Enable/disable auto-scrolling Вкл/выкл автопрокрутку Enable/disable loop-points Вкл/выкл точки перемотки After stopping go back to begin После останова переходить к началу After stopping go back to position at which playing was started После останова переходить к месту, с которого началось воспроизведение After stopping keep position Оставаться на месте останова Hint Подсказка Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted Заглушён Solo Моно trackContentObject Muted Заглушён trackContentObjectView Current position Позиция Hint Подсказка Press <Ctrl> and drag to make a copy. Нажмите <Ctrl> и отпустите, чтобы создать копию. Current length Длительность Press <Ctrl> for free resizing. Для свободного перемещения нажмите <Ctrl>. %1:%2 (%3:%4 to %5:%6) %1:%2 (от %3:%4 до %5:%6) Delete (middle mousebutton) Удалить (средняя кнопка мыши) Cut Вырезать Copy Копировать Paste Вставить Mute/unmute (<Ctrl> + middle click) Заглушить/включить (Crl + средняя кнопка мыши) trackOperationsWidget Clone this track Копировать дорожку Remove this track Удалить дорожку Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Для перетаскивания в другое окно нажмите <Ctrl> при нажатии на эту полоску. Actions for this track Действия для этой дорожки Mute Заглушить Mute this track Отключить дорожку Solo Моно vestigeInstrument Failed loading VST-plugin Не смог загрузить модуль VST The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Отчего-то модуль VST %1 не мог быть загружен. Если другое программное обеспечение VST работает у Вас под Linux'ом, свяжитесь с разработчиком LMMS! Loading plugin Загрузка модуля Please wait while loading VST-plugin... Подождите, пока загружается модуль VST... vibed String %1 volume Громкость %1-й струны String %1 stiffness Жёсткость %1-й струны Pick %1 position Лад %1 Pickup %1 position Положение %1-го звукоснимателя Pan %1 Стереобаланс %1 Detune %1 Расстройка %1 Fuzziness %1 Нечёткость %1 Length %1 Длина %1 Impulse %1 Импульс %1 Octave %1 Октава %1 vibedView Volume: Громкость: The 'V' knob sets the volume of the selected string. Регулятор 'V' устанавливает громкость текущей струны. String stiffness: Жёсткость: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. Регулятор 'S' устанавливает жёсткость текущей струны. Этот параметр отвечает за длительность звучания струны (чем больше значение жёсткости, тем тольше звенит струна). Pick position: Лад: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. Регулятор 'P' устанавливает место струны, где она будет „прижата“. Чем ниже значение, тем ближе это место будет к кобылке. Pickup position: Положение звукоснимателя: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. Регулятор 'PU' устанавливает место струны, откуда будет сниматься звук. Чем ниже значение, тем ближе это место будет к кобылке. Pan: Стереобаланс: The Pan knob determines the location of the selected string in the stereo field. Этот регулятор устанавливает стереобаланс для текущей струны. Detune: Расстройка: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. Регулятор расстройки изменяет сдвиг частоты для текущей струны. Отрицательные значения заставят струну звучать бемольно, положительные — диезно. Fuzziness: Нечёткость: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. Этот регулятор добавляет размытости звуку, что наиболее заметно во время нарастания, впрочем это может использоваться чтобы сделать звук более „металлическим“. Length: Длина: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. Регулятор длины устанавливает длину текущей струны. Чем длиннее струна, тем более чистый и долгий звук она даёт; однако это требует больше ресурсов ЦП. Impulse or initial state Начальная скорость/начальное состояние The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. Переключатель „Imp“ устанавливает режим работы струны: если он включён, то указанная форма сигнала интерпретируется как начальный импульс, иначе — как начальная форма струны. Octave Октава The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. Переключатель октав позволяет указать гармонику основной частоты, на которой будет звучать струна. Например, „-2“ означает, что струна будет звучать двумя октавами ниже основной частоты, „F“ заставит струну звенеть на основной частоте инструмента, а „6“ — на частоте, на шесть октав более высокой, чем основная. Impulse Editor Редактор формы импульса The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. Редактор формы позволяет явно указать профиль струны в начальный момент времени, либо её начальный импульс (в заисимости от состояния переключателя „Imp“). Кнопки справа от рисунка позволяют задавать некоторые стандартные формы, причём кнопка '?' служит для задания формы из произвольного звукового файла (загружаются первые 128 элементов выборки). Также форма сигнала может быть просто нарисована с помощью мыши. Кнопка 'S' сгладит текущую форму. Кнопка 'N' нормализует уровень. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Инструмент „Vibed“ моделирует до девяти независимых одновременно звучащих струн. Переключатель „Strings“ позволяет выбрать струну, чьи свойства редактируются. Переключатель „Imp“ устанавливает режим работы струны: если он включён, то указанная форма сигнала интерпретируется как начальный импульс, иначе — как начальная форма струны. Переключатель „Octave“ позволяет указать гармонику основной частоты, на которой будет звучать струна. Редактор формы позволяет явно указать профиль струны в начальный момент времени, либо её начальный импульс. Регулятор 'V' устанавливает громкость текущей струны, 'S' — жёсткость, 'P' — место, где прижата струна, а 'PU'' — положение звукоснимателя Регуляторы расстройки и стереобаланса, есть надежда, не нуждаются в объяснениях. Ручка „Длина“ регулирует длину струны Индикатор-переключатель слева снизу определяет, включена ли текущая струна. Enable waveform Включить Click here to enable/disable waveform. Нажмите, чтобы включить/выключить сигнал. String Струна The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. Переключатель струн позволяет выбрать струну, чьи свойства редактируются. Инструмент Vibed содержит до девяти независимо звучащих струн, индикатор в левом нижнем углу показывает, активна ли текущая струна (т. е. будет ли она слышна). Sine wave Синусоида Use a sine-wave for current oscillator. Генерировать гармонический (синусоидальный) сигнал. Triangle wave Треугольник Use a triangle-wave for current oscillator. Генерировать треугольный сигнал. Saw wave Пила Use a saw-wave for current oscillator. Генерировать пилообразный сигнал. Square wave Меандр Use a square-wave for current oscillator. Генерировать меандр. White noise wave Белый шум Use white-noise for current oscillator. Генерировать белый шум. User defined wave Пользовательская Use a user-defined waveform for current oscillator. Задать форму сигнала. Smooth Сгладить Click here to smooth waveform. Щёлкните чтобы сгладить форму сигнала. Normalize Нормализовать Click here to normalize waveform. Нажмите, чтобы нормализовать сигнал. &Help &Справка visualizationWidget click to enable/disable visualization of master-output Нажмите, чтобы включить/выключить визуализацию Click to enable voiceObject Voice %1 pulse width Voice %1 attack Нарастание %1-го голоса Voice %1 decay Спад %1-го голоса Voice %1 sustain Остаточный уровень для %1-го голоса Voice %1 release Исчезновения %1-го голоса Voice %1 coarse detuning Расстройка %1-го голоса (грубо) Voice %1 wave shape Форма сигнала для %1-го голоса Voice %1 sync Синхронизация %1-го голоса Voice %1 ring modulate Voice %1 filtered Фильтровать %1-й голос Voice %1 test lmms-1.0.0+bzr2569/data/locale/sv.qm0000644000000000000000000005377711517317720015113 0ustar 00000000000000TBTKY1H5'=XWe(Mį$ An*$/=*y/**0 *0 *0D*0S*0#*0)n*0M++0+0+ +A+į1:F|E^GGqH&HZI; eM5'0Sb TZUQVb#Vb V9IVK=Wi(Z'hZo>$Zo@[\%dtb 5vQ)+KunHP"R^@۴CB18Jo@HD=a34(^b(^L.: QRo@r% %0K0Mt>G~r4A:)}"6$Őĩ;6~* xչ87 Y(Z1019BQq.Qq.M`Q`@`%=U`%?jztrJAw!qw(wN95xx 0uuuuhuuuuI JIwI*|I:IB112 2?2r223 3>3q 3 3V4 u"7 u?PH8QgaE }o.kIt?!3;EU9Z1l<5n<5%<5<5)<5:<5<lj5ZC%i x6{/kN9HWjC&[ _[ .l'7j"6#Fi7( 2 :^) i5n-;&KUI,LZ c NM2 2-SE!-SE(-SENGx!Ec? jDnqvS=dkJ#^& $ K 6E= 8e!/ 8eN Mg& TK Ys' =D  , % \U! \U)( \UO U$~ #. %ӴI e& fy6r g$%, mb. u?  D #2 ˔0 N>L / N: Om STn STnLB `* N N V hI  iPJad^Icg$OpCgA0U&}` G"HiO}OmAbout AboutDialog FrittFree ArpeggiatorSorteraSort Arpeggiator%%ArpeggiatorViewRiktning: Direction:ArpeggiatorView Lge:Mode:ArpeggiatorView OMRDERANGEArpeggiatorViewTIDTIMEArpeggiatorViewoktav(er) octave(s)ArpeggiatorViewKANALERCHANNELSAudioAlsa::setupWidget ENHETDEVICEAudioAlsa::setupWidgetFrstrkning:Amplify:AudioFileProcessorViewStartpunkt: Startpoint:AudioFileProcessorViewKANALERCHANNELSAudioJack::setupWidgetKLIENT-NAMN CLIENT-NAMEAudioJack::setupWidgetKANALERCHANNELSAudioOss::setupWidget ENHETDEVICEAudioOss::setupWidget ENHETDEVICEAudioPortAudio::setupWidgetKANALERCHANNELSAudioPulseAudio::setupWidget ENHETDEVICEAudioPulseAudio::setupWidget ENHETDEVICEAudioSdl::setupWidget0&Klistra in vrde (%1%2)&Paste value (%1%2)AutomatableModel"&Nollstll (%1%2) &Reset (%1%2)AutomatableModel\Alla valda vrden blev kopierade till urklipp.1All selected values were copied to the clipboard.AutomationEditor:Kopiera valda vrden (ctrl+C)Copy selected values (Ctrl+C)AutomationEditor<klipp ut valda vrden (ctrl+X)Cut selected values (Ctrl+X)AutomationEditorLKlistra in vrden frn urklipp(ctrl+V)$Paste values from clipboard (Ctrl+V)AutomationEditor0Markeringslge (shift+s)Select mode (Shift+S)AutomationEditor Vrden kopierade Values copiedAutomationEditorByt namn Change nameAutomationPatternViewNollstll namn Reset nameAutomationPatternViewArabiskArabic ChordCreator BluesBlues ChordCreatorackordtyp Chord type ChordCreatordurMajor ChordCreator helnot Whole tone ChordCreatormolnminor ChordCreator oktavoctave ChordCreator OMRDERANGEChordCreatorViewoktav(er) octave(s)ChordCreatorView KANALCHANNELControllerConnectionDialog AvbrytCancelControllerConnectionDialogLgg tillAddControllerRackView &Hjlp&HelpControllerView.&Ta bort denna pluginen&Remove this pluginControllerViewKontrollerControlsControllerView &Hjlp&Help EffectView.&Ta bort denna pluginen&Remove this plugin EffectViewKontrollerControls EffectViewFlytta &ner Move &down EffectViewFlytta &upMove &up EffectView P/AvOn/Off EffectViewTid:Time: EffectViewLedtrdHintEnvelopeAndLfoView AvbrytCancelExportProjectDialog KANALCHANNELInstrumentMidiIOViewFiltertyp Filter typeInstrumentSoundShaping VOLYMVOLUMEInstrumentSoundShaping VolymVolumeInstrumentSoundShaping FILTERFILTERInstrumentSoundShapingViewMLTARGETInstrumentSoundShapingView VolymVolumeInstrumentTrackMIDIMIDIInstrumentTrackViewVOLVOLInstrumentTrackView VolymVolumeInstrumentTrackView Volym:Volume:InstrumentTrackViewMIDIMIDIInstrumentTrackWindow PLUGINPLUGINInstrumentTrackWindowVOLVOLInstrumentTrackWindow Volym:Volume:InstrumentTrackWindowKanalerChannel LadspaControlDialogFTyvrr, ingen hjlp r tillgnglig.Sorry, no help available.LadspaControlView Vrde:Value:LadspaControlView&Redigera&Edit MainWindow &Hjlp&Help MainWindow&Ny&New MainWindow&ppna...&Open... MainWindow&Projekt&Project MainWindow&Avsluta&Quit MainWindow &Spara&Save MainWindowOmAbout MainWindowDKunde inte spara konfigurationsfilCould not save config-file MainWindow$Skapa nytt projektCreate new project MainWindow4Exportera aktuellt projektExport current project MainWindow HjlpHelp MainWindow,Hjlp inte tillgngligHelp not available MainWindowLMMS %1LMMS %1 MainWindow2ppna existerande projektOpen existing project MainWindowppna projekt Open project MainWindowterstllRedo MainWindowSpara &Som... Save &As... MainWindow,Spara aktuellt projektSave current project MainWindowSpara projekt Save project MainWindow(Visa/gm Sng-EditorShow/hide Song-Editor MainWindow8Visa/gm projektanteckningarShow/hide project notes MainWindow ngraUndo MainWindowVad r detta? What's this? MainWindow ENHETDEVICEMidiAlsaRaw::setupWidget ENHETDEVICEMidiAlsaSeq::setupWidget ENHETDEVICEMidiOss::setupWidget&Snd MIDI-hndelserSend MIDI-eventsMidiPort6Fel vid inlsning av pluginError while loading pluginPlugin(Plugin hittades intePlugin not foundPlugin6Komprimerad OGG-Fil (*.ogg)Compressed OGG-File (*.ogg)ProjectRendererSkapare:Maker: QWidget Name: Name: QWidgetJaYesQWidget &Hjlp&Help TempoSyncKnobHalvnoter Half note TempoSyncKnob"DLL-filer (*.dll)DLL-files (*.dll)VestigeInstrumentView"EXE-filer (*.exe)EXE-files (*.exe)VestigeInstrumentView.Inget VST-plugin inlstNo VST-plugin loadedVestigeInstrumentView ppna VST-pluginOpen VST-pluginVestigeInstrumentView,ppna andra VST-pluginOpen other VST-pluginVestigeInstrumentViewAvbyVestigeInstrumentViewNMisslyckades med att lsa in VST_pluginFailed loading VST-plugin VstPluginLaddar pluginLoading plugin VstPluginFVnta medans VST-plugin lses in...'Please wait while loading VST-plugin... VstPlugin(Play/pause current beat/bassline (Space)bbEditorByt frg Change color bbTCOViewByt namn Change name bbTCOViewNollstll namn Reset name bbTCOViewNormalisera NormalizebitInvaderViewSinusvg Sine wavebitInvaderViewFyrkantsvg Square wavebitInvaderViewtriganelvg Triangle wavebitInvaderView(kunde inte ppna filCould not open fileexportProjectDialog2Exportera projekt till %1Export project to %1exportProjectDialog &Hjlp&HelpknobLSKriv ett nytt vrde mellan %1 och %2:+Please enter a new value between %1 and %2:knoblSkriv in ett nytt vrde mellan -96.0 dBV och 6.0 dBV:7Please enter a new value between -96.0 dBV and 6.0 dBV:knob*Tillgngliga EffekterAvailable EffectsladspaBrowserViewVet inte Don't knowladspaBrowserViewInstrument InstrumentsladspaBrowserViewTyp:Type:ladspaBrowserView4Icke Tillgngliga EffekterUnavailable EffectsladspaBrowserViewBeskrivning DescriptionladspaDescription PluginPluginsladspaDescriptionLjudAudioladspaPortDialogKontrollControlladspaPortDialogRiktning DirectionladspaPortDialogFlyttalFloatladspaPortDialog HeltalIntegerladspaPortDialogLogaritmisk LogarithmicladspaPortDialogNamnNameladspaPortDialog PortarPortsladspaPortDialogTypTypeladspaPortDialogJaYesladspaPortDialogSinusvg Sine wavelb302SynthViewFyrkantsvg Square wavelb302SynthViewtriganelvg Triangle wavelb302SynthView &Hjlp&HelpnineButtonSelector VolymVolumeorganicInstrument Volym:Volume:organicInstrumentView2Kunde inte frysa mnstretCannot freeze patternpattern AvbrytCancelpatternFreezeStatusDialogLs mnster...Freezing pattern...patternFreezeStatusDialogByt namn Change name patternViewNollstll namn Reset name patternView8Klipp ut valda noter(Ctrl+X)Cut selected notes (Ctrl+X) pianoRollSenaste noten Last note pianoRollRSpela/pausa aktuellt mnster (mellanslag)"Play/pause current pattern (Space) pianoRoll0Markeringslge (shift+s)Select mode (Shift+S) pianoRollTSluta spela aktuellt mnster (mellanslag)'Stop playing of current pattern (Space) pianoRollhFilter fr att importera FL Studio projekt till LMMS1Filter for importing FL Studio projects into LMMS pluginBrowser"Instrument pluginInstrument plugins pluginBrowser"ingen beskrivningno description pluginBrowser&Fet&Bold projectNotes&Frger... &Color... projectNotes&Kopiera&Copy projectNotes&Kursiv&Italic projectNotes&Vnster&Left projectNotes&Klistra in&Paste projectNotes&terstll&Redo projectNotes &Hger&Right projectNotes&Understruken &Underline projectNotes &ngra&Undo projectNotesC&entreraC&enter projectNotes Ctrl+BCtrl+B projectNotes Ctrl+CCtrl+C projectNotes Ctrl+ECtrl+E projectNotes Ctrl+ICtrl+I projectNotes Ctrl+JCtrl+J projectNotes Ctrl+LCtrl+L projectNotes Ctrl+RCtrl+R projectNotes Ctrl+UCtrl+U projectNotes Ctrl+VCtrl+V projectNotes Ctrl+XCtrl+X projectNotes Ctrl+YCtrl+Y projectNotes Ctrl+ZCtrl+Z projectNotesKlipp& utCu&t projectNotes"Editera hndelser Edit Actions projectNotes(Projekt anteckningar Project notes projectNotesPSkriv ner dina projekt anteckningar hr.!Put down your project notes here. projectNotesByt namn... Rename... renameDialog2AIFF-Filer (*.aif *.aiff)AIFF-Files (*.aif *.aiff) sampleBufferAU-Filer (*.au)AU-Files (*.au) sampleBuffer&FLAC-Filer (*.flac)FLAC-Files (*.flac) sampleBuffer"OGG-Filer (*.ogg)OGG-Files (*.ogg) sampleBufferppna ljudfilOpen audio file sampleBuffer"RAW-Filer (*.raw)RAW-Files (*.raw) sampleBuffer$VOC-Filer (*.voc)VOC-Files (*.voc) sampleBuffer$Wave-Filer (*.wav)Wave-Files (*.wav) sampleBufferKopieraCopy sampleTCOViewKlipp utCut sampleTCOView8Ta bort (musens mittenknapp)Delete (middle mousebutton) sampleTCOViewKlistra inPaste sampleTCOView>Dubbelklicka fr att vlja sprdouble-click to select sample sampleTCOView VolymVolume sampleTrackVOLVOLsampleTrackView"LjudinstllningarAudio settings setupDialog AvbrytCancel setupDialog Visa volym i dBVDisplay volume as dBV  setupDialog$LMMS arbetskatalogLMMS working directory setupDialog$MIDI instllningar MIDI settings setupDialogstarta om LMMS Restart LMMS setupDialogStll in LMMS Setup LMMS setupDialogFiltertyp Filter type sidInstrument VolymVolume sidInstrument Volym:Volume:sidInstrumentViewImportera fil Import filesongHuvudvolym Master volumesong(Projekt INTE sparat.Project NOT saved.songProjekt sparad Project savedsong TempoTemposong4Projektet %1 r nu sparad.The project %1 is now saved.song6Projektet %1 sparades inte!The project %1 was not saved!songnamnlsuntitledsong(kunde inte ppna filCould not open file songEditorHuvudvolym Master volume songEditor.Spela sng (mellanslag)Play song (Space) songEditorSng-Editor Song-Editor songEditorTEMPO/BPM TEMPO/BPM songEditor TempoTempo songEditorhuvudvolym master volume songEditorSngtempo tempo of song songEditorXEfter att ha stoppat g tillbaka till brjanAfter stopping go back to begintimeLineLedtrdHinttimeLinevTryck p <Ctrl> fr att avaktivera magnetiska loop-punkter.-Press to disable magnetic loop-points.timeLine AvbrytCanceltrackContainer,Kunde inte hitta ett filter fr att importera filen %1. Du br konvertera filen till ett format som std av lLMMS genom att anvnda ett annat program.Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software.trackContainer0Kunde inte importera filCouldn't import filetrackContainer,Kunde inte ppna filenCouldn't open filetrackContainerKunde inte ppna filen %1 fr lsning. Se till att du har lsningsrttigheter fr filen och katalogen som innehller filen och frsk igen!Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again!trackContainer,Importerar FLP-file...Importing FLP-file...trackContainer.Importerar MIDI-file...Importing MIDI-file...trackContainer&Lser in projekt...Loading project...trackContainerVnta...Please wait...trackContainer,%1:%2 (%3:%4 to %5:%6)%1:%2 (%3:%4 to %5:%6)trackContentObjectViewKopieraCopytrackContentObjectViewAktuell lngdCurrent lengthtrackContentObjectView Aktuell positionCurrent positiontrackContentObjectViewKlipp utCuttrackContentObjectView8Ta bort (musens mittenknapp)Delete (middle mousebutton)trackContentObjectViewLedtrdHinttrackContentObjectViewKlistra inPastetrackContentObjectView$Klona detta spretClone this tracktrackOperationsWidget(Ta bort detta spretRemove this tracktrackOperationsWidgetNMisslyckades med att lsa in VST_pluginFailed loading VST-pluginvestigeInstrumentLaddar pluginLoading pluginvestigeInstrumentFVnta medans VST-plugin lses in...'Please wait while loading VST-plugin...vestigeInstrument &Hjlp&Help vibedView Lngd:Length: vibedViewNormalisera Normalize vibedViewVlj position:Pick position: vibedViewSinusvg Sine wave vibedViewFyrkantsvg Square wave vibedViewtriganelvg Triangle wave vibedView Volym:Volume: vibedViewlmms-1.0.0+bzr2569/data/locale/sv.ts0000644000000000000000000070157712307165142015117 0ustar 00000000000000 AboutDialog About LMMS LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) About Om LMMS - easy music production for everyone Authors Translation Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! License Copyright (c) 2004-2014, LMMS developers <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> AudioAlsa::setupWidget DEVICE ENHET CHANNELS KANALER AudioFileProcessorView Open other sample Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. Reverse sample If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Loop sample at start- and end-point Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. Amplify: Förstärkning: With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) Startpoint: Startpunkt: With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Endpoint: With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. Continue sample playback across notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) AudioFileProcessorWaveView Sample length: AudioJack JACK client restarted LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. JACK server down The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. AudioJack::setupWidget CLIENT-NAME KLIENT-NAMN CHANNELS KANALER AudioOss::setupWidget DEVICE ENHET CHANNELS KANALER AudioPortAudio::setupWidget BACKEND DEVICE ENHET AudioPulseAudio::setupWidget DEVICE ENHET CHANNELS KANALER AudioSdl::setupWidget DEVICE ENHET AutomatableModel &Reset (%1%2) &Nollställ (%1%2) &Copy value (%1%2) &Paste value (%1%2) &Klistra in värde (%1%2) Edit song-global automation Connected to %1 Connected to controller Edit connection... Remove connection Connect to controller... Remove song-global automation Remove all linked controls AutomationEditor Play/pause current pattern (Space) Spela/pausa aktuellt mönster (mellanslag) Stop playing of current pattern (Space) Sluta spela aktuellt mönster (mellanslag) Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. Click here if you want to stop playing of the current pattern. Draw mode (Shift+D) Erase mode (Shift+E) Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. Cut selected values (Ctrl+X) klipp ut valda värden (ctrl+X) Copy selected values (Ctrl+C) Kopiera valda värden (ctrl+C) Paste values from clipboard (Ctrl+V) Klistra in värden från urklipp(ctrl+V) Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the values from the clipboard will be pasted at the first visible measure. Automation Editor - no pattern Automation Editor - %1 Please open an automation pattern with the context menu of a control! Values copied Värden kopierade All selected values were copied to the clipboard. Alla valda värden blev kopierade till urklipp. Discrete progression Linear progression Cubic Hermite progression Tension: Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. Tension value for spline A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. AutomationPattern Drag a control while pressing <Ctrl> AutomationPatternView double-click to open this pattern in automation editor Open in Automation editor Clear Reset name Nollställ namn Change name Byt namn %1 Connections Disconnect "%1" AutomationTrack Automation track Controller Controller %1 ControllerConnectionDialog Connection Settings MIDI CONTROLLER Input channel CHANNEL KANAL Input controller CONTROLLER Auto Detect MIDI-devices to receive MIDI-events from USER CONTROLLER MAPPING FUNCTION OK Cancel Avbryt LMMS Cycle Detected. ControllerRackView Controller Rack Add Lägg till Confirm Delete Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. ControllerView Controls Kontroller Controllers are able to automate the value of a knob, slider, and other controls. Rename controller Enter the new name for this controller &Remove this plugin &Ta bort denna pluginen &Help &Hjälp Effect Effect enabled Wet/Dry mix Gate Decay EffectChain Effects enabled EffectRackView EFFECTS CHAIN Add effect EffectSelectDialog Add effect Plugin description EffectView Toggles the effect on or off. On/Off På/Av W/D Wet Level: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. DECAY Time: Tid: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. GATE Gate: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. Controls Kontroller Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. Move &up Flytta &up Move &down Flytta &ner &Remove this plugin &Ta bort denna pluginen &Help &Hjälp EnvelopeAndLfoParameters Predelay Attack Hold Decay Sustain Release Modulation LFO Predelay LFO Attack LFO speed LFO Modulation LFO Wave Shape Freq x 100 Modulate Env-Amount EnvelopeAndLfoView DEL Predelay: Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. ATT Attack: Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. HOLD Hold: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. DEC Decay: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. SUST Sustain: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. REL Release: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. AMT Modulation amount: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. LFO predelay: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. LFO- attack: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. SPD LFO speed: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave for current. Click here for a square-wave. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. FREQ x 100 Click here if the frequency of this LFO should be multiplied by 100. multiply LFO-frequency by 100 MODULATE ENV-AMOUNT Click here to make the envelope-amount controlled by this LFO. control envelope-amount by this LFO ms/LFO: Hint Ledtråd Drag a sample from somewhere and drop it in this window. ExportProjectDialog Export project Output File format: Samplerate: 44100 Hz 48000 Hz 88200 Hz 96000 Hz 192000 Hz Bitrate: 64 KBit/s 128 KBit/s 160 KBit/s 192 KBit/s 256 KBit/s 320 KBit/s Depth: 16 Bit Integer 32 Bit Float Please note that not all of the parameters above apply for all file formats. Quality settings Interpolation: Zero Order Hold Sinc Fastest Sinc Medium (recommended) Sinc Best (very slow!) Oversampling (use with care!): 1x (None) 2x 4x 8x Sample-exact controllers Alias-free oscillators Start Cancel Avbryt Export as loop (remove end silence) FxMixer Master FX %1 FxMixerView Rename FX channel Enter the new name for this FX channel FX-Mixer FX Fader %1 Mute Mute this FX channel InstrumentFunctionArpeggio Arpeggio Arpeggio type Arpeggio range Arpeggio time Arpeggio gate Arpeggio direction Arpeggio mode Up Down Up and down Random Free Fritt Sort Sortera Sync InstrumentFunctionArpeggioView ARPEGGIO An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. RANGE OMRÅDE Arpeggio range: octave(s) oktav(er) Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. TIME TID Arpeggio time: ms Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. GATE Arpeggio gate: % % Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. Chord: Direction: Riktning: Mode: Läge: InstrumentFunctionNoteStacking octave oktav Major dur Majb5 minor moln minb5 sus2 sus4 aug augsus4 tri 6 6sus4 6add9 m6 m6add9 7 7sus4 7#5 7b5 7#9 7b9 7#5#9 7#5b9 7b5b9 7add11 7add13 7#11 Maj7 Maj7b5 Maj7#5 Maj7#11 Maj7add13 m7 m7b5 m7b9 m7add11 m7add13 m-Maj7 m-Maj7add11 m-Maj7add13 9 9sus4 add9 9#5 9b5 9#11 9b13 Maj9 Maj9sus4 Maj9#5 Maj9#11 m9 madd9 m9b5 m9-Maj7 11 11b9 Maj11 m11 m-Maj11 13 13#9 13b9 13b5b9 Maj13 m13 m-Maj13 Harmonic minor Melodic minor Whole tone helnot Diminished Major pentatonic Minor pentatonic Jap in sen Major bebop Dominant bebop Blues Blues Arabic Arabisk Enigmatic Neopolitan Neopolitan minor Hungarian minor Dorian Phrygolydian Lydian Mixolydian Aeolian Locrian Chords Chord type ackordtyp Chord range Minor InstrumentFunctionNoteStackingView RANGE OMRÅDE Chord range: octave(s) oktav(er) Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. STACKING Chord: InstrumentMidiIOView ENABLE MIDI INPUT CHANNEL KANAL VELOCITY ENABLE MIDI OUTPUT PROGRAM MIDI devices to receive MIDI events from MIDI devices to send MIDI events to NOTE InstrumentSoundShaping VOLUME VOLYM Volume Volym CUTOFF Cutoff frequency RESO Resonance Envelopes/LFOs Filter type Filtertyp Q/Resonance LowPass HiPass BandPass csg BandPass czpg Notch Allpass Moog 2x LowPass RC LowPass 12dB RC BandPass 12dB RC HighPass 12dB RC LowPass 24dB RC BandPass 24dB RC HighPass 24dB Vocal Formant Filter InstrumentSoundShapingView TARGET MÅL These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! FILTER FILTER Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... RESO Resonance: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. FREQ cutoff frequency: InstrumentTrack unnamed_track Volume Volym Panning Pitch FX channel Default preset With this knob you can set the volume of the opened channel. Base note Pitch range InstrumentTrackView Volume Volym Volume: Volym: VOL VOL Panning Panning: PAN MIDI MIDI Input Output InstrumentTrackWindow GENERAL SETTINGS Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. Instrument volume Volume: Volym: VOL VOL Panning Panning: PAN Pitch Pitch: cents PITCH FX channel ENV/LFO FUNC FX MIDI MIDI Save preset XML preset file (*.xpf) PLUGIN PLUGIN Save current channel settings in a preset-file Pitch range (semitones) RANGE OMRÅDE LadspaControl Link channels LadspaControlDialog Link Channels Channel Kanaler LadspaControlView Link channels Value: Värde: Sorry, no help available. Tyvärr, ingen hjälp är tillgänglig. LadspaEffect Effect Unknown LADSPA plugin %1 requested. LfoController LFO Controller Base value Oscillator speed Oscillator amount Oscillator phase Oscillator waveform Frequency Multiplier LfoControllerDialog LFO LFO Controller BASE Base amount: todo SPD LFO-speed: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. AMT Modulation amount: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. PHS Phase offset: degrees With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Click here for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for a a moog saw-wave. Click here for an exponential wave. Click here for white-noise. Click here for a user-defined shape. Double click to pick a file. MainWindow Working directory The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. Could not save config-file Kunde inte spara konfigurationsfil Could not save configuration file %1. You're probably not permitted to write to this file. Please make sure you have write-access to the file and try again. &Project &Projekt &New &Ny &Open... &Öppna... Recently opened projects &Save &Spara Save &As... Spara &Som... Import... E&xport... &Quit &Avsluta &Edit &Redigera Settings &Tools &Help &Hjälp Online help Help Hjälp What's this? Vad är detta? About Om Create new project Skapa nytt projekt Create new project from template Open existing project Öppna existerande projekt Recently opened project Save current project Spara aktuellt projekt Export current project Exportera aktuellt projekt Show/hide Song-Editor Visa/göm Sång-Editor By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. Show/hide Beat+Bassline Editor By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. Show/hide Piano-Roll Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. Show/hide Automation Editor Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. Show/hide FX Mixer Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. Show/hide project notes Visa/göm projektanteckningar Click here to show or hide the project notes window. In this window you can put down your project notes. Show/hide controller rack Untitled LMMS %1 LMMS %1 Project not saved The current project was modified since last saving. Do you want to save it now? Open project Öppna projekt Save project Spara projekt Help not available Hjälp inte tillgänglig Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. My projects My samples My presets My home My computer Root directory Save as new &version E&xport tracks... LMMS (*.mmp *.mmpz) LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) Version %1 Project recovery It looks like the last session did not end properly. Do you want to recover the project of this session? Configuration file Error while parsing configuration file at line %1:%2: %3 MeterDialog Meter Numerator Meter Denominator TIME SIG MeterModel Numerator Denominator MidiAlsaRaw::setupWidget DEVICE ENHET MidiAlsaSeq::setupWidget DEVICE ENHET MidiController MIDI Controller unnamed_midi_controller MidiImport Setup incomplete You do not have set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. MidiOss::setupWidget DEVICE ENHET MidiPort Input channel Output channel Input controller Output controller Fixed input velocity Fixed output velocity Output MIDI program Receive MIDI-events Send MIDI-events Sänd MIDI-händelser Fixed output note OscillatorObject Osc %1 volume Osc %1 panning Osc %1 coarse detuning Osc %1 fine detuning left Osc %1 fine detuning right Osc %1 phase-offset Osc %1 stereo phase-detuning Osc %1 wave shape Modulation type %1 Osc %1 waveform PatmanView Open other patch Click here to open another patch-file. Loop and Tune settings are not reset. Loop Loop mode Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. Tune Tune mode Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. No file selected Open patch file Patch-Files (*.pat) PeakController Peak Controller Peak Controller Bug Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. PeakControllerDialog PEAK LFO Controller PeakControllerEffectControlDialog BASE Base amount: Modulation amount: Attack: Release: AMNT MULT Amount Multiplicator: ATCK DCAY PeakControllerEffectControls Base value Modulation amount Mute output Attack Release Abs Value Amount Multiplicator PianoView Base note Plugin Plugin not found Plugin hittades inte The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Error while loading plugin Fel vid inläsning av plugin Failed to load plugin "%1"! ProjectRenderer WAV-File (*.wav) Compressed OGG-File (*.ogg) Komprimerad OGG-Fil (*.ogg) QObject C Note name Db Note name C# Note name D Note name Eb Note name D# Note name E Note name Fb Note name Gb Note name F# Note name G Note name Ab Note name G# Note name A Note name Bb Note name A# Note name B Note name QWidget Name: Name: Maker: Skapare: Copyright: Requires Real Time: Yes Ja No Real Time Capable: In Place Broken: Channels In: Channels Out: File: SampleBuffer Open audio file Öppna ljudfil All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) Wave-Files (*.wav) Wave-Filer (*.wav) OGG-Files (*.ogg) OGG-Filer (*.ogg) DrumSynth-Files (*.ds) FLAC-Files (*.flac) FLAC-Filer (*.flac) SPEEX-Files (*.spx) MP3-Files (*.mp3) VOC-Files (*.voc) VOC-Filer (*.voc) AIFF-Files (*.aif *.aiff) AIFF-Filer (*.aif *.aiff) AU-Files (*.au) AU-Filer (*.au) RAW-Files (*.raw) RAW-Filer (*.raw) SampleTCOView double-click to select sample Dubbelklicka för att välja spår Delete (middle mousebutton) Ta bort (musens mittenknapp) Cut Klipp ut Copy Kopiera Paste Klistra in Mute/unmute (<Ctrl> + middle click) Set/clear record SampleTrack Sample track Volume Volym SampleTrackView Track volume Channel volume: VOL VOL TempoSyncKnob Tempo Sync No Sync Eight beats Whole note Half note Halvnoter Quarter note 8th note 16th note 32nd note Custom... &Help &Hjälp Custom Synced to Eight Beats Synced to Whole Note Synced to Half Note Synced to Quarter Note Synced to 8th Note Synced to 16th Note Synced to 32nd Note TimeDisplayWidget click to change time units TrackContainer Couldn't import file Kunde inte importera fil Couldn't find a filter for importing file %1. You should convert this file into a format supported by LMMS using another software. Kunde inte hitta ett filter för att importera filen %1. Du bör konvertera filen till ett format som stöd av lLMMS genom att använda ett annat program. Couldn't open file Kunde inte öppna filen Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! Kunde inte öppna filen %1 för läsning. Se till att du har läsningsrättigheter för filen och katalogen som innehåller filen och försök igen! Loading project... Läser in projekt... Cancel Avbryt Please wait... Vänta... Importing MIDI-file... Importerar MIDI-file... Importing FLP-file... Importerar FLP-file... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 Mix output of oscillator 1 & 2 Synchronize oscillator 1 with oscillator 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 Use phase modulation for modulating oscillator 3 with oscillator 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 Mix output of oscillator 2 & 3 Synchronize oscillator 2 with oscillator 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 Osc %1 volume: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. Osc %1 panning: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. Osc %1 coarse detuning: semitones With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. Osc %1 fine detuning left: cents With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Osc %1 fine detuning right: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. Osc %1 phase-offset: degrees With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. Osc %1 stereo phase-detuning: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use a moog-like saw-wave for current oscillator. Use an exponential wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. Ui Contributors ordered by number of commits: Involved VersionedSaveDialog Increment version number Decrement version number VestigeInstrumentView Open other VST-plugin Öppna andra VST-plugin Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. Show/hide GUI Click here to show or hide the graphical user interface (GUI) of your VST-plugin. Turn off all notes Open VST-plugin Öppna VST-plugin DLL-files (*.dll) DLL-filer (*.dll) EXE-files (*.exe) EXE-filer (*.exe) No VST-plugin loaded Inget VST-plugin inläst Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Save preset Click here, if you want to save current VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Preset by - VST plugin control VstEffectControlDialog Show/hide Control VST-plugin from LMMS host Click here, if you want to control VST-plugin from host. Open VST-plugin preset Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. Previous (-) Click here, if you want to switch to another VST-plugin preset program. Next (+) Click here to select presets that are currently loaded in VST. Save preset Click here, if you want to save current VST-plugin preset program. Effect by: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> VstPlugin Loading plugin Laddar plugin Please wait while loading VST-plugin... Vänta medans VST-plugin läses in... Failed loading VST-plugin Misslyckades med att läsa in VST_plugin The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! Open Preset Vst Plugin Preset (*.fxp *.fxb) : default " ' Save Preset .fxp .FXP .FXB .fxb ZynAddSubFxInstrument Portamento Filter Frequency Filter Resonance Bandwidth FM Gain Resonance Center Frequency Resonance Bandwidth Forward MIDI Control Change Events ZynAddSubFxView Show GUI Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. Portamento: PORT Filter Frequency: FREQ Filter Resonance: RES Bandwidth: BW FM Gain: FM GAIN Resonance center frequency: RES CF Resonance bandwidth: RES BW Forward MIDI Control Changes audioFileProcessor Reverse sample Amplify Start of sample End of sample Loop Stutter bassBoosterControlDialog FREQ Frequency: GAIN Gain: RATIO Ratio: bassBoosterControls Frequency Gain Ratio bbEditor Beat+Bassline Editor Play/pause current beat/bassline (Space) Add beat/bassline Add automation-track Stop playback of current beat/bassline (Space) Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. Click here to stop playing of current beat/bassline. Remove steps Add steps bbTCOView Open in Beat+Bassline-Editor Reset name Nollställ namn Change name Byt namn Change color Byt färg bbTrack Beat/Bassline %1 Clone of %1 bitInvader Samplelength bitInvaderView Sample Length Sine wave Sinusvåg Triangle wave triganelvåg Saw wave Square wave Fyrkantsvåg White noise wave User defined wave Smooth Click here to smooth waveform. Interpolation Normalize Normalisera Draw your own waveform here by dragging your mouse on this graph. Click for a sine-wave. Click here for a triangle-wave. Click here for a saw-wave. Click here for a square-wave. Click here for white-noise. Click here for a user-defined shape. exportProjectDialog Could not open file kunde inte öppna fil Could not open file %1 for writing. Please make sure you have write-permission to the file and the directory containing the file and try again! Error Error while determining file-encoder device. Please try to choose a different output format. Rendering: %1% Export project to %1 Exportera projekt till %1 fader Please enter a new value between %1 and %2: SKriv ett nytt värde mellan %1 och %2: fileBrowser Browser fileBrowserTreeWidget Send to active instrument-track Open in new instrument-track/Song-Editor Open in new instrument-track/B+B Editor Loading sample Please wait, loading sample for preview... --- Factory files --- graphModel Graph kickerInstrument Start frequency End frequency Decay Distortion Gain kickerInstrumentView Start frequency: End frequency: Decay: Distortion: Gain: knob &Help &Hjälp Please enter a new value between %1 and %2: SKriv ett nytt värde mellan %1 och %2: Please enter a new value between -96.0 dBV and 6.0 dBV: Skriv in ett nytt värde mellan -96.0 dBV och 6.0 dBV: ladspaBrowserView Available Effects Tillgängliga Effekter Unavailable Effects Icke Tillgängliga Effekter Instruments Instrument Analysis Tools Don't know Vet inte This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. Instruments are plugins for which only output channels were identified. Analysis Tools are plugins for which only input channels were identified. Don't Knows are plugins for which no input or output channels were identified. Double clicking any of the plugins will bring up information on the ports. Type: Typ: ladspaDescription Plugins Plugin Description Beskrivning ladspaPortDialog Name Namn Rate Direction Riktning Type Typ Min < Default < Max Logarithmic Logaritmisk SR Dependent Audio Ljud Control Kontroll Input Output Toggled Integer Heltal Float Flyttal Yes Ja Ports Portar lb302Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb302SynthView Cutoff Freq: Resonance: Env Mod: Decay: 303-es-que, 24dB/octave, 3 pole filter Slide Decay: DIST: Saw wave Click here for a saw-wave. Triangle wave triganelvåg Click here for a triangle-wave. Square wave Fyrkantsvåg Click here for a square-wave. Rounded square wave Click here for a square-wave with a rounded end. Moog wave Click here for a moog-like wave. Sine wave Sinusvåg Click for a sine-wave. White noise wave Click here for an exponential wave. Click here for white-noise. lb303Synth VCF Cutoff Frequency VCF Resonance VCF Envelope Mod VCF Envelope Decay Distortion Waveform Slide Decay Slide Accent Dead 24dB/oct Filter lb303SynthView Cutoff Freq: CUT Resonance: RES Env Mod: ENV MOD Decay: DEC 303-es-que, 24dB/octave, 3 pole filter Slide Decay: SLIDE DIST: DIST WAVE: WAVE malletsInstrument Hardness Position Vibrato Gain Vibrato Freq Stick Mix Modulator Crossfade LFO Speed LFO Depth ADSR Pressure Motion Speed Bowed Spread Marimba Vibraphone Agogo Wood1 Reso Wood2 Beats Two Fixed Clump Tubular Bells Uniform Bar Tuned Bar Glass Tibetan Bowl Missing files Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! malletsInstrumentView Instrument Spread Spread: Hardness Hardness: Position Position: Vib Gain Vib Gain: Vib Freq Vib Freq: Stick Mix Stick Mix: Modulator Modulator: Crossfade Crossfade: LFO Speed LFO Speed: LFO Depth LFO Depth: ADSR ADSR: Bowed Pressure Pressure: Motion Motion: Speed Speed: Vibrato Vibrato: manageVSTEffectView - VST parameter control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST effect knob-controller window. manageVestigeInstrumentView - VST plugin control VST Sync Click here if you want to synchronize all parameters with VST plugin. Automated Click here if you want to display automated parameters only. Close Close VST plugin knob-controller window. nineButtonSelector &Help &Hjälp opl2instrument Patch Op 1 Attack Op 1 Decay Op 1 Sustain Op 1 Release Op 1 Level Op 1 Level Scaling Op 1 Frequency Multiple Op 1 Feedback Op 1 Key Scaling Rate Op 1 Percussive Envelope Op 1 Tremolo Op 1 Vibrato Op 1 Waveform Op 2 Attack Op 2 Decay Op 2 Sustain Op 2 Release Op 2 Level Op 2 Level Scaling Op 2 Frequency Multiple Op 2 Key Scaling Rate Op 2 Percussive Envelope Op 2 Tremolo Op 2 Vibrato Op 2 Waveform FM Vibrato Depth Tremolo Depth organicInstrument Distortion Volume Volym organicInstrumentView Distortion: Volume: Volym: Randomise Osc %1 waveform: Osc %1 volume: Osc %1 panning: Osc %1 fine detuning left: cents papuInstrument Sweep time Sweep direction Sweep RtShift amount Wave Pattern Duty Channel 1 volume Volume sweep direction Length of each step in sweep Channel 2 volume Channel 3 volume Channel 4 volume Right Output level Left Output level Channel 1 to SO2 (Left) Channel 2 to SO2 (Left) Channel 3 to SO2 (Left) Channel 4 to SO2 (Left) Channel 1 to SO1 (Right) Channel 2 to SO1 (Right) Channel 3 to SO1 (Right) Channel 4 to SO1 (Right) Treble Bass Shift Register width papuInstrumentView Sweep Time: Sweep Time Sweep RtShift amount: Sweep RtShift amount Wave pattern duty: Wave Pattern Duty Square Channel 1 Volume: Length of each step in sweep: Length of each step in sweep Wave pattern duty Square Channel 2 Volume: Square Channel 2 Volume Wave Channel Volume: Wave Channel Volume Noise Channel Volume: Noise Channel Volume SO1 Volume (Right): SO1 Volume (Right) SO2 Volume (Left): SO2 Volume (Left) Treble: Treble Bass: Bass Sweep Direction Volume Sweep Direction Shift Register Width Channel1 to SO1 (Right) Channel2 to SO1 (Right) Channel3 to SO1 (Right) Channel4 to SO1 (Right) Channel1 to SO2 (Left) Channel2 to SO2 (Left) Channel3 to SO2 (Left) Channel4 to SO2 (Left) Wave Pattern The amount of increase or decrease in frequency The rate at which increase or decrease in frequency occurs The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. Square Channel 1 Volume The delay between step change Draw the wave here pattern Cannot freeze pattern Kunde inte frysa mönstret The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! patternFreezeStatusDialog Freezing pattern... Lås mönster... Cancel Avbryt patternView double-click to open this pattern in piano-roll use mouse wheel to set volume of a step Open in piano-roll Clear all notes Reset name Nollställ namn Change name Byt namn Refreeze Freeze Unfreeze Add steps Remove steps PianoRoll Play/pause current pattern (Space) Spela/pausa aktuellt mönster (mellanslag) Record notes from MIDI-device/channel-piano Stop playing of current pattern (Space) Sluta spela aktuellt mönster (mellanslag) Draw mode (Shift+D) Erase mode (Shift+E) Select mode (Shift+S) Markeringsläge (shift+s) Cut selected notes (Ctrl+X) Klipp ut valda noter(Ctrl+X) Copy selected notes (Ctrl+C) Paste notes from clipboard (Ctrl+V) Last note Senaste noten Piano-Roll - no pattern Piano-Roll - %1 Please open a pattern by double-clicking on it! Record notes from MIDI-device/channel-piano while playing song or BB track Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. Click here to stop playback of current pattern. Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. Click here and the notes from the clipboard will be pasted at the first visible measure. Note lock Note Volume Note Panning Detune mode (Shift+T) Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold Ctrl to temporarily go into select mode. Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. Mark/unmark current semitone Mark current scale Mark current chord Unmark all No scale No chord pluginBrowser no description ingen beskrivning Instrument plugins Instrument plugin simple sampler with various settings for using samples (e.g. drums) in an instrument-track Filter for importing FL Studio projects into LMMS Filter för att importera FL Studio projekt till LMMS Filter for importing MIDI-files into LMMS Additive Synthesizer for organ-like sounds three powerful oscillators you can modulate in several ways VST-host for using VST(i)-plugins within LMMS Vibrating string modeler Incomplete monophonic imitation tb303 Plugin for freely manipulating stereo output Plugin for controlling knobs with sound peaks Plugin for enhancing stereo separation of a stereo input file List installed LADSPA plugins versatile kick- & bassdrum-synthesizer GUS-compatible patch instrument plugin for using arbitrary VST-effects inside LMMS. plugin for boosting bass Tuneful things to bang on plugin for using arbitrary LADSPA-effects inside LMMS. Instrument browser Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Player for SoundFont files Emulation of GameBoy (TM) APU Customizable wavetable synthesizer Embedded ZynAddSubFX 2-operator FM Synth Filter for importing Hydrogen files into LMMS LMMS port of sfxr projectNotes Project notes Projekt anteckningar Put down your project notes here. Skriv ner dina projekt anteckningar här. Edit Actions Editera händelser &Undo &Ångra Ctrl+Z Ctrl+Z &Redo &Återställ Ctrl+Y Ctrl+Y &Copy &Kopiera Ctrl+C Ctrl+C Cu&t Klipp& ut Ctrl+X Ctrl+X &Paste &Klistra in Ctrl+V Ctrl+V Format Actions &Bold &Fet Ctrl+B Ctrl+B &Italic &Kursiv Ctrl+I Ctrl+I &Underline &Understruken Ctrl+U Ctrl+U &Left &Vänster Ctrl+L Ctrl+L C&enter C&entrera Ctrl+E Ctrl+E &Right &Höger Ctrl+R Ctrl+R &Justify Ctrl+J Ctrl+J &Color... &Färger... renameDialog Rename... Byt namn... setupDialog Setup LMMS Ställ in LMMS General settings BUFFER SIZE Reset to default-value MISC Display volume as dBV Visa volym i dBV LMMS working directory LMMS arbetskatalog VST-plugin directory Artwork directory FL Studio installation directory Performance settings UI effects vs. performance Audio settings Ljudinställningar AUDIO INTERFACE MIDI settings MIDI inställningar MIDI INTERFACE OK Cancel Avbryt Restart LMMS starta om LMMS Please note that most changes won't take effect until you restart LMMS! Frames: %1 Latency: %2 ms Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. Choose LMMS working directory Choose your VST-plugin directory Choose artwork-theme directory Choose FL Studio installation directory Choose LADSPA plugin directory Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. Enable tooltips Show restart warning after changing settings Compress project files per default HQ-mode for output audio-device STK rawwave directory Choose STK rawwave directory Paths LADSPA plugin paths Default Soundfont File Background artwork Choose default SoundFont Choose background artwork One instrument track window mode Compact track buttons Sync VST plugins to host playback Enable note labels in piano roll Enable waveform display by default Smooth scroll in Song Editor Enable auto save feature Show playback cursor in AudioFileProcessor sf2Instrument Bank Patch Gain Reverb Reverb Roomsize Reverb Damping Reverb Width Reverb Level Chorus Chorus Lines Chorus Level Chorus Speed Chorus Depth sf2InstrumentView Open other SoundFont file Click here to open another SF2 file Choose the patch Gain Apply reverb (if supported) This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. Reverb Roomsize: Reverb Damping: Reverb Width: Reverb Level: Apply chorus (if supported) This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. Chorus Lines: Chorus Level: Chorus Speed: Chorus Depth: Open SoundFont file SoundFont2 Files (*.sf2) sfxrInstrument Wave Form sidInstrument Cutoff Resonance Filter type Filtertyp Voice 3 off Volume Volym Chip model sidInstrumentView Volume: Volym: Resonance: Cutoff frequency: High-Pass filter Band-Pass filter Low-Pass filter Voice3 Off MOS6581 SID MOS8580 SID Attack: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. Decay: Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. Sustain: Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. Release: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. Pulse Width: The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. Coarse: The Coarse detuning allows to detune Voice %1 one octave up or down. Pulse Wave Triangle Wave SawTooth Noise Sync Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. Ring-Mod Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. Filtered When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. Test Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. song Tempo Tempo Master volume Huvudvolym Master pitch Project saved Projekt sparad The project %1 is now saved. Projektet %1 är nu sparad. Project NOT saved. Projekt INTE sparat. The project %1 was not saved! Projektet %1 sparades inte! Import file Importera fil untitled namnlös Select file for project-export... Empty project This project is empty so exporting makes no sense. Please put some items into Song Editor first! MIDI sequences FL Studio projects All file types Hydrogen projects Select directory for writing exported tracks... SongEditor Song-Editor Sång-Editor Play song (Space) Spela sång (mellanslag) Stop song (Space) Add beat/bassline Add sample-track Draw mode Edit mode (select and move) Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. Could not open file kunde inte öppna fil Could not write file Add automation-track Record samples from Audio-device Record samples from Audio-device while playing song or BB track Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. Error in file The file %1 seems to contain errors and therefore can't be loaded. Tempo Tempo TEMPO/BPM TEMPO/BPM tempo of song Sångtempo The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). High quality mode Master volume Huvudvolym master volume huvudvolym Master pitch master pitch Value: %1% Value: %1 semitones Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. spectrumAnalyzerControlDialog Linear spectrum Linear Y axis spectrumAnalyzerControls Linear spectrum Linear Y-axis Channel mode stereoEnhancerControlDialog WIDE Width: stereoEnhancerControls Width stereoMatrixControlDialog Left to Left Vol: Left to Right Vol: Right to Left Vol: Right to Right Vol: stereoMatrixControls Left to Left Left to Right Right to Left Right to Right timeLine Enable/disable auto-scrolling Enable/disable loop-points After stopping go back to begin Efter att ha stoppat gå tillbaka till början After stopping go back to position at which playing was started After stopping keep position Hint Ledtråd Press <Ctrl> to disable magnetic loop points. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. track Muted Solo trackContentObject Muted trackContentObjectView Current position Aktuell position Hint Ledtråd Press <Ctrl> and drag to make a copy. Current length Aktuell längd Press <Ctrl> for free resizing. %1:%2 (%3:%4 to %5:%6) %1:%2 (%3:%4 to %5:%6) Delete (middle mousebutton) Ta bort (musens mittenknapp) Cut Klipp ut Copy Kopiera Paste Klistra in Mute/unmute (<Ctrl> + middle click) trackOperationsWidget Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. Actions for this track Mute Clone this track Klona detta spåret Remove this track Ta bort detta spåret Mute this track Solo vestigeInstrument Loading plugin Laddar plugin Please wait while loading VST-plugin... Vänta medans VST-plugin läses in... Failed loading VST-plugin Misslyckades med att läsa in VST_plugin The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! vibed String %1 volume String %1 stiffness Pick %1 position Pickup %1 position Pan %1 Detune %1 Fuzziness %1 Length %1 Impulse %1 Octave %1 vibedView Volume: Volym: The 'V' knob sets the volume of the selected string. String stiffness: The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. Pick position: Välj position: The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. Pickup position: The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. Pan: The Pan knob determines the location of the selected string in the stereo field. Detune: The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. Fuzziness: The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. Length: Längd: The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. Impulse or initial state The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. Octave The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. Impulse Editor The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. 'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. The 'Length' knob controls the length of the string. The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. Enable waveform Click here to enable/disable waveform. String The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. Sine wave Sinusvåg Triangle wave triganelvåg Saw wave Square wave Fyrkantsvåg White noise wave User defined wave Smooth Click here to smooth waveform. Normalize Normalisera Click here to normalize waveform. &Help &Hjälp Use a sine-wave for current oscillator. Use a triangle-wave for current oscillator. Use a saw-wave for current oscillator. Use a square-wave for current oscillator. Use white-noise for current oscillator. Use a user-defined waveform for current oscillator. visualizationWidget click to enable/disable visualization of master-output Click to enable voiceObject Voice %1 pulse width Voice %1 attack Voice %1 decay Voice %1 sustain Voice %1 release Voice %1 coarse detuning Voice %1 wave shape Voice %1 sync Voice %1 ring modulate Voice %1 filtered Voice %1 test lmms-1.0.0+bzr2569/data/presets/AudioFileProcessor/0000755000000000000000000000000010401051475020061 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/BitInvader/0000755000000000000000000000000010401051475016347 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/CMakeLists.txt0000644000000000000000000000015211172205155017060 0ustar 00000000000000INCLUDE(InstallHelpers) INSTALL_DATA_SUBDIRS("presets" "*.xpf") INSTALL_DATA_SUBDIRS("presets" "*.xiz") lmms-1.0.0+bzr2569/data/presets/LB302/0000755000000000000000000000000010722712664015054 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/OpulenZ/0000755000000000000000000000000012272037702015721 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/Organic/0000755000000000000000000000000010401051475015702 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/TripleOscillator/0000755000000000000000000000000010401051475017613 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/Vibed/0000755000000000000000000000000010434327616015362 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/Watsyn/0000755000000000000000000000000012314540776015621 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/0000755000000000000000000000000011172205155016423 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/AudioFileProcessor/Bass-Mania.xpf0000644000000000000000000000253511064552455022532 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/AudioFileProcessor/Erazor.xpf0000644000000000000000000000547511064552455022067 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf0000644000000000000000000000275111064552455023765 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf0000644000000000000000000000274211064552455024606 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/AudioFileProcessor/SString.xpf0000644000000000000000000000673011101714336022177 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/AudioFileProcessor/orion.xpf0000644000000000000000000000533311064552455021744 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/BitInvader/alien_strings.xpf0000644000000000000000000000402312072367577021751 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/BitInvader/beehive.xpf0000644000000000000000000000277712072367577020535 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/BitInvader/bell.xpf0000644000000000000000000000261712072367577020035 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/BitInvader/cello.xpf0000644000000000000000000000377412072367577020222 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/BitInvader/drama.xpf0000644000000000000000000000401712072367577020177 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/BitInvader/epiano.xpf0000644000000000000000000000301112072367577020357 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/BitInvader/pluck.xpf0000644000000000000000000000404111064552455020215 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/BitInvader/soft_pad.xpf0000644000000000000000000000377612072367577020725 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/BitInvader/spacefx.xpf0000644000000000000000000000331612072367577020545 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/BitInvader/subbass.xpf0000644000000000000000000000403612072367577020556 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/BitInvader/sweep_pad.xpf0000644000000000000000000000264012072367577021062 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/BitInvader/toy_piano.xpf0000644000000000000000000000400612072367577021112 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/BitInvader/wah_synth.xpf0000644000000000000000000000321412072367577021115 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/LB302/GoodOldTimes.xpf0000644000000000000000000000337711064552455020136 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/LB302/Oh Synth.xpf0000644000000000000000000000325712072367577017247 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/LB302/STrash.xpf0000644000000000000000000000633412072367577017016 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Bagpipe.xpf0000644000000000000000000000460012271774507020021 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Bells.xpf0000644000000000000000000000402312271774507017512 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Brass.xpf0000644000000000000000000000402112271774507017521 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Bubbly_days.xpf0000644000000000000000000000404012274210751020674 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Cheesy_synth.xpf0000644000000000000000000000403312271774507021117 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Clarinet.xpf0000644000000000000000000000402512271774507020214 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Combo_organ.xpf0000644000000000000000000000460412271774507020703 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Epiano.xpf0000644000000000000000000000402212271774507017663 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Funky.xpf0000644000000000000000000000457412271774507017560 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Halo_pad.xpf0000644000000000000000000000403112271774507020157 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Harp.xpf0000644000000000000000000000457612271774507017360 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Organ_leslie.xpf0000644000000000000000000000500612271774507021056 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Pad.xpf0000644000000000000000000000402212271774507017154 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Square.xpf0000644000000000000000000000457712271774507017727 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/OpulenZ/Vibraphone.xpf0000644000000000000000000000402512271774507020550 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/Organic/organ_blues.xpf0000644000000000000000000000342312072367577020746 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/Organic/organ_risingsun.xpf0000644000000000000000000000343312072367577021656 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/Organic/organ_swish.xpf0000644000000000000000000000343112072367577020770 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/Organic/pad_ethereal.xpf0000644000000000000000000000344612072367577021070 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/Organic/pad_rich.xpf0000644000000000000000000000344212072367577020220 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/Organic/pad_sweep.xpf0000644000000000000000000000342512072367577020417 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/Organic/puresine.xpf0000644000000000000000000000341412072367577020300 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/Organic/sequencer_64.xpf0000644000000000000000000000343212072367577020751 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/AmazingBubbles.xpf0000644000000000000000000000332411064552455023233 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/AnalogDreamz.xpf0000644000000000000000000000323011064552455022706 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/AnalogTimes.xpf0000644000000000000000000000333311064552455022551 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/AnalogTimes2.xpf0000644000000000000000000000413411064552455022633 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Analogous.xpf0000644000000000000000000000332211064552455022274 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/ArpKing.xpf0000644000000000000000000000311611064552455021700 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Arpeggio_1.xpf0000644000000000000000000000412211064552455022320 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Arpeggio_2.xpf0000644000000000000000000000263511064552455022330 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Bell.xpf0000644000000000000000000000327611064552455021232 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Bell_2.xpf0000644000000000000000000000330211064552455021441 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/ChurchOrgan.xpf0000644000000000000000000000404411064552455022551 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/DeathBass.xpf0000644000000000000000000000625211064552455022207 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Distorted-FM-Bass.xpf0000644000000000000000000000331011064552455023470 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Dull-Bell-Arp.xpf0000644000000000000000000000330211064552455022636 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/E-Organ.xpf0000644000000000000000000000411511064552455021575 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/E-Organ2.xpf0000644000000000000000000000475211064552455021666 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Erazzor.xpf0000644000000000000000000001142612312114252021766 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Fat-FMish-Bells.xpf0000644000000000000000000000330611064552455023123 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Fat-TB303-Arp.xpf0000644000000000000000000000342511064552455022333 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Fat.xpf0000644000000000000000000000271711064552455021065 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/FatCheese.xpf0000644000000000000000000000271211064552455022175 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Freaky-Bass.xpf0000644000000000000000000000332411064552455022455 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/FutureBass.xpf0000644000000000000000000000321211064552455022425 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Gong.xpf0000644000000000000000000000327711064552455021247 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Harmonium.xpf0000644000000000000000000000412011064552455022300 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Harp-of-a-Fairy.xpf0000644000000000000000000000330511064552455023127 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Harpsichord.xpf0000644000000000000000000000330111064552455022607 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/HiPad.xpf0000644000000000000000000000322611064552455021334 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Jupiter.xpf0000644000000000000000000000410411064552455021765 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Kick.xpf0000644000000000000000000000452211064552455021230 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Kick2.xpf0000644000000000000000000000453011064552455021311 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/LFO-party.xpf0000644000000000000000000000413711064552455022126 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/LovelyDream.xpf0000644000000000000000000000330511064552455022570 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/MoogArpeggio.xpf0000644000000000000000000000413311064552455022724 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/MoveYourBody.xpf0000644000000000000000000000327011064552455022751 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/OldComputerGames.xpf0000644000000000000000000000724211064552455023563 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Play-some-rock.xpf0000644000000000000000000000331211064552455023145 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/PluckArpeggio.xpf0000644000000000000000000000413011064552455023076 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Plucked.xpf0000644000000000000000000000331111064552455021731 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/PowerStrings.xpf0000644000000000000000000000514111064552455023013 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/RaveBass.xpf0000644000000000000000000000414011064552455022051 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Ravemania.xpf0000644000000000000000000000355311064552455022255 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/ResoBass.xpf0000644000000000000000000000324111064552455022065 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/ResonantPad.xpf0000644000000000000000000000332511064552455022565 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/RockOrgan.xpf0000644000000000000000000000330111064552455022226 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Rough!.xpf0000644000000000000000000000322011064552455021466 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/SBass.xpf0000644000000000000000000000734512072367577021401 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/SBass2.xpf0000644000000000000000000000543712072367577021463 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/SEGuitar.xpf0000644000000000000000000001057512304414327022030 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/SawLead.xpf0000644000000000000000000000401611066401540021653 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/SawReso.xpf0000644000000000000000000000341311064552455021730 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Short1.xpf0000644000000000000000000000331411064552455021525 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Short2.xpf0000644000000000000000000000331111064552455021523 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Short3.xpf0000644000000000000000000000326711064552455021536 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Short4.xpf0000644000000000000000000000327011064552455021531 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Snare.xpf0000644000000000000000000000454511064552455021424 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/SoftBass.xpf0000644000000000000000000000412211064552455022067 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/SoftStrings.xpf0000644000000000000000000000411311064552455022630 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/SpaceBass.xpf0000644000000000000000000000333411064552455022213 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Square.xpf0000644000000000000000000000407611064552455021613 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Supernova.xpf0000644000000000000000000001101411122305514022306 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/TB303-Arpeggio.xpf0000644000000000000000000000413011064552455022630 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/TB303.xpf0000644000000000000000000000410711064552455021101 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/TheFirstOne.xpf0000644000000000000000000000323311064552455022537 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/TheMaster.xpf0000644000000000000000000000322011064552455022235 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/TranceLead.xpf0000644000000000000000000000323111064552455022345 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/WarmStack.xpf0000644000000000000000000000662511064552455022251 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Whistle.xpf0000644000000000000000000000330611064552455021765 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/TripleOscillator/Xylophon.xpf0000644000000000000000000000270211064552455022165 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/Vibed/Harpsichord.xpf0000644000000000000000000000765011064552455020360 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/Vibed/SadPad.xpf0000644000000000000000000000767611064552455017256 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/Watsyn/Epic_lead.xpf0000644000000000000000000002216212314534432020200 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/Watsyn/Phase_bass.xpf0000644000000000000000000001550612314534432020407 0ustar 00000000000000 lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0000755000000000000000000000000011172205155020343 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Bass/0000755000000000000000000000000011172205155017313 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Brass/0000755000000000000000000000000011172205155017475 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0000755000000000000000000000000011172205155021100 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/0000755000000000000000000000000011177557523020717 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Drums/0000755000000000000000000000000011172205155017515 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Dual/0000755000000000000000000000000011172205155017310 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Fantasy/0000755000000000000000000000000011172205155020030 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Guitar/0000755000000000000000000000000011172205155017656 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Misc/0000755000000000000000000000000011172205155017316 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Noises/0000755000000000000000000000000011172205155017663 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0000755000000000000000000000000011172205155017471 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Pads/0000755000000000000000000000000011172205155017312 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Plucked/0000755000000000000000000000000011172205155020012 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ReedAndWind/0000755000000000000000000000000011172205155020547 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0000755000000000000000000000000011172205155017647 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Splited/0000755000000000000000000000000011172205155020027 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0000755000000000000000000000000011172205155020054 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Synth/0000755000000000000000000000000011172205155017530 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0000755000000000000000000000000011172205155020517 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0001-Arpeggio1.xiz0000644000000000000000000000422711172205155023300 0ustar 00000000000000\[s8~ϯ`yO$0&0e6,N/d֗4lIG4-OI#铔E˪Z!.q⏛}Ϛvg=>;8WGQxx>ZO\<9(Ǐ8qehŴrEz]g_+G[T(^}&Xp8#SUkL63ΨsםtGD׳h:.b Sdmr_!YhE| %aq`6LĖzh:`*2h-4&0cI,6SMTt#;pgl,DbOT:fg]ԒP,qs*-c+|^'¿A#DQV[(rU1Afԟt*sY=(!?. \3&5j"'Z@2 "ѥ+YH[s  =)y:cڹAσ-d ,|e'7I-XeZpB+L) \)_s.:5=nACh@Ыt;tר|MOMm1_s~g|ֵ/D;n~A"l.hNՐ]84ﲼOs3\)F,LȖ\&i.4J$Q9WvlE_@[ЫzD?EMpOzדPLZ.[~f{:Q_]r(13&6K[3|UBCg56K+iAoi44_5[ԲR`hVm2L!*م[.Vʡ97-j`'l~ŭl`'׌ /!R҈ 75+~lFM #Tm-x^6$ٜPSnE%@lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0002-Arpeggio2.xiz0000644000000000000000000000370011172205155023275 0ustar 00000000000000[Ks6W;զڲ+ə LB`Iʱ}AH~M=b/|N?<˃G'g }q@ӫƇwN~sZӁOVW8NBa?Km'͞EwƝ ␜5B&/Wsht_) 4IUHhZ͕΃lF̴\BCNN[܁:eth8uo_B(~X7ab $\E_AcHQʔQcT-ģmppy&FߌR% 33N/K3-yvm{`CGۖ#Y2/H׈o=Q)myJ@Q(H )+#9Y6qhS$ luuG;7WPu,&r#>YbUn"#IVIoheUklmb(&K"%|K\:R  _hKeo{D ~V胶~=^:775:TLpQ㸫9nua`s/g98EBuCr-cJ ^F ]*( q dPjFhaJ&ܻOep'*E91'B1*MNTkWXcm A/$/2Ug=*+SY f0r^)v;>2 @Ǯ͒T^,y*7/%S2g,ThcM%]K̕L.Jc}R j6WasEa.j=TVܟk£W5ǁXA6N rk#ųTV5B,imX~̒V *؝܎ K*,on/Kb0g&$O)bH(hN2 wQmB9V(Xhxh?#VZ/ =Z;F-gհwh;lvU-jTټM6p9j5ٰ1ddS|g*v鰥#7϶=!Iv(JU}ŏ% dY!o[(!UH2c1A I">͆aE#^K#þ z-Uľ-,vlO):-q"9 q<0 6YY%MRѺ;m^}N+_v4f8Tي6 yPtJ1 HT-4s p]0,-f9A4^PR6"\<ΆEe |sD1{4ԅ`>ޱMj3ЬGiM_Ue57GDiE,( 8qip#j p{gᦟ mp3Th?F3 a47ic'H;ki?TvDR'fcBREP:xwEܽq 枷PV{&6o\ ,~:UO:WOr'N֓\'I$HzOL2nQ*Sy,t. Cyy&ŭSqSy^]lrf<_r"m͟g%Rf@;bkL%!Yf6zLD`S}Re廱VENIV-q[ [N*+ M|f]6r2Z7r*-Ҵx$l&6{W:T ˿M:t+""&6%+A\&"0SQbM޷n:9ڢib2lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0003-Arpeggio3.xiz0000644000000000000000000000373711172205155023311 0ustar 00000000000000[[S8~`Ns2CdL3 MBg/a+X%~"Hv]st|tnY:/Iy~hX:C~ruxxo/w+wC|;Wr ģɓ{lcOј? px@O>4||G|<^,cy1bG( !hKиzTDSHo^U0ҤOҙx ]7Zx1TuSw`8o>^?|<`6a@f3ϚP /9 e;O)"B* Rc3kAbg.cl.*F f47PB(~Xqŝ0JrP/cIEfE AMcwuR "E16]!5lK42|ҊK?$LNz0,GU;MC/`Jy]Xd/^!>HԵ:V({]']akROsz 1uOIYȖ<Z{پSQ3_8G0/̼-I$"2GӀ2ܳ7D{UlbC\|^O` >'YjZ+Z4֥c{$چ]jQ[ecgh4ixxщB#ǭ^e '570F\6Ŕ!C)%./M:kΒp2% dWOX.haR{KSK\q5_K%Ճu0FAϪSM„.~⇉e*b.[Ծ(fYxV־W6/YZYpv-tsk׮~fI_ R6wRteLB98&3B?棬X%2ҁ@'LSK87W:/("abܗnj/h44, B'+fCW`W!M:O4Z+UEIBMCIG3|Lx30c[#{|;/ [A<®cKB1cEd<ňE' _$V B\YVАfmmFCTaHk0riӺ_ EkxV ~MV6aJT´M*+!+&S>OEUZ kڰn1!rUVUºh*YJ9 KL:PBby ) 2M?~ FuCa%*[E%5SB*`߉T.]EFsoj`9䦢ʢFbƚ`#&Z t.vV نꔭu" P2*(A56fnU־lT]&B3yPsB4`R)p^9e*dɜp[VIf'Y]X~k;S^mY}';nnyG rg^T\؆CM6ۛ4Izި4Izs=uRETOs45^ UWzB=~}.ٗݛWW$9=R!3mFVe=lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0004-Arpeggio4.xiz0000644000000000000000000000437411172205155023311 0ustar 00000000000000\s8_$.!Sҹދ܂& ȶd4m ]KV+]||]^,Y*3Lƞeit]x7ף/ݳפ8?;]yWϧRKDTJΰ;}w /K?#_+ZOa@l5Ke"7ċ-\jIʃdP궞:B^ӐێI8C/;|LtYUR? }>?ttbE,]u%N]~QfO! g_2={HDW(\/q l<>BW/%j9gϛ3pdۼAz`b?ϱqMJPXx}kٌVL A'ml5LQCji4}RK@Ǟ]otcoN+kA^ڄPkK У^ѩ"ef"4U-] 2D1 8D,qȷ-4Rc?wL*c7b򂖞yf#`KR QҘ<9?]霨xBP|ZoćiS;~-wx(=ڕ?mbt'I+jRHh0t-g(F=xHI k/s7\"th+.๝5z;7HHӆؖ3 ?HySŔn88\nmس#@̓=$!a9ӹ}"~}K@!l4cGz׮,17Zvuo:.wG0 S7JyͱP 0H:̓wZTq$=~!YDk )g}IBGU'A+͹6S,bBl5?=BLִc!Wڶh rn5uU'u+#y5k'J_找IvNYx.NHw"|SCjU^"=(mFsVTתM~.W_٢Zt!lJ)N?޽'_gnyu5V+zt3c a#p"GgEeՎ֣f䐉ȱEbnڃքsΆڥАLXsEygk?y* I,w.&]y7ɻn;8nO&Wj:wu:/N:#Z{"(%)H{{۽E=HF$U=v0zQ8LzS1J"NVll #}8#Y d5uI԰[Z$j,Z$m,X8[Ygy[-cƞ޴7f*ٴXߴ|Ӯ)ôtltp6>cp2Mf45dǵk7[%wPlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0005-Arpeggio5.xiz0000644000000000000000000000411511172205155023304 0ustar 00000000000000\s8~_=%gI2\Br@:{(X[}I2eLk򔌽ZK߮]K}|Z.Iy>PqޟTGg*w~]>vqߝK\C"x4rRa~z;ƽ] pxD|,Zzإ8bb.;JUȋ2B G8\- u 2L% cf M,M@ıFkѣMXj?7ndv+0 7Ϫ](W+y'2bHl-|N6!RJ|]8 _d+pU1ojFqs3<%qs\3&: L,W"Sd X.} jtjPhy0C .YCH|:ݛ272V,(2,[y$ :N Z1:XIjHeUDhjhOr؆3pSoBL]IIY°]/iHb!>I."VQ=k'E!Y h+Xx51R"\.|sjw'4ΥH 54 =+.^o2tb`ᘧ~ߪu:5`99 8?01 c4L/>2$k) x,xeYj5YȟK6h7iHJ=ÒdU\ {ȆK>u:0\&># Gz[5vIL᥃X߮e, Mk;zJidkqd~g]tï՜0_"/g\v!&}>&8&3?OJ~GyW4a$^#@fRE!Eq'_Et>YDvq_:)^8(me4Y9~T)MO4iO2#ɱwIh,9t6Ӏ35yFfLyk CAN!n7sBӉ%yMM #o>TH*TU&crW9h~Tag}W0ai;F"_0cd}h3b}n2c;yU17bL1J_h+Ub ~ }k@_B?&}mNa|uV5`{/Zˊ}e wUZ_@_f@_ζ-W~kт;Q~>Z8{eUqk}n|ֳF]qaǏ@֏pc]XNcCO.~@52- i.rwa[6:%³ܜfHWؒ_/ AWšzȶ{> ?֗.zdvQlKvy v{w]ߵujrϡc| ~bR5/G5:SwCwa7 GK/ɇ?븈~#:/Vծonܘ,#^%Q:cN-L@Y0 ROԙ ySC'Z{=MRSuUIh< CL .`lͳz+$ëxsﶿLIB: [ fp _DJ>*wHJ&VPdÁdOʸMxht%0YbE&ম5ЃV@D<ž඙ר ]qXP=zQ%dnFtHhY gfozQ!!Z ! |7 L"h4P լ ]%& ɂX]eO,d%tZRs l9m¤EtsH5 k-?^oRt`⨥1tX'5r#9P1 apŋ4ٚx,xKYn5(Z0Γ^?.5g$=UAWpHkZ.È @#YVvʉ ~X߮D`ǹo(6uđ>e~:MЇ[=*΀FtyL:>lSacxۈCAf‘X!|&l3: TIj;4,9E4Y:v!M*O4i'`efH*iAIτ<35nO $C>/z̹g~!$a֞"2|IbG!_(tYDaRS"̄%4.Y9w4%)ЕkN -&EZDg% =)=&E+1QJ m5.j%$$䢼a kn5Vb@r0GV0GG@P4R)wJ594K改&P(g, Ү TV0K. =(۔p'R#εhN5U1ȴhTMإU4SՀulXyQ:ݟT7TB(EPm3~uZ)ɜO͜vʼ%MjaT2C2\ZW(Z7V1byZ:(a`2IO 0l V&1S b.8 P+@CHryML ZSZ*9+ M&_XP`ms(zGcnh!rͤ8!6 rHCn+@n!פ焯)y~=ZȬ5 gUfݸ66=| ŕV1W  }^ob}kg[8w}?iaCl(+=^_%+F-ݲ+y䜳.Qh̷{%^r_c;B/:i>yo~X^n;2 ^"4`o._z[ceڰ9#:1 E郗9k'ICF›ފe!]`ݜEV_M/a^;q.Sz*P6j@jj@j_&LqTS8ӗ.{@SLE֯Izqh^ RRgw~Zл]2#oNEv?1[hJqLD}CRy5'3ud@_`a4L;3NͺNH404òWQ<"j7d uF:[f%//シvgާЍE˖=4YheͺU+z(}zceo*hV6oG7G?Wc1h+g6kZMڠO[Ll͜rrvW~xbSݦ[,uv mGlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0007-Arpeggio7.xiz0000644000000000000000000000644111172205155023314 0ustar 00000000000000][s~_=EgvIi$EXr-n}!‹D^Y HB /~|8~xWc_efGGhvSk ]ag͂pA>]n'/p[Q#+AJ'M"tB؟E2)Pmj5nS{G^XV3%hWI7ɖOyl0T5[s?yar\o S#o°d~R;SfD0vn 8p'1ᒝ]>erey^-|^~UT67q2ml0!s[zN׽&eK?`J;` *3]nU8Uy+>;ԆBSXmqva[ )B5!cݾj`S I8J0}[.BXsD uV륟lsn6,zK ?>r0HipX䞉XA*ng8:s6\/ckSXR~OW'W^kl8jzWEѨ.tvJM;q4n$cmdU#m#|TGHQׯD3wT_Qt" v}m;4},KF !y4ClԬITjOe`͗z{ Ū33Pcz3#]$s(²ȍv} a@!,?C9c Cl810ؼqb as1gYW(1}|% ٨1H% K2JLQb ˿7yCgX31,̙`% ϳ9<)1}F3,(mJLafQb j֙bð{(1}F3,Tin(1253e%(1}I~6,ͧ-t~}~2ۻZ?ԔolW+E1_;>tT.M+Sm'EY#LWHU/ MZ5ډ+t_}}wr~!)eY l<\Sz-~ZeyKmԷz_GI5fsMX3^INR<>UX:vH kXتDum⍐*-ȳk0^CE6pEe!YPiY1mEɳ+[<-?tM ?9Ev:\dܲ63TȰ +IU <46%uz{y}u~V-/vXVjBe]+:ڜP+ruw:Nat5*ZY+(CT uCt,ZRNsQq*EvZO_N6@yGK hc{Juԝy1oT]LL.gz-lwI6yY@v빸sqE{./Ao%7ay FMĎ Iٺf'i*_/xI굜5\ҥ4 Yu, ̆Q) 5Z2%Y_$ۏ'qSJad'5ꨔqoԑ).1#SndrRY񹡒[n-%D&ៗd&bD_=B0!Tb 4Ys_ XUKXkAіslZ55^Unopܦ%#Iw+lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0008-Arpeggio8.xiz0000644000000000000000000000403511172205155023313 0ustar 00000000000000[s8 ߿{[JgpmcН{񸉁삓G۲M&bKɒ}~\.H=5>uϧݤwة}췫sϊv=o>p/>G%DLjM<)ptӝW#tv۽W44&Nj=Ah*ݱn3qFc.,ďh{>bx#^ R QH"8%I9W")q/|2|$Q4Qw4{CDlJƓݍ3`?ؖse]tf~9 ZJ~ o]N]+uLum0uDpqT2[+@<=m6^3$ì%(˦Ѽz1 !^ cHދORS8CU%@wi ջ&,2Fuf0):{;f-=(ްQG֙Tj# 2SApmv?$+*r])Ӣ:cn(6m ?;-?Mɜhg{GFi9/iytz̥:m_s \Sue۝.pAƐE`YZt@췵øӓ~lj+Kb@P[widbk"f?U0V*WMr&V\ŝI$M]BO5ɧYM2> T/w^L!/ӑfpIְ[CN }l&OK.DPr= ͉Y:4ȭ󁶳ad-e-0>dXe>>fd+hbF"V:I%EP1ckO[SJkV1c+JsJCŷ0oe\|+#m3n Wڠ+qU BE4Ty̩*vXي´F~Ud`)u^{w}m;p9~=vp/]O)9kqiº}j;=hvF}Y`9P4wOaْ}*U"7$-\rNh+X" KL@ uSOL@!kȱ+Nѓڄ/5f]UGN{Ö.`r gGݯj 2z~n{HDud#x|џhW=oa*ɨAz$3lbx7_dBͺ + ٦vv! A'pbB*OQX̄ik4}V^р|i&f zK>s (d: є j?Мg d@ӂMNPŻI_$5Qtpbe8 =Yjv(Z_i,B$˗U9 HO> <=C$蒼 lc0]%^缞q.]v]~  p'"a1?8VkCM#PK1ZFYȱ/j'14BJᆹ7v[ uHPl@߭A@BWnݦi 7(ok42l'npvOWw0 m.y"+wfȂ|X} XHj'HdbS\Xj|OrMvK915%A}7tG7㻾مOb">!uN" dk2bv2N?'6Ɋ@ĝʡ < T ![hk)D je'⟧p\rYf0N#WJ?ndAS$//,~mƫ ZB.^{+'L9]^$x >/e]2 s>],BIKݰIQՅ2w!}\I/R.沃1 1!ytRgX| "3ay0b([r(tlo_R^X+UHhJP UFSRrFIMCK=;V Xg3P,hy鉋&3OǣʰuANdU~p/~z2CIRL]D/s` &XImqD rVlϬmlh?l<hUxF.ZFYD?@ VDE*Uz\ehpiS_7ƠV53&,7;C\,*X0`VB.rmO@YL[(!T0U20X;6na+` +"޷2ڷ1D,U09䪢ʢBCk`{ÐDmEQ_ڶj@hUl$7Wq{l?ȍPԛ[FiXJMgPe ZTۤ_]4Sٷ*7$*.=Sd;[p;W1NQqH~oE]9Y Qh^8\ l4`ߪ1oMRE_n7V&gVZ֒*mO ,?msp@}KY rKo-79k_&Eܸ7k7Dzwn@&ި;W~ vWo[Iy75fʷ˴v,oQJ[*zC_Y[^{=h kՆ>Z{nz$??۠n[/>}vEg{hw<=q{GԱz]2vgy~@pU`YrV\,Wz5˝ ITr,#wvY٨.KD.H{s҃`пgD_">Ni#1*Gӣ  uS|j<Ȯjଇ6 o0 0gP;MQ4|x_&_hKkaɭLYFݎ %hza4=Xe|/sKl=\SDZQJ$)ض l bzlO)%Ѧ?lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0011-Arpeggio11.xiz0000644000000000000000000000413611172205155023361 0ustar 00000000000000\]s8}I`&IM`lY h,[Yۤ~e˲+`t-}Ib_]IKGR><-$=WGB'чݸ{ج|x췫m5mhuxw } ֊|Q5M{_K{ߟP U BxbO_2٪nMgT?z=Ls(z"ђȣaFŭu 2CSIYڐnڥu8v]nGߛ9Ujw78u<.D{_B)f~P{?CMB>Z/If#dLb^s\Y&Ĕh5#/Z#6PtTb"!e0閉\):)=eb]D:rx 8§0DZ&?u3f!!-}/NLQ]$bpFأ x"!(S?dNp(/$ܣL=R!h#Wh+eo밦[ty*~=^=[tWbdGZUĜH__-gcϧ>Tk %vb9@"aPG\2EF5&>XxhXq*Οw&XG7ïƊ']E^åm nҡ>&8"~_ V4[C AQl( " V_K״4ejڏ3cM5<ϴtp11/()BUF\yK3(25yS š]M - xy,0D3YZ)MQز;5HYSvxwÛAw3dI>,MZ|BTW݂J\\_69%MUFT'_#)ZJ>+1F9,ޖ`21Or %1SO 6Bv szwǾ7^%mllh4N lDL0WXGX|~Zq[ʡ`msFpsCƨ|ϝMv] rӷMrK|^ru5 gf|0$sà5.Xfq |8`(dʀl~1{ knfc x_C^o11*'_V?zz} u^# _[Wqd¤n'"6>yVZW>#W} Hrø?"oyláyn˄vK5ʄe9eB2\NsP/Y|&inHrٱv h]zQ^:3]ns9(AA." ;|l篹B1@ˇj̗P?8gm3f7~dJY\6ff Z"unTwB3Um1>Ԣ]6\Tc=Z{d'}D=gDvA!ޓQG[A7r&Y[顲q@%{AFdoo*lM3Gjڝ +lp@lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0033-Sequence1.xiz0000644000000000000000000000364611172205155023324 0ustar 00000000000000[ms8_{ LG̔r@:Qlb d"i%;$M>ګٵr]oH:lZcB-ve~1:5>^]v=.ܙoG>0 ġ#qUxC OoLpn0h:, yc]rٸ\[PM1{JF6塿&œSe?!ױEa8)9r"'rhKhT=*܆l "%N50$K^:["шcN-𭦪ƓbvkN3?l "O4{̰Cfnn\<7b(IpG[nq1NVG%r=(e Af4^ǎ}h%Jk[fĤLqYC70sPE =N1zPFheEA@bJۻ4B7ޚEY11 u Y{mz(Ja1VhUjT,rU"kR֖ ԮpzԱP!z ֜|6ow e@|#n9I|Y8 0-dw2̰5 8YzEl5!{/kv20Bcl!Q^/ϻL|{ sç}կk 6 oj}ތ;v6N r!%FAz!MЋ]D.Sgnj !9lg5Z=@`eG#FXbW@ hfyoN_hMrp>t $ݎjRб,]pl!eN+},D%2uYNQ/цKJLRP|tv$>Gh=#] &CMKƜHC>OCvu] /KzR USr8?Q YI<ǟS!gKfR2~8T-.z.Et>H'HQ?-YtJII*#V(k,QU6 &VMD_U k6S o}pgV. VUX!(\aXLR]ݒbdŅ*aQNnV!>G5C ,BX1TyXat:=3RxQ&+B5\9K ђY- # 9 0[-UQƗRJ+oh}n0w'o?Rmm -Өky}Y =w@757誥RU (7SJ=dQy@;&_5"FAeфL#Хwv ]+G_+hkd,ZsG 9QHfׁMԠ;O;UsCw&~4X4$h+q?߹y#tR-KRT&yfqsw_4ًF0Ea~MAX!ԇi/ͭ5ׁ^=u`YOs\4ׁz=ͽATOs4_;,TBx84.G"  .jJ$*5m}*R@#oZYHS(72Tg@ra94urgh+9O3,[j.2V5-"0H)=_eS졄v2zr#z0F3h%,Q5y.co 1lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0034-Sequence2.xiz0000644000000000000000000000414411172205155023320 0ustar 00000000000000\S8NBg9H$tBvJI+ٱhSK]K9d[s>7c<7ã^W[ߍ30Yx?88RyG6zTj=τ`=c#voqjPp2G1{uWyvpo`Bt Sm4)mSds0`:t K ٖi!(3AVH Gk!/s XD1ID Hm96XceXtSVh-F!u .|f8h8&.Zmz܁>>Yw&%欩>KEu4E,'KrI]`/s < 0Ja1$AJwQm1jZѲZHhogV*rqb.G6~!(L%^@ ZFJRseGƴ WX]8!&ZD)SbDl[P0s f?/m4S&fIRc% B )'i 7b+mr9$]XRTqsLm㐲6:_l,@Mʤ(.$}Lo&eO/ZҲ;vQf*nN( i&mж@C-ү#۰4)t3=UQ)D($"nO(/6h4("&q#Нac6?Gu-TLq^@n `E0GHhn1 }{p޷Csk!H8*"_cOP5dBq8P6Dm!~m¯Rd]Öq `Mg4uUn `ZoBO=_dUxGÎo`{,,={]݁/$vMl `2hB `')?O۰pl[+`ˋ pHр=)_>|,gqwnޗ訬*SVt3"ā Wsz3y8n 88٥d'yvUS.dzN5=l8Tllɵr6ɦJCp桾»Qje$ W)nLQV[2MDŽԠmHlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0036-Echoed Synth.xiz0000644000000000000000000000407511172205155023750 0ustar 00000000000000[ms8_= 0%fr@:Ql܂2~͑NOmJ}vJ\}|]j[KƇfF}?͇Ǜ_&Ϗf,|ynߜ]G5zLk?qhL`=cµୃi:?'Ӈ|46CϮQ&>Dxԭ7lC`ft`,VYWvlG)2.dN}!rxРxD b 3t40 K^:Y"ֈcێ-uƪF|`3?l ""OoLk6t_5b({~rב!}I?mHf&w~]"h|T䮵kÑH6,H֌FsfMPpc1`d*:}%;`P(p&Quƀ68CoJ|XxfI3xx͟rsXeSЖ \ ڒk9dUZ"/B_%hh^.pe]ruW,.VD#{xK yG/nĝŃi'~h]xhg$t6Efb#?Ld/L7YFYsϧr(aYHI} -diķ} Lz = nh]'=ӯ%sŞO_ƆYBFKWy#D `"%l%xQp,C R!\·LJֳa`t %өIϝ 9`8geH^v|N"p@^\gK8 S9 ta804ҋ[_9_Dl0sکHO+I]Hz9Ռ[$E}ȵeS6Q#x6u6{f4%-E^W(6qvl2o5S"%4ݚRL-mpP ׷NDCR{%s,Ĕl)s8+VZ+չ-b VcSCi|2 5~y(43ЂQw+\&yYytOOހhS7dT4uܰv6 n}p+ * /oP,&J.nI@YL7b;*QĄ a}Q(ˆm!6G1} ,Ajjnc}6Oq-ImoG⓬s/hK,Y-# &p.a<(.7Zi[Ne 6_myPjso#UwNu@rFQm-ecu3 NfNv!J = 1` 8UYk~aKi$T9 TQ 'ADmߖj-Θ)e1zф$D-L+`ae<}q"9izw9ПQ^(M b#48ye{s²+qK5ȑV䜈C5c w񝿦wԎ⯽^ <6ܦ_[s(&;74U[Wo_N,E9qpnY>7Xǯˊ(Wd"8UॹY*Ы ,ij*P9턖 j^5B *Evah]oYx_${s84oQXyȏc!^49͎ngDM] >j.uT'@Ӽfْ{8[?mn@)&4"{qXHpnS$Df3yΛC 'xpWK"j31!*ON\gW--Ms $o` ".k3!$׈*vүK7lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0037-Echo FX.xiz0000644000000000000000000000370211172205155022644 0ustar 00000000000000[Qs8~񞂁@I3\Br@:h[X& d,[J68!^ۧZvWG$kXo[#Bû|t|xo7O:t~ >s}9ՆxI~lt;='!(ɻb՚=z&K?F!G$Z&Z&f:,đ5|$QI4An=CV3MIl>'s~<ݰ?ؖYR6mg>5wPe5;0V$D|MH ?V)?p&@AwYT1lZF}}M~Eb^u"Y⋑Ql;T,v &EI aCG);Asxyf&? -H9ix}{5]cb)V`C!%d8^Al,h-hjM%ba#!YZ b'R"IM%ԃ).QG~@=EOI(Xc(db( 4=78-d`2ϔ%C\{S`+%fEY*Z +4 ֥ N' ;/mk~=S^:57u:TDp^X~kYI rp)Fj Cp%kS%ZNf|}.Y՗@' kx& Mŧ2dMO'QL^ΊX¡ S,yRVekeٯ9Inӂ@Oϝ͒4XQGzΣpd_TDP)а(E"E#}Bց.J"| S ҉Gr,Ƚ{4WHMFX!5]V-kFԜUI͎HS:V񣱙 lJ< ڳprah`3s$Y®6Wve Փ8:6K v<5D.]8b( y+3km -2Mc Oe5fv1RC5gZV6\T:l+$Jec +S~& f#=U):!c`ZU}ŏK\ðpPV6\:PBby Ed܏WB6Mg&0 a ZiZ:Abo;^!_SEKoar5EE /65."WzREYvi=Ն3e}f2H߷狕1CcmR2"WƝJ8Zp`o 2)gbs͂+\|N癒0攝%)) R>CՁ')e193llLaw6-oeu@׼.9[Wϔ>AD_)fjT}\wU_۰E_AM.0ju5~jfLVu*yvE'/H Ws{v!֯2\H~::Ыg,Yz:PgFճzriy z=蔦:v3q{ flò 6py`Æ_3~"G!k9hPdj!gZ{P]XD?[UDu`-_YPFZi'=M.x4lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0039-Soft Arpeggio1.xiz0000644000000000000000000000412711172205155024206 0ustar 00000000000000[[s8~`yO !0&0e6,v_4--^_Wd ʹk&k`)o N?yMgoRlӮe Rmf 1{A,_u8/,VayC-FR3zV<ܥ>[A+!v6<ۆU" x;T#2jpXUߊ.,@fRE篨3gd 5PLM;(N@Phf|RUhݎU #r O+ ]S OB.~so.ǼYHH%mV=[h4Z- v :nh ! ӟ=ܕA1K}y#8k ?|ڷK&36.Ư∍n∍kf،uVʶš:GR/Re?#2-DAH;Kr_Y!YNMzT DV+bp_8Q|$~H--I$Bfj'2[j-i2],t9CL=.Dr£rT(ܸ~ڱ)A?y0s99Y>M$*;vM8@ɤ^2dYE(!~rHQ vU3PbG f(^(t9fБuF8Fa>qLץniX8aDa;D!T9QgnXLCz\hq: J\tZ'E:XcC}7i'fvˠ](ϾH'Vy&E(2 5;Bt)u{V=2W%u?,ߟuN8H CP]H/8bZaJ& k((IjuhNHYH hb?C0I9 mp!<עSMl /YZZj?f^?Fb_#gKƾGWz=ډ&19O ڸ] 2Bnh,b K0Tga8F0(@\e?E/AkEd l+l9MIEM'F'iY7xHnZKl: #g4)-G^W(5q@eb6M,s4\k\C2ΈNA5+ʦ{YBI:1UHFOsXp,*I%JQT*+Bޱ w5Z;eV~O7jrUm)*4#-'Њq뫴v]!y Qv-tÍl@;vTV5{ذ^1vu0=3+* V+~"(`!Y]ݒvT U,5B[)#t!6?H5 ,@jFI.<+a"h*kŚ$ME+ME>e^Y%ZrFXqy#h~;N#/š(MTemlzՃ FYYD"|{UƉ η_vM!#tVބeMt%NC0:bx{ceĩ$q]Srqe2(7:;D+t))ivMݵIgt~aKo@64>BUj_.lP|;z=Lv6y ګ_˻yKPΧ?ݮyC,zYG{X.~+{Avαa8in= k4e3M Ls874m:!LAx6L?; Eza^jڷG"[[sXZ]^!;N/=α YOSQdP u0S|-Z 0i*ǁDM dv/=b_&UiV[ݿF7lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0041-Soft Arpeggio3.xiz0000644000000000000000000000370311172205155024200 0ustar 00000000000000[mS6ίHK3M 4SHhnz.]pW_$d'^ػ+iٵO$^6fP˳l>̇g͏WGGL_:Y8:r{.j?qhHTqJqhĊi&?'ӻ|4|G[7(ve~pnhBqHl6^)-&ےULt?̹92;.~Fc;=q5$}u"D O0 bШZ+܄LłX=$ "EL/M@jım{𥦦[F|pgY0dwI$W3o5OK^R(ƺyUĕ$m|R̓Y>M(*Jz6PYe Fe4w Ǿlt#ǵ pW#n`0PlFFpjAG)n6T }Svhmx(wwM|lz}k|L)C[KڳhCQ7~Lb"tJ-b#4$7Yҩ2); G ڞKIežXsɼܛ*d!Z|Ieb"0#BN|++zXFYpePNfEY 'ieoO` vV|Sz&VwT҆?NP% N; Y= BJ Cl̓!ډb]ΎA8YCHJlUg."hJs b!N?2a(g9/  #[gٲ,_;A@Kp/M|Nj<,?T&2A('k&e6>!wPCNǭL0ݲ2,;@:$كI)7vDX8"K/(OR J:ON[~5Y ]k6dKj馕:y({Na %Ӄov(sce޳#< q"OB>ƏFx'.@:Ss6ך֋9U>MFf풺+_A $((yZ {a" w. 1ce,[5+\OǡBn0ri̮GR.^VSGV1vVi%)I%BRdQX ϝ2dOTT9L[uaVc\deʂ WX6(J!a@YY/f2ՁBKͷamQϚI_X!!@+lKLm<Rݢ Ulp,41Ȳh!P+~0\j<@O(]JYot`E+/h6Mƣǟ=_e[tyPhso+qVw63ahÅvg,Jg )x&h}e[i{) ~OY_|=VTi([8 ">G]xpѷ12/Ιyf a+Fe ÷oV8/&5L6"~&ZM1+wJPwʹUq;*v`N_%NM$r}5]>=%_C:{ܯɭT"ދO^}"ڭ=oď{V>Vo KyEu*d>rxiU̹Yz@:pgY>Y>3Jmv!;loۈw" м'Q! I"> djDJ=[_֋ˌn5?ixR/GZꤥSa-U!Q3/ҺrxԲ/kRUSF~j-]XRٍhǕiWD~`sز{c[|/ST]ldi?N,1lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0042-Soft Arpeggio4.xiz0000644000000000000000000000420711172205155024202 0ustar 00000000000000\s8~_!a&IK`r@:{(`sdlYJ$״ᩭv]}ZzZ.*$]߻ZپzwtVtoëɗn埵qqp1{GK*zyxCWv]UpRAo8L /Esh8Cxӧ_Qٚ{gEwQ;Ʃ?븈>ܐ徹r# ъ(ċZ::L|$ADCH饳( 8vck>tMuR0oI 2H$˱?*`Ef3oR(ƺzY+CI?ZHc0џd\+ w&C(e0-{[qqN`xa! qM=U02T0 t=􍬁FV $"_nզl:hk42dh@@+;ۻ0=M\ {E[K·hCQв7سƋxh^h1\qT) y Z0S!q=F0DWcݛ]W4 D{>=&yJ,D"a]/PNJVl⠀,y^@,\ea D|* u-lA,G,DW|Jͯk8N,xff%[vny ') BeƋ4ŚB.^nsbQ6^?"UbwF)@HԢ7u\})bbCjt}AK'?.!tɟe, 'ܷ F }WH$ɉe'RwC Ҽ׿[ԇK=* CLA}8"3?(.R}GZ+N ˈ! K(7]:,"a-bܗ.j/hv)j/JhKMIUaeJӆΓ)MIYIa$6 6V3Kfpﳠ11f̨;:+nIU>Wݝ-?YDgkw$OCH/Td,)Ʃ5Vġ%6.Yv4~XpPW5ih WiK<3@SMWDI*iM,J7K!+RH>4!ޠRLjZ.m[̃\4U4;~$(cЄ+(%q7ɘŅ Se)@h |&?| PX04l[9উMǜVNlXܝjbMe B4MWKqxeVEQ]ʦݪVFWu~v8_% |beؼj T[{k4]7>Rg)X-m69&)hTcv7Q0d5Lo[.V 6Q(GqcE^6hP(L OaߧoҎtdKYڭgi]@+^)w{=~c~gyin ,w dw w w|CfjKz,u^mԯ%"=\ Ҝu&!?Η Ij<ӓEKsjܑ ۪I{k,Afud5ONXAӨegiuZXi 3sZB=@BE%1Et2*d Hch(uq:p2`̀kv[}dFi7M*örUvg`f/M aHk85ĐVv>/?kjqݜP_@!GBlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0043-Soft Arpeggio5.xiz0000644000000000000000000000412311172205155024201 0ustar 00000000000000[]W8W;XDs9*sv&':i*~SڐMZ(g+}&yire< t=zY>T+ڞea;nU?_]v3|V^ю_|/w/`ZK'Gr#G6 ?Vq2Ao8L=zޢB\V;7FsaE̞RZc5qwF;2=K"( 7Z*Íe| Q/ [Ad:%CSIDnhq8Ş<&bn`<=u2 v'WcoU:Of3;"P6u*-S0'a?PEaKρ-A(9̋XFfԟt*sY=I(!?.H\1 'v5L2P#=t)AV FVAH"O,ttrAyܠ䋖a6pto|,6Z)eѶh!lDF+ĦʒUbjshke-Ұ^SDUd MMX8XzԵQ-) C4 ؗ'Z@X;ڽw_'{nI$"aFإ8 (rL& ȂP8 HK [zfBd ,A(0Fn-v$=#Xyl]3zV< 3OՒyПvS99I(0c^L=dR⥿pT%FN3?>,pQ?ۣ+w)%G(آ7\˃b*״6LAHᑾV 5=B:R9&Ff>3Շtw("eYay ˃eyRmd*.5g]ٙeiK^khcj߲mH^uhm/C8"3/ȯJ UEYN4)V&ld&m=`.%zQ`G:qF6Z0uM{+S)N@3A}^n2bY+U*U3*;~PY>P|uG¶m5[h|8tČMMc_"4_~*:ЯǠIzt/Ў|޶NOw _U tʏmU^պ{x\?~#|3c}B!nU¡y~˄6I5ʄe9eB2\NsP/U"infvyz,dmm%Ld7A^OCq.Rj8<CsT~zhB-KG ص3Coah;,;jlkYz،4C3~T؎,ezNV3y3{ xmZi>n(G&1.m6"UBN$^Jz0ceiM X͊R"=/Am]9[6q惞$I%&[({?lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0065-Hyper Organ1.xiz0000644000000000000000000000430711172205155023672 0ustar 00000000000000\Qs8~xO@I2@Hz/d6i'c˒ViS{w]V\|x^KO\^rPs\:,?'w.\?wJiqF?'ջ ;Y/ϸOɃ*E8qi`ŴtW2wû7賿G7/Q M Ⰹ|ŞR\auQݷθ3> "( RFنJ EG. B 46Ʉ %CiN qb=yMħƬ+zxpe'3$4Qf( )E%&WYmo 2P(C6E*Pf]|^P1*RsH$P%K@rFq:jMP8pfjא& $q u\Kpt)J@({v Г`H)C }?j&s`/}w?dZ7g֖;Ĕ2gܳpا2U1%ķ\Q{eLҺټB[:Ӗg_xԵ-( 4Rx1BྣCxb!Bs#;~ED4nhheqD2T&odNp T!LfR6 ƞ)Zr=h#GlCez6bېMZ7ءixŨZ;HTN?Z5 (i900%!ZdhO'Nj(,v5 s贲DDu˸9aEu `$[VU%Y7DP0J 5#S:jIPnWTˆ|* .0X"nT1V9$!A+ma¾M'”j}#\RS fP J&Zi;x |-P:)KH cO%ݠ߻J1(p~uX7^u35ba),E/]ϓvSFMnkm֞!AZ*8˦S(*?jvX=(ct9te$إ)ϬdZ-մCkg,JI rƚ5[h4YpkʵlvbLe0(dgT3}2d!7;&"m$"Z{LDDֲ{"([KD^v$ZUXkZ~ _AW!|1|m vn?xkuc*uc_G?rۯU48lsgw^j~~V:lTP~^x^痴27;ي|wkx^秣yN͏8|+;^Y=xqNf ]Wv93ُ.~@p5,GE`Ys\8z1μa,ƹUۓk(aM #ZO {r _4p֣AmDpؙkC#2 C5:.+̅ 0ncLdwxy;Y{G ON{HqqɆE b%kQ.1-lpf\CM K0oY̩f)ۆ'-s0L`*#"wi)귟wZ'ڰ  ͊]-}TƚL?IOeairTZuK.TQ7 gҟvk{S?Mቜ| - SRQ(PFߝAPS6 ѩq2;rCMyBw`Zm."ͯZz oWv+tP`(sg8h<hḧs?S Ϳ {c[mOyNYpy~d≮!&L zZ6Q Z.ˆ4<^2aȊ LF0 'w +5]E0@(J.+PVMT&tt66d_5Uq: }[F~(YgL*Y ګzȸ4X0E1b]M-yuXq]FyZH?&p1Wѩ[HW,V ݖ,(#Mt=F>L*1 SW-Hќ-9ͦˉ+**FYA`8vݬpu1MFκd8 ĶD4!χ GL'S<,x!+W8$֦{H}aj1g.TvPDj{C>)=cZYtֳcW:xs_DblܰVV>| I3b4H_ʃU'Vnb_i1)4wtQ e>ÀS".=K@'ꍻ_룅 q2.+wF#C3oj:ZޛEFbcPXU د!88f++c0{!K,b|x8,/Nq.r(&m}T1d3jpN9[Q9jp-,~\Rb_#:\!]jD,QP$9k8]QZWFv%NjcTN4z2 ԇ:;Dpc7eQLp^M5JᕛfJ~pȱu:O.0_<sh/ho;>^:CxNDkMPzu& 5Շ&brfͮ'3' ^ˍ~#}zbm>tI^ a-%VA uT^Wf$'X[lΖmXm+c daxA2 3f kK`퐝-z#BP@h[|Udk :@U`T^K4ŗDŸFFe:Fgu| VUPv~'`+e}^7FrWAm Bv/)lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Arpeggios/0068-Glass Arpeggio.xiz0000644000000000000000000000416511172205155024267 0ustar 00000000000000[ms8_=%@BLr@:QlnA% dd[J64SSZKϳZ矟#ǥjP˵:Oz˃߮Wow?+ڱq!<8R}K֪xP@p?•GU? GI8`\wQxI.w`E9bEĞRZc5uquF;se%~BKv{zkH 2@CЏţU 2KzñL%CMmN&7 ض]"b\uM7R0oI [2Hb?8*#׸微^nؔ"!+?|׌oz>~| V"$̏0~ Ջ ZGB/^z 'L!:d$x KSg.6\t%O hbJvu%6 #*ݮkr!4ϪS^0e-/, FS ٯy~ݖb#3"QL"ȵ7옑}ۣ!07AH _r dP pV6cxhCL:Z@2zQcG9dlm_:TNS&hJӄyմ_fCT6$jRmX㤑zf.&(MQw<tW< )<-}`.<s2=y> \e*iȘ9V3C4Wi @q"ҴK2&sVInq,,M&K^+Ri1iZ&s4mӴ}.nTurV[Ԋ%V,0o/Ye1Y#2#{nqVVf'Re}+:%r[|ZlZ`sW$?kɳF5tѵ-{-ŧ r)]k۔twӼM23X ,i.r2P/]D4f]=_ zD?1Eu&P:q!Fi7kU!yWUC]*jZ|Kċ8pWn1]8,ŐaIϻqXD0ލhJðvј$iP1 Kz#۞k [Mj'zmO`'赅mk{mۼ +zmk&&l/ ؙde1j MҾSyi;n䷡UR6=&ӣU-sʲm?4G2l|[;lCwu܄PCX>X2gv\B}?`$P5c64ӻwJ *g07axF~)YP0\)R f 5}sEA("7l'8J}?%s` #bبs{=]U&Y+ϝ4"1DO&^@7Ȕ=={+*@$ Kz![FV)iGcqHpb% X$d2Yazrf>YY_(H9I&0v H!h`"^䔦:3/KeȜ>J<-kT}軪ߞ)NGvmXޖin1_+BI8yüSdQ^`)"ahjӹ%bCC|>Z:LrHE$=3@V!KE4Bd۪3 ^;u\aK=l_Ct]݈J;F7ȞVϊ]u}ۮMܮuU,fyd_T)Z*Y/>]qkX =8_@c}02l}ZIM{UDsg i^Rz&ZģB]Z4_sORXM+bžyEk&x`iVH/m3׶b F {"ǖxta$)-pqFĘUg k1M -2M1em5 isYek);.=5|hU~[G zCRN kU_lgc;z'$W kdU kHVP#L}`D5$F.`a,A_Klb l9/TD+35Y 1B,8'r}рEFqLݖ&)؝>ǶUUv}Oo&рO'T ~.J㓃J}y^If6ʨ@+[I_e~Bx㓜 ճv{dC>0o_];,t.6mQh_Z3sn.lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Bass/0002-Bass 2.xiz0000644000000000000000000000346311172205155021446 0ustar 00000000000000Zms8_=%&% 3I:̔r@:eE6$s>5Wg~z㻦@mMoIl=۞ŋ6$V~;w?Z쉃'g"ux # 6&&?'|40 wzD[L M?ݘ>~Ee[Ͻ zޣ97TYǃ/slG$*W;E / #¤zUKdq_UBBCH3K8c߱j:i4ͧϏxCL!.D3Fe7[0$6@{/XpwGlU(Ϸl=Q,cñ *%%Å!pK=GIP`m%oHk 6 > 8N>(p@6{}Ͽ(k "Jh<(M΍+u cBJN r}![@!1ր Yz9#gUK XLb\*Vju[Rc!ĶaE`qo,y5&Oel#o@;IzVv[".ddw2Ա7:|w 'YCFoWn-9IR^_hC5BazXW3sbJQ ,gP3Bv1Y p؈ĘAb0exEgA]BӱrmYAf v(,yCGP 5IʢoYTmdCCc7;VI!hRVd2RA A+?,B p\oIs)YqK^@Bh(?QW<6J}Jw9k[q:5M)G9H"yMQ3.ԂYɉDshUK lCىH]#70jMd5-$_u2꛵{Yyz[.#?FBE>}98@6J_BTx F1OˑK{2E=& /%muTKq˯1`c T L2LgJ)Z>neL97c(Xa(XaOA ZCa֠xRc)*+ ՁbB[sF&CBh#jKeaŠƖB( yXHOEXY9`[U PdXq}4hnZq9 қ>Nƣ~21F6-lfI巕U+Tr7Wud ʃyR*MR9*=vLU1Es>;JʈDCʇ/BgB {2iR&Ñ4v:ߏ蛅E][Uv 17SWQW|ΫV_j[^Rv'T/İg!Qt>Nsxi;U\z4ׁe=u [Os8\4Hz蓮qb_tnyD4^rt{`f ϔ췦TH஺{1zێU7Ы7q_Ufz}/lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Bass/0003-Bass 3 _analog_.xiz0000644000000000000000000000606411172205155023170 0ustar 00000000000000KsFZv Ye;HTEzES^PJI@ 3 do==懟ON{xxsvNO݇\};m+>~~eTaştI엣ۙy}tst1'k+8pe}3WQ谣F9\;zalVa9$Y,yIàFU VzR_:mV_Sًܲ'ߝ;EW; ]|]gWu&,x?bAg-}$e&zOMU;% ,O"puPt̵43EMYQ-F>f&ܱY:VX{,]ϡ.Q4%{#.YmuNNU[zSV[QG&=A;_VVuS'ܩݎ*pLUӨ7j$K$j/4Ad31\f.*kK7T }ؐ >YZM "r%6)LqOA8yvyhlO\THvbӊ&WGWtƧOx uN>C]KqfX͏ˇv0ܗi/rѨTh4 Z5K3QUW]Ƭ ;NYtw1hq;Vi\T8#s3<<94m{Q9)R16/,a(k0tΆśM߯Ύgoŗ ~/tkJYE"q{-i YRJHI!)sR%]ߋW_ρH ?)'__wR֗_n+ZJ,OTQt5[?j5剈S@ZT-\FXC+V֘7rla}ySMUPGwQ䶫MW-k. ,$4ka:rL,HEduiy7 T]5.7tc_n..ώ<`&U$fRNV_|?YF6ARKDdzd2LJQfZOW5=L^{<7puw^a|s_+}㾹,rZq_ cg5Kݐƙ"șj],tkO: 'EtHwvA;µC6U5?AVg4v ^v5]mmWsv5gN,v5g/_s~s~U}V:B+~(U׎JNOgwq`T8K U׺W)F,1?TTnt^o}4~M>\&COOcn0}mlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Bass/0004-Bass 4.xiz0000644000000000000000000000345611172205155021454 0ustar 00000000000000ZrH}W;Xl" * Di1#tdKm*Sb}t3ן?M.Mb]-m(SrR[57d[T8U),Y *b1MmXWf0|X =lB?}0ǚӯTҢm|'μND8"lA:F;-dF,9^|q@(se"b-EkĿ*Jܜۖ=w7~^mos6x:D0?,iepۆ$GHyQ |hTkh6 ^Cb] '{)G)F.^D GcBJS \ j1=2a#c5ˇa$ht;JIEDˁ]rӱmYUB*!Ee=H_V#rI!,Jk6155ީFN!UR Ɠ;ڈNveRJ#\?|Q)$hS($)-;m:IO }ȹ$֏suólԧtsߺSޔ(Id>)jƅZ0+H}jipB}L=;q:yf&VMӡ[ƜHK&Cvo]9`/K OBbKkd=GÈ]{N9 Qee<[BK;k9Su*t`#O̘ȥ=[ 'w RtT6pLd :Y%'vZGe $st|e-˧`"X. V* VXP7㝗R# c@1~dD&sBhcjKea ֖ Y|AO X(+25:k6 rQ0b+ a@|+-/UQmyޭY+n9 _t2L o?Rmmq9V^h˞<&~*EꠂUҞۯ0祐ˇiG) OY_x=ah([; @\g&)nW~"#X7nCS$b7&7}ЭR~basjSy5ȔrlW)etr"SzRBrN_jO\]a< ~TKhKebWW|ny$^ٝPnw|;E1eKs/:Ы,iz:PW#if^*e~ih_3^•.hr.! UwT#Főgn.M<6_DյI_5.lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Bass/0005-Bass 5.xiz0000644000000000000000000000335611172205155021455 0ustar 00000000000000Z[s8~CIL%flY h[[,ym9 ~%|lg7O!ѹ;ǺnPl9OZG{cn1:>o}|ⷫp=k?OGwP8I̸HI-m` e 8s_XPhqNߪhk;}=\<PwlZUvfT!Km;-˳"e~OWR8g_28ղbp-_*nWDh| oz`&@Uc{ÃH\ 'W!VRUG h J stN{)@$(ѬCZd]wT@oR˂Fkn}a͊XFo`jҚd0Z,tL[m[. p|\ eU=gX2Dͬ ﳉup TXLe-]x30knYy˺9\%U%'|@ YCp2}i %jZDZytI"֋?g͋z/׉e6\l9vKD"\HMRt8PD N #]@F4`Q,EץI 2*v,k#;'v_d"5>٧zUkdY8beI Wi2+Zd{)x'ꮯPHuCYO3*(huZ)ӗk)T66ҳ[oX%dR&9T^<L-z0etN2SyR bn_+߰x°,qRM,uBR"uC*Z[&A{>=h3V|#YD|RtA>yW3^3Mܲ&.یswnƹ7| qgm|ATh&zQ^:sx$ųݥ4FptƠ)B'uڿB|"qտjQ"p.lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Bass/0006-Analogue Bass.xiz0000644000000000000000000000345011172205155023040 0ustar 00000000000000Zs8_$ f\9 h--l2Ч N\.O!j_Z7=Aai|8k6||xzxwrr`ҟ}4mq϶gb ;N=&{ cNad"p@xۤGdЛ&c_C}nAd t!)-JY?f&xM{ܜRa>ϱ@d\t(H{jhQKdq+\h"QHKk=uB~!Zl;b[MET#Ƴ3g?t4D2%h0tU`ݴR 4uu{%#YlTXxX%}hʸy-sJdS'dYhn>4y$ap@R'fa/I5xt0Qx+)&"m@|.0ReG7m!UrSGAin|[wr1W\)Ao9d ֣J P!"R#dᴺT*DIRtKEjxՖ6c!ĶaE`q+Յ1'!m0"$I[ IG:P-dFyH:#^El=`-{kNPy _τjNu-o$u`~tR_Bem^!z9$ XQ]@S3^:$֕ሓ=g#ViHZ>&,s!s4S'sZ?lDb5+'0B@"4:JIIDˎ]rñ9iz*!]U"(,yՈNe0*c %5BYq.]$dJptO !cH']Q@O$h%SrΔ 9qӑ!+$AFfV̸.jǂ>uQOuUӔ5j]";ZҤyzy谄?#1`,Ģ55gqo4r˘)d7kؕS[Qc-maPLY v$KoN>Qae8[BK;k9CeJtj#ϘҲҊ5GRt\U6ɨ\Ay%w^").dGFCL2LJ%bk`;ϾHh.V*VhnP8(Tnɂchň*Ql@gɼ蜣:#aPIof& I!nS`A?Ke"SB"҂FC@ġ"R%iz)іWܲq.7}Gd0F6-:zV.O>bd ʳPH`P-H:aDԒ30Bќ}yu}l}=AkSx<ٓ$^#91vbzQ޸ɲ xr՟ #kECr>;m^/5$ FyllK]?uҿgd)"hHċ ǣ8L|U:5̑PBIwҹAnsj;i8&7Wh-DrߥhI4NZ$ʢ<+w?ubH:@wcSa })VD r!~X U3쫆6R\"%ۥ56nB$,[# JV!!b%q 7SN7)hLf_5@,~Rr8(M` I]wCZQu[#Xl8^&H_%YwəXIVebGhlJ-gQD YlG_Cw2fĿdxi~E;8(`72XN;' tKBd4q/eq(K"c>q:z!OoDm>}SejcML[؊8uhq`Bp9͑@Ørh4T/1m _-81UpxJ}.[*U e:$.Ћ+c..ݵz8N@È$L6:JŃJ-߶+ 4Uvw("eՇR ,<(x>#+weu*ŭB0^E8`:@ѺR Q EqhZ*%'8)8i0_N}8Ώ3Nf[Oas_S^;RԴULe>*Qղno}',W+lU+{D 4RzqXrPV^s@ )q?hM۴KH⨆9pzc4yZ"_-*K^Z_t{b-ؗ(K[mU k-['W<ߜ0V޺EPoЗﴊd37+=ŮP+-ޤN WFڎJSvؗ8?oT.^!CyQ`?b麾L7Z6, 0)TuٛeM*w2%d&SՄLLYLiK)_KN;eO?K-.GҙV|΋Vh3Vv|Hx;YQъx!&ڼ^w?i/ë @:diz@n$f=/UBz<.g"Oxfy bL.']mGQ|YVyâEix0JÃexP\mV\:eć ønC9Ea@ ]p)p7X裥\N-4eg;Ȋ>/ wg+L~o*4Q4!TU8qanZag.U$,@ҠHگ(KŔ\Qd 0 P%[)hFr3%RZf 2KSS>`N{?Pe, d=P'5 -(URR]E0l%ڛQ?w9B"- ̺{<%#WK~|Uh3]H@]"+l"X:JU c!*]W] Ց4K'HIJϕԈLj)]V&LԆc]`?"UK:PljZ!*[z??r5꘻R ;RrtOOTV MtBj&g~ ^ق ^ _iv*:rAaTb *>]!1֋A3@Ĩ6wk4Hlv%6RVwRSo+ _ۜ?-]W7h]tsXaVv6;n%?.΅k?ٱr]Rѣ+v||yd<\u*t?x cx8NG8ob29N5 ,Q)ԗz\DC]7dAl뮪d=ɂMSL,X;p|Q瀞`smz>b,PJ6!*5| K$l]+?p呄<:KP$ "g0Z#Ib0|\#qCKyԕOW.g?FRh{w!B |TL`mxρAEMhpkt`Mܬw)f1&fWˮց%@WR)vV,Oʨ,83d X%Ȗ%IlW09 |GAAkfϧF9Ƚ`Q!CNG7v㾹g/ ?6yq^Ď*JBH.-]qFD h֤eVn})̈7!cتtAeo: l5}T]?f,I'K+c,PQ͜DRk؀7@?CQ SҪ;tXoa'9֘GmE YE ~gEc<%ύiULp "`PNj3+M6FW ^I?QcH ^J. E1EY*)ȼKحfkƊS}bbQGAB*-ɬ{eɺ B;1PK lx``3*hXsVԴ)Hd" 1*b|!y+h2Ârq|*4FG umiRǦadDeS"e撥f)Q|mK+po+*C_E$M:d._%rA%Wk_5hz\/xu$ҲQR2EROJ6Ydhc`Ψ:S#SٜEۇb*BOmCwNpL=av~4m#t$oőR{ؑ&Ȟ-NOݡT{vP! D(6d(MTlC[1M[ĐCnZUMWNLz*^^[\4q#-mp@aiqkO.TB cG$WlUzaB,v](dgN~i5奏5OmPX,d=:~W3^3M̲&&یssnƹ7|q3^4j&u8/r8G~ɭB~~ݝ{`͂*T2nk d]zs^蒯^ĭ5mVVDTU=S*lCW{Clmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Brass/0001-FM Thrumpet.xiz0000644000000000000000000000406211172205155022704 0ustar 00000000000000\s8_$.sr@:{(nA# CJ6H/)ZK?IZ^O5BMDzMq?nWgM;5 X8ᣔ u<ƵΟ4~A`=aĵu0'l0\'Y(^Ci@O,! S!3Τ3zi,¯he[6b?cd6dov쀬|pEhP<_l "91/k>X/`&Qԉ [V6 j̺*i0&h`Sf..D?L. {H~tV}>X$)FTF r,8$97M4rMPp)ugm~0PZEod T|Uxo4/?Z(pN\H)s!7N_F?H9P}%UTgp?=vsYP]\L)s/dvFlHن\ f:BEcjž Y&ԂJx ʡLݶ|LKyk]bD6xxT({H BY @e>?h-.KX;Hgp> Cp*"9?g I^~RӤ,H}EH1q@/?afqiEFMb>,t!0E|Qa[,N ;)֎Z=϶vP%EWb`$5.xJR:i*o֙Qgt.`Q]tw]9ՠX xw(H*P 7m^( #Qmlc"L/C*%k\_ c⧵}Zcךnp/- Y;%МuƕuLIT.Q^N&ehOoDFT2QѰ~βag|ad2a2at AKh1J5NY\i4ņJL5 `.o#[_Q,)$]XQTTLۀ<˨\;Ѣ|* Ta9DdZ4=Pla7_xfTIQ]J[o(5fKx% cY!HXbb8>wfczKp|d,9o~ʱj~h?y$pieJciq/mĢ? l Pm90WyxvlUχ]~Bns>_PNP/gCB6]= ^neG9 2wCi6B.تr]<~*r֗+@@TT8htї{nxM+|q0~ SB\v\ƽ4 d.z8qr˸l9eܹ2^U *ǹfɇwP x0d L!o.ƒ^߻EGuL$2v4rZX:q[čWUFF?Blmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Brass/0003-Synth Brazz 1.xiz0000644000000000000000000000363611172205155023120 0ustar 00000000000000[Qs8~!d&I&Δr@:{(n& 'aI+`HrZe]}Y>Hy=Yj:SpoW;%hp硋c| >k25ģQM;c{8bO8<'5?#s=g j7/F^LI<'4.-#6Ʉ8/ ?T0fҤ;fMiǮ-iK.G [SYZt+j6tUPl*E}sU<pj t3 i\?<xAf|qFAɰD0ᥳ&)a`-_d,[&Goї~-oYp?>o}\I 8RHmrB2/*1y ZhX}â} q4G̀8ηQ}RLQ{QDcQ lfFSjZb˂D5Z#9OFƦ[UA;iuTuſ3G~i`7A$yA.=b0 $Q@1uMD.s? VJ6!D)C fin3$94*~\Rލr[M? ke9%*RyG*؜ +Ṓ7 ~ODEMk5᡺:U[U')V ^0 BKRL z4@;g,ŖF@X a x*R2̷bpp-5)]uFSob 9䢢ʢFbF`cF6MJ]%V \uVJ}o%W)No=;4n*! ]lQJ *1VL|P5e!d[)<8w8$POg)~/A$dJ&d./WəΖ[N:Hߵ40im : lV_{!_XVU{(Ɍ_1f_W6+*Usc_YWjjЮe$_ۍ>YGZZT_kf|mq_:fѯ|8 W*5ytfSB.݉|=mUlK_k—Euuo$WWe7.^V {-gtf}_,|7 |2;4oLF,LȖ\&i.4wJ$Q9ͧ9yo.gKCvھկ>p̾Ll}[z!A}Fol|P6zl*߶~+&/=?T?d.QztxK#m;أX/5QP4Mgs4KaKf!.Db+}Y#E-ύ-HzEr+so&>gGr=d3'biɚpf~'PB(_ fZ^@j` P􍬁Q@ )Pi:caVۿB/'%D ,|_Lտ S[tu8K^aJY&x$Kr5bKDIÀZ ļGC(r":´:ʴrU5u`' x gQB>Rd.ܲy=5hۗG8Kz Qb2pfXF/s(sϷ|$8$ҡL=sP.l#l譫e ..ģ*=^: oh]^Ʃ}o;^iTa^s$,.0~V 3JP/n !xZ:a+~#kb)Mlrhy4d% hbL?"a0BQ3z0_,A@mZ66t*wYl>˗. =]ȗC} / WNJJB ^@(Zԇ^f"/ |xSKg< ,#0MjdxN"-a!gj3cy"|^@jsIO/w.~(Ga@s<'!]ӈ[MK|ls)nmOqoei7gT; ?XMy<lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Brass/0005-Synth Brass 3.xiz0000644000000000000000000000415611172205155023104 0ustar 00000000000000\[S8~`NsgYH$tBvJEґ8)P KX:7Xsj͏qMϲlpح}:q[4sh8?e)v_h0\go}ty;vӿ n@Q@,:/#ꔶ.?5Mҿ6fd0K89e#S䌚F"w;DvHl7!nX<*Xt "917t/,RIK]5u: ǖHM–B1ʠ%Sͧ5Q;HpsssbA~^\ ͼID٨X]g,C,5"3Ό:5bL|c*ʼn0qP6em}'k `fXA@\ gd_\ gZ|q'=v]jm91tL;\#AU DEprBܬd`Bq斐igxlw<6]s\d.Lq51d(-hٱ_f-& Ķoh`yi2d&OL홹wY.{N)9E`b}k.R̻A1=BhcQ؉RabhX*eW"(ZЅoEณK~jُe8@6\ "Bk}0(CpGr l羑6GHm&y8$BG.v6tuj"c(A|=K+KLq7kB\BMi1T0VqMJŴfK\;JvTk2ghc|Fo&!?P$e<0v̅=z|6sk*DZcY(/dl0ٖ'D.!{Ia1B4nQR3 @r=n-?l}EBbބ"M6ET+a"Yqž:"Ңl`` BE6E(I%%f ֲc%7>'"g/JrUE{?Ⱥg݃J9KzsAa I3qPW.n0i'H8Lm9+ܫbÎDB#}]E5i Q0]ä4._Q?cxfV ;y;mI<]qG*XqCG2Щjt\ bKo\T@ ʶ*3tk A}`BBQ4S >,Pet`琐b$Ubw$A HHzZA!6(D%ebykw ԮKMu}` `;ˀ{*II0ZXXXMX`#vtS@,oKeVG,v| 9b鶺`_Xۧ;aiˍ;}ysva%krҜD* U˾V9aJ=Us<`{Rct53]OVX҆(GgTw?e\*29~w1YMŜw㼋ƹƹl/8saHq?q1?~dߒ'DB#NAF/ tW=ō5)nLQH|DRlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Brass/0006-Synth Brass 4.xiz0000644000000000000000000000427411172205155023107 0ustar 00000000000000\s8_=%6Lr@:{(nd!i%C4MܗfK[uq8x ~xYxT; َ{V۵O>q9~v=8Nᣌ|ʵƞ8n uw: VGw8pn ( MED^Ni?鎻׽iovmo @u%sa F7=dg>!Jg !ZyNYbI(4p*X^x3yElS{f.]K@S%s#OT,FCm]?6cW)twwYDYvױjx][?JumT1xlv:̋9P`n$^<̨8 #UN5khꡟMh&hynHSY|R@sRmoxUq$\fmi&?Nʦ*rf+j3jЅ7 _ 7al%GR{Rao߀)v(+1tw{$Fj3d7 Cr`(Dh~HL8Sj!PEl˄,D"]`=_a*ܟ~85e< Ij )ĨfH!SjVFbSU hU:C+3|3 ̸7 vh0ˑ!_F΀5L$\ZJV"/J %-QmlK"LB Y\h߭W82W&5j$M.W%/(@3e㺕' TqQœR$h0I _Ҡ k0X#2s`"a~9j - $$ǐc2BV[Kex:'USZ!ZswR]vO8;]*neMۋ-Ӄc(w]r'?90XDG7qelN*?]'Wp@Y/*jySA-+ؽk 5f]4Mgh(C&.Dt1|Wǵƪޛ*/P05ɤ\g:v,%kr-XE(%V$rFb['zd q3 p$V8&0m3AA?(h3cL7'krns46)9ρzG+tWח͹;%Q hZ[FЁ^uOiD=Hss,BU'6H*0'o1G v&c+>p͏+ `up9&;Q=qڵ#L#,[D~m'PdƛLb!, SsB'ʝ*ybAjقo'[8+xwz*uj^S='NgKI4z̋9@`n$^]̨8ūBUN4GciE8&hN@Y|S@sr.H:̺F:b'Bӌ_†Jmq-6sG{"*Bک FF  B0r#4NB5uP=, Ffrh´E)z\Ă%"3$fkݷ_S0D 364`OqC6i㓍dXtp;O~Xkʱˊz0l OI kM*İfH1S|kkDE"ZȮ) TB3LǣL/ bL(l3έ Xg];k$<MRBIǨLKc"Lf ɐZdhnִR+fLjPsq3 /$+|RȀF--伖cp0KygBe\?"Q^~͚Y&Q"aN_Eœ ,:pdC=&F |E1.@h xkZ*Nfyn922MeeTk' {1EEsY )^6,P2)KF8dj<EEv~1mVgEC𢌽da]ʌ : G+ *`肈#@$15JWp,;$<q|UFH=SDCP1.,_QH腙>NVN3^82mQ;5!WڹnEkA-at=CgJ($V35P>\(tE[PHfTǁBBBag, i놸D,/Xz%`Y*u'i?ջ,f q4vlĘPx,i,f,pkPon, ݔ=-<`\basIN}Xn Xjx@y7s’u7X]NHE8QYO%R0\ {sLcLp{R<诲?)j_1Y[e\URQz6TKBs#(z7J*nI'&W*.J G{&-xa[oRC۫؅AEǹ~T%\$Gߏ.&)Gnw18wwp8^3Zr^h/9tOW{ݸ,: '=dc"!ƒ5= .w9pj=YRӯEXu F, 4N&⩾*C^N4)%'}cK/ *jGIH5#>WSi3y( T-x@1zj3SJM:>:7}$.><'/[Na˳l=,n[޽z:Z|7mǛmw\߱ zڢO<Ȱù ᝹0gsć.l( xcՖ9p"GpppT>*܆d @%/ *QIjInqOc!:Tu[vx2_ɂOn2ew[WGоhoE1Gk/h][x1$h wRc3kqb%lq$f`b} ȱ| 7.l&:*J+3Woh+8g=r!Do>NU$}nk02Y|@ @xp-'oCʬw.V1&iWOhYNd!+its[k@"*ZkEci4TUdQMqijv Îm( *bXj 9lN@6(!eЉ |I*4o0#BF4|'CgX u%``DDԓ03B*!iu;og[)C@V }]szow:T`H);t !H"D9fC#efEId/tŪ^iF8CL>m`U2pDDL3>&碑¸=Qc`,!kiP o]"PX/Ri9Ii?:R2a?91放E5U~3% ]k=hA19a@ ,6n0:buDZ+bb1%A@~\8"abݷnjoi474=1H9{MWS.<<ҪaEJ?k a-+Qu9Nb ns<ҽ?}zzbK%zZEv!"K%q*D4 3Kn5Z[1EovAb0Ʒ Rl5]*Gd3d'W]"'nTR܇ȉ7-v3݀3 -zR'*oX "/X X>!!$HcK}[,qEJZz>ae_ Qn(̦dӪ%8+|;"}(p,SxYt9$/aEAZ]Ҏtb,?e~pv7G [_giPʔs}ɮN;/2"imM2Y V*E%L@)YMJr.I$$09^=/nτb2;!tNӛ5O05}9SCX*u֛:jGc)K$hR҉ JÝuRRC) 4X>)kz=eJ6`nD8!TΧ; wОtBq*.ԿAhճ~f{o7^4*P6=.P_klCpoy\~7I74d!kpcO_{k~.W>yW>ct♄{蹳KW\e:WuҲ:)[OstN|^iL3+r@w(XhpUh աqB4^_W²\1̛sH楇X*1֪_x)ȏ\~ϥ]UƟ]V,&ʮMKM|Tl+׳HF=ofɨASıSLŏKb2rc; psP#C7 Y|o4./(MG)*ZiM *Q&r`aOQSv0}) 'o,w #g)en`OdYNFlHitQkB-'d#N\[ -ΩHaU(p}ף|Lmϥ$DYsټݛQf>! ! <',=E$Aء9 |C+j#י$[F>Ypgat(aKbܙLDNDSgXx rсbyoײN\\:KGhb^/U,EAͶR+q~e]2߄(mG?q [Vg>ꑚЍ A2ɌpH_  Y(~,L̅S>sEsIG4ЄRVS))ZjJ !g5ÀD5[Zta'$fRFE3M7ВDb]Ѱ;i*X fIy4處 ڟ,z"@IQL-mK"/OHf6 m8!b̊ T 9KV3+e b쪔Aljh$I&䥦xh*ٸyUX%JTqÍP2)kDK,Kрx-TT6߰|wX'"LX"LX"wDPR'eJ59cꔥ`JSn(NT, ҮMb]ٸ QXra ⲕwA0ߦS>_N!ZTy gir9EE3%[`BE6gI%ѥ솂5c%gtvw7ňbզ63~uD[YKgIwk69A4h%T ~)GRk9sq=;}UmF l4.`ߦ>.75U2 Vߠ3eQ$j_41;4嬌IʁTwi0@kAҔI*75Q T|RvgRscvb+CVH=cE_ivox^U\c:>w}X%i@ǖuG/?O]v5ο޹Gg_> uwo$\[|%lE>n0ܺsw:+1L0V@KYJ0N2 F p%ypV+]t@7|0DIF QK4~ 'U:`rFBr4cv\%y"I#c*Qpemm|R[e|VD|u'%>uL 2g0G_Fa"+㚚Z (n@B|Gk$rLϝΙ)>ȈeoT4هw,{Yγ&-7ɘUЬg'wLߩNJU}#9 غ<-CXؽa7?{ï"EuK|=|_TlTUbݧ/{gny1'س!~ rTU}87 f27 fe3MB&܌sPoA5?gzAe49\:KCpy.g"Z-o ;ȿDҤt@Ff;Ӛ?=BoED-&u2 ?*DS/lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Brass/0011-Brazz 1.xiz0000644000000000000000000000407411172205155022026 0ustar 00000000000000[[s8~`yO@n3I:41SflE"% +㋤#Y`'nT>H:7}H}xZ-$=7fPw=p޼ N.޽;j|9rk7оN.Ż38;X~6Gӑw"E2<¡c'[/Lp4Onxe9o (&˘Rb-cjc4Y'\(,YG[A27/B^DV!Zy4xEhd 7!Ad>'0CO3ID>Sg PȻr캩}!|薪h:أYf 2sLw%G:k QjEw_%: % h&~ܺ%C5rR+߅\f>,Y2웆7ۉ[!DM *BVqz|E8 uQ N*S23l+42}RBK|? ~1KpvwUVw| 6Ɣ2o+`<=x"ձ: FC(zKy²RHiQ%)KJxb8XsP( CZXY{پڪB7B#Z^yrNH8G - F3O~dIp G ;tfe!Ad˷G.OXW:G)+Y ׉5-3S$3ܣu:LID 9z!FqGt͍!8/^^2tvbO%6,Et|1sT` U &wKpIS')AH JIIdvϲwrZf4җNy\szўrġ1IX$%n,+G{]hG5Gt DْD.uTr$ ׬ )K 5Suh(Gsa*QȃPzDEQo'7 Rf}>h$ Z_Nk=hEBgGZ˰Jf`$5> {n+I(Go Lx]j X3HJd<^ڕjcg,I">HSLmP!?t<H]T[!tJĄm`򖬴Vs=5|˵ƦK3xz9"]3gE7ilUҌ',eR扗X YC2MҤL{J&2uu .L{샓XLhXLhXwHPRƂH\9S4 ʼn [CNA@ ׬c9+FN>C|>yj'R_:b|V|~[DtiOJ_ڭWu{y7Zɰ*_*N6*-zi7_M}櫩nM};ZdNg>5^\{Q>]TjWE-] Ugюţ8t֠&؉xɘo;KmQ~;& ޖ=fpYnA5{,xT>5.̣!{0Rck{e*df6O6lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Brass/0012-Brazz 2.xiz0000644000000000000000000000454011172205155022026 0ustar 00000000000000ks8{H3I:4!s%ҹblΏ4ןV0ΣiOMJڗvW+zX.jm95☮e;w'^Ç?GgӯڿkgY= 1)\R_l'`<ľk#36vj8\)b4M! {u5/Iw`BXt 鯎[oP؆7޸w՟ǓXBgҶlD q!$}dd.Oq͈ɍV @I/";jdxK-+ؽk-5&ݐ4N㛫pCLU$]$gYk7o(r4.#{^L)C 92HRKׂ@,*>,2LW5:Gj .8\SF Upc Y9rrߍP8 \NiiVFu-w~&_?%)Prwu}9ޜ彻5VqeО5`} !Wcqy.cfu+$#4,wb[m";t; W0_뾬3޳\;ԷBE ~v2( e,ύg\$Ȃ`=U`. !t;ԩ9'.,枛P\6: 螓~lczC)\(GpQRatam@m## = ՜֋ixZArщ8h !Og^TA6s^M h2O bNBXq1}}͋6,Sхc P5"c)<ØBePT>HH$P oh_s%CR[RBh ߒ‡Ru[k.pJ&4܃vuˍK\ #ᆏd'ʌ# !YB<8 w $GPV҂N;.#(Kp;>HVȖpo[K>\ӁC(ѱI@tlfg;Dˆl"B>hN;;QM/2d4 0G2wNy?G|%J=) 6 mq DEB8d/h,ph߮WؗW5:4\&gKa %Ӈ4#@3Fe\QJm "(- ,ІqZB4LT+'ҡ5ˡ2t@\U'ȟcpmE.RjDqb@&@h! z+Z*FB`^`Ee$m820k83TnXCYca|!E«z19)غhBW\go|5΢}f1lVgEA$'݅BJ9%ZA#[  )@CѓG.o"7).E{UQ(/G~eE5hQ`$) " I_n+5 h23l,N FOWޑ /VfIU#GԩoK r9H/bpZPcQ_Rt-#xWBPQTeBa4:g+|Y8C -L(/{\&$IF A';Ȅ$F JkK(aiJbkG"A V(uP J4QG% o ^AXaQp!P~r\*Yr]TVvFnwQ(wv0(w2}]cYx>+۟mgxKog۸itAN%P譖nѻUt ֓`ˍ0qH25W=ij4pTLf!xYjtQSn:{FMc@!Ç.g]wߍ .:'#w6\E T`&ax#7q,e1&2$0I\hYElkQ!JHNɔ)ۋ(,M_|%1l5,o/K,rmh 1fIv|xt#blsk)vOF=I$>'.:B\BVb0 s@KCo%ӯN *Lx&jt X5!0LNPᥳ_EٯfHgQOK*(/F'g!v:20~ƭ4OXQY x8I)7*ÁIX^ Wk D#Y"d-z2qQ~ben05K(3}3+0fn/ftT8`dȮ);K R>P6S 2gwڄەRi}SeŤRY,XJm=J~%(U w*ϡw(2g52' 塔aw,@)h;z ,5/Y-bN7Tale"{>~ɳOnxI$;;BBJ檂;<7{O\'\'I$ zs=uBITO$o@=Bz<^/g"M/`J xl|Hg,A ]{n۝şAds*m귢iZ~ig^K!.lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Brass/0034-Analog Brass 2.xiz0000644000000000000000000000342211172205155023174 0ustar 00000000000000Z[s8~`yO@n3i:YflEڲח4Eґ`f<5MGm=0r|m[Zr|txoW˭{KH8Ɨ.\ߑ!Oʟtl٧D\{EG>=.+bݹ6`JY'[NEl,i4] 6urɬ4?E$R*&͸TPSB!QEhI o,Ex֜~6gfjUHHie7Ja.%QZ@w2"6 Kp$؀P¶Ĵ(KB!Eφ_۹v!bGu]տ^(r-V<޵mP#2I\e^#quaAclhI|TҼENIɋu⤬_gZ{H&. |3$ϲI{b5s;s:R@l'T$qqajUgMM⌲ꇍ/Ya\[FmkmGVVG_Yp?] C_}ܩ(䚍UzwD*A2aᘬ* v8,d @\/Cl}>126)v9G7=рiNT0_jӜ*y 6Iq"O?vЌ a Ќ< t8Lp!l22OϵxY䭇$)VK#?4DVSR;%O!T)B$lfr,Jd檍A0ri-Fk)FM=ЊMƪ)NL26'q+U g8A|Z+[;lYXև]u}',WklUk6Xa\k}`B5[Kh6`,F@XNa-ZI 1ȷ#pWHw"ETQYrOQe #BA찼ȗ=A de~f68;_ N4uNvr}I2FnpJ_(NA=Кd0,rl3' r Th>eO+'AdJ dJ9EɧM>ẻ͆ ,a%ݾ{g[Y5/rW_WOpk=Ĭ=+}UJoU`7͟_UMkȖ}_/RlVRVzZ}էy3's ~ (UũT47If67Ife3MR&LsToA5|bمV#hx24^+D.s[s<6GKNj/p].ٖ+Wjz.m._kywIp/lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Brass/0035-Analog Brass 3.xiz0000644000000000000000000000414511172205155023201 0ustar 00000000000000\[s8~n $2@Hg/۬/i+㋤#i6ѱtn:A#s/j'#⚞elpܭ}|q[4zsl_;2~k= 6 Ɠl8ѿG:rC.jw`KĢ*O]Vuq@wI֘i,'ؖ05NDv8ZnCܰxT Dsbr_h+>@Y?jtyKA-+أg-5a]4Mg[c4KAKOekvw[}q Qڥ9(?ܬI.̲iT٨Xag,E,5#3Ό#ۺ ?8KP rU`Dl̜ .J6@F =vSӑyFMؿFϣٟ ˿I{w3_k[QǝuЭ3p)בk.qR+,Y&X&$-! .xm"$5d.Lq33d(-hٱ_f!-& Ķoi`yi2d&OVL홹wY.N~I^E;I0T~K^9YRkfUbgHSq"}g.hl ,$b&ePĜ"b017FWuIEemǘ!4(Dl 0P?4,;J?V?ta/Ez08#_Zw3߄YPu7f|nH5Rզ$_Rd`(Dh~ݢ ݙm$-ZȂu>62t?St|t;iMqXkɱy$oS1`ÚIY͎I6Tk2JghctFo&!?Ri<2F̅Ԥz|2sk*DZSY,e/d2ٕ'D.r!{EQչcHS鼘IW1+:H}xEL1^*OoW$A xEz[_QҔ' b,5Ցq'"m!W1Æ lGL;aV=`IztOSTv9>(zm,`E,`NXj# v|RpK٭ =r{=? H󝰴nO}’"iN"sJ|wN*ymJ9OO:kI,?گuK\ʥ~pӻkӻ*DVȪ;L-^:[;l$~[TD*%hr w>;`t]0Cɟ | ≿g{9tL?aƹLU0er8c 49ySߏsw'ڏs8 0vnuq4^ /熍9b=ޢnVq5 *CHhU] Z;mSԙtW=ŭ5)nLQm~i|SCRlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Brass/0036-Analog Brass 4.xiz0000644000000000000000000000412011172205155023174 0ustar 00000000000000[ms8_=%LM`\9 }( s~Iÿ?ٖ vç6fw%>z/?gGևzPs\:?NGG܎n_z68C|}t W3uĥɑp?Ƶguf0`4d$.>Kn!; 1^,g8/ Qbf2p[X7d<&ɒ@= ȗK ye@$+E0ZmX.b;O>n(?:67$>vbfӴX BCr-!K7L:c$x c)s~ [SR],B!qkpHQY0 V -=RuL+$ gr("ejᴰ@XB ޲@hfȊԇS˺8ԇ@ʘʯōBܱcH^qt54#*!{~~TJ8*vr"v&/2P3B߳JcAsi$hd+L5XO z4^EML*@ gߢƓFk}فވp{7I0h{Ѱ;1-i1PʗW@]?PAy> ~4JY_4 6R{^(H+V&lU+LWz^\zBܦ^ RbŽ>!us{am@嘡o2w@:9Lz3LI_n=EZcˡ&J.{3ws)X%buRڛ.&3*;ЁJ_]TJc.~S.wD..\y Ojq SfV iK;vK2uhLz7lLI0ۡ3^=ΙJ"S=TPk_}*WiWny6zڳ[^q[^Aݫi0Vۮf Q,l9e\r|Q"YevUpm_Z~h>I#AL㗖Cq; )<9cnhoŸC )p8z  "x++\)30yx)Lm,xi,òzi+Wh ,gzfE6+}Tm}٪O+ͳUџlUg?ٮvE{׮v6L%QpDV+bK+t $%utC@;Nbsm"nFOӃ5Y΀vͻo=0i%d]wܐ!hc1uB}c͘pW=F@`x)[L1?3GA/b)Ths<Ք=x۽}=N ǕC#b]f vJCMH"&!=S ?|ViX;A@zm@[L)3ԃpGZgW7r7Q8/p` -u? G7I8G7xAݫ`3Ħ^uz6ĦcvGsbƉT?c;^ \^+~8!rBВqЏ [Ad:%cJ%tG-v@o)ım'{&dtwc&3:d"bO/z8}q5P,qsBwAY>\-In#u?q/YW φ-AԁXAfԟ75>Ł Ϲ \Q&U؊3PB9s\􃬀@xrGqmz\ئQ#` &_k/Jfurwޜή]N%v]m@ vmo @-q%}a5_)'Dl }DKωe]c B츹 ZVm >NodNp /s%tE꩗_6.Y޺oû#n .>ot7e{>JI}vinHO0~35RTϧRk .zb9wHQM渨e"ܐE|'9G723tp&arI͐ra? LnƆNcs Nw2*C- ،_ ?AZ @~VAit,X*= b {D_ D @sA~hl#Lm)@6)Y1T GY8!a@㉨lVK& եYw;}&&9KEm CMu!'nj ?t]KYf< ,aC PbZ&Qe:- !gNj.W#i"|ZR2ejsI/  Pi֍I-m)HD (J hď ʄ72QQnZy\TKl(XWQw#A \ r4( TFpT3fSP x`%ekcv)QPa)bت([S<˥/f|3g`A"ʢĪ`/CE֌ehIY%K饺CTq'"UB[KK} ʔ+,ANi3@ 8g;55p握uךMj\m AGF{,=kl4aFD8Vșmb97O;s]!g_ť_<xAbW)b?ҹpOf|H .1ڭ"mv 0}+q֍KE%[Zb,+vb/1v X/v\fgn˼Msr7en gapMo$Nimm>1o7/7 CzƋg"=]0{=r+]dD$BQ!bpQNz]\G~wqEٴ/6 nVlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0001-AHH Choir 1.xiz0000644000000000000000000000727311172205155023771 0ustar 00000000000000]]s}ϯ{V}W%ҵjcV6Bam6 ~aNKN9O3gߗ{wzaj25B7>~X"}rw:n+V6FI<\*^eȒZBY!gk2yF+ԉ׋ HR֖r.` /!t}NJS}7Autrb]}>*;m잒)jtvi2|ݦNn`HZپO5]s/zhaR;o;WfWV/gIh .ibߔ`ahݮͪ8d,f?ǟ/*|o֮[ xfVp$܄6m$mtVMvE/ w=P[n|#ɭu[^}y#\~'+gu^7K6t׮MZghM- :VwŵQP ӝFrMNMq< waclrgBVqa!qz9|8nVm(oy`CגL~-/5oS0h|j !2 !"ŵf dwa@@]C!eۇҕ}0:F_^G>9 N>сDgd>`F- -6Gۑ{RҗQBn y3Zڞ;"H'LtJ3LF=P>*G%ˢY0fMFO5¦KA F?#<~&Zt4=.9]yչo`jz28|Rn-Nt"X7ߡً) |2Ipq>΄8AJ_=<ͬ,i%ʒʒʒʒʒʒʒʒdW}0JvG(' ĉ(%fH?W%NhbDMNjJ!-9Q&N)!4qM(@S"hD8QjL^ N)}t>hD8Q Z=!G"Wp6rv,E\ގED8YD{AԉE1+N኱+Nኑ"\1p"\1&p"\1p"\qW"\qWė^W,猝!""\W&c{WlናEd@{Ed8Y+Ƨ8Y+Nኑ \qW,'p"\qW#p5@bናEbdW"\1^kmNGC6c7Wm Ҍ{pEg U赎>íUC4jz\Һ31;hh{qV 8d5` ,} Nin^F[L t:l1@qvJ3 1Fg4HS@qicY;xnqb(o?:hF6FSV Ϫ  #Na(*qHPq Cy_OO8E|M+L?%z_K3{V>OVҳƚ!'ŌK>4( F̌C 10d,PО89bEG3(nOauȸ"d'sȗc!cT(| :}k\ @{n(s/:WrZ|XYd KƩg.[=7 P՟ p>+zqm K%& c;@0N9Gj\=F*# &(~P{j>w{L߀1| >VFlQ#H'sDq|. n8>w0Q?CDq|28"&.cd,Ior}[5r Ca1Ln,MOj̥RXbCOF/"\4P9\t MԔ)ޓ]xVu C} {yJIjrZm;J %3]!+$VvTɧKKcWǓOZڷ5Q/ZB\a^ M 6"x--W ď8&3H̬&7GބUlFX-`ҸrkTAIP hVJ7sK\tBRK(?T Tn\İW^XS`HpwV770v{5n qĶ֍s hث#hdbqu6 0",lP.8<;N*o]􆀌~mf]K^[dLخw.[AR)k_0K4Z.b9x*Fv\`O/I'zT|QXnɎIH:]:&]]yȸnԁ֚*SfVni(%;՚iJɲi2J_mM}K5v~N3UD0_tg#z571 1XyONX84fD5}Tb>d\﯑i_&_m o ͎5eb5OۭkC'C5-~GvRH0kq<*٬&JV Q:5OMG_u:gK&毿`fB_9-|zl(~5Kk_k.(~3k`f:rt6HYRﳅ_fZ/5tAZ/~MkM?}}T6Xؚ&ŗc_M`kX*U'pkT/G`߈B^Ba۰O{+-[`z?7Kh H7G''՗!{(nejvlSg_L簞4|XTy|96U8C~XYG]Vh{ޕ{UZ 0ۇr0ĦvѺOOdz8Wh1[:VrEYll"W=uT^V8]Cܢeq\^UnEʍ?r_o;?6lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0002-AHH Choir 2.xiz0000644000000000000000000000735711172205155023776 0ustar 00000000000000]]s}ϯ{$lqm\6ƹ6Jf$.o IHi#N%|93Ӽb~=5~8ě{ίƟ?N|rS;߽z~za孤}"be<ʺk/xZ:[t+0g*› 2b15[d6}{ZT<'QoԝԷXEPg8s'E% V3fGS+2!T3kt!K7uy4~_l b +۶(p\k\Lm+)Zڮ+h̽,xd~dGڝث&vu|ߺ_yev\Q_RF>\}{rRH⸏қ&ZUaݖQ;)#jc,LęZ+g~: \s\GV]&9*2cշnu~{m(sҷd }heM?pqOʱuS&)iE94@adW|NN;*q)2,Xyx217u6}iϳxn ldB>a3c׃}> n S-f+߱*4ʎ&5׶bٿ c??-]fFKo/V C vTn3~McMmk3~݆*z !LbLVz_sjŢrt)C5^+Xٓ+}HmG+k;9MO8QǤIܚZd5z'V~c {ը?:+;vvk u1_)9WVqMR[kҶ $bݭݩ'o`E+\۝8>lEDQǫh "G6TKVdd?ZI`̓%[K,=XwPC`"p8HVRf D(@5"?w,ML4EDCa&& D%Ba&& DVa!ZcMQnm U& D-^MML)>pO@1Y jHzTv,]+&pEc"\q-+&pE\d "\OBbWLE"rWLZ?':5l7ڈ;j }C5X:mDx;W "d~;+gZ=߇Qqu"rsψ3=\ ^ltdpWgDډW3U` p#]bG|NG|%>GƤ_!U'#p29!U'!UgF,mtl6{p_H7,"^[C*0vFK#ݥQG0gli!Ј4iTB!&PΤQ݈/(nī(4qJ XkTbph-TbIaPiר4kTaMNLˆz3ָ4šIxpxR.ƥ֨4 \XPޠ3&p eaF55_cc!w|F܀|!535ᮀJmo=t8S1DOF[Pd_6xDi]2ۗ n%G)Z"NaȚ %(/tݖ Cwo蘑3c>ul hmg}0tcЋ1#μ cFcF~2sc"eRS1# \_Pb<1*yΨ?`NEп|G}2@`Iq;pJ?[F'T0at qc6H>cMlmU: R4_8T-p[a4)g!٤-nK-` mmݥJZwJrRS{X\T]Z2_Rol~ȆB?}y5T7K_~kI}RﰝZiH5"%d2(%XTJRºol}ę$=ᎋJ0f ?\~y"s9W 軛%e,q%3]TW+O S|SeL2D74M9] M"f1oZ!dY4/6iij*Ml^扇l VO"XL2_X mkٔ0J_ ̧@sv]K݆\(g+Ie"ե-I?M⯊{̈́7V5K?M5~VǾI(^mB*,Gk&7+ZͯVJ ku} [*?Mk.^z]v_ٟt>&+Z׊6z{׷?UV_sZW]-3KN'F_ e^} Lo;#l"lE`fvG`_5.| F'%z/z0?O5662l1b$>ҵuy4~1{彧AҞjcG7Om8\.4\vW.75W.w@ya5m:}༟~5'y_>꒤0_m־gzWcz|v >kybp6dJE)p瞎t`))l ߣJ+r=8IQ^ ,BZ(+&6ĔԡvRXOK[SrUeŒeTT%?UVlKje[N15?YnWэ;bgطoKݤ I'?ެo/x=ݫݻњlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0003-EHH Choir 1.xiz0000644000000000000000000000724211172205155023773 0ustar 00000000000000]]s}ϯ= UI6Pc_lmE%#$.Nﷅ$ќGOq`z>ziu8ytסooƉ6>_{.Og'?#ǹܞڱ#ݫ7GY}?jmx~ɫ⏧v8O.ɕY4b4\N+{mķ,|k5d/64T)wt3Fףl|}TֳZK,( wmEb^dy xL &x~,c=B\鸕[Y?&q?sx#KJ8rh b)Ěl|q9oR%o. 0|"J[[R}MEϷ>OJ$7̾+ N!Y\t!K7ٙui:{b nk%SdLL- AA>]E0'K-Ck,;׿Z^mE^[=[y^ҹ*m{ |onm :جKkv^|f`+ҥcd9n˳uV#{]/~dFZ]eҹ?p~ڵ}9á)/xDz CCqnT/tQ@\-hSfͦP8Æ}waދ{^<#r[693BVqa"/z'/X5c(/y`Cג L-O-/S0h^~k !{!eBfU /\g dwa@lPC4R+3}0:F_G>kYM%8|:ɶl/>Dط- ܎`7 g[B y1ZڞoEW#`3)0U6j?ۣ- )YZ1k2z3kɪ)Ll:{y80j]o.iBw`ϫm~}9qDF>rC]7Zq1w#{}Jv+n.'әkqw7ˢFJ1&S+j/>^shxENj%-lRO ''NE2KAEd̔zbeҳ^\Wfbe䬢o2n"\qWå/'pxv+Eb?:d[Fd{Fd~~XYvi%VV;,+ p}beXY6c';W,.c';WlናEd8Y+NናEdp"\qW^F4^1QSzW͖^:}cv=+Gp_\u8]\u\u\xWՃv~W4]+, pc|o*׏Ϭ>U>\QzYW}+ ж;dο4&,s\ R:[ՐZ{{j`?@'LғX-fb[F4!ⱸ"c`_܂}f -b.3och 0.1ڠ5fVrn {rةD8xΧ6 slS":&c??s4YcPv ԖA,9x |DWFc #a0B+\afUxy5$=a[0-WAb };6COŁD/oXat V Fl QlW WAX ºUlǛnFMZbR*$d9q{^!vOq|n# ߳cF>/<}n@$@>wlQochϞNgyD䓡bQi>zq3./ sv,0fD-"Fb l(,|@t>9xLvaosFt>{C|>"BF$gI+ 1<^qIs6!U&ӗx ]u3D>YVFaȆqZq&n#Nmq^e"NvP`$gFFHO' FcF>gIO<0% .|d+0P4eVJ}8{J6;ψck #qFs; ܒD>]UENenI"NL2 6|UzqihpqKHwUE7yf 4V!Fa0B+B8K8}@>/ Cøah' C8a0z"N?}_\߻^NN'3/5ww<`S_#+^S鵒*-RJTEI!LHM-3wIۧ*Rr} .oN'+Kq~[J?r)yRq]I%XmPC'7L6*oyX{'LcybAW j`-'ёXLs%JJ+E0S "B`p)kH` qjFrʅVv*)6nqWj|q4[wg+My'uK((l^EA#ˍK,0%兑HsXȊC6@4ήb~mfQջvqdG!eI%AIiR.W*g&$$e Tb4[+e^(2[4qMy\Wǧ+]BۤQr+S,a L"p|j4%dY4/6Қ[ϕV~f楈`>̓ӭcXdͿv`ÁU<*2}NE/}M |N1=z>kQx~렝ަRWœm$.oϵ*Yџ|q5sl:C|a5gy_=V߾]gzWǡcz|4%爵WbSh]Y.P*0O_x:VDYRll"W=uT]]ܢvsQv-"WnlnzؑտtClmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0004-Voice OOH.xiz0000644000000000000000000000412611172205155023673 0ustar 00000000000000\[s8~`yO.Ia2@Hg/-ج/i+_%ƦeJS?5ҹ'Y^7 q\ӶfF,6L߽vz01F.DΞV*xĜ#`1 ~Nn>g xU5fnc%Ќ^g]+*>ey'*Pb&LBk/Uz8_J$u+]N qڸ]ad>\ij ␉~QH9{vPaf _Jggn]+Ayֿfϙ &7\&oi:^1.ˌZσ -]K+y&gz">P>h QeYZB暮 -#reV? =f|' js]%]@=-)!lE)㯱 dD J(YfY`"{z. U7B Y]e>Ԉ7Q"*3$eRvR:6raE#XfrHNR[a"$MTwe.͡$XDY463i\$8nd,8d `v?o>;_M|ʤ6}Pu+GurϳU줊s;+$P%0+R<(̛'s9Ii$^y0H'ɦlHʙ H8B5;MS@jj5Xy4fZ˳f!q`9~6D+(m17`>Hg,sF`=9q(oB?@ܩ!ڐc;À<~ SRnu-EׄNyWVL~Ewp5YV!0+ 'b¯JWF|R=X:g+5$PJ; _ F빧zI߀׊¯ǓG_{MįBkWkaLi׊ ?GZ!ƯWI tE_Ë9~aN?xz_忘:_oӳj;uS[,!np /Z.vaׯ9J|"<\~?Lsa˄⪜ r˄z9ITN4 TtXphBxi/WMGg" ܒ=FÛEHH8K!Fo(\ltW0OaTJeӆ 5%wA3Plmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0005-Choir Pad1.xiz0000644000000000000000000000331211172205155024027 0ustar 00000000000000Zms8_%&!!3I:1SH\F"-ΖI_kWL?ȫjgWR}֖ eMy{nc>^nOћ~owm?Oۓk}&Y ZbFȉ< | OpxKqzih:{, - ZMqp"FiB|X)HpG`l.Q('a6$F4Jx$ͳ]sY'pnYTCL ]0?c]eGNUwL'',h?eH,;ם.}[caD =[UgfYYB35AU,bThpZԿifԔ/ -Β\) S.(G#4?h;K  |ę6N96HߠNL偒l,s2͟'F*kqf$k .qR+J;:fxgU A 3Ȝ9*&@;>OY*uB>bJ.:&D2y-e췺)]z.)b"8XldAt>+]8dP_@*Tk] RYj[%Z@4TxwbU:V;ߕe5* Q6تBXwo JxbT4_xOn!l9MH5Z nHwx&'&纰a=B1pv!Q&Eʥ6UbS U&k]j7TYq"fex) &Z2(0Lwe~>$'.osͩdal`N/k.u:%5t2 );SNcqJ(,n,4h]!D50P4$H%#xOm.4/ڐdU$_Fb1.%b%Bc<^<՞,(Q:lp5ߖ̣|`s, 5D/RfT.W2;ӽ>Z ) ]ܑ@-NAeKۓ$@@gjr{G1 R#K4"p/4flc|/Nze&kS/w͟gfklhZc˛E{ѽ9;?Ac*`Ś]VX$AU[\\Hfc7Y_Z2<qJ 8I~], (8ɝ nwV3\ ~ΪD5H]߹3c8EЮGZ#z! HOwB#N##i,b~5Ep+} /:"iuj9L~&?f4?4_M4hk9^:KCxy/DbUvuG#wX%Rśr[ mq#ry6̩5qƟ=eQ:g~(*ˋ  O4x2)@h\hJ޴7%*- Sz0 Pb8W@qC|8id ϋVYRM Ⱦu˾]!D_:ƆpG~paCt_ #ɆnaVU1@{_FJtq@[G1#'[8H48 qb͔}\3L6D=udL9V!s*,@O2q))qn/dX OkGG^"Xw[Bqtp_e@]`B[ f68/dc%"E% {Kn+FbǻKHc@\Agx@ɿ_0 hpBY'iyX\~4-1廉D|8P Be91R:jyP% qR2֧ |}]otëT@<Ehnz'ç;k\-&J Ӿ(.i(gq9a@#C=oEI孉`Ĩjxh'QF4KѤEcYDǥN _+x3\!XUj( h@rhZJ'Ox1'4ϒj͔Q'1uTs Z|IqNu"oMjo^Cjo*4U#p^%j9EUQ[$0U̿:5ዘd=+Gy?N:"uώh/hw4y?hx]h uF}'"U2{*ZP|VV4۷,qwnKS?w{T,!x嗞fJw5WBܜ#lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0007-Choir Pad3.xiz0000644000000000000000000000676311172205155024050 0ustar 00000000000000]kSH_{$WU)jy ~Q Kflk$+\M)ӷo>|.^I~ytEIzw>׳ֿӽ(X_}w/?$i;0["Kt,\{ WUͷp}6XqD5}zmJbw1 *:E=X$QGE 2RARċ=9OZytV?KYD+zgMf>XE'MϢ<,@ϕ&D_jy;zjUXn2u"I2<, 09V.2u Vei܆kubHmZdi2 #qNg `(IU{oYNZ@ۜ!^C}Y 0OE,GMej&uU} Fm0.jj䯓9=L:2GbE":U|⠳=:o%=FTO,Sبlie \`j}QV;SZ8|mce U. pY$D&<3+ͤA5A80v`&{;Uq*nW9,8lz[>8M~)ݘ~zʽjT'+ȡR6Y s[*FUV9'c(_y錖,)]fզ:Rq.^'@jn:V'a}uUlUOk}+va+so%j^EaGa+[;AX^k"N$ډôCa!nڈ\& A(}lp5z kL&k3}nMǕl_0kLDk\^q}x5bxEޅG |!cwWCf1^ njWѾ^ ^X+ xbX,Eby"^qX+]+^"^qX+xŬGWu@^qՀ+ xbbW^.bWKܱf="^qX+xa8,EⰈW%>3tWCY%@_tAAƶh3As2>=B E3FW vxH8,_=#^qX+nؾ/c9,rXc7(ao/Ebƈb'āWy~W\{^qXd8,W\hoǁY呺C(P<;/oǁ`Eɟ_m' 0 ]0sa mva9ąa(϶Ey0asaisg]zWy|PhwY aL-aLƂXØ>Ø>[2b F6#`dX^҇1}d>W2`cl. C1}n>va`ϗ0xŞ= v>aٳ`{>s}W}gKvl>_5C)V ,ᦡbܾG1}0MIg{IగaL^҇1}~L[]^ Y)EVL U2k 'uhRuqzLE%P  !Yxˊ &+5OҘ(w/IKJ^O ȪY9ec>/M.vNiL6q/dB; -P򽰋h0SBy~aR$[qUEJl*{,!JA1Z,K R[ )zZH^u􁢧wp>dMf:N,WDjqJ(.֩dYHEKh[:j;D[6mHː u5$ݺl6;bCŌ_E1&͈aHȊcEW{"$݊]m1$G6;Ԑ: 5cpMT*CPg -47*>ʌbkI?kXOafH)Q}NLv9_ķUӭ#ƪQ@a`kczOm_-$L,>hڔePctޔe{ݾƕe͖ediYΣeB1VQ'3w1Fh²R1/,k%vIĊolm!ElMX$_,2,4iS|P֪Ϫ0,XR V5LI]I?gUjk-}vhW-F^D[VL-[቙JIY ~)nNB^!nE_!G-p('hF/9t[v 96ވ(xtΈu8goyC>u7#qT?ҷ3We~3vT+8l?PbGMq_C?o#~Q==#Î8 舣ِ?Ϲ2Ϲy ěϹy!7`/c7Wc/P뗛 }&jg1`YƖdԪ>U+S~#*?yu sƟQk*|/}Z^0g2*ylmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0008-Choir Pad4.xiz0000644000000000000000000000327511172205155024045 0ustar 00000000000000Zms8_%&$pLKEPk[-rEv 3~jWϮܼ-ʢ۶"|ܶ7ww''7O{}.1w'7PM?yN:í5ip2{/F1- Zm{ڿOv_4!>,Fw$iw@?wѴ?? w6ϵBԧxRir.TO#I !xdDV+I+[$C.]`Yı.2ꁣJ;FbE42`]`h Qo:g].t̍"!\wRY{*41`gj8!X+h>>͠)!^Z%@S\RQX!Fi~)}wW3 lLrlAa,%7Y.d6?U$&H|]>_W .XBA%Fx4@d8zp AA~fS׵*&@;>OY*uB>bJ.:&D2y-e췺)]z.)"8XldAd>=(X8dP_@*TkĀR*`,Z@8Aי^$U:4tM;b>jUT5Ft}VuSº3xKP([`֦{*x2v -BJĥoZ nHwx&'&纰a=B1pv!Q&Eʥ6UbS U&k]2ohED08S@F9Mj9(ϯ0'e @RI_LqU2fܼ8}pчhԆ$Z$ 7-|q!'PR_+(؟]rYQ003xx==mY'JOO Fےyl.%{k-5^Xq/Ʃdե]&S=XkUNGOa2R$#5D[`%ʖP'IT1MN{mc Jb9yGhD!^iFt|2%z>N7+M ٦wIq .o&2ze~0gp9ȓXKkwYcaDUmqms! %FOd}]jɠXb(/$=w4\ g'wKJ" @M.ݙ}] C@3)9S 'u 3v Z 9aO/~{I G0tv 5[8و :Xƿʸ)¼ϫM 9G鑯`D|Mkszszbi,4KC<4KDruG#{&R.EygKf j"*.~ jU[AU-.zWVkI__Zdlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0010-Choir Pad6.xiz0000644000000000000000000000327311172205155024036 0ustar 00000000000000Z[s8~ϯ`yoIBL) P ;}[2)_tK/tgbO\-ʢ"|ܴ7ۓ'w{ |.1Ƿ'ߛd1xm'4ʟȃp1N<ܚxo)ZSm?'b4ï ђܴd5JD8H$wԱ.fGw湷Q?#TޑjrD9 !1Q4$ojE {{a !8p[)w ɖIWժɚ:P h6}Q$V"Un BvvFU|7SI\&.9N!s*,0l5ĥצSĥLJ3>rC_{R~糣y>?狣y7]681F8!sGQ~ivaY2@A#lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0033-Choir.xiz0000644000000000000000000000176011172205155023267 0ustar 00000000000000X[o0}`y cEj;14B;Ӻn6]sŎsi5Ҟcv0s}s: zؿ:?tr|?FP‹3{);OWWz:ih1yX- #|DDPaS~ đ[B]l>%BN* 1JiuJd"$Tn#WMeXͼɵPWVKt.FY7ٱMNnw. oqn/!2iP1dT`XGyE3O(":d` !F9ǽ6xNRNJňSB/(Ʊ?X1 0E@2#nӰ)c2-5;R%LXuyH3F` l %= -:+ϣz>}/5/ p7ݸ.n߾ˠC ]i* zݬ{Bia Ӌ8XF,BK1+聅YVZRUA2p"@e0-IeD7K$1iq+~ `H\nhGTl"v*mx>Hemr'(1`T(a(@Y.ՕRh9h̶ؗI`Qصώtټ,lxҷja,+o>-ۂQɮw~w ZM[.jϝiJiA2)vrR j`'7"5ʈy8=OO8c2Rhjnhfl܋0 eD#2䬵>r^$>5AkZC>m 9M^߃n6^^%hbu&oQ.E.*Uf7~ a$VS({g}=:cοl~;ķGRwTKPXpΙљ:cs3XYaa8"7VQD`IpkX/n;JhE,b&Oś L| 5H"$T[g*g58 KʩOUSnUdMcwh2|?pepX]u; [gjT\wS# iQ"f\P)>I9gQ(!N%.x`<.foPFF#whB^$(8n@c7 h-5ȌdcRn}>4"#&,@kќSSW VtxXwh44e'hzj\`EQ_PM(1H\Mq8dOBEx)97).ފ49l'%IwBg7f>k!m_.ٍtڌݐq}fލ.0 pgx?j3,%$JS}!=N 0čH}*7O[^]u'nNYR[c{E+Nu&&*e[)U%.| 7(vB\ A Um0[@=OSLݞyA04iо=+mWk״xַjiNNݿTi%;KE)W@)+3|ELaXSnGfY`@l4AC+k1ՌQ/vڲh>3| [;+͸JS, YY?ʖJRRBhI sN9$cSֱ݆%5nn ;qMx S;y{ћO_GΧ#gs</9r\ >\ڇKCpyh.gQbݾ_h2]TohZALp1bYXYgI{SFB*m~m5U~džlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0035-Wah Choir.xiz0000644000000000000000000000220711172205155023766 0ustar 00000000000000X[s8~ϯ~OI$J̔i Y.f_4Ɩ,Wlo`'O!ѧ}- Ř[x4i֙Nzm͇k! gOɍF'eՑ+$+g83Sgxo4++F։pX8õXv/%9E1X!09[GS&gϑpQrD ,vt%~^" H>5n$h:daA\6KM35/)s}%,ƚ߬PYl|'ZS"'Qf/u1B7Ƞ? dd g! 72Т5W2uAۺ2|!F$*R%/کzfI朌_y8ZD$p8hx.@wH2љ|~7IoʹEbXȸnP8]_Lh7BThyAM}^mݠ s|]ܺ %V܏V ] {B_p]zf5`I`vO.Z!j]iW-j  d|D֌UIEwK}DUs*-2D^$"Zd4L 3ule8C_2E8i*QB0Yx@ O [ũ2^ݽHjw;@4ffkvIoVY:k VaxovX$ $&]k"-vMg)d1`9^F]43H8ҩ~CWVUv `lVz>hAYu+&u42]'Fsd3A:Zj{q(2,H4Jf=SUZƳEk,seu-wf"w^.NNjjmNӶk, Vḃdj5[gC͎yux ?wH>4E-ߣ*  hFz/qwe?TD6myB6H gcͱ+%&ùyhS(N/T'|Jz|n4% 9M]FqPnF/JdWɴ}|zΞa]ZNbz5Ęx[Np%D[@RclhU,r8rV8)% %nJ]cb0 C x+)}5O겋!3"kߡqVY$:8,dH:〰'VDl]`,[)sm%t9q_y*|Vuږ > Ʃcҟ77MC 138+Xx(^.|IBo:Q=Ĥ:)F.,|*%f9CE`blzߊj E1撚q# D@"7,*[6ꜤZj0&{g9tBS! Xvi0BPLJֲlnFg~h$vu(EA$I ' FhRHr~bGͥ-C?S P]F|r;WS%kգXB({ g҇SC"zGo`bҚ;i "u<왕uiS},(1Ėg'zZ+ϕڅ,}T;&j焈0+Rq .VZ$JmF֖M7|zpY^ ` viOI TSժcH1lBDl]'R`Mk7Okɧ8XrDVDA \A۠hRMSq ňJ"]Qʕ5i &GD̻( l=|.O9A,\H WB᳊H NJcp91i,ȪTIA^ 7r[3Wܲq,;y=;agYP_ٷ]r~Fv3w+vg+)'MQr].䅠ۯ%.uҔ3@vOa_xN4[8 @ yb*r|ʔYLhG¥epZHpO#e's/{*cH UfӒw6W]h $2ܐeu>o]T׸A>)8^IKҚ/;"dt +\ lpl(yQ6D\bvׁ/c_!<=<:ǹ{i\q8Wqjs5U\N 8O;*EqaH SH$O!ŋ2"Y_CF9G{yszwsEDU(M9v4lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0037-Voiced Synth.xiz0000644000000000000000000000654411172205155024533 0ustar 00000000000000]r8|WxH],U%rkck;;h9HH9xA[gji2A:[G~|lYuZ'^0 ~w>߯x><\܍O>_kU~'Tn4sOgɍYz*rC.Nw}l݌ϣ ~v67F> V[ʶп&v|5ޥe,ݟҟ|GEE`[Qw?v[F[;~ b^#87SZ54 UzXVz\:@x;{ W5]7dzMG,lDפ]RvZ@/tYL UJƏ_W^aN9~tqtD%ӵ :R#\Z,#Qf~ru?: 7J}X(<|&Vm0b&SYa8߽WC-TcAs'fĩש.5!cܹ6dh%s|  H_+7mE[3?~udZYmٳ#OiW5HYDYU<+k+>-f⩭U쮗aϜeE7+u`i_JN_'o&u>=@Y~0s")mm1j (1\/qsrsh f RL!\cK'][=}2o+ؾ6'cGvuw nd=7.eSr=byNVIlv12Y=sS1tv9 }jǛ&1Jd R{ J*gaK))~LϾboCkY# L[?Ѳa|kM.Bf((Z0\qt-Dm5ƙ-??t,kCOߐa4 ="jK"t+ DLA ,OH'ǴJ2sc)\=&t-eonӿ<)%:ڝ}7OjMRafݷko4-c;=ƱuW䳫cKW2L|lRXkNYtfY2L4QZ*f ȋRbU:Eq7\ v[X5^n0Ð^ps}9cV'n) IӃÃdVvjI`"pY:HLhØ)21(`ڀM4;&lbP44wA)lbP&lJEw)0]&lbPj6`6eY@'|maEs5b 8ETv(JvR."^CbX+!+ W xE\da#^1,"^?GbX++Eyvm(>'Yo PN(HgvFQ:g>^@̯4q x%~G(V'|>E:)US>xeWb! 7 8CSg;;g!jD|m!UfƸ~W#sdL}C&i\ -ŜLxb!YfmeY υl)x4h1v:dXNVь @<yT# ے%fh$[ك`(tw"^Bh5,$3"# ~4mrӤs- H{z3=#ǠdXF~-{ƍG#ej@ۈkшk{.#lofRu|K$ou_c;Q5vQ=&\k,Fclr53ੀ᱀ͷ,Db&yy1ꡃ'59:y'4cF382>E%-md=$!F%؞/Y>cFΌGTaH-ÝAqm!՟r CI줈FʿPk#_4g2`8N vI ^P0(]00Q0`8h(1 '0"`Xm:e0b0[h1|ϭ}Yu!Hgۍtvqk#ٟ=?dɑ.m^^ +l$g?+أ"F1#=ϱ/RiZf!&mgc$_@NtD;s2.3vd=,iCY) !}l@>#Rjĺ>"4Tl 5}DfJUa 66r_HlFuC?wd`$6[U}S$zaI`m˳޹`:KCgkS?c'f~\}-gy\RJX΢TfmTIA/_?ooNA~x]Q-P9\iZ/#*Ҁ-'hA4%u%)*4EIYI^VJn­]> I6fiFQfwk'l%nd@0uZ*)zCr8ѳ[IVN-Uq=GJv=NV2O_QX2+"V'3_$wV!rza5C%ɂtTphg]XZ?r+Vj? T::*]ž0#)K5׋:B8ۀm۫YZ5v&6kUkGJW%##h&B;w4Ae-#ȘRPB6g+`TҸSFqJ3lm'n?%c%K׏~^LWkNΔӖ4VȘ`mt&,,|4MQǷev:pC!au:?Fn wz\̻ek56=Ɣx 5jއ^ռyZW>ݯ}_P}s9aE_͹5A_ __K_W-brvDKe%-T9BW]z*(#'_=5~I L!hwibYE-IJ4JלM0MUaYƱi ˒74sWh +~S 4هH^fMIemfnh6 .nźihPl melmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0039-Ohh Choir.xiz0000644000000000000000000000326411172205155023775 0ustar 00000000000000Z[o6~޺rn63ة ^ZcITZȺ<gSk\ŧQx̒4esbAtyX;޽fzxwCߟg}*ջ >_xZ;IO`x2t64!KãFs?IX,e>aO,tAy8wp6sl^h+E;? H&lHdĩHŢ}UMa aN,J!ݷKqEȞyAfƓbpNe6pR_.OEj^]y\tXfb͓U{GySMBF^l76ΨB8RsqDeCuv5½; Ǽ2ehBK %Q&J1ʶ(݈ ZM|()ګ  m˃— rB\GrJSSdYج.n/g> g|:Nѩnt%t<"_(4IrNZ:8PSuK>? oNjGm8bi#F<1R/@,(M`hu1zAs^8iNB኷O|(fiJjZ.as\,m7Z\drR^Xyfwrt C)AV&KWdD3q|&hףg[ 6 jڗ=p~C`Ġ80b[ˆ12(bͬ|8Neq%Fp x8p-܄!Xt,bGzT'4j+ H-IarD$G~ Ont+r %1wx[mC0?᫘y N͊ *~ +=t*y at6C[ z^$O9\NUnF?ݎfSlZs8w'a~:q޵u7S>>W%cMBR;+g#dNG*[ =C.YxXn{52BJx>, 8q&QeCRW y$T8s#Sj.p#V6%~bD!aǛ٧P}nv p@3_s?ya0X<ǒM0bxo&b," @Nli(͖ě8q`'[CS͹"n,=-4pUVˆ$bպT<ÿޫvlwI<~6ypmÛ-h8`+]~ eNc$)X(a'ui ^.BVҩuW륟l:"a||_x< 7)v&VhD~O㻋/e&=tqC79C5ϺŢ!e?vͥBpV FʇU78u4 ۸]W7p( }3; J B_xѣF@nHb!I͢{ xȣrzYr2*bjr;ar) x~KIo|@>"MpY.p,5BQ4[loqWmUIU]:,APL.E| ~u=%^JoNR۷:ū%=S=TB_J0q(uN;--UߡgOCʮ*%NP;L4EJu ~-~z K_;߁Ò9$wd+-(T_*kg>~ 5 ~7NGX:vJ^cZ x)tm xUx  ,2!?~-9vv v$ٯ.I{f\A_>xIW[R|k~v_KZ$a$$C )Rꕽz|f0}A$w+O), q&PrsOǩσɴ(y,\m" 5 t6UP#X^5E 5UP#\{vǮB+JH]JRUwe]և[֚l F˶Pײ[vaX϶6l"OYl+eZ;fMu^f7 0=~<܍͚\nM>O/WIǒtux.zF9Rx=aae|;W?Ls^W%ӜZԯyWPaA(t!TPWϚ=l[dT;  P4yx(N =kH5҃[AXTUO ,5C'GfDm(l*K޲RAJYh*GA̛=9˪ii!n 4m̿?n\fflmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0066-Vocal Morph 2.xiz0000644000000000000000000000520411172205155024462 0ustar 00000000000000\w:_ s&\&c[YۤWBkwbF|4fo]/fg;Qo޼j~ϳ;om34?ye=qm'y]5}~r<jݑ=ufѶ~M*aٛޱ1t_8!@}A VsPK街cIDSPȻ9m'{&[fzn:_`ؔ4ɳ]F]+[>d Qpzr8X6JY4R*޳aK`I6SLZ̙ӻco#Lk>C|fZB^-أ/ث MԵI vStd#jX'WDB -I[BV8aݚsk{{yAW2.vq?UwS|"}"ω4[($8'8H$3L6oQtG̀=3.;ǥl`ܙH}OcBl]km]opVb_ת.ru,R]tt2]/x1y15G> ӲVԍbջGrkC^s91Ӂ ,b)Mw&6"MܐE.GnYE,(B 4n~ί>6 j:~@ c *nHBa~/BpuY Ha, T(~Z>>j?n :0D(Vnٞ`<@΃dazܡXfH=%H !>IZ_iw`(C`_xM}#x8_DD]鳰boA ;kVzCoX|Km 2JCQy2UOMo#[{P~nUJV)vi;.PJRF})貃ti!}@Osn~EAG=tz#}*z9@z"]vt9BTY1I(+An˶/  1'+{%AtSy҆pG1c!F}+z&C=)Wn`kaW+ǡ{qX܇zwR3K ~5,}xS`WP`hk|C7KWcY*^LC߁ ~k*RHn}#: * L_CpO Cr/T]9;<# (`M!?~5z% } '8 RWOhӳj<8Z|k͠2NXfKe@_R J]:a1/2[J/\"Î ֶa@J :d48L}%zY~fTQRqG0@\R)o9K.=/VlpͰ8ΌB D .*CcOW *^ceJ cb۟<.VK ~uI+7yW _G<eh` }nR/\,EC#ڃ5&`zs3ZGGC~IۅO>搱Oޅg>(75!VR6!'R?(?hVlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0067-Vocal Morph 3.xiz0000644000000000000000000000532611172205155024471 0ustar 00000000000000]w:~_彗Bi{ss6.v_t,ofm6F`V~jj#i4pK-4*y4~tM@vًw\ 5U֍t;&~;?0dv[>s{urٛv*Emֻ:dHY7|gӴYD/?n㞊Z؃ﯲQ80'-lx:O!%ܳV 8^HzI.I~z3FFQZ\ ȗ8s#]l.p#V65~ТMp_3ui>+}}Av=,W܍ =%/5U[od0y{F$b+zT&Vͅ&oXi/:H־Y`{xnq}>i9Yw Q- adNw+nTʍEpu\ǰP?le("[;IvOM,]Pdէ2hIf]bvrk?N'UtPرjx'b#*oя38*™kY׎~lvI,b#`)?<&mPs;~ ϶|7Eb9?_́}$þ.0CU* "(Z;x}p4/*k5$4i;f@`Ѥ33s9Ѥuj.Ѧg=Fz <3dT}3(_m' \ 8&iU!_ C=P-PM ;Z/'YL;ffஙg )Xy2)03w(tjkh': s|lpDUX;;+r$6$ nfFI`#O!`"RSOMÒk| jļMHYUf=E̺NoN+~kTgI^=sIȩ&)1xd˒2ZZJ={?X@B K{*tm 8HUf<~lf)6D )אPk.Q{i]i5&~4Is3 CMJU5(0@5tEM>ej.3;<|3|f09}0A$w+iJg?BId\i=z&AxZs";K?uCS\Sy{Κ4#ceUPTSN^555kUؙB L3"KJηӭ{d[k)U(AU.|>i^jϴ49=ϺQdmRD,Xh]S9Nǣ^؀KUn۫=du$]^ +V#U_|]Q`ZKzTd_~*B w'@X[ʾԪ4i/]wӫ8iGXfW bU` (KJX,PTᭉ* fەfŴPC#qnN+C*HU$zhYB'm*KSe#NIV,Rz1LC22g 7P;)ΟP_E .V mCLvR"Zv.݅*,Re Bqco""MukGc(KK+((leI &U\j]\ Edlbo;dv{(qYB@VcBG p.-X(R] U\QbV{WfkWATe/pX-/pb^qŁL2ê:s-KMZeQuҟjqmMs9\V+Oްc+0ɥa`Sjث٫fƆU:kG{͇௽y}/*xґm3&Ol߁Q_] eN__ն6Uzqk_92ǯ9z]_M~O{cS.g4\R+e: *N9d7\RN.%^t=%,*Ly jTC_:;j*/i %T~1;z@Ryť.=-:됻j}/. p}Jq<=Nss4W!i>eC0͇a_T 4UkRPm. -sa/O^,w,ZަW{ ?k}0L0^ LԺ=_#+.;[_v~)]MOt5-,Zplmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0068-Vocal Morph 4.xiz0000644000000000000000000000535011172205155024470 0ustar 00000000000000][w۸~ϯpsQmNm) MB7 Q u|C`Gpz[/u-vܧO뻷֯޼yտ^܉mw|k;x)voLk_qJŚua.W\sO߷wwlKaڛ#l [mE'O7㞺!*x XB7j =s:`*2)ң|tx/Gܴ s,ʧnFW姇|w 2[v[>{zH@Qn=#K_@OV$NGGI6F[Elؒ Gۥ"b k&ʱSJk>} 3p{c(K$㒯Ekѽ>P&'qFN\̍Hl'deM6Q z&gOX]2; a=ӝg9 aSD1<]kKQ)9 aT;BpU5)cK Gxj\"ޥA@|x界v:<_|&dS|"}&ω4CIhH$8'8XVfҐ<ߢ6鎚_,vKٔvXiO Vۇw! aGWm5^y۹/Ǩʧ =-O2][(HbaGq#9ͽJp_s91Ӂ @Ϧ;|Z2"q.`i-4|)" 6 .w1cyPk&ec'ʇPwCб~4N(.TQ+4 <:_]Y~LF525ڸ]w{Qp'* B2I̐>y>B@C6k}Gz܇^1ztq#T_v+qeѷWPʢo_Oۅۢnk}VPcZ LUeс0%5F8K cX GhTXzvMoO&ߑb諜wT*{0aL58M ~z,/< K ~ߞBwXms7FK`{0%,05`,#=, `(2MXyPe1tz&ˢÍPV/g1Zw>? C62`Ue1AC CiBgk:ŏ:ǰ8k%Z p.e04;s7qVAC 5(9C)W8shc 5 =>"pwb< H( 8\ d[)8SӨAͫ^%Iz,xKHRAߝ栋ΡdtV$9 &j*jVyV FEMѝUJ*RY Fjܯs.rK兠rmt㞔s*Yk89Z9sf]&I}¦K]&߲If &[KM#LN\NW!ZU nfzqqZo$O5ٶTC+ *Ld?'+91eE R , KMǗ)d_*MwEi;2ZWsaP&՗2˪J(EfE;}=K;BսdqXbLw zPF53ȳfVIyY}Q+ūj}rƘW_-.,[^OoS3Ek ד6 })|E 諲2 }\ua6|_45Ҧ z}suC_o^(xʡٛiN_ ?v6Ux*jkok_u-[T*iTCo6'ѫuH7*q_d7T*4y-}y?tONwy=*E$r*e<7TR *u6RͩTK7IIjkCR sQ RmYWY%%X2Y`M8gߡ)WMs49 Gl/q4_iΪe5j504!LHdYsa…fl(ym`"$՟:Yuoʼn>b썯{W!_O%,Iplmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0069-Vocal Morph 5.xiz0000644000000000000000000000546511172205155024501 0ustar 00000000000000]r8}WxLil5f_PYHx~4;]d4no_7GmX7Ψ{x0z=hի7\N.ޏgkǎwK/?`ZW٘MGx:cWvp븄]B^eh*r݈݄dKza6ԋVS\҅CGSIH襳(m8ȣ.(jn6~뻫 æ,]lƻ^vu}L%V~xWtobK_iKV>Oyk;% fE'`ٯV|"C"_̍Tَ./%D ,+ݾ, Gm߮?ڞ\o/Ѓ!Hz(Jv-V-USFK/W-&elX-ves$=x4 CұpÎ>o&5YjOzdq( 0]o/0ÊL,Cvȗ=,0Q6%-x#pĆu)Sn߈ͣ.3S]vmścSt屵pز{ec$*AD+qm^/}nTڛڍv:.s1P<>ml. &.HDj:ׇŧ"hqXC0 BJ tltQ2t[ßoBEmJEB_*_#}kW_,Aׇ@ ~ ϟ;a~u}8BnDEvr!A\&Q" ;~}͢}G-XeF웱lj ~5].p鲏h5=PSMCώaWa]rMLPWBߤPӇR}pSK }-eVV jf(% };f } uo* ]3A2ˠMp4ױ.a6bw` 1UN;N*{0KZ8M ~j,/<K ~s3{)m3o:j7AkK`7LvuO8Zbk KC?H: `j`CgW(, 3`peXqӇRefQlC4ز̐&C`C'gS`#Do'RjU7qVrg06JͰn94бҀp CB3`kI}xNY.HyNn+ h\~&U=w<.D'wg b;s(ja&]!55yIUTQQnt;u~\<"5YIYW/ OTk%MJVKW˦\}ºf+]*r8({lق{JC*͵,S9&w#ja,U&'K{$~ ]ܡ=&F?\൒ZDCRCySV/j8Ұ$Bk/u'8k[f_ b{V@&.+,b@. =[ef-AM\*X5k֬oֆ<ȁ˂XeAdt_X- WTPaQJ]r,)JL_(.L5,Y|-m/V_ .܅'qMMa}{OR[Fy(^p.5%X"Ȳd!oe~7iC"JR rl1N/R]n5C,$a[\T DH(jϠc MX *8ss-"bUٞZxaB(V/Ձ%ر "Q`/yʪzutsBkAeذ8z 238ҖIΘyquKyGUrzKآŲeKd$5:'YEU41Ik^| /ƹH*JBQ"mXYsċu518oY;㚾yx\yƏH_|*Ӝ짚&޹Q𠥡qM_cݚw>~nǺ5}~uC5|5}}x?}/OՏӜs 4ekWgPm. -saȞWu5T{$J˾B&\_]/q%rBRa]-+TjR%Ƿ<_W.ge͸3Kg@_ iꓶSYW@a.{AD+ެ3pvQZ:!g#]B6ɲrU1U&MWG'rlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ChoirAndVoice/0070-Vocal Morph 6.xiz0000644000000000000000000000515411172205155024465 0ustar 00000000000000\[6~ϯ].$须)Ixmf/F`+O٘ь4O#y/^=0UzjQ \xx;ykٳ?]O z;ܵcQ;ɓV e07n8Ng|{M_5'\Gq۫-{luM/lhH*zB .4KLA uOOM@!?אۮ=<CRSMUIl>}{7̈́Ö .`WgwAYu^6S Hjoe6^DD?mhV:lF|Q2S>*:pHF@`eF`'ALFݙf>P߾_QSp}m,˦$ (Ekw>Q%q qF*OQ]̍Hjd~?ll~r-w̗*HIt}YxsY}-N`%GԨ| u>t]CσY4qƾF J_kYR[VQ 6g:n6BDE@ET}8vLc! I !HՂ=H:yPj˜ġ|("e},(n&ӻxN4+Yµ-&(й3IT]?8,%B ;\n#U^1NJl9Cu+(C\_0Ujf&(#RDZqҲ OGdy XsD@DZeC=2/m3 "Uv1gzD0DId9P9(S=0ϚJ\~/z˪o21U6zao&6jq uF=je07#_2Yyw8TMy -*J0* eo*15tbjY&*Wl8PקZ @* y̎˼z _2Y f|s3{)^Q, ~0X ~ E k=¯ewf.BeY, _f4ebܫ/}`^E/ ̸,ze,v7N[ .^"( w;wQh lȝ1/& f@C1Q/bE_ ՂϞ+`#=\_rT0/7Һ>J"_^nNH Tm3 i}T*=Vv<.Rvg8q(l+locYa^6q6 ɪK- &;R*Z*/H͢.)+/V}ku\q ,rեC%'\W-LfTpy~8ZoarUt8 վبpCMFWÃ{$cI%A4 |m{JG|)&AxR\H}T;&*S"Ƭ_VIdaIJ|KI̮FILv{֭@e'i+aj\&efە-U6 . a ;/Ե:8ɞ˄\eBdvY!-hLRMͲHUhpCq"d=eȔh'mXhҥh*|XtaEQIWMi{;pyՆ|tʥwVETdRKʥW\ꇹ:R VNRoZKa RϐJ{k+ T*I^jǍ΋:7:/q8dtj7\ٚ-"`rx*qqôq[=!|C\0ya :s_S?碆ksQh CSN0+kc$;+< K!/I 9ܰXZԗ2Q?K[fRSaز0P\){[J勒:T7IP(kgay?d̳*4=6?]o|Fڙ>͙knEdm駮hR٦?Nj ߌ&"Qٚ?ֱB? \яrߜ8 n?<bk[Ui!5$=,N; w MJfsV6j)OtX|̖1?tEҹ,[+ݟ 5 (f2$쇏;;qܱiSTdg''YԈXEf2]N}9'PbsG:Ѵ>a>G%G0)_D` =ΏS7u ),ΖklWןK?7Lץ {7  zKn 5ޅ׫~LUb%b={z"Zֵ~Ǐ+ z"ڷEbd9"N[$t\v<F>g=e[ķ70gqmCPXk cL,mh .FlL.T} ky=,-#p9CDfϓ2ae=4FЭV65ɆFPݱ8@KzY7B@"REy[=  NZ1>Z}Xz=Ƈ_ 7KrIr$K)D2CZBk.l'F . arD`b[zSlѩq$ #u)էbk,bT*@=Uy(AA8=0S}x^1{>sl)F6w iU:ʹ%M#=كN!Ul#Mi5 Ѯ&HfSO=I6fkӀz9@POCɎ!M!3J ('kjE x[ v(_ZUufiuUm`C bO6FvDZ0VCP 1% } L=wXDPLg(*Xèo3-¯֪iα}iCߞW鯚෭f_Ƙgz|`EȄ@`CE`>ưPU9z~oᇉ!pGk55 I jb(X(QVB6 pLpO/cƱPU3(Vs4WΆ¯JZ{KWa?8;Tb1h*| };jb(Y?Ԡ뛚6QUJZo_v~ٯήZh{)bKfeV .*p}3Ygc Kwo/?h$Sߡ|;\{R W#$^rX [)b%2!@(p6Q#,*N^'·;˽8hP_(eL^+5r[Z@ִ'*+-sA! (JS 2eDDIEcID\D* "NhIpo PFls))8J<:-7Bƚ"ۤp@q-/JMoZ > OQMi 8.A˥v)"qR{gʴ DYv=!iС=ҺX$J%m)%?+9j>G  (dmBmfjpNUj[F@`',҄<~CIh+f1/-VYa*rȭdk{zYmB> : L:=)Lx|YqfTĹ=&3yO[j[]lVR^^^zuU˖hh281:cp\V(fО&c2a-%qc28/&O/x&by+#5WT+isSxAk%%"vc킪jb_5;kv5P/X\WW9vk#/_pz3 ZWg_-_5heAkqɫKUL\k"ÖTrzߊnF>x/5׬n@W_5-C}:㯿`bmMW*Eݫ% 57[AN F Wbg`UM`5VX> tV`,:p_LWJ7 Ofhfj6ްs%\5{* 0FRc:VڻͮVXM`5Vؓ'u%B#Ѱ+P Cş9_\#n%Sx-δJ˛Wْ1]rrEoj)TcٍO\待4W;Ns4WI9NsqӜ~^PM TW[︙~%8Nju xJl$rr.M夒Z75 |o[ o;-b썯W.Sߙ&7GwlYo-34?q.lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0000755000000000000000000000000011177557523023146 5ustar 00000000000000lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0001-Xylophone.xiz0000644000000000000000000000673211177557523026255 0ustar 00000000000000]]WH}ϯ=cK>'΂ad'#,ؒWI[Zj-YάByTze #/?vݎ/?v?ߜw?/n^:;do܎vbۏw.ͲKO.Χ7s Xv|{~^N'?~6PCrCOQ^zf]N糛uZ[Va<dzQ5iMՂ߼bwYk7V 4'[x{Tίo>7ٚ?4n"J6ɂt? ~西֋oo8w˳Η ҎP^d'D6-8r럧JX)$٢\shrUNof'1ۥէd&:H/Mwo}s(G$],`uDXq ;VCb߈[rc7I*HNB8bg7b,I D}beQ@Gw,ɢGbCxh\>~POz[.EYܿ2u/3ޗ\xU{ +}'XnYaY˺SNlevvq9L6A٦?ZKD5_Di2&mϯ mds".cҵyj|6-7r.0RKv,:ݮ_\?S8x~]]U#׸ólCηZZLLi@Ђ~Hf.*\f{^zQgN( dCV.m8V\~LϦ0ϵ"jϳW/>6&/;\VRK{K*._/9$ IsH]i]8E gVF ZG.^Vq\>l9F#Ð^s9sS3:F|deTmzA}ed{oeיH6D# %^8H'U[qh/^Nqɥf*匥T JT%٠KoG祢$,rmNj<̈;*vԧ]U]ͮ/QAEy8CR n;5c\Z8utcm|L^nqUT>np+s]RT\^o*w+2F-O`9XS;5#ͮEz:촧lD%v>O6풡ZEbMI,, Ńx0 ^<`0l 8zҕ̪Rr fP50lih50lȩkURyȉ Ʒ ƃx0` `0ƭ10lƶ0f[a@atQw3 HqwύѬω!4cۆ*E#4T#ƣ!׸YCh-6rVƐk,rECqh?ECh5 Ƣ!X4kـ$t&Zz͠NF_KSjیr3&匾猾 :Na+0H84 ݄op5w :+P;Bω :(ۦs.7kNG#g.b^ #Ԟ+`|<0]l6nsd2wb4e vLʶyF2GqJ}eI>@Js$U"Ȕ=7nX2@~ ;P*YCh,\k6Pk-Ѐk-Ѐk-Ѐk-Ѐk-Јk |ϑۀ :1߀@+#ߔ]lu. LJ <Ey4:htq-7tmc(N*Z\#ppm#/Lm:KL4C)4s&rf >fRF l@ Dfo8}Iar;t莍;`CL;`M;` FZ}GwТ8Gy4:hxאsA ״^50× x׆Z\Iq|G#V w@Nnڿ\vO%Ȉא9͑zڹM#hᕙx݊-My*e="]ZimGr&!5 r%f"iE}䵺XIrEQSR,Z TR eYܡ4$LlʉT-%82VIȈz6cijIjIŠJ$XL^}I2 iY!fRhP,˵%'YS$iIyGҘI>7'JgMwȴY[]$AF]S2@QT [w^9#RHS*R$S5aiWǝo1M/GI6TP&mV漕36+^^cR/כlY<@Ւ@B)ߐNeM1mj%*/, Lp)A6RϕRgl^6kVU$T)gZ@?(5j%傄rR,զ(!*rv78-K Zfto9;w2{O9LA\>`\N 7oa宸7O 4s~|o'7N_o7o)f 1 p՘"B0POx=y+$^4Sg8k7wZѐ̄1F ^$b.,DnXp 4w&]2;iwN|rbPZg%S+  8L|;ԢMJ-lqb[0 q?S|KWoP;ʤ?o@`g> j).en\= E6>NјUsᧁÐ?zqYu5r3ϋc͎JaYbm *۝$ӭ*4p*TĆI`"4m{pq⼄lЙgô%&u_$l~h`6E0ԎZ2"$ZHZIyh]Ql 2yL?"0V1HYMQ c60qzzZZ!D=tGDiwc[h @JM9"=i dB.=Geh0GNNg8V3tzfxC`%Ow \sZ+,xx3*zDb稹u5}vQتߴY= 3d4hҸ̣[0՛bJTZ{`8OcEԂЛX.CX ]'ve.hݼ$i _j̟rg-l kcMMT\B L 67&4T5~jSOkfm\nWKy`0vi!)R8ٚ8['pnAhU FЏzEο'}hQ~qCCճ(g*||1yh(zP7e%Y}?9NGSFeٙ֬̇o~Wo/^GnYgpOgpgp/gpad:`=Xp~$[/P%5ɶuo鵮pC;ۘV!73.Z?C>2Rtm|DӦͲ^~odˡdk׭EBrթ c[NܭaQ=+MChHlA[w<7^n?RgE$ &`\&lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0003-Soft Vibes.xiz0000644000000000000000000000363311177557523026233 0ustar 00000000000000Zs8_zEfth-s(^4ֶ8rlI^H'Cػosws,njNk Mq}Ӫ=yn48mNY7.)+?ͽњzƒɉDx>hNgh*@Gaȟy@=o,k:P[9EΙfG0ެXm{VZu_JEbCǤ X0 Ioyp{S;Mq^B6 ̳ass/~k6r?40|e"jGZYUN \ $-VuKC]4Jf(Z<  &Z(1xY(G"za8ݑx;g4b1VN7#);?b8 w@A ԦM2\a0z@YE}+N\9gVreѫZU f'2{ '0^ Ty$F[R@c8 ,i苀ωO" iQcr%H[8u;^-&.QZ)Syx$M 䐽(}ޛ5%wytWu]H"rV4@2 MPJJ֌-DȈuW" Vi$KU1}+ȣ@$OMJ|(hj)L< ԥ&&% ˒ޡ0D<`Q6]4ҡ<};5lT# ԖfZo(KeG}zNd8hdɺjD::HVK9C!jqfBJ1 0wȧv7}2Hv7T8Q@D$Д#Ӝv@&2sT&sdtox_y[ ckK0@G\~k97vW%w \srxH`fMI*VN8 J+}Ŕ5POO^pST&ڥ\l Vή) 9sI+,xx3mjGuZk u6aG~bpjnʹz!3d4>II\͗___7QS5SbCK2$=}H-ĞF,H1]WH4i܎Pẹ;NePj%l.U9 dNqcgpTufr@lt [& BCw!Ya̟sW'0l$ k#eMTC \`@ =u) Y=HcAI0'XkL~]3i{ IƵs 4F9\>p2ͺsa\zEο Q/6B^Q+Ucp_y-ж{2Ǫ9%Y0;lvq,;OвK~pЩe|)Ǘ>;㙾8㙾:L_4?Y G Ï#djĸ&v4.{>g13*d>ff@_Tk@TJ-Kku^7zhkˡdkZ/'*^KrRƶܮaQYP-(.uCh ͊FKJo19-r[ԙE4h/71&lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0004-Simple Chimes.xiz0000644000000000000000000000352611177557523026713 0ustar 00000000000000Zs8_Rӆ$3M:8 h--Ak,[%>ػ+oW+}蹭 #ǧ7mvP˷i?,GW폷g~N˯3מm{F8(wo~BC'g"Nmx# VwN6OF}9Nhnbܴga%a!&V;2fy\E& #A( IF/$~wbċP@B([ XuKPAǶm;2Tb97'KzPSo5:>t22i>:$O֗V-$b|/uԾ(}@ ?t~zpԥosVxo68Z˱&Fyr%W}t5Ae%ŽxITd_k$`^$0eD(3|i{|J-!Z|,?+(X 2Fx0 B4JR@eAS"pG\r=#R1bPkqnm3‚[#,,u]2s,lqԱP{Dڄ~ʱp/tf%8kC嵐;Q1tJ%QZZYPj YEl[O)]8P`p!oAGחpɇ\|SΔ>qxBzjehލ!y ~cM{}Uaפx`+:I8c8x8ѦpTJ=ŵ*H˧1= :)ZTdxIP+Z0"D3{/] r]:OJKVDԡ?+2 34 ;9tҟ 4J -/t<0SMU$ECSKߴ<ȏ,7 j4k(A <q}9.4J_QC3>Z Ff t1I'MzxsuXAHS]"K5L &Y sttp3Sjj'A)){n2eAK p" goBq: ЏUJq'IlYG%zH-s b:=a +r xټnofihPi 'i)өUeQa|>pST]1H̨H&=th60^P&yuhJWrRe4z74CGP|>^b%懽9+]ڥjCs*}Q?f?)lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0005-Silver Bell.xiz0000644000000000000000000000423611177557523026374 0ustar 00000000000000\[w8~! &=4@ dt"q k$$l\z[3#inf,ͻ3?m'?y#2ux=E]튮OFe1NɍٚKvڸޑuLkxz MC>$WYr汴DCcGaIҏcI2W+$VȜO,7ܰ-Dr aC !X ȓ9 f{2_o"U5d~Q Fi-Il]3~'8˲mg.}yB<_i"^s"E{fjKs`8lxv {Ip͜etqXL x&xL:,K2Os\zc Nzsu-|eL/|mBzw& =!$wTH5H  d;]Q iyu1^\ #޳!x3.u]p== 7]5]cfv\",4,uMqY[[% N> /WCL{OVwjD&X!܌M~K uԥ$> њ r> -$Z2@|Mg>/qAMndo*^}F/퓓6Z< $Da';ZYVV$ BրJh2.AGab3<7!AHf4y=.B:& .w~"0DJG `BKgaU@S։C3IyC?ʧe)q-rC!<ȉ`AP?)szg}*(lၜ:P<| 8bb, lǔPdS)#Kێ=| V(PEISk|+“tQI@KIDJz'ВުKz RjCVNSC%U|$E'q'gp>'R%_fL4WRIq> <Gr:= ҩ$ۊ1+D U; ꯄf\0zވdCo+(?*+yIIdQ71#!%Bgi /Q:"h?16+ 45$ o,TM^˔)f@ u">Gס#WS8  FB Vz͔.O-.v'@ێR~2x`sgYKUEL621YZ~Y0*&]a&)O9h՘zV2t2>\o7!=igZެT_ujnUƉVL3re6߄m#؟fZub2*,|),\DJ-l59zԶ*j)Ȼ#47jJ+iYF64*FV]n 4N3tTnpgYEM];-uD.Dg_XW`QwtL`-Օ(ܣ#\Rw@֨XFl/AG YSa1jWJP~Z-zŲT Ux}E}8GGٓ*nTWzj՗(u9!\QwP=r_,(4c,E2mԐ7۟l_پ opyYk_ħTBoOG/yNwą[I%xpI$;iG ;=owfv+ċC=:'ޥJzZ>TZYOt-߭'_]N;x;zODj=a&Ddž?'Rň_1$ró {sW5hxfL$ I$_b1zIgD9⇞@3B$Q} R+H|IGRɗb좒/MT 촌1 ZZ14T'y(.8Uw{ N9srYn}%Vt+; @lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0008-Ethereal.xiz0000644000000000000000000000450711177557523026026 0ustar 00000000000000\[w8~ϯC 9=M` d 非iY_Ϳ2-%hSRY*}U$qoJԽп\ۉɍh/1]զ@u '~0O'-ȳ n؇9>CtSmmnm9xlp?g6hCm~ɼ5_d NZVlW^01^M5#g* l@m|abDsf: *9 \85ZI(d;ZY86?܍O>mӆȳqHrWvv#0~_FF܆bE`ԳeB^`aE ~e>yp+wGx84> 17J.xCБӪ"D"[3 8v< p)n$N-0 Xмosx@^ے{Իy[;h= e9 BGgQXH"{U#]C`]2uG(хŽP&tW!E98."G֕4p`̉iDKUH Pe-=PCjM 5r4쿩d H_\ v*NebI@py*!>RM.,/r~=JA.ՊyGΖ(NР&O{p$JrF^R %Ԙ6>N'ɍTɖi%4 9&ҧp,U `ٷ;rS*WSR.7WW/{ U;se, })Lx:8})KMZnKI#K(#B.e6S""1WEO #d䵈Q1WvluQ_e,BdQUɢ~+Pp|-B9KLH 8q  #Ag sLR/ SJzgeDc{E5S?19ob[+?:E70Yڞ/`Zt؀:ȤX.xFMcu9t2v-ːi㔪tv19I-I*_7f%~'P; pDͰdX  #V\*V, IhǪeD%%?Ro*vVf 5*e)fBI՟Φi TָVN^"{h ?9!Zոc4lggh 9=dgx!D}=B#fO~@'`}> S=;-=Ѵ)g93Ee[S~aV"+hʯӔ_#_:-(ִ$=LB9q=gȡ#oLNj*"MA`q,؆?9jfu֐|:SwTvw5s|pp==6$x&M-7$[M[%l,N5[M7ݚ?RGN_{(oovWw&VJn5Oɹ_vśs#8[J+ұ\?Pu:@յ0]`Zv멮zka^w:@0_? j8rfmӵTq9y ^]|ܮ˫2ޕ9+nIk$|i0z{49,u*Q~8$sER,{^++x"zQ$S$iu)ᓞ#` ~A ?2{ȯyAcvaYQi+4g.1Lp~JI/NMlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0010-Trem Lead.xiz0000644000000000000000000000760711177557523026027 0ustar 00000000000000]]SF}_}b$ccWe&łIe&8%ǖ'ÿ+[-uMS&o}>ϦOb9Iww(%I|_n'oaߪ?_tzP27щU|.Gaz&aܺ W<\I2m,zwpsr|`2P8]ɯqrjKIapsr{ax?w4 ?xOmz26II͖%QT7moëL?nJف_DeooZm9L"zyeJiF (eL5d۟V*Vi 5N؍rE\2AhUӫ>7W\YpO'],"✡=:psyqǟbA8T5X`YY)&IzckxESMtͬ:KGe_6gW.fI<0'8Z.E˧SnFlT%S0O&C6:k\-pɯ{RϞbE4e ;>NH/ }+'=Vsǒ'`{ vЮ=Q%ȿK3IKsd)Q9E̟s>}LC[{:ͧt j-e%hjcuI6JT̞UuRmL +vϏë_\8JWq7heTZZ; ?c2Z{9/.=,ƩT yZn [e|YasCvscz^vO_TrV{f2R\ܨ-D9 At3a`ĨJ@rޒ^mR)!xy rYAG%(MB]FX&zR6 JnU3og25z7WWKx~+0AI`NG6i6a78k]ڛZgftqvi2g@㊜O臦_@?,tw,Vaؔû뫓麛ACYKIFBcܶ-b}L$Yip3x[-e(~7wKd+bC^ )Xɹh+*w=2]=ʵ hs\;iݴf 3QtŽc¨SCZDznlSbd1*0Aa[;K#Kn71tyR;BI:wm$i""!#ou10>@xdP!aXf1&(Z@"7#܆ 0pP GU ۹I 2l(1Bw 3s=D&?c^QC31]{(@cJ)GJ4Fk5Jrӄ Ф܉Ey1 Q< T, 7C'BQr@ݥw`v e鉡{(C f$9o"\rCac$רt@IF!jn$w P5r t@iPP@rK) T̨m06MP{([].7IQ {2r(g\͜z > 4FIx;QEA`_^R,{? a7Rh,*V>޻ "(m)9j7@t^݉N`N.h5͖hfK4?C|*V.DofU'ǨY ydV%ZbH FAs] ǿJCeihYȢU;Ij: ?c͓?d.'eYzi6'eIb<J])t-xv:p}uq V^JEY)_¹zv^єzZ0blm%i1jT_r٭ʹfR`9X.YZL/kiTlMuZYeI ܾ _?K R ljjDu*DeGZc{u?u9mtMTE-J`.,~U$ǞuEhq(T rlMjiPJnP i5~37NӺ֫fus]m.^Ӷel[[¨ζv5"__o[ۦ2Mm}u%5`pp *5o8n7z-w 5O0| JsBB' n.ZW+ z^_`1__r%\vr V?CU%3cP|+Xܑ\IU0eGrڑ\T"o7LicѾi" ]_5j%V8Vܮ][awv]oV v]+t]\{_K1WȢ2k |5:> [? M##jO %}EnoIݧQ8q΁kLWt:e*N.Mf1U!*N]rJ+et34"K7ѺN ^AkğVJ@?Rf<|G[⧸XGW$O(XMZ ˍ kŀnjLIPLVrzu rQ m-!ґDWw1rvs/amNmh/7Vylmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0012-Trem Synth Piano 3.xiz0000644000000000000000000000350711177557523027436 0ustar 00000000000000ZMs6W<;T-)ֽ` %R Jǚɡr~bqevܲXrϏ[޻N_ӧc7fy4[Q]H?*h.)]4F4 Z? i84&3+!nw:J$K/AO,iYmnN2ꎻO wSH|RX.\'?eaB,&~q(ݱ,Y';L,N,ȼ`.b@&{yEVwt m`2?>8(  iLcZܵ52r}0uo{󘭏>/։c+)<nX쯘gcn@k~YtdZ Z6+wJ绕‡ܓKa#*aGRt@'@!RP5MپKVA&O'Dz JV'%mfh}tQ8׳V @bJ4a8ߒx;g4ab ūzsdkfA/u.AWXw=aW4y2WyL R;Dkܓz*Ku{ "5g)k^SfG,h0PdAGKB#Y̳Ǎ! ӊY2gwʦ:.ЬܶNeENL {Ijrm"NW$ +[b4HFZלI+eBjwj ҅;goa]MAQJ]N5Ic~lUSIڨU/"7VUX&k*Gg=Uej D^2 =j7|OW͗-ߣ{/s]޺_*u纼):@Bʋ<\B:s}u8>p_>j=6v}ߠ'k9Uߚayi9|}^plG5FAO?Q*0$U V)%lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0015-Simple Square.xiz0000644000000000000000000000344211177557523026742 0ustar 00000000000000ZKs6W;2DZgbLڒ+i "!1 *ֿR|۝z.v: b7 .;曓;ts?w>^}z2AqfbC9oաBݱO(7FI4txLcӍK&^?M5" =#>mW$ Q/ ]s,rןo5erE>}"x\j22Mˉ˙5Y!MC":H*'1nP MzBJF2l搈y%z* KQD8L8߮寧T{WuN|)5a<*j-oŅ &@wqC>O7;<ʫ[4ʡ:&Өtν~+\I1tu*Md4J-30yh`/kJMX4KN쉓0]Q2d^Yx&jus=(Q_G-3vMc! U')]>)P%Ti+Ub5BS)v!nFP]͚Q4|^ ΧE!G21êb$vnWTj`v>N2IN2!c؄9AJ % #CMk9I|~ʞVf1J{-wAe+wt b P 0) A6Ų$ 9:0;fܿhWn!3oZѱ4{umt kRͽT-E iz!JvT&0rHU|EK'EbZM jR߇Q/'hA* -kh,nc H&UP61^wv553ciO3#5 #W-Ib]/xj=Gf_ߛd>إ1ʏrsK`%xAHUI>ȡ؉ڣuOxrם #ߊdιotɮZݛhO$ /~O޲ uN;g4& -3YzGQ̒.͋eDV,$^adAC-DDbWQ$~Q!.րߚf~[sarxj8&wL}PӀ[ v{Y0wOD?rw[ձxh4fa×uq}mjX^d<1We͊0 lo>L7)x/+u!M*T0].n g;sZ')Kf 7ixҷR]2 7)!w$*`w@X+ g G*wٽ!/' HA/|Խn*|}HU +BLDn|x"Uyqȱ1~v&{jŎu#3VN9O4\sHH/E1JݜXp;cCF3s"H'`MVKS9"H*%QLB Ut撐FzJ{^W#j.qGQ>E?Oԟ;@#͎ߧ< oc<(sֹװ1K8+fp/8= uؗeZN*h{GqV1n:U4G+KDt}Vd;P?Q^;z r.B6J,5M:jGJ.6A{+ޡk&OZ̈́ kfE|V/iC1QߋLٵg9Zditp^{[v M8_!YhM|dAG+%ÂM@!\{ǹ)C*@Ӑs=dߞ=$l)ܪd'T&n(i~8?l|h%?tg-}yMsC*` 7k„@5/ׂ*ظX+kE,e&Fa[gK:K\pں?b;UsYEB9=]lݠPdh_$q-zڥύjҮrp}_&_),qj nnƋk!?{|`?U1kT-s.x&gowCd6=;L`!1M!ݜL~K$IQJ|X'Ӂ\y$Ctlㄾ sQ Ŝ;5kXь}! g3mt]\0)foFT>qKS~6AeM|Mehċ *s Wk#މeD4ar8*4%ߜT@e4~?\}/ #|π1=I`K}2~mq./lSU s<}g}Cڠ{(V]0 ؑq] }y_ryx;:!:.ȂGj; ۤb_/>}`:W7\|D>6xG>L /4{EMށ8[r?gK {1jSℜkW W[XI69T6:5;ѧ͆d0Rd,r6`հ~ڮ*T$\%EZyi=z(rUJeS'T6`(ۡɻeBYFlse)ί7Q'+XA<-iFm ;b ei)QPg__ ݔM8qwGttUR}"e|Eʢ~OX6dP@>(&,eU"*4R. k+%JuJo>јq .9F,(7^hiluhS-1Ңx`0,8K_`v;;Adq~KpK^vϭ̼gއLl_z=oJx[iR4@%%,͍WO!b6A@Mf&8:5Fl1GsJ r(3E !w 4K;#Bn{ 56W)sK3@,L&0\Q0ЧH;Y)V]7У[Nh(L@+CzY)'ljub*’ǽ9ǟ!=4>Y)%YbzVxߒO}l?Y+}"B}5yo# B.|G1_z q$k@TH^A)> U/r*rE};`_WZÁ@A>xØNSㄝ6y k!ڃe/Q\yP&z'97Go@U][ BE[O xN xڶ$o@/BQrHM{ f-/t}f}|K]XVS墂hVs o7rᭊу\f~5뚦zm}u[;êXmuY֝\U>|w ҵs<]PƵ˪9ʵ.Hy 'J3W &kjiL'H܅6%]Gu:wڸҩ[[`ljbtK [-~WWugs7 ~.|}Dʵ쎬R;o)R!bzkiX׊걮cݫ:c?kn\ ~x>Iүg=o%,G܃h4Z!L.;kKr2: i$e'p+Α]/ݒtlzDBVd+II?ޢ+eJ\A9.Bqiy늖ZJ1ԒCK CA觊B`M( |;25KV/杴)I?QA<^>ٗ0G cW}Z<_n}WVMmO'|8? /]Rlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0020-Fantasia.xiz0000644000000000000000000000351011177557523026006 0ustar 00000000000000Z]w8}ϯO-|@iCr6 aֶX[&e$HNݧf4ܹs%gYq\4Zo5,8Enm| $8}L,[n\=$E6G7WmdabGI5 "%f1FGyKs*(7+*!e|AS,)/\%I`"54}̾{xlйW銔ccаmdi]ڝ2"D 2Vxc.u(kkAdz?}F$` Ƞde2V,gsܕIˆyS{ppEƓQpc@ӈĨn[8!ߔ!@o{{?5-tW5sunWU-@^phR )hVF(י9[}V Koq$w@lme^$C ؀$&)5[Gn%_(aY9LcaO] aRP%iC5E}gY-߷ڨiBFZdP ,;o;IL'(O}{H2bOG*VM}&@d[@)([Vo*|)jkZAx*iv|c/wޘ}Q2YV@@ 8RYjPɲlqʚ($#fCG 1o'.7vL% 4zjk(" M:JS0O3\ïh\q \ǂ5pOXe@Ol"+rX]=XsI<.ts 5P;h7#vǀ0ymD# |q;~#L*7+ G8d4IҪoX@͓Oo$쫴;z2х("ũ^Kkx̣Onp:H}U Z{`ܕ';{xu_w?fmС!Jd2-AC!%ˊ%J5Jm)qm Q^E1ՂajO^H0(&TtFOxB.RC0eV"ֻ.*`Nx?8Ôݬ{:z)K H;  ]C㓫>:g5 MuV&2w5<:&of,˯yHXVվ}Y/ 3TUAgSU᳑vIDrV}{JQ=j|7'#{:9=wyQ.pQups}~8׭}}c 4 KsrlBO$[߷fɕFCC> >6+Bw|'oV48jܢr(J LIT%lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0021-Soft.xiz0000644000000000000000000000375211177557523025204 0ustar 00000000000000[S8HLf. hVlI^ى:yݕJ},?mZ ہIއ.Fӯ7?+8}2q -AhS~:2$!l1}p߸h|ݛFCkICr^ç vڼ]D+?$bLDFhqK7铛޸wݟǓTOd:.8%YTNݍED,$a`~-ZEDlle# 1X5 C=uTok3_!U5Np*l?`An$Z"Ej_5>,dO7W/v#YXl yPHī%/6z|-  ttd0_7\y[+靧tg3QߤEwʕ!w@]%8P-`e `EJwٻ g䃪p WuԻLo/J=! s.>2 {`^`#=˕\ŮNؖRal8"]wϢ܇AT7'#~_n 定)DISωD2Hb O=gp`p%ndN-7#n#y~n# 4^l>Ѿxl2Z^c&Xhv΂ iwm8l&=`0&˹j%so-#*xƉ1P$TaV?t'^g%E]+ѲqkY8%O.r";aH:h#LIt#Ayt%e֓}2S@K5^=hƚgaUG|fn>XȰ!:)֫SV>0ͩSɰ-t Vh$UՎ3`P0b/zɼ;IoP"u5y\(H} sdUPܝ.jщ #ɂ8ԡd|2 bZjXmԌ70Ą{pp!%ZyV, Mstne~j]KB5YۖohX_T75Y oۃwʛyy٢"a̗7 zZ͈;km 5̝5Cj%5Gz]Ě'%: ,J-u_-.%.Vp--v pVA|2˓w 0h 02/&QwLJslI/rs$eG/c?~{e]Rrm$Q}~0gdۤ] ggnzk᳞Zح'뉮zOS=ݷ /)6?|Xo:$t/N'o+$.1_[v@^~ܣ n|M00Έ=Gxe? xd5lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0028-Echo Bubbles.xiz0000644000000000000000000000425111177557523026510 0ustar 00000000000000\[w8~ϯ`yO!%&=4!-gnEG"% ~X$%4SS33oƒ>||*m9昮e;gջaoѷNӶa8Т߲qs@hU<ɁD`=Qߤ:[Ϊ ۻnڣn[P]wVq蜝Uoۗ $/:nR=}uX4dn[6GJ2$;`s,GlpΜ_DdLǺWP`D!c@ =Xom21_.U GNomQ#T;ԭ| ?b,ellVZ->^WV׫h́ލ!"]KB$pfUT٤;TlzpkCA?_iR< 4>/yljCHyd}gEWq_H,ۗd7Q1dө7en(?3Ɣ>;up˔"\ˤ'H1 ǜ`.5 L! /?zvS]6G˝;ɽ yr|8Bu=B@sµXMPIWD`Y'pUi&g2xlƨ/| uL l/K# j16k*\?]M&k1r5xxʙno"~| )ՑebX4 vBSdK<_݋5{NAhRF]:r =M[T d^HSc* ו̞A厪51Bg5^t&-v|CA&PMG2U!ZXCER,Y:/D#LPp jFBT fF#*;[WmWd '- _jODEaTb2=_6"I>sF1-#u:jkyG_ڃ~{}H^BZѱtjH ;>,<;F-Ʌl+8B\2ToV^LpME#=SYJ';nEraG^<-N$Ž>"t1ĝF9%GTnmUV90xvITRJK+ݮЮ|_KhCi+v)v{_[y28S+HV섾Ծ~}, =m [48eQiAs1dj/#wlDy/xXnH )b/Gm'7Zo_{#=y?i}ju[dmd RvQ?Y_t;JraUH:.๡ۖ\_e0t mXr=Ju.~(>y(XvmՀob`uTMb8$.4xU$(q:4kIdq?Y~@$c*(˦يWI6n$v:_|: 5 ḧb{0 gsb_MS`-S/qCeQSؗ\,u i#꭫{ctq5&>}8(4Rc 213t[X w3ZKﲇsT'F4<TKSCb9|e|u˦~BՕN5+Z_֮IH5ZHՊyĈ1(8Q^|Ndl*1`"* ~bBUZ<\㍻RnLn.S ()I)ْ|CQH*q[*.턑%Q)%{HՆJRIUz߆2y9PEp1 &Wy>b,@bA5@9l\)VM4#r$9vv3$7VlOHO,xvHTN-HWavdzܸDF!$Iw׵GG)O**4F&[9VMߠBQ,xPd]*3;op؊.X&!m~QjFZL.:@MzPd'B\$H4d8;eb1JRw*+ -82sxyE&JEc_8.|,&:5>puۋOs]\^Q<}ڬ_\uxA NYG܏7uiqKZϰ'+p4^-VFGMk^ .-U.W㊋YxEJ 7+8Я2W_O 2~5Yt;F 1Q9jpY9gkc>BZP!]qQkkw*/ʝ wIFxR~2k 22=fTk,)Jkv?sF<)lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0030-Slow Strings.xiz0000644000000000000000000000366111177557523026626 0ustar 00000000000000Zs8~_rO=jҤ0Ӥ%e. w"-$[cْ!pӇ>eb%~8yYpgɇMsQˣ Wϖ:n_^G9u`~oÿΙC&0نL& e7bQ6S%[. I<7c¾mEu Y@ ҆%gO%F1n@mP+Vm$fCT@!:6@ RjCMCtlAGD| RV%eT5[yrdS8 =ObJ~n'&эqIcF4ƒ 8#ߜjIO =EUB]HaW/UǠ]ԇq%ÔAE+\QrrFmzhu>\,u i#꭫51c2h灻">}8(4Xe0r;fdNb:g趰fѥs'뾔4<H)!s9|exu˦>GF JA ikN܃$aU)ҪijWy>Gd>[   W.US=F{D$G8Nolnp3Zk)&egDeׂtn{(?d6v=IE Ј_aYɖjUӷBhrK\ed K vXJgX<anM;S<,5료꜇+qwDd* v9 =eN=&C kMBG}zeT)O77 }v x{ ?^hB}:bAZGH%i@MVW'[{8qBCCyGMcxnt..-*U`"%q 4i+{eZO!~5,KIǎ)⡆(a il8Aج  1GkqTjgA}|v~w5v=vg«]6 ;T v/]j-Ey=j<)lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0032-Pizzicato Strings.xiz0000644000000000000000000000426011177557523027654 0ustar 00000000000000\W6~'Hz2m aIֽ[eK'@GJ+Ov޽M{js-v|]{Ugvl{9{צ!߲u3AiMoN}rySå3v\K7#.Ռ:նwF]rv.pkf!( RMf+֤ ~uBl917\,XЈɄYR.@)C o1 }\]ƔklyAfslc{Ug^0\ΙUC ܒ?zdE3m!]xtAiC4rI@Ioܽ4z&KoRP/#7Ei8r12:gP&Rp;.ʖm4a6$!*[ BιsvFF(e^>e X7>{o 6lSׅ N%ZHM= ȢȈkp#soû|cr#U,.{OevDdH&X!uT ~%mO։[&>2Hc'ASe o$.!x!4Q?1^gk~) Z7v nWoQ RGYTp$ӉGꎦ&E3ͧNs^$h" GcٔNA Hir<79♬%(|?wl.\G(,#Idwȿ7PB[*vHrU4'W^ݲp4 I]9CfLh6M]r WBYcKѻQ^RbT6 ح*uh'H( Zn=RMBZ_ ޿2:IY?O&A ,tV$jkX*_󐓹T 'i3%qbhvjIvG~Yd)|Ns8 #Iy> <~,{ XX,b2Z<uP]ęšs0Yiѱ-u"`tڻP42wFo,n`A&x"(.M,pK d(2ZDETk̀"UVavhPf.BfUɢE#|wT!4(;d1} ^Ob5.RENvŔXJj*eh8Т%s>xqE(2{L$-MΙEdhjy2Iډ,eIq50h6x;Awm^$B&gSVpV_hD͵Dj'Ev024[,;2>wi!Y!!['ňW9V'a7#ЏzGI9ziLX4ZmjJgӔv݌h4+gR oRvy6A@¾1_¾O؜oPTW[txKsBsij?@{6j@3V_669U_`~+ La~+ P3*[Q|lcTo~An3Mss ۯyO^ Iϗ{~ iNih[ UL@GOU>cEUXz#BuN?MBۣ%XӚnӼ^6M#s./X]Wq9Ѹ2[.Cn RF;f7T7ITj}5[h`B/ 9 nePtϻP|N )w6e71$2"V r=M|Z9Pعo.]n*]I(i%G %JӮ]_R4튚%FCoΤ|hro`@+u7||*~0_}]o}E 4?o Plmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0033-Trem Synth.xiz0000644000000000000000000000401311177557523026260 0ustar 00000000000000\[w8~ϯ`yO $@8IKlY (n}a}IÿHܚdS?%أ47}3tÓcWX{Q;Vkx>\Tfˣ]{/?+k~IC Rv*XnHnDph`E-*Mw6גKvQ^+7\(`&tD^ROnM֟Lcn #>2- ToŜToVH9Y2XnpK`@#sfH}A+<?SӌYMװlrw7J"AgNeYůtY]s>^W>Wϯ4d~QcsD!L(,/?|W㙢-AvLPJZʛ ge^TOlޖu{ӈS<' 5/٩olICHxh-%`IBOĺ4\屁uYvh gq_Mi(fDhk"pLd{L3@@f<9G-r¥:L"#]o;hu .`W[OhpmV`g4]lA jw:$ Qƹׄ" hr!+͞{D y̙:K #mODgMf wHsC=p -D(Iϻ,\);ȇ #9Jd+-B2hF(1gB3]ЯCr90p47GwB7ru th,:) u$u V#kHtF@CFq 6?xhyu\I zAAPR> <>kI,{ H1l&3TN~Y6d(/Q~B{^ZYiDס*EJ!ES!AQ^:AJ Y2ͣ)u҂ q=+'σKڝ%x~Ji*!~ 5d2JRDEg -J݂AJˆvRxXBA&)[,?QFŁrq] 㺨%gȖw&\ yPšJ.rQqIFQIӒP@4V]?I:ԝ܌G^I8ՊzNε#"TKbjVz\5YWS )OZ4]nO/X;oѶݷJV0IśvߙUf^+-`%>WV~^ =xo5w`N~cۇ4x=uSe ]zޥz ]]ͽԸ]z/ߏ>˱Ӹۯ8D/t zd] > w 宏~owXYLW+iஎp4qg\[ھ_(HO/|o=<|Klmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0034-Warm Synth.xiz0000644000000000000000000000364311177557523026270 0ustar 00000000000000ZMs6WȔ?bɨhjK$u/H,w!%9:\,o@z<,IC77 yntw?]/FUa6u@wGs'ഡq9fb&h:^"2wK={ׂ&dyttRD4銥 M{/aܶΨ39Fax$`rlPPyJ,!a$XlRDt&G))K֘˞A%'2]jyw7HuRTeEJ]^o ȃiV>^{_/%u'|.6wފg^㟅3-qBPxOyGK`Ɂ.:D0#H{(k= boi` 8W)9p nK32Ѵ\k 3g2[r4' 2%ٽӶKؘ{BRa#An&9NWy㠑"첖ݣ-7k[n.Igt-YJi3 #-HRF֦VlFBA [k-VMH`  d;/f d0-ܿ,j1I`f]PRӲ3%+`U NZZJZDc)3 Ud̪Wnw^N$,Hy{ޅjf>MsG*#@LZE@ wjӆ,4錎#on;];zS*[-KÿtE,B[ ihPӬnqB eeq#8jE0qy,P05MAW,~0dN68C.֓GS}\of*eF,^+EIi jk#H:7_BK$,b&_g9, c*gZ${yi>APTɆtz`ρAYh }lZ9<9:k!5;@l8{BA̫{4[|4%ί?ָϡ,z -J*4 ܛez2*'x`r] ::˯i po K\Cmɀ,6?CriRbbnmZ]<`y;i΢hei+qY?܅eN|t9F6?ͼKj5|Qp^1U ꌵjO>%#'p c6h<订X <̃=o":y,5}0LfRg=$~HutZPEm;tx߬luTQ&FUw"EVߕJtQKO5k>F +Άo;N'.n0p/Re.\\ݟ>۟kPۿ~'=G%ؓƵɶsuչ;Wz% -y΂O8g|uHv}Rhۥ+xqkUnrk$8'g:m 8ǸSupWsYPc﫛}=aUUBL[~0^-hAج ZdaD(J"4#O]w'lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0035-Hard Synth.xiz0000644000000000000000000000450411177557523026236 0ustar 00000000000000\[w8~`yo B8Cr6,v_t[$n&)~Xd 6myjci4Ë-|uԛ5i9wo7wo_||6|=v9]^ҤwG1 i]< y] Z}S+?GגzuCM|f‡[5?5 &ӈg2-?<8 Zɒyr[- > "l>gc') "?Ր9 f$2X/g`4:``(\Bo?RϬMC֯,]ۿ-ۮ}p͹/>\_>Z5׫4`n.BAPN^2 6W@B.\S?j5bKK&foGgl9֖u?BUsYKvj9+['+,^&hYKc,[<7.]eL?f+,S<n=:Qr89:k/&{hK8` f ߗI;(,WqO@q̹ ŽK Y,0/mo ?;bp6 K>Cсn7?mzYBTK["6qSԧ{8&m&eSUuAq)7)Ŧ#B8P)%XM90C]~"Qcj\cJfWDsUDCeaдmȦ7s/2t1t8w0temޞ^{T7xWzT\C>G8ȶ=&z+UMEzIlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0036-Bright Synth.xiz0000644000000000000000000000420211177557523026573 0ustar 00000000000000\[w8~`yO Ӥ&e7Hw/:--ج/i;I`6Y?553#inf,݇Oe9i[U}Zan5O{'ǫw~^O7V0&Cz~K?ŝ7UĴ'D&{: u>Ԫ7uyeŢ+vYun܍-2KZvR3QgܹNI(-Ode&GHCI2w#V.Y39Y6waӅ1NUCPx`D *zjmSg|VU0ﺃid i00Hc^eP ҔWegۘ9lҨNeI=d*P[(͚qC%x {?X ^8L-&&ibz)e}X  lPhA!&X ilhN@k\=eA<[RŹwnn`+ MQD Oչ7h/!65,p҄Q<ކ]Hkh[5~WX)45xFw7`0?ߟ7FsAx9xd/g6;ҝt^Q}rh%]BNۖ8qH7q\B3|KHzZnSe$E.+^v>ר*{7!$Ѫf;?w {Hoԁ^,u&#s(94Gh *rB퓕7ԟ;R:$S)ˣ VukD-sAh9TE֋A^<`*2xjj /ak2e|eʼ *5:ZH폲tuhDf*oqX0(IQ ysЪ74ӂ9qW1dB0Bx$݅9]5t\΂8Ԡk/xAŴ$ 98G`׭գuz"{iQ9i򖥢ţεXbZx#Gxa“e⬼Y"#R4$:ETߎۃnj}Lؑ&>AS̘0UE.F?kQrVQnk4NXЬ_[mF8*ږw-m=ԶqN=:EOi]BC웏Bn62)5u1t%5Vg_.or>Ղߋ~mFo~[涢3o\s78+f%s*Ko<~{nom ~~E.E_S'zzS(o ~Weno$LE ~mc@X_EyA}+Kqtt񩉳籟?ڞ|}U)S,yob>PO@TP.䟊k9.Db |1ѭ"TLtx}>jpiGG1"#1 _ZI}XCx$0zo؄D KS p?f OIXt':*0wւeGW#k4%_\]TSŮg#VYHgpyK҇1b PS9CPr4/DO\X۹rEwzO4KsD5YئJlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0037-Multi Synth.xiz0000644000000000000000000001173511177557523026460 0ustar 00000000000000][s۶~ϯ{*ekIǵVRKi¡%f#*I%qYp]R[Omd~;^}×|Saw; i< 7'篏x]N>\xNf3?opq_¨_eϗ~:)k5߇GW7'%k'm"ٿ>9K[ &+1H:кwd 2G4 $ j~li^YqpoWUrR (D^Y7Sް8 ]e엟"ɾ 幫6sEqPM{AN5 "vnW~_eʔ1:B #cX"{T'4f^+$^aTum@^+Oμψ!U6'FgVNρGG-(Z~ 4=Tmz6q\g.e>1X6cWYҽ?YQ8?ŋ(HS>WK ^6|wu= ,@De*mt&]FU#u#`˞Ds'`% rn`Iߝ_'qT]pw$z8>pI-c„>= */0[Az ;bqTzNMƞ\'jPLz䵄/`m-X>%#q ߫RN.v'4LL4Â&3=+XI9؛]K>@z’%v3_]\2Z`j߮FZ@&NߟiԬRl%tJ5z݂mËV0U^הp;-R]qXD{ vT¿g[P@;Чs[[HԚ6BۂUi-utDD0k[F~]t7ن[ޒZޒZgSf6çŃFiM$dd+S"%Xs?L*jifi#F8Hk˒>'"2H" ]ſCx'.fEo݅I*`K?YT"IA[z!ہ"A9'7W#!} 92Jc>kɜ- ?@wU{±IhanJ>"{~cGV>@B {%fDo3ۇȏS0UOKim5cbAnrO{/l{.bUS3Åëžaذa%bv0pMf4 Zڝ?ZD:DRFp6Vs5frDHw}>n"W*rDPrZa9[@&n^ksp35v0XGP˒= øsQdkZ1GanSmp7!uKr!Aa]ئnInNcGO@ʳ$;3aRLPw0M*Bv b}9 oa}80dGOv) c;Upnۀ);aG K h%eS6Eamdk~6$a[w;p2;zrH6%Ak 6I - yLݒry@Q`v(0&im 1"bn(ufb!IBmh'( d'R:v_9uSr6La07{sP%bUTʺϞSs'*e%a!h ̔\oDT`Prw 8l15Q~)-K-[y@+(Q(W@UHn \f)X7!j t dW8E6/ײjCy9``#C1>g)׀xdZoX K(r(D [Doɮ(ܔ#G+ePyywĢ"&9AOd عMy x\"'N-TY JsoP^!-H: X< Λ2sS>.My PrJ?`сr"9uMXyrA.<`\yZk.<2rR΃Ft9jq)Kk.<jD6K9TrM:8lq)zp6ݥlK9XK9īvj VNt9)ŲB9D"[ץ,:P6ť70L9x:lK% nM^ S 'ݻ6.;(Or)߁s24]P=]6P@0TqKX&s^6rʅKxхr L`/a*@ԇ2@3 >r.C j% ^cr=.=`.hӥy e#H}Q2jjxK/Wmɾi0ly|C7xTN}JIgn v~-p庝HGk *)K bq27ՠ`EܸR^ ?=̍ lh&5,hSѮ]^7 yYEB+q]qoIAC%űTp)Ao`B)TS Cwꜩ%pUx^Ncct酚v%+J‘ơ,kUlZՇsCko/Vy׿ye6''FO vx9n^+4fd !_丬wX*\(nPMsW Ȳ.|X W⣈CAlSfCHj`Uq% W-e"U*q8tMrh l-%҄63 D4t=7Y.:҈SwL`hk@\И `gepL7$H[dȈ®#+Nϫ^<E+I]g!{^8DOZhp.R.[}px_-2b< 5|hsH@2 ,,) L|-= һ#`L8Y6(wPrZ^n+gHkhBpTM`@{$MgV,l#FB נK/i쉶jBGH'0LRn TfrfuJqRaC$rEPTxʺS1ai.EE6t bCU*꼽)eh -YcxJdGRL=QT٣p<1XD1 XjX4 g610:@AykRWgKh)sI|EyF|/dprʹG\IԷ.z=U__-vS?G׈%kRL=v.H%Bͳ8{BɣWJwݬ dqLJ^/vkP]\S6V%L*;NJ6(T O@OOj}AG҆0[eI*Dh] pTXZgr/rQ3hxL w9F3z . n/5,c,|xt;uc둌&UC'pwuS m#V+6 sj*ҁGh%KvSD}tGEy"eK:_ .ѝ*fuʅ,:!VJFzXI v wk/][#@6Q,~ݵ/QztWj*-E!45ժT Co8;7_溸8G|Yԝ>?\;㹾( xqKUorݬi$8k'c_ 3g㸂^ς ,Ky9aTUPCL{~ѰجilAج ZT`D(J"$#(Ok3o$&lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0039-Medium Saw.xiz0000644000000000000000000000405011177557523026225 0ustar 00000000000000[[W8~WdNrN' I7g!a֖+Dz%yv g7O#Ó=k-BMϲYv1?m8{bf{C5F[8]Qjn_<m'6MJ8 W Lܚ!~1mi3h:, k}tyNbo+bNĞR0Ꭺ`>D7z5nOȵ-GaY2z%U";$nG6 B?r +ԂMY.)}H f! ?-c:ylY<$bxj&9~|I^pѳ>}j}ju[rpH"escGsIB'ܬC^,^P׳.vm *"MƋu˶1s%9Z7iܩRK8)J67Č$F$P p.Uyl ]pK4\\9,3>S`I@=3pYB,pއbgr-Wb,4-8X(8z6幔h-OG8x84 !Y}֞jDX&4 1>ѧMb!8vryؔՄg,se,Qa\ʯ@\gCPbʹmëє'8]nY ]^eEY Kj JĹRсg%M;΃W鹤<o\8 O!}Hzҭۚ3WH9,m޿Eq ߲=<_&bpvhqxL6Uu"͒di;IC2=ow6u"dFJW,#~ (Xa'Cz $B!pgReNnAIAkP{)Kː7}-FMOfbkw-}'0Z~ T )^6I'j(EIƁFYq?`v=/Ⳉ*dq֫JMV_;$DR'-|,nf0'b섅j:!-I+fWwى A[0zʆBqiBPÞk[,;Mx?ԥMΧY/a{zrP=_76:[˪`iݑ]x~I-'oR~!w2ڊS7i7GFsD_0[pKj<sߞqX:w2χ~zo7wj=W@qyf虦Lsdԍ0t#|63L7u3Ӎ0itjfz xń4^1#WLIr] G"}(6R[5;H|W; 锯ǯEwbK=oRz)4KohR(iiBZZŴ iO85F:4- ZF*Pcê (8Xث9toC~SYlbOzidt+IRf U״i^:`ŋ4 ڿ. y6lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0040-Hard Saw.xiz0000644000000000000000000000404511177557523025657 0ustar 00000000000000[[w6~ϯgɅp&{h]NHl}QlklK}X$l쐴6OkfF7O#OOKܳ`Y{ּ O>t9}7\=˚Fw?-R-)5<6MJ4  L!}۸`<͆kE}ryNåKvּ]k7\(` D^ᖪso'7I?O5nhIҶl d$TvH-b> %s-j:%sfJc!*H@e%~{lr-h:^G3 @ /=6O][,ȽE+yq|:ї )y 8W "G2Av3!48X>=o2a4ȰCv%`- YJXRiϻRu"|qKx{mW~Kgj0qMZ_NnYxy6aI遈!Y-(a;s(yV3];%Q)Z2fzn'I1( e0v]|-". #W2=$?UA y-ڥk3}ҁFW:Tw.i*VI\W8ÕaW_l XP9aTc8P9+Z׎[Eb0sNQ31JBɘ 6{~I9-ʾ_'Kbi^%V+[(7—T6:*Usj/mzǘ)/UzI*IAaRޙJio9<(؊ϨXD;P%[G(҈ۦI72=`҃DmW%J>0,p1=H; IvQh qkZߠyi_񡹸qSRDV# G7Xsqѷ{Ta2@`RB- mI'j(%IơFY]qܛ\GË""f2x8kՊvMͭb| "J^jUz"f+1^q5Q F3/Uvb0ƭBbP>>A R9`(T0ys%ň_&SN웥GNsD_0[Kj,}*6R/cVp*5U ~qzʭ/o*W"Ut+fr}zUV/fōV/FyV/-TULːFٸV/1:Y֡i͔?ՊDKQk@}cyw:!/=,g!ك/J%xřzmkZ4r/U8ME jQ6lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0041-Voiced Saw.xiz0000644000000000000000000000457611177557523026224 0ustar 00000000000000[[w8~`yo)~N/&lY (X$n&)~X.#8Nژ47|?{]®獗7  c !{DS?]!%.Xx޹ӥaT˅W1xGySЋ!KrG˅9cbx !q dY #"Eg42IDhk"PC'̢Yh"}p#?dp JA-7%Lngs4NxYcwKZVCˇCnQq܂NsrYV* lMZ{qJwhVg:_~pl#KtJ豀na#Fa URFAQV,)_׽'Wt*)}h8aĠDו{It'L'W܁Ҹ-wrhw%摙0:p:2&> sK{hg%vˑ$YBDkTGEXSPFqI:-ڹsLB%lJoEX&1~)9oElɕz;<\i.ryy )6V$z\ymU1ТRy>wTUJR̒(޵}MIL}.<%dk1xN✥~thf9jA\KM+rǧ ):9n 3h3MFz]:- JK@T%G 9M| ޔA(>9j 6)֫S3Q Sɰq};iEyU{DT0Hn -2Ya pJjMrΚq*U [D,N sQNLf~HP.RDɬTiIr8hw"oa~_;e jsk%`ix%$fHh "=pk-VR9ܰ$Dz'YC~W9\+c8OjUzTZn}aMȲQ.:CG\8 ֲ\4a%n=G[Πr b>T5UpA';quf{ކbw5{BñzN;UF>*U_ ֝r/J55(%|\E_r"'̽ӮX޸;N84W@Tyx91qYW7SM|SSSR@/r&ՔmU>jAdQ)[DEʳ5eElZdwP(T[k^=&CJ ٺO )14TB4G:~Fr\ s$~yBӖf aꎶzYUXdq*;Yoϑl'GX¯nyT uw|KToVowU#Zk;Z 0THw 4{jKl6o;5-(VP׃h^-3%kuD뉮Ձ];'V^Ot:A=' (d'$ c{aDoڌϘ$LF%ic3xbK*~dbGQDFJ`lٜ? >:Js _>Tg]lE|͍R XYw?b%wT%w$N 4% -suҫrtm#,RfoN00>lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0042-Matrix.xiz0000644000000000000000000000406011177557523025531 0ustar 00000000000000[[w6~ϯgIH9 l9M EGE.ԗlcْDɵM&˅lr͸MX78 `d-o[OYѵ|i|jXҀyy̦7/% a`ful'̞:V "c\KB p˞fUTd86lyyo_Cn"GiTR* 4.퐯ljCHvhegEWnYH*{dy4,cSf| !q 9OdQ&FDhDh["PpNd,%y2[ Gb1=bIɵ39J=^^;~*#h[ZC717hՂNyGq0B%JFGKK;9g<:ZH(`[%rIu@<du-YD(IsnX:ύ. "ӥH3]U:$o%tb;Pr.w!99:HjЄw`NКY|,9:83ǶR.XA꺕"(rF@)4tp׍GT xD*EIEY9]!~w"f &GͯAQF'ZB_=X^+uT22B g8$#su*!!wRGFbU')iҟGѕTɖ)y>WzNAHR]:j=M[ |l+f'@\.TW/{ U;s0<~جѱ-5"xz5Q]dt`=#Q3XPP %G 5M^&SE|⃥sc7ˬE욽JY4_h#*= 8 ه;iqʉvLP-8  #EIk%GIj}nRtT3@mSiǘ)Ɗ"( `aEEaTb2=_&:K>uJ1-C 6jkuG|_zhxC$CZѯiٹH o ?Cx얝'~+Lv6KtjL1TÉ/ACL&=ͲqQ-.%7gh*Ϲ| oʩ:JeNsQIKt +50R\;%,Q)&jTZ큮F Tf.L+tAJ:3t jV㳣V'Bלw#qwC+ M n/W}0Y_N MUozws=;%0~2}[%eH?i/K?{&L3Oe =EWAsTj+n5ѕJ>_Myp&v2tl :;7H CX'3O WP}wb"X55ұqZj4 [Ru\ΗPxE˗!Ed-_4;X˗d! _[at-/M䑨 98 v=5͹);~z7}sr,-oO|F?lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0043-Sweep Matrix.xiz0000644000000000000000000000417211177557523026602 0ustar 00000000000000\_w6`$pN@Y HEGEp 6MlIIuښ{O{%݇ϫey:uqӵl~7?^jeܫu58h@Xъ~u=Z_l'Nf`~RߤG:1, 0&`4G]wYs]k :nsw#{ۛ&Hde[6OH2"I*7; vV>Y3؎xs=l&sfJc *<џeEz{tmr p:3n 5~9}bl]FD ^^.k\kOZz% lP~R k&nȯp/4ʵ/D7oZ}MMmͶ.ǡ9~)6@8F*幬6%OmmI>/vW|X$p%* d{}M__P0" V<c:Qv|3]g򣻄hL;hk8 GtM;XO8悀,43W퍌6ꑷ;zw"/Ϊq}@3_%ۉ[DT .QU{ M(~>&naGӫ7'}}SjCFxņҗBSs [okdqz˃`e"k4fRW̛}d_P'a#p'݃"Oc2. G$54N.Bi㧩]:1@]nϘ }byCG|*1۞/XpϋZt%1:HD!,F`hu|_ppC)L(gF,1-<d\ltTRx엝'~#L Վ}bT6j1馉/Dad.'3RZ{y*0x.R1aȏk7mfa]]Vb,g5w{sLײr./nߕӱ]ޥvӦxb;ѓ]>M} {3 ߂zug YsعWNpO>Ctl3agԹNqč3G2-O8G';`s,Gl9AA3C#¦SfJ8}2/ rDM&˙zdtsON K0TH5!u.RwH95>cOëFz t硠B('X-PX^bN# QvB%ڂpfUTޤ7^7l묹ZpfCogB_ӈSܗ2XdCU" 1"e}9 \¹ui}"\\2 sNdԹ^&7h 8` 6sM;X/cfKǼ'8^[Qp"fٽlxO&cs>Bp{5v2cYv諱Cv"5X!LU6"1 43a0з7$r*b؎v!=@G;L</ ޏ'iz.\l z.lQ̓P<Npi-r+eIֺszW|b:lR.sf 0%Y2{dY-iib䵃v0tn-!ʌE^J*LՏȦ @eށ*oW0X0 CtZ_P)譟7pݜcO3qo&d ā{{]JL&ȡ]6XIND$RLK"C؁F:nczDdp8kdAysL3?aly2PF8"%^+6 pFAʰ=h`1Ke<'Fs~달|#,/?z.DD61Q462 ~\Yl:MAşXφkb ex) VO)5(hQzS6Zkj_D,mōدѰl3:$,%/wV-* %]Chh06.P=`gGEiNh\ly!8pۧУx_?őZlۗ-^\NS%Dn$=.X%Yg+%xU :7fnŁ[Nm2QjOˀ2D ) K",2jO-&a#qc^,Mxq-cJ!hi%+KqN_I,N ?;ޞ۳l۳e؞RvL $_<e8\CZTYrʧ<_.1ҝxYx: NbE"Ij.Z"I$CIn) 7 yzgyxjxCyx\ǝ'paIr=&[%Yfɦ|Am% B1]U2⺗2'.!2 YWO%:9dXWj+|5R*Z5_3:$q=L%-$ٖKzнOc@(􎈔C`i|Go KWWS.Epq\J.UU+FӶKUwya]p\nM6L]m8Vh>xj]OMnv9=Am*&cEe\M81F^d~^m x}2PGĘRlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0045-Hard Stereo Sweep Synth.xiz0000644000000000000000000000545411177557523030532 0ustar 00000000000000\Qs8~ȉc{/qKlvQ,:֖4((HNn/Omd$A#@|ou{OGzw۟o?y'o8o;⧔ۍv/oF.?Opif~pmumm?^nFl m}=:B@Gz_=qGm|̮G7b|3O F۸SfӄJՍMȶ<`FnýYB#W+8uLy A ?ێw<`L狛OWB E8y揜o[w(YV /M,AW*z|E@ 3 $R.^ݍm(Ȫtکd1jQ}T)^7lYc"KJz+ʤHRjra/P5 Wyljts62]|Dv)}d4,>ZzImm(N1>t'e>v-,ra't+`-s^x| QvSK؞o<.w[yrb8k0,A{`[ߍm5h$&܅z,Do+?Xr|0WLw vv=[ pC2bN]+\Oк?#p1u<}G׍}GˋX g?vC, Xn"{`Ƀmez^LAt$YIvF;-U!MNAUIi2-}/h[Ae-\܌4})sd< !2o!gJ$wUHoD]GtHd5:@C}1vU:$rrhFȁ 9˜e r"Qu".&Fс`B{J MT%xw~)Zx]oҎȾBd_1g+Iuq:]0t=ز)(XcGGfKj %F*f6dg/eOJ0#Ma3S"_t(ܭ%b(]] M%z(hcruNGz\z=)-FwSP4,eS)[ƺIwTDNSHjz:{tI(6J=!ccR mA(hoJ(ƱASR mYBFmJ iئOFicҍ Y{}cSæ t-c`^R(5\JyH0Җ m)H6O> Lc/budO`WeMMcLw.mHisHt8{˭ D~S=6w`J;6$ʑhs 6_ X#-s9Hp:4# cBSn+#icLA4zmJI66WD yohisHX yUaG Iv4j=;aY'ODRNV\mMq">i5@#>1O!J>E|ıX%l">B*pU& W,K5|7I\>ŷJ).nP+Ob^?4IjY,{׌umaI͌uEқ|6W=eyrϳʩ 0M~>_C߳akGRu˷6sYm*l*k!*`WZ4!aBn1 m N&ë3HO*L;PQNC6gIA[kDm(kmZVi,x"}q_E܀po*/}ݩlaÈ%IѲPIy[GÏtrBJics'=uRج,j-֬v.^ 2({4i9zVyEJ/_ZHYwۉ1.+j}vVpzZR^A1_^: ߠWInJĸcDGhw^PXRJj"R,8jF#lk4HQ_Rb5zTz$VzƆuc*pQk!,tjt9~:| >GzME ^{g6OH4>Hc}~ =Az}t0iX-s:ueueA{n7(m$၁.<*}_\!$D,zc#m'l𳧞KSDuX'|!ѮpG;Ҷ+$w mrng!Kn]+i;,$*Wi֚B:. T)mwJtt >*FU/nȪ)^cRtnUEEOG&ջBdm*dH*꓾퐰4`!WlߙѫJ_S85mUME/ltz_{l{" &D0~q/pbFzt-ve-gux9]_nK ;ߟ5Frd_f}{8߯kj͚f <1 j˩|T;W=<|sUm>z}sZ8l?COa{yc\ߔ<1b;OcÛE͵? Yw3+vkX -.|q)qzgxp f[n:mF>wn*FX BG339D ƤgLZ9S?pL$"a#"$Txtٻ<%X :01NΦG1Zp018#]RV<I5/OFK<(OZ2 䣄pb%TE fj{W?̪^_BH͸&A'cڈҦ㔗P0 !\q2P FпRfVs¯5zqSՋezWXQrWՋ\߮x٤!_9)Xb P=/U/ @SU2˳wI%07H6EJ6|oX#.‹kISJ6=Jol$!PVSpݝ+Q)r1\z ]ݷDzR Hm6oqiEn~}r.*_HBgDE)ӛ88ɏEoYCwPOAMhJ׈cA<,Yd R=g'UG>*'y3 l]%? ##VDmBSW98E5!_įJ#&Jk7`}>2$'*wifG2/-$)plG'k} y7-iIYL2F飝_`6h޲'$D7/W,cx׳nۊ/DA$lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0047-Master Synth High.xiz0000644000000000000000000000742011177557523027456 0ustar 00000000000000]wڸ_{KLBs)|mH{`'lmr;ƒ1mBO%,Fߌco?3 ߷-w[O[}{O_/G߫py_o<7uoOt7s(A[ ;>Mu1M݇ Kw9k󓋫pc&fVd2=;[¯+?iYmh;NFjx6]MHs3RNĆ߂ R8 ?v0Iӊn*N{Oo>q ۂ5PU{r=D4#Y/I5>\_}>_MSi}8sa5ߵVr|[fw/O/VNJbk8h;i}8홵^[%[u`%0#+ʷJ}+toET~>9j᳍p&qF/cyq}YۅQP_ά{ώtнb>ƾޯyi͗)7w €PM?4a^Ũ܀yy nӅG-$ g$?{3ٍz//89 /gH?Wgcd|:xM|GdhySM`™im.X9, Ys)B-8G8.f]YR;K)f?.)FTE `TC.i$zl Q;ю,k\Lǧܻ< 3wDb)8XvN{J1sr196X5Ew1?z$2AJzv.Yݗ~lo;@Xd@Q!-+Rlt{w5@p|3h b'F¢1YV7mrQhYv?$rk{]Y K ɚTPhs8}p)[2/Om' ]]@Bq['?r(h2@R@W\vr*2,Ol t8ZqQ,af|:tDyNhi?G.y Éۇ84ɖ[=NdL0r{  eMhrq>8l+є6 7`Xu#f{N|,}0`8^!g+}y@.AC*>ʯ~<= 6PbT%Qg0 NlGi%'wuM#Dr_4"T"7cާo7LXU:= x#1 F}ϝdvv-@xԼa!dΚ;nxr ]L[/^7Zn]jy@+5!ˮ)=拭4{08]RV<I/6/̈ 1AB*> c4oP!}!,_?֞q >v=I$qLCqfr,bzb*86Lewp%U."X}gLV"KyT#~1+ܝ4zf EBRM>䰧 YTbkmQNB[&顐;MDtz%Xqfql}@R$_/&^9x QUTb Mc{Y$(f.` =0+ =qVVbk8Ӽ/"|fDa9: ܒsj`UTɚ2qw'.2qu6|92r5s1r5lh_Ylh.CC9Rg+Yl6mN "Onu^E7I(ZhHu(uFcGV",ԡĻ IàN 4S%kgpaDHBQ4'i'jT}O I|?jQ 8*I)yl[jWɏ@Ȕ(Qn=x.xQͯkfW(+y}h C~!G Q_|Wd7e<WxE1%%A%LcsP-8J$>YόPycۂ fW4P0v~%٦I{MOHK$3MA7OW,3xU87EG)lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0048-Sharp Synth.xiz0000644000000000000000000000702211177557523026437 0ustar 00000000000000]rH}WhHݫLyyFnEt̉DjEʉxi(5j8 nͻGQmmpyA}qoiOͷwgz빉+?ݽ]D]~ ݗ7*Mϗnp[W} ܰunmvyvusqr;ݍsEV듏S<8d wO~nuuJԹ>9NoVwgx#!Ϻ $*v 8lW~)"ǿ}ҩID,cCl=]{v{EʮlY&fۛOL([q0Hݬ[w;?3X.[DzywmZK77&EJ?(-J$Oky Ut@WWFĮ1WۅѮaogv;hv7p ~-upհJu.mCi:_ī ,{TGJ쇞D 3tizU&rTf6w6]^.+ |Y]Q(lӣ ٝz/y(-9Ж Lzrsqu9;uof w*(t/Md©bqllE?92 $DVv]vDLѮh]]Jl=_$Yİq3iIL4P2K]6B/ZB, }] j~:; D* r샔mHH.\,nP S਽Z^RT𓌔iL~6T6>]DD3>NŦ F.`)J )kT6MЂVw} 1 m5Ft34('mUӮ:(& ?˨8`$Mz: &9]5xl4An;LWmusߟ]#+s wXdn *3uՑ:⼙ί.O.O33*kVubXą8{R-?66SgD=ݹxa.5"i~Q sUg3jvy[qL3Z,& mMr?DkWCh6q@FڡvL|iG٩8Lc띘iAv2b#?hegj ,[5fKu,q #z_66X&Fc+BlKه 3E 5OgFmٳ)1@XD" Ƒtamar5O#Qb0>m0ʰ@ P!g1GFnHzH1?$^ͻ1LuX!|d=d iUL¨OMl b {d\33U}0F+A+#lQ^!!c _l7 Ŵ`+C\=6!@vXGuebu&6+!YG@=ǃLnLT#0 l(ؖ!#kbbɘEE-di3$Ck$D_ TVLZ 1'dO '-z@&*l0}'#PLlY3U&!Sc0:4rUduτeu6E(c;"qj3>sd/Ь. s$.ftr5cEm `lLX(/'}>6Rj|lSXrrјb"s/ts("(_(/Jntde v@~zfl5괄h&=&jsԊ9Ɩ\C:P>s`C^C!zP_Σ(/XWQ䯡? Y(/;̼fQ?ש(ϭ ANT+?(OaX( "F9Q@Blle(F*N5vLfjs񙣳Fgz.A)=|[Rf+ȩQr %ByWeS}2ZbPs ـj@ F6z\(Am r ͶQ3zʶL(y ~3(yFɃ=Q@rX$ـ|tr*U=9bl=lb_7TѱQ0{b #GhehFكjӿWYY*{Hȓuy,.O˪0El|^BFe-O.ϧoNg+r:*~|(FŻ_ڞ\Da"e^vV>TL4fZYiM1ÿ6)~f:;]" FIԝmiMwcV|m~qE㔚)65x!_ʨNq_A/'Sf\~uz)W2h]qFG܏E:>,Rǘ+ɚƭ*6!(Dz6l}w4눇rZ\HeQ0%](mGGW tM]-ŶxLJgtj{XrTZ~ ŽN b6'n4i^Q^ x@'uMvES.7WS'Zdƴ =x O@^ y~IjeJ|Mong#+glmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0050-Fretless Bass.xiz0000644000000000000000000000353511177557523026732 0ustar 00000000000000Zr8 }Wh:rgtDn=YnHtV/d]H l2S<3Y?;vs3t>|2^̒_{)V}T ٓw"F65&vL]ʍkx?'ӫ|4_+ N}vڹ\Dk/I1^DctA{@dFW:VuCTQ}d8DW*.uϋ8k*6.4O*Ǧii_9֔QPkIGY6T( .RQRN8r/m8h._!6w2=)fCs/?{{>Ԫ=3Y:BYԼc ]iQlJeK׼, aߥڽ$m7#ORZӦl25J -ٗdtnokfVg!NoZrbD+=Ly@foۨ3)PWKՕiG Zdҷ :O^ b|t4eӻ--dt:k+_h"KQ0SJ`%+G['fCM\u`y"d^lگ*ٴ_hIv,A4 &`Ў05 m2ZP9NRR*-#+lA`ҖbWotb/0Ya$u*v&:QtO,r hv W<"Qs 츜ԊifJ/Bc=D~S[GI)mUC&Yf"*}mo!۬~nc'b:X%5^¨G#qB@G2ɢ~cPԴiK֫>ѭ5n@Tp_k?&GJ(c)|`qsq0 mp0L(BJrYI8~ ^)psaviˏ1˻;ވInwmrV߿ɗ6)qi6HխpfհVl>۩nv[ẝVoM:S9տGh`B/ 9 +Oph z(HeB 9oZ FwY *_.7~ENq =M7gQ/lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0051-Decay Bass.xiz0000644000000000000000000000355311177557523026171 0ustar 00000000000000ZKs8 Wh}S֑ۼfvXn=^na$:V+Q^=/h=H l1COm($ ݇G36,܀_u?N:vs_t>?z`r:8~ϱCc ߪKc~ Bڑ+.OWT&+}$⨐dʄݘ1#f!qyx-FDrle-@( c "!΀vͤ.6h<_n" zP2 tMGE*]]3>2dۣO3h:f;#Qnc,7>25a#¡kW"o׬pשvϑPW #Y!`2|teedn ׹W8Xon+HX ]Nma *;B*b!qBCTNCRe0 gAg_ب;- <Z&R|M9<$g(R7 l70@LN"9USUvOVm) /V{^Ց+wmR>gQD YeǑ_f@d|Cց+:"2(./wD`Y2H@O%<3x`p8#䷁,K;y~} o@`yyYuLY. 'CF{g\.&n=0&$ soRBGWLƉ6gO$P5amT Dygc? {ǜ\St/xW6'ZaI ډnv[᳝Vm'ۉnv/ڄS;ї'&߫+ibH/Ko&k8xErR;k(1]kj&A/MVh|Ic E>k7}+˺$;hl0Oqm7󗆯I?Һ=|-չ5[,A~ɘeb IpF=`wgجpJ}S0XeU`?O(lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0052-Steel Bass.xiz0000644000000000000000000001026411177557523026216 0ustar 00000000000000][SF~WxyĖ2r$&ɋJX2(%$3=R;Oɘ>ݭ߹e,潇0͢$~|?4 Ǜ7?'7.'?q\nOOk${LRt%_vd"?]Ls!ޥRgW7gzI2"|{9>[ea@f>?'jar3.zZ_EDyՕ3*{R^[Ya3dcFD^8Si}i,ZCKjZ=S{?J=$Ѵ`WU}Ug7W?LoEwR*+:y'?~n+{ݿsqzn/I{s?S4YvߝiY,z?Qt/hdNNz";~D.>wIKz{;DwaJ'(¬wG}IY}Ci6 eXm(n,g;$hHI*Qj8)}{g7(x;(%aMaX9#,Vԇ$Q>hH.Aq$L s# {֯xןo~Ѥ^2 m1pUg<$sF×~"&#M+=zĀLnzw\vn/HtOgOIM.YaywiZWMˉaRYLB/U]VYGqH15$Զ%(vl$šK CۉQvN\v?=9@ kQ{}:7??= }ai`{t/cZBlr{h[ˋ|>KiEi3w 6b"G[Nu+|Vt4ɧ4mɫ-꟩D3?^v+ CwPBǠkZ2R8zƏ]eVĤIfYh_E `H:ČY7[&Fj)"k7Ҭ!Ո˜ɞktRWJ5p\-o VT2pq~v\=SeLm4diͺ/z,2 H}6TVU|Y+Vd $ ~"w)X䕬~+$jPQW -$_6c p+K1䩅yEl/|֥ -mGp;vO!oXYn*KEHK}ZҾnQ|xS(wyuAK-Q C(.őׯXߒq ҥ;jzYn[5l0NuNI$.|Djq}yi&XUNarƤZℲ|kK,-udct :1}q̑.vR17UaE8fhzcr׍cu =Ulsвu/(1p+FR:sҷLhwn:D x6!xNieFHGIo0̬dL6 hZxm=&4FIVWv^b"˴B6\eJ",1͹r"&1 bmIT'vh=ӊm=VZ+NpFy ρ}dQe_C*_b}d/vdJGC: l6Ӳs8tXxaa3@δmLN 쐳GME'䰽tT{aYC:f0VX!  m#c>@ؐ3tHq uڬ"UcWH"tJr}a,8XZ!\|0#EQ~94_9nSƮ=9"/.Hqwt;2@tf6@) TKEnۜmFa2͜ɮ=Yn#a"3tMJ|)@1Sp ;@~r }bIva,8lS.<@:m$T/ܷsLA$(WfמG@By$a`[uF C$72)9O­B'ϔ#q:vlsREاGa{,8 Lv'\\N9-N&b92Qybd)9rLt*HۅS(YK~s9֌eY8g_oߧ K SΎ`U,2N-9tч=nt":t ?s56Hߍ2AcEzogUJ Q;Crd4߶ЊO V5&'7 JlAiʔp3GkP_l< l(ϑb㲔<V%8 a;Xc,85(Eˢe*C5~ #T ("Q (# )RZK,H I9*@YU,V3T`w80]2٨4U#Wc6XeE8g: .aH27 9Y݂*0Y)A5>=z_o*ٓM:k?l,5JL-VTT,Za\G6^ZAX0`U 6XodcF5ǘCEFU~ŎP|v@@Eϑ X v t.*Pԃ緸5ʉpc#*']t@\iwPc{E6ystw|IJg=k__\sq}ּ-SVnn+[8IoMtm]M_j.y8jn5WW4ư1=LIэYq/MER/ j7ec }mow4D]Yf?Af_ ֣_A>ɚoE l/bhKEМ2/N*W'"ND!YҀ8^f:FNt"q eA9l LGov"ߙbe̛XTh<|zlQ7h `"OYd㸮oO>l ?0\+A^㉿6>u7za fpebeNȘ;9 M4IBn^Tm&%@~RbXh 6J ʛñ?6N-QzYϮN5ˡNRbI<8$=wR~⡖AS݀-|@-~^%en l,y\^%ݩOD+鳵XNpf$x"+p hS*V*9ܦ\Hd-}PanKch u6hM|+)P"y&BG FcK/mt Ug;G{LlhvŦ,6د0rhY|r\\um96$wY ,GVq׻@)ldMQҧ]O "A1U<2^ʩF^8 L Y9&_ Np4Ӊ2)]d-5Qܥb$-2[m]'iÙm]"z$lڰ;;M CSKnyлVs`W$4=˛É#…w颔læO]_ Q;s|iB^ؔZ_{AEdnzI kV:S;:kwm"hFRW,7I8L N&ˏDIP%K&&w %14iR2,uJ1s>˸JLɖ7Z ΝrJLN&ؐXNX$RLK-p}Mcu)aw7px[&c rOMn8K,VzS2pi !/UB74 h.)OZAA8~W9;9aQ`(Q0TjY A}c[#aήȇT; JĪqiNDh3g^aHqPܹQ\sx`έ,#;^%>xns>&l}ppk<8g{E>KٗSF7؁GECԱɇ7;lpqCJ 5x/'akj잧3gsj_kryTiƭ{~z-t)fhs)U ñ#u9Qܧ8?/hq{|]W4onY z6fi@+jo"}$i|sENlEW"|̮W:M:(dr#\՗@~uU)N@HOrAg[$r j^T ^q!wmDzrg L^s|CCrٛi`h.32: LVgY`Ib2 L%`.^65[QO<"]Y5퐿)2i[N2S"CD#9D]S(7a|[<ڜcϏ: q¶YBƅ \[&ɲiJ\C:+* Պ.Ϸ*՟oJsӷe42?JÙ,++rj^I*qxjT@Jߛ9tM@ULQ5@4EmP]T?C&g6Շ$4܋ߨQߠ){H<.g2oz/L3QۼuV6N5ۤ{ȺEVQWƺX5֕.ǪtqVu;jۇc `;*ywy- 8ȫeuoqGEC*)B .MLw=_y<:fL$]yv[nBm.Rێ@+7viqLێ[I4/:lV}T4 i=󚇬.u eB}kz@_/KZ!Y_[fGRW7.^z=5|cԜ_1ik~>9`\lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0057-Sub Delay.xiz0000644000000000000000000000413111177557523026042 0ustar 00000000000000[[w8~ϯȕs@M a p kEGqBv)=3fJ9zu Bw' yo8=j|pfo5YnM˓lDTyjK&rļĕ#f'̾.Q}6OFFѩмy7f젨ԕG=Sݴ,{6q4sl'O@T/ہ5jP϶+^4bfp'eu颢uAAH9>2*6gY.7)+LƩ69~p1t<7T6,PC:nKnT͜l?27\sE 721AYZt$d|< bZh`:I?kw|?n#]jS|R˧):873qf(8)U5YaЖd`S Bx6⦥93/wb0Ɠ%meQ~ #g@J Έ++\G Q]RjU^P^e5foqޒ׀ugc?/_4g=M?i#IHnNM*wbɧ *G'1Xo@q5egXiX֔B T"'}VxPH&Ԕ.V*òrs8tHy_"8[QL9-bc |RK dwU]UM}:e("!won+IIqQDtrZV=ѵʰzkhD*ꉮU}Uj'vᨵ^K zClKpôp7PxпL! z "i- 54?oyt>Wx֌g/;+ TC?%_ J$uvrTɗ@_V**J %_3 M V+m#*%DDpE5^w`+Vk=*qPgE]\K`wU<ݩ^VZv|`#ݡ{hR_3B1lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0058-Reed Organ.xiz0000644000000000000000000000707711177557523026215 0ustar 00000000000000]]w6}ϯeReK$r볶䵝lZl%$; ;inȸ\ 3ͻ-/~Qmtn4}~otrrj1z췷O (J/A rWCMnk2M/ռM&חɘtc.]W1LU{Ԑ;_ѯanupGkx3rfS[^,/p4dmjR NYI~21!fTj㰪 ԏSxPx9sBqQr fp^k߻rno0~Y?e5wS?6"tpђZb͖&uqo'h d=18 X6׋+DrFDj9ABnvt 탌%:{7MM֚Iҥ=ZҊ%!9?ǭHqIKB.`e*%~9i$-~}#9ƱOO_*WAK)iK~+SJiLV Ci0Ud̛COǚp}`\H=;Ӣ#Ml*3.QL hIj).N!br5yLkگ^ l1IIVIᶐu!"bVe̢x{N}7)8%Oi9΃ЧXm)3t'M֍秫ohFnN&Uk{GZkINL]gWS5FZ׌fu i|>  ٍߢ lR\ e*cvƺk}v3g.^@Ρ^#C@ϴ5Ѐkt^\\\7Ͷ@YZ 4Z 4sۦQ@#=G\c kt>Јk<qG#h5{+3x4Fz=opzP`hTCvG{f{62X0X02X0b F F'Pl AQpbz2G@v'`nUF!j(D;Qwe EQl02> 4Y7 X0Rn(TG,+8Ǎ6k E ك3 r%. q(\@&;֩6 @M |rF{s5@-i*Q@$X0 j^{h 4Z 4Z 40jF\эQPFۍ5n5.v#]e6  zop9=  ݿMwVv"W+4D5F>Ɋ5J#v,)4N F;' n0>(Bxpi0& C1gOy *T&?0wz5)K׷ԉiPzС2[l] iS3~RzfyIϔbY>mўD-Ky W>Q]c 5ds^ uI8_82ey6k/{$Z+rpWI N.Ͼ6?9Gl7"3SWEЀŢ)TJdYK1/)+KT$RsNR uBme/v'HWG-̂8) bLZG^٬9-Gv?Z*긳k̯$K+LDRg,(G"sGX+ ʷ eR{jAmgSi !3aIVEɺZF,i=i~JZ@rBhH`%U_PljYG,;dH8)$6|"Aw5 {ncr޼3߯ڼӭu;nH&Ljzvqy^wo)N`zfi_&M 04{Z`ȡw~6^/t\`RV+NnyFs+)eVRo 7i`D^^D6`ރY,G὇Ascg?&̇=xT%&-u-2XFwC=O2П12Pq.ͧ9]o<'Ɗ̻%qUpqYpq]z'x3i(BgvsU g<:g'V?+ dwwz'^VN߭jA[zKR8lB/\ .KV dQ*6)X|S'Uש(GOsn5Wr5WrW5_Q/u"c8oo=7u??8blmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0059-Soft Organ.xiz0000644000000000000000000000402011177557523026233 0ustar 00000000000000[Ks6W:(Ψ6hjK$M/$&XK$$EǞfZPK`_8xi^tzov B-v09<_}ǧ9fU"A9c-;i9ǖsNp𛓥"8PQq^s<;)_F{1c۫c[,8^~}ߧ~ϣžg݅*╃Zr_؇A~}4(5$*(?nL7f|3Mʩ뙆#lذW,+VdK5 w ͍y5$+ٯTH:T$PPNn Ccf ++KvcD=Lp.@wvCW n%=pj E#vE5*OZŬWhϘki䙮.<z$ ,`ˏϊg>ec/_hX3$~QNNHZkI$=lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0060-Thin Pipe.xiz0000644000000000000000000000724511177557523026055 0ustar 00000000000000]rF}WhPDJTZ[J7 "! 0X 6`! ikwͧ8\Ot4ӷ૷0xױ~8x$ΧOӻ/ߞtz?ԍ][sp)v_ JK7Wu󫛏Ktpvs]zt=񓳊 VkvҸ[v\nFw۴͙Sߑ:I{6Ï?摳Dr5Eϑ9Ã7Q8nB:HEk>04栵?jjN)߾+כuYuqy{w.G-@8 nzTڝg{~A<4Ny^iQ&~^xe!q>}JDpZd2W6W0\܍?w5z{?S0?Es+ `F"jayԉCzU&r9_.~PBdg\hݧ3 gj_A ,h՛?~vnX'G$iWv,}Kgٷ|r0' Ǩnjb!IJ4iŽ2L &b$#iH!02 0 dØe33a a=19`n7;ataGtd0X16Q}mf9'a a'a!Dr73$^u'X0NvI6m0fza3P#1}эl1Ȇ1#F B6<@cPb]fx29.IΒa> L: lL40r{@ 6dfHz7&C1C1ˬCmu®|c8QЂCtdV:DWs5y>=nX\SFB1f-Vɲb=s!gBQ!Ź6N5sR@?5,XeCv:+o@\45(o%P~Μ ;B'c0ϩ䕬VK #(ߎvu\( @%ܻGyD Z0@wJPfS,|j`6E.}|n7ЙLIL!`8Ν<&25SSy7 ЛJPvk Jp榅2/VwO*[35P;M}&>v+mTCQ@z&%(U@pgZWtxcM3yw@cjQ`jt6cAr9u+MwKFys 6n5[^(~ Fy9u` l7^4`Cm77[ lu! RA 0Fy(o@P ďdF\cݿm7:4*i#(o@%.QWC95ͩـS#FSN]!hԭ0o"6z1@l7V>{ |5⊶\=i3(o5NT\'6FPsw϶0o@׍U yy [97hTz+nVޮ0]ͺikwu5~E},`Ƽ_Q#1I~mõ]rBd6\^kPn,䊠~Y Flk6}lO7>a:GjwUMn tEզ&a(DW{\j7KFJgɓbm1`IُbcdCbYEpfëv̑Ey^ M^p@5q*zp&4%3^~ҖȂUL+!=ZCG]I*}ono篟Almms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0061-Great Organ.xiz0000644000000000000000000000442311177557523026362 0ustar 00000000000000\wڸ_>NB~JtobୱYۤ1-#dOS[3IH}zdA޻bێ}??ͨ7mQ-)ezM`_/JD*-crQQgQ S,TRn ?(^9z48 EȞb$ ~tq/كϑ4Bz8VʨfIS^+%{̖AsS|t;CM/FLy6W` 2EG=K_4}Z(^hJ=<<v B,S649-̞W"v8R]Ӈ*z:܇0KN p-@`2dE#b5Aq*5A #NQQg/j*ezUʲ~+@Xp2?NP q n`D)oKjJjuIǥpe5I3PY EdjM䀙DA2Ŵ$9&5}'|_t2{' &N1,fQJk܆̻% G`C!qZ<~}f|71Ѫ[,_g2`(w~jp!t$R?eavYIL.5çiNŶziF. 4ib`Bz)4/IFI3^HՁ/-R*OȠiLrREpl{݌1>Cbd0/K1fߡ Y:)aÉGzi-PFSL[3dȞL{} Vi [ta#(\jXZVԕǪ6DVWpǪVV FѪPO~Mt}٢˗{Pۃ'*y7뤿WEftk6DǦMgǦMA_=w}:{f}tK_ͥ'5e0vJO=!%_2{S}ԆOE=z&^Ձd]L:u#<+H#lƺ6cȮndXg-:~Omկ/4lڠ/H]x҇x<.K9裸)t/4J@w|16kubqa}IRhɜv\F<_VC;. pz '\TihҌ3 犅vtZQKϲg׽1T+'ot]M }}YeweZbveǝ^ fUei0=3bk/^UΪElmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0062-Hammond Organ.xiz0000644000000000000000000000426411177557523026707 0ustar 00000000000000\[w8~ϯ`yO!rN-gnEG56k4$lcBΦYښHzҪ<13}8V;i/ӛv_G~5S~Kٝ.7UŴ/' !tZ>}2]k Û;uɣX.e{mlA3`"jT+5 cN;$1Zg4 'K8i͐L鳥GV%zl``aӅ9USSD ր*zjܞSg|`8i I0PH3].ۨ9?B4i՟eU~s6'VTǭXgn`YW׏YD޷v]v t|(xBx PL̛ۚ i\VNY-%&@0B=/R+iC޴W`MM"CDJێl`)k{#^_3rN#OdֽL3]ɱ;-+j` Ey7Y'-4칿ȖvHҚH%s^x!]2[*?5uRp6<2wJ].Kvt& .Ԏ Od嘁ZDhSND `Q&j9 2Q@b<)ǴLABK QH=GZ?l< ~H+xdPS@b.ph;: *ω=q'%l!RG̙.W鯕1=Z@ld 'ghd/1ݱ}Ak \IZЈ[n?,4c0mssokddC]%g,tG!?LCvJ:Q!Z3r\ KC8l9jwf 9с E:Бv-#F n!ɊiAp =u$A`;u@s͉a^:v3t3 `/s!A.&K9g\(Fkta^j ?^Q~9{ }IPr)Y@y$ :r;9Ѱ;)rt"/q̗Ѡ/g"J%EL2ϱ²g8n- ɶl 1xH2iAގr Q?nVfO+1hJGM. yx  oIGC" ބ"*Lk(nܑed& jaq;@ .{4E)+S}b[PDɰ1<-Z'"CT0*oñS0(f0ZsP7}Z4ilhA+3nJ&d+.K[3^tQ|db23]ejЕoxA2Ŵ$9T9((΢ ?ww'o!-$'Z^TxѹsL3g3o# (*K@n o1G$sh-K'L.|wrAо3Ƙfவ}$-\Iu-XdкEBGj@໢ eL|!r$/%8̘0QTճƝG3ZAYHLF*[5*ʆXd^+mG O"[̆H"j Z?ڛZQIx&( ۾B]J{%Mړu)TT]R*H@<av{tL&[Tt6fɚ?0opĂ4/ͼVK^$^_e5;e7n6,3B{ AYɜ1 ϛKr " Yp X`Y.1Y7 8oVfKMh7!/dK]P#OZ*/xi/lP}Q@k}cA|GZűYhbeIlg6 gW!XY6xi&E,G7 { VB2{/|SYDs]x|Q븤ʱM6ĪG%>nwLH֎nСx>5L >6QqufYz2ťI -4\Y-ەy"FpgT]`㕷RAKMBC Qº}mQa%Vz)vsk)# LWkeJOF/H `-4;'Ad`tlZ9Pc$'.䐯!dt|^ZdDՖJrR(xk`CMyiѥC3'4)Ll|elf9-w- ᩾t!NZbR:cx@,Df)&b= 8HȂ]qnB09SjfG;`bw PYʮGi:c@CIIE/)]h+im+hiC\#WǥUuu Y#<0v#NFnڠ>G6K`u'tzW ^ tY oK W _oH6#׿\_&%%ŲrmM$\ڧIZB~'QgBEX\RT" %߭F5o(J j\#`^kҏKwVҭJJ#W>.lKU RT]SucԞwOU[任ɯwStpMuT)C{z\1~9/ F! mo&FcƒrVNL,$1 RU<-5V?`;YM?N?VNb]^ZURKM_ԕRU_NlviR%jziQuWj4}(& fTLiްrh ۷Z #2W4JlਬXpP @?wLʣJlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0067-Soft Flute.xiz0000644000000000000000000000547011177557523026255 0ustar 00000000000000\Ks8WhuSFdVU)-֖ͨE EjIʉoS|` )I*Sx/[L]㗳nzo;Uwfqx?j0kیL)czk˾8^GOZfgaEcz{svl>],bۙy}[{? _CjCG'mr|7YO[hk~![v|œ1L88݆dGxaԋ*/!4"tǹ `JȯJ1 ޴DnϾcQ6ߔyj6_&u J0VHD^s.Qwݟv~M@_^~A5#m,73{tp ʢem0l^xn]oiӂ ڠ|.?7'w~=zKx!a R~YO%<ѿ,OH=D>gIc#ܐ< 🀂s~h|w;[)ugSLc)[?S׷C8C"=뉀=K;nhC,!t⌞`{EӳGÐ<~.dar`OrG`Hg؇3-4>LˉD `^&}F[,jP[O]ǣ@q92fa>vsץ1+gtSJ]K)Ttj>f ìa4#Ǟ)tDdī HA۝D{)QCM]S9&6i^ОAeiD^?ObF{1B^dfRRDL~(ٱ9F:x  <{ vpXkH@PC^1څ%!U3X 9 r PUcPZ"C‚<tv 9PrQt2#Uhҧb[?O@/,<R[o`1\ꃰ1M>U#d3M:35H"+y4?%O] ~ZK^h6J(<vẐ9.(/6 qd Jx KMnNJt:.Y\8TTDZ*sGQ"(&N Rv- c4qFd5Z!|$|2 x2~HEDSsP)3P"ebs\4Ry#~ˋ[3*KΖϔs![ᓳauy# 䘶P1-I|F(=Jn1]ǻ߇UHky,%5962Es6d~QbCޣr#\P֗xekIe @2(ORbR^jB<2+k*Jy1gڒm^ublNrki\I1.y!q2"BebzgI J},)eZ"!LbYIB-e+U32wT$BZ֣oviXURUĬ3l!+)K]*2IYRzRR¨MZHJp ~VbIeZ,_-/Z!8W%n3  [ڈspvք#pI ;!?k3|l״ή&٦&/lj_F'<d$5c]h4 Ϛ)jP t終 J ByUH LJi('srvxy [>i)sBu펝2ŧ8ax/ 9BOFRx^bM;WJ^ Gq([is\qս^ Oah[^ zT͆Tjp,p2%b ""Lo[<t .@C+CCu;e4u!Z zjmU[`Kї(hK*69 3mݪ0.hK*֧X5DNKLʀ"c DP.D_RT[BP8E\U 'u 0ۀahKJ u)V IWpKm*AZ_]% } Q7ćZZT }m0Z[8ZuZrWHkC5HjG_[LWiC[iGIgG5١SX߭ }WUins+֣SUSqJks)%FkUCm6 ϵ u%*R6*_X8a%}p}J%ArP[dFk zTg} *ֶɠg|s7UϒW}VWjֶ)UEa sˮϢ2 \Xx*c<ɓ[mxj%IN8\o S{']e*IJ>@F|RYW)@,ⓝO4*SU@VQvK(T5+!;(-̄lYΑ39yf'G6̣Q^u/L6&DCp"{ܰ΅#Y73㋊Q7fg3֍lFv݌u#o:jS3YԦuZ鑾 F > >L:>@3!NȎ$thTm,sQQb(f7 |۸[lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0068-Warm Flute.xiz0000644000000000000000000000420611177557523026245 0ustar 00000000000000[[s8~ϯR4MfvH]fnE#ln% ~E%٘\&婍9:M>|r{G[-P˳8oM/>v5~i׶'# W{?2y<ġ{Sn ;4<נxE[ݫpM%CbËS굌6űIvݛ޴72E+V x&$$ t"Dd"ȡa+Ba:Aqz(%A^O5$#a)bkc.Ab6. gR <\n4n >oO򢤅PV89w(Iօ5؊<r(bV,Ү{u&߇ߥU@CV' uonӻ+my\bT|L){!q"e=q=ˉ%#1G"ZꍝE7 etKg)q QB}$ "b_\6f[ztۓ# Q?B9Iȝ(: 0-oAE"6 KpbR"+yRtͶ oWc·sb"j~+xTV:=2Cq7qp,ߝt:}|MTQ{A%%9ݹ.g]'5qϻ$) SLJ"˃-dwgPD+wLvHHU;jzkהftեC0t J7[U#<ݢrIW:LWmUԎۚ"\JW8E:*/ u^*_¾s&'ɻ/˂;6I)FQ{G(:۩qa=`jT/> v^J3oUHI^ZURӧNid4/A_oe]<(pKHQL-%1B^h9p(j6jj1x*`]89.ۥESǡme'fM.NSuWxQsx,wEtJ@SKHNJ}BF).EnD򢄏MiRyN`ٸ#if-Lnd|Eɪ>{%H p}1Z} eLjyR8\45&蔚ٖC:94W TBHU.sˍ(N!2mGDI>ɤ,JSN"̎+6g/; G6dfqA2RAs;XV~W~|VsuIVkr-S+rJ<^J¥U,lAb;'+삑~ORL ޭY 'K|<3-EcRR;5D p Ʌ_796t@1TiS\UFUn5RO0x~ŕqq|řlɁkcvn{ .PoiAncphYKfX' 3^* "_-+BB5̉!c^ŕ٢3*Q9Tu~x }LO5M.4yg/ph7ߐlz-X?mzRyv%4$bYKYv*8K#j/eJsrHH%[puͭMt:@mdSuh._ܢT)Z|㲛z ٙm+y҆m_[m*O$2؇д;n|vT̺*jbjjj k kTCpF;h`B/ 9 T>x46TH T0m|]}Ni]hVro~~C im#<lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0071-Ocarina.xiz0000644000000000000000000000334011177557523025643 0ustar 00000000000000Zs6 _=uirפr[b{ӭ{m(Md})]w6 G3v$݀t7o;vtsyXί:n>2_ggF;aV]*ĝ[_qir&2m mlLmw. '^'O'W# Ϡ'7Y)ۢ$&lVi1@ܕy/,4Қ/2i ?"u\K,.%$ːˈDȥ1Pv-zMla  D _ՐgPdvMjd?[eLҹnJsyYGdyvg|1zFf$c?rܹ(g>$GS8_M?p8oZ> ɲxisy·"PSRR0 }'\#"PILX ;Fx6ղ?7%E&ùQ~v7^> kxx%!`YR\*#^`l@X$1LE8B7l[o쌎.1Rϗ ?e-60u8F(HBQ8u7Y*!d>8ݡ0pX-:aDD`YMcO%=K`p83{Oc(~P:WG8|_H5a< j=Fe e|?a |1nE7@RbZ=%$<:U$:p 'a('aP&U[ J U.a x2(U({fe+]A:B+\OCatC9.y!1<1uW .9u7˦5k2|a BA/u!wTݭI4:uZC 5(,pS*m(7AԐNt\+0%RшEpoгͭI*VI &'RSj`y^Jst%ީM.3}f<6I2t+ND/j߲׌4uHPLm}㒗䑡 ]0EЬd1Gk Rzи+MΨWj}m W[x亂u}9<@kh!U,62-gdqslM|P3=jRv 9vz2e AKS p"}<0*OɁ|eI"(t$iR0NN#R7C:matdϒ, ~*7޺k>t/21ZQY1vp\@IǓbRe! ̞20zo 陸 }(|r\NkR3'n!15ŝE<:N=aZ*\K*öl. ,T3 ᩾v)*-͚{'c:[ jR?GBJ ŵ[!Cyם4iC֤.Ѧ5*/( Fu;ͥUwcx_>Sػ'$S3+>ڔ= KWѭpNt+  Dn;ѭpNt+̷}&ډ~=0>hp|x4_1 WHC|T~8!,X5Xիȧ)Ԧƽ] Rc?˨.%Oy@OSNq ?9*s&lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0073-Variable Reed.xiz0000644000000000000000000000361211177557523026660 0ustar 00000000000000[[W8~WdNrN'6g!anEG qk˩/IىY{4f}3;>>xnӶnbmߝgdz/Wf4kӈ»\ݮG(m'Oȃh-#Z5"zP޺`<͆}ũNWpţCfDԍ)ۭwԱ&Mz̜LSm">ϱdToNDy!Y8Co]֚0fem}yV;.Z7nZ.XP5aLVKVDzdbXRϷP2lp*cMM3ا%2Hux McPuZ8`^B7*!v$a^0Ge$%gh"읟3 FYJ .lԻή+Cw!P/)BE=s}ˉVʢGȈ˘[ c.ZT;ie5"KKU[۾Yb|ebC2}1~OjDdD&È:B_ +l"fI\FC<@t@ RȃZlGlޑD~}_vNkxTyVAGhb00'']83|MT{AD K'JBGLD6gON6שY\Z i<((I֒G2^*b(SO$g^5:-$-ubϞ;T]CJrydx_:ԁM8+2Vc0펳Qv"I PT%2 86`GEXϩk (ԤS%#;'G3 ;A!&Q@o5gP}vRF3+?{{>(=3_>Q>z^J3oޘ.3.ۥO &tW|m[xI1N|o}]!Tg5nf᳙FmnfS3'/.lȘ1^0 H#x4!&}ڴ ,icj*|hjRvCy݅f*ר|\xWSc_[Ŧv2lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0075-Smooth.xiz0000644000000000000000000000222611177557523025546 0ustar 00000000000000Xr8}Wg ͩJ2k23 rHﷱ $xjݧR}006$}FL eO_w6?<=^Ǝזvb_%^WQȨ2Ar(|d0R/嶈pP*4"gap#V8%O'b/19BR' ~g0~]UeF? .ذZʕ"kL)(- AIJmVgb<;ݠ5Sˏl7F@`wWGw"xOp,$GRxS2lb"ɯT;R֕ʝA5b8XDK^7q;çE.7?͈| #DDTy'T$m)pb*5HGt؍"ȅ ^/{,Kр8zﵒv9jd`.9Kk_gy׸fVav}و#Dd-! @WHWhǤ)n9A5mcE ֣`A V`IBMV,N>HipR,"_ uӶz~Y?r.eeB"\Qvlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0077-Whistle.xiz0000644000000000000000000000354111177557523025717 0ustar 00000000000000Zr6}Wzw{&NFDS[r%9mIbB /] pAJ>Y&wكł?>^Ennq;p\~ٽ]ϻ?m4.X6|8nC 摒 s>D`+<r*4Yg4igf'sCS 'l~=XNfS/ é.7Qɚ1s` N{Enܚ0G⻎KQg%]7a~LBI';M JVV81 FY@Ty?6S6{Ub9Kf~kƉwU< z^S"9ts9Qǣ ϼw?(22&d2'L%H,~(T9c]nLuu.o3V8n2g5R_:?M pW@rmJogTPUa3$P-e EjW9tj$b"K o&Qm?$r,EP=0/dC*K&9uí\*S;k0_n~G@iܵID14T'#=lMXW CrAnE38RM~+|[ e5 C"1Kdr WC6 D#1Z\}}67qB{p573b(svtqq$c!A'i`yp [Dt4=7IoB0GyT#`"Pʸ@Փ<(hExnykM_j%)?_bF*E{(w@#?]G!"vr/(L쁦jb=ȣ֞ܡ'F}C*ă5a |u=/q@ }>yTݫa :uQ"RI1ۆ>Vcz_ة8r[:AIW8}f$7jR,{V*rES+k[3=paL幤Y}/K k%"tR[t0,hY:_f^~0TVj9iNƈ6]DAĶ+ SlkfgKz]\PSGrMHc\!K ɕՔ]8?<5X l'tYh+ja]jdeӼẑ2=?U;F[>kd|uɦk56T=/0|B;B&\$#Ea 5( Z*;pW!%㶳cR, ~ *7^+v1S.LVnK\P ()NIJ$O9;#6(<_ϦavQB}<.'dЬ5ssX5~To/]WPn~m_>Ej{CV6@e8:WEG[<-N4Qr !L $ mFvjѧ5m:,RZ*^$Տ*Sۙnv[ẝVogM:3}zŽN?7W+drЩ|˶돐S4560 w' wIhHwIEd U㡆ZD7K,sC f=Od1;эZ3э`\3э ^3э_3эa3э`c3ѧMi3 Sge+#YGJ4շE I,b>W*w=Ǭwg݄a^Rn½Fqħ]/KTr(˲-0ʎ #Kz34CG h1K42d]X滽WybXCr?.w]=x0v\0lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0079-Ice Field.xiz0000644000000000000000000000500611177557523026004 0ustar 00000000000000\_wڸ%{؄rnY "lj|dI(IX~3͛w~[$]{ߴ~9i6gݿo..~x?ŧQ;o8:8#iSB7z 7h븈>”upR ?r#ц(خ w!rIlWP$Vy@;:z8}&by jTA6>R;2AfF[Cg.O'gY%6)M_vdEm6HJV֒Fr9y;2D[O{}e(J ڶ)¿蕃j&N%:j1RTFQy/%_i:;f n LT1Yw1ٓ2ݯC%Elש>m6O'ɹ&\Ɇ)|GwCB`R }{>ra|ڮBCiB=BPQvF.ahbw !@o*Ix:?_)'M}ApGtsK}?p Y+LI!Vii~iKs[2w`4j݄N*o=Gu [f-h*e|Uʼ~ŏXIk@dP$]O1sTy 曂А $ .ǙJM*R& GR+S ߖn]h8ȥF $ iQ@j:a/c8N X9֊}ss?ojqYNfKZ3 ted[BF?xTƬh%Lg;1ƹ%#00ŜQo4 ,.'BD,٠Hb8*}+TZ{E-T 0nT^#i5;͌"V#|@R#0+_CW ޯ!Xl tʃa׃i~>֮RRC0>'ȁdu,1Is`5{I>,T$S"#7$XF`R Y#0ճ ɯ0@T4| s`*fI0]As},14V+T :=hlCBepWV)k>V'"g-ëp r^|)A!@Q\~7e+ ~r%;V^V_Pb+1 7cr9hہ7ul#J/)[Xy}{ o13fhS[jBsR}($w\)pi;B&Ն+syO]7Uެ\wywۊs- hߗ mlqEǡvwpyԎ2 :qntZe=׽1+f악q+lv}8_g;^s.Mw>ݛw|]o?4س|7o/޼bv|=j󆶽ގzkI~>bޮ0m'j]6KvUhs6QLM&Uñ7Ob;X.[W]m .ݚ&;nZo#,K%W'hbF/<7WqnސvË <]~SdANƦ{Jڶ¿襃? AlEi}0;ul^x;2bzg ƕ".8ddeTz,J:OvFJ,$A]'h1h%Ki69U5iRcIS8=ӳԁ krxBZbӂuq +%;5(R6f1-y{VT³R:hXwm$@+LǙw!Ôl$%r(N&9N8t:2k4E)+S|(7HAb$!*P5wB`)0H0R. L2ܐs4H>`YjѤY"xqU*xeJ1@m ϹыLVN!0c&rqBZ870(6N ?W<<ޟBM"ZT"on1M-6 d)\k&ߚ,kKGO ^-^c'680 xaDs^79t@< MLCUer^krl_s @`y `0Xy\?jHjaC`k X5ˀM@T8 z+͏UjXj&U9,U~ ΁%9tP&)_tF`< ևra{JvL(~u_!kFz_!م ꯐuU: vҒjuʝA p耘@U NC"eGѪ`Zex5X,ëS<9(Ŀh"*.ux/xVrXsW#Ehz;*׋3_l%blZNP>mt;ަsA՗Ř8xv^M;urQ;w޸:h(pPő;P:"}\~GTg\߁=T7wE$ynLrJh 'vwx2Od]@ed]&{ JRp-Gg5֕Pi5 /X3dIItqϻMxH$O7'ܑnI[eBZqf. F|xyH/?[>AJI 4RUuͭ8eT$t\vnqc}FA@WZq **1gbHL SZ.Sg+aKUP0*i>!Zpjj{C|m^ixfZft*ߗE}5cUcY Q<Ws0C{"CgU{;=*/5[lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0081-Beyond.xiz0000644000000000000000000000422711177557523025515 0ustar 00000000000000[[W8~WxNB7,$l}Ql\;k;@cْ<ه>uF#i.ԝ^Ģ ae ]/?kMvOZw>v9|Y뎗ӫw]P)g;?/Ⱦȋ2yH?hPk$ɣuK~ WMw_ iV@u۽WA@1sa#/k6յ펺7Io4θqFsB'(>z 6ɂE $ZY,W1,"l6cǁn `ʢO ~_GO]7S9Lܗ3ocQ7ppo0.T!lvS&Su//;jXad4aiS!ǭ0HYd֞bɛF4 Bmjz& X_'OKU=]<l.J۠ʛ'sZ{mtKvJ5zK,eɂxi{A8@~b~xɊc3[ű>y0 {K r8B-@ "ROΕ.8^Pï@F3 #$b>xJ{@%ȝZ\K\&#w.+/}YXHUx}5䊏1(_aGY!,y7)B0Yְ}Y\EZ 5E;52b:Xsh.UR(-%3GaZTV'U |nRlnEM"hNRVW:3}b$~JS N&AfU(7 N aD{)$jN{픚%j٢ҚY*!c\wj,3+7~f_Tb2X,]E⁕ bZԫ,Vm vG7A"S_!7fhXjzpn;fܕ6i̼qW>9vMCd>qR0#Qo,de)-riL(m3X#5v@T ͼ0wrs-7:ǨI "]W25&E昻,T)\H}?砱ݏٽ j95ϲw |\ Aԁ0Og3uK 8LCf1&g9nCfxdD(: rmTM ̊* JuP=2M6d`|f^1w!}gA <½_47_6Q<݃'R @NFIeocsAS abecoM+&X7[n4c(iƺQ.Ԍu<&)X3֧o}ֶhCo > OIKo$Cbr)iwsAB.!uvB+u6^Wjy/WIsH~6lSwn×f]T+ 4qζNb14/{Z@E^gZ]ʥ=eUC|.5ͺuUS d5(JåTWa?Ma׿uU,Ϩ4zR)RGI Toq-&hW0R`3lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0083-Sweep Pad.xiz0000644000000000000000000000372111177557523026045 0ustar 00000000000000\YS8~Wd'I0g&IܲsS [-/},win[sV>k1\r귓~|^otMs7i@]QnN('?0E7hmhN톆v;ׂzuC~ӽN0#L!GX[hN2-?ӤǚdV@}`?9s5N!q2/ vx2$RSӌZM7dt{&O%`05`I`(zcF̹fƎKqbeţLrŒzsױ Qt}rB\2n`}M8!}:'xy ׊6u"2t$~@-'B_ ESuz3lF}YrҶ  5$o>.12Fx)>DnOPqDoB@^2.U64)p('別 S֌I!mY-+JiM}d=5ҲJ3x95YiSAx/d4IK<3_JmDK,,>)mWp(NT0ؚN g:j֦=TQ X!/PZ- 0T<"V]TZU,S`w0b؇B`Gh_! 8 DXs+ B`@UXzF2+b+XVk"˞mzXB`AB`B`GȊ_!S]!;ͣ<^; XvdCʭNB{!e QV|>f'5?~^]76mzaA<ኬx-ruu]7$MUoQV&Zbbw;[vTITw^O5|'Z x^1WLH3R{Ŕ^ '. ^ODC~(=N;8Bn뮹ǝiVro~~C@xslCClmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0084-Breathy Pad.xiz0000644000000000000000000000413511177557523026361 0ustar 00000000000000ZMs6W*|b˩Z[R$9mz"d1K$.HICN}xᆵE7-W-se?]f}MipK ^Ӗzٓ exH9uFsA|:c-?ތ&w`44"NHWMkܻ7X$f <ݰm~ߛɸ7g4s'=w=#å+9GN@*tz{"y"+'sz17 l*ɨ\͚u4lט/>Hƥ_qO}#QTv! Md09*E| , ݖkQ+yY%BClSDCH ۹(  !h HʫfþkA_o 2HYWQ c@Ce⼃[an4\dt3@|1#&IٚS %v @g2% ^G_ ®x,HYEW03xLzU~C:`j G]Dp3BxȒ ;IThW["KxɊ> HyZw`,Z$M->khV)p8L Be-U%.~OKN7# ?V܁$id,^Y-XZ=. 3^J/$Aekgek T@R*F8HB)L0b5}ѵ&|ƶ$ry(brX2\vWRm+\) 1m)%̬OGB{,;8o:VyݕRۭNܽe%2j!IŎB^(EN;t4 h+olcTM 4t h*rHlVS ܗ{+SP$m|f =Z?jY;BY.m7"593VQ4t҃ueUj zW'/6V(%.6gbxn_Z=KCTOq`fPz+ ȚiCyjCHm Tӷ9HӴ|u uZ#v(C.Nz`MݿR&Vmkۛ<2ӎX,Jr޹ q IO! `wTURuYcq汀.a/Ly(t2Q ,,fx^}:b\fneTf{rKzL$F%ڐsN#g%KKROVcbmcSqԐaP0 qeIT5>s9wsxh75SuI-إ,,L{vTѓs8Q c-uP\YGMt &"5Q1E/Q,TF))Ʋ {fU[V!рIz1eqSWb\q}0j㻌ǤZzs;YmZ~ưW#>zнxϏ:?:BǛ\h}"cqzLGܑ {ĸ&onWU!P>D-ŸNظɿHW2P6mB}~dY:Gj:t` }cN5ֿtTs;pJe e7vFSȖNӨDnƦQ=iUn6ՓQ=iՓQ=iU覛iTyiƦQ=mӃڶ|h8ێ6k[qQ[[,Ymj:ջ6O7#Oݰ\[N~j/ʹ -q [,삹>hH {.]1I)m"_5PE+E׃/xL4@X d;?gw2R7.1J商\ZDW. z@dմ#ZWa4K dy+3-HaMH##?4Q8Ld@1A\r|E(W SKƝ:}:}ywOxCvOK9118D+%ߛx?z'M]7ΎoZ !n}i Ď{1ç0NXj sH8`cm67Q\[**+C `ݮNMVz{5fV o}K* Ò $Zђd|+*S&,KVj})$a  z`JEe0ZJk_\WRqիg6sڪ'1JR uEm7-t8*|]˸'t.@Rй>t.@xQ^,:2yLQG=tx$ݟp&+e\l^ϻe=RjwIc5?b(ZY[]jz'T6B:b%T4x¯$2U[T3"b~)ٴkW4AV:!J~BԚc_C& [D1A SW0$6}]DkwVhjmD'dlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0086-ReedBank.xiz0000644000000000000000000000237511177557523025757 0ustar 00000000000000Y[S6~W~d ͔\˶E RKʉdɖ] ttΧs1g7_ء( 5_[K<?ߚk~;e0}X>={"]<`^yÝoQPSr&+4yɖ'0v1u!6f0 L? q9N_[5!anYqy tӰUԽ/0cgG47RHvT|'(Eq! xS%6Jg\ꎠ(JhTn8AC;mG|2pKuhXWcgd1?)Qws{_ofYl?Dhuh|7&(RvI96$ dE"mQv3$Х]G\<+bwk20\W4,R%L %} q#ﲀݾ.$F ͸Am[rOkE4wbuO巪7i<>KU`!|(.PxŒ>t2zȲܟςz-F(X:[ n3h]}d}Qcw̯b_n`W:yϙU`3[tJ(TO θ.k mMy]EhkB68(k`i#-}L%tPztB VHy(Ib)p bJHŚH{b{ ]\=umT懜^m3ӪVETGFmtVu"G !:]sTzUO@4c<7͛/`KG|}t9h$5k"5;`{|v/nI?M2n1:á̚S)yw0W*#6BZҏ0j5D7^jN0 kD^ir|^ӗ;^N@e^i ~Y&6ā.l8'~ c1'TE=_d8W+if5gb ̋w3)窑4Hj_ſlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0087-Sweep Rushes.xiz0000644000000000000000000000267311177557523026623 0ustar 00000000000000Y[w6~ϯpɒsaiȶ鋎ƖY$w %Y O!bf$}M\}~|Dk4uBףka18홟oN~.ז]wYK\q)q \oe-F OGn;ۗEym[YɘK>ueRo^:db.J¡pB +bBN9M;x!-"PxY CcP&Bd)`%[)Doaw~2 8߈WdWR u*o gx4R|J"8S9EcQL'YF>ryR('G ~.}_AKiaU3{|'\e.I6{g]*;!b %]ܗ.1u<7$* ?y..xɔrz}{AJ2C^驲梥m}׸iQBwQ/+ޢ#g:K JwhSgEӟלLW`[ #to'Ԇ֬9 $4?}Bƕ=ط9~Of1_IgX(^ͨՈ!fC^:Ґa :B/u^axY&QW քJSe[@0xR6CS+(([j%v^*ޕ8/-J8D!<5K7y4#fCtan1]ު%bs;:^2D;+I^_V5zUjq֫^C\TyڿMʼYJVWUF++XET0YEJq}VElUX\(e>|v]TuQwzhESUxwN]T;uQEzwE[n]T׼c]Tᇍ#vʖ8)GXMVlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0088-Rushes.xiz0000644000000000000000000000235411177557523025554 0ustar 00000000000000Y[w6~ϯ朓d7ƻ>/鋎 rL$ o+l.}J"|E 94 0 =\}:_;yyC^y);$栦\ aLU [cH=hL<&d6ɘ1XFt$ &|ӰU؛;`ڛF47~9}s@* ~ (ؠ8f jtG@3(f<*xF\ؠ_VC?mK pKwp\Wǃ2dt" ݗ—sܛ&SVdbU^hp-oeep[$N;ؗwe}Y.Ɋ'ZO4>>o/-ZO}7oŶu*U},|hu=vOKY-c7~F~j,|Lh$l0\ gLD3I2g7&nLѐ~ɖq[ott4,g gk@:zq2=*U/Īp`F`)LE&[kDkf*ifƇ?]ϳ~~uH?O?g44ma`miD-w,>S/إo`m Z +e.>Ԏ7钧s`;렇\)QΗ6p8/$у2BY6-oMBKO ZUlXCp}'ߑD"AU 89F'pXRXH%KDZG24^bJ>#'!(ѹ"6v |wEDB^`0n_mϧB-}U!/n@UvF%Z,W%m}Uke̢[0 3 oQ+H/Q+Hh Gh,Jz8#Jo##rA?Bz?i-n%$B&W[D^ZޢHپŪ O+ʍj$v '!.P{R7-PےD $5 pd~u)۔aޯl`}EHYmPS%Ň2 5~i>Hړm.! 99J/ cjAW|@8UuDS ,S=uZhֲH 졝x`=L @.bŌlloukL7{ p>:W)fF$&f&29A:} ӗR>n7.gib ]o FY^Y#e+|)6N<`dGX%k Mۀ .)RJhT"#Zt.U,i 0F5T!b%mܵ LLnq|{%9ȫuӒ,Q褏WvFTF<ȶ2HH+qK3C7fXd]tޖW.5@RE8%VEr 9jUp6Oƃ1aM|'c.8$@WVGP1Y<ݷzɔ/rC OR? 8ZU~ Gu5P.#V&ZcWF2G%㇤tB? *6] #>RqaDm13!FAq C=x#7݄!0stv WdN: Ոn8AEC֧QxSBSzvWí7@{ nӱB0/F!ä4f'nAv͉a`D73 $u #p$>q>FʈRi;wC2~>1>iP4GV9HRЀVGq\V0,)/7T h0{=]|9 "dsis s Lg}umɢ>M 3: :Ow3..CU֭3Fd!zT2lwwÛEzWO!e-up]H#|)/B8).զ S/)ȗ71zF `[Ee 2}QϨ%>Q XWpVrXW!b]z_wMƺZ˺ZU8LS.XWZj$6uɝ=T˙,;;DUe A)]߂hAM*srWyt]#b_)vj s/T9ðF0&,0];lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0090-Bright Rushes.xiz0000644000000000000000000000465711177557523026755 0ustar 00000000000000[w_rR"ICl@M_!QIwVڏٕkrhw7ջl|Fkok NW~>78N}{q #ZO {r%29d>:±Fy;;7։< }+p6}mܻA&!=kV2޴OƽI?O8&i|!BiYy@ր:zu3="U/^Ǫ c8cF`)LEj>FjX]zFf&}}W]FtjXadNB#"ܤڎkzֆF+j9k6}cK$nD_)(3O|1NN}$O/D=Y AvMx qVDr y!S/h8MSPɶ>WZn*#_5slFv-[ݩ0˾._ ~uӲ;f62<4Jy%jyTܘ7PI9YgD9T2w~D.GH/' a0{í~QjK“sCK[)['X$-i[xɞ@ZE6shj/՗ XױqyJn}܉[(&2Zu[c)TzS⦅o?*(V "kiͥ.F]ЉbJJ$좠Cs w2lȂkK_ :IA fr?xJ_+5 hWaTƕw4?t湯4;B=8Zh4]z>$ab̑Yl8^Ncɭ8ܚ)^fzus+!b#u1Y7-ĬuIih'5'soH٦~'#+@"Oj5-)>6רK=ă 'G6 dZNhrT"=˔wjE2걵,;h&XS&u1#%k_r1pDA*C'3Y|3i sȾsK)7i||MY%E%BQWH _gJ⵳,X"gwZi6@s 07E8)UX]qh5K&H$Jr dEHXIEkokł%Ŝ)&xI'j$ v:,ᕷa+4b* >ҠJ\iF`:HQ ۲ʅm$U1QbvZt+z^'hj]yxM|2ryCA dAxlT<- @dtow 1_4E)@h~ N{{q40j6#3]FbUuH34@ym:e$Jr%I[-X *6] #>RqaDm13!ZBq A=x#7!0stǛF WdN: Ոn8aEC&qxSBSNaorLקc`^}C(/I_vCi 4N 3'zRq(V(3s`76F'UIQu}|"&Ӷdrs |Js __c}Ҡd-irꢣ<Ƶq\V0,)/7T h0{=]|9 "dsissL}}mɢ>M :. :Ow ..]BU= F}_!&+'}v:{ofK"ep9A+MpK= dnԋ"#;ֵ| ~-6 f/rȶ$Ab,r/*G3c*ܱ|/UhZ b}g2ZmZyʁg2ֹZmIZ;{(* 3`NqQ2֭aR^n]֭3]]u]*N>#Os1W}QV~"sv6oP (D"X^;lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0091-Bright Rush Pipe.xiz0000644000000000000000000000573511177557523027302 0ustar 00000000000000]w8=>rN94!3&@El6I~lIQᩩuhye=nYԟ?o]~pϋwo\'v ݛG#qk<'񭉳]pt=o!V֤l#Fj O_hԲݖdҟow,E0dG1,g ŋuD64$vMdY"B :8UmHiõ M x\}6&p4FwRxoFFZ>2hiM }N魷>[߬_wҗ_&7'crbσuBoiH-w->UI~Տcj}7o#:R'^&8n ݉itK˱שּׁh<[N;/V*e5~C'`7 <pGÄ|]OkA׉p~ʸnpkyq"ARI6ϲx>B_rj7N;"$c̭* h>~E@DR nQo'7û+y V <8C"yNxx/?AKee%c;=dF8xq#O ׁI}E1 q8Od94UߓOdx.Hm~DdEΩKBNy 7GA\y>s$Jcaۖ:3֩kY>_U3."Tgzuf;ODKGi`‰`29 e\re™TPH(Qvr6NRdSJN,~qT*3$AGKoS.jF& /q\g{%:uI1,IE%*m OoǣeR !\-W*j0g'&s=rgDs%og֤4\L +$9_w!+C! R2KjVƉ& 7!>;%{_!/+qX>^DJ,4NwR2^h)Ru^ɪ_{[r4S "]w*Tr/tFOmo[餆6ٽ]ε}Зf5 F}]^iKkڦF 5u7+L"!qg$Aqb}OF~t6(];WsC~!:Wn Ξ)C:T8蔰bzr[EK^ޙRl|GcJx]_>Ȼ|tLŹVAm$EdR\ù̫VfHnܱ"ս@rG4,i,T5Ex6Sd :(|jB8Cqobp.Ǯ@!gIl@~g)% @\8;HFDmrKcmtea@$Hf< suiOK7PtC._g؅7 ^N0&dInYLj0MFbN{C15pXG]Pi0Up*7S[uByX3eWɧPL]Wwʇbښ |E[/Xj;VKb=Ե롮Xu6zk@C]=꬟Rf=YS+^+#&Gn%~E ++.@>8yBDifŢdް0cؘ*.d r]!-CB^5ä^X$H g^Xh1cP}aB$)6*6ܱ)UEncSBXa¦T=iJUfnxԦThَM KR)UQ*Jh_BUJ=-Ynvkwev wne&JS)48//i^V#V3iYaA4YUm" )9gbe|;^(cs&cC[WdVlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0092-Bright Rush Long Tail.xiz0000644000000000000000000000470211177557523030150 0ustar 00000000000000[ݓH=ef$[deoX`.珙pɸ6B6WdlIVKjISs/c }}m`ڷlo|xowO7EzFe޸O?-'W2]xB55눾3f4vZ |-GE*KrږMQ\yJR ?#db{a.a [K>BY[yuԲRý:1_/ƦOhN`)܂GZ>v8>\RyN),[i;omvehat ?0}և` Y^71QČgQWF]ZG&`QmJ~{&ۑh8@/׷/1Qr$[A*秄l2^ zz~`]9JY7$=rkII&0;b#,ၫ*K4IxH԰xH&_#6w0Ďk-QDR~Hp4T_mnmnAєsV^lǍF5R[ݯ)}S-ς2MUS&b(SڧAHDZwWݽV$4N -IJGשH rT]╇#[*=UJgz}\uKCY^5zWhG&\rB7Y&Iϼp;n>_[ܚU)Qgz{܊_Zۺ=.?\YuOQ&ilO.J"vPwAS}UG@^ ]C0}d(U/*4*VqWy|הjީph,:訝Uh1 'w4 nsܺYCWl twJPy aNxJ3pTxWq/G<r`tU 9dRg .]@tvz}6?;Ҽ4ž,d\5َFw䲞ӇmA*)N|9u7z Nv6gPVyH(`n4@Bz3j)PE(@󖥧Έӵ$Z9d/Ss[b8l`!|5H.P^b2bQŶ+ޅ ?*>xDl8 {Wje;vɯ{!lF2',+(\J=n-k"ëy.YY ~,.#D{9kUiۑvCF$%IhŋEV#~mF݁lwJs8ǕDP};R7$rhtDO|EOn*oF5 xXJt(*zBHN /kU@ q\?ߥ tJR̃80o%fF1 I)>~![{ Xٸ2r?T)! 9jDe4~#H,JhNoa,D'HAL ·|tY;.'~b;~wԁr>00#SrQqG'MY,_AC󑳍P,tc az[n[׬K62ƳQԫ*Ơ_+?O2Q6D͓͡nhk!rd^g[]X*r *+\Y),OQa5+V &lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0094-Soft Voyager.xiz0000644000000000000000000000234711177557523026612 0ustar 00000000000000X]W6}W~.59,qvsJ>v鋎b+bK%+-;ٜ{DGW;3W>`CQrkXy5Ӟ~<1"Z #񬺔Ý/ PCx$]9Q7&G[0Cod8t"۠(A5f î8X%06{?6-  <׃bHe7C G~`z匋#(Ȋfk0|qR}3pShXdD-E0Iqkh^pxcU47C|='4>͛$f(q @,? "= O9o]b'@ w72<`HނIϣ%Rԕ{E-eQ rhigITx Z $i5))KQ"򍔪Q Um rTIT7PX}o\WuW-bZľރL1SCxgSεW:*ËI-dzqu-5Ȁm/ B(+Lz[S1WYړ'a:.F!YLpCdGs&aE)4xzi``dH=N"&4UwF>tejbk>iZPA]@<_k~^ݬMZùǣ=֦ϝkW4XT<"2=ZCQ0X6 a&W+=Kc /}^*$~T#$~# YĽaoYl&j7Y *HwQRJ@ot8ͷ/~@[+cb}t=\\ qvhXViXֿP[nph/e4tQ^KWM2ҳӈкvFܣ ThriTY٥v_EG*yׄ+7"uվ=oX\ Oͺ0gT|L9 W1KAz|?D<5v;.TkV|+?m`Ylmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0095-Soft Voyager Reverse.xiz0000644000000000000000000000236111177557523030203 0ustar 00000000000000X]W6}W~.5`Oݜ&(RjdKNuOjN)IL8X0{?. 惱t ; }C Huo>>'a 7$>y4 Yqf:Bh-am|-m=Tb9eG J,!킭9xb)z!Z ;[A0Hze@m,8R P\J8x+3XL<!AID(ɌtCdf+j"Q:B#e, {Eq\R)wv%}pt7IVB ,iR%L~#i FJNIP 9SʦUMP6߲T#qL,?dP ˲jE!CkB""zy8dt5w-U<_$NҏHz E'K&SA^;ُ}ڎݻj~_t}!dn?0p{{rºW8V^ji0=W[I򫺩Z ؖb+ T̴Ls}K<ŪE#}\HA:Kn Rid6q"zO+#&;#hkyCb'5j!2M]Pml}M}ݫ/c-(.e <_Ԟk~nnӬpNs'fߚo# 1ռƄ'Tҹx1$lX a!W+!|%ʱeFHFšjsV%+уHTbM{vmfڕt'5*dTV?]K=whkzXwGĺG@Jua=:aE:/d֛;wL*3_׽ڷ7gXŌaiDf)m΋Qngh Zk\}W<6k|u_b:q!SU_6nDƋ}:{ްRWڦ0FL|L9 WRKE3v"P^ #/՚%fou0lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0096-Echo Choir.xiz0000644000000000000000000000411611177557523026203 0ustar 00000000000000rH=_`IU"/f_i0JH:fF=&ڪT9[5~i.h6elppxoWۭ{{5惿,RxW|;XD͓'d$&m͐m4r@8'7p<<ꓹ: NWyۻ 6<\(`|:gwo_7Rd]ł4@65,n<&ӑ dO}3(b]\K!eF&ÙqӰalsfɐ7ji$]r* 5!ٱE"ؒ UYX`}~; WI' <\P׮#v68>)fk zE\\.V MAŏX)SI|-wȽF\z!`cո،7_1QRCKd"Mf9r)cs> GقDGzߞA>T3D~}Gsv*5^<hi-^Ʃ}Ft GnPĞ.,!a-e5a֝KD/4]yFH< :$R"@Z̡u=tyuQ$ /_Җt1ǝ1+n,F\yt0RDMޫRGCy-)e'}䯋診%C ryb8mZ 8elX;jI Jg(VI * McJmBV (x)yur/5@}L>5T{Bl%FS)x{V{z D-JK\IRr}iWISScĘGQ_ӬѼq}~^2~TUr)wF.-iC-\blKfg @Z]ilvPzhc![zQZ4y;z94dt<#Tg*p"Q0W`%GQ(&O > XOP އ*dyUȪ>5#*S ,8 V%Pb8  #Zp`O();NM:n+ JXi7s0}`U;poT`@1dx" bX;hdAVnқ܌G~Ct|OkR3GVF1ޕ_jes88-50lK沰 /b}iw!3̚ ޾'6xTZ|&GB*- 6ŅV1Z|NIWwDuEmt2͛zこã='h &?q<ֽD٢Kwz8F?zO~<\ESF.[Ben%QhF§4f{TM"ybvs g[F~Sޮ_~LOވ&zihĎK-,4Lod [Ӏ{߾\[/z$9"So:@ܑ: `:·Y-c_u\ddnD܈Bfq0 6+E;X0[xDZh }OGO'ۓڌoƼE5ӻxC$+aHNJjrw۾mAkI#*q PpD5+L7;cϟU>< Shg(XmLMFMu޷bUy~)6|6 D[,g-Huꞩ62!/vfW+di<9|$`/2^wF~>5<ʂy[m |(af~$8=DfafvZ,9/p =IyVavBCЪ?=,W=dQ,fU9~ac * 8@HEH)al`Txk#,%<b1k\?(%UApV;0f:@hz=Q)9S{xנ%{kj ZӦd<_h6,f`☏Űݐ|@AƄ'X{Գ{ ƲC囆b,aTإM;P"߮i1!cM2 Ofki)+cq;td3o%89XNȴU@Bw>"~Q7Mәx6)iqqvU곗)+S }b$|Rb N$F˷qΝG!'TvؽJ]nƹĞ1&,VABwÍLLn!8C\|:H.V5ﶎ>Lƣ(";Y,y\$lyRNQe53#Yw j7b ux3&z{jJQ) y4_ YQYR&O>V]/c'bFDc9$_!* -ܜY) r)f&i+Ax1Mr䘻(TI+@H1lg7Qw rlXڑݝCwtAw H gFwQm/tGۦ2D~6AQMjP7&5ؤŃ15x1*PA~ 汇*{1هZLj*% HaGH 1@[L/=F+ *Ķj 8o}^y΂G@eU'bK~}w*n͝_ y4) ^5 I FO3j\+r:\/w;l,7ͧ0.nIYE$jsQ'wtZ{,w2V.e 5xUz9i MMcsq#^}d/M9/ߥWwcn_Yb%Sy:$i]YR*h_';RI]!7%UMbYGgcQMYYZ|mZ Ƶ)@՛Qc)%FI'P]ï٩Rv'*?{r'Z4E%yǺƮZzs]i3\uizPj=zF!gH]*YpKr=`xu5W!oNN\e5; <.Wt#}DSĆdz i)}rRd֎S2⸼V;N(@%"Mf* D{&::f%kɢ]E.Qowl,{EN:2K!;raTlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0098-Sharp and Deep.xiz0000644000000000000000000000477611177557523026754 0ustar 00000000000000\[wF~ϯPyO|NjS\iӗ=-F$;B̮vDOqH;vvv޼5h:a|07mǻ߸\4~OËɧ۞x=mE&?ؽ]Z0m'~WxHɠT4{x}5LP+[A1#u~$ o*"ZZv}"t$ZΞu2'LT6u)2əE r#˚ӈgF?zO:chq!]/c'bZD>$_ *촰 ͝ЂY)r)f&UvW(S[6ɐc沼P'!/9"YGc|_#GrȱF|1KGztwN7 ݝӡI87TS%ZݙG-P9Pm^ 2D~֩AQujPש:5X>5x1*ՐA"~s/汍*{>هZRLj*%H~ #u_e_Nj֞pt>U㒃t>]Tϖ=FKTkG'(TCpvjm}7; ^մ. dY;a d\쁲rbS4ͳ6)}5h,ru_7l͒?S}ݯ!Y!]Է]湽i%L+6O6G;k7W*VA~m.+s/ ˯=GQIZeAjRrwa_c(} AB=@ߛ7Lބl0d櫎Iw'yKN% w.֝sU%~]}˥b;R3mP~LlAQuP':U}Ue5/ -6"!-:o}]E[,*7uP2h.+ 7d= QD֩͵=YޓuZ=YqɺMZ@6vXWUc!EhOYg'` vw'G |B4%.u ܃Ub`GYϙH8N 1vW|MV3ɺ5HOE=#R'zMg8)#)I~T,Nч@!TejH4OhԚ>L:FZk&`߾`Srk{/+M->M܏#i]lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0099-Sharp Reed.xiz0000644000000000000000000000703611177557523026224 0ustar 00000000000000]MsFWpuٓCbJTkKZIHBB\T C 0@Rr\9š랞ƛ:4ݎN/Iv>ݞ=vzyrjs|7 ܗ5Rս%TS_ ??_]s)ޕ?Hgo//f~%ɤi< iȟ8pf]_ݎoM4 "O~ʳUMzߣ܋py084s˞3y}85!i.b?/``9oOI4ͩ:qtq[G-D)gX7~:]acfrW4~I4|~ՇK'ba=A>M =~hjYZ# y8/X&A)1)oG{Qng waM4"?KS2PMyHhDby5%ո4 8AJY^h"PүVoB?:SU(y):xөUҟkCg~ oW%EuS8IQ3Qt6Ǐ,_?^#gƊT㪮}C,{6$B;Mh~$82!M3}pew ]|}<ۥ_?y$*Y-1L6r?W/ sm4I:/ 'UX!(ed5ḎT5xyhu \cOH^јS[~JW?~8,W^Ԯڐe[{tB!^N^)cLie2>O^7V#?M|ުK.2[( MNj99N\y%+9ڊ̘??.Nج qCȠ8,%\>މ# 4}^ŕa)mʣ}M諺3&::eU)ѺՏ]4p84kL7QCKC10p[9TGӊL5:0L(KlfiHRQk`q-ڗZ9 Nu{yn(YFZ+R|/m4R|i>נzFSwͷ&me;ZKC`-&V\^_XѺ'[!TPMj*)\aV/VR4Y@+qOed,x6X^) 2W5gD)@͡͡͡{C7l=z9Tξ-%*4vX*X+:ϥΕx!6^v(<0 xEW xU<>^Q,(bJ_uW xEW xEW*je3Qm}bXnJEl^Q,^)וC@,`@-`@.X'L|Vvq0~ ȹae0f{ȱ>Ƭ=0 F c{c`03#b1ØG cs1!XEr)XzSmΊetX`tZd: (9!(1)0 F c 1Ø[cp%c9]17= h4EqzS?&']1r@%9kTy<:k,(l@g\vm-4-#F[F'#K[=6|y~2Z?%y]KRDDKT=7Si9^*[3cbjhe)Κ驖+o-)xg~f&W-7k,gCDiSdUŻqўV>Y%4 KZ¹dKԫ7aC-9 3'FO[9J5ͬR u^9zI?$i=xfz1sͼ2Kf%ɊUЀP*ZefI "&HoFi|Y*ƛ&%")!itUlj"d$[ pW)3 {QU3 \z m,-EHFZq+ů//O\ߋm6CЮfC^6׽jE_dHiIg7e)Iv{+ԵlYVмyhOX^JrZ*mSy݌DUEut Ω%mZa %+NI> մaoٲLw4cߥuG!~ozF_֝dnX%G,;qgƝx]lfݷF?kI(g2tʵ\8uqF{٤3kH:T_:-oi kC%ZO+ܚVX6 i -mAKG>$n9?:Rܛ(\•C%mWLuu3|,7o,g#+7]VZz׫z-~WZ]x^kq~Ut8W BիtQ+k%r52)_k|Latv6:-<ƏUyY>ǙD5ny bYU8i!;Vo c%N="ڜd6\#̠Vy*pշ6ظnQJ-6-X+`mkk(w,oS+v3hw 5rߦ 2|G4'x}Eo~MmPslmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0100-Far Reed.xiz0000644000000000000000000000720511177557523025634 0ustar 00000000000000]r}W0zDHԮ*E8/($I!@4H 0`E9dK鞾w~1ue=^'&4?};}?ӻ::z=%:NoW?S_{?2^Im>y)O&~jϡulO?<8;-wdzNσ{G'K>y$Bl%F^+U?ݎ룛v3[>iGiR 63U~ S/Ly-FI\̓(%dK"D^L5Ie*R1-=oq8 wMV]|_2@> Go`q?t7_mĽol->,w]wxٙiNyd6M 4 ,;CIsOKRт\:֦"8N?2DLKlfVeJ4oKD{XIDS/5|jUߛ`˳Ļzy'@8GGgwOjDK H@YIxrDzh0q&O.';7PLNʹm&ҭ_(xK?(Hq _~_]MzP/Efh0:b a':h$z`I<5EQ , R0GT3:O _' pa5fnߘL`JBFZ|jWVԨzK5]jBI:g̵;DPcq$:A!:)wIe\sTQ2m{L=aɣYEʼnQ2n Ɖ81B=3B3C0#0Jry(Ď0f$d'f*)Aate0JFwaW3NE bNo$;X tYpj!8kA &W8;7@-8ⷽ^n;-ȠbT8kE,Jϲ{3 e;P*rMpTb 0\Ce u@u k$gF(9 79`f5PCN sht(ؤB^VmY5jYP1i2[ODNt$7`u.@a&m@Ł9!C@&s䶱J4v;H $FEZ{sP@Glm"PySYv[ tvj55s:I5Nn,kW uC & PT@u hAj%hGL3jྵF 6zJ  S QPJ lhjY6.o R8T6Poڍp|(I*4Y+qKFgSMlqs˔b5"XkR UaD%磝r[z}{EqP%AJ QesQ%A^Ԩw \J>_ ρeԨЂa8.z.zZ6U3믯@s%&j[P%7J}E =mAj* -@AU8Q%t.|EYF>.z *>U.*%c=\tٽHZL^eQCxqYS:V:_>=nڮIUtrtfw6gh>UYlARYP&ߥ/<&aV?VCADd9މV6-e60YH?C>.sImielZƐIi2ou}ݯfCH8zi8o;~xGן/>F?o'~?LS~FOB2>oS!օ'˳_x7q74ٟͧal|ً,kSBuD(gYAuH?9ptLth;ÆƱH6U{#5hl޽\S4Q&h>ٿ suPy^,uham.?\9:_94ύPc8 ;\#@kz<ۜ=n[hTu}ϤQs ɷtЊ=.^FT_9z)ZK2wZxcc6.p >ڮv񢹚_^eڈ we\&Ӟ*>VoD|=6'-ioZYj25s|t0:lWh53)5$$S0Y*H,>_ĩ䀼e4I'_j# #?U 8?]W2]J@"ً&ٜf. *έvA~@k\Ta]zGc7c IhT9@v + a*ba*Kj2@Xi[bU:O2 ƾόHD)Va0 l 9R00]0&?!PqcOA8> $]}2@aE$a E,a컋|0ڻ[9adNW[Qq3HTyLa\2! } E[ (~X6X̴Gwtوʨ9,{aQTv1"]{gda) F]nTaaLX˾lQYXy{q#}aG?6@Xq=cSQHɞ|ua̖wè0Bg FH Bm!8wM *0 @a[,Ω=:%(J%4I4sԵ+ PTI +ҳB-xsƢY٩tIb#q$"<̂8{Ġth}ghq` J lN:pbJp)Q;(Ҥqxb?KfE&Us=E_9JriԠ K,٘a@o ySKK2~ ԾQ Al7SNE5a-l\CҰ@FQq\TAbZCI]LUe}@F稂@iU֐F)h_*&Fux.R\Fi6*!8Gn%[}EI4FWŷ?7gi䧹M;f6׷ԋqXvzkv13:ij5Jv4 7_4]yKBdϯON+SvmߑNV7 +0=-$ͫTcշ˥VJ{åtVL_Ef\uTybLN&#/S.0 _.jxlfՑrH¯KJ=sB}rF9+ WvTa>UeT]S{n Ɨ2̥E'ӟ)uDʺ004HŰy5( lZor65:ػ I)bv'< %JN7[7KsT[cDp8<;f=qտNZl"dV3j2Wk;[Z'fu /v$5Mj=KKMgWäEqOT?[vb7 &Zt^\YzXt+AM^ͻ^L&W˛/{;2NI>y >x'cu>NЏZr#󟌎/OGsQ2 & OxՖ?zxy-hf$4)frV3U~ S/LY̓FIX΂(%bc"B^p{g6=B& 1omO&+=8(7mdtu}l8D#-@5m·é/Qp:mOn?.N[Zn+^~,lx9(&} 4 O/&bf;(D<3SUhH6&Y&F cODNrx1&"~Rb@iBRrmhsS9&%v1R۫́'/h#lݸ凧/_m \zd3IȎ/Ro~o mUмg6鲑]Fg//qL} UDj9T:6+Pҙ =$z*43N8\Iu8$w&7R$WK`d$qG^D'JBlsvi+a슬g/dsʺ@67Xl:edٜ?{`Lv=>ekYbCcvvUd]*~|sa]0.^ܣ1Wل$4 c*2a LYƅTd.Ӷ(Ū0u(ٟ e&)A}Ra.@># L s L9vaala*M`2B.0ƞsq}2:#Had0ԽHXt`wrȜ;$l 9\gN8֕nCeB'3 P Smܱ:,i|GP"-;RmosX. c4(EV0 doRBw>wcF]nTaaLX˾lQYXy{q#}aG?6@Xq=cSQHɞ|uc̖wè0Bg FH Bm!8wM *0 @a[,Ω=:%(J%4I4sԵ+ PTI +ҳB-xsƢY٩tU,g3%"<̂8{Ġth}ghq` J[ [@NL 㠚ջP."M,KܿdQ m\5Ga@o ySKK2~ ԾQ Al7SNE5a-l\CҰ@FR]. k1!2 p+AzoE_)mQ9 @E5w (Z 4ƥQKF>4QJEQ[V,pQ@`l(ƥeqO'ͻY54inlـM-dݫޚxd{6Z鬝*i-nWo~b6k*_Z^1is*ڮ;FZaeYDzyqYbpXioΊlك֚*O̟ refbԕ[YR\:\.VU@xɽ_igN3wWQ(gʎ*̧쏪kj`ύ"XR"4d}}hS_YF#i^<6}^ Mۦ:T{")E.ğDi gfiVjt q̗hRg磓ì))TMJ2{6ss[X|T&Wjwgc@SX\쵮|s2ӎFQSgivɸj( JvҮUFu}[Ϋ?q+KK{nse0R5JQnv۲9hXFYNy?˪M:V-$zA^>A]dZe嬆esD3!WKS TuŮ ;ƨ⇟.~0٢F8?*M?+Z6Bqlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0106-Aooww.xiz0000644000000000000000000000426511177557523025371 0ustar 00000000000000[QS8~&NB'$\^4Vز$R{w%~iV}Yw\75پzwaɻN'߮^qW_Qx-w?u'd%f! mZwWyeo2 K[ߟ<`YÝ|O=^kpCw'Wq?鏯k}$ q <̒uXRq#ɒ(X-mQ !(62[ tHwm&֛o`W דe8Ic(Oz𡑼ɋ$O3 ݧڗZ9XPlaDqK&.z|xB/w.@qhDX SmYsz3ọs hO_;.Vbi0/!Μ"&a^Z[bb-=ro#>_ncE(Gq϶V#P mË o -Z-D<Κ@< "˙$' Ih܍VZONB0Gͩq * $f^EJ@V}-EDQ?ooEâ'uRi2ۘ(Ʒ@##_q{>=$6#[<4+QNІY<܅=;v=%oG*} .S`#PaᑑfL̶*TLz6b[%N:hM(q~hRNQ✯4<;%>X(wbLZe=\q%!*ԒiuR5p']lvL~jΑ|xGBaqz4 O5Q4+d/iѽvR.*l%ccDvřaW= 3]lۘZ'R`b0uprG2*]/id[=ãdr#q:nIǯ"3}tTelAH#(n&]MLS&=JzzmDEl*i*ig$QA,ÏⓂ|MLH̳AGpUrܥwhl~!{[P3nK[Ė G7Sw|Ta2uPNu2r$\O(%IơB,QVm5?Ɨ4 lCVAڵeiɹ-ƟC7SRkfK51i" n3wvxb4Ҡ/u|FrhX\0Ӹ6]{}GSNA' ^ڥr>%;au}pŌk g]M _;2 ?漂6VU[SsV&)~qyV>|~귅Noou-%5t*VmuTY蠩Z;4~4nƎWV/_%6W%5qlrR8\t3̺˙.rKaR.g˙>,NLiFeŜ^0ao{y`FZ/3$]IqboyRW/mc%fWW>yY+Om׹' sLײNjUr/]XxpבE qsG hU<'YYx@}Vf@lTj^ptۙkI=Czk',xV+5v=run{hY - YؖMQ'Ȓ*O#j@_DtL +( oec@:yjYߞ\dbvU0o{I{0 HK]s-)-z=WcO_n**U4`^.B'KIB&X/@< 6'0 qeYbULMmŶ.'!zSxe}KH]ߦq:Ky,UAQ!?:񆘑vY7(c#KcU dβ7 A ٜs{wӟw3ɝC&zzRK8lECq5oיi,l f/QB?>uXե"fMSx ^@39FxKr&.s;Xi x\$p"+89c؜NA4|@wV"V\zW߳Hł#2(Lz>#)IנHFu<eٶ/FGW=uCgȑݱv#xpx$iOMfpQ\6pi9 ͤ,=PF7YE#M4p$ɿy«M򏮗SI*䜢rB;"@ˣњ&G͟9LMx[q@mz:뎌̏8І@~w%4)oD Ż}<bȯI:1ɯ2m 8߭io9U_m=uͻ/t?L@~i\ցZ~ۢ ^=p߰Ǻ}8G>&m9O799ƍשNu]k[^aX=l]jI |oesf7NihzMҎKaPs&!Yt)3] L|9ӭ2TtLñ[Z;x|40!7H SCN…MAAw5 Oma$4իRXa|429r^1>A!kćjaqcxz&O{Z=7pZ=%J/+jy(kZ=^c4zM~+VP^@t#!kJECP\ fX؋n,U\~w'+# iw_ui:G;O/'? ~fGLuSʽwVT i- ڰAlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0108-Yaooww.xiz0000644000000000000000000000421711177557523025561 0ustar 00000000000000[ms8_=ya/%\9B{}(nI¿5,+In:]K>]o?<{~k:o wOo9;^mln/z4[0w6?ȞJt,c1qzӠqM7&/&ӫl4ÿ4"alt56Hd3^DxF [!LWpzYV|'(sKqfI'O*&k?hbAG-ƠD|\=+( ?-k@]%r\+ ;K\i1Df|b4Z^ X(ܬ n?/'CcH\f ?ܓu+b6ě8~ OI:#y$bKFc:l\C-2 d.ԹsN<̘jϷ}wQe |xa⸅s;h4k @jhK?yӝ"nde[Rt@*WI ́8)ZV\L|Ͼ.K6DG)4)H:G]Ax[SO_U2&@K}6{(lF&y!kW%%a |8umTp`"Oqp]>A+)# {rI󴈄td<b+alXu/ASTa@ܻ:=&$]_ jB<su%eݮid[x{1Óѥv n!shYBEjr0=Bݠ. ̵Tei64eά'"}^̾뒶꒶>{F=ĺ?>b,B i!;BD(lY`qS*^X9RRT?.H@K[ԌҞWbo7^s9w1|ta2XI:$BO(%YơA,`P L&Yz#!;>Aǵrdi՚ɹ%,!Z7SRQJr.L\mܳyblnZ6N tTZ|0z Ź/309q7w  R.=8V4xVSL{pFd4i1:Γj"Sg騿5 &;:7ZgdVڼE /vM8C6*_V}­d~<穟Qo=rsԣgMݨɂzSMF ӕpVt% V3] LWn5ӕp]t%W3}Z%ia]Ft||t^1!WHSyO )óYژʄ }R1RJ73? BS=>ehVrxsBezKyĨ'KDUO\nQQQАAQ|`c;*ĴRQR$Z&8+dk%U9@߭}QV:5]4$cAߦ'{^ϦgI,ݎu/;q,d= ځnX6J59w朴־TjmYXhg; ;;mf8vƱcիpҮXDìb]vz[׫!i=z5X׫P7jW_i6l2zG 9=<bBnwrrȤ傶w\8*%كLH͋mDv4$~K-z1NUCPƠD~^Aџ)V7[5-wn&e `ǯ2E/fc됾|{m}VZ'a*&[u>JZ?ď؊+AqK~g ={u t0M?ane:7.5t_&0xr+ CerrcyN/qo8cIԗІJ~.}p=|/nqlh]Ʃ Tr|yI_g_'"B (BGe%<pqg>vI1@~`/Cz$Ԑ7;=nfxd dªgٗV$t|74Cw >OlTDv8|D&G%|J ѬpE] u"fH|  瀣pj1qpw<8NF9&`.]~GSwzfSL6,NqXg6n+.>s{|h8aDD3]t$0s9+f:t QA2EtO +Lu9E9jf@zf@:$2@Č5$HU!G6JOAP9ޅt$[ ;ZX"ġ9x\gΖ ׇdAZNAMDb <D3a R"d$9d_&,iIsRbTe&ᤂS[txQt=?h\Ehת+ :uC! 1ԅݵmzVD] mLcfX\ChcƤ]iChg &}*&*:uC;uAEVF~um-VƜYm̫t =lթx@u%GՁtI8? ӽ.5atoҬ5 )?X )ɤsfBvAҤ EQȪ^{Pd5./<#0HHN r$GrVHNэP. dhNHNuI8j}Iv Vp-K&զ|-x^XdRQi˅I(TTHTX^WpZfOuh||wSj %WRGhϋ{E3)'s Uub~h+"s"wJsqU?:M*t3HvKͽ,1aey>4o.hSS?Q;M,{Lh֖c\4m-Y*_$q%BI*f6uF}s](/.I ۠+k<4C YCWPZO%%mH ͏{#˨HJz]:>WA0[Chf/R+Rf U$zt;. k'QV.ωjTƨt .BI;%EIF;hNh7{Z0itx' ^-+5Cd;HL8B=zkDbˆ`q\g{`$:dz>[(|6H^-$&&?Rھ_֋r[3_!#o \מ"mh0s'Ƥj4(ߡ]VVi^ADsC1oBH.[hnU J}~S+Uً,EJ+ًkW ػ~{`%'ҏBPOE4%&4Y3эlFLt#m&]7曉.^NDD/\M6P: oPoNA[IҏjrLWݦdDBQ*{*q*yճLn7pcL ^Ԩrn? .;U(gW'+n%b+o|ҋ x^ ,^SzMel4E8{MZg+%=M>RiOlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0110-Eeoow.xiz0000644000000000000000000000544611177557523025350 0ustar 00000000000000\sH_񞀰1vU-ƻ˔[!B35XT)ztok m}2p\caqӧ^-܏Z̷7s؆ʏrvALONA6~NOhi~qmuoo6Onb<_;dA|{?Ώ6Ld{[xQ:gûb42Nk 3VyI%̍:b2׏p~|`X`_JsX\f3g}I^, Iꐣk-*RʫYloG$Zm+Tn SJi1dpLM9U4wmW=J -rV-K2j0R73dS_?3sdCx>W~ Liw-L3v^KI0\ 6$‘1c Up9&1X"I$j쌐]9ܳ-TcVktJf6a4RUZ@ճ)a\d@xa]"{\vD_I=LUĆ.t4V1a*5~V,`R0c~߲.}96@LY֝ $rԺХ1hDes**OA(0<+p\I : k+᧟0gbb`wm9FS, x cK~K(CH b>O݊bdT3rQi8|l.PyRާz SMUqzЬĬ} 63bSc SF1QSP{E9iS^Z=c{IMkb,wESv X(mL ԙw ύeLe H66+MGSZL9`oLJ7MIiR l=J ؘI\.,55+}Y)нo$i icILBh9ԹR+MJ!4 hjV /͡F[=cKY{8όEW {`3c)gƂ- -0عR3&a /D~D H{,Bxd"a9RmBe? X͒ hsY6W#0\),t{BtW{#: =07Q(}j ZYZ1$Aj4m,uhwdL`ulDFEe^!dO +5Jm6emȓ[Śۆs]CIyǺ<< S{'yO)F|Fti#0ɂΡP|Jdf}O kW ڎ=AH4]u-vFypo;nS{?ZOc}+h?ȭtO )FpBGw?h:e 2$m{̲K\&Yf$.hoy @t~J:|B'r>XmuXN܏`Vsoku-`gX #4yi^ܓ { >1}ȊĴ=]/44"l>g)s} 2fGc@-=5oY2ߨvp4MoYy0Hb `2\s>6_faUsm>ԾԚ5ǭYgnVcY~Ebq "02?}!isISȂ(" lq&Mm4'~Se6}noS8S8W]@il;#w@kq1 #;–Wql-9~~C(vy2H(con48dbܰ #621f9o L-5:[@/\|SYE$4 :b.sgh .ԉKmYȣW ?$ nw`X΃ސcʃ&xkϧR>HYqufYz b2m ".Od2}b$Ԏv%E?Oğ[0OG0'ove/4{&J/x6~@]b𼭹C$:GSL+JN&3FY4w I*Rwl:ɁX}-DD(ד,b0mC);IYj-Ax/%=U^3C 1|k䁓p$22qzixq@I;[x v:YܑfꎘvqsUbzD8ʃJ-F5]YEٸ ANyL(oz %{i' J%OyQVLE׌(bYOwhw_M?TlXқXmBeU<Ǧ޻DB=t34c6eٮB%ZAw]ڄ?CGCzX%'yx<HM]ǂ-AA-{*d@m;BFVEA4,ibkLv@vQ"2sIlF/[Wa[P=MWmD3}Ȩ dUބyR0ؓ0rP7(>m-A-9qWX*xelr~0!\UvF6&s&C 6MxsG- 3U&ZyǺv<^_#wՎzmRTj=‚jqTLTXO,Pf4P̀?^+` L -y |2iP܈by7oF]A@bwA _+_, WoO ƴ26oc ۬r` ~Q*kO:}&+ wS=_8:xol^R/oPc-_;&Ծ͞j)\ 7>95?}Y˚=y]CR+oNw ,K&ZKrL]$=JTܺqH%|Vvu] պj]wS{5.L`kp/bJj{I92(<\_.g 09DI5Mt+8Ua 0g;y.>)/$j:blxa+:mlDZh׍lj];:lc8ɨF7c6TщJw~ӌ"cLqi=.>$`e '_{U(Wu.|,бI||ZX5s=ӱzٺcy~z}ԩxᷫ]dpϑA} Mт~u\`ZOZL;ly'v+4Hڤv펮: Gt0_KDZj6]]-5Q+\_'aoxHYh}>y{F2+ yMm]D,{f6hfB-H<v!dGB͒z8JNd Ix4HM.cA 9A۲SU,(&{L uDY=iX~*xggk!gZ˔y)fT*mtN9Ha4? TP-$% %5BQij h RČR1B͙"zLKR5҇4$iIhqzM[Y^wߎD iQ8&UKEGci#5,,+HNω !b-sTm^N9.pQD:"ʖ*-MtnT*((/fF]'(CK)+vD3S\NB]S68.褒ilCvum|l.#iա6災!}#":4r =R>I~X>aw0gN}RHyU'':F!G1̫pYUXUZEElLbZuvfZG.Pm\_ҪiUU*yGjMs'JUZ͛9Q*ڞYUՑRtSGznW'JO?QO#4ZˉR(+DC_Rw es7v|$zݒ'y3Ye"z/i|wɑɺ9sR Xn9֥p]u)̗cK;re,kxS^W4H-R{E`$=]h__/Al!tYB%,B6%Hࣛy4B#(N_΀bVtWُCI,_Qg;:dTbb#1oVl5J~Od\CJ N`hvG~sM6'Ph߁U[?v) 3FI%yn^~zZ-k渦m׵'t0[tqݠؠҏxw+vzĴ'Gb#{:unLjCxr۟ #kM`˚EW~׿r .}xjZr_O`2 {:Z'2 #ύ{:aOw#V.Y39Y^A3wB#s cUC@ *ȼaoa~ئΒF7lr;͢`ȃA@cVk}l x/4gۘ;l{֬NmI=d5Ui~!X$kG!r3 Y$͂l#i y]Da8p6y$@p ̢Kh wʓe{ 85-mcg$3/hͳ4R\fijGR*dβuE_GP*]@8 8Gۻ*37r1nxM- P [ںm L-P}K_Evg /AI:NƠoLxAm:qe+.ytlpCf|7e4HǬ Yf;NC'N‰|0'˰驦f}&lLdqGZC<;b )kp#"YN(o]ϡ5QT(|k>d?TZLqvTQeTDzh-F9{;9략O0ih?] E/&x]*6,h6_AM{F2KQamQKW]"!˞c\@nwZ/MX0W E}y㝗; 쐨_;"3?B}-J ~Cf/5 /vAԯUŢ ~JNJviL+S-n:A8*W:ԩ7o{Pi~7߃ӏ{(F_^%eA5^"OiVA*Ε*}n~Yӗ5Ls7J^e~ZS|qB$_1AZ'e&]W MC*Zו[Ju%W[%u{umg[{|^1!<SRCNԍAzp9 Nm!HiJLj[@ n}9˖+F'(OtHH5eGڥN>)q)kE8j!lja;:lN5 lIF0Z;NP<ܸnfcJ]Ppw!(Tf{W~U*rf؅ O$r3%%#"K{+xo#'N]C.sH7Xf83cD4 43Clmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0116-Power Guitar 1.xiz0000644000000000000000000000415011177557523026720 0ustar 00000000000000\Ys6~ϯ`'GQ-)Qk &! E<w!@c)  o>||XƆ{-A<˷u>^Kor:lmϓG61V;Zo~B[_ވL8WG6&V7)N٨N]krٚv{֋W( a72@ܖyhڝuGE6O1Ak֎ G$4$~wbd8LċEY.%^7%a VQK=To߱_/VU5Q`6?`(L ƧĉAvJRMM޺q]o/C}izc|1 ?4\TQGBgClck޼_#C 1$3_v֊r6josV _2]擲l4\Gc_Q_/x7+ZQHq.$Ćюm "!6DStž 5RŹUv{=4:^|VV1xpq+ B挝y9ũo?I y#H]+&gZmǛ]Τ 6f0ߞ_\+16qW0y`%ZIsw#)+׉mgO I&M\\\꣄GA^u-XD*gײ*&qqw?7/ |F(}JW{Ic .3eܡKR DѩNfuP7MjdC2GcM5EE]KR`x-QY(HM5j<Ɣk {?HRW\(UߑԽ6{RFq;Xdlʅ2-?{{rV{jIT.,9/ %dNҶ3fTY9m֟OU)y%| ASU+Iq!|{ka,yYoԒhd;1{+ ĕRе+I LF/ezx#4y{Z;=:i Ǖ7+ 9")e#Q>>6;QvCreʪʔU37E+,AD| eD{LƩ~ Rt-?Ӽu-']w뉮DzS=/'^hȘ1_0 H#|~ɶŅ7‡`п^л]G~8%鶡R=ꥡTk'\c0MK< j2wӌwnuh2W D3?-]eNwT:-im-yɽgѣr8,wf*FK1=)UClmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0117-Power Guitar 2.xiz0000644000000000000000000000416211177557523026725 0ustar 00000000000000\Ks6WʴcٞQ-)Qk=*i &!D$X )ѶZg$v?9zi4$Ͻn4 Z׍YO˸kq۶=zۘb-)w_6ǍL8 yC #ⵃ]cedОGCyK+r;ƥ Ć20@ܔymOhܞYw2%V A$K 99B9nHhE\-܄|N,aw!@( (XE!, OПmz[{EzMUUt6t&% 3Hf}'1r(}3&&o,GϞdsq|g|6N /0VLaCgMlcx+M)1~#7!vdJLҵl~ٜ"&q/mp.IY6Ϻñ'sM\z,F(^^8UD5!xod)H <(Fb!CTqnpNM gE@L>LG?[B=L%Ǻ]7#i)&KrBBHtRL1atųn).F%T\DڙLtc}թ09 Z{EB4˹,Mpg9k4f/SW,w&(\` P'WI˻ēwS-8  AE) }@4mܥY\OP2n1cfd>Ke.qLNr6) (YGQJSpT{4͓dO`4߲S}Lp pgf*mH4qSJp֌QY8q5Hh iK}7 Z*, Rț RˢI) t#mUӢuPԝ: +jC[Wy;q<7g.T#Y Vtw=Jx)q۾CS^i]4Jf]DWj+u5ѕ|*TMD/:3<`@H! ދm s^{;cqL$5uC孺w[CMI eҩ{r۳K\/QI—;,֡K]I×>n/| w:yQv&(^]o K~y&uɭo[zCTZGsAClmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0120-Wet Brass.xiz0000644000000000000000000000415311177557523026057 0ustar 00000000000000\[S8~WdNCaBh3 v_4VBII>0yc2?>-G׍wGsLײSoËɷ^ӵqxסE u @i]\ʁ<_PߤG:[렿?np-G]w^s肝o f$:n:Sw#Q7ƑXт>m.~hGTv@-|d?saʇAM̔=2/ Nx<$ѵM&+o`S7>n؂!ɣ͊EA{>}vVok_k͚4`^`]p;MZRx ̟kø;%BNc'rIIһyo&bCR4sqsU3[&RˈI/ ḻHJF<74%LU@x 2:N`ݛ279hK8D]#ߗEOPZ-Cǜ"sY#fBSj8Bg[m:p Q½B sҵy&^D+2~vR!䎵XX6ʩfz&"ɤvl-TEKzd»#1 .шltYrdHx.` ~Gv [Yy<d9|>uRݑpBmA+$)p jDJӗ#tP( )Y[KQը]op-X,g(Lz>#IdjtjOے]v1ӝ6ҁBQW:|N*gaJhۻ-8s*&0:Tc}'klZ:Ս, &̅iX?S&+JGGv' GlI˃pIQG dd/d5owpR1Z2P)p5J3P=ܴx0PQSYk;On˱7wHIbu bJAwpUh1_^=*=1|סo[b˞-C z@f([)JeϡoGF%PGg[x8_+[M.CIpB/UL(UYB`d(2Fq56q*A}-x٫EU%f>2Ϩit Ű1>b eBhIR0H. c%p˜w`SJfgF7"9mkR䙩ɤ BgTGF&SLP.$'2)%Q!h";tG7AH~_oCF"d ,587FR7K,Y씡[eQT$/[ f|RSz w;<9 r̒OĨ{PJ˂Cqj'BYfyf f'+QU(MSWZN8+g[ZDQƙMBu7;rDy#=}.-Pa~#j/nw ͹G{+ү~1(܃_ɀvv ~͘qL$c{*GW9Vy=uͫ~7C/Eڃ=29{&hRw}9Ǻ9{jc1;?&y-ly>츋8ݔB7_'̾ѝ'ނ?ޠI톟l7 olKxK%H15B_7/6yL՛tT])5_R|VS])vTWj;Uҩ곗S rW{ l8r_0!a'~y`J;I8twuջ#;8B )r %Z~*i~w N9nx\xv\nqIьK3i&9xHJ+l_T\Le gC* }^@1r h ׁ :bN6+ZiHjIK)8H%F ]VRa:ź`*bZŶܷ^ $9ߤ:L{Sd?~D̏lNk|/p>M%6?n Pܚ)U*?6WvΣ3d;Z|" P`D%Y-4<>nfhHW%Њ~~8C$:?8F'%7#McɜǗ7V?ʾ-; p8v҅'W x<0^= P`GGgz/qB*2Q/EͩDԧ$f&Pَ*}/?AoD2r\[ Vo_90q15~+X7J=()o>Ƛ0[.<]6z@Q3g\^Vzx\t"kN1') y$@lTlG5ߌx?~#C.Mx yH:RI$wQHw!=CrlCE*@C}2tpPkuO8DC/څkCfq8qD(>qq Sn:@U-@ SsH#Cٖ4P=0Ӧ$GCgh?N}%U7<0AoAK'r"_jARy%j$JH2wߝ) .5!v:MNVazq:}B(xK"q`[ K$N=0Ƥ,Ųf9x^ %n;rkXTQnP2B OoO/.tyY+}TXob_N, 5֑eH;JCy{];@[6saeF/ԍW,gH1CbXwC CnP+p((3&9+PJєRiޤNs}X cSj* ?Spo =bagE18%#)1Ae|šGEeqvtrqnBvDB,\𨱹[=uKlʡR&+[IPZi,x;5ZfP#@~`[\xe!̼л|Bd&zD4sT2b;`ŒQ@;,nfЁwx=y6%_o=3gC~1z!O X/b}_3^G~G(ojK~d]:ɗ.D~O}r`} %I"!)R cB@,l{jNE.Ne{Û=-o*rbqBͱs )JzG Fn6% {Ue/~w/Y,)tp 'TC% !jgI)˒.MfN,@=KXK§#[p "i޺.m}gQC9\KS]Cm؇K1RSH!)}^/ȇ."d)Nmux^#CanWUs=DlW=zD˦^"g%lCMev[TmH+Vo"c\5M'PZGhmkZ1SηE#tޚ4hUCc !7֭OmG:mc{pVRK)`~5.*yŖdl^ab t{񸠕S@X6Nܷw~3x oSC`٧`֣CQbg8>2 4Ń]#{aهPC#4#'ʷ#'nQ9`?dtbة鎋e]C~tPs 6>2j:B5w堘*8u\$ޘJpܭ](QE [rT?n(O}??f2@I䔠M8;?gLҤv@q.h6Ayq %e9TT@jOɡɡɷS()ЄuHrΣ@mR=zPn& e8޸J"e*9(I7 o9r@nrkGRNJvΥ,݈AIdGιmJpe)sSVQK !_U.3_\+m{^smߓ*VR+0J?kȕU+Aɒr[)m ^P=u6͂0R: Oљ-|- ?Io뙌ӛ55Iu#eYWdV Ee1iL#ƐNDr{"J=\e_HүRG?hyH%KoV_5[_AOErwr⺥q%m>V=fXzUX.[MOzC7 MlFaͺ(Y;6zPf]+ǹQe ]s1/~W|yLS7ggޢcqcݨ[*?J_fr޼{|!=^v/*-N~Q2g݅ZJhD>ժ٬N橣|2*;N}ZGVC˫tBUlv*j>Xnk}6rG~z`iefB74K 1۳^lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0126-Pan Pipe.xiz0000644000000000000000000001001311177557523025657 0ustar 00000000000000][WH~ϯ1L2fİ@#l%-'oVK-d I,O1]}.Wy6m} 09﵂hOއG{?}NΏx?o՟TwgB:+~ /t"ܧ?ocG 5ݓFg#nxڊYfbp|{o &2?]ɯQjKvл\W޲fgoNBO~JyONoS_aI0[z`2YfAR6kctꆐNE"R1Ygs0Ե' >8(֛u6Yu6~8d"u P2{{J.߷7{twxr^tKmŋO|RF/j- $B5 ֓V+sK:'L:&"r;r}+O\l7S )jY^>*A0 rn+7p*RA4XCx^ <*''럍w!;e6vtΣwgNc<kG3o3Z| 8LM)3}raX1uØj?-CSy /xZan@sc:ыX{+uQuۢ"NމcSU3UQcXw(SKNmʼndriҮd'nu7̕f\~rtWTyHJ*ϴKҷ6;Iq&&ʮb&n ]WVië`t\Xr@grSKAC`٧0ӡ(pF]g]r=ưC!ʑFc'#;ʷGv83hg#}u%b 5nYO|GL?C%"4P!Tl88@d8t6j;(3SA1TqsqzcG8RS%w٩VGP~ SA8k39Hό1P1Iڏs9jJQf#\rQ֙ Ψ@*J$mm: |%(14D>k(7@JPAفq f2PkoHTl+UQ 5o9J8b0r,4 G0׎ؕl0Ka#da&!s 85лs!O鱊r]jd܈P@f%6ve;(NgS!eu,_7J#4%~p]{jhAq<.A~lε>M\v@ 5PGQO3jƓ HuCG.J)84좜7\T~ ~ v%MdGS d( ޤ.J)45gR a.J)련3U]Q=(@#.'P (@3!.&<.Aug0r]t˛nlB.&PwЅ0E2tQ6~lk(@#. &̑^;5MXCل=h@n}S?, N>-L] EvjbsQ":.~4zP9]EΤ FS}.VYԙ?_x}8K>5kZuω/aQY|Ghu7Ԧtg-U*NO5o,TZv]Iy͵GXH8h!Wj֩%KmJ*n{AT4 FJLx2r |hhKLHviR)gӈ,(kuHi]_s)k'J]?2jk z/Z7$c|.ۢ_})rc6\, ?I((Qt1Xj6[Ψ(K,5u~\?UqտPbmV4*!+PVjVlP\S]u\7AoTS^$TTЧHҧyoXٗIE)T\TfrSVTa}kVʏ(-qY5)j D6Yi>K)R"S݆鸬ˣ LuW]IK:u[Yj3KAnQ-//VHI٩0h}QܗfWifl-!PSvh(!unP J/P*GHyciubV#T-8B/5JTGP ðT7k;B*9+Lvט^2 /=\Ib$WGV톯nѾ?Z:R/fI۟i*WdV>FmkyPSѳܝ~n)f\ɟ}U:ϓڶ+xs3m畛v.gf^ĽWng(=,I/aY%'), x&} Q+=OjW/_pD#*P3?0BuUb ilV*]qneٮk=C׹G}?~ $>ǼqGcO'uzoiT-ZAsoo޽tcu/g)N~Q2g݅ZJhD>ժ٬N橣|2*;N}ZGVC˫tBUlV KX:0d?&/'ZM\сC3dj=b!4אӬ3S_߀.x`2Zݜz'WhVlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0127-Pan Pipe 96.xiz0000644000000000000000000001002411177557523026101 0ustar 00000000000000][WH~ϯ1s&3nbX s{ؒǖdZ}26I,O1]}.Wy:i} 09﵂hއ{?}N/Nn~xc?o՟Tw\:+~ /t",(vռ" )RNqA+[!HNܷw~3x oSW`DDc*tWeLj@A5ǜŊ4  E$@W}n0Ϻwgc7]fM͇S^Od;Q$[e &(L=YBozd0qF.;PYt VgVϧqi,<^e)<2xwq90,[67t*! I,1U#a':h({`9x*qF(2\SjS{B:T!+n*'ϗoJwg`UmZA?[̔cW'+G|&GD>Oك.%s哻+itl&Zi! FE%$ atas !m.#mN F|6!Bے~;Ha=**0z\˙paaNΪalr[G16QpP LDFar ("a ;M[/O7H1H:Z}d=DSnocɩ`WtH1曆9v?s(1@|0 a 9a*dUS#0bL]ZZ<{`bhݞa1RaL`΢ Zc`Tm#1@l8| ?0xvnSb0İN;EbV=đg{̜R9T^f=:4%vΨ죸+@S<!]>V}5>8_9hrd'XvNG|muo2nDTbAٹF-k{gwyP4?\rFMbE}fj9(*N|:.RoHpܭ*t?(uɢf-6xwvjQ+7tPz3Lp23FiL*?{LҤ#\Z{jFHE$<\ub3j PR=v'v'N'0EI&C)Q0snܳFzw9B)=VQC !<H֌Qnᗣ B~'zc̷!߹lnEFi@qDkTTM;( '%(RMPZڹCv+x#( 1*iFbx؞A/( 1EyNe3,BчTQV9W{^smߓ*VR+0JK>kȕ*Aɒr[)m^PU<5͂0R:9D'F }\C4}%o%'-Ru=qzҿ[CTY7""˺"ZR+jeLZE2R׏̶C:$ŋV ɘyY)@;(߿(W_Jػ 狂ĬY J]t m38ʒ)6K qymW/'ia\9TE5Jʹ:ڤU=E;k S~J:j*|Vҋ* TIP4/^ #25I(*ѬWeuMǯ뿾fhU@dze泔B--2]yA <\1KxT(KY6㪤"owZNAjv&D5 H3+`c! ,$GCHw^Pw}qR8BK\g_j!GzqpT"r8Bh7ȀT_RoG^a~E'H=U yENP70}(u}*Dr{"ʾ>\_7"o7|hyk]Бz4KtO#U)^Z+&k\y5j[˃::uK1JT|SyԶu^I띛M;(ܐMsu96^ޑLwyʀSV Olʭg!ӠRÞh򞙖s('0;xu}H^12&{m7R՛U ws1۳^c(Ǧlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0131-Lite Guitar.xiz0000644000000000000000000000355411177557523026404 0ustar 00000000000000ZYs6~`'WQe:Ԗ\IN``Py8ֿB<pAJ12v}x`QYc7?/O;>r1οX?`8}&U}=@hG; .u,I3^ Oct>Yf0\[sk:ˤ|H|q -l:& fKk|-BYWi yD!tm&ͅwF|z{mO [;s~v1>nB}0w/ϡz͕adx4avsKǝ; .7,P~ jMimdbroBdQcUl~VH<&Pt T" Ud4 94 ';?M4 l]Ch$L`Na!I(z H 26Ay*4x7WEm?$jxگ*A![R|`^hɚLzJ{Iq,OWY2aUU^& X(LWrvWjrctf<ǂ ]Dž9M um~C40C"u"1PO%=7`ppnI-GT~ mi9_>  xLy67ղwn6+b8WO8Ϛãp{(&E3W ;+jأ<ڨNiA(9P▪%(rjyk`Ò4 G)d4P"{fU#A :R+\'v]@[U^S8B '֍ajRW:5Cfpqt|xWZj]ATW7E`maPM2rQ#^{A\4I"jh8exRٽ,~y/ZռK'H -aD-ET*Z:B_EK=wf#()NiSk6CMRBK%|VvfꠁUz()8 h`뛖DŽnacY[6bB bur=hQ_zEc mas OfѕrҔ}O|DH\}NN%yR s.Y< :fN\|౜"hݛHMV)>0/2ɰ(mCs->TM i%aDda3MR;LSD~Zjl/5׏2nfJ[zƒld"> *8^ E7*1YQ,X :t$:Ȣd)f)aV6 דhȿS7琙QWjƴ-$$JݢpnQ)*Rʤ-#/f"j}HSVZ4C]|T jR?QG@*- Ņ[0WNvz&3&;5]ښtF5ڴx }٨6\^ac*'yoOo[VQ2 |Z|wzPT÷[oGhZ*@U 3tHI< ?v*p}x؏~aһ]ŷor%E%t5J\_j5wDԟV1n׭ⳝVNtn'U̷}&ډh||4_1!anz6yŔ4_ 'iکs>CHСGw5tp/v R~|%60)_/lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0132-Trem Guitar.xiz0000644000000000000000000000356011177557523026414 0ustar 00000000000000ZYs6~`'WQe:Ԗ\IN``Py8ֿB<pAJ1)1Xb߮ӣ,08똿t ءgi_.&g g]Є»BݾO('n=ٓ4YcԘ }pi`r2G1 C:7x$ḰQ/A1 U>Yf0\[sk:˴|H|q -u [,-}E Dֈ{@:y8Bf\yj4ͧx!Qrtϩc7{_9fF6sH'beT sg |.FQ˜q]oʩa@7dŖ3=T xxAL$+R^߃_=rq& r/>h-WM?N{vv/ CǼK0 2CKRti CKGtiwCAþ ʔh.s}/l2VچK^u2ZV驤L)" l}ג3X0].c2 FV IZ_];kH"[h-|Ópt4e--t|W}*b|r(Sa KVRnfNRM|:cCtbQwo VE6J6m'}`$^Re='Y܇B[b& .ʂAKˆ(|L`g-W]s\ (fg,VO&J㥻Ѝ\dQbqCW IR~l:[gu:8k}xpvd˚GWX4(woB[͓'d&&5fHmʍ[9-?\Mg7x:'u; 6<\(`,Dre6`6-Fy"-'ږMQ:'$;dn@'6B?rw[.)q[2? tѳM&MƓbvw3,R%`pe| E4xOqOݧk5Tyo|T%,>LE@" Y nGn߅_=>qքd}YzD)H5)v0VIԱ"=Z̡*CDȁm-yDA0WwkXqu(L#Jdjt{(!?lK*vN_r hʡ?K T2ӰnW&us^l XR9n'#S\9hzƖc| mPY(kh h 6?x~E5U<^ʱGY..:z!\ƢIS{ ÓLUh yrhV{atPF*ZQEcUCNNݾO{JnF>R+b4Ԛ6ͧdT]hd/pT]/:h`J,8妾iI,{ 0l+f'O@\)VW/ہ5% jPo4XV/:1t>_+'MaGxW|*dPLQ'<)9,FGRuCTUҪ U[A VTi`dAiV) *`В0U m2Xø9MRLSvD~Zjlk.kdΔv9D  8XKE7*1Y~ X Zt$:Ȣ$).RBì9LJ͘V_ۙ;R;+;ghTz´5׬0iK ׌BD/iJ+fl|c<[*%f)ĨL Έ+';3&;%]A5鶍i[* XQK]ٻu>.~U 5o;VQ |R|S7 0{oßi|+U]#i$vz?C8 ߎ~<籟6aoy&߷YS|F0'_^TBWZ`\sB>@k`]׊zkn=ѵ⺞Z1_OYt'z3+ yńS9 O NpC=*!R>t(htms _\)/]rOV4ЎRW|yLjZ,j3fT1s1UgX1}u>(VnSotz.4jS¨ي26jU{Mkj^S5QSf~Rݽ xF'/t">fG~2[Q_Nۋˑo/8"9:9K[&DKy4ni~r3NOo7f7oNBOɦ'szao,0JrD)!K!`q\7t,R9yrߤ@ȁ/Ro }仱|ZKr:nK+mJlv.NLU;6ʳa':fv:`s}\=vP@W'GFR^+|`!Di L9a\jijd]s  ka%]06#.hnS1t#aGac׭HA2x|:L5)Lj}d$W)?udфVܖ{m=F-&}d0ۉQ#1ap F1@7Y6rCͺa%L @vTVbuߺf0&;a ⷲg&;c5jmfax;HQItJ en$)lg63HK2C6~TLct Fc]Kd&ןݱs+~Pbd1.&eDUi3+g+1U}0 D#oRD: ұtː0Ʒ a<@>S8xv1 )FbSus4>> qُ98pM"1 I @pd9g!S!2vѱ%:dHL;rzqdq1f|HQ8k"̑EA~ꐙ@Q#?5]3)"u#goIOHFr7r"{y9R_婀\<&=,W`{P GRHRyy!1ry(8( 1"Q@?k4n0:Pd.Ad_7`W(An3 'JE X=PF*ࠈc($l0]FQ; pFт< T91QGC4F@TzI~b(@ >;nE~2K`Kzksk(N@3E(h@kQ'sP n𙣬 W?b[GKPQ@BDJ˵Rb}z0h@do-jð?o7`c(n@{ ¸[WEq 0]7̨ѡ.0(n c6s$(5H. {ƨ޻'1x,y⢸Ms]Q;neurQ@s7XCqpQ܀\7z ƅoP >@p=m" CMtz OEqUHMcߛ?^^/gzWSŧrBFnX*x}K8EqWfis?VЊOVҝ4TW8^ʯosn}4Shc×7JhSVm?RUwR*{Ղ,KuJ"E);E3\JE{6lYɭl':YzN.vZAk)f_n[nfU*=xɣ_U 7 (eF̊VhŊ-x2P̥rEVӟ!uLH -a֤E"dMy5(xocx_WO8}H V?i(8Qt1l뭙Ψ eOU@VC\^&Ӭh{*")y\\Ք;߼3u([F[eZZS%r^=TjiVKuS۪eS=+hӂW,oRNTƄ}y(Y)>@c{)ʊ{m`pO-+N YxMmP[ig0 l1*iޭٿygZغ3k ?;5qa=*cY kp(֊g6MMEv$W.Uߎ*x# oEny] 7?&}F3b~>߱pV3?00][sv]o uB׍iU\;t}G~ܼA=9r3|[Q%|xz䌇EkݨF)݇sU~u77q颭Gx=cr-]ZwoV| +D +K$c4_֜Ә՜pӨs5q]fR5q]05ԜpWW+VBGf4'#jvLjN)K G|oYtQenS5~,W( UʶLQulmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0139-Home Piano.xiz0000644000000000000000000000714211177557523026217 0ustar 00000000000000]MsW0%RYbSȒV7q.(,I!@y_f0dL%U9moz1~$Kx? zq:Ϣ$Oo_n>]zxLzs{QXOl-4$WP)˟|.Ei2,󓋫7UnlKe}&#(\l8?u,<:0]]ﺫzZ$J+ol%)yAzӂ叹]<u !Bj>q4`vh,[u޷Uuz~}s[Riܑd˸w)no,n?[e",Kx-KEo"[Qn-ps޻.7:ix\>i8.K1iFe5b*0t@F]}7$zs0(Aނu.@w(\>PАVF"&RQPd TU/hR4>*{@"t~EhXM%ںQP6LIT]&mՍET9pq~.89=@ 8q3mgI;FNSF1XnEZ$ƚ7bFLUN-5z@Wy(&iݚAa~["&OFdJ 5>mgi܇ ;qq}^fi2g-P6 ']UUZ~q) qpF>(\DiEV`grh%}:Jo\/*EHw{I5a;sƉk jv}q~|<隚7aRX @v78w6gZg@f\C"\tԶugi]ʒZ? -8=1| rT4hDl Ϻl 줲#D1sʎܲSޖz/`mG`֕xd+rNB6@؄91q\֜#1lQ"kd0S!}1Bc n8q3@50#tJ}0m00qNIۇaB|ˡʹ-q7{2/Mtdazё„e„(!M[b_ac0FrÓ7ctJRm#Qa0zV1|nv O<¸0S0!?D%]N!j!a['n`([%d65% 0ٓ)lSRRH$.|d&|VM_!d# O}S0fqLMϬJϿ|9Ta}ls/ ytNd*I,˓4op&09R2Bd, TE)Px_.Dk(/t& ƭE%fXy/cɧ bEi֞n5m|kt(/4>5j(OU Ӏ'}06gr`o$b1i GQP_"%l6@"WԹK" SޓLSd'T0O -A Jh)s:G!ZeL0Gz(y.C/'XS//t7|<`{!(y@v=%hG OQ@yܷX5<'6o_50}@` G*uAzn((}D!hAa4x9zHQ@-AwPSoj\\6ªFZ]W&绝nnP8hP5g׏g7.M'~RyiOzE.R dk<6̚d9ӛDkjX%VaUJ2euyR<Rb*כ*t.lKr̶wp۰HTWożdOp9M񍶣76;( đ^W.U"6? m#ѕ: ReG:^zy d|sD]M*c}UQVAWq`)=wU|sN.v- UB?KQZ@ ɎG]FjԔieyPrZ5amE`"R7b,-䦩ԡmNFǓٯg>JA%ͽioJ&ؤ!LnLʪZis󪾉Sjҳf<ˁ^'YVosե]]~yߡ*DPtRw[/-v,*(Buj7ۺV=tr{Z%еkC*wUm]ps{X1=ZdǼM$MYS#ݏMYݿ W_IL[Ev%֥^w독 IUђJiW~\]NEZ:Zdr*5^#c*u%lug]P: ZSR v@:) M'^sgxUQvYn_4K"F~-cf:QN%flmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0140-Moonlight Piano.xiz0000644000000000000000000000714711177557523027264 0ustar 00000000000000]r}W0zɓHRe{K]Ut[IyAA$aM V>  ݘJejz.=tcz}byWiz{0%A}r}~wŴ 7G/kTv~ӽ(N},"?\|vt~yzp}|~&Z+&I_.>qv0Z~} ӽNWZwu\M˃j]- Lċ'(,\2\yQf"3">"䅷Lc6t2ҼѾhXoyTu)Y `#{N$GwYBv1ݶi6nާEy$]~8q;ɪ3pe%\ާC8Oaй]% fvmNMaY X6k+8_l-" jQ**A.N i' >r7ͼ -ZeΔ>y(pb[X)^bj5qeb[zU& Tf6M7Om^+F𮾞]j6/-k򉢶v:{dU~SkU#Oxo^c_.Oώ㓩? 634ɤ9zEyTy-vnM$AѮtPt WBeڍh6U*oaDF:/T^Su{^v޽?mPW'@"6@]dziyiY ˜ s<IPG%yrb E !Te{[- K9uk7Nifh.HT4Ҭfز`BE6Y^ KXm i0+J柅> 'me]Z~+ wZ<_fS]ʓzlXq.yIo)!rR,ej&Ues {W-ay5կIMͤăFɁ*ɯajmjJ2!ę?oi0Mb?DwZ LQQϿn) dxVeK[6ʎ ;uhs.8.;amX:Su̟'<.`c [Uv4ʹhQx8[xkt}da؅P&(/:2ظ s@XMӑ˜Aa.@؀ 6`\>KEi|ϘE3 X=d#cӖ˚uvq۪>@>0f0J}!UBg0j0@>; OYI*;0Q c<@$; Fc ˱jd&DMj}L'*OGFƨwq LXh L ش-kq56Dcd A.; LnB)F$l'a̞%c #1 OYc_~ ˜8s+%^szd̃= C'%,GD/wLLJӒP+@(Or! ZC}3i5n%(/1;66%A~%GߴG];(OEuh"^F~vQF~rPD9l^~;(=k ~G$p7I,]8X)a3GzI(&?=E9B}/:0Ou0A FLP9 R* X?@qP" wDɎT@3qpW&.o( 66:H*"x[_f55e$Jt4ᠼ2AwQj_(F=|VP((_i3G{06JS+A9~)^onJ7QVDic(O@O2O>Fn(UPɱ 8da  )ԾQ ltl3Jp/e MJ2r`:Gg(o;#%t.Jȭkͅ淸(y@%5ehqՀ$kK5kn ~1&f-.JЯ]=?8GsqQ@B>se^+-b %I͹0y@%S%hZEs<.z,@Ӛ.|-{}.5쌌 p}Ag&[ 8rV0q JЯ]>`E KF \=Q@XDk7>ĈepEE/%TEk5>~UJ2yuY=zRb*U\*{R+Kr6wp0A޲Y]ɜrәumFu5=}zr~RTA*!H#Y E mR)Gu5ƛF+uuR*HYxp5ԒEjyROTf\́U6)ג T,&xZCI߯U/[廭\xrtnѦ_0*`~\둺dP*ګ}z&FM^&YazUQ,{y8Yؖ p :"{S!6KLJIJ% ZA+xt9mC@MsS6^: awzWf:-{j-V/( 0b|`,_/eֹF0^kXF0c,i'Lo_+$4m TvB%RQ1PX݌15r&T ]+6>v| 9Ҳ]{ʟ}kN\s1U(Zh7缷yoTw5 HO@ʑ,R*zUis_ww =ѡm#V )o 5J _:s.s;L|2v.s;L2\.ޡ=V]{Yw17d;=:^>X[s q4nR_v_Dz»Շy$NhI!购`oM&W~& KT6&DRmr*W& 1m8'%`j݆gC ŏV 1q-aVo`^[gfA,UfD57o^jO.aflmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0141-Soft Piano1.xiz0000644000000000000000000000374311177557523026317 0ustar 00000000000000[[s8~ϯH0ӤhMF$=I>2\:m$sӧOKx`~`{Ud0,۝_'҇ ړ/ÎmY8v>(,ߔ;]үJKv "j1S~w0kMz>>zctɮJMv` z% eq []gcm%}"K۲ 4 TǚTo6'6gˀOl7~d.-XЉٌ!@)9x_'s@:yjYvz頁Uz()gRZ˞8Sy@f)QRkѹD% y'&۽[eɎK:qvugOE,tH=Uh1Y= HSJm;G{>k2+gH&Jn#}`$XPŰ(ձRƁF&miZ02. M2X71 dʎKAY-JiǙ1[yLPFžިdf9j!H~ bY"*UT4uWΒ?Fw~HC5ΘZVjXZ}u.*HpRLi 5Gf+1mq5THBFS^3CݾOT RLĨ0ʑN+F0;jt":ԤcV^/UVLu#`#B0|8B ].lρ` Mrg`Ew4# Y`E\B1tɰN=`;\G 1X`+N南\@QͻHQGE Bvn1*|PL˺^ֽt/y;ɥ/E;薿L| aTׇ>(S}yH:vJWؕ7&$dr}A%5tN{FnU,ϲF>WỾ*M$;Ӭ&*Yn%6pRk?nӄ:lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0142-Soft Piano2.xiz0000644000000000000000000000436111177557523026316 0ustar 00000000000000\ms6_\C2M rF"glj/` 3Y%틟}?{3 #7j5vUq|󧓏? _K8xr;r ?AJkONA4qF66.{5qoЇ-hH&AY>C&Z|F9"jV_:.y ;qw8JeK MvIrr6Ȃ#s âeN-L PBVAlHN:Noρk3LyoU?qf% O`ʭ_XO/ }7"D&#N]B_ {OH6sH(`Ny%(pvۿbBA/% ;aHIgȾ /#|bOމCJUw ])χM8 Ckfpjh!D:B*o@M;Ly ΡQVT SɦӼi&>Ig-_9}*%46QMxHk>O2:Y<`-CAK%Kdq-.2rfm(i-Yة9m P)|իu頁Uz()?dQS-e8 ";y@f:(RRΈ5L]jvT@T&=Y.h[x{وF׽;KSsv@APG'|TQpKSN#0Hޔp)5Ժqilf-BF}%iUt݄UuS|όD3Pxd1ldKu䢩+6;G6SR.$p 3ILei٩~%Uȸ6Ԍ"xa"1fTǸF&S7P. NY(%i!Di@3X]w4{o߻N5?C5.ZVjXZ}vCMO!|qc¤uz70Vi괰hٔػj"^G7wm C ;ȠT6c'lrrm!;aڣVۓY7#99V_n5Ww*-NqrƁUoÈ墨RdfC*U TWNTTS]JTM멆+Go'؍W+$'$ ҃mz*w>Rx+垺F#M Yrohx?&2Dlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0143-Space Piano.xiz0000644000000000000000000000773511177557523026365 0ustar 00000000000000]]SF}_e[ L̘ dwE%,JlkL_WZV}{|i1^ItEIzv7{߿{>\r9)=鿾"f t$IןщeP~|擰w1)$L{r'^\}:98Epe^{'xy@t)>^/&'f|ui̒( Bȫ'oI$E<˃y4/Y,ʅ(6Ai(d[ǎ](Z31K&%VmV_\}4>6Eu R*;zNޥ`]}z3N{?f"~z/=-zӰ.I6+9?lGE6[y\z~vY¼iMX^j[~-Hi7jőg%W ,jHE*6f4[74nƟzIvoPDK4vc{Es- 5 I?hVI4 L sUj3ԛ[i?\9ɥRُ5ۋx,M&, |X,RXէQ{[f˾%ċxz~X鐾Q ;Np} tۆ}{\LΏSCйfju[{1*.o[FؖFA[i*Z‚օIR<"꬙Nj˱eDKݺ(NyY@&_d$iQC׺teI;q7|e,I!GݻNc-ɿ2Opc~Fk_,mi?]/](ZlbXYȘd"VKGOz6LIT4;:N)ۂWɇ\nC԰β]g[ۡyXD;zi AusDX8}L} S=%]ՊWfgk3+wиW:4fV Oyn,hvMJŰS0[Nd>MEԥ9YcP0}]SuXp&*z$1R$h卣aEf*n18K!޵O!?G㬷y`e:)nhV"nzd̶7zMDU&lka3:j-t2[ϟlf5|!>;֚ U 9|` BUX\8\}K^ѯ̳spi0 17UMbZ7g_5UkWou9>1w"oH3D"(:-ضv`-rr4q 6}ԲuV;,\j3 ?;xo8!7޹"+cr58?9qv̈tthRKX'0bl9{;"+D,oZ, ӉKf? -8;銈.zf@lA³NdIۂN{\ɑvD19iܴʬ8i[R)}$n|3VlQ'V;4hUε#iH\J{\W7.<.GVnPEB<`Ǖq nϦª ;#0]}Dq3=$>B6@1紇au6%rXs\Hf}0UaT 2m'g0*w#1 Tͅ0SiS[%m&aT$c|$3 Fc qrZCd%>E?B=mmӸ'*"IGF:Ca*6@( U ~-vsKt!)153s3DVr!Q[%ft{-I\p)#0NaGc w0#tFcFq[0ML+)07<ꕫ+nbf9l{J̭=VRR>1@:#+F=6$#0&qL˜!OIc?|)˜8SA~Dsk 7xI@ ;6̃; 8@I'iop&F)BZ2- h>ŚsK'S*!XR"ccQCqCtQD=16ۛ}16:gr`oD G1q5 ҅?yeÀR6/{(O}ziշq׃s[ X;c#JLP9se1mEYO4k#J4J?#vѣ8 GYfx(/@ox(1]n6J 77nJP[3 -p["N ->JPk1&nQ|<}=?8GsQ@DBQQN>R݂: +>LPFGQ%K д_ 0_rGU3 yIG.c(wPɖAhfiU(}@o50}@rm-(5Jph‡F$Ep\1Q^7ƹT;T({E<JHp7zKu4;hYSzOḵuy5.oқ9xj~ux<~5:ڕfeq)pL'mXʂ <}o']wwYU]7n[tTϗ"#KZRaU/׊mah \Mojʲ} 7ZeBqH-C\ZMFČZr`im+2& xzn rFC4WHʲLfJݮ>M2RO8σڮ Qq%<$K ڽlԥڼ޼d%MqHL$SojW3j7څk6+ڍ?K ]9`qKQF5LVTQcP(YW4ȉԭ@^,v7u%` V|UXH椥ku(^hU' ־^tk(Xk#Y<"֫Kػ\},}+;'OQ~.BTG$T$W 7ZݣA*gUk]Vt;ZE wе !:'w(u>yޡDֹ]dqMe;>=)+jsaSrÁ4C;&3Ou7vw#T M%]W,$iVEK*V`ou^_/vѵRlx*wE׺ө h<[ym5`+ɡ  U!f]>4#?\ۧywo,l:;ë4b׺^Wx  u.:.DO]+fWN.k_K2J/u{mqԭLcTO]qlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0146-Space Voice.xiz0000644000000000000000000000240411177557523026353 0ustar 00000000000000X[S6~W~ g7Sr\b pזRɒ_9,ɒhם>s>I|擫qdP_gO?_۫g9nz|y{<v=4{%w?IBAmbDV%_ԇ.ؚmdSd8tB , ctmwg/`-]Ķ*쨺 [zEƀb 0]ɽ(Ta )ؠ8͒mpvD-ݧT 'Kg(ɨW4^8&5 (#{j4Y,竱7Y2?ݔ(̂CzQb*X۾FO ڟ|[V" %u>sK$!7Hx=@íoB/hLK][@q`V\g9+E#i{o3%|GEesYJp2"Qˀ*ߍ T_-U1F]kAO`8Y~ [LfYp>3PB%RH_t2siu ?+b_2;/T/yadNlm@Mk~hewxv?Z!3f*MTw;b Y ĘRB3E=ʢ] qYoOgfh^Ed%.lH'T$2LRH3A(KP濘%$> u0lJY< 1E@"ew) @n;y[ ӶzcwGʾ!΍Ҫ ו7}ҥb𕚟/ax*Fl{n_cO`"PAR/? ;׀J@HM"b j\o-ZpNW{څ6z:&]XL%C:t1Z$ze+Isn{Aׂ/ڻ5bZ5obZg-?$vz`ŀt[HŐ,aJU7z˼7g(eUf$(J:^01:O և24 z8Xg'uYW`ԫ y|2s>U4v9}4x}۞lQ)w6˾h-#Z1"PqKc 򇣫?G5 ݆GWyۿ 7^$qlX1|f-s: If0L4.hEʱfTNDBfq0 -l&& fIk|-BYUmgz{r-h: F3n @L <ԏ2af_6"`w_nN.X`bUy.QD5VGOa:?cC%]GvfUjl2 n}9_#mWG%cx )l ChڨJumAET(x)YP*2@h&Q@ AOsf!{y+j=WK&j:rUR+[;JqkqҨ-XoiʇV&̀|~kIA-9a, ''"Lrn#ҴԩAy,T0{gGc:ױw_~֎9|%4l/!Zy%/?/XibKI>9+q>WF6(Pe䗵RWdsHjnW$(|#PR _ܨv: {<9r(rg3/eB2^.N5Z˸B?g! "P blbBKʚd ^umjwnKR .J~ VAcZ!LZZ=ѵ zkyD*뉮U]p':/bvz{uz&wc ~C,W@ JWWY2BŝDF $*p xٜ/<_<<_S&|n@7Rlri;U (-n<jvR&>b,`2#vr{NqΪxm{j\`Q j}֞y.o DUh5- P(_k*" r 蹕4tvGIR&?)2lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0149-Soft Choir.xiz0000644000000000000000000000254711177557523026245 0ustar 00000000000000Y[w6~ϯIs:xקl 'tArAH .6zX|Hߌ4߈OᄃP?WM>ಫzi_L-=9|y@ ٳP wÿI@u1ȅ-ІĦpBMpq/aCHxlf3%DHγ+U.]eTpRLB`2^|-ڵ#U`tA |]DY/e_l4ympRviՏoz#F̂DER!i8uz舙VM="^20r-}i/А](H a`UaAtE杒6A@ƲB٬ v~9v `}'krxHT&RjDe0|f[iħkL9X,jY)t+ņ _8ct,5Fбh: @2Xe4S:i~4ܐf;lpK'3'ntxE~J(JfP-GawIjhnF&*p|Mv4_w.UvLn+rߘiAOwi;f3ɎVKieUV]V_j3NN]VuYme]v]VuYmeSN]V;uYefesFShW mAVIJR~:l)~]*Šf@Rܕd^O6[_IenREgeb~?KC.T9/6,5F/1]lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0150-Full Choir.xiz0000644000000000000000000000443511177557523026222 0ustar 00000000000000[[s8~ϯO=KR՗b6 }Q ,4˖# S[>X:I}׍<0x`]/xx>fa{]w,siL]Q.݆CڐO {r2$^4ZRgG&~?MkKCwahkD̅Q?;5&P7uyO`: Il<#(v!uI x1bȖ 8L6,E[RF ̂{rD1S̽e._!U5x.SS4>wn 7eލy@wW!۝p:>y7G=3oBٻ? /3-O7m4b[s R-H!6ܕHmTwuMtgl28OC, s(F(I$"#_^@] #%bTVi \s%Bwz$]*+TIdH=HfmQ=>) .ޒl7!'{sz?n|ٶd=GQ2R\%_";)mݹ.HٝuWn}YuҵFVח:sMWl3uߩF[\H gC*(QHoi@Ɩ^vQVys^#ڑJz%ɵƿ& 3ske3r/MPLi "d=Qx>uV<\2lRJ>F@q*Wf[ueB}GyA*ސħFMZ5~yo>Dz O2%aRHk.@׺F4)QZ$ /KB}WAC\^TwkTځ)࠿dSٶh8Kpm -Zw^S4#J%^c 펓+i8fMoބ+2/y>hiхq _bp=  hCn9*O:Ss6Mwd=VM`.]!Az3T uʼn X䁽YMfd9>rK[m yȚANft͑Y)$X xP9Yr 괠qT(8t_ h5߃4 H^lB. jv_3#њn0=WSwHtL( iFBuv@(Sk>fJbEw ɀ$SSF/JŮQpV=]ZtbH1t{&9SӒ,ڡ\! DY P+ku2A8t0ÈimQTY'E.uwBpJ L`"B!8KgzDiic- CL<(bx+"clbi0KD%M 6!- "{SP<Ha*`0*Ŗ#(.jCBPPsBP^8reY=faL̉W cZ&`QDގ(ԸVnA,]1;&XpYǣW"y+<z P};|fi2@{KWo Iۿ&\\Z f`ʺ>s[ҙ!vQom353NpÊxS;HTICX#E.T sOAP1FR& [99sC0y|Y5{;%ϯjdLg iWk_*.肊XDWN :pņx>Nח8Bz[DAd5:agAMV@d߫vU 🞸8`^T危WCpTy~l{`T[MY*OSDziI6lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0151-Soft Ahh.xiz0000644000000000000000000000340311177557523025662 0ustar 00000000000000ZKs6W(33M%ʒ"i "! I$(G]H95䔈\, Go}BgM~rH쳀ƏWYE_nG7A0?_cxT*ŸYJ[ 'G"x<ĩ,l7ug~p挅N#rwoM̗(KI06Hſuw';oMBS# UYIB9D)Z8IYnRXbA|e$b_Ԉ66yy֌"\p:yYi]Oق;m;+gu C=  ONabN>Du@$d+8E[:7KF(dfEd: F.GN;b\ eRBc b Q94j߁4<lKՖ(㊎4F_ȦHU(%q8S_`ϢU vT,TEl\6VD<zRK#J((b6qDTF`+!tН܍4zqS4[ԃ,h7g Cj x~,tR4 T%Kt&b*JؐdA.D1r%5[̺dO!??LOzP 1b7!m 2Fӛ@C'",]rʷ+JuYPwӺ:֎.ܴΚDUob?heɘ=D$Jlc#OxMP+h#bUZAC EIF2 !incXHɂ%Y2"`icKm-  ԔؓB&4Nt!J|UBхт&\b6}r2&˔Ey͕C @X~Vro'#iDb+VK0HRŘ$.ysMGjhFRhڗ'F Kvj PGTB Qz4pڽ<;FR qz(F0qS@ A #mnB8>f DZʍfő§|TQS%ďʼW#ǩbY2+vz+ .򆟼hl71 V4k@WTh$dR\LaPVBzg?B$@ Z꘤iHc{4}@21jM%wɱ`nh{O~XQqL.oLvsy19·#;Ȅ 1Ȣ)qD65SbW^JX+kx on+^ύ9>2H,[Y,K½4g8VMF*ҡ(@ dS#ØØe|5cM|9=u݋vٍuInewb01׎%lG.oYLlT#l\}Gey!`KC~Tǘ2[|Sl4|w)ou6՝g|ҩoS}|8'S}z8gS}~8S}y80VvX =`E,Ijrquz=f&.uom~ݘ-r {27+ZEVnQ[d 婸'1_ ݌$lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0152-Breathy Ahh.xiz0000644000000000000000000000337411177557523026355 0ustar 00000000000000Z[s8~ϯO-gthbZf P ;h-Zrm{/ln>::|H7Y$,ju^j9$OǫouD=ߟe_/|1}T{O,-F#uJ<xMqLp@`Ozxbc\&tRF8醤- m}E޴w,WWh 7R"xaysk?S('ab oX> O:T>>é>=é>?é}~Z:G瞷sMϲ݇lw|oWٷ~ߵ۳it?gϢ!ߊ2v{KiqEyDfHmni䴁p4OnzxZQ{r钝o{W $ Q'nu#7ޤwӟ'ӄ[hIҶl d'dvH-b> %sÊa:A8TMLV<]?PSJ&MwlrwRo0TBD>u_dێYs?|n}mu[rh|`[rM^106k6@ƛb}.=7H.Z2CyӲ~le.wc]gSHSޥe* ^0S%?:ߑ`"=)J\`q)k"]hD8SeԻ~9]$G}?23pM@D\u悀.NB[X1R gױfR*O -\$>u-o ͥǷ}lLHV;kE&nN!kd"ZMf9r)xc .D̫fzJv9~F#`ߧ 7(tT>q Y7 \Xo’*CZZv="t$yra iDtJh1na+4=7q/IQւF$2.鰋~j!'2=(tvrLQotHUyh1_~]SxP*5skxitaC/+6l*xBP]Jlvk0<_h1-^Tb*rx-4y=diy\dY%L Y"{dDq4gcl;wmiV/SW,[OHRM N$ 1,4 q g^ !aD) rVPOkՔrs{ȸ)*Ũ̙r\UrLL!C- ml:H$.F}&72EdߜCFZ8΋^s'L,pVVSRPU52谸JBܴTjw%5jA& |5C 9]5PNMPcQ\Y"CWp2z H43"Jʯ[$qB(T#yC|<|Pͤ=K#*@b@7\L_O W~kfT(ǩϊx+h0x[[\$|yOi IΛxM@:T] )<[`mD}д ^AӉ(ۺut"ܙm:v"6ǁq*o褐biJMCjƿGȤ KO+w;ѕpsYm]}S_6p^,_Y#[%[%Ï^6eO3~یmE[%dl =$㏽\=63YײA;Բzkn=ֵZ6_iwXË4lxE4^#WtIc>  t9JnB$PUpL%y$lUד u!N\QtԼqk]r\fn2Wȯi}I9. Tr!Ӳ wV 4 ᅰji2dj6zEm!~njC߬3i+f}GC5- dzw$Clmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0156-Hyper Pad.xiz0000644000000000000000000000426111177557523026052 0ustar 00000000000000\s8_&.+s QlG[cْIgޕow%>~z^:'^sMϲNjlt]Y4zoѐ»t%0h[<ɞDp?';9m8'p 8g̥dX4TW)evwΤ!V$L`tO0"'87.ͨH*{du4!Kf|& > OdٱZD i(fDh"pLd{,3@Af=9OtlvK#jDpGzv*'kdm=F._W*5n<*Z<}F0'.BXo’*CZZv=t$yɞra ؜m۬ET^,JY6`ALՏAbY( ^ !aD( rVPOkՔ9rs{ȸ)*U|3#[y?Xe,칮"m?,C- mOD$RLKCu fuv<^Ž}X+ꕚ >:wmSR' |Toc̈́ :,"b}av!/Z)5sV5~ |5#P 9]5QNM3WcQ\Y,D^Q\S13TGVRW~ۺ^AR'ąUbRAO#,fRv8GegH0jq^bO@ @sTi x֯y P 8R1y>9s oz뚄oi;mY! 7EF/gNլiB&9:A[AR'U4"Jn5NQӈH6hD ”+^MB闿>dA4D:}& lai3>^S! ?ggp7uǯc?yK;[^MV_'nɷ67]/qk &_{еlPsD еlееlguܩo74\JB67tH =xC4vp:wVz W4z(&D UסT+8+>"u=$/?A%K*zܾ9c蕮ТKM#|N4|iT˗A GZ4Vhҫ{}!Dl >)k(]ٰx ه2o{<sr9N'9 6Nƀen^~zLqN' 4ru3?jޙogۚ4 O)SElmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0157-Hyper Matrix.xiz0000644000000000000000000000710311177557523026611 0ustar 00000000000000][wڸ~ϯ`x`LY@Оh,O& Y IZ=1Ҷ%mm}ҷ^V3|u>ԍ_5]v??Oou}<{z_{,k2}DŽ[ZgOl'~rW27Sxhs6m:sh|ߛFCu5\ލu'E^d.7k R!7飇޸wߟǓXZ"hemو< TqK ~dx5Ya'(o}R Ϲw\^Ab/ wœo/dMˊٵ瘵7ހ]5N4i7Q^ڽI~{y߈dC^_{Z ox}5kW[T*lqa\ GF vDgclט [ӛAnV/Tkqun"!)Fif[g;l6P-% &Nm}۴7->WhE|X(p9D*mD4:~A文Ol@Gr?K2{ӊ]8DW`>;-"7 c\`s_v,̙,}0Wgdz+ױ3]9d*Gݬ%:?ҿ= ;h谌vҮ"^i7>ӁTy2qi;,@d9A'5kLYl9_x*Fc=DFN;#6mq֎҃0id|tF%Kh8ZE!فa  !fh -GױˑDHe60J̑nFZ t=fJqʷšGp%"#/E3E #NX5҆&}\p$m,UxJn&3hX\JeMh0 dxLڈJ9j.06h/$"JW2x)y )Wd2;7)iRfm0.TiF.鼥w5K@d4 %;=E|/u{CᦑP9WGc:s&Z՗fw"2UaHL%.E)6洗% ̹K϶kӇ ַALzx4 ksX[٫q<^LbK(_s6bYO!/F3;YϫGNHӓzi +SbɼK}w#\@bp$JZbM.D)`:+0q`$mHM'״!ΧϖW#ObG>ww7 ? 桒#>0Z؞Ϫ@i8ǬRXSY&8Tm'/ߏ?Z23ֹA%fg/·3K *ʾ biߠI?]اƎ}rHilSnQyǬpXA$u] 'pI-j_ ^[鹰i!e35Tl-}u.6}FGN2XJߩ( KCdIUvfVJXQ)A jToAXv <ku`C)X[vwѽh8仄;tPPOUVOW_rj3=̹XINn85j++P%XUw(Mx\<'"zTrk cBc94IʽPxwk{ǧ߄ok 7GM$NM48K:e.Jk$H4;h *\r]):F#=i4'6FsbohE,f?Z&eb*&Ա&D$#B h%%#4)DѤ8ڋ&$%O33'i^[O?sNuj^[AUenkK4=L_eҲU1^%\_W]%ˎ#@jLlwB!x&  r18VuX벳׀e?ēPug Ɗ;!^9@&?$&BP0>O2tx*7NJ`'J wOu$di7./.gBaBQx|J4|"iCp6bޱa%S8L{ufmafE66yRguFq2Εqih0Vy +LSa>- B|6NsS8wHjq0˗xIm`Fݒh:yB:Eh9"p=g`-IG.KUh&lQmZ4omq4,}}k6!eZ9Gbh.bh.ȧ\ yx$i?U><ҕWN#0>pY5L0 4 / e ?ہǹre.v ՘\wëjyauLg(?({$&>lE L0 4 L9yY8~uZեǤgJ fggV\pYP X&xXrI@&_OOlS enf^qS|Gu5P[A5̇2ʳ ~M" HVZ:M'~1e>7h_d?Id/X,CoܻW)dݴ%{0l}@ŝr;izlLH!*HJi"?WRJJ{j+%I&Rj+s&S%os5&qN*{k2w]FЮ8#edCL1w= w\at);nY= [u^gb ;nInXʪ!G-i_ce2cKG}IQ[!GOY%{(Kj%/l*y(nYI̶kӇN{~A>c"m,1С Θ>c(“*&UB/' Je|h|=֣d$N׼t/h0TW,RDO1 5i[gYw^c8lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0158-Extreme.xiz0000644000000000000000000000465011177557523025713 0ustar 00000000000000\[w6~_AyMsrhBZNHl}Qlkljl$ KҤfh,fFߌfǕz`~`{Q\ӳlCfqΧg/ף֟[whYo-R-(evE|`Ol7~FD7}xBfHl궮ib:. oM}ryN˥+}=<nxO6ESk:@ܑ4p6-Fy-ade[6Gaq2NcN2W;$vVY3nsÒa6A-N `v5ZV,6_o¼E5d EI$mH1يĿnvϞחϭn[ lzHA@w&ܮY]AvNgO~G+â\y 6lilLj̛m}hEڛW[Gm$m Q]xwk0u,/Yj*t_X%_6 _"u&`EBOD\Ź횇delg`Љmg^]_7Z~l{M]t48Eϴ-"i3۸=md]xzGN &32 _ymrY;۬%M>.#`Lm} kώ 7D$&!ݼ ˌ"2Mԙ">s dJv+0 oΧ0$h_Qğ{!/Phr3rˋi> 7OAy &,p<~Ha%w|;Ztvpt牻lb-\E4=7&alhrEa,n\}c0D<7|]v>Ӄ;fTMuGsS^8G ~q >-8j 'gH%fKy:>59RcIq> <:jI ,{ 6b4U)َM)K@Ў ZԷ5 0>?rDR:j8wEJ[>(ۦP%(K(2 7#͐ыjNh{O>Z^,LY4oJ ,8 >"l*Zpj "FB ֐WҔ r)%S* ]FƸeKUE621Y~:AIq bZ[]Q m%/e8NgѕD2rJEV;)BD|S'u|\5[Y.EȄpO .EKifп4{W؉1J-iF,<|>BRX*.픈b.];mߑQ@TW(Puv TEjo^C#h $UE`op-e?Ú\ !()C`:+ ҒC[ U}Uq@&rQ` K RKN!_>U/_ʛ^ha-X$!|א k2IX\CjÛ,* fB?x+x\D*ZW^p`_2>k)oJՂo\PaPo+rP^EW1SE)WUYE!>7Nͭo~/b\ie*yp" mqM*Eq5@B+7K 5rNANI2xFܑ _zbZ4T0/zq9җUi*>:.P/|~i*_/;$ѿ$ފ#K{JG(Z[*Z5@E5K)v:z(Iz 6G=YW)ؓuۀ=Y p_<)uZQ=ֵzuzO*r˿gOh %fO'$|\+M%btYC^I}{Pkhč1 !j$S\/w2.ꝔRuS4 Bra4uKcK9.By&rXaE܇b`m2$%EoetZws/S{i %pHȰ^Plmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/0160-Wind and Surf.xiz0000644000000000000000000000450311177557523026614 0ustar 00000000000000][w8~ϯ<=ĐrN a&,н`CC5y˘A+;-+`(4 O~ZoX:<3ǛzŘ|-m$tE!\ZmX1y,.2Q-*.ko2 ۺjRGGЍu'R2 %h/lsH/l]2`EBOЧTcY&ܐ7b>ڏGMx%.h@NAڞ դȝ-,sE9F#;_Y(/Zu\P`˂<^'3?Կ=m`j=g(dQR͉7D`'] B3F.ѱ]|`82o%m4Zױ!BD)8m>Żpٗv}<uR2exeʪgFq"YOeD[SUM8S xІ |&S}Zc\!O1nJ[VA {c.jE&&sxš]6HI֎RLKCa:N}dlCf8΃<`s31N_jfvsk4,mB5Y!֖ABUB/ jB Y"G߰^6W LZ!0Qw62A͂0(-(ryܛnS#wUU1ZA7 ~ /ΈS1=nTRVHǍTc57OL-y.i8B& z 0(ݡ4Jjr]*k4tlIu:d)D\\۵u#eWB!buo/h_ J;FE.DHr ѩmR9qơ{qIq։LN%5:'6z8EBDg e{/*t)?5ۇL) %'z'8Z8'(Dkqx ٸ QTD,SxH4/oޡ~|.Nkkŷ]EyBܲ~]{ըՕ:*/։h>Z"l{"ZDNDkxQ\QnD?I;ӷ캥#q[UJg냸 WWu]JK?T_.=Ľ܎uͺ }_H@_|m/iެyoX|EUeΛ[=.:'N]Iug;ɮeIwz'߭.[ח#~"bQ#*yD} w i@z SݭTKRǝF*(7Fˁ4 Ndlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Collections/WillGodfrey/README0000644000000000000000000000023311177557523024024 0ustar 00000000000000Downloaded at http://www.musically.me.uk/Collection.zip on May 4th 2009. License: GPLv2 or later (as specified at http://www.musically.me.uk/stuff.html) lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Drums/0001-Drums Kit1.xiz0000644000000000000000000001123511172205155022514 0ustar 00000000000000]YW8~_irNQsRN4~1JPſytDbY\Pyڰ~;h!pڸ_7ӧ8>\wsub˧𧢿w^O~9h۾F}wۻ# |gNs=\?ߙ-aɵŶyd/Ph{~9c]st&:.QZ[/5o ;=xD>5`8]c|}0O]2/x߽s3 91_d'<ňiAf(~^r߆ yKrW2W%w!`ߝmG&y۵=<7_P1t/wg-_Cs@oeLp*= n@];O+ᗒ[F{͖ G'b%΀b^d?/# ^Z:}t*ASS,=>$ 3e1 Q`|w.O  H(Bfċm鑲bOm?=aYأ^X&+FzQ)Rri&vn0Qa\ߕ 2>|!BbDVE%ҳ8&Me;/i04'ȵC4CND],fĝIx4glpל-sK_mu@sso1sV˃~K'r8BwWZﰕ F.h>)THp[dv:9iY`fHDI,?"^c{H`N0ͦ-P=Ț63_̼xIiph7,+?۳R9Q'cxIBGqφё/nϾTgKȀc IAC86evI%PEJr*@HBY$$z]!}##I 1#$:$2)Yv-l~Y#p`7ʲU"􉌺 \Z\mL/›aH_ʑ;?v2^Frg&})bGnbTQ dr-M``nBW>1pئ=5r_u3H9*x"[%Rfm^N8+bLmu(dE(FJr}l|V-37 )>m0/f\P~QK~}ԂqpɛycswEO* wJũxj "E'R>J.^e?-tjH fq9,Lڷ''7St@2wLK;u[v3R%ВO1!p˯Zp99*;VmsX9؊H{s)T&v4qf$;Y&ULxI`o!Я\w0>;& ™Z1JD)jMGwY8{;n! <с jd/'xJYVs& Ƴ@1Ċ]+ܖRW ٺ!F7 ;X<ǎbsld#0|Ϋ׊(V:a :`3F26 vs j߄JЛ B2-C $O"F2[/ķ$f$b[ɴ4FC%- :^hK@Eaݬ4?4ӖV'OI-YGQ PYCHGh otHƥO ia$+ 4@"F2NDWHY}1iHfPIiע"d0dC x#c%x(CuRz:c݆)G5$|gkn!.: :ieѤm18G'~sBw/-sT_4usDؠh̜PY|lW@X\+=iC㇫ A(j,)bP-nhֵ^!#Pv"ꃡ|npkEQ<1JUGKHի 7z5㨅_|3#+bՈ)+6[/GU"c/3zl2WcmC#r^ÿjx1X י8!*0NplqB\,lY1NX ŝoJ GWɹ2[l I+VW)+m5ʵZ"&E7G_/WEṗs7p(;j" %U ABI`*myP;qmG;Tl.ҝjFD[raAITq[]A@p4C9+*|tL ?rAX!Lo 5jZqu2P,(&"ֶ Э zVB48 ΋ T_┇(^TR@>"AYY|\4AE4Ы| ʙ"Z_+1!cJ "al KCPRBVY<)d !y%6+|$՘,mt= LOM/} [0FRTofO52kΔХ( *7 9=-'lJQRT<=z؞zף%> rx-K`S1 g{kp>)zkdXHH=%vi{bdT*M?'ggS/$,b ب哈!I串eE)jOGl[R[ jpRJl N ޛkSD7ĉC>K0e FU]< )ɐYj&2oz>kj:`}Ɋ}Ў0o9(9:3&f4Y%,&{ Tvdó6M2!L|"l)c Y 9 y5jԫ (F7Qot6x6^'^lOhn62ehXH@BThcRZuBkMMSOLO t*P`aɰub9 b@P0<)4.FM?۵,qr:rv;[_IPֹODb^PZuJ[1 $Bdj*)a0 iMoLIG3A ❔NE -P^?ǹH///@lSx@ЙQëACKT Pz jjd_WV>j:o-!,ՉŮU_rAD.uWzW)칻%腑W Ϭ!9OCv/ٸb˫JeLVDˈ3 i! 3dV pc̥Cx|ma<PYYr0;u{:ۜK ߟ؁cL s/jA @^RQA.DJ ?8Gs iR<PtMVu9PY~*K q0oñ`l+'usO\bUugso}qMc_\I Uc:!inftmS, D{Q1eWLWvbMKhM׳s}׉/[;lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Dual/0001-Layered1.xiz0000644000000000000000000001275711172205155022104 0ustar 00000000000000][s۶~{*ϤTs|ɱN-Q6!)7g)%-Il<5X,v?.>uzw$iG9?<^/GgG~:DٝwjuKgzv|r1ߧdX0ƻG Zoj#Gx0Z6bl.|~9URx)!M|r(޵{p F; "f,s|}z =FޗAa,;P ł2D3}Ļb` $A1i|l:|bܞ ؞nnˍE t}u[xf|z*tWaf6:7 L-w&K  lӫ?O.4 F\H.OS)~]ħԛ_5,6*XU-5>bm} jY7? 謁xۻ_q˰Ogcz{ot ˽Q2?~ƉYJ Z>a1RMH~t+$Vp,ԟ~,_hE0V_ȘJ,&JI m%$fkbV> \kg٘6&ח AuK I$rzDpH}qTHKTSJi7.^QpoJ=~PMctܭ\{' ޳ nce 5YԍGrDm< iVηp#ǧD liP@V'rƢnJ|\2گ/zqlW{m,XWo _گ#5گ/`Wwt:5n bePc[ S~-AԽK83Y8LW,SO|tΧ>jS>5oS>YD_=ܥ -B 'Swщ6&}%=HZIBcX"KԻFK;]g*AֲlgR+S1&}jvOؤO7i4%P$inQPqjf}B}*[~OT絴75Tl X?]N/fR*3ӽCJ$%%,!%ԜS*Q 8TBLʑ =Tp`PR=y #TmEEHA Yl*TY D"D"T #D"D"T #D"D"Tj Ao&&VUt6c"E"E@lB"Eaq"iyc\D(ZSkK"" 6yYzq C."U$-"Vpk䊢ЎPwg+j%d++BE0h1"4]+++BO0h1"h,W-fνQ_1pe6 ]δ}D'QscF:gJ't;dy!ʹ\ 0CX_TcLK0҂E3 <.cN)>#r'<,vB6'P"rPl~"r5"tm3445"r5"t|dƁG&,@FF&؉}#ĄP0#Mq(".!#/$6#22CC1<9k$5*k5;YZ e3dՀGf5Pczd _@i<,$1Yd{FV1!Wsu3-P7c'IAuQ9\s 1p)Bm]'NA(OSney@sfBa} sI<)_ n8\ A3@q%FnC }Cc$ð1eF(lW(?}Tp~w0&F5mTQy;O3&alcp?92ćH#;e^.HvDYTDm guƠBPL7?对K}5ۺ Z!Kd}_mA;ۻ-\VpyNk~}߆${k_(?:ƹ_kO֙^}K_RRlkWv}.sگյ"ox W60!Y~:V_soGY[ k=uzwTCI{i}E!|ͼYi˵轪 Ӵf~Ѳ0,Z bYuloek^'e5Xȯ跅6^E?]y؆y~.ȭ k>Zdk z?/+?zm0cȽ qxbQnTHu-j426#R^tx7fxȋ^ ?-EM̬k "WNqn"q^#sud5>k w~pw[I)4Lj56H P#m 8!+J3Fj j!_[,X?+hzM[ϋo,vnojajٚ^\Ϯ>O.f3o:CpT_wǗ%i-scewZ/E zAJ0Ɠh~w4^{aSخ(2gW:-5  A`"WO>X0{S`:n Hy \.e!2^ZElxWٜMhfarۍa\8g'O.?Mtq /?D 61\p$5H-on!9ή")6X{Iwq2$XDT>$^Q;zU 1\YQO_+W(|& 0{L'~"oU-%[$WLX\o1Y$ R Ҥz=,UmTQBH. zsyuGׁrˢ/ESRj ơ*5V@:@*oim/U+ʕUAܶ@@g05*Tm5@] tz7t-fDQ Yp'f{QRҪJ{o ~Tʸ y^/SV%_ȘJ퇷k31F D^γb ˖Z41٦xH" &k-0l-CsN:KZM.WæҖk?x*B|RO\PyR//;W`׭< uy}<=abkn[eس^'0x~K Tܒ2d23LQ+f/ නM}iC5گ/`/3G%_ED'pYFvr0<[&іI+ miziZ!´2ır=K X1nwmBY3*:'cL\st˔,W'P:5Pi]TK30fY]1ձe5,_w"d)g1gH6S"gcwMd}4Yf=7Yf=7f=7Iismجۧ ӡlu]g/NY?>@gc;QI&&Y~/pNy)0zU Ҁ2n{V6Տ[=ŝ4~SI2EzƋ ??^\lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Dual/0002-Layered2.xiz0000644000000000000000000000570711172205155022103 0ustar 00000000000000][w6~_%9 9i@z}Q Mm__$dc@fXmFFi׳k|Q9#1-{89T~O׃ov4G?MO_Oqy R+~~[oػe3/eZ{}<_џV*|dd%qe{Z~[{DS2P|I\v$QKG qlыcMkjXtUۇxx7m2\5qYR B)r|,N 6@zIUUvT 1ٛF#qQL:~lĒft_ !6~3mPF-V>WTTnZ6A֠??7jm0DV|#C; RʩN\2'chܲ m-3g)$!j8ZY:l|%>:Hx,PzU9ǻ:%8uta3sC:ʁ3?2ҤO0lNq/s_q 'aEQCzL2Y' 9)zX M&.~Ͱc{0]/A@MX$Vb É-AR+?f^x7of* /2_#+GGN+;m}\MQ;HS}#u1˩ 21>9n- 4>b!K$3d-2"œ L@#oWF[Q+ 1j"btSѪͮhդ=i Z{l1kp=Fq u.nt.¤LHG3B/a4x=\)vp3C$?W̭?{x|ϱ=Qn""J^}xAs PbԦm8!h Ysgj,4 KI4d FWw l5x nMN6p]:TncK\QqVs, ׌NЩ'YjVO^E5G;Ȗu3j/~!{Ƃ'<hVfn#qwPF[c ԅ@ApxK z094mkb'{0u>hlMNިhj{Cr`/}N5fZ`Oʢ(T/in*l\7<^>c~~SEi|qyE7C4[ݭ^^NMwTzas nop})xt=p9׫`n~4#q|Da#M ZvwԨ `_nvUΌGwPV@C:ZP΁Sg8]y %&56ƯBcc0ò 7lš1\Kݨe `:c"Uv'̕yU~xȾ 58NS6Z 5|=׮0r\r=Xk7pk) pv-kk98 zt^Ȯƛn֛nv5g)!ˬ bF1pg*Qʀ^m!*&@hX(2Aʐ5B\f`eеV2h]iaTepni2@2BUʹ ճ 엖х2TgiRc5-c4-}d˴+CsL|SʠYbe?3.`=;3.(' ?3yc:L|d3IQ1G|*\NѾR$EdhRqٝN4hz$i@̆4)~lTuҬߴ6֯ ӡa'Xjs#q2sZyW":0{}Jx[P`Jk+SǓcs}|ߺnWW#s727MBx|Pf|| Y}2>N:ȟӴ+VJp5CS rK$`h5RNyP)4ؿy_qs9t*:Cv4=5[XN<ߏ߀.bt?#L)$4[^X(T2:_9`O{ ϔ!Sұ/-:_`[ZhS;`_|SJC9T :*M:HzsѲ+?̏R?p٩WrP}<u嵈~P{ $~pxļ,{X{nm4čC[u >[ؑom{ Aʑ+5#`#bu(䒞T5ʫ HF^Y{#_P2#B֫;J"n֠ 9X0K85In5ࢶ%PA )Us25ڟb#IN:ΊSαo9:; 19I92;<ڸvػ GNH^\W2tj0؜ijy48VXX"X,UcJ.XE2+H6b%Ǒgy+[ ['ڎ)лw,zzHcdƱ/8oĪE1^5'xfA'(XK.U|(0z=1I*nfaWq3rﯵ3seʽlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Dual/0005-Organ and Saw.xiz0000644000000000000000000000410011172205155022725 0ustar 00000000000000[s8_盙$s tQlnAFJ2$v.Omݵ_j9<Y;5~??]~puj]{[7L:y4Bޜ~ BZO|= 3${4riѧvGYw{5{ׂ!f5N~׺<$b|xʃzh*ְMZm{ 3a9}&s < d%Hď<" Gq˹e<̕pdda &Ѩ4C9Lc2LtCWR7 o۽Qn  ..DNh{!}:od43u &#Bh?^.Zƫ$tӕ ^Üȓ<0J{*tGۚ]SDB3T$ΓXwl}N%R Wsp|"b#q qFL9mk2E,!d+Zw75TۚAZP'׏ɔP"S3ؗubB Lux3S$ EA7EhҾߵu@G4J|7DISiW4X6dG<0|0(`f>gpFx0.hhOؖ)β-ǐp?C{h[m2Z`K<9h6p0 d1MylCƐ3?NL:?p$t @<6e݀]* Π}w@<'\jM0n@ÈD]3{*RœI -7Xkg# in DĻcg%?h熒 5j`xM~8>vwuܰdN[vxIC̊!`_}Q;.$R8A)I8jp,LJN8w:FFSaNj{$WE=%vZ {~hVˋUݮm;ށN8>3Ҏw&A{zW׋YWui@`Ay!Nk3rɞcD/@]d2Ml4&S&N)Kq %JZ&#hhe ܴYHo(_ieֵvȷjpM[HXAPD%c?W]>8F&R VNJҪz ꖝs^*m_0N]_v1&F!/iqc7w+cܭT۝ŮP+kכ";-4yFږgJiv[b34:Cs_fon1USL+>)T6m pH;nXDXc)Kc_K9,Gw`-T9`}Ll1Qt(v"qEܧ;p7%I(ϖab| JytaZ]vkZL #~xxܽ&p_tziڢ 3ͪInڛ(Y![[LQI5?hAm\ jY_eݯ9NTvxTQjwMXZd+$-۪S%~fw6rV4( `4аEŘ<&z6$Wu5W|$W$W$W$W$U@$b&6*PY C8lop%U/a#N}5JǴb##R.+Zt0HݿdB_@QEHx#gCx۲BFf˧=_+aXdlE3SXF6Tȋ._og~GAp׻?W?{OR?MW|2_k?dyCf){'o>} 9>ݍz<ޕVoY]V$^[YnVa%>< 0a҃ҬZNCq?!{N T5he Mw/ SƮYSg7~?/ MS?[gE?G~ Y$b|Ge֏3nwU* 8ҩK$XS+m9fo2_EV0 lEŞ6P@(/8(wܾB,/OB3>u>yމ%%׾^ga{w__,i=ׇK3|8Se5"ESuU76(KD<8j0|h䧫$܁xQRżs63)e$ؽnS77S;^*عrArAw˞53h.'8NVFZ#Z}<[rjaZSa5%R`Mꕚ=EVrY!J3 <bT0CUm uU+?. W,Wߺ9[\.8ubS'缪OEvc;檇6_H!b{v5NtN;,-FIJjƁ2 u?&O0+_v|7͐"{B+m'0[ bIq 3S)G4a3(6q/lf!0Kb?^Dřn`nf\:*8ӂU,WyP L-ilW1R2X2\vFlW2Mc,I Ȃ Gec &[2؈bT&bSXfacjSڶb7s`#{=$kH.јaא k@py >C8l2cf "+eT.«>5V zf>+pXHz aUt_+v2c^ ""H,+b"xEa1^QX ^]`"+ b" W,lvH^Q.«.aۻH,+E8+""H,+bP0>o0^QXWxEa1^QXW<ӳWCޠ~b a`b?A 탄A WZc"y43a't8q^3]b0^QXW݀\Fvy"v祰9Z =z^^QX^QX^QX^Q:3 RK.00]DRX$JWq`Ad1cxrx< FF`ulֱaXdža 0 ̓Su4؆a6 Âtmvað az*)\Xd,DOi.ٵú6~Ħwh n0*=-`a SIk`FYA;`ad11N S 4jOIŽ ܓ-c #H0010 ٲEAThc60 -0 㓖SwgfycBd #[|ĕ`a$"&Z-1}#'I sј>ٲ1}jjc F-<}l ]N=upј>ma$a$,1}e1}e4Omɖ]0 `hް bOYO= KR;z͞[ܳw>ub4⪽ɖm.ۻXLn⚡!V^'7 ],O\,O-<}SK`۵8KhLYEczE ~M+&\㌽V4URFu!Dǣ.JXwwc/ϓW4:aԷ ^_V%b\EU*Je:Xtx2(,ADǢJ ,lsLQebIMi =O/i l+vϫ\J+){1Y4h $ gio^:E _K20F5" 4\H-8@KЌ7AO}Oⷚpȭ-2UFtcLNBJ+M7N.լ\0~(<!gYu9ͽF9 NC=*̫ŻHBa] G]gAkKX$qz.E0 H2W߾_M`<%\] $0 M0e))q+gdc*7YdG4s(#~JfD34#ږlEg{{/)lVDsI5h<ƘE\yf%,ͣ f.b/O7vѣTۨ#ܪLĪiUc/(VMpIviAW.+Ʒ:7h(]94I1W]tNR̭f_RaK:RZ=H-fM bV;%% Vs1Yy%fMڛVbEщ2*6nsm yEY'TY)5k1 JfQAY1Qe>=U*tG-]WH8a+Kb*̙<]VOWGG ǏWN4GJ}XЯ\+_A4 >x0 E{wû7_Kꑉ]}_9>3a"juJۣowqg8%YXESg5#+` ,G,pxa a 345K`\O744c=*-f]UÇNXKItr5jsvfaܕߧ"R/Qp%dq3eK%"ad #T37`Gqt2gw-R$s8Fe E,)/򍭐 3 >sL&Σ5Ct"N6\RgacYٷ\lAc?Nc~`1hOh(;n]ۻ ># 3q;2mЙF ARUHx[ "o>@vS&4VAsl% d Nt 1[t*3f6Y6ĽbIhMLˉ MѮJ'JAXtaEbBvaӓS-B0Uv?f+ ,#,NM ,pt/ư*URo4/^5fdO2N.sjej&XA0lj6"-x;[8zl( -YH:f>3l'uc ɜ%rj;Ѡ_'Օr*Ҫ8gǛij 3E@%2D40:Fо[};(:8n Q-A2Ǻōi=o"`$popd?64ʼQnI0A>3۝Z|9K(z.< 2,N4`{֬r%ɍٍke(W&J7?7 jm?vihz%p^}X 6f~ŞQT >S Vl+ٴH%:u8? '$=VA:;_:ǼC\6 INBL҉ɂP K=l;ZvGp"졯##ra+Q #FaQb.È1QDkYq(4Ex #X՜x'|\lJ8#JcT--E8%|P€> 5#N_xtMhGX${-1QڮFHLMoQ5p&ׄ5mUyi\`EC]tYެ.l19lUsNE(m x`PQO v~>T)2E0`Yj{- -0N\2$aXɃ6$%Oka7ҵ2i5;VWju;`UE`ؐ[`Jz;7(GtG9c9Z!?PZ-`wvy>y9ra/BH6xrK ogֹHG+A5_t ~bҡ]}lt(n(ppBC|^̑^rvJcwDm8w>w/dN^泽ɜ^6޽̭ 'd/?_+vpu{o CcxNDx v8-#-Q|OWzm9ĕf5zF鸉%27׌KjW"Cwqɥ,O?<яKfZV/]ŦV=6W"9,WRĶJQRƦv`hq%(OmXJfIl'4,6BxQs{[jI}rڠ/%-D\"X/|RFDlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Dual/0033-Rhodes Strings1.xiz0000644000000000000000000000535311172205155023354 0ustar 00000000000000][s~_{lljM dkf_\;`sl7$$cnC4Ӗu>}n}b~}?K-'?5 /;rRzǰ,9_᧎[*c2oQxj [qg8 KY?m~zT+ ;@ X"ϰ?V okcM/>D^{K'īqӲ{s "M.N 7|wH3BXWWs9*^N]3dmB:]ZU^X]V8h \C2HiddUbK6zm})UB :eNirطNkJMzXnS*i;w]T]@-|XFRh_&YX Y[[1]z|z荟Rk}s6B=_o#PVnOKj:gr&3r^٦țXH7rMիޔLHQ\⢤ubgp{bx܅|xՒnY\_ҵ_SߩHcf,];4t΅]+?0mg#6=+ ZS7A92}2.35[$L2,2mm?6aunK\?aCeȒA22RכM]:9@>1c9537 Jwrn+j]@ mXa,"fVuIVDSkt?;o2b`Pք2qMG}vv\¾N"㇊%2M[r>1fZ2m_-6j_8a4vsǶ~ew{x!3} $21z򹐙,rHa y6Иr3'+"7-L:wߓھ.^ 7 i 5HD55RfM Ѡ p/"$;?Q{wә ~Ol߯9EmRQ!ۀq, h sevb(4_K'aoá`t{`VNsaf0x#XRn Y&/_ Ƙ)UFkε ?VݼUKjf䮸\ Yk!ß GKmD'3wL8!2*\R @>@=p Y@Ji*Y ȑpEM7RK_DP=PSebZ2f%/jm52ۂw&ks~>G Ltx@Ӡ)P[N q;tfTB&;@eV,O( MD\ʑ\SB Z/9n?038کRŹ171;eL^Q*v63 ] yq㱮Yx 7rkONN6tSygM?(ɂS":UP8Fl  s0\{ Kb̮p!v]׊rrD*Zr)4*(r)O.pUx+*Yɹ[Hq-\(3E.>7d9VTpKѼ█0፠01BRʹ3-9`WM3LtϹAb=𫾃[BWE QiF=UC&RUT{Ԫ\،¯ae3&b!6 kJ8g{ ަrk9w(v9g%HD,!1rq$q]ݨBKECI\W%y2o hl@f2sd ӨWn`i^XAUL#X3/^ 4pbHlF.BFQɕ4V0(Hq$ ܼfi+=iJ62AZlZ{_PB3*&RA<Zhhw{r>WFM+ k$1@H {{ jppwS4ք`v :aڎ4')}`rP$xC:Z#zK[a+EP*n&~np8^J4awy¯ rI͝s5م¯G*o`>!lu]6k܏)at5rEߌ,U@.gy)W\HϻVKi} O= 8vZ5Zt^[f`}TUCٓlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Dual/0034-Rhodes Strings2.xiz0000644000000000000000000000603011172205155023347 0ustar 00000000000000]s8~"{of%PK]9 [;rH6gߟlٖԒ@fb$ٖ[ݟ?zu\rkrcZ|x٭v˷L?iζ?/M7|.ߎG+Mnp2G1kc.lcW7LXmU۩Tq*@Ow`:#E㬍_2-_d ķi壵o[5^}t\sxHx]y Is4Ɍ8W%CWIg`<_|4wJTώYWV%m`cc?;n*ZwsrhsJ{+ƏGW(VL|H|pwa+@<@"x\1SLdƘ)(͌Z<!e~ MwdG!,;z onُwAINv4Igu,ׁz1lK[Ҡ t۲sڋgd&-ZԱJx82T#j5"t wBw t6,wLE+dxtclw<<^gDDLߣPiaAa߾7ty Ǟ:W+K/'JȈK:]ך=":ƮoمzttKȮެ,Xh8LH># {p་t߇Ga"kSj=. p=pnd#Zk!S~ X-'C2˩~+S5QqTHҕ(h+ϭp)j>(#M^0 $w'Mև,OHj '&?k,~O`5yhrm$3êԣYΥƬQD!&]#jìly,rg0A'twHx5&Z9h0.LF׃sfOLqWw؆~-,_ n\k5&`i.4g6[ -Iϕ5\9Mfף[y6GKU*8 6OB7vevn,Q}nrIUsG'f<+01^= jGB Fm6xXF.}_`L6@ o `d",LTRQB8wLZmf *=[K Z\P46%#Fm KNKڵ:%}Wӻxt&<1`P V4O5{JF ̞4&-b AC*l%.Fr)`N^2(iҷ6:J R@w<"G)0\l2(XlzYD}Yw#ݲ7[%]wDmb.cRջؔ-jH6L_;9<:&\\g;.UA/\\pG5!R!܆ߋnqPnii vFH z@Ay؍lE=Ga7n usq^P7C=]ԭUAz`+ v+[-QtӺV:"&+-L#ii3^ Ovh\{6s+'nV+{x a3?͙VJs աq\Wи[g=>Kzuh ;$kSzLIQ$Q$a3+Uc)*Gcwޣ3(pyB4"*)Y=Xy+,ެG.54D֋ 25_9aAJ#^dʏ; 5B麬MgF`XB00.{6Aˋ޽Z?MdP8dZSf[-6HgOl84|ZƘ\lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Dual/0035-Rhodes Strings3.xiz0000644000000000000000000001145511172205155023360 0ustar 00000000000000]]s۶}ϯ{*-i&IG7'J hL.EP"JX\, _NEy&v_;odΗί߼yOïg'bqyǻq߼7*{wΨKqxxzB2M'o6sߟ'MGc' 5IwT1pp~QT& 8l[VgAE`͂8gmdXj~?' F/*YFJwKX[]"E [I'/ǃ >z^.ϟ~I[}xn M:z>Jos=εR4Z){x٬oy;T[XJzRT bCzpp6i4%D=7Wj.2 $z0<y,U+pcשjp>\|=~Z;]:3?h& M0]4IGqvЧՒsxO&ƩX*);BVdM{fۊbF76MQ0 qzDyp=KSHN~ l^͢C.q>.Kj~D^dgaʘ _!ŪXLU:E`Mp.1\&qє@S'+A).T?K2k_}6OVdU3;nUΕ?ΞEa9YRg-1˞P?$s[YLoα`=J {-Q7NlhSJz7&!jAr4YHȗ.b#4|/O_]8w#fyMue*+ƿ kYj{UFGO F5e^h~ߜ!oGp }sl 2C)ިy 0әj|6YXGr+dp=c^ rۨjЧhל6k])׽uZ1l}Eݙ;3~bZjLhO1왖(e]47JMgiFj)*dd){0E4 Qd.tb#% ,FYܔ\ƳvT⣝֒%[Kn-dgk֒% (򶇑=DjP*fB0XD8Q&Fh*۰4qM(@Sh ĉ4qMn0@' ĉ4;' $6\s#xoD8Q&&NIDܽ<ѴQR<ٷ,gm)V&C^*VfR^+N኱m+NኑEb .'pŘ]+N኱tW,'p]+NኑCd{.v]s -}.cI؍=3h-\6"&C=3j1 GKN=݇Q ;Yg0IjgwA:fsz"B=w` pE} pڌvF]+z p%N1vb؜.U9]cs~0p*,FV%4=c5P䴍,niCn+ ׅ`$o¥!+0ƭ,&/Pƭ.&/pƭ0&c?&D+ l'8 1VC5!k4+ ZXi5N=vvFX['>kⴡ{k4šK7Zxi5^aF{VNk(l=zZplK 5ƫZЮq3Q 5nwͣ@9C{Lg{0ON Lm*`ᲀo:=tLm]m٧q.2ۧ ~3 Sӧ8Px1o ks(A~7̛i Va Șq6|Gs%h04c\`?aQ}3Ao3%wv :e6=gW(/R(y1yT`v9"]lQ蟞1f0 2oFgv8?w%a+vXa =+ l/  #FcXa3ߌƾ!~ Q%}l0E-PGqnGanGgjyrti'}~;N)NaΡQMAxqC)LaR`:w? ,ltj|=agd 7 ?0J:Z?mQtK@} (ύFiF9Uà>k s=Eխ(OF`B6 FP#'>(sjMB|O̙lηypj4eiM>tiث|jK|Kwe J-+BTHc'yV^@sUs.H~.ڬŧ# &+(]S>\ZpURlVE6o1 M @ϱcXK k|,´\/ڪ M1yJJH%Up[TD?o-@DmQPAfSiI_[jV1la+' T!q,W?0Vcu~_IzJb;lpR4 4..A1, OL+dO(<۩ӓO9ojr1d+o^QG#4UdpHe6ݧ1gJ~5'~9c ڜtN޾ƹb*.QAMΘvܐ9yԆ\NU)܌8m]͇L8͢"N3QjYMk,=WR`K"'ߓyfFL8l<XS1ZH}&W꾊9k)׽&%k_-:P'_K6[ῖijW%}_ի*~H u_[V⪯ex[k-Ok.$nj_ljո&&^3wԋ࿖gpk_k}oo}~@=U_[_{>vuZ7WJ5rr`8%CllUnHځ}y^+H^uWS+q'`EzӻWux%`EbڒbF?z2_fo{k&dNñ3bxxp2 ~;1UK]ǝg8̈́.QXdA.H&>[|S]{$̣;bKחnw)"ﭙ[3]vp twirQ'KQsKYӝ{5;auru\2fdP ztR^8s})I~ÎRӕ<⾔D\$]:sGJ5} #zt5=u@]cW@ϸLLP5я:UvkLGtO:-Yy0. Wo;^8[t}]]565^ͶYm}m'Kԗ$/>v?u}=%&wjW9^;];s>:L)n:K]]fskM_7f5ojXռ 6yj.ϴYͽ;uX|)7ɪ^ƊtÐL!O7Ć=Spp04̯VJ?.Ee΢urQNEr L$(Č+bFP[)begjF{Ҫ8_ҠU[R8JJST6OpkTQ eg^層i8ipcj.1ax%ޞKU ǿk?x|<8o:1lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Dual/0036-Rhodes Strings4.xiz0000644000000000000000000000522711172205155023362 0ustar 00000000000000][w6~_!pnzhSNH" 6%"i$c.!DOˌo?Wzc)iVJȞ8e|)=7n?}K{p7عgeLsp&JÙc"b>#(lqK'"K ﯖ( uӒv¶[J%O#+Y;T $9e+< F"*5@"yæѲh+VmmCqlFNz鲾m}?6Zv9$zxRW}un/ Ɔ \C{Esgb+wݣ%5 gؓ/,UyYHηv]7 Qŵ.R%mc ±,lyKgQ{vw~.BB' EtIq(oXv*v-GV<LwLEsdxd3l7 3ZLMfm_6aٖ!1_CCe̒ﻃx]d$['z]m6Y<ɡϱ=1Mϧ.XTPk,s%!@D>͍籿cht:o2a"?EMkBw8!±f;Do a?K'L szkRA}# g|uMqY=>p\n:0d D>zq\Z,pa6 n;$P L^ww~B崇{QfQ+fA4_"5<3!G 3ְ3[;D?wy'_Juym"&3O_wE%]tIjd02f5Gf-BHy4<[&/m8uz4K6Ƨ}!%&x)`nl<JH3F4!-bnݺjS5F˚h`hN-yc< 2DȬpmK<aM[bn6d _^d9 kLxf%#Gaȷo1Z:?RGfT@qЋ +O-#OpaK–"bVv,IPHr!-XdWI'7 Sb 79rnWi, FHDΫOL2GβV"#9+ij4Bx>r,gSdGT^~ta.b,ۘQ'Pѭ[Wr !* ԭ+~ ~Hڄ)\ jZt_M%(&ffQ$,jZ_k9CNO_tBgvr,9g3H-{ΐ22I64 oR%K&K6ɒ Jr%JeɁ1Pߐ*ـ|YJ0fR%,6W4G0[Z1*[2{ْlI*z~r-[WHfJ/[mLʖrqْ\4~y_ْFy+ɖq *[RPuUAՆe bn ͨtIXHKL_qPr+_VK DܑMϧ1%|I:qPK) κ;U |q@Hry?:;-=Xl>0R'(Fx !Hy|wub煥S@RǫM>d/Rמh&:j8 {^X*Op3YL`5QRX*`CV%UUB&ִjM'yŧxqV00ἰTT/W);/(,./P^^RtR\hvT˫;yǧ¥WJ5x!i=,/ʓRU*XGA TѨMT1)'xX@jy1ӗ e4p1hK %#bHdkHL 渫7ȘIһٳ̳A s\ ,@H0P$TZh9["> -~o4O&1I ڛ(S7P%&(6&b#𘫘j?5'wFƵ͂:h[p-] &"ty1129 ,V\U`pL-\ O03ٮcģ}BWL glow=*;=sµ"LD~@-'`"72DL]`&؜Q=u^d eA(%&XZ⏍c$̑ .'۸"Ϙnq]+ZjirE4\'0$ ()>yAɂ|ZCqEK=#Yfv,TN®:NJl/?fx;?^cE]ھbGzJ?OZz?N׶~z_ᖑg'<'Ln|LF)0h]/:h`NCֱ/ 8eZe#Jc"*r,D)#Xq & v?@(Gͯ(Vs ,¨Қ?o)~_pU3kIq>E%S %eBM,Ћt,*(K78Y+oqf8_D eU.<&@n{g\yCDf+Њ$ _)} *6隡JaOݡ I}T>0%y13kU :cTEn%w,DmURb҇RN9TRNJgJ)OKIOKaXRIمc7T{UJ5K4qTTw9tyY*akUVJ>B*-㥥JqYRo4q3ϕ: JjRU_'[o0>l]\h߾9Wȩk{*3-Shm)M# :iʝ܎PN*z$VVi.VQi%cdU_ٮŝpCw.<~q4d0- oTItč t|ѽSֿ B|y\:n?|m8,>xGop?RxZ}T;70$6b @^xYg^@^f>x>WoToķjH;v6KwûѴv`uV2oAutXZ9:jO1 JtC xLѪ|<h >U |UQ&!U7|r{*$}PMZ6vT{'0%XPe/gsjcFm~-ӿgkqd~g}uvZpj)'a_5cW{XQA|H3IPjN UOdy 5r&n?3ZܡSo{kڤeMs^r >xT{9#ٷ 09kͼtҟ ݃V5e:x[Ʈzq J 76em^) X^2E4.0[ -CᚵZm.&VrUa:n7#l*1'%f󱕵sQI'[9CL>Y,&ڹj['g뾍f;U=2a2av?  Jb"nllKfGqV!~S0<6b4*q#Վ Vm8 T1¥t.Xȴ`&)*  O-)uRPִ]0[vO>gxf{Y BLR]͘{J*kkډ>m}:MCQwn;GG rҌZv u)R<8{{y([b1}f#ɯl<)uGZ,Ê C0u!G@$Zrۭ5b5g[1 Pњ6UqqSU?}SܗovɞGVްi7zޭ ww 6k' ,Inv6Po'E;d6}E <\ Cpq.ݟDy"/|jSIյϩA1huO!DDi-nS8HF@am%?H~]@BlT(li_&/ x 1 ?>=C#57OUdDcJJ ?t<t /ٓY/Wdmtr.Fn` 1J0_@hflO/E$ 7VO8A@},:;*[G'%XP8LZ~ىZ+#ٯHO~mdCyiY7!W;0q_>b B @ValNBӏpZXv(%Ȋ,d:e|fZabݏNkU4Ik ˚DBk׿~^Yŵ!rN>XTs9# f|:OAW:-sm~4z~1JB m$&jSz"`Ⱦ8L%P y>m[_ -smre^#g|0~N JWb2Kfs+c,He6 NBlsL>J\>T+k* ֬ 0MPxC.Û`Kbxm4lSpnlxg.k_ISЖ taL=k9q6"jsOʉX&BkR&NjW߸Աn( 仑'., 9hNMK-B}Fā%XhX$;40Êm&dO^@JXM`ڙ!yjl;07ވCgΤ0 +<)y.L7u.x; Ϊ%sﻭe|1?Qf?DJtEQ%oFNޣx~6Y31h4d=H!Ă#b43x0'ןZ1 ,;q*BWG`Q%@k@ꁊϥ(QJ\,A%?OR.RzS#]_CQHJ['zSU*VB}X) 'ך}% Yq:6k)wbZ=fP),rOjd߮)bʊvW>Y3FE!em2~z8P65jsIfίǷRɉ ~*="Z2#48I*as>ɢ݋X Yр51J&*:lX;ֆ.g`\e}+,L]DQJuRPJR ,5 & Q5:iz5if_A; E!f~84.G" ? ȼ^!]"$Q֥rat.,n$H3a4SvYfJT}[v4Z%krfX/ƫd04SWzx8kP>Ů,{.+hqnZ#_Lqoei!<t@lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Fantasy/0004-Weird Pad.xiz0000644000000000000000000000246411172205155022712 0ustar 00000000000000Yms6_A!/d& 9P m/a+ 8[¿?˖:}}͹$I#FޯfЀ]^5^/7lj{Ka8,K;?,M$ٓvS}|4O#Og' crՌ0BO>^mcٲ^""NI"dm*tyz" $Ip%sKK,Ca( 9tvp=|FKU>RF3NbFxP@;/~<@ڲ0,U^[NLj*rP@8^"fs*##]j6ҹY5uۮѳ6$Ѵzkf(mnv-+f:Ȏd~@W"b3,l%-n5\u%ƸAG>C|~0/\nw,,X}<޿DP<ۖB?TKK1>zNHj 9=Qڎ 'VS&wc5HW+ZmE0]idQjrrͥ&?ظ,C]jE)ryU\є $L|Pخq>YJgm?7Gwxrq&1vm/9d=qlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Fantasy/0006-Space SynthBrass.xiz0000644000000000000000000000442611172205155024271 0ustar 00000000000000\s8_=%6LMȔtQl܂Mmd,[J2&!i ^O泽{F^Yj{w>nǓw::;Zޞ;2~s-)ɓm;{#d=ɇ?z>#ϖuX+t߽y1GhABQ.ď[EAd2!% c* fPrʏ>‡BFeo0+CLdHv2Z`֟BERe< ډaFWTZ\iYxGUy– ĥz`3{{ 0!>78 dz>NV@5-XBD|Ł`xT gghu0ȁ:AHE::YO-'8uOf+DHXQ}.ŞЫ "8᜔dـb >"t˅8/\u/IH@ehs5 (\fR!. Ɍ=s&0:$ʝ*Y9s.ry:_6ۡN ]D IUw׵/֡:UHp㨮p~hw:̋9`-nM ܨ̋4''cXҬ?pQe =M fKn, rOE,<ҋa)pIut'aD Z %Ԥ$Sn:BqB@Y`gCS6tc)X!@р0>ngGj2ն`zFL=e\7y&3>R`#w Y3R9 JQ iP.>ذBC!vi 6z>B&]G )j 5YOFd)9jZF 9YJȔ3 aN(LHP,SuV46_Jfՠ;8"$ɗio뢹/ 鞘$ |;ZV r<+ %7QlJS"̔FK7R{sIJ|ZP&J̠KiBAss[Z gX+JT )aN)Rg9o$IS"QQ3qy%I6\&,LXлh%<}ARUQXQ` IhA7 c9$MȤt5H4[8˩O½EQ7 bLi #Bŋأv5JR%Ew)ueòBVu~swxy5&8~=X /bTmg k54X7 X x{OSFPTи.*v`c%I3 +9&NP 3l##u2D̰#w:mKa GW#n0n(8b*C>})l,d8p&(74z^feӠ_]fA}&XUe) \M*SՏ1m,S!*KLqUTY*Ky[YRUʬ,C6RU,QtMXWKMq.XԪBXzR, hB\-Xl*X[^)X2p*Xe`7/oe`- `Q6TK,<$_>)%ݮ P*VelW /ؾWWd' |\%U>9X./X`Tɳ~۫SU%U\ۓfIG eE~ÞdKSfTʥ\ʥ̗ X؟^nPYmzTNo+j2KzGh]/yV/U஡2yǹ8A%ǹL8ۘvƜ㼍oǹmǹln&#:m=Z|h=puJ8Aw:N)9H:+`U̕^)Z4?ij(g-ԓ9~558(6>mLNfr:=z?9ߓ7^.g?^/y |{qƵ!^`=Mz2ؓxΆmld.]E!kwq>q# ɖ(m§!t ƒF=4Sh]\O^@}wATSM]H7͜~ys1eؔقqlm=3miE~xWĂ  HӖBn$*Z˵%# wX5T-89@"ռ~X|tMޓkg;>ٶguyv>P鲇t9vYM}TpSTTRsqrtt9kE *FS;`hT6e\mM VWv+[M(ځB }ۚ_4Qa;|5зo$0QY}-9F(vW]j; _K&>vz. ξ;v w~,&;BMVY -u¯3Aѷ&P}#6,9>X9wd1_KHAs${+ +:S/ŕFrd֬̕yCZ7K~bkwWa&l%2\89|2>8!|CT0- e0]sίڞ!ԩ|aضgoD쫚҃liEzJC+%ڗ YV2?P{~I\|y3pijjfsc3pH!rcwඐ݁Kɥ% .5M*z¾D_\: |jhvkqtĸE}BA"6w䘚a6q%r2JLy͏_j'8OȪ>$jM"{lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Fantasy/0009-Space Voice2.xiz0000644000000000000000000000617711172205155023330 0ustar 00000000000000][w8~=c˷紙M39K7NyQ,:Ԗ<6뗒()XNDOꩩ 7#@_$в~?\Ͽt{v8jz^~8=ɟlswQpk?IE{2'7fFwVCk|WQrC[V[ŶUdIh{~cU66Y,\衯進$aLHqɏ>Ռu[]ͧ-CL7]ڙ vF)M*YH?Iȝll@|ΓVv],$\2=Ȝ2L-[oC\&M,`$ ,VHAD|׎Ar<cMprzjϾ\ȁ*@Heu&/o?*c V;:v|J[A0d̽ɦSDʱjl_ĿJyŞ0a&|#2U<眔ed#<N |on+D}8l,|aW=YhO:q.[Bm<Q4 ɒ8\O(w>L'1T~ĦE?ϤU}5ok7?Hq:Y89/xܵ|}N$.GalQzl ^sY^A4:8Æ sF_ ?Æ<baݳ%HW'_LCNZ5aԍиa.V~etK` };ALzn-X*sC\v_PGLo0+T`D&Q2CNL"I bdν]@hKq̿cr~rrukk&S~+G4T H1;Z odiϩ sP?PZ)ilye=]Еg\=}Q f=]!]*&n=]..YWj Xv =W`S@\)KS1BKIF bk)~=Ḏ߁w`FdQ5dۅFu=(@T~ ,vYp ށ# ~ر^V$n&O{D-41Dgᯡ.Q5&(xirGYy8#3!5XL(L ~Gf n}Z5/SVF"vX/kF3L(,z`0| }EB z #[ {S]Vnjb;2% |fl |Wh, QW)K~)+H~` /0GDY`#o8%=!I4ٳ,NF_tAi ǣY؎  VdV6u62oeTa]$leQaV6S*T>cET; ]!hĥ#]+G\*qiY-!-&`[WU-pkQZK7ՄUn=hR$]zHw豧c;18T")b*e-t?#B8moD?4L6Ɉ֎z@yWȆY9xMW4&I+Mdd@N fmZe n,PA"YyzED $[F."c }AvHN "z 0"|82WFtGh(2ih$+\!(JvWSFݘ4 ﯠZS;"ƅFނaiv^xa[(p:`xT *v^JRUն-vA$0EVSBµAKYCߍ50%+$}k (L RDOFE}5)IB$K$O?x&Jdȕ(%QS&i^Nc2IrQ9jp{ti$/t17V\d9 k}YRđ%9iG*~Y+ijKæV́|ԿJs?+5?g$7 wDSj6nV'27K͂[sJh޸,e'7#gg7&Eyx,ҢF TcЍo ǠܷâzB9,G0qXF>|:,]8aI=%)%\kPґoB"(^ 5xjrXhaك2Kjc *l w WTՍ<19i'a^hg}۫jxnxK|QOy˲~}q-UݖC[[(]Po."ȟ0@&[b^LA ~,S*@~ ԏ~i~0.ȶn7CINWc^J[B_*JB2|*RQV9`O2:bu@JJ7!6buYce*KjJ/Eέ`s %qɹt_ l#qv<6ܻ:2}!tGM`p`PѰxnq4ͦ+v?Lnhi̙(@V~9z dnlw&~a&a2:A>de6H'w{J6jW(9C{0PvH,UVૄ! UG)m!fɭ7څb;6ӣ >軮bXJ.(qPh[}XFbureZvViucw{U }s97aLeo)h "BՂ葯È3>xޯ8wvbכ`/ONIXɪ25kUʰҲbV]'>FL4bi,O,]TvjWWg]Nփͅa71n/m/e9l:^SjMѕН-&Pg_мB*_EDHE#OM[odE1p: ;bK QPȎ/9m\VW`n${7H|p'G2oqàԸi3ėvuaIY%+j8Kan5avvogHZTӡХm Pj& 1v@58b"xqHMJE\"Ϳ7`wknpnCp`s܂v Ep&)bw=q64]Dȓ5b)_Dk}};R~dE8 j\Ux~KWg8m ژH!i w*`(hξ.kZ(2 WT _b Y$:j<-BEf"hyFhզyը'd^iG!RlkGyKW;"/)j'dɐKXP~-e;Pbt3؅In o&2c)/2}\I ~ma!dI&툤W;#K<ЎH ~vp_R-V^i. _jЋ۞7 PS=>eq|ijgsYM[| } vW)iG$):I;9'Z1 ~v$Wy; BSfw`>$-y`)(LVS唂`K-7v҄BC.B`K5DA{p`@,E"'ӗ/v.(=#_K9 -y`'c뇁dܳs1J6.M ~m;$ͺ~ti .(sR=ˮ$N)ݯRJ¯MwvSd_[C7Emb0Lem޸B󨢽P*#r G`y0\s xMŖA CjlS~%656匵i7r56_ QMKJ!h/A[=ʉ 1ԭ.ۚ~eYԆm#:r^5eg'ͦ-?n6طH1u[n//ƝlM]v7^ǹ9>\z>DϹe\vsS e!|{o,o.{yKDn5X]77edh+c.0E!#ǽ+x1ƿlQ~izwS#Hlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Fantasy/0011-Space Choir1.xiz0000644000000000000000000000345711172205155023315 0ustar 00000000000000Zr6}WzOdWΨ65ԖI}@$d1!__@+i9:Oqb/g@]|ĝg]ap@?]vwW?L~ X~{B .Gw L2f+D|r* ؙ>Gwawd4 /Xw0Le~xo0]"G![{AyDŽ{ù᝿gҚ0o G4-y[Cܗ$)@s ´]+L  ǎIQK--ď0 ː=(`VAOÝ?YlؖYTt) PzM̻dU$<&!O7)=)U9 ~sGOWBBSӨPdn]' /8 #e(DGF*&JF|A#F*Q9!D\Q8MXs;U2/;JжYu/m0,>Z=EQJ<8t-3UO,2d| gJo s[ƙsd ^'*C 7 )bq쓰!%nl-(B^<1dLO⠾k3N wD95[zAj F` 㕉FjίǷZ0K'=Nf*pAc5)Zl}]EW^^kZJՑD;cgu_ug5L@`m]z9(f^ 'b. k2=UEt>G #x1R9hZ#˻ţ6wr>DQ)SdxaaB ϔS bɨˡYrNjƳ3JmMVl}F1 "ls*9(ev ]GI!fKb4R:upS4҂TgedɯQ Sٮ:?DUM3\$g #I8$oe91͋ C1Rb'0b{fK9YPBݍLL};0urzqR9s+ގ⠙!X{p|i0m˝6Y3 -q,^a-I0sPFUb}Sk(LٵS!+^2h4?=ǦU WbXݹgg@`F!hǍq^GIBGܷ#'f5ZakbQęYp7Q3F][& 1 JL#i%SQRDfPm κU!O i4k4^Cܷ=9菆jgٛӽY>ۛY2#/jׅ_zkD;рX]ȿ^Ozʇuj<ƥʕkJ#gYL/TLDU 5yW5YU;.s*'.'+sUZM\Vꕑȡ&;-(/z9C Uōav.n #55;=[$N<޶g zmi9zx/yf܆]]ݻ>_h̵/̟eh:, _co8 >نl҄|=StKv wԵ6 G{iBQs=d]r_=l%V8!HZ b'0~cWwg^{$>uS3JbQRU+@XuO86%!W(5 d\V+Z)j˔!A!aopsP_TG8cNjHe k_.`b_-8hY:UkNsm*`*`7JPR?95'O!Tj8j!"kd<$T'&R(,fq1ލQ&Ѽa%oj{Ul yaePeڋBkxbEQ^^ec 6/ZY] \5.>Dh킱nfW47 #w~+Ald ^VC~UuCUuC\*ó~n/dXPB*jhtG^"t17"Q XeWcuPW2.uF峂IFH-fti!eBR 0HLBP챻v4J}~dgð:"~Dh~Y" _);1IV]e2U7;ZxVȞn?Lg|杈;z徼g" T:|'S{08Uqb)IT^W&Ms +z6{9\~ۇ ~'6ͯkM;i1 .nW~ ;S0 ۘ2My\h$Au$ %>nrh43)_eH9۟nv$WC" [44s(92=8˱ 5y`:QN#FaFcdPIJ"aS|0ɿzad(BN\wT8yq=*qN4!/k9E,"3”ꄅs jbGQ5E(vLZzpy9TIq-"ϊ"ſ>ԩ(Ŀv_ݕ3}i.G\N,i_HKJ|/OdO?OW:]Z+D VEW{4l)qPX" M0Ŕ& mSk.nwY(4POw5ޞ]6^9K|Mj6r9#%$`c9GLA# a&5eO hf;j+6D*5vO>>Ea (>iv3v; 35( ޺X@Bc=/G.[CuS$`[f/K3aqmgGM]ŒGB-\s{9 z*Xd9rd0uYnnJH%p;2PS(5 (A„+ Z ߭PI}(ZS/nHAlk%'~;<> <($wA@C   Řk,㩡/BL-UKh5olC~lևxiJGٌ. pH< $`J UWu3S) D@q}zb*ǎ/ԞK.(!*i~⧪YyA W6jMe64B}lInG"yq #$@(Z>Ff|s(xUz[į=5S#z5W^pLbAZZ&;&BcEF~UgkU;Çc]ξDY;kTs!zI`c!kkW ~c+5} ?rp,"z:]Z+CtuX]NDEeu'Il%[jH" o~`A&SNq,. Ťn{V6F:f٬3unʍYnвRtvR4~-ZVUtC aOiZzf$Ih̢ČpEE Ī?Zmvlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Fantasy/0015-Strange Voice.xiz0000644000000000000000000000367411172205155023612 0ustar 00000000000000[KsFW(.`UXWdsVV" {ɯ93-xf˧Jn_O}xQyx2h`<OGGg?].__`8XGgRoFLk_qʑIS+-cf'ֳkƝZLdz=ߎٔomEdX>=oݍmfұUVZdK6k]e[Rc͞&tg;]~3Ӈ/, G<fT2155%F0l'K0Ճ+ƾ_=41 ʾ=nV"F&DOi+1~01oG3WOѯm߁_uŴ~3R8~u5HѳGF?k߁:'Wߞd1XM=A~~SP6@6fmEMr `)bqճ@鷫Λ eˡ;TW q}k?d_SO7үgb14Wϯ=E eefE j>MIGs`fƕ!THwxD3E>ff|е+55KrMM}j9M^5pkjrZSS[Ś< )_z]Ej7 %$HlЬxF/'i:Y}sMi4ه_Uu\L "v\`'s#i~5Q#\Rz%\z%G\Ҧz%\6|5}zUA,4!wy1~U/vo Pfr'8`wI(dgSmF_X2l]"ڇ ȝ-YHm:D^AX`}x0#oT٤Dɟd|Te^@@fAd q`e2?ؼALF0BLo | ㄇFdo ,,mu}>"9,n5H";$eʣ%CL bc"0t@%Y> se>h[N@܍ ,=)-Z{F(,viuR;YsI\Jfbw$}'|E. +qa\d/Ëa:AqS!Z YnbsNHuۮoh@4rIS 9uHHԎgքt} K˂P,g@f?Z b7ϽcgYΊH?׵;^lLd',0R2czf(9i쁤|~-q'/C{|fމ[`=_!s;W(;!5]5""íV#l,2lQ5,LZ7x0>$8$qȗtʜq،_G[ %6n>ith!=aq\q0dS&Q\wП1 ӏJ$ oՆɶ>%f_J%$F)qeG~2HetPŁn1?JA6GMŵ6t~``X{Ε5.PrFuw[Dk4Ȭ/X`: 'bmF֙]Tg 6nh&C^.6k5n+z}rvpϋ7aiŧQLte블j='cÛ'o<[}rkl5J4NndLZ8X/bO#&}ЧSӶuo@o4$Y?eZ:}{ !lKHlu'+O_Wlw7+b齼bAڒP钠P󖤹a=;֜O I$`<C?H4wJ.FyÒ\X5?Fuڵ sgL'` ࿬I2 ۱e%[9& ɤ(6IfRk ۠sxq0)Ym|Zy\5]~pJAR-4ܺF+EU:HDgy6(ɸ?d)_ U  .۰RS#A_wS&ծV["%ҳUZRrUh6~xYSo9 }/}7\POkI,ҕ?PA_P7@*@fؒ2u%s?-ʎO0MtEaN'THWX4xKk4 .)[x)܃kGqiNM(Q̚N(Iԗ8"*\b34_t5Tmoӆ@߆%ɑߦbR䷉a.6eݘTߢ-571*OEiXTk ]nT,?pɩ [)HfJ<_1?.3UUdC]fdwgAS]fT[R^LM=ű@WS댟r5R}WDC'2}r:z{9b;4ެPC*U!|>_ant(VӮb(NUXm6MQ-HQBg3{?X=JcaRe@&!<s{Ԝd{pOrLC5 մcY2%0Cu>ҭТtv"i-kJMGY$,=ך;G-zLj-r) oUVvVnQAKCeji{E䯅:9ӳzd C#iK[[a&ȿAۙ=g),n {;C;3me[ai!*Y/K*t jULf>0Ԫk~W \@bokWZ٬u(gIvVr,(g n)F9 X1YQc_J*p]f\Q˧LA.^lBZ`>>L,,;.pp9 ,q‡a`*\]b^PHvmGмV+2dqۉ#cW] Bv -6eomB/}CnQd9Rg.[衰ޮY o%%#9mrE%iC[">ϋ7aiŧVlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Fantasy/0035-ImpossibleDream3.xiz0000644000000000000000000000532611172205155024321 0ustar 00000000000000]s8_6`r@:{8X$n&mmI+zf%˫O9{~#.fnd %^poh+^@AD8-QH-iYcSuIl>fO&;.މ0oV`i}S"Hm;/~_xNP`=8ctmfmB_xlTeg@,"Y"Hh4\֧Z#O0 vM&1g,X&q֑,Μ.r.=) "NeJܲD`SE 68J]b ϵ(0]s\6>at-j 2X)C{|ώ31I#v3 a,`-6CY.&'l3g!fC3pFؔY"^?τ¦uֲI &D8n6mh.: B3PRk𚎿B' GÚYxe歾.<7"nȚ |V@s!pvlP_BӒď e@Be `U i4OwI@aiu-hm|Q肄:=`q7&o|[/CHC $ggI[.?(0?g-J$XϾ0aھܚ2Fm^[ӕ} #:WSԪQ5"rh͟zFo`њfqo|`{w!$Kgfm1%"hW$l"o+72ߕ0wí2;]'Hn:mKC"$l _e)*ܴ1HI L7 ~K 0RPDyÚ keZL-dEœ9icޙ qw\:P憃o#T00R~?N0`Qq$q6 N 3*H5 7*"-ZAFHi~dH1Y)"^Rn4!+~Ѡ7G1{sl x(a2 4t>8uS?uST؈v̧ҹm-1o5ߊBE@N$RWFNضXU 3Q+x:CP:D=h#ȿ8)F,a=1f j  Q qU`Mԭ(:ġхΕ :t 'To:.uxe-?M"e˩R$cUJ|E#~}/~цcJx Ǹ/ze튘ZVS($/Ъ"&qMb*bN@1 #fg!:>>J}b@a^.乁BxP+ (F rA 't+}^;NXz\z 5!(Ran,כi0ћ;ans3N E"CJ07ҧ_˂}{$#łxu/=➻_ߢ*]VWFՅ)ܿ<5Z-P9qlNfgVBgu UQhfjjy( x&6] },Q$\){*>hi.>C8Gnc=a)QBS+{[aː+L}dM>~Bqy7Io )g_4 )ƥt)6ZbQ3$oEOXk>k-_o/!/ᓫO /v噔V=/F(sB@-Q)"]в| Ƨ/ C9ݐ!?mP+kg$(\+Vw mV@&yEN %p)2f}Nқ~RiHn3!m"\Sso5qoʭSn4,&fNoe?3)0}-4?V}8=45iЬ{0{D#2PGN"7w=YaK%1% -u0^f;0P- K ~R㜏y荸uѽPZʤWWmgP)? @DQP-!&*( )݅M{9+BJB'm ,_tV.5b* YeNH[J$/T6c%RWxL94-9dhlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Fantasy/0036-ImpossibleDream4.xiz0000644000000000000000000000467411172205155024330 0ustar 00000000000000\s8_=`&I 0e.@Hz/l?ߟlKZHyIbjw׫'zm]aZWYUt]ߍ1i}%|;_lp-'EfQ<vf.zՙU6D ^_eʄ,63Τ3z)eYhm&"|/a]ltM>^{.2-w5V#m^,B]>DRSGk r0ĞlsP),h:{Y42HvL\sYR햮u(HO`7N\aSWI (kN6`KHC,R"3z3Ӹ*UBL?8=RU`|Y9 4-orjh-6caJ8$M++v@.^ac+ 0ia*d90GI/ Ա Z"+Ou_OװcUrj8jbI?/vUJKf9?Iv},z]W_;+T:Za8p  =g< 8- S8"&B-״~`1nimh/s[w=!TZ6ĺplqb?Kgfll_#+g=cv :fuh55(r$H}#a"JE!>~tg(xh(HahC=` IQG.Cw#F=W;VLW;jH#̈́4 Nukhyf:C+|0Adz4#720iMz3Qd0C$ɗষw)=ҭ2K#ۛ,?BX2S",-b!sErf)VB JqtK fp+ IIeC*q I T!֖` VzWBd"'jV=Y-iVkjq0= 3*f$AO%ϸS#͞(F10A0RGVdžn|#FvO=@k$0ke@B-ʱ`f-ҷCBrNEE X 4 Mq3Z(eRDKٵ*Dm!kϝp<܄}vn8(e T|1?Ⱥκ*~*`$s+}$sNeSNx§ gpX2l¦%e8:3`h3!$WgL d2 3A8pP  u &^{rz];!F/ 9ixi9O7Iq|#6yVdh)Ő1Ȕ71wo;e.?[S,$+*2&.pr"cA@1 3j):(1Jy q10; aB'&=e,Nh8!wX=o'<&*07vți7[5 .=Fh%S8ϧ_͂"~}}"~-CaD\su&}"~6/QįjZj[vo,5鈴"qgISAOj]1( v 8}T3@Vd:Qy$ Vr'gVyh88=򀳬G>X+ :4TN OUkhl X:=EѩbTqH}/a!lX9f7V*Q0Q )BX0Of$h/r魛.sq9Ont}TVQX1cQ8q/1808qZ鬐qq1:|ufucGٻQHl0W`4$-ȳrݽB|Ez~Jhr?7=twzvY?u\DEaڑuHFȍ"DK `^*| Ig3<|tpZnvʱGߝb>UuUe`x3^2Yyƻx%*gw_cT*zʙ_L % iS]) kj;%"LH r :}7d6樆U @'U }' {bA/H-OQ͈ pY-"ӯ$^]_&F|Dv-K󈴥'Pܟ"SEJ˪,W}`2%\aX'T"J)I%3G` s(=_x8 }௖X8g{/uOYVD+fB$*lKi4zn2)vP'fz{ϣAպ_ZPke:f~}#WK^Gll'%YD8u:5 -YXG"C9A\E3ikڋ܍V.q<1;s}^D̏Ĝ,B2+߷Whqn[/SB!Zf6am Ci:ϵY$. tt_#kW?̣ͦe7+y\5ypI ó;`~Q/JԎBitXtyϑ%"!O_(hF V2{SۗIͦWFY ɤiv` ԢɻQ֕t4f-fcF/S0ynF\8@_0&_Fr_ =q}ZgprbbպM1%" hreVn)4wOK;vðoå{|p) ; dc*؛b_˔Ymk_AE *;QVZfY9I6\&L1#F- D*uŕӞ e+7{8QT@H;ZY(6l/GbQFN+PbTKڢ|+Ui0qSi BBLl^F.Z +URDKq٭5m)[sppC@A9Bͷ)1|bY69J̛joDW!zڄ d% G&|YH,%ЙI<c'}b`O|#EefnBoO-yvtL̊@FMpcrB:@eܘÕ op*w}遤ظ@ېL^.Z:ZU(o{K4?%S^;X!e1Bc WÔ4JIrpvjͽLz*>Qk̋'Zݦ Co'T&e,%N8u<О׏ sS°J̍ws< w֬[07cC$@Ӆq(a~%4krYPگz]گ=w$[=3Kw_;0]_~-Uo4. X15辰ƀoh`aoi!TPlPMrm %[bT `#*VL#!tO>`/Rv.ϑ9ނ<+%|VgY:>î@-ǁ0ڼiVR~94(z@ǩP(->LWt ;BlL #oCO5b-tvO 9c%meU"vOTj#ݘ\rHˠ Xksd<,!}=9j uwxok|J:4f(}uσkON:"mceAtY7ZTI$Y`I5"I /:AAi]Ysu\jP^W,غ.qV$9O^ܣ9;\mDVS7czFԷ빝v($zn7fѼ.qA[BR`>ZSDkwM$AMlAOB!C^IWR %ܖPƴ.KumUgc0|fڋ&Gk*X] m3()5cv4ʌɁ+LsId𒮅UֺfԜd%A! %A2ͦ ^HBIH߲Rx!UA,_K92.md) \}RkP8W%4-`@G l/Ņy&iӀ-ײViۭ9!j+8Ibh.;[둞/$)ei<9aUōelmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Fantasy/0040-Delayed Echo.xiz0000644000000000000000000000451711172205155023362 0ustar 00000000000000\[s8~s IaL "K"H264iݗ:7H׫'zm]Uglmô*iÇ?׻ɿcϩK(wֿ.ZOL+zB Fdؙ #?GwуmN,}*w% ۖOҐ{V@3ҋ}otUu,jm]#@#vĉ~¡2燆%st.9|:3K73}_= G}/,}MMkv\ko2*ܼ?%eZ?)7ry\c!a̓:RB,䑩-!_z|dxtpѤ,Ҝ$UD&o\܆l<LgA:&xH*X &9;xp+\0gGENŞm\ZD%~M !YwQmJ#"LBsa\Y""~8'dTjPsQB7 nZH9 +eQx'atI 5!B$R'VoX=Vjyr0[yŒ?a-uI$RVyl`L(J10A0GWʆn|#F{5aAPaJa#Y~cJ?0e)*-ͅ` Oj2a4@Y(/jjϖ姜 a;x4 Qfe"i&B8}O5;JF6a LcUQ} K!ը!6%&d9B4G+?|\!LhVwN|~8ESuLAYnk02X h ldFVCOe%PUZ݅xm9]OۻݖZ@ӕ4So=Ff-odO`8vfc:&H gq;/ ϔ +^^PTـ^,ȼ(TEb(q8+qEݢL$ո["T%f@ KMDQ&V>՛@./{8D jaDO*=ڔM:ؑl@蝷Г=DhgpE[۶EmInėf[J3ԸLoIGHkgp))WH`ܫڅV1&&5IӰpܒG$ l)Ľfz֣d*ōdI[rXX]aRvU& ѻ*[oH5-MrVِ I ~gG^(6-2bH#~m\̾ݒaL?.ᣈZfٔk=1Iɰ3GF:#_:]gK%lʣOU*Sڲ8δ:ΰ7MZFk0}:1#bHntAl#81qG9[Axs u (KlTuKM~D^SH2M5`]4Mgao4 ASekt |fX?P@Rs]N}n}I:X݇E__FZ[ ,ɠJB+97<3R7Na B^ʶ̙Iwr&U L Z醖#}ZJ`EӯgxllofD|VqMjm1'榻EtOll<2_"/Le̱9t}V˝3V?Q4E9ubXk=ږg b퍾nw=h6Jgo m,(B$縺Ib( Z,,{ dbǬL@S=s!"`62Xb?L_/KOu ?CRmjzZRM|Eݮj}q ձ͒Wdԫᚩ]}Ysh}^i_qi1{r (bNBnџn&v=L-v0R7 `y嗭 p8 7Tf",FP|Ti´6BBMtC߸&h-P2) Kڵ*c)GHd8 n|?nH(E}? Sb^ :4xTtS b2jȬMpE0YEŷ?IZ3RC2 A8ڄp똜>*aFe@^oQh/WɌxKaRngqtFA݋@tNtZ-ﶼ /z;L S h~#{q3),@2i|Q|(@NWH^BZrd)Fp*Ӥ>w GH(z@[Tكd2ւU=a(jpZŲwe︰U_aA͍I=S:Z۱ CEzіWd%OK/]]&ԔȍrlKTq>s~^;-i"}ժ½_/ۜ 49*C%Ŗ48Kw@vY;n>8RmP&xo2;+DuHҢ,`qβv,a91|s>yL=V'ǹ}2taf ӹv:?N=^#?(=d"v$tCKG&jNׇb% :z?|[ GjgU9. zq R"bX-+p%VV%|((P}n7ؐƶS>cn-7 W2Fx2[KыfkX8MΕMx٦v-ZeVlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Fantasy/0042-Rhodes Space1.xiz0000644000000000000000000000562011172205155023473 0ustar 00000000000000]s8",#&%PK]Y [7rl6glI-Yk4hrSw#B.jNk'س}.jwn>}rvp'8ߟ+~?J2kz2l4N7h2&mijvۿ h!vxk%>V'uy?O7`:Ov0qHFȍ:D `^d>d ‹'5 S "Vzj!wm¨itʤx6 sd⭨}.}'e/uJ)m׬m32(8 N{ʷxd_x|T]k6= WDIrdgFu.jpqĞu] $m$LV!H H}RbA/H.uNCDpP x_ D+jڿ2_KuRn,#ҖCz+v'D^=);=ֳe:cH"WXY3sS)Se.qJ% ־(<_{8 Co7A_@EV6kfb. CbpF4!;Z=;DIYBar=L2=gD(GҐW=4Ss8ѓ-Wgpnp]t$;_㿝7{fXGlC8f)n"ԫ4暋 zr`! ^Wiy [.LS Hp:n0q88z\T۷#@yCMgK([_S~(X:O%seS37T Qu_#kwKO~oAiUzG$}x#a%}(V JhCG$-.x un{ze[\9Z.J>M9vM # 95y Uag^2i?sQ/۟TL6[l2/5 'Idt9(1~e_=Y"Fm,v),ˇ̆"Qx뽡%XrGÝdv9ǚkߓx-H,WDmcχ @r9n|p @(^R~.x)FދnIT$YƼ#d= p܍{Бݺp7obXn*[ FւWձWW.&!zRTiijXcU`!@`vΕ<t)و7d\'E:f)86*q薯nb Пw}C܃q bn^ Oi]KJ Օ-}5o9Qie4S>}J'>su(~ua1JƘA*Q^#6dn!eY] ݪ{iݙ{ݙ0,ˬ}J(4~%h>|"-IKׅr}=8VvZw*u_JP:j'[GEJTR1Z \0.pᰫ<)f\7ȭ]9sXl^[b30#!GxjH飭xx&C(p8M~o F_mH?RD ϗ20SSGTAaE6j=H}KVQRA n3 $Ѩpac/$lgmLN fsQEfFpaq ID oZ@1Ⱥb?.f0P,Қzgyi$V/w$|nlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Fantasy/0043-Rhodes Space2.xiz0000644000000000000000000000563511172205155023503 0ustar 00000000000000]_s8O}Hlq R@ͽ,wlܧ?ɖԒ@f-Ynuns:yAEvEn6ܩӧ/_ξOgcGO_G|~@fO\~B G7G䯍{_x_n{W-6o'ꄸ.goGI?Ot66֮"Q3Y绉dnCr0 kEQSH XdJD uGO75P=0*a2i8&w7ь2zƻx+j_'KtcqKR@R{-59J >{[XJaR>*ޯ5Yߟ-(9de23s:X:l"l3YNY,| Iϻ[hqX].sB! Zf6/ C).9t+H\Nόo(꾢Gz,0ZVgΠƴ}?dr=Ckdd>Qrv JhAG$M.x" u$|cJD&%HԬzohA6vkpG7^~0;$@ U&:!Qh(uI ]"EKxXܰf: O{2a2au?G¥-A D[΄ 2Fq"ë&* }eC  a"0*[9qa8'T<,¥Ui B>BMlD.d-*)Vz+'Px41fwc BT'šzb<33O"JEn%<௘ ri@\"r NP/s d |RMhΆ hC<)8 /wIP,o:7ڋ53&X/wf Ժ+#rka>D3ջznND 4ӓo3?@@+_]fc:&\\f;0v3UrD*… RlHNҔ#7uTaygK".J0=u @rCyLÇ?Ru Uaz4T51&D$L ǫ#GOM1M ȗ"\ dLûs%$:JW@.Ef@Q _&X^zx Yyݕ-e&_":GI4s`]TN:k*|GGU5ɠra!X +zV [*4Iޟ zf`O^ V3=?tlMVueGHbU|J}&妯ywx%U+no$ ܚӤCƒYIIW~:ɏ1$&E/7:F'Vzζ(KӧнH{^#z_/ !IES#K:Be1l5v2&ȓ XʶEIKz\CbR:Z2??'ͲdZXt 3H-J-ɢKR)x}ķRJE"$$ۈc_^-`/-,>{ : @ۜhҔY]UrXKEJ;KJсc}cazGW.Jfn!ovN4tu$ŭdC9WS"C9vJM kܨ[4M?z!7 P#NG/C=cד҂Vvue{a tx.TޅJںPiŧzN6e/8|=(F)͕saGbT7CX}5UXBs ljhHjhKۙn~ e6x~=:!B i=h? 3±wԄ!%v¹uN%UɯE?!ko@SQj&Oj\ܾFb3+6sb3'y ͑6YN6HgQr<%>ZCxh=_!m`0_{yWIh#6GٍNKdi Ϥ KL5@ 4iǁ2qÖ@8iX%(Vxu>6j=H}ZQRA n3 ,Ѱ/$lgmLFFINa=NQmPܝ{SBS}B\BCR^hX\BBcQ2-`f]@3(hiMֳWQGiczP olmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Fantasy/0065-Long SpaceChoir1.xiz0000644000000000000000000000661411172205155024144 0ustar 00000000000000]r8}WxHYTd5mlgk/,ZcHVx~"( q-[3U41KAz>c6{Y&:{Q2N'q?{oN^O&ySUY[Z8)3A2,>_8ܻS&{r/]^\ߝ]]_pܧt/ gs?,HCt)_l@ Ա?7mYhf$Sk~ ΣỴE'YX΢$Ǩ9L=Ng0Z yj^hUlNlŦ^,IW-kF{~ UI2UlU^,ْRw?E$S<:& ޙ% Kf ~1okm"JߐG}d= ]׺L 6jj㛋˳|T}EA kuV%RlP[yXDYi~fiϧqpk?,a.u|Pֵڅj)I$2:G݊hJQ,7׺^ϗyZtH4p`[6\ݞ.fiYxX&bAXeR޵*%^Tֽ PWט3ft;̐k`d3G zk.]~| { PO,Vs?S{ux f.rh@U}.u@6q:ŚN~[f9]MleE jRaMlXO1~Nzݨ Ee<<fT0٢l iY- ZQ9*U8տW^)\-[5U}isPYƛZ;M3mROL)d -xDY&٣"ͅE u/,Md,}nF.jxz[Ld9HW #7F6F7Fmln J YmN#Yjn+mN$os&IruOS%dbP&JmXA5a&lbPrpwAٜ-s0(` cF̝2(`6 IV@'|e ŰQ (%lX@*sΠC*auNl=}䢓yG=«>rҙN|>rxWGQ'=B:GWbzt|u#N^s.Y x'rS)N1@T# N<p!9RSGCbsWCbsWCbsdLnC4DVx<tx|CduŶvCfQ02=Í!{5h1:dXv^ь@u (RLlO{fKuQSAaw%BKdM )0-A1#clxo#F%(6󳽺 6b ř|̈a(O[F~ކa([+%;2CQEaFCỊ:6LlQ_K[Q_bΤe0 08;axJ?[#?3=1?(1 ':n>1 icX}9ڢe0"0_h1 QK{/с-¢?[n|g> cݹgG> ;}t^n V(/&2ؔD~ F%L9"``؝"_I0PO:Eb2fto|zF{Im'cA~ư{IQ Qt-("|>"43Qà>53#CLS>;Q@_/FV*m֑ =wd`Χ lVpʦV8t__e10]{N['=[SDniy 0˴%P jh(ךKB,C]$y~mgP/u捕3u*kTYV/`᳻/yҩҏN$9'i:@%.Mw.9HIc%ߌd9;X#$tUHc ,DjF_]x%O|?ELYNbXkM!i4$XD̘`1SL$gRȀq0'D]_e9zcZܙ|ϱy2>ok?7GܴZ?^SLVIjy:?P̒{Ρ%j^Ak: ]!IF#,,X"rft1 7zژDND4%'RP|2^Pˠwz3+CCX^W+]$Z(S?ebX:O.o9NÅD 6VcYդDzkCb[6CRԚZlqQ'}5;04# #nEZ5?Ċzr_ϊ~ۚ[{!Y$%ˆ@)UGz\nTbbM0 QXfv!tщdf9V _ *ڨ彣S?U+'Wس{Eg^QMjՍց#c"6ӮRȊq%(Z媽* k:}Um5W\v_s}C7f zvp}~&Z&n]G"a.ˏ:bw'|dtlXJ-r܊pFY'k/Y&z֚u.֬ZWmk:j9E:d<.éqmTk4YNY3Ҡ3ڻn)ZPz֚u~uJ-B'k:2;Y]iZ6m7vö2Sʂ3l_ Melmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Fantasy/0066-Long SpaceChoir2.xiz0000644000000000000000000000353111172205155024141 0ustar 00000000000000Zr6}WzOd7ivFHr "! I$D.E)X,vϞ]5 I48:$O]◛=k}/G1WP]?vH#$u1<qv@x2t%a#rٹdQau U:~8޹ w6/qE mrF %$EA4Hge ZOZIJ$)}47?c/]LU9T54;wр`ˀ"[ {zMw-t2ܝ gf$Hyk[e(}\+f!CUnWP5½; QPM 22(g n FFR;אGJ1uAud/wL`o4,~3VYP#%XCı%ٺVpvU Pot2Fh|*[ ju[ Y0eI`Bds I9Ch*uB>pZ{XVd G`}"ؾk {@YgiJOĺ&`9j+DИ5W:Y0_oq8Pv@* kP%U]lIJ,Q v ':>}4v\j`T>_U5gF u6T]"(3 ~&([ z\,U1WAGQ.Rb=6\hIV4%Ⱥ!YNQS)Xs)pv!Q!"R ":UuM^m,Zi&fe8a &1s3EQUah\xhow9u, ld fVS^[1̝O'5OGnqkA $ʯZ jA=7ߺvxTJCV-7h(BS&t)Jju|CV}00xxiQzlm[N6"Db!69՝#%ME~9hɷ_}m &; w}MrE0#O4m&U5jr_EA2ny_~6@;Bgi/%Qʮh^/[VA\VzB3R'RtSߒ*Fn,Sj>MuZ3jժ`Ȋ,x7e[Eh6#ͨ']Yn'[\j][4?/7 ̛F6ycV4g~%Z6(}g[ZUubd UQķA:Ki{ h u'lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Guitar/0001-Dist Guitar 1.xiz0000644000000000000000000000420711172205155023233 0ustar 00000000000000\s8~_=%$.)s tQlnAldd[J6mݗfw]}Zk}i>;x$~zb}<j{K'QÇ?WwW8CC9;oϴV+lXn[n>zsrQk]+N2 gKvz*Cl 5hݶG+إ0HY'kEw7DnHZ40T DcbKw86܀$~,I hu8vnGϵxT(v=2|lˉe0^Sϯ\fn{Ȗ"!$zj<_hbT䱹Ks*HՌ\T"x%⇙3qdX$%eYKwv ~jMP;N9vPkoY 1Yx]nn|f,qM-8qHf+=%-XR{L+sЕu)avK1; 1_<hQ`&IZ8 A]eaek22NƞodFp ̥ L; B\˿C__aD[{wPYׁix[qӏ}, H<,/(H üh1}z6!_ oH 2p KF?Λ@1sGCFC &ЋΠ}w5u8$\RS a? ZjjpX1}M)˔P"w Jr3}f- Yqq84a2@2;@W3Bӽa[ >ҳ L#P 6anV ˂0k^2L H1 }l^5'2>bl}'}"ImF՚?{z|VV(Jh&A{zW&,I߽j3nŏdO> 2̈́r5 N0XlT7Vȟ)!*ڸҰVco]ɿc*~/P X:\DEct]d-Ж(ۭ$#[Gv[~{WK*V0fjeߨ9K$njN\A41q)ʃ a좩RfXNp[VBQȰGviE]7XQh "4p2Wj`h4B=*hdd{Q4pvhl TvekVkJ"_P$qz3"%3M 7q>{ͥ%3%3OΌ5*[cǾ01^ XWqIPSxI*B_S~=Z?76$%}][lKvK Xn.P]se]w[W^I`_n}RgnI`%Z>Q8hyф <`fev㼓 o`N) Л_imizgG,hGW~#Kr7㜍$oU?؂{g>y[.<zkhc;ZJnync"-i.bO Q1g/5mn vErah\Z/nd_ .;(:]--\H0(anZR󦜷q%L>ԡY^lx8m8VfN; a < a`s$[8,h-V57x}J!s{fԬ 5g.Tp;jMmmtc7&Y) . Avƙ&d3]at6a4 AlaֺqBVJ'ԙ<^'fՇtד/wݓ7N۲_W.zĞN=]8^s:n eqqܵG;Gb>K,m&(SFٖHХOV#zI@?0ٌN %DTS k rӲ"=F˲dtLbe?e|,P'dj\# Lj땮~P@lV4rxd~R6*ҵHdI(Q$HLm]*q"&1!n@XD,ׁl˜ F7HDߍ92: \tcˑyC6t``<,tڷw7}';xX:t6F.ܩll) $ڙ :+!; 5!A/)zVb}Fߗ_X 7o'r`bf eB!@#'9"0G^G|Io#" =vP;9$HšBќa5k X@ރ z?0#7v01h=VU0AHu۲~z=껎LWHq]dEe GD, @ P^Yt,"~جL_­Lj05\uF8@ҋ|ԣ cìU+P6vay67)*k@8MXR$ VK>Ɏ}7(禐G$S*N(WpbD&.@!@r?x ұaϴBBRL̛$RR061Z)iU=S8"Ғl31-s`0[,eRtg7+n٨D0=a/ 4& \,'WwN wPN(q∉rP,W`Er2`Im*40I"2䑝Vg 7ɮgvBChvRgi ,YE!(J%zq`nUi4v ªټྙ3h.ނ޳54 sLMjdGZXQ c@d|9S?sltoiu{fJ|6^ sCx=G4^U A^Ob!kÉKP/p[D܃ >1KTV13d={O&|,_3:Olmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Guitar/0003-Dist Guitar 3.xiz0000644000000000000000000000452311172205155023240 0ustar 00000000000000\YSH~ϯ`N|]Ժl6;L k Jl+cfzFcI@6z kiujyH=vv@kYvvyة}:bfpϳӳC Q2z0j= Guo6k#wu,Ɔ#ɻ`'/#xMgIӻn.RlkqvGtvL`>Oi#٬7s{b/_CPA\G,.F-_&-Q=OqI}SglFs]ZrڣfrVe6 d]EJ~5#xp"Z3]p 60q YtiV 050O1Y\NF_Elct])AFyM$")-c;*`REt/9hcߐ -3K$;iJŲyj6doJb0#&&T0`)3|rx׌,>`37&Q!s3(Cpb``}39}hX"`=a,}G}"QmF҄$ F:W kv5Qk<B4`·h&`:F&0g<^ _~cQuLgHg} m%$. qDeh K6K7o5ZDwkӗ+L5Ebx% use!na*l\H )JC8M\R$ұ5ʱ5S&>Ss샑XHYHYw x*Yi>^QH(d(Q/_CJ6WHbWy\YZXۦq3Tk;e"M`/XCEDZ=qH2ׁ ؂e)ȿ(e(z<^9 }aB5IAe'#֝Cӄ;'Qwg"':qDD\(aQGNp0ef$ a$ ;e ydVs r F녝pTMNIӨ/ ,W*0E@ޝ4 X`@} 4NoY/[c}BҫI&52֣W-S!cX0p㷃8V61h4Nz=gnh7|mHŻ ܎+$v++w'Į:_*[6vU?.l=^mkU4BJԈJ9!9VFV`4ꝥ Н쪇Ȥj )U Ea /z`ZmX.,)=++s-^' ar%oCe%Au+OF5/>~I z]ڭ)w{{2-hF83~o$Ku̇RVɆX<[SÆO<[7}UΖ؇bsqˬ-h NS*7QvZjJe5Wx-ZM[M\x6$8*$QclQz:ut|skFN/ ujؒY%t;Mz52j\zS04lBF{:@&s:CPX/ 5|m74u7J.tri'Ȭ|%ͺnlg<[% _)F~wu n=SAߓZ>d Olmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Guitar/0004-Dist Guitar 4.xiz0000644000000000000000000000455711172205155023251 0ustar 00000000000000\s8_=Lr@:{8X[9ۤ?ٖ6s_ښJ/vŧ {:crk0ퟶ+>|ft=z;{t-k}ujy>oGVۡOȰ?uѐoczuW'Ɨs%"Ֆ`َx5v(1xTL@Xb/ jhyCAnZؓk0*e]4Nㇻp)EL4.Dj_TOK׫\>sס}=mp"S~EplTk,=,23L{w'uYV `|\q# 'd d#lvwrnρ}X(p9LF;1 |N?Ks a7%Nv0}Iu'wE\+w zc:6F ܙٺS[@63["/,e)Y`sjRd`tFRWx^lv{<ӱܵ}-ww:ޟ0W|-;0+o5f979u ;Q`!:aX\`FȋG.p0٥V$P&2Va4"ڊxn>Hv=cXiե,euG9eOTŒӋŁN:\4 P`@u3h.ނ^jh K&X^DNyΑXš1|Qĭ:`,7DGP%|e-M ~&Swj4g4kk](mVzfҦNI~A %|m eaW]/+W-k% 6sW ꯍw` _ښP" jD^`Fw&!L(`RvmM?tg5=Hmv=MڮװЮuD~eX8p'g|KAb,9nd8-Ѧw0ba }uWl!\M3,h i9oPCp&+A%RY +bV5^& j>Ű3zyI=ںqskPS :5Y%t;j*]T и%~۞=0}suF|'p=}ˇ7otXٟ]r[Ûwזٗ7r#ď|tba'ZnrA;u;%q@xЯ~jSڶ?ӻ7luu/h(;LJw{#]2mj*Z}Z LZ@H|Ν|:->ն`lNj]z$SyDT^E .gt'MLv;ROpnYO3쁑q |A!`(Baues-]/ognBBz/J'.HI$4pȍH֓M:E! s}|Bw= uL+4֥:Et)־Kwp^+SQՒI:$T7@S q,޶xzqbl5$%[l}5~LJ"# bI Z~8[\|*._ri 4'aD 2;IL}bpε k~>.S0JncUmc%lFɊe| .Ѝwf85v_ͯiQdpG C-Lg<a3T<4t?nN҃S: 8g0u<@b {jv*Pn7۹FVPØ,%Ԍt`TPsıg; 0$]ƥ5xf> Y:`$Ŭrl ŏ^^zHǾc"O(O@|$1C'ǰqFD;+Њ4fn3d{iUp %yZBXshCC4oU&*TiMPBPMJ5HIsYjPDfzy>6KCJhJh+Td*]p#`Ji]PȲTn2M 4ݿhîXQa4Ҹ0MG1!ȩDXZKnѣ1$9dҢF4. LxIe֥"꒻l_b~Kc)PmR,"hf"!@&/ d2*z ) CiJjOQRKs9E;}?&8CӾi)݁I3x)f41y|L1@ FpC.jL!V~EV_^] X`sזooҖoo&ނ rTɶ{zWu?5Mcv%QY;pPol0{،i춽Wp7 2㎰*+3cf pOc̲mQ/6V|7iYs5Au6|oĺ=Xsl{><&-FѷӢ6paX8l^,- ,f1GKb礋5ʅtCHo]0HbbK"Ї gmg]Ay]k}?-rRoDoP'-Z?ʏ`mړxc3Ou}c&?lJzZm`ifۓ,pI,Ѧ uVtToip"}M_5w[lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Guitar/0033-Trash Guitar 1.xiz0000644000000000000000000000454711172205155023425 0ustar 00000000000000\s8_=L;ҹދF"MmI+Y؄\1_z峏ϫs?T qg*ӫnwg\^L? N޺}۞l:qߝG k?qIBڟ ]ܿL }WCeʱDjW W'DNHVZ9nqC`1d&L@Y?Rzx yCCm;غ=yΌ2UUHd:[ eIr>q8mTY@Z _9}"QWS]T5xI|aT>*RʳHJ@"`5a,cǴc"1FфJF9U jD5YHk<3b30]&B:d0IOËA|٘3uݙ6%yOBI}T;&1#̲0%͙[aƁ]Ps,bN.+h4@sF4Wm)edRZ,+Yi +)4~ذF:${V.*V ?,TJP$&R*WN{fl06\8a \`٨/a^)$MXTRoW%n[Spi$$u`5e1ȴhMסC-#c J)iUЌlt7ETOߝ0VT "QnF5a9׳9Um\YG;&QwoV9-2i"/P.cTu72 aRqsRy\E`D@K+L+R Ih. Lj__Sg Q~TPJ'$(XX"Qka]q᧭ - Tw>I-8UPz.bIՈ+JhXD:o+Yg!+ ? YWލ¡i@vZu?|m,𵮔4K akkS-+l_.+| _n _v|jV `)9lY^&m/6;o K{J["ز7AIք6H]ٕ^e]VvUMXwz/kZ ]:*)nHiJ mǛ ݀ R/9{1aa /6;hXM/M9#H Id4"٣/sjλ}ak3N6m0yx9O*z"fYLEL"\sS/9AMy^,ƙxTg5fdz^hW9b =A44+F$%PR;:J-c~MD1<7,^xh״iM`a 5V1֎K D94aI$cKN`TUd'3o7VڟFw&Fa6zMBF[C?R> Vj^ Z)v?"9^,;Rgfݠw홴@L{M} ";3?3X5,{xӱl!hz cQr">Z/xH6HIqkK7ڨt9x s6^獼|/"a=%NT[\FubՃ~> ZF%NC Ʊð*dk̡y\hB)_r%[ PS*=Fـj߂XA PU_ I~#96.E7 dfGP0 EJ$CG.#c( WdlpӎjĴbIBTT(iW9&D#NijϐtpFTfTAk<܎ E$C>/fc~`=~}f,"9B~8s? !QƔ0ah K4Ky )vmteR#vr16,\ُf@@4'o\:}ږQv`M$%xmE7 ~M\5=)Ȇ5cdEB\EBO [(%HdK=5Jc6YQȰ0RN0\l\/a)$MXTT#oWQ%n[3 3i$$spe>h!!Ml^G.t-P2)%V.@1V\U? /~n:?_ e%TuS0);ȹ,WqgFݽePX`ꤩ@R\`fz01s-;.`F Ҋq> H=wSAPY-+5y4L!Ώ rSkz6hAV~`@u3lF.ނuZ76s /LMjhlF\QBcuݸz8ėᣄ|ʵŸ8.{B3+[xI.*w`sMŚ>uJVv]tunh̘|-AQ-#"'$7yT Df32fhh&,RI+-=u!Ƕ$9S·XWU!;ʠ-SDz4Q=?W$됒V.Oe$@7+Jyd~Z>*ҳH`M6UL['#ǾD ?,cP!GL`\= f+93[&06 =|cQyFems}ƟKgIӹO3=[P/K5mRkK Πg=7u [DJ:YQ1,P.tu1)geYl_z3E>vmo @^;ck>uow]hg>!Z!ZyNI"HubMi·4T4R"Rf?%6ɂk>1 %l쩞{0Gfc?DŦ3i5W`xZ8ZcF #{}6Y`,sCC\E,(BQsIvi6t @͔̓ʗphXаtΟe,sS[ aC}ŏί,jgMx_P 7o=#Q'&C1>Kge?G[< :bBOf"wXM AP&OP;(Q4!!ۏjiƚ'`&?;Fp\i . $qȧal@OܺOT{%yLߏBIf]T[&1#̲2+n=1  nRSCͱ0_o$h.?{lJ:CITQ_aM&Ka4MeYvPWab:D{샓XLhXLhX7DP0RAH\9Q1+*nJdjGA++rBX4aEPѥ煕,|yƔj}#_RW LLfJx:2a<@YrgjPj[Nt;%oO/b'-%͡Մd]f]>s:Kjuw&A$'HA$i".*cTWmpeKKajIm*2(I"2䑝Vg=0]Ϝ Ҝ“xFQG9eR鄙\/r'uxaҥ`ef[HL=C$pCˏPx.$WѫV-t~rd@K8w=XW^ġ),k8Ekւ׃vy /jlaK_q _n _auugKZuu|UjKAjuO[/k=G%ο 祥 %-lYGe ؆2G!XIJz;j[-_~f&[T[3 +"9@OZ1rȾ׿$Eu6oL߄Zp}{vZaMcՙ7$SFR>bz,5-91|s>yL=V'ǹjibfgZzH{_FA^M*]!oiaD҅A*vImIMncLo';3<,CW#z`Q?!2 b26g4̠䲭ߟA}-< kI?c?S4}mƙȴN@,&w0QPlg>GƇ>g;q;6>^v9Ͼܘi϶b ^3 ~šɕ=qE|y ?8h`xrݛ #k}ty}]r޸]k.P=/#vz&mCMMtӛ͙9&R>.~Dc;] 09!rBhE| #а|TDsb O8<$~LPS# 9Dcc>ՄuSUp4Mn,5æ\$]lEIY3E-ύ5H\zEr-roˤDcI^gÑlfD,"3}>o #cj%0qPe5pQ:nj\7ksP{he4ȁEO)vz7Weat>xKaS4+L)󶜠 ҳpԃRUDb">\*9! Q!!8B OZG ڞKI{ߋVYbgj|c.; =h9q\f*8& iX6D?{ElSn_@,Jت3+ "_>yֺov&L=b,=nC&Meū8OpV2KC \qj!FCdM!.vWK't9]`x(dˤGCU"* !!Rхby=۲QXB:K ƥ|.?@1u!n]$-;KӃY:s%AkY~J~hwЎj~hAq  W) 5Inq'J!t)p /5-2*82B[ߊ{hh3LI@6IY1 zN~&uIȠeS5%A#5t|Vb#7 09iMx5,3%<ͭҖYũ$(H'y X va$s) sBĘal 9KVS+e   ZcK2x^I H^߱zY KD*!,dZXbYр9q2*lXkaG#V'%7a)K K Xj6(*TCnYZ/4D%S͂&A@kAle=rGĢ++|OyqS1 KKpR X*ۿF7+*[at7x~s^9rWz*/bw\-* }7۸#%Ɲ㼍ot ڎs8sOCb70^. Cx@4~>٧jK ``gvv"?9IstKѐoGO|EdH:q㍯[čWUƿԏ1 Ilmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Misc/0001-Memories.xiz0000644000000000000000000000443111172205155022212 0ustar 00000000000000\[s8~sI`&I 0l,v_4-Ȭ/i+#ےdc;myjcs,'O v=!7E c8럷*n?|;}y%˚O?-7o?\Gq b Fdؙ #tѓΈ7N[\)q*UJ[YL{3 {dʄEr+Zۖ#K;A27G``m=ʃbPꖞ:B^א4şDWU% Fq͢Š)ӕtDv =, {UF)_:n6Y$ |/>ʹZQN`H]C,2"Y2z3ۺ\ `b>;RZըKP|Ք lK+`&r#56N_F:+v:Ç챛/Ί:XwrcB-!NWN)@7̗&2؀|[V*˟sQ!ҹ,Mw{\XΚ`CϮlę1&s~Svb|EL^ƱCόC,TqHo$ P!ZqB.^a+[ M0M T<]g!DDAP]e:D|{ y;ftfJ쉎]Y?Vf,J}eݮ">Ʈ6Kqa^- |)5כ48C@KYxef>$PBHE7VqX7ц2wLB`ee3I|v~XW}"q9ofz6_ao6 (ߛס-)~#aGj_DR07}PplрO$u.D"5XFD&3{v&dvВF)g-qMm# 5ysaeN >EKg$F.&Io:uFwq$|z;̦L ]9$sm՗G7y /dG6fDTXZ - {EfWC FݘRrOÕcYt<{͵]?~-h/WDmI&N2 gBlaJ$JNV+VOؔ)E^)'u-t)+XΗS0E)3FF{:et=Vv*`K w`N|9 O{4L% VwT6| 1¼9٫\8m+`|vREponMW%9O9lL" ,^]T.+yrt8$1=U m1bl1E̹"^Lrv,6fvtABxnH)xho0ƒ^߻8# k,1<4'Lz;8Մ3&n'ZĈ-1s "l+О/6>X^.(@qR_2|/閽VRgyͯ>Rߣg>%I&_>%(FI}6JF~}Vu!rP,p4aoM+گe=B%Z`2{WF>~HCvXV=,Ä_xiI Llmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Misc/0002-Bells 1.xiz0000644000000000000000000000336211172205155021617 0ustar 00000000000000Zs8~_3I:41SH\E#lgɤ_kCʦ 3}]jOr/?|֊%"Uyn~?_w܎nOnuI:Χ^\GwVO8r/\dTx5$]4n=4l?Z҄8[1Uw+ֱ\T0^Dhwc؛7ݻSw<ɽ"Dx$E982E,YBX$X,kkϙ%jbY[XG5xAʤ;vtxE5?eH, s6yYUl<ei!--ؔM?ԪJ<jn|3LV_30#',557@JE &_!Z!Dr lz\47-E:rImepq]%[T壶g4__.*'''(] > 1>AIjU pηOlނTZqhYHEoO5(nRKZko7@YKU&5g2ϝw8# gdvqfrVyk"H0H눤r"O[!N=y 78 0&`4V8AsJF#rM̖(K 0 I-ns?.&GwNBQ(C,49[E׀(E+ NYE$fg XOZ̲$ ]ta!~jǾlMU:-W24NgGw8+?`ˀw<ۏ$ u+AnZ\7ţjڼ$D$fEEFj1..]$ʇb1ʩ`>6HհIb<-NݠlI1IEa F_ɦC wsA"%`\)(Bud\aSgʐh<}2XYP$YC_8kc[e\wh%BFzppƓQ*Л rc9eLvg"!ge! Va@aBhj5PRU+:Ar: P8X۶ΰ'i) q]}uS:NEg.!)PEc8\h)Ӳa4<(X$qE{45oaVJWzPE,n+@+b 2uiov*@p}m*VUputWP$EjY&Uʝ"vQDÎ[/6' dݏt=laO pqW'Zox25] Y;U-$32}b&u:(O0Hr^nǺ-"ohsBY`u՝z6T|_*5't4 z/%Oeb4sNdcЏ#|C:sZ+$iب4 p0p{?Sa0{V*Zk-I":pƔ =ƔӉX.[!-j0<=מ4st[8Y 5  ͥaK'HfVYY.0n5(pFc j;iH6 lerD/V$oL[3EQBB"ԫaH1i죇| y/t󕾵r눘&QqM.WxU]UGg2;?B*zpAwi^i4EU3_{ʨ'!e @Y2<3 0I~], (Q=Q-q5$FW R\,Du tz'Th߸5j9:^M#zhDGF][ /6~DETȠCQ0,b܇ENѵș~v\}ܪ w:뿅J/u ַ5dzԓQ8ITEjp%* '/r?RDaCڡzA[ D~-CZ+8f`})-2LeVͥ?<;Wo3>i.,t|gG\^GhG|u4>Ϙ?;xY/ LO:xL(VeWwfT|P<+MeK(y~}oV85Oچ9&nkEb~ik0@6a$lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Misc/0004-Bells 3.xiz0000644000000000000000000000336111172205155021622 0ustar 00000000000000Zs8~_LM̔(˽h-[loHZɄLYV~էذ8i}_7槛Ʒk]w.~p)7'WQC@E1xm'^?9є#81v8x4lLh7p4OxZӘ,o4`I.ن|E҄SxeI-u&`,V8 xGO*OVgHqq$db Ӏ|d–KH;6,Pͺk. um"ρDI]$ G͋jpdH͛U+ Un\ĉ,IF5)EYL~faUY+OɸrYTd8{<͠B 4$O=IrEG/$ٶCu Va"aKx$ḀS `DEte.\Sgd4:XًEH2HւU{U`+K0 od: mz 0WkgfSY_HzKXzX9mSŪS $[U+8jt<bˤڸB6Jq.>cݒ"% EaZ0g{+Q9$cN6D}4|Jm)$<*:xPm'[&egթ0680y%rpO^膑dE0"3tX̡Y'|=<$[rGJYq5 G bFI yJoi0c4PIf*VERmSbϨT[DІ8u{rPexZ$or,c֢#+Jrȱ Si a}WMʼnԔi8gQt[NyȍDpx6w"bebi@! o[~ 2DPzpc~8RC-xTf#. Ď+q{n3mU\[ZY]}jp'2SšB8 #[KK0WD5 %ѶqO &5*ȷ (doA(ɢTcn"TB$fx.lΪ a.l{!K9I72}X;GK^SKܹ}j~ yQ35-nK+u0f|WQ;^m U/tP# E/3/wQ$!0CJrOE_Y2((/$=O@y3_S DSC auOCAt]ωh y HiO`h(jXH'Qe%Ҩ=IDf1VV<EMt2"jռ@od=9W}R<>I~yF^Ϛfa'p=|ּN_?}:rt1vc7YN{.SRoχ߃pm+ή|b$0r`cqE uo: ɯ% ],yӻV8$B.y\$*-Bޛ7]S{<ɘ|||G%#fbȏQ&>qh1fapxa˜D>QSu3=R3-YHd:\Y21\v&瓄Hci+-ezn;1("ާ ^Ϫ"sNJ8R0#h'M Sg2&ûc+"T a1"I,2c?J`}},@ ‱ld./p],b! ʧ]\ Z|Ľq'%ĘX[I]-NjW,=\&ؙ/VY1dIAY$-#-b71"pɒ]W6*X{վزBvOX^ExDIC44Djiv2 B D #^Yx-'ZfDt=-j뒽昽{( .oOƪ-fū(t`QMK sEO"JN=$և09ɦ(5Uc_.8Q|wa5$}sP{/(bFn7pQ`6uEwqFydyaJ#sp+? NSYݢQexd'e"wL{.sPFP{VsYLT,Q[a-sF4xH袂f"e䛻d4 /-(u4N+k KQ`eP r<$BHf&5M9#"t ނ$R^BnmȣEea4\q[HߑHVy$GVJ, [ gc eV8"Qհnat/(Aa>$t^Ku. 2Xi⚥j71iOL4K+5K,!aWȦ z,EŤ:2`ʀ)6uЛs'aʴz L_ǿ/0թ/Fj?a nRIC)AuZw\1m7u^ƹNr7un1gYQod 'ڎs8C56 Bz9G~ɡ}an߷/}EyFuΎS 'ũ?f']UOqmo{k~+SE)=Rlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Misc/0007-SuperSaw 2.xiz0000644000000000000000000000405611172205155022336 0ustar 00000000000000\W8`ywsX3UpKNltRҖ$7i)'%IW~8W=ZBmqyn;lU?^q5|V]ю㌣?,.Wg\ĥIɁX G,.ƕG-Uƿ? G7I8`G7P U EqXCxRUk&W3ΨsӝtGYgu\Ċ`jt!YhI| aq`:LZ84X?d*Q[z yCC'أڄ5a]S'`*aCf&.Db1iJ|tymo1(ՒlD|UEW?&+k9&0#iP&KMHMuΫGe&`+&Xa "LQ`.E اݪuP vSt4f6(o+42|RK'ަL:*59sMvz>%Yۆ ]= W =(\FԞ!/BYzTzaڜҷUnO`3/<zh)+ lw{=&; =/h鹱_f 8& .i`d6qO\)gZD| u%~lð9Alɷc3HW,/ SMg%ܠ?4vŔ{H^-gbO= \r.>@!b$ޗ?ۣ!) N@ `Eo;6FvjCw=BhgY؉Rys7c)ܙE\-D}ŏί,/,''2ΟE?Ѧ5[]y>w/I&qHq4? "Em3TӞ Ӟӟ jU)L<3`1¥`jŊDC\AK3=Ē C/ZsG 7mw"x lj̝j2bLi^Cɘ`/CEVG(I%ޥح:̟hC>uF7A2g+Mnr<?BZ)a:{ $*A CaR\#+9r'?bS7A$?uR$?"fGQ>EZmMr,ٺ(̼`іR.WJÝy@)jYơH VmKNNR IJ5p}a8 J\H΢e~RHIKKK5RGP K5 gRfO M^wK)Ǯ z,j7wlR¡*<b4ٚKqI7_TTS'L0eԶ3fl3yvkm>o;5&1 )hS`* ]?ݣv2}k K>dߋZ.*s?eǹ6~$-\ysּU`n[;8n/ƙTh/CyOdOڄn׽B~J>jbjiZK7eTKHVbqnlY@TKOk[ˢUItZI %}-o‹ַ#uRyi^kU6c4oʧTlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Misc/0008-SuperSaw 3.xiz0000644000000000000000000000376311172205155022344 0ustar 00000000000000\]W8W;XQs93Up{ ʿߔ~$y¢Ni߼Mޯ=?p׋߮[(zo_G9Tk=qG4~ǁk+Ovk8թ^;tƽAo}y~۹ n8EQ@l!UKě qlۉŞ<"ll^4ݘq 2 v'ZckͳF%~_yl@` 9xի^M*vܳaKF6(Mͱqd%3. ԺMḶPd.$K`{@@\i:DaعB]>d^wWhzNui-ROdYNDtA"r)"c8-4r":\ZI@2G0U4I}K {xrN?\B>vmo @-q%}a5)'Dl }B ω2+H!v\v|%C [c[F>0ge渄N T=2W e Uh+e!. :GUkjPz=ROg%?,C88CB}h1#l!Efb3'T9]8x ' ^?s>, )NXgps+C;y_6lF.WҌ6L~@4RIDDC>b\IKzsHU#`7U5"ψ %]/Ky'bR.5RJ^Bp^dNjdN"-`!gF\&r 2OC%c0] SH r@ hB׻1Ub6 R'aA7vE ,eBJv͚y&U+(XWQw`A/%\,]2[(&T2,Rv0XP6f=BC/n i&V4OrLl5:QM?`-$fx:4.f@Kʢ(.ieoB[Vq|[gx3.c?{5)is4ዲ62}PajT'xeJ!j fZ"EC\aD!iR`i8g4]*M*)_ĉҌ"F 퉓 RˁR*GPGr*d+pF,xSm 8qIhMjVJ'8\}$A|o mGHJt@a mTy>V K2|RLzN]jbRc)Mx!#,Ղ;'Kj@.,D楒R@Vj,;TcCK tJUc7RVuHcJ4XJc)>ARGmP4z,EIC\ԱSLqGC>0L ̅ӛ|o [VsjUSُ '[nT&zoaV7bU9*Ӷ\ev;UH4WAi$WQ& h3WLX_v.4^/ KCxD4{&;]q5/ꉐUW)=]ᚋԿ;Uwqﻋ~/]MͥpaC_V?Q:Slmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Misc/0009-SuperSaw 4.xiz0000644000000000000000000000415011172205155022335 0ustar 00000000000000\[S8~Wy ,$B&6߯_$ɎJ9GҹӑO񚸞ЋrLX6}O'ˣ?GW/w7kYω}|yt%N2Ħѓ# <|<ĞG6w8XT?vѐ.zp1KrQ^{Q5{JJVe?뎻io'2<4!MbȣEo錥GnF:e#o}Z t-A&4 %%Y gj;0 H>33*iC'*'qo2vW%\5&PJd<\^X D( x.7J|x͡^lj+d,-a!{\ff=r$=\ n)$].c>`4cKް’D&e`%pbb KQQIEyl)[$;z.U&w&țcІXYRMSc7'jҎv[mX%WV)$]tͬ1̷䷗RGizs{)9EE381W"ajR%EQt)K{C5ӨOh8 ň i C)D]D6ӿTX P ,#*#B!2BK*!3_NtбZRGvE5XQZ(~=DFӬ+PW_)RIi=]Si3Cm-:cnQZEbv~5J:q\ Ҕ4n&=HR WGch^[{-]TUd"}驪~/Llmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Misc/0010-SuperSaw 5.xiz0000644000000000000000000000333111172205155022326 0ustar 00000000000000Zms6_A~G L9 p@:Mh-Bm񋤕LHf3^V>zdˋ6,07?k,C n/Ī 3K?>9Kɧ7ȞȃhWmZۜn\&48p<4"0jU}ҿ_$fLDnY\oqCkfIڿtyxSsp9q9cfqGTa a% Kqf5[hgs8Y6kCez|poy5,0.-Ez@6f־ld]Vu{;4ƊH=߮Y(."D0 SJp@U ͠z&ùu_si Mt`hHO"BŸl)o.b8ns>N@l'-TY.t6=_U,bR>ρ:|U:hw[(] v0LR1# js`S̨뼍L+R?\ֽ &az`]tzSHG!*8L Q]78BRqAHv= RkMld@xv3SJM|?K;,N=ĒUZvQHÔR Ⱦq  t=l0[:8`U={{F]ÆXA[lez{(-r!V-21A[*u'1)6!%*ʮN#I-^ej>KdUvjrBݕYC%K7@C`Ä XL3%Y{PXӠ%_dTTN3W9Hַ µiRm)(qjƣ&;V荆ٖ5˘Fph#D#FS"#6N"z+KQGaYXY 4}9'q/ |cR3fTM9{ jRU-fOYbCji'I3QxI# ~4a^mRPiVa5 Q4*Tm× 6zֲ y"eU]$0Yȿ">L'f(NuIhϏ}4ϝy8(Ḟ$ J-&4BE] t`0'aax?GzKaf0x+&(\0\VZFd 'JԱm&ؿGT RD,o|$sZbkgL(l+u# ʗ%2܅q2 94+l 9}Y5S氐sI{bF-.GwsQ*r L3 AmM!;&` r:ݷYЪoȅMgdm #~o0}DBGf܃(Xx\^1聤pa @zae\J, l-\vAk >z_kck:گjPlTItj6ZXNxPog΁m@3ѿ'N焆;\ò?탹!DIUt38k+2eC8wc,$߷ ƛVF6B+tlmlhZ/YUzڌ\Q71|&tOt;˚W[EM5*`z\=jML*S`amgQZyjZD-!E6\.X1olvBmRvͰr@I@S"9,]YŨNsSXKasd{.%}.NR j1_.lMStY0LjX$h^5,'mQPTqZ:է,Hf88gM|F =A ަ@ƍʍH0+5BEϓJ` En6eWkҔ-Sԗ8/nOӧm5FBQiꦸ=M麾du:SDv6X'&_$fpّȏf<WQM_)fڿ砯WuwU;ܧpW諸dףuWzmѰX}eGˢc>kvo}W.}W뎾v0BokI^{#^[=ޢcĽ4_[Wuyዴ^} [%о/B⻉mzϳy^=oIzl=uҹ:^rFճ{3F)lA{oW7աv轼Wn+ }]@<,'bhinr_1YDhIB(W BV:bmNDB1!ݲKu8bO?!ri^4ߺ1w>tLKz*[%Zl "cNxQoE$ NP0Wq b/@bOv!wjg "B=J1u"e s}F?S5 IӴs{w_g&S0g mrxRl[&L'2&~Fl*85kE'3Ec<۪Cˍ\+:K#Rz"It S> b J=j,4 \3f!!! -?ILQb hا[ jLpB<9H'0s6-0J ,A[)P}[#:H{ 55Z=+t!bdWfݮ\bNNr$ή/a31FLϧTk %vb9㕭@FNưb#ge d HM8Bݡ׽ۿ8<Z0]&# nTk'? [%v,r_&*_cfR6k澑GzV>,cLf~hjFw{7lpG+`&:~PC .Z}G+p6ӈQX<* -^xE.NUGXk!2Em jI!ҴtHҮq#űE fHk4x橅_Aӿ,jP$A-`]˗XOE!ĺ<(&|a".]8bʲ09[4n;% *> =wM"۵?@SMe&mr-2g5ǚn8d5H>p)7hԢf%o";z UWDP4`rcO2w57QR(g"v0Z2F6a1=ZY0Y3C} '[e(hO-,ZTtY4H0Xedi4EQ^ƪݩAFVs~v]% }3l T"TR& j-Und6"]s-uTV:}WTE9IBK6 5yl.V̲D0{$e* d#'gLj##cA$p P }Jr^S rCj9p-aea!acQ֡,%%Q=?T~Ǝtr\rm@ncrpB=@n !5}ə'|mZpkAaP l پ7ng5=/X=_[cU!_r3ĹJWq/hBCS _UC^#&u+֧/vEh]-x`Pph ^zYdsøB"/z\dy2gc2aYNs-L8\&iEҿv,}'jv];@߬.o3]n^# CyP0jq636S%4h'1@ucA& xvࠉeCLęs􄵵!Kx8v/{&|oID!4Ge'6٥xǵMYG5d/w<|`GܿO/֠>+im'fX9nm5g柘l T]Aj\eՃ4}ElS%,Ǐ91/jr "P ÈeS.f`cͬcڅa@ Blmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Misc/0035-Trash Synth 3.xiz0000644000000000000000000000417711172205155022742 0ustar 00000000000000\]s8}!0&0lY h,[,{m2t%L6\]KKK=/H{8O*GNףIUpoëɧ?+q|>}9֊| Τ?8BA8'u-cxdOiP2٪>θ:mw3e\bxir_y cy4NOhR<*^l "*ohX^T(a6[vi>CnǮY)D.5S]5'``KfK=QD8SGj&E2Q2i৖5 idODәQ#A$̉"]3OG{Q9I(!?,@\1fK1P/3(BV DߝP%!$K6Li #Y7vINᵓ-a`ْr_&*_cfR6}#o|K:oԇ_;9i߰#/VW\t#&{>8!A_ W`7ۈQX<*m̖T/J"<"ۥGEV7K}ZLQ~;Y l)j ѴtDղ;)~ޥbqdgp5뙈;a_uAgpe`3(0:-/tjm"8$ '^&V gBLY`=v,~X86{5\VlZM?dS*KԤRML(o ;Kހ5)QF-*VoX]pgaRduXcVL~ bGI A Ⱥ88dlJa3#0g `ڶ;}k0Jtdj6Hǹ5 Blmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Noises/0001-Synth Effect.xiz0000644000000000000000000000376011172205155023265 0ustar 00000000000000[[s8~ϯ`yOIe&I fl,v_4-[,{}Iÿ__t76!쌟Gҹ;WwzAAxm|:i<7nl}۞OÿmۣkQ؅߽hm'N`Z5"@zM&l_?- ]t~ V M>1yvv&xcsa橲L _ Pdor?8rC88E8*nB2Y *QHҗjlBvjϱ]j#i4/fcsȜA!K&!.Dv(m]wRQ2tVĐ!'Am|Tx;|Q2Q:*qH!lC^, "^3-q˱o'Il JOk&7ľUKPƑL4:@&B2!6<& uiG dE5VIyWrK@/ޚ$[1* dbL"Ok,'<3яu?G+T,rIK*TEդv]a+v,@l{.Fa/ePw Lj]_9IV4["a\Ȉê ,d pe`DxY*uM˵L|;cv{KlAź%_ϹrT;J҇i|$UBܜH/Ai:^k'U:ld 1+h f_%-G4st!q23GsrM>lŘq%& D@C3})?)h,]!D4UXnA3ޯ>J QZ BJ5u}Pz>Rz=ølC^ ٘M!I?+"r`I& F Ւ+b}ⶓ+НFM4!b.%zA@~O}fFfN̸iB=ujAA \|& UYwIBFrZ!7 Qpi'm-%`-SB~|)R5\9KV^, #$^Џ0Z[D[ʢ /7"/8I??O'0F?e eڅW)Uw|vZ=H*w VswbN^w"*4qП.OK5DFCdȧS 8bSp?G)X! nKGit~l=Fw*ޠ*rPAHg[4K^h?uKq%duB:aYOsN8\'i* \OU,|Rx,4/ Cx{&[D9w'CKT 1r,qQ@v҅^2Eٴ_pl;=7J=lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Noises/0002-Ioioioioioi.xiz0000644000000000000000000000420311172205155023255 0ustar 00000000000000\[SH~W;*uVٗ6i$3ȿNAu(INtϯ b?75ia7||S{Njo_p&S&Z}, "\k#qLyxc?tQ#h(]"W1l\ (JJ4+3u>@=J%]ėJYu!qNseȒ4Q>*!Ut c>Y)zZl~6O>*2ԑyD2YnC2gПvǾwS;LSa0|Zf"̈́j 2MtK ;Z)rP Tx4.#@ۍS4b7v&_?49PP|I=xO;V| ĿqT|!ĘXU$/h~dHx:_bw~NV,K'UJ\E /Z0ZwA,1ci ˵;ҽ=tuE͞K~,bH4N uk"X4D3<1W;3]>F$%DB|ݗ <U/շcm H֩ Sz"ֽul^7?r]GTIt/7OV(k!j|$(\TfՋY њ+C^ ~t_l )P~ tJ% UĂ"¢7}JR̍i0PUӤeaJ}" -W#Zx":MS(E/) Z~g\ͦ\ M*%z`SC(M.Ls٣$xѲ) BߡR$tsXi䢨+̅JLkѣiBz.?~PN#56P\G-8o`rw'a{xg-fP/]r?] RP\zCیD b5Vr՚ɦҙf[驵\ (*VrOo4K hF"8C}D!q |'] 3BIC-ھ k6v-ֱe’ʄ%_Pj;,R*WhnbNS(NTT` ףf8$pmB8\%.5ᬭ吱ӑo  _ ẀQE3? W Xc*KPҺz"݆S?hؿ}:89b[ 1a9^(vZ_/ssιƌ!r.~dSg|#z!d O>.FАJ'aߖi0 'q9!Rj4 ;"+@d@L Z\keu[0MTKЀXQwNv9UT^٫: r\LT)ٶ^9cJK-m צT7@G[o`nMٶn3xӷ/w]E.WVxYf}EB/l ƹy̹U\,qb8W1jz5 !ƁqnUpjɱwvsy?7tsDH.*^{7͎`hIHJ$viDeeqz 7|rp8L9$#;)ăL<ͷpLdbwNO?BaX ?TG.%.eTlZd6ڶ/m6I)HKJ{=U),{fd4M }P+]MV@_Gҽk}0N^6Almms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Noises/0003-Noise1.xiz0000644000000000000000000000200611172205155022133 0ustar 00000000000000X]s6}ϯ~O4$;N0LC6}K$k 6C,6'@::+oIFo3i/2w''7kO=S;1JRB3G.>yso|!G60Q['o !9$\v~# p) t`*{.^H{¥BԈأpS vDXm57IpA('I~-˂e :w#fY3 n+K%*$\1|'[d2O,ժV CJV,`=`A L*ƨq/0+- HG+ ϻ׆8鷐OSJ;U|jD,`HeA/@M14aD /ssBZ0ћOCVElx/Lh7Bz5rW)q.GV)fU QX,ٜ6RVp""@ܰ*M??>=uՋ8Lw`H+FmfTU)CH^k~# K!Wb66$dCY =*̓fO^)浥< /Sj6ls򾵴h?~ܰM M.]*`EIbKUФ,b0vz1}#H(M LqV!G0VyifO,WH6ٱm4鳙bXʿ&+3)+4gl4rRJqLMi-m}ɣud߷-z7>!w3n_Gd骣%cŹ!_v[gW!_w< yl\{X΅nw6t۝Dֻ?az|P)kSۛ%,e{@.Ѯ']S~ǿ}Y]ɟ:_;?_}!G=+x~z拋t5_.ZwA};K!rFg6άjܦѲ@;KqTDs [^"kGqxع~l"]K-kns+z^8io͉ʓT4_ܮn^l4?Ax:%)2-z-Gy̓.^@G0f~܂ٚfW=Y7m k%@ ;R<>iyа)'1?r}NJ d1YƐ,{'[FZj|n-VUfVnPR>Z*l9C`MU(lhmou6Z.b~9\#תA-Ϥek >Y6[ G?p[;B5CfVD/Btc5AU<;S|p\槮Yu0EO:,ʮC##w{ѫQ Kv |om{5OTcs28wd{fiTM3g\v,!Ƞ/Rؔ"U]nWח3꛲Fy-Sχ%fSn]R*mY --Ou +L:<_}(lYPoz}(n?Ypr;t+]ݪ(u)+UIl"Ief.5B|d}ML"jRhHx$V+B1kױBwʊ ;|8:V]ZN K6-7nTFˌzwj,o*u:NȖ//$$ڹΡe(&~QqA񙨕X..fDxR*Rs1[ט+қvT}ٮthswyqtQC9Մڨ7:y~clmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Noises/0006-Wind.xiz0000644000000000000000000000200611172205155021701 0ustar 00000000000000X]s8}ϯ:Iҡ1xƝf_42ȉ6 y8Hn%tu:+OQےXPn-É#eϷ_YnLァsǜ X'FG/%G(+F`h2ǎ7Nhyc8"K^P*Hq(Vbf;_`%NQD`(}^ihB"6$F$N#’ëNDk+O83< IӍ+st@#!AؖSȭ&I›/+`Pݛw/H&/<}eDZ$?mHE,q>Ie%*WexԄ@ ah nLax*: 4(MRVHz%;Mʼ}z@+-TAKtՈSX~FDu ~V{gG~FQH2(V|>kϵV-Y:AbL[5}Zq~Ξg#o9hah12-ȬN Ȁ f |WE\mI}@Lԝ|s3uL*2¶hif}O3BD )XÀwHROU!XH 2t(=EʹԀ)s0gz-鹶5Y^EmiiyX\ev6ץ;j;}A뇯⺊AD$erWv)s @3N-+̂7$RUZ P%U$d."zEWjP򡈪eThvgdԜ7|I)МD)\QH (DZ4JPq&ADSn6@7(-tB=6}V ͍VoF*$&})җ`| Zjx8ax9[̧7~L\zdA.5,-L1;=( y7Wi9UOҬ^<ՍxSHںޣe+ִ_f_)gj+D0J[,hXnwJAw8 <cR/@CUVhniٷ^*D"뾲?'[f VYއhF~mU$/3l3~&(= D ʭVu|{)m&1 %ZRmȖY1كF*? oT7!lDe7e_j>KdjQ-D]]Y!I`}n)s#4xpE1DhhZI$5g { 4^$ZŁPPm IƬ$$rJG0^;Lz31F1ˮoF-Cw@)7O+嶎mqZXqn(_cDb|;F}]@39(q̑W }eE$ Eq '!n^]o{r8IK,Iy/R,]Pq&KÃ;yl:_JIZDnaRsCgp Y34QV$6,i^7ITX1{Y" _Eyakeŗ`8ß4R y05ӈ^_  7q>-T:٢Q1)@sfRUN> ]b g?I`GfqTZL)s@n.nmeR5 酙>E^VJذ(xxӴ>6,t7yCib7ކ=ם%_\*5*}W֦lDDJG4vhchؘo?{x4" FHvӜm(V$ Q?--nsl2M{C{nOg\Q@s=C".5Y;E7OO &k/E,g\2GYbP"11ҹxBn pTLut`4OhG-Frߥh~cƓm[bݼ dIH횕 +$ RK4^wL%| 7H ¯@b %A" |c[QվD0Y1u!x:U2NJH_Hn2{?I%Xĸ?*CcwACsŪTp΀%20ܛǣLƌTVU3Ɍ1%,#O%A o{,*/ħGV SA)Vu.2EJ$.SLܿZŕ34uuS2"PICFV_b6@xv7xPQC!}>$tj b0THa~-*cEmz ٺuio)w8`Ru={{F]CAy=J%O.q)gЂ-yH~0n59iI$-* #z7BʓTUɤE%S2S㕷 ^Y5tYX0t-<F1Mvb$K.Hn\mʹ -.ks)eaW`NЇUw>rt ul<iS$gyɝUv14Ɛ۸#/dYs縷$2oNl0?i'N "eA)B.OhʹsqlɖxD[}l}8aɣʕ0Ks[U+C~JW1bъK]‘ AhXۤџxRh`~nU4xkH M=r(dIڥ/,0Dg*7M>:^!baG|Ѳp;U?_bh 33iVehC4#G#%|h_]>!)EY RI/jVR,Iqv.Y\}ᡀD>ʀvMԟ_SC(JV\$Tκ‰pAGR=z2tȽ7JRE#U4R\հHÏ9v"f*+dP{Q0Y2r0/gV ]\;Q.L}amː#&[Q*39Uki1h w3B֣3Jψgz>HVܹi޵3FjF IBjg%y_MQMZ;Ԫ6 fRX8H6^fmh6M4_Msh: g_1P:^ZKDg"X]~߾ e:Ubw/ċ90nwYLT ï=G;8#lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Noises/0035-Metal Sound 3.xiz0000644000000000000000000000342611172205155023247 0ustar 00000000000000ZKsHW, 6TNPk Fao =)*K=~| _~~DGë C]/|j>,z/''Novm8py _\ }Fɟxa&l*I՚t,ıf.{*nNM؞,h?e}41aoie+PEq4j^Wwhz2$vCJOywV?F|UJ%\,dh Ͻj٩(!!^L4Kp$H"BHA/DdAIQվP &R7]Xl9H N垒,'ZJb$"\w1y.qz.[;Z4 Yu0O't?GwyKdHZ_^W'ݢ =g"P71PPʕҬX&۸\y+$T˝+%z¨"%KhH+ 0ߌ$qsPd?cN*K^Jo`l_7_ wIDz3ޖ˂5ʂ5ֽ5@G\QJ$,D j.$+d܏Z|xNS=Ypm G ER7'WN5gxfEؐeʋbBKAb8pLEY3϶([N;c"9w S*5OՎuj}|Qg L|ljG@5Sa5ft@ս8L|Sui<`rs7+nK\;t>cj$G0;sg3eτ8>(dx#uFwţTqʙHˋX0?PLUc7=gN305xx_3x{:  -ŵ`ck AELyYfTs 4"C${}77$4 H5&@)ILEbhTEv)$p (">Ei zpc\CV|ii<3/fjr[z.V3bfZ2?N󳈈!Lv6>1|>o@tgէ !#Nh=J BǨ*AXg8\:*KL) Ny2 ~\,<3ۃ=y:_\y? ť茾A'zxzV_<ء";.#-3o8 GTpH+`|B>NaDe4?&h #HkY=5F`$jQ]ܪ 8@* QJ5% `FhT uU 0$F !a繺>|$wEacc~ˍR:LHS1[F] jzGFenu/0z=8'-*֖||2\gS1YqD4d׭]Ć `> Rݱ>!p,"V( gO`H$NoH &dbGӐEyVK`a5s- J p!ݷKgqy^Jۦr8q"lB_. Ef NMǷa> z+0bAn/?3٫[cO t#a,>Ҁ #UrJC&hFc۶ΰ'i)fM*.}=\u I1ӑ^!|xA@(_I^ghQucMuiU>V;vuŅGVD]$lUl}a$-TD 􊭫RUj|@|)d$1%ZؚnjXqlj*>h 6,IO2/O.65֪25kUUiC%k?N Sn()]')J* <-sіD)y+kۜnTp±iR]]2Y̦mQ՞^x Y0li5 4Q%mn,zV:scɽzvLp&`dۤhHZhԞԠ/9l q3h+Eq/6f%. uy$fSWizԌ )C󘱍!$N1\Ǔpy}ƍ6m ͊`Nd, ^w0 Ey beVI 70bIBP3cm.TL<pJhRXЮrFs3}YZHp,a r 4L p湜P= aM<+G[GwF#؇:ԏHW"q5r :_,b;׳vq.( 0j[1ZRy\ϩZGGc.>+=AP̈>Hv¹?~TktQ)R+ɕޡFk|i͸*im)SDkE"և鯶%}X[kQL})ٿg4rQj_X8uώf4_Msh/4̓i m9^vax7xbuvuF#v]*g޾-b1wnKmSk?{T,&xWF v#lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Noises/0038-Metal Sound 5.xiz0000644000000000000000000000346711172205155023261 0ustar 00000000000000ZMs6W'2%33MM4%G;M/,&$$AXZrJL.o.@]G$_wǽ#{⧫jv{/է] W&x5_ Nњ(=o]̶(ψq;\:^a߻+w CIJƒsV DJH8ciuke OYIJ7IRCmHC|hǾ_Tt t\-Jd÷S/bWw}O4~%Eqζ4]hTD2$d.!2ǥci*Qj(JIHUU: b9vrxr; z}rE Ok[= ɉ>fb-i9qkJ Gdv?X&ckCT4LF WS WPeX͚ #2(0+VyVa[t?"\, (>J/PE[j,3v2/~v1` hKEXb]9Y ~2ݐl2ݹ4e, VI9(U΀$Bl€%hB*xb:0¬`dž &L pkG[שv Ʀ!j(7 ]QenjiBSftgbMǁG"d >,dsP YɲWkV:d'A~]=Ռy07 ;VuQwjfa =I=}όkYխ嬂X`dn\“Q3hV6tmDDD&á{ןoC|Ԙ%ynhjpCܡq%DSyaпC6f$lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0001-Organ 1.xiz0000644000000000000000000000363411172205155022000 0ustar 00000000000000[[s8~ϯ`yO!7ftXb&F2KWݍMٴ맦H:7}uݴ8nN--v_?]v;.m#vux V[0ڴd4o }y.n? n M&<^Cd;s< f{sa橲L _  Pd'xoN"88E8,2Y J%Z:[$SCN-9[MUwd#'ޜ,2gȖId=Ѿ+4㪓& Nn~<7aIP-*{B,)_c=z8R! 8,%ç ;bؠ,%rPf& `!Fߍ6=&vБuFB9/')X $|F?܍|6$Ŋq-Ę]!p.3xzJƙ+! Z+oau&D* -IZ\*]EWPa>Ķb`{іXjYsټ>r.}O73zNy-QB2 'KϷ |A0~Eȗ9veNdiL16ҢnO_geC<-y,gL5,}x7fOKh@8]1 vzFM}.t'Tu:;bx)hVF6-D4sL!q-F3Gs26 #ִ.APgآSHL9FWA .SUV4YYi}0JtfRM]+Շӳp'umT!  I1{"dBX0D+W'!6'NSrCLX1}h}+hd;6%[̌E@OGz.UKkJ;mz|T;}̜O'PZb!Y.,nG!mF?Kr(? Y%s*D06 i\ n  REϥa:E]ڇA ]V7fm* ӟ(y Yʔ6O>EWm DɃ:"Wj6?ޜY,:ȥ0(g"^'Dn6B?rGۀh@J%Z:$SCN-9nFg9g W&!.Dz/Ӻ(:uoynlÀvTطCL)sϑ=z8R! FsȱZ8,%ç5[bؠ,%rPf& `!FF\aY:d#t9/RH +ipp7?j[+]+ĴzFkr- q*gak^BeOzf":̼ȤBfixԮzرX^a, 59lML9v>B/3xNyMQB2bY ( Ϸ |F0FHYvfPdyL_clZEgݲ7OĻӲ@V}ݖߞqt>rIBݱz6X/UA>[>Єg+(Bp!>(=K/V'^缩yVD5`8#]qk-~S=y O,eiV7'tS,Kb_S,ްڔbfC״Ca:5Gz~QKk*嬁; w8f 9B-y21kKzSJ[]F?Kr(? Y%s*D 65TKr5ZO $dKF-z. [A ( Ӎ--yD6TW^<MďYʔ<9~zV1QuTx:`%U6wԥR,3+tѳ4E8bINU\ 㤉)*BCOk !/푔3 'HI ODL9"&$zմe]S3ߺcNݬCO܌hIdU֡mvE`|=zo`{ el;ҷ=ʝlDnn^Ajigo}@:2:sA?@>t_T/b;IdM9<*!3+iOR +_W`M=p7*w>輮vxv)b'zy\urY:mMDWi"Os~?U6^iS%v4 zz=5i&'w>`3^/ KCxD$ Q7`.áy3{tL*T_P;>%NЫbo{IT)ʦMZ/VGlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0003-Organ 3.xiz0000644000000000000000000000414111172205155021776 0ustar 00000000000000\mW8p`ATQ g8/9 hپMK:Ob{sӛ^|~Y.ۮsY3>c.kyo7ɷkcYב|up/Q5vv+|#&>~sxEz]g+G]:xI.ksĢ‹^uZŦw]tuh+K, ZږE;@v@>Zَx8A~+6LpxUID>WK'ě qlY=IPcuydpLc?tE,Qz3jE=b#׮tMw͡/Hy+1KiUdk,j>Q,Q3OwuY;(!~\p.SMha ;3烶~5}q'ud|QAqvnn`E0^ SI'7|r4IJv ;uLYKF s݈3 Y^miL*0&sg v&cK>ynlw{;ʮ;Q?qʵLs,HN&;~2u=X# }f_@,lejVDld, uP{ZyH>H-8BUNN8CHAY뢑w@u VB)SBQχrX$>a.| 8Ш4Q<^;?@ @~` ZB!:?(-.pNpLm.;@4$ ] X"_-1Dh2fEU Š*"5ʍ_7ͳȸ=Bƛ1{i@iWHc5i\3.jߊ3 j%TȸB D꘭xOĮ\%X؟`ύ=Wj mV;j jY8AEn`ѤBQݫ*n?E9#"X<ۅM49, ٪zO[*쇨 B>Z^k?Mj\LHy%NcmҪfMݑN3rgjkAZ6 ֧j}Czc"3q͡m8;]f7E^K즹~q7eRq8>g˸l9eܹ2^Ns9YN3E6ۿzoTo"kH?]zIT,]dg|b!EAs-|3.n}wq.S)ZS?/^S1`}Hlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0004-Organ 4.xiz0000644000000000000000000000361711172205155022007 0ustar 00000000000000[[SH~W;*uPC 8/]M@f#~;%$5'19}}n/ώ}a0 }6Oz ˴"Mt1tWB A l]+ϬDs~ g\߳xŶ0"Nԉ42Uw֐yߝ oX~{^-fL6-,x7vKh@:\^vT"NR$Pc/ ! $E]lm+eu:bh !)ȆeWe#VBM8-F3G}rM9Li|.|8A>2EcN]B2r:=d>˭Ph³‡^i}J냰fRM^+Շnob}q.ۊJ0ߑ6DUx4"g@d?P 멫ei /l'7'tvS!k)R ?ԛ ۉMSvQ{-S* J슴lȥ"6NE ڰn: zLR&䡀Tωu͇uyTag^,kQdv?b~AY5-wT-Y 1 ] [BF$!4KC8k)m,tOsKZIxe|:BU E"#Fk oKQ$%Z%k f6mSP;HE;e$vnj!fYU@r$Gf਺Dj"B5[K[ Id_ŝ0JR!=ԬNqO~&e=rfee2II$7RD&$jj2ndZzCOKvfLF;痥%ņ;+l^7u F A)oPwA݊v݅mAW~#i+BS*":;—|^vB/)5@W4׬n/@e 1 i|Z?gnUJ^#ʿV2GM^fwlޞU8{0]Ah 3 {$>!7BiNINÔXNX\'di4 z/j$Q=͗o|<a]jovHNNԍ&wxF"JAH?L 쬠D 'N:+b{qT)?R)AmgL<lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0005-Organ 5.xiz0000644000000000000000000000362511172205155022010 0ustar 00000000000000[[s8~ϯCe&IM̔@:}(Xf}I¿__$>:M,.>'G/kƧFP˳:=L'竣nFokڳI!:2}'.Lk?qhHp?#+O8Z֘?ѐo}yc]rYk.PM{JZ塿&&{wOe ױAhmr?9!q">rhKhX>*Xl "40K^:]"ԈcN,9[MTU# NSgؖY=Qsz %N]<7a Ip,)[c=z6 bf5Լ;vZ#KPBpLt'K]n,ĠC1*7N BmzB즡*gM _ 5ϒww;>瓷d) 0,rvDkĶ]#Z F<\9 aU$.#Z0O]:1= @sߋV⾒pÚïT#w BsJ,D,DAodaEk +-b#, ߳xt(aSϼ,ԉ4>zUzF|yߎˆ;xxAܔHl׵o>i\Onf r"aq}aNCZQz9hs_ #]NA8C@Jle\ @ˣ!+ S@ El`Ajхby02ײSYxvl|몮@e DOxQxp^ZoY TgÝCGg0nB@$*4r)* J6awR!FjɔHpH_\0*]-(-+ijbd.t0b(XX#͊zԺo] T)ko {NaHf4`@VB>$mǦޥ5vA+H-xb456'aoxi/`Ø(qڬZeObji;yp&2sImlωSV%4,Y_z44K+([M =Dhr=Nu?X[(Iń\.²(z%tì*O Ta kÔq}p-+K* ?,D7(T+} cB%[R0 ~`Xۘ'wr4b+c. eBVW"#k *R:{C+F2ݗn4\41R6'9kR/[Age!6d;_vG0uԌ:oea!˪4pPD}m*ϟVM<O8ibأؑF`J푒33'AO@?OBޫ-7Z1 V@?f *Z aiA*긛HP?G d;@ |4fP /po|>XlC>RnTr,=@ pi,/mgl<`ɴ7RB$Vߕ~%w_ I5w@R٧Mʘ2NxΘn1w}L 撶r)_ޅ\O.P{?UBOseU²*![MspJWܩD4wM3W~Yh_%Ld?y=#*DHt?ш5[~".:׫_&?7QQvYX]gm8lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0006-Organ 6.xiz0000644000000000000000000000400511172205155022003 0ustar 00000000000000\[S8~WyIC`df6 h$nc; Uґ!`KO%z-׹hh1\ri~$|sd_K#s=XNro`]b##vplPa4M!o=Cq׻N@OL Um4lSlgo޸wO$Q3-BR犴X( G+!/>mlF *PHҧjx[!M3أk 5Qݔ4N[}8MA!Imyq9i'Jܸ,ovdC_`v+y7R? #kyvMĐI'#jF~{h(,%kjȠ[Y @f.-}'k`}qDn:N>h蠢qpY0^MS2#nn|t4v-0vt LGt +X#:tԴ:Qg, IL*0&sXap ٮcÎ}4p, >ߌt9tg!g!#ZVYD2 F. b", ߳xBziaɪ4t5#;.kCt)ᶜcUҳMz#8-cuv@R'G)c/@)3)6^- Ttᄣ1$K\lp{)9Gآ?ׇW_ Ijvpad&EcC>Bd\9Kz>nC>-Kx^x)Zi}&})AYvq9mt!vC߻@@7 *ApC!E$I="@1p@W\-KK0h 6H)9)FœMS T)j{='}U-Iίg5ޡ>;}XbiW| Rj,=v 2#ş9@oX I؅MRM9ʊ0%]TKr5%%hˬF =Tjp# Zr@ hF3"6.B.Nk!*ī5cREI~Iz8d8yv4\E;aYFjLT*VݒJwkG#hfUw#M*Ѡ53):đ6G3,rm9[EHE(̋8o>SQXHq=2DCHt:pڝQ/QE[K*1EEjLIE R2g8+\|ykh K/ȸŠ;52_DX50 +xOVO ]O |N!k= _[5~E/5[!vk 7_n&kbWuwu ;j>7ҽWuKۮ,wk–_ ٠nMl` jD^{&`?Lx++a IWGxⅭҭӭ3< ֕tϵb6QпYq+3އػɋZwwh,l>ݲ#t&\fnawӼk7URqUB*\MsPBU|j͇w ;P{4^/KDzn_.~5vJّDHX0g _P;Uw18KeƛϤ4YlGlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0007-Organ 7.xiz0000644000000000000000000000403611172205155022011 0ustar 00000000000000\s8_=%`&IKs tQlnOI+ؔ\O!j-~^f}L\r쫆qJl1-{yxz''Nnv4g3^Jmgǥ\eWNA8W1 |:1|la?'|4EO>\5W(Ij;&mCt0>>6i!z2FEHbC["|7/<:ł+@Yק*{jdy[AM3سc-5fݔ4{}0 i#8f\MeKŇvۇۣ:nẻMCDH{rDd`,7?Zpa;4FM,:S.6oKh$+l2KL{v,S%HPOGi8&.jsըw&&>EjDC>NF7z强4n`Asll4#GgX I؅,6"&sLDal YkTKy -b{eR#dv3v,> J삦ae+7~YEFVwy5 V)⡄k6 kCTbg.U$,WLBAO_QCp0*VKRޖl"!6? Gq^ M8kYXQxQm_2WVBQᣊHR]x[2a,@Yʤ(/)ZP*ƊK1OƣƟv-fUV2.LA֭c}QƏjy,x$ʨ $ n{R<TS-*`LErՆmm`}B͛`ZX,ɆO< FvB B%JiɯwS_v^R7aVWQQ&fUhtgyl?mųlA!y ѧ7HC}kW&׀>Ij@ߨ}N&Yyl5<$ 7~-MaW}:v[=~>k F/wy5kԣaXk\.u=k&k _r\`{{ג]X7_N*|kQi﨨,RgZ_BjL G.&cg[ :*z e}$p,,Ol[mVw~#`mxA8):i&:[qL} t(?V25(*KVi.j?{%OO%[X>S)qvLa˼<8s0URq:@UL*\sSƹWqULܨ6iP{=7^sD_(*}8oat򉉄\D́{-3)FY[,ڨ[pLSrg1~Hlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0008-Organ 8.xiz0000644000000000000000000000661211172205155022015 0ustar 00000000000000]]s۶}ϯ{*[Qmyi,J )DꊔIȳai>rx]^?N\8pV8|ۯ͛wO?݌N|scG7GY}o_j' Zb;\o he>nW.'w̼٢zUhѴCX*նXzMx)&")WDMZߒb=l*>e{3kmN0fW!чHg|q'kxT*H #weԎo(ؕdgc݅kb3(e. T;MrNMX ch9BIuzCr]蘭z[άxrڵ͒f?uA&9^!Qz9^G1?3*b.rܵmt cؐR?]بe1OYGdl3Bqn"$vߏ2q/o 2 uZJAϲI'Esr,0˗Qnpb WSP?hK*m™vΣڪc+UMpyN!eA,]IvqžmQPfv>ru)pUAII㴣l%bѶSC졮b+Z۳CHGXOJCLZCڋZ=LHfOWkɪk:{)sV~$tZvt7gӢ|XuőAeeT JZ9`woGb mJvd#!LSAzV^6RBh:UڮTvC{աAu(Ҧ} 0 TÀQ J5 8Er6`UÀV ^5 xE~ʲjij\lZjeZjeZj.BۀWm^ x6UۀWЩ.g^ x6*c:"QNJ5UǀW^xk+:WkKWY=^ xEـW=^ x3UπWPY}^ x7U߀W}^ x7U߀W}^ x50WBZj`j`UU~łX0 Fb\,#z%`X0" F K#IK_@;  sr`0 FG)ۀa<0urz"< K<1, -aaIh1#%Je0i&ab)@'nri#<9옖x0`ڜ&ANy ƃ=0Ua,9y0aS\<1m1a;O^f@`0N"=`Ɓm@IσؖX0a,1#q r+E1`0 ƃt0ƃu˷a\<0cZF caD| )d)@Ч@He0N"~h9=O7O|epS0 FaLˀa\d@`c 5OaiR4Oƃp,mӧs ƃØD6bc4QL}#qK(X[ȥ-HU-)ULȝa"âݑ"bqX8,R\-"D^|g+rX8,9PT=+g^z]gh7d\lBQlBQl 9v rs"=5W(m@_R;Go76w\>: &V?O0ZKK5pIo/TdJm+R%ER&o^~^If^١H VK iw‡RG8/`iV{Jʴ+2,ϟ!,y}@7xLR/j旵Ú`, ػrAW R`-=1KS%aIH m% fKmU85C| qEឪ!`"首RlSwVR yAVZso [vU32-,V -hU [~^OWqFHg -%gU+\JyYgn[QZMTyYVCRUSG >zy7$+y93) R_1&̥Dr>k=LXO6%RJ)Q^VrSQ*4dMȪzjSqeU$,_a:N('K_W"ET&7\}{J/N .3W;- ئla!=|x Zbaz<+HZ&Vx!U]GUܤ!LSgm3_[VO;k#u4_ k/8߁[UG5q.}4_snMGG0_a`,ߪuO6h[ڀ^Qca/m7:zA5eOvo>Vh/{P O~q@Hˑ kWS2q, [jݜޔT)&͙ AIy.cg(ʿ(]Yr_AXDЅV=" 㮆j5t!6o Z 2=۴iSv>)jA9UZHV!t>C~XY>谚/i^̯P]~WdkX))|J%Cߒ/Z/(FG6B/gw3N-▍v˷E]o!?m/xؑtlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0009-Organ 9.xiz0000644000000000000000000000361411172205155022016 0ustar 00000000000000[[s8~ϯ`yO ftX0SflE#lnm U7ؔl.O!ёtnIj r=MEf^7_NoIYm=]_:ٝ(wnK6OF014ؘh>7a`6x8>ɘ@,ll`hsomt4mMTܛԹ:=|0|dyA.0绁_z @%Ҙr: *Hҝ|de8bj%i4ͧ/Ox8!S&!.Da⮈Ӻw(;P^І'Aoz7R:>(#mzʲuC:q/SaX J -1mhJtY/3V0{}+ā|$tdlE `e<$e쬗HeP$)t 9ctVdښoW*X[6W:x%R,̰n|-]Cײbݶ0+U&fTEfF! -:uAJwCg*Z0:CWbUqy"nA3ޯ>\@HK! j!׳ap\INz.[`8z$  0'(v%Wŭ']ХFZNI݇L^PVX01ڡ`OvP#y=_axJ=;ŽЪxo`|њɸ7l.b &'Z{g]JЗX<C3^}`{AA]%)مc!csP0ɶZڙCe,:Г-Z\\&[@ݨWA `I6!UH_pR!Gy e r '$*cPZW kv5 ^t).챁.O,սj8TyXD=-eosu'0-fwb򶐩yT';!ż|t~nQxǏ(<| s0p5}b!#vN2,fӢ_߷{ݪx:M>IW_+ B Ia˳]v;ṂWkۓױ #xJ|;vw/ Z􉃓'' qޜ yC]7\\vy=\qhJr/N!QFA" W!il, mJD@Z:$~pc!:TuS6`8ᔼ #CL.`f!>2NKQ 7&F 9 h'i_?I'iUg-xe6 f0GaDvmen10`V=hf !BmyLf#d-Eڽc$+u[mzKdEK1}1B\LW,'Z2TҏoϣE-}r-9LȤ":ix.`zر@!^KB-kw3 Y2@~$ G‰Htp!#v|-C,'/ D0J'nf*:]`B-z}ߎٷ3%]@ }ݖp|7ֵ:T`^숯I a,ID CD_z9nӠb҉bUΪ4#!&A?-aYDF|MS38|>ޓv(1SՌ0AP 5oԩ N_ ,Uc4Y4._#u+=KVJygcE_+ T/,4t/@.ALEX0Bs/CB凛-:O'i$!2gVb6%zA@E?eY Y03ڮ@MSL#y5_ҤayRA;$YRRgPFUd4{!h3k/KCPa-*"C-^h9KMRk%q*D4%Y4Kn5+pV#=VѤ7&by9&0#KلҒT·QDxYKXC9m|'SZOWuIkvZ4;' s^`I~WbfgQYd8G'pH/y 7 -N8@ ,[iKLA}k@4c.` / fNqmG .-eQ&l7Zb+CCkw|?z _1F\(%e^EY>QuLUPOꋶU[g^uG>كh(*G?f>m$ER#$V)WlRd \ T-D-œ‘ARERN4XwNř䀥,ivøX*_ X0;0Xg=XBLm/M'žS^K|@&;N%%<$PyTJkHr%!;),H"2߄(Lc ۵>ZEy[|Y{\|>7"B*|v\'YNX\'di4 z/k$Q=.c䮧oCvj~,4/ CL$kn-2iw,=R!U]ZS;ц+j\l .q}l2dS/&:lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0011-Organ 11.xiz0000644000000000000000000000401411172205155022053 0ustar 00000000000000\[s8~򞂁$0glY h[[lIÿ__$IФM?%cK|>.I:wQ37jGij|qݻ?F;ߍ׳cG9;v?ZkW5:Dwq֜ ]rQsrARxZ]Dȉ Qv 7!lF, mJD@tG-N@o)ım/ZG߱[j.i0LpJ#.:,]l(c0M(jF  h"\ɰ $٨UoÑT=2]M'y f4GPB<$v> mCa*@8,(uɊ[g{!/Ki߀0JH0B?_S{HW],F؝'Џ?-?4r]׃bnHR㡅i$O #2}5J4]>$-Xh̹fSE~>DzԺ]~XS\ZЌB]\`Mt)"QIƧF_SOhgf؜a_<0IOAܻg.lM B@BÞl$-L*%Dv\,(X0op2Ar9iP PTFpTn8L`Y \pEؘaZ);P0cܪ(r8iKoey g9"ʢl0WC"* ,쒚v +.h$ߎ~Lgo#y*q2LT֫JjLZCwN:LlzVwRBKl %R%'&-z6QL$#Jnqh졧l Bo$dS1чS@jf54[SY3#XF s_&%VE;0mIDzC} i3НE>uq~6ayMj]yR kALuman3Ř[ؒF sK){@/ asK@_~&ڔg*ےZ7_ex\j)k3+f8 CWc"8cP~ ]*"`YmFt5e{y,ժTKR@ | \`쳖^X*;RR/n^5>] fKG^:3>/U ?CI ^P-]}vzJW]a ق(,E~i.0eX4i'd>἟}B}?^0;wHLSerih\/g"PyAO_SHo!LS}H!F4|s)nuOqկei?>UI?m0]Llmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0033-Cathedral Organ1.xiz0000644000000000000000000000375511172205155023621 0ustar 00000000000000[[s8~ϯ`yO03lY h[[[f}Iÿ_#4M<55Gҹ;/x&o}h7iuq1:l~99v:\|~m4S >:1MĢɓqux}7F-L8Lx2tzr]AC[K5 }ba;dOl1ٖ<\G^_y,Xأ).bEW+@V@m,^>rI g9/`*0(җn86bϮeDuK5x2_"u-Hj͛!ݘz+LV"o7o~7\'2/Ip -(}M\& d~@5BoXu'PB(~X2Gg2 5(J. jߵNDOW4Tb`BE ޢ7%D ,)<ޒYkpp7^<&kۍ `JY.`=5`}QRkq6!5ֈ9U.r"X´.kR&Njs\jtJ|<7܈ K-O>w]GHn"6%jVu#?lѝ x, +Zcg31Ngy&~mQ6 yY(i>e 6gЕ398nK?:u-x7+\7~0/G9d/@%r7wVUtpe\@å/! f@ hOPI EM|1\AϲSXfB=Kg‘g9T Y T˯+ՇnׇN]hw6nTu&EItB,7JY^q,~҃ae;e82ҋ_7Օ4}ã XP=Z0KQ {V$iTώxYHML.Z3}> &Ü|z$?`Axw)FnO 7,OD>X>1eE[,uJcv}rWC%=wkF*O_@KFdWa_-IE] 2'q |@LD'9lXw7 AuT,X2WYdv3AK\b1QjӠ,GIJ8UT,#]g7ōBl~aGy@43ܜI767R/T֒! , M ,0^[-UQkH䌕6O'aDg;rKnmeNjM!,ȓBgea7mS͎Si`6zY,֭Q=ݬ̻'w^m{)oHi+SBp;*bzH'.etkE,B)fd bUjd)~iE\[\>5myz4OuDyrGrUYVްmN \t_9ПQ#trSic4aT?v9a]\]c#~_m¯N\ߩ_!rį I)e~z#~=ԫOW<uYzW'_O$}v/_Oo[𯗯Q{_:Z+!_.rdmv:T~G׻;ݭ;§@^"7;=SF?Ls0uB/R5e=uB:\OsP9;04kg=cW hP{4d_A.DvI\裑>\D)(癉Xc7Ԃ=w2K'ӛ?8~/STM"n9|K>lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0034-Cathedral Organ2.xiz0000644000000000000000000000410411172205155023610 0ustar 00000000000000[s8_L%f\9 h[[9$?HZƆƬV~iղL+Ve#)3FZkHnGk!/\'(o|:ٌ (KT%u[M,@"o*ȱe{vmƬtxo 2?tDEp 7ǎ~Ո uM僚 LfM2A15oז.>FE*[ ɢzC9Ըu,O8i8l50͛JAX-_c91&'~ԘPކhu8,ρ:GlTZ6a%ulelhZ_FЂLiDڙ+t $y4]' L,>39EFlh {_ìuØ.|vєBML" *Z4ҷ0'QE Cs{^   IGo$$wSfR1B;.CYq#'w<ɋ0'@rwn:vF!O1q@殗2 pȇ;o3Ȝ+JEQa{:dXtt:OVBX<(ԨRS6^5tvLzLAQklLF0`јfR/AϨ\gBǜߺG|6$MeRBIf]T[&蘈2K^Z*չ,&~ڬ/Ljtj82&pd% ϋ'Z4x#ȋhF!E@] R'\b;gyi"3XT4LoX3ք}0+ *?/9HdK}lFLSľ)QVS' l H)]S47 B+q G-s 4ۂ=3fTkKž1@DĈhf{>!,cR&EIսC \1VܲvO; O=c ;3Xem k=u[UJ.EKhE  jiSTr'L6F݋㰗t>RG0U$O@a hghn0Whz6f{d!=YR;w >]kjid콧h',-ntqHSZ &0ꘊvQdW~GBG )]2sfY+@@:#fvJI"2k25ģɓF-?mҿgdʞqxBO>||{Gl=^mc]+t߼y1#&!hи|UDsoycI˜)H3n=CVSuUIt6G3pt5fؖ2%] p$nW'pi뼞AjAX0~HkR(ʜ Ead~•*ۈ(`3 0!߯[ȸe:NxTS`obe&EEnw89s&1Lȴ%~PbN"$pvwi ؇`łXׁƔ2+0*px#jr,3 xirJ{XC%8R2&`ġPA!nSEhTY{پکQ!!@!/ ryކR4D 7G1{eSg5\'ui]N4Ӄ_^ibVNb$6'f0FhũWi7)y^yF3d"dˤK.zИ w̛*Hpjbug_L(%rZ=VNÈ @]3YVvjT.KG?臎,?J*~%Ϳd+q~e}lw 2P ukG?qWkVvBH̀J^6e7J1Y9&h鰰rX2Y1C|3 Gd;[̴Y4-RZ<+P ҨYzvD3 UE3~ĞG@S9b0H\?'⃐DV$1 "T/d?Ec2N3*!ojfcyJ|]H\krifOk)JM/=МUI+밸[AقL9xlfZ&iM>%-kw!$OH.*H?-IhC#Tɕ>uJ jW2D%[C̃ ~@f=ڤݯQ ]Xqj}b M Z8o,wEyYқ6"ӢF|6.^|-P*)JK)ڭ& xZyV#}x4$M c%;jWE}9?Ⱥif݅vƹe9u=u4 ֭&t5X)̫YUbfh{%AX^Q, b+ܯp$49xJD)Qmdzy$ԃe鼵'KRv4cBC>ָT+{4h|&7 ;]ePtxRO 5 ṫպ^͞jA@v,t]/?m{ߦW}WE_~$l!EgRk>eͤR| <|~g ˋSc'ͷV~m *G/^qpZF^v;Jgvgl{r#eG o?=|ysC#uC#/ X|؀}} 3KhG.+jрNje5ھ͇Z>fKΧ^_lLlgF%G?>a^5mTqjl5Uܹ*^s>'qUjX4 _M׋Cz~$OEYoDՕ=%jJ$ujxiB|"m"5@+C>lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0037-Church Organ 1.xiz0000644000000000000000000000332411172205155023202 0ustar 00000000000000Zr6}WzOdU&ڒ#ɝ/$&$/ -'L:S"rX,Ξ=}[<8yt|8l-Zw.gyt>G~wއ kK> ]o6ךdypѐ]{7&+&̃4H%6Mzw̙Lso~#9: YQ"4dhlCb\ecRmXۭ #9_%LnHoMk>'WBNW:d#bfvpyw~Ť#a]ҧMrρݸmj\_{7vh{;cf9y 'rz's>͜z E; GiRidAK;Aa)F%/ a5 ҏS]h@C"z^>dQ*-W}nu{=[٠P#eSttOg&pdw>~_Gl(IB w$lyT&ly*RG(ѫY3_ͮcSQö-VETq02 Gk[HA⇞F5i꬯6vP.~Pr6uVsej%[Qcƣu >-ҧJAK(dP[FMoss_h;-+' 3Lρ;l` muGaQ,kU;E W:EU T[6}oS=FU6tPb'f{`.Ҍ.w;[."/]d,ǭރl_<^Fzꏲ-QJ.*saݶƺ$ pMQ[dG2n9hnJ:$BZb&226onO栌y-VYv26';@vӞnu#ٵ;v ͊/ b'._<} B*eAN]oxu~X\.o6`ׄ!뭞0pUvMrـ\cfl13VtղآB^K6Ո+FX^^Qm!wzWCf3^ E^ x5dƪxbX,bW,>EⰈWրW}+_8,Eb>Հ9}+;0}xbX,U W,8^X+xZϵ"^1{"^qX+xa8,~)/sb(] sX2bF]f21L=B EFW vxI:?"^1:2kxaAcYct,<F ^-<<P"KL<:6[GmLƳFFxvQ>`K`x z& 0g[=<;}K`M|M7aX߄a(A:}g(EσQmt]r`L0MPB0*[f((YϽP!bwg^m1m6bPҞ``=gY &Yˈa,1#`0l0_eegȇ`$>kلa(z*Yt9O0!bF|X,g-#ƂX HkbҢ3l<lÜ>wg`Ü> 6a6鳖 0]0Ƃ "}cm!Ƃ "}Yȇ`0| 68K0Z6asaN0 Y& Cr<؄a([6abyOxǞDvٳ`{6smWmg-\QNlpF9}ʕ6pς n(ϝl sܒ9}lpaNl`Nd L[,YERX>ݦlQn@uJF(]nz}s5s~^W_eU|࿢yV8!EM5Omei40k|uY[~9R 1QH-wy:H_\RlS1'QcQXZU> UZOjŴ-,>8c4[svi!@Sz9~~VDHZZUƨޱ֚Te{NozዲRk>U#4_RfnLVON-+r[Sz1Ywmֹ.yiݲTОL$/dtOhif!dpL $qR<5f}u< Uc”*+D%Nqχ@xy;~+ )QU"R'O6(F߭9Y2l!B;2;R.3_n2}>iYY-%{]7B@!POx4%`xWBoN#F Q+R Nu YyCVݵ粰{*˄| X5Ot:aէ6r(9FF0rTۭ]T%c#R$YRo ^q蒆wm/;D"(PN]P^VfQ ƾg![0uX^l88v8Κ}DKXA;LU4W<$ڶќ-ypDksJ/qī5rkf' 'Z$0*25Z aC% 7VũC܅D+M4 ҽ;Dzd$./ms):ez%X/A1V.nW,\M~/*$c\OUas {>m>;5HI؊**?sbbo}+"d4KZ;~8k_^qA7'o!'J#&!oTZI|EJZXoo*RK*;9K"p잚XZPnrq~ W]G0C@wa]Bgu%rT!rh#8Bߊ#˩z0rU #FaFgN(ҵ>t #ƭCx(]MZ Цa9* -Ni*QGk 9}zF j\Cj]|"7$YN#f=493X; Y'G{GZ6g3_hEMa"žY*yYnV<2'9W8y5u>=u>?u<~-^=D/ uDޞbUtYr)AO(hHVBE}HYS!(Ndsܓo%DAz[#z+̗Af53yZu=y [CѾ]ejMތ.URŋxo{4ʽJ<l&ѧ<[*KџZ*YD}u')tY3݇V_Os*JH .PDTV0 bl?(0;ݞ>bTo]pn['JbG5uV) fZJb$!TЗ]lU+8w `q  U1>Lƣ[8 G4%ȀZQ9HϜ* _& y,d: H}g!f4:!JZ{L G`|"hߵq9G@Wִ[f` r+Dј*0ݎ%Tp8P_d?u5:Y'BcXn`wQD^ܑo<'_f8@U7--ʂW^ÁQ/xϞd$ZeЂ,iBq?*gk(u#-UNyn(y 5*:UUU^[7dY Ўq5 2^EQ C k-;*kmuN]-s;]F^0JkSV->kV}q~?،vR}n1Z ~F_Xv3׬Z+e3o1 :6蝪~f; #JKʓwX{bB!=O] c)_;UM8ug`|[v iiu%ڜF|JR2#Zw!x~4exT6&f{}z܏Ӽ\'i?>Th^LP(4 s UA즐+qzJCz.{Zz \j\C#B0K бjO܊@,b}ulU5Z+}r'8C؊k_ O ER('q!5˷2S Y(!! &00ac|^}PYNe*}`FBoϤz?5-/',!)V_t// *yaN2^U>b4v҂^\Im7* &| ' {8u?=2 CĂ bhr',9K5<KAo9j:^M$I`"&"16~ r5MoƟ+I^~8ׇ y!Fb&)FGqƝ `0D>0h2eIe}(( 8q"LUx͐'plD1e2Թ~tI!Lt4`8n} #-9,`rȤ5FstJe=rC& p]EhcL\!$m\]!uNFYU2L3`4?)Ma+f_.cwsiÔJr 0VMԨ;S-"}@y2ek e^]p5YKRݛ4Qɒ%ۆﴣ-( '2sIboE5 $Nh( IrYmM!b}b$`4",ף[7SPv,FȚb!?D8H-m#&&YFt/ +u,mAl(峙c{[1xR1EcKǓvvbnIB+ rLA]cDrFv2\Z"kH|(GKX}Y>LHE$=34hEp9=a<PjLPa鯃 [eKZv~2Se;o}fGzV 1:_q$kv(K}}+`)>#&PhNRXYܔ>b,B!CO&.zw̹#6K̍/LSP0ۯjYH~=z'/gs$c+Zcw2v=A? If:gXdx`=!"x@va$pZ6`1aeZBc 2U ueI19jp^aI6u] o~RIY/']BEe |̚{bk?H_G;Cl\%U%|D Y@`XL2]nYPVCQyt3)f$FcXo7505M4b9 CCp 0ߺS=*"?cM&`frUE N5>h"`EI 2N[ok[x%;t_pAZo>ޫ4| nmmch}`Z,b7n땷LE +aEn6o7VԝuCٳ1i;^>H5m>TUj5@ca(ZF56P r8͸1nj,Uɽ4m? `T`ڞԙqe9cWRg' KsC*f&;zwqfyܟ^4ɋO J$sUAvϓ\'\'I$ zs=uBITOr$wRY{ezi^:3,^;w{S<3USF`W MDeBG(wZE7LٴFlEYf߳Xg+aajmJ5–3[g+ (nlV5-Y" dD-7A%NcJMMctb4wPqooEEӴPenox|0lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0066-Nice Organ 2.xiz0000644000000000000000000000362611172205155022654 0ustar 00000000000000[_S8N0trL3 ^4VJ}؎Ph{^?v}x {$NF:;oMzƇw^N>ߺ{h?>NŻ3/,RI@' gw{Nј?pGqH!~Da?JΏKi7 EAJE$FMxVs% 2O‘\$Sn c. MKE7u#L7 el\ aj&KY{s{ݟ]Y-xm:0"L) A<tl-7Gwҹ9YHZROHtɬ@ 8 <c곐$A-#y].°{=useLcB9 BXhY#3d8VfJ,b 8n/ ,`P—ĥs'KB"/ҽ|^ìAgpu~Wկk=_G&ѹfg . w"߷[-,IR{nSeha2d"aҥ\5,9|^ A)KE!잛Xz\~K*U5G+FqB V;U SznPv-}SXw*_+ RYȜFϊ;%A  /MK׼>hEETS2c*fqz "E# "!3ɀɔEis&b ꪦuJU¤`-Uu` <9#N ̜7žE5k䎇:fDH2˧aҭ;W & z61E,5I6m8'lZi 9*‰[=_ dkxVy3FXb(,*),XCl:O4Uz`u-}%s!ؗtk}`N,8QR Sd\D|8M0LHH,V#2}#"[(dj2bahĉq<.J6QZ%uRgֲ;-86Kv}ne6/_o0N6b T*˥<(U!.c]oJ7gKhUwtS|>>ֳv)0rvv6%Asu|#D"{4R<$P4'mçiϬ?iuOUeL՚k|P2dk?!7 7aZ5ѓu{Ci6 j}1_.KDȯՖ~s/'R{(Nr"_PEtNB{)Ljt5'eE|l`8+l%O+ʚg`+.$V4['ad+UMKWA&o8X-rn{ d:~uӮ,4j|c1lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0067-Sub_Organ.xiz0000644000000000000000000000173411172205155022503 0ustar 00000000000000XR0}+R`n 3@'g)IhtJ_4%Z[J-w_$v(S<'@:^=Zq9 ;4L }t(a|y~xwzrz'd^ ޹G+'+lԟy?<ߛ`ep""F%%a?װ:݊/S4hEcĸT:\%7 zO 5H+ ݫոcB䆫(X@QSnxO#o}8Lq0\BO%jzsdD(K:CjiY4:BeDw%wZf' /FFz@(Nj" `%WZVVQ_tcRg~jARNFfS4AIut\/*9''4CBK@<8(KT>.|OG*Rj aX꾮pTOfx6# }fw{Ȗ fۛ?jr4fQ:Gv0 Gv  Y*3:Poͻzi0cJkDG,Qz?qk{ƭr-ÀP<Jdb{:A83A@!#)eHGwmmԴX{n4]6JMwkskƅ:Ww*Ξu(Y*>6IZs{fk` p,)mSn\`NQNlI*\ pdj+#FnC2v&m6TfWV!%d;C,;Do uGǭ!|ZZC|}Խ0g&l mN[VWo0d42]~wi{oָjL K=Քd[UhփN<ҪW5dלlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0068-Square Organ.xiz0000644000000000000000000000355211172205155023114 0ustar 00000000000000[[s8~ ftXLM b peח4J)i.OGGOoyFIaw\<xw߼fԟ~z]L7W\߱?!`O\L4Ȱ?{ <ƽ{kj'I# =๎ ȣ8"2!["ō#/ 8LI bFP6y$O&b_A Su )l\R%)SYe|"f5վ2"BeqDN[$i04~Pj@!D`xc,gIבS<+.{FKv SJ% @b<^ϔOb3"N +*ŸThe[Rc!ĎaE`IO,y~FVj YD~"͛a*%Q ]\ȆeglC9 DK#,]Ȝzf[(krng1}.aNZc6ݺgSO ++nݒBL$6w0˙4% nu֩9a:}Z2de|MSsq;~O&8\Wku傱}FHrjEgAe&v+9t_̥Br慷+oVwYJ_YJw;gJ#S+u>nvpGҗ{v&@l{Р#,]yg눲Vam2bzAByŜ8"sEa]7]a:MmFi.E5t~v3`]_#`FoV`b[Ѱ7kvf0GHAߪw.O=D! \2`"26IlƩQfrdϬlPh ?)y|Z\FNX@hld)e&)J1DDYB$KXC9@CSUwvNaZa-KlKPRcee^0:QCqɋdQ@YJB30]XݶW8$N X(+5Z3 Q0b#:0]0]d_ -0ej+N9Oh8S:?ƴ(STimmdէ%O=R=f]iڨuN3o)VBȤrU*ENUʜN.HL$g*h(e(IqU~!줰?Rjf2IGڹT9 6njra+sk5#i@`^7Mg ʭTNX~Vfee u,`8/Ts^7#,6pRw:݋ݝ#jgۆK#`WP6vS ~:y;U6WizQ'-i4Izz=͝ETOszɹzt8VSU!Afa H~=+SztZ"%m``DD(sBYux&:[N'juȲwM#;,?7ݦ!% 2-0!X-(9y@ӹYJq #]N4'L!>-ab1<!"b$aʸ?׬FaYn_]\,Ϣ2]+~9tſKg W7r_Ǭ~ů,X[NW>?E/Q淃;6J_>ɜo(L [an Ð'.v(G%ɐ91bAC{9秈dk)Ԏ:(FjqpqM"]UU0#7)0ih5A/293=~#,@$w%K1W8+gX&?PIz%4| V< "RYOa%(jepd08wJՋrm ga9"ʂlš@BdF5ٗ(KFS(5k->OcPA!h(<6R}iq'UPRHTf)Ҋ Rl٬&K6%d~:3~ adIe&d2ݖOyb2}գAB_!`T^v(pv{7[ےaokB>,i7_񤐦+s]x8\) #2 X"pE\aئ8\QB+xe"VhEZa/ 1$mA+<׽)Zɠ)AV9=6e`P 2pf|m&dH5t{`Zp=т s0mWj|ߐ{sW˓Q]܃nOl`c]V6ޞ}VwX(ET z|L}?E~ˤ^9oIrˤl9eҹ2^NE"*jSO㜬6^ +CxB$F}cea#w5Srh ;J,դ C^l|&nJ~2gw=lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0070-Soft Organ 2.xiz0000644000000000000000000000361411172205155022701 0ustar 00000000000000[[s8~ϯ`yO L flY h--{m__tl]BcשP7?ke]y??97N<׸cYhԂޟʗ2}.Tk]qr#/ah$peC\{ShؙFC0 u94qrcyeKZ 9i5Kyf3 )f>?P! B+'buYLӥ2)^ɋYmbs1 C̅Y~6FO!m0 gIU[yH8'[r 㳀Ʊ1;UOU4::b[V昿پbĢOMDX7u-6NXDlܴZ!:9 _Qڙ{@S/$Ut5DB,.hzPlb菍?aK0WԚ7r B$A9nۢehn[\=Kfy!]+rw,yCSbx(ۆP BI5}}z]ܭ>eև!۸QP ڑUEAdyvLH ei ub[MKh,6DX1 4o i+l$6KL{v(S+j훤S^٭NmYwfؘaW[b!GQ.%,/=@!6mF? ^h *؅mR%۰s"Dal \lPjѲ0t7.\1h3rb13Ƕ4-l@A\Ίď˄HTVٰ~wX2sQd` db1^J'QY5rGMJ$(֧mB+8gJB"nlY.(L}}G\s5\s —Q d#bZ'6l+.-UQ7[rkƊKn%?ng7[L3%p74T62}vjڪ9JFVv2*_"R3sI|Z"E_``D1Xi,gݎU1T# QL F빝TJŅy39N!*rSj >QpZD5^ l&g@0MyܤiHt;4|Di_)`҄𽁴#PB[PU@φRG+9~Z눥jۙ#㥧&XHx^%k fyi4ڿx)R^껺pDι|WxYQix \sPDOZQ\~jfřV P}W|=F7v<v}4g_wg7'/y]4ҸJiS(FJV\%i4_WHjoL3=кӖvYC]t5S7.73~@'}V]0};_J+DH u_qiW,d7[Ks)n}Oq)ݜIl5i?g:lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0071-Synth Organ.xiz0000644000000000000000000000413211172205155022746 0ustar 00000000000000\[s8~ I`&IM, dtQf}Iÿ__$Ifi}tM,ӳ>z"~`{eqDܹg0w>|f|=rou5[8W.L߱z>`Wl7B G?GG[!MubxѫhR٦8DIΜi,gؖ0vDov8nCܰxT D 2~!$UK qlYŞ<{Nأ&lpgf3?SŞh\McGc݋fr (\y~Jw9A>nHnݴ9?<٨[g ,BQ,!Q3̻#ۺlġ ?0RFUX3PD\.F @-A@\ i:LqtؿA/Rzh%Nv8{擷;`ץі z"kon[D=%{Pr"2\;0uD$Ι*irvP¾ص<%AmK,k>{SمO2ك m<;N̬B"Avs8 ,of|,<N,5{/ _ֶK@S/sOTYFCo7;D >>noOrNTÛJ߲qkl%33Z $ zfFCz͂^lvJt9N8~B,E#͜D,3HM9B׃9C #EwՃ 3[m$"Dzit %QU`pJ@45 BUi,Va <J\s+)@ZvL8gprhCkh&[gH.<5բ4d_Pd(TiXS-&)%\olل*xQe:-`!{M;gVcE"@Bj>^o$o8,%@ ܕWbMfʼnX W$݀gbz1JT48lX;ֆUs0=3 * ;~"(XaO8h]3' †0)v*x,%R>`CI٘WJc:);Paq%(8iKmey+{`:"ʢl07M"* , X['џ܍Gޭ/<XAXQf6 T@ZMu@nuw%Sh Bߍh-A>/5jig ^չqHlfk^F20㝅==)ʕy*ڞK5)#SKb@ń j졧DL`dSH;uaǢܠ{TtɦE1'UZ3#Q_ Z䃞IѼJo@fKX*فN7;\`Pc>_f%-sձTGj^jit^5 뚗R!Gk,Ucz_{x?ʶA ܲ]6V,yDXrGY#cDv}H狰S@;Lsi.J F?LsUR*\MsP[W>νWLc`an^^/ [K{2\T.pXw Y5t}@ TgC)99ន_NƷ=]T)ʦ}L#;֔ILKNlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0072-Fantasy Organ.xiz0000644000000000000000000000450411172205155023252 0ustar 00000000000000\s8~_=Ca&Ic.^4 l6IO?$$c#?55ڕ>}嗗䉸W%stBcZ0^\t[{p3~9gcLs~}jb_b}Kq{bڬwqoЧ[a=:KrUo#&mkvJe*[~m:5luƝ(TYL G(2ηD,,=".lwKb魼G 2 3 JҒZ:$^Sc -X†.FG]?&CLg>]0.}mN ۗP?wҵ , fE+Wo; zZtLxI'QHԌz݉e^*s%Ə 7YL,׾˜ Z6I6EߍjGl纑:Xtlh?] 0^8[bo{ㇶ6:]Zaۦޖèz" gbDQd{ϵV^m|yl&B@?a΅b.6@KǶ&Ŷ,myh:?/̲#%Dl ~B+ 3^boز F"q'D.Yy² v:/F l<ӚwNy$,GPռY;f%8,Ly٬P__>Z|z1ubfs.^V- cXSI8hp> k1&&BaχNq_̷/& ] hT0B ἲ^:!P?-U'!Y@=5C.R(_9aV 61-UvF.kBۻ ]ɫ -B\&|@&'3/k_43K풺Ȍ;[h #œ]s#hdq Yj`M0hyf:ۂV?Qְ3[c76trSGR%cc{tʤOT,Az+6P#Pwaɵ+o⤿1Z9τŋ$V5U0"ʢzĜ`|zF܌-.Ж( K:pWlT ďn1/<HAC:o9UWSTK̟5'#(N"T": \0 [&8)scspH#4s+B9D #ԊeSXM@P4Bp>iJe|7+nrOL*r%R-&ϰqpR`G[fac FbX1\ d`tvd,A 88 Jǒ|LҗzGȘ%M1 38hdܨ^ qYkTv#jf28^>2i,%eFMg3sD4C=y9cif d\ azNd| bWN,;Yx`3}v7((_-,,=ڝqlY徤Pp|[$=2܉`|n&6l0 jS`Q7+ !B;\huB{x! eD5=Q>j Nq̊5yG :^8X Rp`з>U׏WMp\dN3PUR6I jS :>Cd kS ӲLGb2촰3zsbMadg~yr>yPt>1!%Lin@4ӅkUIvQT75źof DzUk{Modtq:nfDIYp($$ǪnSwfN'z]zqwqKen+UcvPlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0097-Accordion Pad 1.xiz0000644000000000000000000000641111172205155023333 0ustar 00000000000000]]sJ}ϯ=W}W%庪% W@N 9-1VFOqĜ934~^]< V__?{oWſ_ޱ#ӻOY}jmx~;d."=ۿw?^nFlJ[!Vv?6nGW=Yu!{_Ѥ"u;݌Z{gOQx+*Ӌ,/rסqvv—0\ NEThJJե+ێH9n>ԤfYHx:O'!ER34Z,Cs.ͤ\8'EeJ^6Aέ|]ic5G3)qɡi,KyTٚ7ъ)UJ 8I\2Nz"E0/Bw(R\|D%K5Օuu:qb [78 ktsy2rT`E*w d-ؾO;U%UœEѓRț}zIODR&*Z5Sh>u{ kkN0n#,Oݎ^n]R XO3+K8.CSȾ$7E,ur0/<ߥejYE0F[myWħfWȢH;+𸬮wUf?~SulON_zphXhc&yY'qjJ^-z!^oV^2#ǰ#E?]٨*}]NɐE,LDٸxzU8nf e}Y6t-LqQ>9AK',k2r7 aG\CWs@@䧯i JVm*g6ƀlJn!˸דϴ/QYFҐ!)ł#1تe-q֘Ɗ((Fd}+S>F:f"Tb*׶jb^1z_0k}VcZ5¼3}A;;<-}So`Eu7MGˊͅjXܮ:Afw)W8䆪R@7 E2^aEwغa•7Bf7m$d:/ R;HFe5CЮZ"z}Mea}(9E[SbX,`bS8 Zz^(nP] ^25xE1o뷫+SWm ^5xU[Wm ^5xU[Wm ^5xEv.$OAⰈWIK.UTc8,U8Pxxj,EJ "^*B}j^1z^ NeX,ՀхN;%.^^g9J^uv) ozZ^u=^_{h'pr^ ^ ^29bWJ9X+ xbX,7} ^s%7WYZeW]FWdqt$%'DkN},.bW,ˬdGrflìC2|&V ɮ ]΄RW顝 xe0;8 !bW6` Ńx0Fₔ-.A//A00zg y 0f56>ZAM ZݿV{&`hedFiP#m],],9^,y^,^,10 EYp<Fьh<b|6 8cb^@Ayr 1h(,?d(Q`mEy0 IF1 ,0$1:abt4~ %*M<(D<T6jisLy+, \)f}gE}V礆btZ)9^TC#p[+Y4ݤ qb6:tS7P0u'Q44:;SDYX!a*r50w2%gׁ4YܳVK~\>DG+Ug''ќW丸K;Rr?ISK%|lp~ٗ:ǻ@ٗ|)]+5 rOJe(z:%T]8<+I#CEch_"+1z5k׫UHZV)=S|ZͧP&(i5gP^m7R%> zI<>I,ߺI Ϫ/VϽE >[=.Yt,ArლU nulmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0098-Accordion Pad 2.xiz0000644000000000000000000000370711172205155023342 0ustar 00000000000000\S8')g.spI\E#l?(O?$d˴~z_JӋl<?p4ZЧlp|tuttzl}۞Fm⫣ (w⯞ϸ6&OA8 ,[!~v0mhdxrן # ]rټk.P}/#zmCOMtߟ̙9&R>.~Ac;= qa$}sB ЊȡAG.a`1|$~LPSvgϱjº*i8&wh`Sf..DoYo3F@ͫƺ $ p"O7er?|Tl1׳HK63L g]ñ/'{&ǥkX4xQ:EhQ S >Jh42DȁO+wMa>{KrsE+L)s3~&Kr5bSDJHWُЧpQ,tNBs:U߰* .zԱzh%N,k}6osmVis$b BМ aS(sϷ|$8ҡ=30x#m-oė]hˉR*TzD7-x; OfK8mzm+qYj!FC͍!x/vWK't;]tx-dˤ=K.zѐ{|2CHhc01z0G_@Mˆ Y<BkYШ,U|wl!R;Ce(.C"Awa&e)gPBMF8vTB~@8 ~FUPɭT0޲ʤ(=@@,ف$ԒOJ(!y)eqውGzS>/O"Hgjwim_JZ+1 x[Zڿ6%Q#5VF<,x451Qt)/`Ř(qڬ\c 4(V)%/!0XA/dFazN"-!g k6׃yB^@\krIfOף.~*b@sVݮRR;tvsL˚>Ka:+'n]&E% k6EuypW$ Kd K X7(T+}P v꺒:rfA@X 턠5r!>GCbщЇc]\1ط1Zy ,y gΛ!Z4"Ӣ|\6^sl.P*)JL)6򔍓s'w:go#{q^{e&B+KvKa7U,.* %j/c̜9m`Ş7D>/R8hDLFI)8{nV+TUe,ZkИrE݁͢c)[kLzV5nkTR"(zp8˕ꃇi K0My[4&<4'(ՅR5섥N{Ksal/}F=ns)~WQd\jW϶lݍ68ow\-5J\eq8Wqj+Q5νw~Ks73/ Cx@dgjFvy=U)9H.$km9_o j\,(GB`=o9ѥGyJXM㒚!"aD;M 0Tֲyᧁ /F-<wFpҳ^?J ? h|M nv@-A(B&@@,sv-lpcFȊ- R(UcxQ,]K'4MڋR BV$pYͨj#9;Y- {_d [LY3s>'Ek!C>Mq\[/=$aR$1#a P.Tdʔ"ƹU#r6dn5ZGoeV3t>_ HUjxUi1M;WU^ICJml(J7 ᶢ~&m.A) PHqtJD]A{9JMuVG mUTuX30⭩, "i s)]!iF` qk(HI-r׫87Ѥ MzS4odi%A47T{̥NmSӓ#Xf) #}Xk٧WzO5Y}=${V|tڧy&᥸7V3&LslI6$in4WLo:4B`H;f|$-"mXJ^.$taUubbvPtW=,~+SMmww@,0lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0100-Synth Accordion2.xiz0000644000000000000000000000403311172205155023654 0ustar 00000000000000\[s6~ϯg! 0d&f4N/ئW!H6lYX:7}$q^V-׹k5i9/iS|srrvQvz9 87'WQ\j'<90G7pmdxeaE Co: CϮ9&ޝv9 }bEH:nAeb_{=ƽ}'T_mHr߭Y}$?B8Aq+6fpUIDH-86b+2j!i0LOp:CLC$]$RZ뙴ͫF"oo$l }-(}u\f&l ɤ~@5TYu,O8y8d ; prwvQʽךm >qL\#Ӎ`MI9kIw:.7AW&٦] ĎCm#p kEakD]IUsDE`ke,X\.dHd"U4I}Kr{nsٮcÎ}WfX}E=rs{. ]C@S'sOkU\ߞCg-Q=D'+~=^:V5o(G=:oӟ.nSE%I_a-s^\,raDㄣ1$ \cp|+9G?x҇_`IaѺ0c {>A@fZ46t3?,hX/߻D@*o-JV&*B 4gRM]eKM:>\ڸS {ɫ HjpE "d(ea ITӄ=S E 56}pOqUkEPoj8;U-IίKճ \יiEkOFV DMKBV)=v J#E5@oX J؅mRm90ZtY-Ph?ؗ-4\RF0l6~)tft[+IA*b6p~E).Vg"2!JTԬKjmZ /1 & 4BQw?  ?/%{@iL$n*BC2P x`KF 6QxxhY@OqVm’Er&O5c4e|Bq5cZREIHkzM␵s6"EK CtQF>W݁W|yw4FVr=,Q3{r"E7D`3DR@`(sU!r ϻ+3+AD1iv#8jz4ZhxAUd5bpFÐ,xkm ֟UMDcnRcbp^h1`ЮMrL1F}P F$3V MX H{'(%o(;:j]cRنn{,VlK MXX=Xi8Xù &'R$g%1VdNXWdY(¯% v`@v| 9!\½w:ek<2چՎ*Ay_+ZʳZtg?;oįԪM~>:+E6!#C^){]fGedD%o~7nѺQfd\T˷0ٕgl|UU.9ȱ2~,~ӼKX*yM.Ἓ]B}7͝h7݃iېzvP;\jCp=J~;mJDH5P;1P;ѫb8i3f4M||Elmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Organ/0101-Accordion 1.xiz0000644000000000000000000000412611172205155022631 0ustar 00000000000000[mS8ί;5 Ɂ3$\:BƲ/@񋤕l@MOZ}}}~GFO槃vPw\p޾ O۟/~_ξZW8~׾c|w=6ɞx>ƭG-Nmf8'7pumb%QB? ĉec឵F_bv>(ta N"(.-e2̱7:A!Y fR6fY#heY\o`0'1IzTz.؉N?`% ?ӟ^ׁ9]%1O1&.s`!Gr#M`Ɖ |t S{P!K\$! E>Yput L?巪!qB9OMe"È ᙽ {œY-6[ X.M Ke/ o$$a& e?x$6}F?$GtM<}9G@Wхi6CAJ,_"\0^f*? [R" cETqL:a&riWA$ H<DYj!fWQ0w[~7-~v)嵓5VrؖMZh(u6z!O&4e#7_`rҚX?m,(Qxxi5k D>ֶyIcGK}za"s% L*b]Zi<_8R[5i tZ@ʦU=kМ)UOJR)'WˢIX JB(D%թuS;,ՔGS(' yP/ɇw #AK)E)50.9*K r l H;esθzG@X1q+&V򭹞RD#Wh:DGʲhP v. 5Z`զly=,53"Kr3 /S{9q[8Tm5 {tMMI`9ETaC! Z~ #|&V9&q OWM&|p]zw!Q[[Rh&yI/0Z+ /3ojY.-1y(MY^@~i?eZJtQMLE3^sAoz~WIڞ/Ɣ;L5eqS ޅ0NEoVwcv9-rdVZ0⑯QXM] 8] c*Q޳9e8)J&hbʫk޽hb []hb$W?ML^5kb*6^YWiw_}~5hFrsݤrxin֌ Ynf@&pnf ԛY>mY2B햊Uhn2ugBd]_;js5XLGyiLH*sQx  QS_ǿK٩ݑ ^R8٥мf}F~H 7ʹ_+rF-ڭU+F-?֪JV\IͭHE5ӄ0tJ8a?d⇈z1Fj~x QuLWe_S7lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Pads/0001-Sine Pad.xiz0000644000000000000000000000171311172205155022011 0ustar 00000000000000X]s:}ϯpyO i&3I:4SOM_42 H$b0LlK|%{O4Lk{{(aY ՛6o2ϖ V^'H++pl8Lf#?NkS"qkg冫GIJ<3Xq֭4g(ټ+qF%%+ | Tb&i*Sr# '< iEu@]9&`Inx`2D.s3g\Ŧm3(Rf~$DYī͚Vn}9 s' _e[/'+d'= `9=m;fxolۦhҺnGߴR= ig:C> }g! 3ΐL-U. .VW`0n|4 q'wmVi{j1KĖ5zkdV[U-.z7VW2CiFlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Pads/0002-sin2x pad.xiz0000644000000000000000000000331611172205155022260 0ustar 00000000000000Zr6}WzOdJ33MM4%G;u_0 YLHP%Aw!^p%#L:ӧDb={@k6$I^^8~?]]r;?=?tl1ハ>ԇJ"5Nk[49'ጭnM<7m?'|4ï5N"j? n-e+ćp薤wԹf.zLܝro(C,<9g;Gݷ(Ek,"BYtDKI+X$aúo.6`,m@A]w Ƴϋl?pdH;uke'n_=∇1U,DvMvUn6xgj8!w+h޷}̡9!/B -B92&(v!/jq)=wRB}b lLrl~@;2{ZV ˲vi^QN21eYezd8_d.dSȜJ% `8ug`|S4OkGG"Xw2 H e"o׀e@`Bv7?ܹn4RCIE٧1:% {5vV\UokO8+P1:טFܐ0Ep8Ih q@S,)7cŝ ]m+ h@bݻɃP dIjP(Ҁ_JM'@8@OΦ`r{G \׮'a@ \=$L _`Oo=/S.Hr}m~\-78$MQ%ke\$M-^L 8IqC, (/rSˣ;y{ ^jJ YU bEC ˨`sfhƍ]YޛHVb#6"*#19ՃЈH#'-"̊Xq}~Xcܩ xo8DW*U d aF㤞T5BqzŋAyT^L/b շgYT',ޤ^-Q7څ~SY}8*ޏWEmT2Լ>/b;vr|||oWۭ}]wޏ:va/?\ȟJ~N"ʵžx8rҢ~.lp;o=_/!0 ЧVA~J?[gBK !$J]6{ZÝp9DQB P n<AL՜u[5dXn钮OCU+lYu9'[^eɆDKӺČ@\lCT$db];)'/TpE2Lv'diynP὏J-nPcI4pam%ͯ[ 1.HE1s|XՉnj:Cb-{nq/*zmmsUt붷ew:3T`Ya3t,)I:9J@="@SYLq TW2g:9s?$ RE0qvM} xnygOGLEIf |qb$B9ne9'&Kg/t/.+]H~eI^ϲ'@TwecNmC'״0|5"f,Id.Z-raɩD/5`_Da2<(lW}RIU{QHӕP6)k]em ;Y5{Zp0Zxf܂$kY^ (+Zs{1#M 7%D|MFvιgǫ`mQK; x$`Վ>dQf&-`!ϧ=v*'߆0V+=Z\hr-\ Uu=XN6_D*@HJ'9r1mȎ`ODu:O֭ue0xd"a"at? <{zs6.QU@+!GA+!fc@~0%b!e8@o7? Oe|T[if|MiʋbC@G*lI٥VG*^Qe$?p~3NFwX٨y:SvOf1˸h/LvYs@ҘIC^Ҭ,?y`uga0\ΆD&a0y"^t|(40J` TP;=9r> YwЖΘw茆!Cie4 k&ן ǽ42&=HR7;Ho))#5iʱ8HSyGizk(텰2RIU/2Xjpғ KmC*gf*Mv>kwYϞߟv'!Tߺ< y0t~&L&׌slƹI6$qn87Hfƙ쮾N2 m^Zzh=?i`h ϔwHg2.hT /tW/.߶~+"NmN0>t.lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Pads/0004-Analog Pad 2.xiz0000644000000000000000000001465411172205155022451 0ustar 00000000000000]r8}W=1/୪)-W&35-ѱ%RGςHRj.~bsol,+_~,ou1ϳG{mMod~8|rV?Sְ;L)Qwnrv>pdIMfϐ*/ބM9T6γ'~E2oiRm%1{rv~u3`3ӼRK󧋻/g{7Sfk*5,,5|7)]y=ҶCWlc[Wհrz-ZTTw5W oy6$,-:߬ڌU%;md4ݹ |)^sIk3!LY31l[vT/U[Q4t&^Zazf1RB 5'Lv~i(I3Hk__6g?v~nכ]\ZOjiRXwȱ{[,H`2^=Wfԋ<z-Zʛ,Wyمi ރC9A2hN{Mzo)v,iR>rt0crfר>b{c[TvtmZgSHUa*9s5\w#qf=Y #Ϭ Qe  G4o7t-v"zANao4r6N[2;#:l,׷ЈR-'+ɘ$m-9HňLm%[a rB甉a Zv70< cv$ S8a !e a-l{@ء@ ;RX4v֧0Z~!DNpc:C#@KXp:MSŽوJ8APz( *c1Zk;ư%R%Wu'E>LZBa~$Mڂ2pl. ke*)v)܂s0A\2\ mL$ض€-"+B_ |q_7J@yQ[uQi(Ê\qV:As#)`yфN#tvk0XBr!.!(IQAK!cay}t le2]5a誗Ű!6k?w8|A^8Vl ]g<~ͦ(AK)׃BY!,#`SmT¤_Neew@%L)kglf`D/a{YE̮|7fe-]g1³aʍ7+0 òajL 爡^A' >lv"rbIW{M{!R ~]q`d\fwCd1I(b[T89e H!2xXfi8B ,QU_m&Ȑu͉Z#Mk |& _@ae_,&):@ؖF$e ],%by^H8S ͠@& C ʼ.W2L9(-!# Rv>0v7ƙC %kAv-عH!C>@Ԩ"e5^= )B,g%dpRI)Sq_ٜSR%PNEЊXa3Xfߊt C(([Ȩpr: x#ee));@o9~ T μ(btu^*`Zc Wk ! DY}H )O6~Bp2ʴ=;k+G#Vف $POPFpR&aʙ6y4Pg,~w8OJi[9 HRf@C*'^ />S$FUôo!HxqG`uH13B:0 hQmIS [;0Atl+i Ƅ<9Q\=䍈#|f¾"Je5e Wm/ĥ\xAJg4qQ+|sKިe 9@7d|B$R.F),CƋbE+G8!~F/ Od=|-*|(P$6&4"q%0Ct V(6eui iKCAz 2dE.WT!m dA6#Op)`lq8UCp0 0i# Q|!,Qέ5W 74L[VUFb0] Zu1&,~\)x;D 89 Q FrOnsQvGG/o ͼ(}(Cu\hڕ}@Y9Nɛ]qF Jժ2lU`B3R_ ,ǁqWxLǷ" \i$הq"3R:RSwbd1:p}愌U/QYԥ 4$@wRܡu )O*#q@d}sdțIn))7 %cFXͻC'?]}9ğOnN.'wEfR^%Y6guE xe>Q-_>QrmwӢ6 a"H3|v׫OZGrHg,}Hf/ӯA'Hgo}7|L\_)W&bEuFs7iA%Lex_-畖h}ҢUyQv."o(i9}lk4y6ҫ㾈[l߮/N'X;_oA gN^igI6Hq^LF,}ޠw4c;GO3;0YWv/|QkkURh"r0_n2x|ɦ<3*zgErI>|1-PͻG޵;p'Oi\<&? ڣKrt1 Zo!_N~JzW7xT% iLQ{:]Z<vmH쎍B?1d9~LCK_áqqpol MvYF~=8cD]xaߒ}?HC|]zV)*9r3_qWC vC |_UyM e'o;|Uhn0_֦QZjNkb}}^FEzkԊ+eϳ^Qۆ֫tfkK^0t+MO=M^OۯWwf_=]% ۻ/ow~Ɏ1zqo~nCTw>D-=lCQfn $MtMËϬۃ^~y6>d]';mmsBܑmGw/̻[Wyšh!~-\|Nf?͒2{Ulmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Pads/0005-Square Pad 1.xiz0000644000000000000000000000352411172205155022502 0ustar 00000000000000[s8~_!03e.^4--9H &\SZVo?Wu{zxo;Ca>lŞPӌAHܖh&vC~X/~BЉRf+yO~$Ņat'R o+?e:-m7rnH-CT2y@,CB#=D"Kǀ(ַ-s)t SvU1M(.ւG5]x[5EFº+}LA .JLPFWl2D|fֹ7s,mK!?BE!C8 9k2+] - p^+d6JȾt?n-h'Pb[ R*'^cI7Wyc7p{J%*whn1/T9mmd*AE&DT01+ѷ42crvsLI>Pod2h:e*岩@ө=AZܵ=:gffk]ߛ0JY p1^'zU^#eңbYW*o3~r4|f_S|_&NQ=7!];匰տdfWCV(|47i.zQ&,i.4 r˄z9ITNs43yaM7Svih]o3~}~&\0Cs0gg!]"$պ4b'tf{zwcDյl?˕߄;lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Pads/0006-Square Pad 2.xiz0000644000000000000000000000362711172205155022510 0ustar 00000000000000\[s8~ϯ`yOIaLM 22jI覭GGҹg)7ue\rmU{wU l8է]pwqqGܛ}~+p4|ϥ }xwq#>J]Uѓ  Ux=VƆĕGDp4OxD@g]Fna#STkD7;cw}gd)ؖiRE^/# {GX ὢ>q$VK qhŶe :HuM6p4M,vALB$][]DfV7H@<]zo8vhHwx?da8P*tbK!LC^,"^3eV k&wľU7|9h0vMhek&& uiGdM죔k .r^Ku~fn5I][ ĘD^*p-&wL˕X;*ȑo1: I[$9V]P`.Ħccy`:W4jX}I?r.\9@'l+Ѥ؊ESq{bX0Y8L5u{.B-@'3"Ne:.0r-Ͼ}/r¾7tYzʽuj^S>c_& '7N]B戟]`]lVo^/(LB{@UՆ=>a#gCpOpK@#>Gp0c0~GYD~uĐ4zbhFycNR2O+XUBK+My֗hg@hBZ ^@HJ҇ԇfSڇC]( 7T!D#2J`xO$YA@aN#R 裥fK[P:"(kY2ћ^.Y06kWHZ헵(iƞ>$Eg85ѧQwS.b&Þ^x{З`. i= K }Hjx,햬5VK;s5ZDzV#]*xs H2Ɇ,n7d(o&?8K%%|̋'XCNXͲ݄eD$Jj^ii1*r``Xy}[bri2wnPT@f@@9 n}rBHz0’BؚI2ķ'yK6wDE*MToe-(d`xY\hoH"ZRQvIz.ފx4l~}b6)e(.[K9O-L)ɬ+"/LRBI+28^r v_d-G06C DTrittEMco|aD`* v֜Y 2­KIX*.D%%b^XJ?%m(jLs3(fI`Ւ>Z`^G cZ /3o*x0VSjS%31SmdL_$[d% S%*aL̔vURS-So޹CN%ŗ|!zI]qeO{NWm69&mZNh];vW0?7MRtՏ^;#ia|O|4ERq1EB"\LsP/] iM3@sia/ v<Η3ܐM3@“sCzD;PꚶBS\VMfUqo{~+CMy%kHBlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Pads/0008-Resonance Pad1.xiz0000644000000000000000000000362511172205155023124 0ustar 00000000000000[Qs8~d&MK)s tQlbM}%l#i% .)^Wշ勏/虄5IP'p=09>^{wj>{I;ZLkM\(rRc~ltv=+sQ5 s=.g vj7/F^LI<'4.-#6Ʉ80$4Y:5@?5c׍4sj;wv7M-X;D!Gؽ'P/i.;=)b圬|Z$Db_/?pH&`e`U3#Mc (!?Έqu/bI_jE8EkhuQHqSv #75}?i&k`@sU7~M`m=3h)eh5,px#YҲ|A)bGSⅩ^ZsX0oKfz5r:XOI{b邂4nvKqIRUa8# D00Lٿ/Y- ߂wo~-o\Yqq?;?7[q>^[4d'*1y BQ a),fq4tV!OREqo>0"}@}=Թ.j4eAݨ@6l)jm] y, Vl(kdtHZt*hfnL\G>Q_1C{4wWvD|s! n =IR{ r<5D&&M8bkی&r# GÕK0*;ȺS1dVX]"ř74AY̰1L= k6t=[Cl\,U,;~&(bI蜁Qҗ\,LB̈́ !AhvYNb+#0-@U0ߊ)~Zj|'R@mL@rEEE/4. l(-Е(JK٭$ c)[);{W~6S2*AT1z94n*! ]lRJ *1VLi|P B.cɶSxq.'oqH>n/S -&^&H>yɔF&d./WəʖN:H550im : lV_{!_X¯bYW ! =~XWnVU:Zaįkv VCc>>Y'ZXT_kf|mq_8fѯ|8 G*5ytf]B.݉|=oQlOߏ—AiJ~~d%Ujvdtn%{N7}^;oq˗~s9qL'3ۼ3M6n˄^9o r˄l9e¹2^NsD|jٮֽp櫩~4dYzh퟉F}sc_8e)'LRgd& ez&mbZU`?Hy=lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Pads/0009-Resonance Pad2.xiz0000644000000000000000000000423711172205155023126 0ustar 00000000000000\Ys8~ϯ`yۇ 1G[I؄P@ξ[Of}d¿_Z1LL-Zm~\+m9☮e;w'՛~touZ8g>;R~ (*{b;=~Yx}WflTq8Rpt՝{u/I{`BXExҧ[Qښ8Uocf ~D ۲}#pHdd%.W>tJL M (KT%u[ML@"o(ȱe{pmƬkdtsLe蒩$4Q=uc8~\I mB׺!WO}O*+:V߹QLKjI6+HGKb".\ =HǛE-%&rFIb['ՃȊ9]QMDF" d,v=YebyQ?BY|bp2O^^ns46|@#nTVݫ\:f6 }mhFp 5`}# ss̴B^!TDL LI[LQlL3-\6]8ѝK~]\`{uO6G 󀖮n"?l; HCS3<2'gjOvK(wd.\pgtb;9c:~IJo}?ewהe//=M?fҟNEH0T^3^7Uϧ.7(gxA׉8h !m^|2]'9N,>ME9E)ŨMopMX$.0= @, *Dal!`ʢplnMHT0B0jUC/"!@M>Raa4#H9@4 NJ-h],D@!4I.>aFb,Y{QF!0q@\O0( WQZհFe"wh/,O6ce+La$>T:PBs$5À@k4gC`k *Ff] iesRe.@7q11lz;8S Du?m5u9ARҽ!aS=M%RBIMTk&瘈2"k vľ޲WCłjDwI- hJoTӂI**eI`Ii'c74݀5Q3;J(oX}alX`$f.U$̙@?B}UՒe.bLhňr0 z%FCl}u|3Ă j\mu&<˨¼Et쩢Mmg#[x.a,@Iʤ(. u(ƊK6}鎮Yt8I 7+!!>e쭥O-뙰^ Ei#)XB$Tyť;Jd~QGk䡯{# 8C :qiC{E]ȌPVi`bj0*j0pz cd$*ҙ\*ܪ O[-Z uX YS,P+|L'{q6,= H) 7&,I%`J#/ X |-R,b4:4ne5JJи! I(aI,FqK.Ie& Rߢ,qw?`) |PXJH*nNX H}- ov]Xv X董r}3=\{%mEҜD*F)Zv?}Iapuu"{~|zZo޽n|;8Go~T{/<-ď'0l8p<4& ΃5%HH0 `ޟ9dҟ3 G!NB <Isu} f1Di"<*$0咹 %ڰ٭ 9}|pF /ru3˜M׹j篱MŊǭ.4&LجY,62D0 SʊrD8򠂺Yķ3p<u8&r",0$KIrBqQDϏWAy@Tw <"6Oul^NLŎkj,.l2{?;VKqc+F7y,頲!K Ox4%x0wЄ 9X\uyL1'ݐ0 |=6  CaVy\x!$R)[Gh{biҕ.'` 2Y`vxbEGKBܜp,:ua*+$]Ì2M쫾]縅͓ ӰjU';cuÆXuÆF]C?`,]2K˲f61F K-lcF&k8YGޗ4͑bcF10v}&Hf*VkMRcj&+)]X6t[D08ZrTa$^e[š9 Zr8$LoUVBbl.a&8 os}຃[𫮫di>ufQt[t| 5*b<ʣM+k4ʨacW6 Umn;c~8`d%a6B]L)vP̱=q6j|/ߚ&}w7y^l41F8!nsEY~ix )%$lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Pads/0034-Synth Pad 2.xiz0000644000000000000000000000333511172205155022352 0ustar 00000000000000ZMs6W'2/yvFHrń$Tt. Sk&Pb2GKҀǗasw>^{wz0uߟg_}*ջ >_x^;IO`h<d Є,9btpnc&Y|XO nYqW_``6sl^x+E;? H'tHdĩHŢ}UMa a-KHaݷ[GsEʞxAfFbve582]^SOz&'k]m<\/tH>3  V&D=M;'AHU^vy><,tSHx7a]x-ղTGs6&#TXu-}Oky(k3Z%Qh<#)QKYJ%[yp$N>Q%KE;bcg`4MY)6¥FvNMJ*md$\a qӍ2Epb3LI^X :qrA\}qv[ج!:^n.캒faz<;݊g|2y"A#u%rPL#y)\Ymh)>lkRm$M2nzACFgJr\H<Ǹ'*e#`+Wa+Vm]r7?M?l1ハ9҇J"5NkK49'ጭ>{ oL'8 [8p<_kEG5ߥ[V(K 0-I[m0ns\4OܝroGQXZyr.vToC#Q$AMYEY69,ēV8,.I &un]`Ẕ)ā*nIf;Հ`ˀ"ww UOc./tGb6O6HߠNLŞkl,{:͞FF*k1h|)]`>[U.:Z*0ܟ>G[4{WYP+YOΑ9uz˄)oQ,XIUvʼn4oYry'@M'AL,`3h[g(y{ҩvZ1j)A+.u.`a<+_$i?eF=~AWVꢐd͡"SCg[LPu`MD4թ=waCaCt/xCPk8R2S(-bd\5l0Zedݏt 9RXq]Fhy-^ejHTjUuj BUYCE I @,`ӄ3X0Ey{М]h[vNJ⊸N8ȩ4yW^vKKyvISw6G)gFn)tdz#74J_e" Bڢ&.ؿΟ!IEuϫOc& t.I:_k.mUܴmj/O8 0:טFܐ0ET4EM賤یwf,pW̓|/ĂghZI 5 4i/A"&)**ЋݘcQBB"oµIPppnc>ȷPfѕw3,SiW#Lylr6m`Bpb8?^tz.Ƞ6UN2P2n>iG)TqCFOB}]kbP&_I{bi@y3_S˝e0DfU&#',NOWyo|z0g|~0|y0݃y3׿us6tׇQʮ`[VAM9hBۇoYç揸E6wYB /r eQ?vkt#lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Pads/0036-Synth Pad 4.xiz0000644000000000000000000000614411172205155022357 0ustar 00000000000000]r8}WxHݫLiF;h9H-I9|6 <@JT>ML}h4~^0cӺrMxw>z~zW8Ϳ;vlzA~oTkK|˻2>m&_<ۿ?,wl1vh=ʷs1rjT-c>YMrr7]O{gѧ8*j2r_bwY7\W7vQ n}j}YFR !]-,@%Tb~pjAٚwWIT㮆5+@dKUd(" s!r}NJy3T,O7⎥P\2:>֙O`|[eJmn_G3>ھs碂~'%(cک4m[grq3*ȵjX[JПLx 2Z.; + +UD!+V.$W: '{O}[ u-~fEHrֺ b#&R1dMb|zw[հaJx}{ko?ۣIփ-uxCyDEɡ: uW_[dz pdBmlFxsW 7ŵg@ b1˥ e6#ɓ'(Q%+nеjǣ&:,1qOe Wn#Mz+)ڟ!V2={[- H *؇#b0ዩi 4U+Ȗp%qcdnN* WW3uLUN;/0sӸ:[l곩&7JϦ>l곉V4m1鳩Ϧ>zl鳩Ϧ>zl鳩&ugS_M}}6gS_M=V>liϦ>l賉vϺz賉ڭiϦ>liϦ>li& qM\h jlGM8(91bB1' aFM8(`EL,~i ĄƀM6'1`lb)E5eOLBX( (bX, ,:V,â8bW,^X+ xbq3xxDֱ3xe+ ^g YY+:hBrn(Vb+/g=^9{" ,@7g(QDw.,sfCg`0@F90sg0΂ø`XV_qEٻ*(nrE7FP# l _t0#q۳De3 gǀQU(N!}*(Nba]VUY?2u݈4P,AetSǓYfZF1TV(vQ4]1X*G$ES1FT(>IW̘Q[%h+1lb^LR\$G{JF& <m(; IMZoQIhF&uݷ6stE|`14Q0X4 ]pLh5v<q-{R qsĀ\f T5L(oP oS rE#qr /7Qшkܶބy4ZCy4k\Ly4\ υLxGG#FEx›<5.0a<r0϶ /h5ECƢ!X4k,,<`ۆ<,jN|UKXD6=(PB/3=)J%[<. ,E+!ۃn5Z?Lng/%=S<5Ws%}zݘ3#{{)SZVHn/Miw⸬"[%[O7>Ѝ,* R(rKꑵX.mGԙTgG>ّ1 f>!JdF(dF*fb[Z͊o"')V$ YoU{AI(f QS 7: ec)Ҫd象&6OĐRL^+WOmdl#̄{iv)GE},&8#Y5|#IvԤXUБ떝#ƪf["JY+_ F)qp9)+)lfEYrWjC9]x oNqx8=ɘ-) OctpbFYJ|3>#iͅsMpg\[(PC,49{Eܗ(E NYE$fͳ] ZOYܲWIcbH҅x"}?wٖwT\uth<_̞oH;휮?B<̭ۺSMB:6LwoSi c$D"Ù |?],thpOu&(!1^$JqPeLQQXd_/dSt@$JIcT' ֩i[W .] 48=Nƣ;4MWK%N dn/ ́O!y,d& H*VmbF]i^,6Jt 3pmbOwmhlX7#]]z1Ak Ya2=h_$q,DւbB{%y+_>geIr1MUӺծ07؇n,6Ämkڃ*UWAa9y FePCX %Yф ~`ޤNpDG,eG@XMN8b׻<߅\jC*Xjxt$6.VA`oX&9c(ʫl rv 54[vJ8˩(al0vO0Kuv 3w>wETZ7 H /4[y)ID\W 5H%#6郋>= Fg9k4Wx2)ї!^kO.l\m( -kN[078pKBlRUC׈Sj(Xq/ŪKP quGc2E:)~] h8Ù=]o,=7h hM1#Jl@+$VT#+ D FF1-ahvFV"Ӄ1""E5p/pp@`A$Ș|EzcFi!h׃~ԅX̋Ba %Ry_TBRl]p[c[`r#$ ԮAO|:u!uz7T)q-"}"E-Hj\0dQ9NsדNshϏh/h{G?f=c  㕡s:tWD:á{ Q9qB˷E,w Do.r&dRNZt_m8F*_Wt>? nGGvY,S `Qƕ$vpAg ۃQi[á4Z7Gg㕒GA֘Vn}&1 "Abqni)kWHuB4Ih͸5թۦp%.-)gl̚ʑ?տ;,@/]ZC8_Ub0cH X X:c=&6(%1љGp/ u PRōSm "y{i=3^8u :'\{yAԹ;o>)29UQ~di,CnT. Iۢo-\& NZkKwr$W rC ϩbw[/`8{?0V1VC孉n%."uS\5h&Ѡ5h"kpn,yYăm96MJ{P=6 rFC'6j5(Q$'M5B~Oqy}\`^L[[אۊ#X$ZY&MV;UV;.$ JgJnoCu6CIfa3|]{|7ϧ{|7y>ߛg!>_cׅ_zkDw"X]пן :%vb-%A*Ka\j2j9 \5: \#z5[U W-*s QεUV*4稊{5몊|h;e ڿ/6k7&KX"-n-!ꍭX{Z@vx%lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Plucked/0001-Plucked 1.xiz0000644000000000000000000000374111172205155022641 0ustar 00000000000000\[S8~`N-:Y0B`F q/⋤#q~*]}z[$08nYwZ[$pB [7nɇG]N^[.]GQoˆrm'^?c]GK{bG[qǏ\GILyJ[Bw%KI$Hg˘Ad:%žfʒD 5BS(r2Hf!UXU# N`x~E*Scl\S瞸[Q;d8Mfa:1;ϬKCrAJ dp _&%|.I ms \@,W+Ȝ`b_nynO 휸Kj\Cc+&\ !Lݓ%9!EI(m5*OB4jIN>+%rPNb093fC8Uf*/ph+ `F=yxQc)i Yq\% ց"V+q8+ElIp0 1t!*-kWvf7)ӈms-B%fQI  QL)⢈ ߋl ̽P(we@(G./Yg ;KjtZ,\8x_Mp%IE|qBBٰl̩\~*tYtӒB:)䇣 am(4ֱav!0hr̹M6$.Lwzֿ}#:#&[QEN]+Ta푶 eHGp')``|Qa܈z0D+.5̍%n[#Tպv\, F\,hʨfMaDϝޮS8CצpFoa Ȍհ?<iH/WS{s噟yK0v<BI:u8#LZ*ޜs M3 rVKCe%j|:6j<KhJie<&JT)aIi'c7X lyTMp [N;*KP˺K M?ϰJBD*P<(%aʉ$O)jp ] 0"H\<^v,kamaT9$bέF}ƓZ߉.P2S7մ9Ģ"Ӣ|6.^$ bѭ,OC{fqB?GW)6(=mmiqmv"a@NeTeD6 3ԿV4jn(,X'Ǵa}[#mI %^Aw:$N OO;1WG*k^A(J.ԚP [ R^dq7T5lw!e\6DI^RHJm R %)eTt$p!HJV]&$e)-P(ou z 0݃-:RMWR~WRB)`]K`iL񫠼Tn_1t7mA;kTΕ=_ӗz7|M_JNkM^*՗kT;UmތOݖN/_Tb澔i@|~ (U]W/[.$ ]ՋƟ[UT,"ey?5Fj8Ilmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Plucked/0002-Plucked 2.xiz0000644000000000000000000000417511172205155022645 0ustar 00000000000000\[s8~ϯ`yO !0&0e6,v_4 ج/i+㋤# MڴSX:7}$ty<?p\T'Vëɗnߵ۱q4sl_G%Tk=qG<~<+C+Ov+w8ZT7v&>zޢ%uQ~/"5*[w]gԹNq,ճh Wd47DG'DNHZ9nђV:m͈}UIDnHu8bOc6DuM6R0oI 2 v'wz$v<%oX-c+|^'̿Ne=D^V [(E4Dͨ?Vz&PB\<]pAƍMgdrs葬@xr @@\i:d'|4v- h]F[.ЄDkDm(\ksmɍ\pj&qs+[,DA7Pm-b#,߳xp\Bgz+iat 4t5ߎMPD'}]o=^:R5)]􆩫}?fm h :jλF Cr͜/^N*t:p" Po|ZR41WFݿﻃ/:a0rfaX hl)+hY/_@@ܡ*8@`) V i ^![P!qR ҵaq2g„}Wh㚦7t + JBh1D/ !y|}8P„҄ -<`!c>]aJ=P#`-)ajܗj/{y(P^z*k-8@Ųf0 źfHES>; ibLjsm"%</Qw<tW\2f@oyؿJ <'OŮ\kyBCÀ_lKjd~N2ꆳ+kiqFCDx^@jsI7/Ha;5nliגT1IDQD ,3ALCN6ۚ{>nkVϛArA1jLD카6Y_u(ɺW6 X RϡӨܺdLeOIsbc M eRv0XQ6 1 5Nj[-GQ߆پ˥V7¥ 0~H!FI w\a\h|]D[l/ұLlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Plucked/0003-Plucked 3.xiz0000644000000000000000000000345711172205155022651 0ustar 00000000000000[r8}!& $S,Zjb ˬ/+㋤lps))nMWwyBMxV;!lojiÇz˃yϚvl{=>qo?\KS|Ư84rVc~LLwͩ9++P쒛_b€ˈ]6" CЏ\BU:`k͈%,#'aH@Q ϯݷ<7d I(ɽ|ZĭDbK8^gÕL=y2݅͂(QoY3LNs (!?-۸fuh%(qPPZ!C3Y?ȩ,7W BmzBꦙ=2mɗD |)? |umX4+L)˶\ ^ҳpփRUDb"t.rIq/'r#uuW*4Er.&SF՚mpˈbѴ`Ȉf׮4;#qGf$&79 ;îfl`%GYyX.'n'G1#D .kr8~?U ۤ6JD)+,z(4K+({=F.Ѥ;|t?aV#$m|Pǝ,țh%ݰ_-Ӂ te-;ϗ) y}p-˂%ʂ%}/ ,D)50,iRLyPV 3'Hh`blla+c/ )8*Z9#pp mƫ5Zy,,f gm 2[/UQԗ2 ȯh[6ΒߏnLgoN#EӁ*LT(VE[5OwPϺV RJsi/%RUU iC d8cF8WWFJ#3'AYBoig<Uf*sf|Ґ㴬Doq7N'FrG!aôr(Uza=4a(M>! *o>bC`֥9ן KecK2K/ζSwGKMxԡ=a)ĔSN91ZjC\Pvd+OvI}8Շ_GOny{|_ߏ݇]}?q;vlzA(#O>?Onnzs+ȷWZygGq$r#N7/]E -Ϗpr[EϑXbKO7<@tXVz\:k@x8ѳ?ZO7wUwt1r9+#] .OΎ:i yJF2(f)~^Q ZTE*UਖRe G&ZOl]M/<'ÔRKٵY8aJCTĥ*V7Y*HA%fȩY!Aٙuuv[5nPw_δ,vv+׶ v'wْ̽Gulh|C\.Jꩾ\ϋŴMJgp m VECl厥Qt4,Bm~)ց8fN$EM۞+6|[FF<E)cҵbswRz|W$4"DuN,<+9VwSK~@iMqqf?ot2Nk!Nf24n 2ɉ"s<15L/.a^^i Yl.NƠo.m*7Xæ{ҸC\B-o2~1Ǎ7~1QeaZJAN_фv~W49ח~‡~[}5;?VIn Ww4n~~Y:Wzk@KnGVVAj1POKB^+7P$uAM[:^Ҍ kJij`rk5]4c=UNC(mw6ͦǎhhjUZJi [7۫a V{e/J%԰cɍ;: bWwDc{52ھ trA32W?#e?Nw򪩑PT6 LMi>L5Mi-O4JkMGLN \S'ziM-&dv >i5̴5-d LлTm2vEJjj>sM 5WI*#6\M2Z&dM_ eteJo et4h]wL-Kb{t]2=/Ked~* fH$Ca!#Qc0fGa!C LZA)\q L8qޥœ laF[4 „x2Da0b,44U,t60x}+Ɛf0<Cƌ!#lhy163# Pj"C"C1a"Cm""a"lD$ca?x23#A_Cdf ƌYd mLuC2ro3m!SLLAH/63[^b66H/9"`1]UTOZaJ\"#|@F'Sk"LVdG7f;%b=4Rﳋz%@GBL. j? t„[,HE0Fl/ f0$6KaɵrZ!;"2!yFB~v3򳋥 Q˵S5bS|U= C6O~X? [F ]^0 eGFB1@$S!!~Fݔ!!2}z`|YqɈ܌Ӄ>!>c.)Q?1}:U YrO]?UHȧlhVIÐO G$KL'7[=<BJ>E%8>uF=d |g Ɉ> Qc"kO{ #}I(+Ht%ĔLʩJgP]]^$3k=P=FצiB^gT-,Hg ҄ɥ|,H7 P@cڽ1)ƑO]HOF %*$볍iIINL$f#% dg$HgD>fH֧d}n bM$L$ӷE>ĘK"YXhBY1d}:Hg'm&xE>;3|33/QD)d}9#FRcTtwZ3R ZrRDsHdF,VԶ(-$2Urx=v5ڎj ʣRJ{u{z񹲳e[8ҽdmJގ'ɼ*kբfo+u tcčiZdff++^Џiy hk hݟJ·zr1>*aҮ k"]CTk$i?$\Sƫy"pفr5Y.QlS'J?aj)Yv=zltR-k-0*,jY,l^Ǟ@#7+:V`\lbyl]N&&\^.NL%Fa7N^ZU.Zu~ T1I:yܥ*tJ>\&iKJЕe,ŃJOs(U$fu?^u.+ `j^xyoTc'k$s,ɯ`juMPX܋ʣ3fDM?OvO\ƽ?ii:*ڎfӴZt4 g,F|r.W,I^eSS2 şT*Ԥ=)hw J D,??:W%ìì};/ 7'kT5r0h9OV>گ@o~5jռ9'گkݐy wkޠo燻9o(8P;ӻD:}X4*MPL~$&|Rn&nnvq4>[R/zllmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Plucked/0005-Plucked 5.xiz0000644000000000000000000000414311172205155022646 0ustar 00000000000000\[S"9~W;؀ UPK 8/Gfȿ߄$9IAq~trn%b^y"AytT{8Mz狃߮?+8#|qpePU'b#G3xCWv\Unq\uV$=r#ђ(ċ6 W!mtJl MJD%tK/v@ohı${]&kdtwLRgic^c8Z%n^Y1$Ւ>]w*!z[1_-|QPbiɚQҽy&PB<|?pEL`dGj z葬@x )x|!lӨQuyFعB㯃JrhϿYss{ݟ]3ɟ۵h'0ܷhCQ %gYY6L"WI\WdsUJ1cOg8Xk{Hpv_ۮӀm -}%fV^ݘHv\v|-C-+Z#'S?2'8~ve@ˇA/YW&|;* :阣jZMבyMZ7L]͔tRoZe#P'ZD(A=HS3ŋ܍b]NA!?{.F{*1 O@ pEo;jbO(jV $L^N4.vCP~XogW y>e80)?4N$>dq~r g2يœ5Ct}aJ}8#CA1%a<JVi8:|EaQsEQ|*jCF#LE M#/ګbƪv +jZlɠƲ`@eRj kԵ멏E*ZghH/!Qw<t\f Ileؿb޸/ XOL=[Hg!?]BEmRk%۰q"D0T79]5+ o=&%ʭF? =T-!bs6{@Seq(I1K$R'cI7L gu8ljV݃uSF 7uC|rϕ* nk@~O3,q -8QJu2'A) W mki{.)?|8R Cljd([s84 `r-gj8sC,*,A[( v2ri`drvVEI(9#>I2f8_2>zzRB69!*[1("~ƭT%"a@*:`ݍTq@DxX >F&z=<=SOZg(7u3DHv O)Jј땏Κ"`|~TJWLwE5lu׬!l*Mz*3]`(GàT *P;zU,rj@xU>c *oƀ^m?*-^:<fP¯ue+]ދ/[v #V a_}(z[9aMPZR_mX(}-ϾU8R|-_!\<'WyapUoL5۶6,(GNvJ,.@ZJ.P:4AK/٧ }\XYbK gS; ,r_5=GYR%/e8X* y|.ن?:.2p;yQ=Z <&Ez"\dv?EX4i%d5Wql.Ἓ]B}7ͭh77L<]Zo%"IKmM/[^rP:04ݥ?1zJNz]\G:KU2 O_ubLlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Plucked/0006-Plucked 6.xiz0000644000000000000000000000656111172205155022656 0ustar 00000000000000]]sH}ϯ=#LimF쵕;PXB6 <񿟋 }VH}~ï7G']xj>=qt_~z?ί_''}?vdzA(K>r<^[;|}<|k:K;O[ҶUvb]oƗ6,gc6ҵ(z: *i<\*^T%-eR{剻xڎtxݺ'Qn]TtEUz7Iу9P :ҊlST,ڙMp|~n~WAd_^οk-_uFEnm eƏ_ѓ%S-Gn;o`z9}p[.r v-ʹCd`{ loo<' mK#dU8!xwcܫ:I #mԁۈfȽk(+?X8K+p֎ F19{Y悇H 8Z:Pyˡ:|-:9Tsm2:V~JW:p,PJ/7_ٮZ96H_d>ʷjuvvF:FBx;I;[:k|E-|/c=K'TV\Le2;6Nrhj. BRM.+;q^՜U\g`sMVzçDRta%d,Vu^tat؈lgH*'3 dnHqY v" 4bmeOK &<"}Hz=KO3 ^LOϢQI2!Zb=#^0 WDQdbRaOA-¨D /F=# N,qE=XDS-)^{POݍ`4C >Ui64Dyaħb%&)P=/ ȓQdbɈʧqO$"6?DIQ&Qa4 Bh@_J tքp!Yi!8lwd]$6 ]0h}Ǚmt@kJΐ'a+2ѥy}MD D>LD3DYZb D]vt4ɞh}vjBZ U+=%F%FgD-)MT 6at؈`D~Q}~D볣 r[Ym"Zm3bsɾh}F֗56",Ho"Z_'#Z_6D鏃؆>S϶&DasC=ԙ=cxLD&ٵ_A/N*&ֿ_M&G/5ur?>.RP{d~& kJIgCJ2:u3J2+eʣltm{\ Nj)ſY_%J"hRnK}utc⚌IMOLW PkJإ2l1O_V/TL53Gʯ9V|*'Rn!h/oueJ"\ ,Ya(%sNn/:)S UMW)VnF #}jS+J TU#[r|6Vo˫,.}0 '> hԮ԰uJ-^:#\ ]O]ZCR)spj#I#)Uk {Mjq*k W1"{v|Yr.KUY*^YUT z)`U,ե"RWk <-6y,OS3MkT㞝>ikLtҴ4R.;i Lgi')KeQ~fiR*U)릦RTRًRj3T*5T*\MIJSfL:cIgͤ3V397(a:ɠu/YxN>ݬcU3:0cw\򸞏q=z>?Lj9;{dޠ뷳7b(_8+Oޕu|d~.]F祷sy8OZH%;]]RÒ+Xmڳ}~;8ݏZ'^KP|'IcZu\w ~`5h-} \;KXΠTl|%۴}ŕ{Xyv\Y㋫_Nr#݊N J[7g~lңrˑ:=ڲ}^?n{ԆܴҴ)@(gEW殌STmGgf E*\/+K NO>_^M_y^!+'{NW_E$ZG6MQmY-#>\<^ysωY< ҽscd]clzZrV6%ӅO7[;[|2Sv?ҷF#K7Fb=^15PC{[Q®Xx䰳Sja-Yy~7w+f^, b^$CWqi#*_&ӓ?L9렀Pts*l몲MGwK-[v1z2i6r_ {/7;{P׿}MP3fиŇ/RC:z_pC}<jW+epg`brz>`׽da"tJ2sb!\fŋ.Qzz2U#n0Ivrf_Ajdڮ0kJ{vqktu=1Fp5੦=/kՔ5x%;T~3zt<=i8\{WFZj=~@„FjU9XX8~Be3߈UaEa3O?Ym+@eC+eU34fUediԎY:=]h'6F5uF>%k4GEd#hl!sO h,SLY@,@T/LdT/=E(ST ظVTኌk\1= sPI$>.L~ jDa\Qp5$Ǹ!q8 f]\q ZWd> HUj_{$qUF; ( ;}XuF]I\+gɼ\ɑ,KpEl pofW9;`ݒdbgfYsğ}#ѥQVn+{WL.=_9\,ʯH\f]_yc3B e{p%a6*waT 5dB@Bw2wU@P5Ba<f ll0 a|{D֛Xj UAk&(2}TbF )cFU~˜U~l"Jp)KLR.fH@d2m3@4<;) m&(F S$׌-frzoVMY(kF>3"k;bD|v#|*D3U!V>^}HD<;(g'sO!5O&!*H3El*DS!~϶ ٕMp0V!=TroǼ,b >c^3bٓnuMOO"L=CjڛnWgz^!*DS{|=$|d-0;M΀p3#J%foE!^(o# +7,J">{Sʌ0D F֌ Ij9#L1~H3I`60 9@ $!?q`?$5={d CT~%'7S^96g/; $i|RtOFϒu q, .j[g,KKώcècˆӗXa(Vn 8}!a!NRs"PO؅ou  qB:BdDe:]^!O]/CEh qM0rV!18}0 8m8={vB>-s%hr̞W qTۈg~ qtڈӧCۈgO,X8}v@{ k̇!N*鳗n, q*8}>O-gʮ7{j'Kjlŗ;7P**M}0E1*1~Zm:aUFҙQ?O^Dho.:s6{^:QP\Z/.oN?Wζy2Sz,)*h,UiB,uMzTwaiZ$f') '^ y!k!7g`GN`@f|3T\YSE#<ٍ ҁ-4CRqbrz2kJ %;k5Φqj~ ѿo8Wv+ն Z u/ N V"TUlu󓤾j&hOi7Vޟ޵vt-^u%ծK]oI.Iל̞dNi#EK͕2,T0_d'5 m*w]9V*Ԁ}ml\Q7e|5dJ QM*LCA&AZnEem:пYgOs)~iժߥ4ƟYZ%ѲWJ)Tj{J?P"IFmyYMRԀRs=˯'3~IΟ['?|E_X߽pt/ɧyx5y.ܭ] [ϻywn=珈_bD??~7dޠ뷳o0뷳۶o0-Q~WImB>,4*k/44_54?b)Ozo7h .?0j9/;+~llmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Plucked/0034-Plucked String2.xiz0000644000000000000000000000673711172205155024047 0ustar 00000000000000]]s8|ϯ=+JZŲv.¢EF"u"~") mI]H44[E~|~95קp.sqmK'~} ɛ3?~eQH7rmq<ďF+bԭ~ESh@ZÁ5a"~Xey\i_ NO>_^M_y^D(O2>Hbeoʈa(8 p5\{='*F0s?d%&t1{PuƶEʧ=M[->|vyz9)O_hdE̐/Ul/ˎaz~ ]]g񺉰5T8Zs\oWWY An#*_&ӓuP@{Ft*l몱u Q|e.z3t?lp_@|/ޏzmo_jS=[|~r~l_ zЯP2n䖁 ?Dz8`YFBS7(3'•0+,STeETtEM0Pڎ&i׎WyQ}(Zf}mZ{gZ{ըOjأO]xmW=C<հ ]P2%f~ xD.ٙRJۿ\On.I´_nWݻ4w&/a%Ld$/mW0Mƾ_HA7ժAem0po^ {1dkys8/TP3 :ZE1W͆g|jTMYXgM}gUS@SU\\\A`jnya(ʎ̕FdeŬ'ꡘLB N"![ 3(I`'9`ul(pg,0Hf&,+Y8>"L$Y}&N+Csi]+#+ L)3`ІJ]xE3`cp$H޿ψxQ p6W2$7hoAWws]!.YWM!ћM1D!Irnf^YQN^K O n$}2R\|F>cXHgڐ4}ZHg4}@?[HgqFwrf`AM,7VSn0v/i삪4}^+ ZHgˍ4}YHgҥ4}JHF7 ٔDx>#Ma3Ymd_dSf!MECBcY(gԋ4}6\TƟNؘOi,dOٳWmݍ4}V!Yc A>U=[萦/QHӗIC*S#:1/"OFj5!q ,gY?2B>|[He[iL,_YHթ7ٿ_Lvd_xu-W)ԏ_Rz_K#EԦ(-$UrwڛsܧNT!T W so~-YN3%n%9*<ے4բYo=w*m;L$!Ӵj~:E^= Q!=}. ѩtg+>P reeB`$g7HN I^FCraa+TeD:lz8ֶ2vF}C¹2T**jԲP8}F^ ݖv:j.lb)xnuJ4oI^5{h !-`FmMkJR JSc!rޥ)#=ߙTv~ZHRLsi Ut \/\d') I+XIR=sF-ޠ ϙל)C-71 ZMPXj,*[gԁf?8m8 Rp8}0.<߇i536Gi'!KQ+GiJ26Jo?( RT ] @,<_\Sޯv~0_\Uޯv.+Rw^9Y:(bMpxI<_˻wϻ@own-Zλ wk9?"~$ڭt[ސynno׼AnnoAZ%M;&ggD:}X4*cӋ}KMb#r6wqƿv7_un{Z i٢}llmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Plucked/0036-Plucked Wah.xiz0000644000000000000000000000452511172205155023231 0ustar 00000000000000\W8`yw sXUpgw%'A:B~S6MZZ477/7ǟW|uNƧz8kIf6?v>9}}ruٷpOᧄ s=ʵοNeO`}cĵ;+.hZَx8A~-ɧuω)pi$^@UPwԬ yKC-+؃k5fP4_Ϧ7)C&di~z {bƋF\ cEOMwї(샧5Ie|5VG('ikZ&#P&c6$sFf['4ۥ`OTP5D@dmݓ' `B<FB+.inPx^"jqV/.FL|pԿzX|k8RtM;xBtHك18w"&7t-tt+ҹ.5A \6]9ѝkq`q_d/@ٹG|֮9f`"?l;) JVF*3Ng ydI :'PTB`ˇGPYb!,P}Dl;/Uw7/jdNk#  UBTb˹4+C0^Z/ Eh6B Qg%lPrO Y n㳯Y"AAA1]Bhq,l[)ۖذy/_:@@ qN @./ afR0#, TP|M v9N ǎPƍP0]UHVxxQ U!oߴ(A'a&t>4a;aA6]NlXtL/^ R)^x k]8@ f f(AS>[[;1T˔]$UfGbI%3\Of} |Wչ^E:1k '1@o+Wۨ6L瘈2Rܰte,hh>[.54\'g iI+|oz7me%%()!ҐIi'\b7*DDy8}؄M^&yZi#\Ќ'{MeBWu)S TC3Іt%U)D`n M5졿i(Io4ёoX2b9Zf($zx)NfdUdZ4=P+Tr ŠQ}z:i&rKfP Kx%[C3es|EW nq$&i+gp+l1r5k>Vg~lep(ۉTJ*_|pU O!>v^3;iIU)գW( p)UtЫфk5z 6vyþ`{Ch_"~!LWk.+{SY;P,q¯DqX*o/ZWxHRM#W5 FG?~M6N'~4yyr6 wIv_}댴K*,]a KśԹuNodW;&Xa)plf[RpxP:Xx3Uc۩UAJEbվ*?A{4W?ju.P~@a2TJzG;n|\ -x^uՇ !;%ENƹ>nd%w\ƹj`s.ǹ-D8^3݌x=/7P^ׯ9"\7S=‡p88E6z`L$]Ap^}ʽ\J= ToD;UKVKLZsk-Q.d4=m$ijI*)$Z3^Nd'`CPզэ lQ6A6dҶcɥ}i0k[˱< ]y6<_C04f!bsJbEz!Q:7 hAXӐ>ժǰ9Qlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Plucked/progressive-house-pluck.xiz0000644000000000000000000004416212214677230025367 0ustar 00000000000000 Analog Piano 3 Analog Piano 3 lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ReedAndWind/0001-Flute 1.xiz0000644000000000000000000000323011172205155023057 0ustar 00000000000000ZmS8_;  %4spI\FJ֖|Lɿ?9~ѻfS^>(tua9>w>|ph6\~w/_>Õw$aV;I'Lm2wd6ea 0u~0Jn@"0cO1tlWV}p`>s|Q+DD!|gHPP F pJ,B6k۔Z!O'IPiMo.O =C|t?ܹe [2|<qQt\uw${Dy SIǝncTgwRcȵLEW5 ,}X2,ݻT C[ߝ{w#'5sILI#ǎQZܤ5?\'V$?{=GY Ksj`X ⍘ vͳ!Fq̴C !cU?{sUG|UM!!U;~>;*$=EPfZvT¯ZR|:A4_%5o,";?USWܵ|iQE . ~iMW]yE}e0M'|t_;`vuJ7neO5k0}Nڙ>P{V ɚE$ڬX瘗!l`TÑE w&}j 2=DW3]Hl~f4.mzjIA]7 eN W cEB=y^Ҿ»&#mROB1qbyx>9a@ R gnԠKI&JV܄ZK3{v)N@,HJAnjSehK"x*`qLp;EXv48ގ]D_tOd,v"7qB pBr,eؒX80`~s7K`я!>kR:N){ |2$|s&ǒM 9# i3ahf?ƆNX$D˻-Z6D@aLDݭb1 \&@hC͌FϊqNwCNȯ(BV!BcH`j  ,_EH>@J@t@Wӈ̍Y Mqi¨0QWfzE6G'$b_$u?yBʃL7r'u.mڢ>MpUKc#SزQ#5t-HAy;,xf|u7M'Ʌa׌|/Fhf@XAe8 h9e_Ʈ/x[pjV. qeU4[aC/չ -255v+ƫːa:_+3H"]%Yoت\L*Ri2ze4fIͪ դI,w!V_~Y>C?` gZI*(hӀiHH)e)/yT*\Cع* !>4_1O50bla94KH?x_oAa9AԵ2I6ӃRj~axUC5~"b",YQ,Jhu(I t@uQ/me Eeaf:_ i2/҆zňBTT!LV=H-|gVKsU&Y="fꌭ)i>J`uL4Xwl(6@]86/ʇTq ibVT¾򤵲 Pr27G%A3]lW YaseٚU[MNZ_*X?' 6bzEDV(/#Z/' |yfZh+_k?C'Np JȦHeȟ,l5m+0) g*O`p_gӖaM=ȏo@4{z67rÞliOo{s2'5<,1qiN |-p3Ǡ{+xt/B \Y啡BiGfٻt";+Y]54555S fMM6TVSYyX.\da5*ΈcHpR.?jFEv3Sax1p!BEq[Q~ٯt(.cEX4)ݭ5՟YOʯmߢ㣦ꅺ:j$ C$in47 fs3MB悩D4|}%(P9L[Smo :/Xatu5GfBJ2nAxhRh雷iwp{MfTYlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ReedAndWind/0003-Flute 3.xiz0000644000000000000000000000535611172205155023076 0ustar 00000000000000\r8}Wx)ٲ\gJk5%d'ID"$  E*S˻_WG,08wX<^t>,;?fOw?^ͷ׿hB߿y?ޮaĵv?Ⱦ m~إG37> v'h1M64"a: ]tFWK? Nww fGP E?F +{)ɈIG\Y]sǛYb_,(I!9JI֫eH -!/]oV~5at>HiTc+^ Ar90H8Qي/4W\ߏau-5_sOׂ2gZl:^pX(rxYfďtPfÀqSP5!a YIϙWVE6Z[2~xXcjj fɍ2+5}9_2%_𦉭Ť"&W(OlWT Ѭ@ZMrazp3Q[%GTAVGTIy_3#U2C8Rϡ_TƱs!U?B}hb0j`!xsizLނr!Hke]X&¤*j/E2ETYXВ+ԣQ|$_ CQY6M'i{78yڶLx1boU1p7S}v.{Z[4f*,[OuV4%E:K]& .:j6.@]86ߔ&d'թ<}IkeA/d3oJ63egخ?<2-j#Hʲ5*H?"U~+N4mTJ#ؔk꾝W, 噉kmk[ !p~S;= h+hMm@_?;%YjR]FW)aR:u7U0&ɞwgϦ-:z;h,mn==0ӞtA  xBT>WTuV"\y]YixceQ?wQWK[ođSL䪌Cwzҭ̨ I UԔR8*AN%\cS K-)NH'0WNJm?*ϰ*DҎaAWqiDz|ES!uKuRv,:y.T諝t:)uJ`{K ~-2 3 hǰ:v,α:1ն۱,ïUi |5PK }1ٱ8̭c1ة%Vxhg`ܷS% (7NSwP[ 3P+w_;UN,c諟9vj|İWĥ:1Gi{`PqLO\RZxEyePQ3-y.nh67΀JVW.g M qMM6{UYS{dVޫ`&?V655Ym C=3xkˏ7QET^0\(bPQ֯csX"b+]a8tMJwk>}}y={CgS+wzέ47 /C67 fe3MB&LsPo`juQ3k_sI,7 y*Tίfc3SsTηDZ,xHT0_.KG#3!8R1Jѥ^swc7q?Ju+v=TYlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ReedAndWind/0005-FM Reed.xiz0000644000000000000000000000355311172205155023035 0ustar 00000000000000ZKs8W3"UIX05ًJ+Ft@.4 P($%t[/m@?׈CI-]l4Fzd v'amsHB%6 fw Pa3ݖ٬S3% 9}XQ3̬aug ,%%61Aty1QaJ0}o%D;v3:`svz=06}Q"@C D~Jna0{sinR#c BJ ZK=* bluK29#.+eW*b3MRU^î`صA{EX~J kZGKE"DH f^7 $<+8@2w2԰zk8Y5{)^.FZ꩗<1;G8,K˹}9ῶ.%ty p7eqAUՔBݜ1'吀`ŻFAzMf `X;N*ż?aAcB!>/*dsuj3p7r> #$AgزS4Ut.ec| ! !oS! XKBh&*x>?h=f{~qč| CH=2g C*h#bJrA,YIWJ'CsiBQ|>Yr݇M^@Bh0ߪKL(Nk=Uګ='vZ4_3O> ʎ_%,xj,Ĥ5QgtrWQAתY죡F#+@3~d?U*I+S!Td mҙkE*<0Rj[f54p6 `A݄2vւTǙoQ2=V&$$ٔ(HKi- mpB-3b6"BRn: m( G-k}B)~o-t^}r߳owP/VF(ckS9Λf%'Եsk־z#f7|}a7OIK(^ 4oJ4WW5UWMsXV\4Ws5U^MsBU|fi߳iߑAvQ|0l]һlHog܀[YB)gTH(tX5b-fU B~;4-P^v _M]b/lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ReedAndWind/0006-Clarinet.xiz0000644000000000000000000000633211172205155023433 0ustar 00000000000000]]sH}ϯ=#$S[qm,ymej3/D@N"@@C# {*[8Ч?n}9.~\<9 Vf>6L/~zÿ'gӯף?|~ڟ}P/_k]qʻ<ބ,\;79\ oe;_xظ^hmg. ً\FS6߆#zx3MG7qeI=Kt%`WVT, -7tr֖zt@0sr-V4 U:PT_]:@x={ݙ 5Y6vzj4&!Ȑ"h|:[r ?4jxtg22bP(>|^9;)˨*?W 2b 5[Չ;hET*qj \13DUb.LG{=wfmo/='Y%hzTq*@6{V-˪ ]oWFbrgZ; O ,z朧Hr65:[ݛ]LВ'js|p^oʹ.~$svtǔ_F_``kE9Z$,CkUᷳȱ^nr6+a#sgac3 %`dO Ĺ(7|ϾŽn}c.oR ԌoNꝸ<В zB?<*"[tt%DiUʙ.:s`? j5<wv˼s&€H-OQ pR]@Wk?ƺxs/^laŘv߳> 'iA$HA2fZ^P=ݯjh츴6O;Z)ƦB;Zh@9KgƔѶCxQ `gԉ3=(ChFQ,NQ, VQ,3W xŰ5xeYW /UW xŰW+ѾV xŰW xŰW xŰ5xծv ^Is47DcIsxŰW xŰW xŰW xŰW xE"X bX+"^xE"^1,"^1,"^z^1,"^1l ^pxk[WGJT5x%oz5xի^ ^jWW'se`}+kWg>Ur6J'|K3md_^[ )}}fRPc 7Wm\6jnxeurx˓W 2=dvbX -,QL<`̈]{-@"h hq0`Av&I5 g`q0`q0b5b#Q0bQɂp\aH  t=#%:@R;x XfnHv~}ƶ$dzϐxhhDYI$dKNvl9uTq0`Xz>J{]Ð0/ 2/ }0lȑ&^ŜA풌aKR%'P T .)]h-ɨ#+aH[lހ=*0W!ٞB %)ű[fIm 0$3@=S; $ߟPgֆ >6zF8G!FH:>PϜReFR;63|O[Fr>3R\U5@>cad&\k"MR&fj(&y5Wj$7[5Wj@l_{20))W F `S0b#M3)J$F 5}  #a)oCf) EH #㑜Ou0g,YOW "٪T/tvʰ(gX+g“]xa "Eâ_ N~1,:Űâ N,/Ϣ\-FٖiWfZZk竖ߜ*k]lLRMfe=}\Hzrh\H)\N]EĎri6ó7{7-c9싯 :Ra@[nR!cj}50E&ϕQqZi04I--Jޢ|j(Vi'Ÿ-HB,-J?TJ}҇JɛˁX*"NЩ|:Cb!i7w{>'wHWzUV!0M#t1{*U(&+ ɗy߰;[6]n.?K˦*o@5Ǎ(Illmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ReedAndWind/0007-Breathy1.xiz0000644000000000000000000000645111172205155023354 0ustar 00000000000000]]sH}ϯ=#>,U%rk;k;Sy@6 <ߋ }@v̓]R?ν}vsׯF^=4~9:g{Цg{F5k;ǵ*![E6ڼf3S]BMe|3iB'nI'Jx[ (NP Q(1%QQb]Da(aɈad%ONAad-7Fa(ٞ_ѻ!nn}0b  1HcaFa$0L0 F c`Ø3@ib~P^,Y^0F c13g/O `tɆ3JߋBma';Z7QQ ːfq0X%T<1Ø=E.  n 919yMOO F `tmP&Z] Md5ܞq0byr&s02H. R0b#Q0byFaVIb&(xf,#Mr-VI F$YLcU4X%M1]F9}V(af9P4Lg)ov\M5у{(mD #^`؊G `1G{I(ؔ=([< dϲͦ FWYZD9}vi>aJ&YMܡ2=n9ҽ))Y1>kI6{k 90Eaɰ(a5߯.NǠfZF!u ]*)C} y/YM%LQ(-$锇*2"y\};YCf{ZQMyj:OwCn:?iKIʑOUHxY]jnCvmnCv5eP]mܮ6ToWs~9?|^ꗳhh(?B8VS$U]8M U~쪡OL~ڪn)so>j>}8yrց{O_'7g}O}go0m/x?CӻGi}_Zj=>qƗ׷Wz,[k't> .g/|63ȧڐ"u3\ 'ۻZ3ג`WVT, -7tr֖zt@03;\ g H:.UN:P*ު(nf=ɆW(Oh|7r5OŐdȲE+qqf'ƇFZބ0(Ȧ=|^9mfQ=_*Z?S fzb }5[ĝ} 1o(Zٞ'?ugKK'g񦏖,=Yn[JdUӬjq1mR^;ֶ7߬pͰq* 񞬕FzXuQ`ʨߖF`D3±lS(p=Gv^9'31fVW"m[,':9eJVk}:Yc2J1}SYHBU^14%V/Uᵳȱ^nr+a#3ga<l2Ƨ1:Ź(ϿBn=Էׁc)Uj_';^Ԭ /mj`Qe*7=?3|㌿ ߀_/i%;6ʕ>mqoXO skСNrCc痣rپ[eR{bo, S;t\ EW5l'9SCCh"zpmȮ|$,R#ȳųnCڋ5j9aSjkuMVzΈq?g<^vxw=+`4:ߙyDS9R4m? ''(JÁE_o&ڋ-1Nk'=ۛ:9lnX&z4$8͛A2FZ^nlzгj&ƎK mh컵3F mhIhM* w4՞ZhxDZN]O''j.Q (ES HEUh +Eb2kʬ+Qt6Ƌx>a`[W xŰW xŰW xŰ5xժV ^I#2^\X!^1,"^1,"^1,"^1,"^VB7=񊅿W$m#^xŰW xŰW xŰW+zW xŰW [W,?U:5x%s%*Ƿ[WU5xխn ^jJA^}xE{5^ x{ _L-}x3)U뱄}9ZD^D^%gkxcL6πW k4+8zaTj!JVUZ"Q0& WrUx ejM/ aٙ $'7Ӏa a ađZ{-#і>v[ 1F cVxIOl)zO 0l`Nv3ze\GFF`oHmvIw#arěҷTy9QHIay9░2/'R `0 `0 `80(I |aRyȇ1{narIØmڊ aWw vCb}zT{gK~OTe02%Yd䲧t#ˡ3u${j$H?c{ReFt0HgbEJ*$KCƌ2!N#Ȃ8$SA^(3Am7H§i/5nH`K "Ð/{76~]a 1$R9a !=?H`8%YMnH`q0ÈIHO~Š Dq&%RWS('nlH/q)"}Ś)1a|;cbm2lʓ!HӧF>#nHFMD 6I3+a)ɣ|BƋ|.)포πZ]v ưHcX|1,[ "Y?),g)2,m vDE*{)iiۭ+$>F/N?3e_j2Xt)}W.O򃩛Bz_J#EKVj[ 0t 9eE;s9eqeÕsػ]KEJѯקQ?mB(ga{PbbYɇY؅:@N1αX`qV8@M8"łłwK+x 9J3/U^R֔0V\PY!0XQ;$BLў%pOy&*1PlwVNf0v<|qyR,ku!JY&왽 ]aF ˜:Vl_\գW`CnFWy 5{(۲8-0֧V凧ŁКwD#hn,T 'wk^9K\.' Y6i&=Q=vx]21x=w2O.Eimj*4t_m|&,Ԉ@~TVZ.:LJ8 Rp{ Ӽ0-CU;CwX͇a5Bj>՜>VLj9}5Bկg3׳ݛWu}KW )}0O"a).T]SQLIwT?bwzWoul\~.v+(1.llmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ReedAndWind/0034-Reed 2.xiz0000644000000000000000000000632311172205155022674 0ustar 00000000000000]]sH}ϯ=#$SZ[qm,ymgj2/f"V O"@@Cc ;SO{u]^ltZG?Ͽrs~ӻwq:;z99;ٟ}P?{ Rk+OA&z?>#ѳK{hIӳ|6u#^[ɏM:Ґȧ~jKvĺ_/&7뤲ZzgGQo+*EZkhY~QS(˽sk*u$KR)=/vR[SvdoCMnW'|z}sb2IC! EҹWu#C;J-qy0,ȧ=zZ䋻Q=_qsTPQ Yr>嚭ő|lubV*}(0If6LRrU\`['e67́‚+ MShjBK7uuz[ž5`J6G7_N,vj3+s}C^dbITMd,GYNE^[JUE~۪]JzZ۾,}7 uY%ܻ??Z3 "&lߕQ;-#[rc݅kgQ f R,sOfcl9VWU[,ؒ':9U{k6,]kgrJ7G#SYH"U^G꡸4V/kQ`\-hS-P8F}waޗyGlrg1:Ņ(gWLOBǍ6~N1R fе*5˓,jޅ6k֙J:ߍ֟sa߃o@>{=r7Ug _ h_W'rپ[UU{b:o, s;r\J@5|'9VC}h"zhmϿb$.R;س%n}ڋ5j9aSj*뚮s<[8#,d~S+{l:ԜtiԹݙywDs9R4=PKBnX.etvZV ź~d/rX90mai*HŃqP@B8o-@B{Zh@SJ7Mmu::*fi.ҩlz:>Q, TpX@)X@*XD+6ψW_ ^1,6qz[`6H:x>a`W xŰW xŰW xŰ xmn^I#2^]X#^1,"^1,"^1,"^1,"^VB7=񊅿W$!^xŰW xŰW xŰW+W xŰW ۀW"->7U xo+A^ɓmA^ jЀW4ՠ x%O {ٰ>8D"հ0DJ/>/yl]c/ ;z i#+&rxӧg>^u9E%z$*}:/UzAL2 bwp¨<ծRP+c e2OjbF 4:_=F 3HzO08080È#1d-[F -#1 |\;|jØU{շ< R-E=Ru X CF $dzϐq!Q>%arƏLy@Iar$`09R0`#a^eˉ80808080Dqp!|^&W7>ڊgWw @b}vT{gK~PԠe02%Yd~e9cf~do@͞lBcH L2H cV{@ƌ2!N#Ȃ8$SAEPg >nO= ӟjl`1Ḋ!%_nlW S@b13L(cn-F>$6:KR0:K4}6fi 0Fq1Iir Hӗ``S02;(g`K\'@>bMEF0>1LEe0v il6ɐB[F c`n#MhQ o"M_$GZ0}Q^a!Ez>kGg@-.XHcX1, -En`Ϭ|3 DE;"âaJg{ 6i v׿O&{)/5)s?B({ds!d"wKVj[ K1tJIeECsIe·O+;dʇ+M%wI=΋t+i_|[Rq<Yʳ)dr>s'n+%c)CKw^Vr)_3]}ʥ8ԞsMN&S ЄyYQq6y *_iZiX nroqi-L+ 0R38%[,-PKeKe)X&#Й|:Cgr>3ony:Yo(a7/<'>}U;}_r~5Cjއ՜=WyWsk]y_ wh^ׯg7(/AR^S`rv69ʇP)t{OM1y+ID޾S]]ܲvsYXڭtZzS|_~b?hz{uvܜ/6 7i<8wj048[F&-=, g&gf[0eh4w|L9ő}k3"׾r (7~-\ۉ^N17ڷ125–Hk Z|om!Ug!iYr0/6ֳY%a@Q9 @TZ}l9a001oz2ob,{-,gTS ! 07tQ!0V'\\&jL,y)k+r@m0KV\VuDʞf~'YOۇ~(է*{Za*ݷ6ko41koRk6v/s]KvMAϱhx(:؞%Onպ=,UBuc,_Xf!3pMq-lN8jVi}G17ϦЅY#UVn.$ I wbU l~n\Fix9Rh#{Ⱦ6rj#Gȱ6r$'tT7!> }<2D'ds'&& JXII賉;kgiGggSOM=}6USWL=}6gתϦ>zlxZl볩Ϧ>lgE t'L;m>liϦ`SQQƣpUC{ ؔP&J\ZGsU"ARp@wybt;D3yX΀Sb, yK6E%7FV3='evJ0:^exE~("KUx΀WPB*}/PΙzV\4, ]qra(О&$]ryV`aiJzdnpkFw:D!w NI l6``SbƂ80 <5ހx~l2ng<-QH#F,|1p`gȀcBÎ K1@IV:ɝtVǖy0` ``,1#q' O'LO7ƂøYKBR-m!`t6BI"DA|@Q|6ăAGwF՟ےtglF v611b;2b F (ϒِ-Mm 83Dd53tJrvYi"ΒU@ÂsgP\.](σƃS$;mɂc$ F,1# (yp>?r4c=JrsI %St[.ϥ0Lgq3^))`hP/Zdԋ)ENйRPgdͫ}s& WL(iDjøklƏ{+ɗKC%/ˇF>YO#PK)+kZ 2RTJ˿Wq⺍I9Jez V)'s:& \ ~P3|J*+R$a%2+*oʮ9fz {*M?ܸአ:>ʪ{TXwj8v uک᳻ Vf)57nJ˶K`i%Ymj&RHb[lyqrml~.i#Ad֥R7v3f-X)(ؑ?~҈zբmΩY*zI y)ʇO*XRaژN Ӻ"Y~Q\ҩ,e0G(RՋTnzάnzެz=ukDU&܄^znBf=7ePYMܬ&Tosr&js|OO3ӳ;If~'R ~>{j{GҨtǮ+_ӌbGLqҧ~xd_{2Ūhc>U_& oblmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ReedAndWind/0036-Reed 4.xiz0000644000000000000000000000634311172205155022702 0ustar 00000000000000]sH+g@Pdq 1xm25 H,NIHjߗ{*8o?>}H:|b~B/?6_Zן?|l|\6~݇\/&_o'>}ǹ[_ޱ#ӻGY}_Jjmx~ɻ^G#;'id?yrc 8^'HW}O|{~l/g?z֡ȅZ>FS6M= nzk9%E"lSQ7/]]YF# CXlN W8T"Jn}$#xS7jRu:H`4I'C. "3tfZ&'`aX*{t'wӢyֿqsUAuk;O2YXqpFo˨ ߔ-v.̂u;w0 e=ߕ]Ai.؉t[NHͻ,~{Nm[Iߒ'OK]ꂽ7k'78kgۥLr93{=S],2*&FyYTlQ^,^S(a-^};QUDpx+̩P0%v/W=i`BR h&_[{=` [&Bu>L:"_‡:%a@Q ^@TZ}]Cc]n7 ԞB\ ?ADgTZIS5I1dMڑZҎrdٜ[0P8~=뵢=VF*f<}:>=y)ٵcZZ5ʎϮv-Y5yMgzHx$< lnwQtQs'V>?ZFd* ,MG%-FnX.]Hb0l;#{š|P7 |۟a$x8eʫR# 0HO;@X. JO4 Z,iB;\*fi.tJ@<1-iQL{Rb]AŴ*=+#ȁIvs=\bE\1-c%\X"qEdqŴ+E\1-iWi ApE+\u+v-P-jWT Zȭ+E\1-iWIG"Vx׏"qŴ+wWLbZ"qEN7rԳA>\bE\1-ZiWLbZ;"qEӏ3;"qE|s"qŴ+E\qF\1\uWISgiWLbZ""Ⱦ=o"tA.:y= -u-mK?\Wmr>Lbs(mMb7z!2X$i+}LGgoLQ-I0Z.h6+}]-!4i4F ŀ0Xyb\ b@¸ň0DFň0*F11 CQx.>01rfJ̫^,v.G vbl_7d;#taģ0P8)6MUeS%^]?a~㽪   a\ _&?2 a\ K{(:ŀ09q1 a(DO,Yaو0fP^x;aTbD#˜KGzaTbdag0c]^F3@ua%P؞23Į0EN"i ƴ-E"ŴK SʼnEGHf2{c(zO`(|Ow(~O(Oc(Ϣ ᳐vZ>&o(>(n[(Jdd'_?%B9)wͣP{O_ W>B7 Ý(] K}b@#, ӤfP>`b@¸8a\cC|gcC|~cC|~cC|~cL0B K (OXʧ; wt<6 RB1-`D51"ڌGEƋiȴt1-ă?x~QT{WbZ\}Ǻ}bw2h-RWn*{G嫐NGd&䁑"+!J Ie|E2<~\}g>,)|Jri$7~.Mp{ɽ>jrJũ %Ӎ/oed[Rj^ L1XdaV&#*iy hk hwX`v)s[eĊSNK %ْ'*H fKmURr/)m/I1W  T(YI{(s6)w7_/mjrY]e sE%K22Yn[ԱUf?{T^5rGkcohx'L0'6+C!b]fVZi$߫5Ū]hffTShR$'n9.%;nW1qR>C6RTyY˭Y1i̊Ws)4XnSdjn30ӲUTM3tnZ5a_ nro~ iM+ _M8?/>Idz~+x>RٱRY'ESgY$0uK>LEQ7wt.G'6? 6R 8ԇռ^5mjjjjjn첈95oy_o ~uhB<|@䗒_)|0\LYNSRhOM1针DO-b7qC ?KC ~ Y-˻^Pllmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ReedAndWind/0037-Reed 5.xiz0000644000000000000000000000631411172205155022702 0ustar 00000000000000]]sH}ϯC)5&S}Q lM@b~@vjvOqO{QsuY}j'7gurg9|f}١ÙQZǥZ'"pru3^:Ë Mo/67RY}x?nwdtwWԳXKwZQ*2zۊ徻2Vr \obTrsgkSрTCR~ulسNlq$]'w_GI YV>h%gv=k_eMuOe4AD6Mo+[mYZ3Ph&W,ЧXu5]OVJdz9F(37JUMXrg}w^P0O7B?܄8:&ıt^\XƓJA `V9^~|糿V vz2ggOŒYm%xvbV/eYU4Z|\LSS^/}ϝZkۛK qoV}fv4}vTf|8xw#L=:H BveԎog#syԙYkgA)aY#T/˜gZIj.vż+`ʚ -y2s/|]]Yه_.o^;v]b'/=s00Ucu$ԻYuhkSb[n;[}jᆛ*O16|7s6}Y^(A&|TS[Bpqy7.97*%K)R38f]xmW#*WUea= g]u o@/9״Ufgo!OB o\rٿ:M_^}c*s}J}d!ڡUT/NUȶ! Is kk{]i>c,F-k^7QMJKXkc+yš}[i]ϥ3C&VZwp|^qz۪ʱ_d~ȟKEbo&ʄڋ-3k'=ۛ:Q~Xfj<)hIx6*t+jevqk&s4vZh@B&ZnO4վZxěZNt]O''JlP.`JQ,RQ,`"Z7@bX++2kJ"#GeOGbX+E"6"^1,"^1,"^1l ^k]Wm $ ^1,"^1,"^1,"^1,"^VB7=񊅿W$"^xŰW xŰW xŰW+W xŰW [W"-?U{W xE"aaa=E"a`W [c#^va5x%~F|5_ Hl&̏W]+2^dߗ[SڹJM䩐 xŰF K,CQihjDEZJuUy6[]I탉Ȑd̀_`0Dޓi@z `0 `0 `0AZ-#і>v[n?fq55a̪O= RDR0 eØ=w0ҤavDm 1 KojO7H`0 `K mOFCK!Pg$A}rUa,@0$hчlGb5afn&,2@= zaAK٦ pIo3 |0I48YUatPƸGqmQ0=(c`$w=#-Zߗ6R9pfK5@>-g F)0 F$a4}Fi&Nb zr6.iHӗ]4} 0씶 zR+=M34.Ii8,QC0 K-4.zWh(풴5 ݫK4}&Hg꣉4}jn}gBOi %B>L˽2N<ןa+ AM|/$N#50EZâ aưZ|fHʧX>#ahb^vڭ+Q/.|6^o|O\WH/m`~su>:8L}ɜywҥ<^Q?Bnc)/Ym%,P\H*e$*q߭W疙Dž^VvPJ WV˛/bw-GA+EaFy YB Ȋe%1fa*WtQ;Q8b)ڌjFVtX0jiłwJ+x JK;%&%̭SV 55Gr9Vx+I%UgHJ8Sp¥e/%6:ۤx]KO<W٥X֚ CRM3{Œu.EPJ -p*!Gk#f|uDM0ʮ,>k7\êtpʹ:fe\Pu5z]W7R&%d(q!땓|쑂mSf4sem+?$#c!KKs7-c9Jy˴widS6ALMү6<faZjDis{?*L+-j%aGiPQZ)z 7 X(J??Jw%{(=:S 4@,ՐCjqTG>*ǡS-tsό='+5W8l_ >R}j>^}>z|-V!t>C~XC}谚G._TvVC~;;ݿy^׷Dy$JfϙBе<$!yO|wVwqƿv_*W=5˯/_|llmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ReedAndWind/0038-Reed 6.xiz0000644000000000000000000000633211172205155022704 0ustar 00000000000000]]sH}_{F}W%rjck+S}l&h~.49SSyܧ?Ͻ}\m<{v6{΍g7]?7/x~pws;?^)H/"z8Lzg mo/7l~dף>,geVܵ0Wdtw}uC U`zAٮ/Ĩ%,,Bل2ӥIJ[ue&Bj T1΋2 Cs7̞‚V瘛\gԄ8nKdkɾ5lJ:GOKq>K1=nhm{pn_k(#~v _,z/Y֛=Yl>ig9.nuc^f+UβŴ]JOf{_yNX,K6oO72sǩ6{־gaADEmڮ/v|WF&6?eof8KO zY期H8КgNTwk[]̻В':;?9yWoT.n㧫d7n8s LXd#+ .FyZڔh\VV#G_{^S'{Lp4͝z_`<gJ(\\ݍy49N2vJəooR Ԍ\xQ.EĪX0̞O:7kZɎre1N0M}omBoQq9uKs *;z1wM:F NZ@ E+X;]Ȩ^+س]1L$vш'5m쾶c{qj VZB\C͇iySCP@B[;o- hZh@J7=m&1:8*xk bԷ ER 8ET XEV +/akʬ+䠣A6^īW xŰWBbX+EbX+EbX+V ^ɑZo 5x%]aaaaH+W x_+vHAbX+EbX+EbX+D+EbX++No ^ukxEN]+E"X̰W xŰW xŰWo!^1,"^lak}+."^1,U5xկ_ jW+kaLW&ڔv;bzi*y*^1JLJy(19mM@-$J.nr%u+9}0 4` f@{r; Ha a aF6UCRkϼe02bn>fq55a̪O= R-ERs8ـ-lAr|^ZѪ!p-.{*>ǖJ.i#!ײ`0ˉ=΀a 2/'R`0 F=uTz2a̞;u|\i0z;ab{u7D$s0`q0%Yd䶧t#ˡ% א 3 Ѿ.XXdN~%hчl-`0 =QZEHo CwY'ᒾیa.|Ȁ>3 yCv$|QƬ0WQƸGqmQ0=/C6ܑߦ-lwtÙ|[|#Fh$l"MD>4}Hga)o*|lָAh"M_i|5 cK/Qi&%j-h$4c"iP+Ld5I>]vIjӥB>L3D>5It>I44BFgI憐SmO MM3}ۄW>gӆ X }EZâ aưH#X3{@R>"` xEkk$;K.RxEۭ+$>Fn\j5sWߓ.%eZ~0sHJ`bJ*aBR.%Q!^7W[N. ? (47ObwGA+EϢL[RQ, a)Id.Bj j'g[,%v@0SR ZY53Ȋ f]-XZ`Ov!9[|rĤɵu &HR6Ǫ`-w {S4QQ̆Bg/p2{)57]d*3Z wdR {nCWrGw~#s-Vl(Frb!Ǣû"J{('϶s5Ԛ-;_sENBթDzL4Fti^RH5xr&ą${WNq@ BMr*uuOm~$-%Z/ܴTK*-Ug]rM9Th259LXEigǵ(\:H%J4H-G#HAZ)huiujBTНĹ?B9EG(UJJiˁX*!NžЩ|:OCR1ƁNvg:p}hA"hOzUW1(OjV_llmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ReedAndWind/0039-Reed 7.xiz0000644000000000000000000000341611172205155022706 0ustar 00000000000000ZKs8W3d@U)L dLE%le$CRKvp[sdV_=#am|:k|ۡr|k=9m4.?t`ۋd51= }Lk?qhD\x>­㝃i'nLdz`9M-=r~=(>݄=~d; = {si\bTd\r?91"94#4_#X>k>T0f!Q{zE\#m;w,·NL9]`-3K#Ѿb;+(Ÿ}[ԅ$R`QacW|4 Yd>f4Y-Ǿi8$\{ԟG-ZڭiKR/UP Xt(I/{{j0CH)zAUmx0i !˯?M4.Kr]6`JsK29Vw-'#H4ΠsZ[H&Vz9 <\UlqM03J@O KGIM'Ysͼ=*!!D!tIZT$J;dc%oT+eQH\#0 a\v>0,c 1@@м3 \|۽1 vqA_/ju;wYdcedaqN$0FVkw# h^:q"p6t !aJ}6qqeDZ>Yݒpt?{Ua8=!i87k0+O-0Z0n{S,CtQD#(:~¨%,xOPRME0z/CA\@x29$l" R )zSIHI 5NRbl1ki\:Rzs⧍rf2lNr_!~V6BӢS0{{>Mx}+]Uյ\KlYq#} _I wq%RrOe0[ 'wRv+25kx9We3)IR($.t`A Ϥ3lxϱ˺SUs)6 )WP,M}Aƺ'#(biޠԈ䘔 p+ V")*mE6g Hh`m:26G9֭| Xw 'EXYYe #B`ÐQ,`X,QBhւ-g~6 y|11nydžFWFBTZuTts_*PXYv ? QkpKdbHwY:$Uȧ32JS ɗE9ѷ isЗΙ^3B^I$z*D7)E>"G_gś}WX9^&YVx%w8S.uZij47W3MLsX647s3MLsA50l+44>.KD~~ <0csLE!dBRF]0V?Q.M<6_DյfANGֿ6P&lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ReedAndWind/0065-Fat Reed1.xiz0000644000000000000000000000347611172205155023340 0ustar 00000000000000Z_S6OA`I3^_4VŲ?c˒VѹΔ]v]K9z&qc<ꆞOWםÇ_ŗ-x<{y| c&#xƓtv?X_c#ry -M(K&cOiر:;a0; g6/r{& }S$HPDb$д+&咸 gHT@#?5c+,.[-D[ƓbxL3/ev':7\ь?ޕUP@R0Խw dPۈTV>>)ƵDsMW '@ǜ(R%¹?IN Pejd $R}-$z( %eʱƐ68d`1 Uuw6: pr)eh0&ttRFu׈U5rAV}MJT InZ ϻ`k!]c%IVqE ]agn]Ƅq/K3B?Kar$KRӊ*aQL2]⡘lN9\@l|Jء3'KA"/y"Iwa.oϠ3g[x, ;y7l~=W^:3[F犇wi`~\2g-0힜IZaEk97@_D?L)tD!cG~&U e !MY XrR\fK]4%7qB ,^.$ ~t6H\?q@_Pvck?4NF׊D?0Ql|Fj}4cmF]9𴊍5BbE2rqJVa\  r\'8JPU\T FioJ%ZKkKuvCE)kj^颕fTٓzE,$>$_ϰGzF/R̜t2"If<:[Ʈ_r5$NL%Ea?F Q쫍 "&V!f6C˂iD+]sE3ߎj7j.X?GWBDO &p Vd|Uǐ/O頖غc;N}jS\%lU%l;~&(YceЃ S.#KT6%MQ^y 6G ȸ!h$bC|lьsH`Z*o\`Xűo7i^D*VEEK?NVc`GϠ٤9(8tRTַ]h-eot2ͧ2b*V6򽢫e-X<Q'D2r{b7Tp%13x^'EuuD=g+ƈJ{sD SpT?)4oZrT5j֮@c("ٚu.ҹ܌BQa޴vM7q:%{:0#Tmw]62\5Hnv@6l' dInv@ANIf7ɯ BVHdh.jQ{(+R+],["6B~OCeSFrǴyI%e03+?1Ɲa`+?Ll<+a#Ohb4nd٪%y*2v1Y&oO=ȘJ2j+1>^5*v-*dYv;Ʉ'lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ReedAndWind/0066-Fat Reed2.xiz0000644000000000000000000000704211172205155023333 0ustar 00000000000000]rH}WxW%rkck;S}amsF""?Hd}.V&dF8@|苻~i8xOwoǿ~x?ήN>_L&8;l3`!x~˛"GN8vƑskg9=/FW7'wW#`z;3YGO2t' g_!ce듛6,g|gij(\O"ۋYh݅aX\?Ts(4 Oh<@t2_?:]@exf3$xc7j2uʤͧ.G,IyKùݸzHK|q0F䜏\Ee+u2e5 &:<,EPyfnxyM7c`js?-Y m2CϷt5~h0-]Y= O((7EOu΢ zlFOϣ*JVA`d\:xq̨_hٚ ԭt_i0g[GV3_'[ѓɰ+, 3D>U4gj 3.gi>9Y{c{`ah?.弸d-9g߇U>,\V{xffVD<$\1WcEnV`1v'N >0SwhEK*r{[j@eySDrbOgmUHԑ7je*u#SdҿtuE+Id0"Edϟz5v;Fl>eNϙxKT뛸S|E?e#>s,tQr0o4~67ZE6f8е:4?^LWoR0hUЗPg!tYv70f::KBAQ9 ^@TT>J6q#ڪ˱jZ D_wQZ )8(yj%[~N3Q%/eDc0̒MTD1#c S<-clBjwrK9>ۘ{Zo忕㳩]K TYxk{p !**k5P ؚzDU'qW\1cc!\kc!\\u$c6p%4h"phڌ*ijl8e]fl"\=j\[W\sUdm&W]Gz}F pgWGn$9Hs|gAใAb;^ݗݸ4gvĖaw*ͪ p%+~.nL pWf\CLt_lٯ#:(~]4m"\IFKI0ˈ=t6ė1q wƤ vsIWDr7p|J6vfZ>Հ蠤g ۉ.Ⱥv$ؐr{(~Eld%>vE"0@"X KSs 8RMxQVIxf!&j@gL5TZ$+ vcy+4'k^,,P#)&oƩ$MƩ+N m8Gy%P"&5AzEbb E7v!BX(aXJv̶Ef ȳ](jd,5W5R(n85ka+JPC1b<b>555ltg6SQDk(+j[PT_Qܦk4";H*54;_c8x^Tjv8?H?X>CQ_UP{(;% G1~{GQ8@GC?-P #KJ7; BbQ?K(g7 ,^ l`B`ū eDiQX)`u &(PP F9&0)9P6eJ=|[R0!fJ(Q('j<J b5@Uba(=JQZmK";',H_Zո(EN| ,Vb-`%#yTVW+نȭ3 %o1P& G%!oC0U( N KS0{F)Vd ( n]wPgًs, ăY%a>*gXND ZTTTZOV )5Y¤ L?ذρa(^P>a(/]gy|0o}e)ɰ-_M)ɌsQk(? ,Y(ς,K # ˷)1@X~]`#=W+ؕbfU";^ޏm͌ yQIXdLfjTZM7W<$NXBoWϗWK`8lI&RYe3oU3YnY]nYa6ԍ 0s=w_̿ZSbuL$ٺ̛wyG|e Gv3of͜`oD͜UϾw^aQU5Q>}g|xzUU~kAfgkɧm#"/q{{YbSXu~lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/ReedAndWind/0067-Fat Reed3 square.xiz0000644000000000000000000000673511172205155024626 0ustar 00000000000000]r+=HTjlJ8DBfHC @#R*j4d~:ݼD~|lY?uZ'^0~w>_dޝO>e_鵕'B6~L>='Wvْ/f_&3qpy+cjr=񣳍 .iҶ]f\M'_뛴3Gq:*Ï?V6DfKEϑ87/Ы@6I@yX;s/_juI_[uY@D]rOn|ry_?ۇvJowyJv3*O ~^{缛\6S׋dTrfpKjhZA)${v.n_NV'։weٳhq=Ԡy‰|z}M89;snn(YтGvg3>KѲx-hm``i e8gG[Z}s`ȁyChY5HDU<{j63Nqhk>UsgpxQt,kCO҃h!l}eQ4/D6؂ϒ8U3Oe'Ac:d)NnK16=+C! m_үofP 7!+TvB&vU# QRÖjM\IȤ?jlOW)Xj]Oo.giMa)n}=r ' tKu&[7a,Ls B`܉J0p'Cld S%QKQ 5#E{DE%iDSgcE)# Z?*nCpx:d-(. 0ŅTe.!M-y\, eq\@& yP %,HX9]C6;#jHP8J*W#& pdWT@2.UBટfF=\ 6W]+* pEe\κW⑄5UQK!},q\^qO!\Y>)>Ϩe>^C%U2<-4ϙɢ$Kq _'<lvӜ3[(}_C*uD볷}6"/e#b6"!p„$ˆv%}lG2Y"R_ZH}vg#R_XLF>{iK!s[#J16bYHa#F>FMϼ}aʰAD=aA@>!O׌}*nlˋ|Tgl}݆>Cza/ Y3$öĖߟrf~S}ƫۈWm1=Ga6b-}ڈgCwF =utgA+bP`}FcFbi}jѫ{.U9YWٿ]^NW./ w?zRPhGK)T&+j P6LJgetgwk7ʗ+CLZҝTeJ~>OkqZ%E6Mv FaiFuؐTw/B|WTS% K%'ztK%*[UO\?I\%m*[:FRMp[OJyNz FkɐTatK%9r1DpR(Y)&euvVeѣRn(ԟp:XnZ6uRET*uNkdk4/+"uUYdvfiJMHl^Tr_hFR6n.cTISU+|GIЗT35ʾT[,W8^ UY,iW_/)p/wfuw!02wtDU20,9L:#käd0,i"~a qV楧w4:M T zznf=7lYMެUz59y6oi fvz xMZm-V>鏴Q)e)eFz 'Z<*դ(uӐ?痊i/#b[7(ǎXNL)b+\'q/트(f"u>,DJ'~;st$FSbT]4Ĩ*X mQoQu+_DwATYfEUڱ]l Fglmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0001-DX Rhodes 1.xiz0000644000000000000000000000412211172205155022621 0ustar 00000000000000\[s8~ϯ`yO!23l,N/-߯m$ɎMmF>:M|b-^7'cZ0wo~On_k3Y8|l]߱:-[N8 QnL?[6qj2`2ɘb=:ΪAM>1@xV4[{o޴7t3Kٖi![FQ + \!ڄŽ XCT1cID H96XbώeԘuKp#ױ"Mc-pD~-iohd ex1GV\YYgjE|=dp ?v0vۂͯ_y 5Uun)5D4w˶tĔH_KQ1MRn v T$ B$+\42g84`IK=-EdrTA~K=LTi%tO  rzde ,Q ѪmO-ĻEN*D)b3wG\0ETTQ 3-ݮK:0Q|ГZt ?+-A|ԶRO56{H y'.y{-q hNve z F]o>bCweR0(YܔN3urD2`{??i5YJkuq-4G%YA#=Vwo{gw+&-W_5XnٛNJ+Dw:mo*nݧv79W Dn~>؍ݛN  n=v\n(4?$عCxmd| װx96N'F>Ar^g1vK`ۗZGz"'m^qH}n (NwI=}S7>SzJ>6 K_q%nJO2@nT8qbzgҨb8W1js5ULn'` _RfP;jCp5WB>_ DZ 2j:x'WIo=ōU)ʢ/F?H/NDlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0002-DX Rhodes 2.xiz0000644000000000000000000000407011172205155022625 0ustar 00000000000000\[s8~ϯ`yO!!03e6@Hbd֗$Elll2GҹO׫#q\˦uIFa}ǝ竣?[ϖLsWGQxZO,>9a[5pmbx´vU7N{^(^mnDKL!Sjgo޴7t23Z[#Mi4OCG.YM?ݺl "1/*>Xc*;jhyKAM3أm/5dݐ4ӻ>G`%3dh~V.mE#| CEׯ:kx7xa0O>*֚ vd2"JsFù>Ye$0MP|pF-آEO&ش^k{p 5g 6P }4>+jɸ ^BІdeElHiM O%b#[&,ЩB:f J]*s-vM-9EoĕE7[]߅C 68ilw=lQ.4  Z,l &rȊ`k>1+ {g!ZDC&ס˾ 7߶b9(gאT5,x3Dv&?nSR`J|0Lǎ6KQ1M6RDn.mvz<_&kY=?p؟aSU->"*2S;}|=0S!i] ;.AG:-l'Y0>׎0^=U|H[ BU7,#c LBz aos_zd<]"6J9f(äۈF<;U+bTF)xF>) &`Hd% d$pT!ŠiɆ *a9\zhмdT!PtГYp?j-p-RFȿM^ll&]ػ혏>7{=3F= {I7D~ J7,UQ-`K)H^)[XmP4vpH,yT[vu S=hk٨< UY/9T AbρWe tK:0ݤsOƏWs@ Эݒz;3mtkDչ tkę_],_[䔯Wov3w׸BmijͦqU?ԯn Nq;Gr*+WGx5Է~m_ビ2zCym}nh̠BvSfv~#j/DS @ ypSzȯ D]U(؅ios LƏ=ŝU)/< *+H}@Dlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0003-DX Rhodes 3.xiz0000644000000000000000000000434211172205155022631 0ustar 00000000000000\[s8~ϯ`yO$Ql܂2H:!MS?1GǒE>jYz&kuYP-ۆi=]fV}97oήX ̞Vo}o<aWǥg[{/T`O`<m{Y\;]wcy Ġ/K>rVĦv=tߙtYo2 EzVLD&V(鑕Az"ݸ "9ѹ7\(^@Uǣ&[jx]! #g j"O`4M,2H4w%7/6[_Uߡ`hMﺽ ${5I,VG 'kXkEZ?2 EȇDh0 Kq]  ?.97 &5l}+ߓEBFZK,y6Ñ eOu!6N_GORaKC!vx:졛ZҮƖE/hz&K[7 Cwy o DMG'ohCgrݺYtJ\(Ŧ.-SG {eEO}a3}ݍ{B1Bg F\ #q}æ@Ƿ2tf`;vtb , vc4-BKQ,qt5V s# _734Dո,{xGvWMjYh|5r"^z~6v<^|z9"q3SpW\4N8OJz Y?ݶ< Z|1SBIk0[\N0\t;.A@m8Ш4Q0 .EfF3'bVpP?*)|)? /{@:S3m9*-+y##?ZMbK zdv#i-_IqW¯5UXFxx9دVk/W]KUxnKp(lmf0O`3fۨqiƧ9Y||S0JDF_O Rkåzђ3 ~g^x[,+kX9U vY+թFMA΂CCv}G($ƪ <bCou{+N'z]z֫J = /|Q:aXlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0004-DX Rhodes 4.xiz0000644000000000000000000000412411172205155022631 0ustar 00000000000000\[SH~W;*uPC 85/]mHfH'ʿ5!A\<9'}.^~~׍'ڧfa1-xռ_ /.Lo_7y0vl^]R{6xj>pUaOoq&? q1N_.y@#|C;m:c}汱Ď _m ?3m r?X}"XF8(7>hDSI%Z:i$QCӌGɱ DnɃ4>Y$ ?HI$cyy=֘V^ݼ{o8v4>'A>ظ(m6?FQ;V-K$.Œ-B7,y`afpC7ң%س@j&- ~1&Z\aI !`'/RiKRCNt~OΚZw! 1& ֎a@=Q u?bG\`1:z jJj\,`v==Lir=AP 5?آSHxL%TՇ%wVx-,Le9f@82Jw 5; K{ݪHP(-C`4%RxΥyj(j^OɐZy^O@*υX?xsUz 0"STH\IM1Hhҙ&OGj<%3O5݋u:"qwX]{c_h/=8[i4gVozb 3Eqxa{an[QTJ6ɬ髴>{ڭ7‡.oы~--VU^r*V0U²*![rpfJW|Q!Yera5Z{,. CQ{}&[>7蔕荅3*.9+㉍wKÝND;>NՉpZfƽQ~-uBU5OUM\mRժHHi1I?Ry3y -eVԤ,1]1:WMGi"[h3O#W.KTsBlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0005-DX Rhodes 5.xiz0000644000000000000000000000414311172205155022634 0ustar 00000000000000\[s8~ϯ`yO!$a&I 0e6@Hbd/iEwcd~JbKO\~|^jOm_Ս'¦c~?_?^]ћ̿klpײf˱x}t)>J7#Z'Gl#&M>``2uɘB<8Ϊ]=%}dUHb YuQޟbe5|k۲y"ln. OX ©D%IB-t@o)ġe{rlѡƪ|z?32d""Oԯ{_jӥc!־lEk{YGv9 j`'n} ~V֤_BK!,B^,!^3m]O VLny#orP3hcm11;7B<[ pNB(X$n^̾矤LcӖ+M'gER-kwBIegbz=cdGtCl.q2+B,Lञ:ix.vmbYcsBXjsvrחw!:QV[$~mɈ˪LdӀfecD)I.qtE˵#}ʾm ^ZTո,}x;$LgMi8kv:MC.(E}}!>.YH1Z8@Q+؅kweV'%V0Etp@@KH=Gpc0}|A !fj!@G@#~)?lgh/]D b7U!n@ޯ:s˃!')SYķ,RҳanG.J0ޒ刮:hE8I}E0@/\ Dn>jNȬAב^xRY ۔01ڡ@OvP#y=@ϻjq0~M<]Uxp$jspM/Zl2oK q(_zmKЗ,C!68iS,a"X*مc!L9(dȢZZ"~ظЧЖ0xɷEťo2r3H]|@ `Aֺťe/8O(!{,6>ѕ1(ͫD͚5kQbAT py9$R]Der1wjp (#pSos_ ha O3)r%Ti/4[UxY=hhA7I`hmM)8eIE[~IOh2D\v16cJ)e(HzTq'hIwӠ<cl`3d j4% VQGҡ= ?o>[HqSk9B<*i*ϘUHBnRV$T$b9Hb"ΔEh 55͍4yὮ|sb-\|{Hhһ'<>3nT+[T co#J-mlAo rJ:Sn)E,ԝez9$cjZO{KO-]wbZ #E$ԒDTҎ̒!Yc~iij%WaRqI[JO-uZ-ЛsK %JjpFfީ6 _xmzW+J5+,]󢋨y)nV^XURz K&N_Ժg/j}GFKCkwDnt8+\OsSܴ˱F,LȖ\&i.4_Hr;\}9s6^/ KCxD4^p1y 7dC5+ntF(V"߈w9mQlb6"ȇ$f!̈́jlx4ʯPt+V6KkYY*M,lVLKa'\C!'&nڹp[QS6vhrW^!+E gFOċ)Clmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0007-Dig Rhodes.xiz0000644000000000000000000000444111172205155022702 0ustar 00000000000000ksF{~ l3I:S6t~9KQH nӖOM޾n_?~]NXa9m =?x|0~oի?\M/F'<Cϻ>\ڣ }-T{?ȾmL?Ohғ''wtjz: ߆F! W']wU$Ka myOΆhv!W=$.9;D2g?!~1ٰAD5 95-v8l(YH:'@je{ }f*Ɠh2υ#K%z?̖g ɹS6g}a%OwT$_)|U*5PV"5@2XB2f2nO|]4La%h3p7婆Y 6QY?? ٳzAߝN@$9jCL^]ϊu ܥfKJq== ;f|/o#F$'7 BNm$1;qRӫEH4B]ެdйO3l!B1Q/\?7 T\ߋXX\F~M.? %ۀv`sqCŌ @2PQ|=T?C0:P{.7VF*x"8{PLM 0Gp=p0@TY=)l}84aad INqboNyb)^D\^V}Q33 sڧ* p* <=SS'٩9(#=UZf5`sQWgxU7ޑ[fd8Ԥ8],(qovFm-  # \mǟkByZ]dC/v΀)ƖB!YCE𼡱rXrk_oEQA?@@e-cBJKqJ vEk meV9TYDŽIhwQҶ*za݌{O{lO zX ,0pHYQ¤zS K Qkc?9h`kp@:thFΔ|aEp9S'Eʚ.VNv7Zۇ= U߃gsݣ9JW s|:yBhF\Ga0#U"p8^U什V]-k<9.Du\ʟ4zr$6?gi*FA{ VEP$Wջv[SXCxԩ֘lMng{Ewq{НvǓHYgҶl^8(>}ЊȦKBVcm͈)|T>E;74ز"=9IP#5Hd:tx2?lEbۅ3QJ+cϸEP4u{Y$ n}"Oo:{[d-'Yle؋dͨ?*uU= (!?,G\3fb/@2UѦY#Z|oԛ%ǀYؔ5g,88)#A3ߞѷ[z"״3FL'+'x8_\ l cG81S/fҤn>ja.[9M0?,p^P{/pFo;?,THj G 5=DݶO!}OH?hg?, =?4hm\-+IHMQN/J>ytt)pVB)r< XA/Ld&Q =GBLYʖ҆`uR,~X[n5i8sQMnVKXŀf yLB 9^r$2'Xy3!gQJ&Nج[FڬW(sY0`N'9b)2^e' 5 HQ!Yws.*l9Pu mX/R+;|, Uon4DUdY4]Plo3Hm(ިC[VrB}ja&d7+3)YYCٷeZn:3jIJB* r|CHmPD6gYiB\&!#2 ;+3#*F왝 B2ބd KܔU:c&F9z2{a$=Ļ ,fv҅C ʛb3ûzVzjmH]2MF҆Rq|`ԹmOG2,m ˦¡pPڼ^i8X=T6?  aظ8[ZuUiPd<^TY 3zL6W-\fòeosT+GuǡDpO|r^ y…]) 米> ܌R<|d@$ 7.s 6d{#c@őϰۏ6NRrj#l_`[:ܩ}~a4d̥^aC\\FېyO>}QN<߮!<<mL~Z\ZPi.R즹i.X[\ei.4qrrEBYN3nm^šzh<Lt{4<<"! ԁFxTo|]x[jͱ]w4jkElmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0009-Synth Rhodes2.xiz0000644000000000000000000000370711172205155023374 0ustar 00000000000000[s8_= d&M#f\9 h[[,sH_ Hև ܤ-O0jZv+_|qWg3-vCq68>޼{w?`=۞FOm›w⣔߹ z>ZcOL4jd؟ z޽93'Sd 3 ]:ȣ0 *"Z] 5򁃃Џ\Q& cϑVL@X"?$ jD lpϞc!Ԙu]Vp4MьcCL6,`fJMzL R(\z~F\ G6)ܬQF,o"5Qt\"0'[%ɰ! gc'&%0A>ʹ!<T 0qcHY7WY2hv+AqN{`e4$c>$[s>{+`ٸ5ĘX[Fp):3ZynYzSvݬ#l-/2xT҅' -J.R+ш-Y ۞QEk~e Zsټ?1'~W>BJg3" ֞C=3)I!tpF#*mKUGN&Ϸ |B0`;YaO ͢[hcmG =@ ^rMTʝeaG0qdc>luM> c?%1QPkfRBwrH5D$cg,^玼YI1{Ol{bA.L̿Q.Qa.WXBsfx?׿(}C@.l\o_a贻 qeo7 Hs}r,$}rE[4vD  5 BZ"ֳ&=tP;XFiDT;hF#e&Wrq-vng.N ,˥39&.[s:F}E Vi<sa^jR=~> < ," ,eRBH.-]qLDR\pVhnu246k̕ 1zűa<Ե  ԲҢ9* <)Ap PH0Pk7 kjuH ˚ W`y 0[D-S |BB 9pC:NJ_pLW RD<)RFkmFkSlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0010-Synth Rhodes3.xiz0000644000000000000000000000455211172205155023364 0ustar 00000000000000\Qs8~CH`&MK`\9 h,[9ۤߟeKZI&&JZJvuy1?zAއr{ܬ||]ߵvϱcG )wZ_\~9fGto;pD,ȳCea?븈|BޞgRU边r#(X-e !it'BKDD@ uSO5k/'ߝ`>՘uUR?o;1?dd+#h8^TcHiT.MOd(QEK $/$G[ZQ=M!k(y3;GT 00NӚȗЈK`XE 6 AS]}ku6&[s!2ɖQd`ǟeL "Mo|m4'N ,mwZڞG-%8FčֈL=)UV+o2CdRrC°58W4ᬔŬCNbM0؞/<1WKqfq#.Nsfp׉92 0j>{Oh2 0]/!&Ac;+0aOY"i#P-h4C3ضȁaֿGϐP׸]YfMS9N8qVkjP.F"C8r&.45W)AwrF+4aE<M}-6aeZJw\ТImk &r`#M>zWsf4zMAs/sprX^tjdkf&Z69 [ McϕKt W.vލ>\؏ Д2x< w'8]7o@`);ڬ[zڬO=r0c2aO3[BTۗ)ef0heL51<Q%d)g;_ ! UX [9(p@8=TK;tB̝jPqWi BBAMl^F.ь[,URۗ[5ekSNO߻~愱(/bT[M^짚[JF6 Vw++ O ͠!W6+ե%y&1yt{&(i(7uDSjНMѣ4)(Mf OO5ڊա/!]rŷgٷC+eҀ;ѼD^@=g!f+ŗ\ o |}G glۋ/ϔEC~*n.R̋nIP$4vc^ ALv"3n%ꖤMDT nuy^aMIk6H)A$z'<Ffx&)%IcIsxXҸmV2oKct_;7~i\6bosgl}lmZV_2C_k^꣼4מhH֧=W҅6i˯,My~yJPFޣRv =*)ڬG؟!+ʬJ3 ښ(%TXCkRdBMsL@*-Q;q4KJ麮WLM2^aZB'?#`{۷//"?Z?M}A<7jsG-IZJ`y]7_^[ԚﻶVR4=N*HkʺIVTM}j䈽ͭl>ߡjgtV97dO2aͻF"ۍs 8^v\D-ɹ\Dq.8'M,9l9 lpVH!e(SW1Q[CphtyQ:C\i WDRl%*=vWb&l/峘Ss^N3`@fQmobhb 5ޒ M'0z@L^Elf>>ʪn5GIO{pі'Z^G7:MGh~7ZڿO}g4Ulmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0012-Ice Rhodes1.xiz0000644000000000000000000000412011172205155022746 0ustar 00000000000000\[s8~ϯ`yO+3I:l0SfdtQlbKMH9:M>IZOl_OG¦k}?^?_\֟̿׸gYaסCx}p)~:mɗey &fl[w0Zx0zdLA<w~DHGpmkDVޛ7퍌1%R=|mـ| \~QC` |` #᰼UH d2=(: *HjtBZVb'6jZ41 )Im{}=4Qkt-Z(8}]:N>\{(fXxU- Kh)đE\ȋ1kù1jU(MA ańᚘ76Z %Nʑg29 @n7"q&xEJ/6WI{ɬ|rW$vaBĘD[.p&ZzJvEI/!.s'bfuD$T4Dplw\lrBl[L=KFG U}t+nᴴ+ao;؂ m)sv1-q0@YzH2/{Qz1t.)6B]U^Hc_}mfIo苭*n4 =Kk zl=u¹:^OE$fw hP4.KDH^P k``kVGz7.r{Ft'Q"?..wu8=Q4j1ni3>XfY)zK ){˜hVe3ᤎdz_,+hʚeժ%Rh IG~aoGc~ɞ88yr7q0`cbEفqU;N/V ]tݼ5 M>W1yAd YwQޟeױ@Ea<(;p"GpppT*\ @/i>@T ".Q/iS8bϞc!6Di8ͧx: C&!ڎzy3Pcl,8yS\jP`>m|˃j,{X>ۦy>"@˵m+ld wdRTd8*YdپQ,'/(B )L( bs͙$DQs4MS ԩj{='ԣ X\=Z4_SOW)hCV5iEkڟMfm!/372kKICPa-2#%^h9 +,mR%s"Dl 9+Vz,H> *L:^mu nw F]TɊ,b[ Eɸ)@%O5t3LCe^-mڭiTT+rE%P R]Fez1)w*j hǣ07qy( 0]G|@%gjt*,X8AZ( 9$0fȦTEA^ʺl\8d$h2R?}3Ø)gS3TiRm52}*cdq+|-{(DɖVY 6py42BPh/G1A"n/J-Lbz-=,|ʌY#QӓHXw4ԝkT~j+WY_&|"r3sHn$` [-Vvu}ۡtc c iё5gTL@ '@r Is H<#s:U@my_\ l12SIqnv ^6DuNOͻ@,ժq>/PJ?{i{iM^a/֑KKR '^.-1i,mRYWnZ_ڨx(~C_\R.+[U4Wۻizj%֨4 zs=uBITOs4 o7evih]o3\nrAvNY)ىDH84*2%ADz{tKDhKK:m&, 3{Cگe4KqYV4fYA,V5-"M3LNKC'Vk޶tYS&hz\#3E RW%?"sijBlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0014-Ice Rhodes3.xiz0000644000000000000000000000416011172205155022756 0ustar 00000000000000\[s8~ϯ`yO!$a&I fl,v_4-[WݍM&ᩭ9:M>IZԍOg–k;8^?ߞ\;=7kש Cx{r-~w'Z􋃓/'l#k0Z։? xDA< `d2"_[oIwh4QYrlOa+2.xN!88hpX* @9K$+t:IXl:SMT7d# Fqhf3d$DRŞ,T,\F(8~rWN>x(vXxUR#Kc 3sXsYӒ 1olTJVQ(G2?F FRa.i[ M싔^lY;|{\K_yNzjbL-sj@Qҋ_?\y[r+:̰.aBteSz  ϾyĒP˚cv# |j_s81+- eāoee`eY t0"QOT4<5ZV#}z\dч_)8qCY?N=#-tt08EB}}!>C-XH1@Q+؅+o鄑@%herqHJD=Gp?1|4GwtxFaih_RY.A1-QhUvay0$e*˅!˃j,X>ۆq>"@\m+h䆦d+"r,rl!' +!ERt93Ї"tĦdq]zT,z.E e-IƯ#!"<}ĜGѝbo!n36:ܙwԅQS٩(p1ĖrP7O%BD]R[%s"D@6%UKs5'O2&/[t]ӻ=|.Odd[Z8'Z iLCi]7k׬7kjy9/X0V^`t?`9A+iTSbGQf9ɀr>\cN80w"oKwKyOT.y gAت˂ī@zC#kFkhJY$%덦u+S6Βt'hp3߷+r9UJ9C&UVF/~Yiff+3KJ8QrdeZV.5G+MbGk'H>CޒoQxSіۍO1u{ɡn`/ HE%ƚM\ǮF& |ԝ\^JSɽ$Kz8=wgc{DQHXw8"a H=~g$.†xc`'Pv3I$q7nE/ƖU"Kgju#Agd.K 9*ɥvh R%:K 3#_^"V ȥxΑKsv ʪkt@SXX0di+z#"hN% ;m@i jBG ĕx$x>=O'҃#(N_wK]"kalPxe7dӷxUߗ{n|=<ZJdmIOC2~ˀ4W =kT jl5U¹*^MU$fɳo2 hx44.KDH~ foaGz9⮺r̬Hzt(Q".w9=lQ6⧎M:m&b+, 3Eok'eoA![[Ͳ-}lͲjUђY)R43णl~ℼ w6n`+jRM+!n -4_ Clmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0033-FM Rhodes 1.xiz0000644000000000000000000000424411172205155022622 0ustar 00000000000000\_s8`&M&0e.@Hz/al6I'?VҤ=WjwӊO= B>V'#پzw+qݻ?o76^qicG9|;^~@VcON*tnڣv3 G^%~DKq}t<^cRU~r# ъ(X/ 7!lFl 4,IQ)M=u"B~!ǎnh}&|1몪`<; }t2]DwLnh4Y=$h {_2=_h"ObqybrM}K(y 2gԛtGX`B<<]'҆(-on@ͺA6[x|W5!dk &_OM]! v72齿k@\aϣA' v SEJ*g9kGhnrLXgq"sRɌ"6jKsm` Ct8XkzxӉe>ݣ2MC$0# a]/oibڐd8( Cg,\9Qt`N9<\պ_6[@#mξa6c5k\ծ,xLOi+/7gVfyEf. ] B0M/f>nnRjFk]NB@氦Y>,pEkn- zU,ðSR,wذӆfNZ`% sd s{s,A DKXen5/'ʙjdi磤++ 2 ;)o! 5a-&}[' 9yj8wgC*2-AG( v*raxlTIQ^Jn +O:?=Kow"AFjn汆ENgi 9e4Ub4{x*gL9,3Vsw^v$b]Xd'( @X G49UzT*l4!cHؘy+k'k}eUjd@-FI+1UZ_Xe +>Tv3ou a*OaEtPȆz*UTYtGx;Pm5FOo*{uJ+iёkiDqCNGÉO:>:7Iói=Ϸz[iǫrttpo{KF8.ᣔߑ8O,?y'aOoi6?f`9M\ٴ(Un04X'&ބ)uF}`>K}%|ll˴{#l(O G.E mBQgcY!|cIDPS'H' rlƞ |1뎬tO21MHѤ5_;&[NƆn_7;ң.t|-+1"kL.0L'K|(eW5BFp-So0ZEd+OLi=j|8qre1BEs hy(E,t}W!! hk#?lь aUkCtDsçfcQƞYHI,y 5P|هo%K[oXz{ 嚫woG,wg~eFB$(/^ܵhɧ7+)77v7Vruh!+V3I_ h T`\1ӛEI 9Mp1B뼲!(Yq)_:?DC6 ǻH|Xv8-MBfy :?(-Vv??t.~u)-kG$9ȏP G+NJn=â/5=< =|EKXh$d3LI:IEkg8h&Ϛza$1(-yú ;ɆYUGe+˚',~"_ iLm.[% @T/ (Ģ K:[ ̪SŌu/DzXJy%OVMt.P2)Kj.ĽcS֎}'&BӿwkVAC'UN/t΄pi0Lg`_PK`1qa3HZe%>E}B!̐\!Ji) =ላ>*et׻Р{E`$_~RԾ[ x-RL‹Z( 4Tny?6ܥ+5;hmЃmH6̆, tٓ.t ^qR1Ȼr4 ik@$oYIIT;#PtvGҮH\LNzh &or#ntU/:{Zn*8FWvkV=8/IGԍ<]PT6@/c31[3 )nSM_H 0{ʍ~mŢ6Ο;܇o7/Y%~׾ևGNN*7pꮱ~=Pg'e]Okt g!ŒNūC+.55P)ZF?s0u\Oq)Duܲ:.[swǹ|Q#qgvj=Z{(dw_M׋CQHd? HYF8@LۧUdݙ@8*pɌZĝ7mw^VD_x_]Dlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0035-FM Rhodes 3.xiz0000644000000000000000000000413311172205155022623 0ustar 00000000000000\[s8~`yO!IaL FEp 2K"H666myjjKs>qe<׳z]5ޟV+eӧôwҬ~yv[wMۖ5 {X7ࣄq\Ƶʟ4zN>bĕg=Uƿ?ƃ?gQxI펷؇"`OS1ښ<;'mو=򽔑qa$}}ddqM= 2S™%q}'74ز"=;IR#5UHd:~tXdf"BMTozxXī4j{H)zt=_H*Sʹ9iJS0!ZqMb!,)ac,Dؙ:#lAo/6b{Pu_OאX7,xŚv NMZu)9?;0>ZE(F9H*]c@!`J,y/bC}ޓXPdݿYE AhAw1zBhkYؐ# lKh,`t!]n]$-:CuR!4<(ZEa4w2eD^#YH ų7_RqåaX3JYȓP!_>FZ$SXj{KzRIj{MzWz._BTS4En#h6uvxL-_v#7v19lѰ=`L(qȧQ[EˌlP\KrEďK}j.JF?b@3V W&~!Q/9atI,p |@pD%e}'VmXC pW-3 s*~&țc lP$&RmWylbL(NҮGWV Bl}aG{X4aEPaedcYbJr/RWLQEE3X^6d-P*)K):,4c%'`x0oC?{15lN|k ;ȹY͌N?DݭH)DBaRT\Q" |Ȇ,\C3M0U8$҈ d/0FQ {f'4dC˩_B[ aTRJ'̤(54/=l4IˢA0`UGx龡 oϮPuhH) {zVKs~ҳ\DҁRpמdG6KeSX|XQ XH(*QĀ^,Aغ8[fDrD F(2;m`D6wN܂EMDGD/砽{+&acC-) [GDs6 G[ zgГ=D5fP=;mvMnė!7`O+mQo}D&|NSao]GV+f~2p2iGVnM(p2iTW>Wat`k 1 hbr]_j-ƹH2̛#2fYs-ǹ9\qnpr[̮}mABpnh9zOd?2~{@xӰsSyȯ9DD oa}8锯~k|SX[*M+5gT.bElmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0036-FM Rhodes 4.xiz0000644000000000000000000000465111172205155022632 0ustar 00000000000000\s8_I`&IK`\^4-[9?HZ&OMj%V?ty<5m벪}:Vۆi=^V什V7鷻nߵ1:?PUi̓qe{V*FAg VAXxI.wwmysĠOjĦv&]twiw< E|-MD'MigF"CG.Z9X^v+w6fDzh*:,QH-5u4 džJ6u¦B';Fʠ)SdhzTs nyQ CPիﺽ LzE0 oZZq B,!3Oi\VOLx*ʼn0YlɜAl8Cks`. ٜFv-!j7(m46~V;Nz7k^;Kf-Z[Bp Mo] d-}ͺ3atJ\eҙ̱-SG {iEhï]W6ڙCYzB+ Vfaw=lZ چV-Rf9dA4[ X1 "tW쩞9`62b?_O;nW)Bؽt3w8}wINKOyQ-K?0jjpAg|-:razuw軖]3!mPcoOmc婬ݍs„8Aw\,eȹ\Ĝq.b8 ,bLjRnfnj[֡vHzsPn׽$! f`A>-?L2-[x%iE-%,;G Tm\fO[ 2%a!nl;4EoZlJ$R4kGǪŮH[tf`'NoGYxMOmfdb{{-CEylAx&x?ڗ6[lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0037-FM Rhodes 5.xiz0000644000000000000000000000416411172205155022633 0ustar 00000000000000\[SH~W;*uPC 8/]mHfH'#~:Ojr믻(_7O'–g;0_6?]џοݛ׸g۳qϱ #xst%>M#ex C 6&V0^5x0zdLa=oE^?\h Cpklogof޴72t*( EF/É!7> (]V:$mZ,|Lq$}: *ġm{ ѡ[|022 v'7Qcl6:W(:y{oynbǐ>*l|B=VG0'mx%Z qdbY pn}"/YH1Zx@Q+؅rXU'c BF+X*gy8"H% Č#8`1?o:a(LM3<bxycN}$c3,s[xMU}([<|gw`ITs[)AYJ}t r{}hSG+b-oҔ,BtA@QN/rłz}䊸hHnBkĄ !Ĭ<׉^SX ڔ03[WB=uڛ,z.D e-MƯ!$<}ԜMƽbm!.s6:ޚWԥ})zbK(zZx!" wF6 e:a!gEV\ڇ!ŶLK-.tAը !#Y1Y&Ė2N?Wn LBRܡ4꾓4khv*NQ`I_yKȑ X.Ϣtɔ; 5DHOۄwqy(pG|D%Rdjt *,X8AH[H 9$0fEA^Һh4-?d$ܗt4o?}3ô3ζJ)gh"M\_Biq+nf=rd," ZXysJ${tsz^ȭ3[8 @zzo|',|ʌ[KtHquF.65z]8K#M+FUt%WN_5$Kz4?{@ɦQHXv8 a H~_$|V3/;"[[6є2j8@9WzH2⍷D:&C(1QEn2rh?q[$@l0k?Ce.{N (ƙځG{iIډ鞞mޝQ`dcFwzoPJ?[i۷+da+M>L ;VwJsV;4;^NA( ?巠vRx4RxhjT[ӷj}CVū@ce׎>ntتB/ MsST+FN\'i4_Hz{L7lܸ[@Bcih/%L$7s00o)+!=Л qgF9/R>9+IȗKǝΈ=Fc+|ˢ:k&`ت̈́Sdlڐk3pY^ͲfyA,V5-"E3H N˖ʛC.Nȥh˵m(&M l쮹B&>Jق@yZ'x$/iBlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0038-FM Rhodes 6.xiz0000644000000000000000000000404211172205155022630 0ustar 00000000000000\[s8~Cn$L iE"ŗ% 2H>MBvyJbK"}瓔/: I8kZua?l|yv^?gtMs=?87L߱>`O,'yB Fd؝ #}#q+'\( &m}긍&mٝ;>&R=6~AeZ> \vVTf  rЏl孂U@ 2©T%CjiAR.v@oKıi&{v-&l0G2|jihpM^5(p{õcS fp'eD ⮲Vl/.|(ԋE4`,qG'G%+jخ>gjq( GA +^k]c8"Q'o,EH5n_FBh6Ϳ;zL}v4v0=84rsadVBt/i-`/r#SU&̜ȅׯRWh0UBU>mױ ctmzGV}siy'i6B"Arrh۵ |] &ɒy>1K!t꩟"Mf6.2ٔ =_v&sض2^i5=5nJ=ǩ}z_[NK1KH`y 1BL/.\b[ZaMp<uLeD,3|M93}tE?LF7i. m.;ĺ'`Y%> ϒ.Js_36vBɓ_YJikϾ%nڸHԇK=g&LX(ɓ gb!,l 'ȀEoGSVΤFD\$ U$55R f M8iMxJX foi5+cB5S\s-D \BqJQ-?`- -Y36@[(I/dZՖ-Y;I>;Gۘ~_/0e|HJ'fn>U矉&ݍ$($9`iX`+KƇ#zj”rќo8cH#Q*Ņ҇F칕 f!MӺu4R룚\TeTCUj9^&E$&"CؔƚI]7r; Z$%+*B 'p{Ec+Ave=u8ݡl! _;Ena_x9nKEOsMWQ1**x:q2E*Y~AfÂ˙x,rxM0?:,AgވZ%vF1Kϭpdkw섞9NྈxEdN ۞9zD_3_]_ _aZ"*n/knOIt~muk|/a~"9ɩ:5- "{{gj}^ḛoEhxXw/7$d};U 4 =}k zl=u¹:^Oe94ShZ]k;P]"jD v뷳O [1z8ABp\^yѸ]\Gt~ihClmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0041-Soft Rhodes.xiz0000644000000000000000000000433711172205155023114 0ustar 00000000000000\[s8~ϯ`yOftf FEp 2K#]mll3I禣OW_ ףuIF9.}?N{7GGWݍn_ִ8C|st6:oq)k9p!l\!~q1=hQao4t>zE%?t5 ( Eԫ7!ޙtCgt K,+Z) "7$\~$4  2[mD?hfdy@ism§D7t%qNc?0epDw%7os!U}W 7Ymo1(lu|-V:Fg?'犭Q)9`B,!Y2O\ObTAR TYFɂ}'k}6#߭ =q ʚ`Mh%*Om/v:.36_זB S ޶%8Sc,< **}[KE.ta3B2xTαk#S[R816K~}vbt|>B_sL$tK|C5kCtA>Ypç¥f2D|ZNx},~=Up~w'gu\cshYx% NJ}0un]$NsӃYԯLZѲH~8m[!tdUōD$+9sd'MRb<{~vR$JˉVH񕦭 ¾CE+Xg$l0 ;)Zhj~jXvM,]$H\C! (m44) "{-z>Ŕf瓧̬ k#Umъ^?S10VȩZe4`n S%rzaV֎Hz~==w#{C>YC- C-,ZX;_7b>o"~PZki֍5oZGزUOX];Dw`WW_Fur~SIhB@_/H\l{@@aTq! C5,qAgWSy,TpXpf><Ӫ B(}vC-J2_+6#_jM:~雸}^Q1PTyGk:K{ lI.RlW\ orQ-I.$qr˸z9%w /v?oE~ah_Z#P+Okn׽7F~IHjWRv џRO= *%^)WŠnffc-5 f#[Llb-Mhu-V%5"eC]dͤQxx\g6䤭}t|TG[{ؠZUvmv9}<73M%~aA~5_63ǿAqVtf\ϼqJziV'L@*J*2V믢>!W믢>ٮOX*ͯ]QTZeav-LIF6w@^ z8-aHlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0042-Hard Rhodes1.xiz0000644000000000000000000000476611172205155023147 0ustar 00000000000000\s6 _sd;sv%շgXtՖ<}? R9kꩍ $ u>zd~xq눹 v܇mˇ7ot9l6֦!{{>pm/|y#6Q?OhGEHhh: >K7}fpNb?0ePTvJ>|}4[y6 wS&+PĂ $ .ir!%ލ+$mkB-"ٰ2YD2g2}8MĄ~-7F\M,hIV iA\%C&8$&} 3/%j<,4Go ;j ږbzdkoOgH6]sUα / aX'B^ႳR*uh:׀7,O]۸,ȃE[qfI#.f*gLG>ĖX,$:nN!j&>[34Yql Ypy ͽ496)n; ߥ[g{k֮,x5+3mps~ޱr"6;Xc?$ە0RѸkv턑C>M AR<>ieo!*,"B -Fwŧfar[\F!VgYؘ=8/-8t({:O{.'F`F*xguve2IJC?2nx ":QNfPbACRحHIR|bk yRs̗>]|.R@#`;)0\%A%DRS֯%f#le < mFkH` rjd_([rj%5C˄iK%R%b|F7C@V!~!QpO9wIִo &)PDE:uf]G˄ʄ}+* DK*1_Li ʼn SLv>J67`f5Š̖ TQ1Sm/ۋY+gBD"ӒPnC4#k} JJR{K,4m)g`z:_ cmrP_޷rv<3<P\ -\஼X&r)CJn*q) R W@TCQV aĥs󘊲>:afi@`FcK~_(}wm&'lwWFd Ԓڷ UhziVd^j1'B NOIJzB wWTƆ.eR:1(ܔ3M| M!a?NM Rؠ;d99+}ĺsn6.[7}=BU{rp0KB `&? r5TYQ.Lv*5P=\B|0 U]m4…j`Q+#J9XDZs2BsyvÖH(%YZmT7H䮊0)o(*&ǝ :8ҫƓh XKto%M?>%vέ.?TM45h2Q: `QAoM5a;kB&mBVS q-zCrx U}4ھeXy +,s_?.X隘*7RζӪC_^ޚ?mZrR"i(nz}g7UZKݗRH)MzM\&gǹZj 2ȹV\Eq8+p5Y [jUO fz6g <ۨnzL0J~N^dp{Y0Qr=uaJ v^i\5W ݹ;K2tgl)nzI\/[~Mqk;GgYlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0043-Hard Rhodes2.xiz0000644000000000000000000000412511172205155023136 0ustar 00000000000000\[s8~ϯ`yOIHL`l,v_4-[WIGIҤ]ښssӧOV/>>GC/ƇzPӱlpY.莯g_n{״cYϡ|upW1uĦQ "z<¾kc36[.`O`؋2dOSo0نggCIg؛&Xbgʶl~f8KtCu`4M, MH(OسjcyшdU靈K%x7JDZQVlX@$b(%I$[FYoXQ~)7] U,dM7Vg#d<Yj27IbAythe4ԗXI 08#ybV`rSb!5VMaj9+J|=xN=}݌o{j=B'B#r;*̴BE"~ئ F&b$Ȓ`>MP0K*0,BH ϣ,ޤam8I“~⟧p\rCY?N",pl rT"A~a1.(9;Hӭy(+wiA'-M2?>,qQ?ӡ*!Q@ E78,Tir= #Yv6 =kmKgI(_?@pMD{. ZPT,חlJ6aj Na/i ۅ%ˣ7o xRjБ҂@)֜`) l=ϑ]x>H#`#)aܗj/zt=J$$ԣ X A m-.!I4=aߤ5MǣZE*ǃ^u!)i=;SSH(y 6 xa"6m9b@%U+s=k &/{7 ] d~(lǀl1[$qK,(p+ k"2&u5=Zs7L.%Qz`Xe}Ǐ , D!Op L5HQ(ۈWq S8g||'UD*,۞5^[ l-Е(KMHvkt)G>u&hpQ7+pU9C&vFj/4ָVtg;K9QvfAU0]jK)VrMT"'oG>A"nOJT|z5=61}93o/9G '3 v:6IY,;pzYi{e=?;b[JMேMg69Y{$%{{$a oEPX9֝m 746ќJ񹸘}rgR U(/A#jc=DPW=~=; t$ < ,O69c@g?ǰ]@^^;@cXpKWRa[B)~Ҷ Yگwֆ-p])EgbV2F:.q'IeNz鳴vn ޗ<`vz_}m.g)2nˀ,WI=UoTIjl5Uҹ*^y"fjwKhx24^+DPƒ^߻EY)ѨğBJe_*Fۥԑ>ND4' uN`eٙҾ- f nժ=O|ίUKZE[Udڊ4j| ]4R[{[fMOOؖes&ņ_xZo"~xkBlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0044-Echo Rhodes.xiz0000644000000000000000000000454611172205155023064 0ustar 00000000000000\s8_CHL`\9B:{(nA&CJ664MƬVjwJq=ۡuQFX6}O˃?z~ڵaϡ}|yp?%2uŦїyy=ƦlLk8Xh0t.zpE%v{ (:‹}Nhr?w}t۝to.bYg-O22N֌dol,=".P?6fz8tXgKPw[V$'6 jĺ i8Noi6e"•_͹SxwH-t2wYr$ .{eER^+#k WkFZ=dɜpڿE(TMP7FZe૚,(M7FPdwy #B#(n7bz&ݗb^2wH{s{=2mY0JuV0LRhSOdᘶ= fPszS":nfMJ\*sQ\]:6,)<:JYԈ?ܿUh5HZ9vh"IMS(5 ^$rɂ`|1b6%lW`: ."`>.b?A]6l|' yOtڕx]?4ΚP.ȡ\\E3i5_ Awr@c&sX=>,pP*$"B,՗"~@fAs1zBϲ!(ۖܵ>ZC:ۻHwhC5R=(ڕv0:C 2ndx%!YHuţ=J}RЭH1Tմ0 y2s.6eobOɔ0΂TN%qkjQ*)"V6^"x6-*_v#761mMwQwtI.`˜QbUtN 3Aq.3x(~lsұ^cq;>L@ 'a|xJ@( ^ֱ4xݒHLJ=*- b!#% nVYfۃqwS0s7WV ]U0վ}o۞5sX+s)uUk9\ m ӓchc59<4R!=rxQ@VU&8N˯fgc#䂰M^W;g$$֚6GƑ4*к:70t3lSS5\<ΤM*qSBwwɚʟ*vVU[2)XU<퉩<AՋ]wHcޝ֋\-sXb*ݷ2-Y\LF/Z ׳:TFѴ&O|[npUKB։ޮ-n|$x(XԾs'Y!04"5q.r4"9v˨9Qr˨s9eTN #*loYMGS;3̐{ qKd/5 v)5H s3Xk塨 b>jEr(k;uEKhDm3P"6kGi%*&6KP$?@&erNGiV7E5JB4E٤4cDaJc:Js?-grt-g9:;dTMڒ7Z8n?^]ћ̿k]˚E-K(w௞OMp>Ə80qmbnG:?&Qw>G!Wn/xqGĢUD^Aer?>N?%ʘ?#ǶlDA8(!ChM|dAGqVK@ XSTUIN"KP[qlYŞ<$|jx6ޏ9 2]<nmG^zD ']{ozNl@_$ ͧ߉[3xl didh8juU? ?(PdžXL0PDf`RѼ@k˰b ٗb>^RtGw}/?t5v]LYy :@۬#|Dt 3M\wY䪔KD$A:G;kǮ9. h-,iMN*h>!Z֞{fec Bl 4FVo) 7|"8&NC t!n]-:CuR!÷ vf20)\~mȉ--DL$g9ozR dR0H)LRӂ@:֋Bԥh62;-,Y"5Q^)xMXS JiOٸ0lDCCnh|d_brؚgqw|).`QbϓMrM]H 9٠8t]S[g < L'JBE6ms"DeRذWVJs}2H^8P[n55$Mf7[}5eq@+nnTF'Yr< WLeB *(YsfY %Qeo ;~"(x٠XL> ")(.T0%ҎGW֔ Bl}G1 ,BX1T\rXhַay{̤wE,#G{!BĨ"ˢB` C"#mc *R { >M[y)Y;MÛOެ0cm3柳jTT}WY7iJB* fK5&8qU % S4$]*v%9g_󙒌R {a2si^Raw2Gπ%RE[n*1 =pzڦV$=ĻK|^ at^΃VpOlrZ yG}]ؼscIr a@LKNѤixRlzf\1Nw蒺KvZq~$`7'p)9$:#jw_MOfhIƥ lSsYr؎V4 l tuQU}%GF%Ŭz{n.*d52nT8i=kTe5U [Ms8W\4+8Q5͝7L|mBx;?4{"i kƒ`пǧ6C"$;[; Dz,CněP͚Jl3@UJmodh>Y4NCƖ4M3-V-"M35tJ8-e!6ß  6 VQU1zcf5ϴ]NGaI1 80Fۯ9/zNC?gIlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Rhodes/0065-Steel Rhodes.xiz0000644000000000000000000000472111172205155023260 0ustar 00000000000000\s8_%~ r@:{(n6񇤕lli6fVݟVzf}:˚w^Z4o_ƟR~/7b;b#&=}stCu 'zO'זzuGݰ7+̂:jm[n`>$7z1φ~%۲ | qc$}bl-n}hCrL`ɼD멓(] 9Xbm2>՘u[x2_nELT$]lZݎ 0eҭy&/Qp[ /n\ _hU\jɂ5%9bx}d[oZǑn"&̡wkAAT5Dl@UeAm|flM7:gH |X$pMXB8$oK28YWK4V0Y/t7Weq>k0]:h[Fpꁭ] L)ΑlcsUƱ / laX'\^Y)Y85kzױMQr7}rVY܈v80 U]zi5Ȝu2SEPh@v4 Z8DMY,5>_TcŬmaX0ǀXKc^?c;O]<~ƼgmWif +W󎁔 9 {ٮąQzt]tnk;u:iq4bYlMF_FL V !Rh1 N.>E BGpj96ӥ", sGŶ,:uOpEz= I݃bjz]Y891~[ 9`4,$;pN|G)0i]/]J>i?Po5]l-!B-^ 4 c ک,$Y«4Q^)9&ž~-6ae.њ.hQ#Ink6O'Ʌ& cFM>L9u!,̉ũ{w<#@׀i rjd_([rj%5C˘qK}%Rt~1gz_A@FV.~!QEpO9wI ״o &)cPDyD:uf]G˄c F>0⯨6(/ybBSP` 0GWF!>Q>"UXTrX ۡ<=fT[ tG^jѫȴdi{>o+ԢHq߂eؾ`MVr ̮E0Ff`)G E})-iq/:#S%Qq Em"HR$5>G }$PJ5[) aF\:g8a((]fT{~b|]rxlɿ,W:Kmg [ݕk5H1ƥsͻziVdkv'B NIJzL WTƆ.dR:1(ܔ3Mt M!a?NCz{oyq-͊4ԣݒ rTPw*#rY<ޜ=a0޺' tۓ Nkv{AzJ]UmmwvÖAzPcC#SJHoW UhԿ ov&]=6.`$Z֌E$`kvϛ-s@}M#iJLRknvJPA%2>S`3$Zub[, vex+pܾV"©D4ck #:y7x7_b:4,VA}JndzO'!%Ӱ:ٗ~ l\K0&ѣWN[7rN< <5fŒ,'IQSOY1k}j- ϫh_,cEaů㏗Wc ( fHix',ܖ)CUu2Q$z`q9a4bga@sUO, 1ySu;zknW듑GQ?:'7ʟ{]ovnK٫'Q>XQ>MEJ9W‹/Ynpk ^@܇X0(L(Yϣ R_(QǿۂiÂgz8𴂺u?hS [e.`.;xbH˅9nD8)1i?2]㿣]^AFOB{-8?=Hg|tG*OѪpVfnb29ҧDgiѡ^/Yg95luڭ=Ud[{f'_kZͮ~Wӻx#/ h?3[_/Q+굮7mIHwAw"PzE4G:4Yjbm$UPŻ_SJX?ԘX8 pk-RWgJ> _aJ'k{+/CJ(en u4Vh@3mhf+ }e:g`au(Eʜ-&n2\tX,bT,"ZqvFE5x[WԱA}ݧ#^qX+x`;W"^qX+xa8l ^ujSWvc"^qX+xa8,EⰈW`)t"^q/Rf&zu,\+xa8,֓ 0 0V 0 0<-HQfV 0`0 ƃx0` a,y0a<P2axat=9 l+]zaQ+a<0Y P^bn;$5Rs$AI{q3ø))Rb(ƂQ&˓=A`rJrAJ߳ {>0g>(& J~FY| |@Ay|oL>GgJqCey087k t<%f$ FkI좜>.`0K`1CmA|@0o(Od`3nmH>%Hb]E,1\1#`4KrQN]/P'#q`gr<1m6Q'> <$QNs(y0|m3,|>\gh~ >_sQâ,EE~"`Q(bڌ&EDDfDB.[W<ϥsQ}X5xlk +׿^V#jUɜR҆5x2+Ԑ"0T~Ti e2)3ߙkg~lKLwys|Q!VkHw~>I[JTp[R|ZR-Jx빯ԭ+ cRL|t@0Q԰ū2-W A&/~Y6br)nĂ-qqGx|$xc(Q,Ix!Vy)l*)d7 MC'nK-bav_Hƕ:Ew?[23rX[t[El|R8[ t42>8;N5R0ڬL> Xi徑~4u]TM0+D)V.TMMR.咃;))$Uų@ȩWLTDT 2^PBk!HtHԞG!cZ4Z XXS9ekںD!h5tj|S /qE>֎*7m AiYaxLB!^D$ռEJ*Q`Ts~f# (3JIJ{bSD)=DŞ,7E ="_FxoUp] EͪPUw*NK{m]}_t54dJMHY2[ܢPX|R]H& ldIg@/:Ijt"_ z:qY: 废5t mqYlffC'%Uf[_nYv2QF*Px}2=Tж?f,#>QW7Iʗ7=>Y /9җ ƍtfr>,9/ {Xz@ŽI3 S 5į/;ƺaaoh q,o|XlVIMį!]4ɿ6W%AgįM&~}u&%Iu^j>[MįM*$q@##$i^N}Cא{}kwocճا=>`xH尢Eqdwsv&m&mE&~:t+Ls#X.?zXJ/R&ޱJ4 atu6Bč.火I0rRZͻЫռZDH]ܹ_hWs~׼iET;T=ConozV-otT*!r~D9Am} sjH8B_ҕV[҄a̡ij2/n5+i2, | ]!D4Sn=/2L´+^d9Ւ^?*IV*P~#̾-ʹKk JD7Vhv#b_7h:Yߝv'7*?\rlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Splited/0002-Strings and Reed2.xiz0000644000000000000000000001015211172205155024237 0ustar 00000000000000]]s6}ϯ=HY_3I:Z[z6X4}mHHKA+uF@8{'Qyxh< >~=};ӻwury|jxS8ow<3hAL]^^n./_sE gëI&2ƄK5B=zWvx}e&?d<$^gtVMo؛ ob9 ⧘0^pJ ,EB-m0Jqbߣ((>5˺a6ŭ }2h'?ݬ~p|pcC#K'c8d(+)HE?*YZ,H'oMcH5`wv;=S:MqpQCh1KLj=Qd:ȒYu}( hq=,\E/~~$_AH((߽y4IGjnwH8':^UjX5u"(bE0 010nLw d=҇յW:'7ʟ{]ovnKً'Q>XQ6Fo E1h= ^D_6Nd"7,%oL}T{Ee 0!dYP>w5&:Bq9N28jDA vNQ/:MW'XBm_Z.G йUf](x79C|l&v?[oӫ0 mܰ ӳϴ }L+X̎##H!I-Zie^1"oJ>`|kY:M@,q mf# E!*mnM]P2 8]p^C(N9л8 Ba<0`0 ƃCP_ƂX0bv cL1U(Z2-AxvyOpp4l!nP8sWv: C^-`h `'0adadada,iAKFyZ2`0 ƃx0` a<0`* CQzddøܮbHSUv FV<ۀacW(Xσx0`F$8ng*!{97W=c(lO.Fq0Q f9] cve#7Pm0tFsPes^/ s |nA!|֒>b 8'la(σ,.PPfA0ɧv.فGܐ,aB|qNOh-V%Y0ZK2`ovQL?#?n0\|@0n(OS2Y036ρQLR)uς?uX0b F$w٥!-1>[mal *1}i!bD!}΂>gh+aarQ8Ţ3[.rQâ(EEv"`Q(b&EDDfD\.[W<ϥL(vq(^n^=[ Ba{t帾ypk52(V"#_^ߐ6$$ţI$3.*Nd(KDĈM4g_X/ה=*>˖7gbufVF#a(UJn)R5uJqS_[" -&of7_N sZjE' vd0IԊJEUeMj^+lFvr*TZi~2-bKt[~! 6'݅TYEbp屖XfQTP4$ I:g%K\Gp1 [qr_(ƕ*i".Ƅ?Ʉ$RfR/(#NXC[ɿ //ΎSW6'Œ_Rӳ9%kCtz]L 貊bKN %KDj)'{X' ˹,͵ 7RHgڶWSŨid]t•ݕ-"S[J 5E쫱Έ"5m]dsv7t>vCn|:_;WO۠.6sߔ-e0&; xὩ sbt>GuxaITEmؔՆî6p"jϨ'INQ:0PdZmXkZmVU:^ڰQmT9WTbGڸTP~r/&6lجOZ=j BkؘL5a#nVk ?# AŪQu+(8tK*.N*y?YņiE̹pwɤgRxϴKKw{vL(݁`.m> LgoYm2Uo5vԬdB gmT~&endbe&Yɴ->K㥶v窷'w&;j U(iU.&\!atggbz;ড&͐6|)v9?Wx16Vdo[tx5v_ T[]:)NSqmWԋ4WÑs{%&gjžG?CVfvt\v_ߝWݓJ:p_-c0zsV5Ncm0yGz}kuZ!=_񰎾W?nkjj^)es_;͎KLq hG~dMnkk&SZU^P힢vx h|@5ޞZx_WDU:؊fa%:T/|l}X`&4ZZoM<WX~}+kN)+_]v)X$t~=#p`kەpJv/nrLc7&krކt%r@rrCD tgz9ر~j|ph3ԺHlTGtx|FTُٿ|GJO|t6v3ߟ뻋}'Q#AkK|'B:~H>Mcswh? ᯕ Xnѓ?ugPXçO.qQ:ڙƻiL)b//9m\RˤT2f`&J:idw@b~ʩdpN["{xf %P8t =ɟJ;e@~* 8c$q@}qQ}XUlm820 Bڿ|9YYCZ&lRq|LA#YY}@-kbOj * MGxgbM<>2) aKGJX²f@vr|RdKffHbKT +[S Ɏ2)//99,Y2wl&LsrX5a#|N9%l 0fyl[/ *}jk qp҇5+kjꂢ N?e-\>w'v[U1}nqmUcA$D˻-Z4DD:(B)/  @8F kAA#+> d3>C!H U ZBr ..`?R8$`&.:Ȇ1Q n0((>I]ƾD1CwXW1F>HuƵB:hscg[`f4Hoi!i6ejƣax`=cGE.Ԁ"#GS^#1 '$|rTdS 0[l\ 3ủVX #!h|vy tޛc;29lxWfRJr;{U<녫hVU &IXfyDDb݊ub]i]M-_iDP!ˀм#gуdN.K1{k;RħBHtWLδ"o4;2Ve'" ]+3M*Vw.\U9Uo.!XDes/D \qg*1bR.eK(p<)o,O'ۖ6- }XuפOzmuك:7aI;Ӗ'U4"VꌭZ/Y2'8mPldqS㯛Lw<+0MdULZ1Syjʆ+doJ63mgٮ?qdRd `G(֬:j +Ro/7GJԏLOw`ް_QcyyA?'=?gJO:N_v /@ljQ g c8,l4Nѕ0) 4tU&xGϺ6z8>P8#L3=0ݙ^zt8aҕo'l.E=/U}قMQhEEȢ+=ɕVi9Gy3|7^J>%wbv^OrUSu5!8iʎRr4S%JЩ{f<0$PNC6S%JO*%Tyl=1Uiǰ=CN4cY8uQNTpP(-I^'uSiۢoLBS- ~ .|xЌaMؙ&ui_rތeMki0K* Mߓ_`˽4/ܹW`DZ&>S12F@&>L&کBn: .NQa[np-6pL5N׎/З9lf55v` /I`N/IV'=;^tn ]K&7%cTi`qFb_j1&3{kJXS{`Jcke_aN?K#OL se[=2-=xf'.4f.&6aL |Ke4b[UROѓˍ.ꛘznboԴ)7 m;&Hrlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Splited/0033-Choir and Reed.xiz0000644000000000000000000001265211172205155023603 0ustar 00000000000000]]sF}ϯ}">,ULJk5kmM* KV"VBߋ }S&rӷoOb~Ygy|o:s?tfxdz;N6翿ھO-?\8e憿ltu~}{9ʺk/7?Y3=ȯwܐ,߃u3\ۻbu7k1,_.dtʖk[3Yf_mcy-yxp&%/-++.@x=-՛MQK74~^!G7]&?>yՑNngQ[}-\gJ$?/]376_G&-i4vISi*o1[,Qh<e7]7վ"9$~bԶ׼Sh=𝼍}r>7V*!gD IzxxؾQF`f]7oy"U2!o_uT.t|Q\;MS}.ѭQ:f' 7ףqF 痩?zF\^nE}]>jh[ mh4Zh@CUB h]Z@CikQʨC%rz:>Q, TpX@)X@*XD+ΈW,^ ^1,VYWf^y©>#^1,"^l aaaZxժ+IRE>oLπW-2O^^2:*Z!^hbEp¨|ղC"6D"`{4m@h#va4 BM ec480 #hq808081Cޥ?h͈a lFo[:|gPSzi$AJ<2>}Ual\7d'#Pņ$ǷY* !Yh>@ )0[ |dBIa2$`0R0`#a^&fˌ80808080D qp!׌bϝ*1L4iCoDz;a  Wj]!80(2$G=Y^~|fqdo@͞m6V!>Z o0$Kʁ;e ឃt$h} c۬c ͒8$SA>cTp$|Ie:=#(I'(Hό>|qWXe -v $.GYFr~cB(cl"M54}y#<4(1(!#MϦ|OPh͈a 4}zH`0z(go"M_: HgS>mk9"RY Oz{Ԣ"Ջd0EâaQbX#bQbEEc"â!aшȰ(b ~,%"qC(pOl7v^v=:DԒ?j80[ ﮥȞ׉ 0`$ы#F" DduAjEFZGh"{L-YpE -C<$ rE-^)̧* |ʯI$H$+0ߘZ,7E QȞ M c _YGO@( \Q!~dzSE(0,aW wةW v_oYz^UeVYgňxAiQK ~X~I|Fnl/72 `'+mDV90,d|O@tT&dD\"[_/e3=>m cAXB,2?dQd(ÒMQ.ޥrw.`>g FY! %lf] FhD2F,c\ `p4♜ֆ}?zTc6* _(C0dVCn{!ט\hvk EC1s`y\P@?ɧh0^n5y,s@-ͱu &(q4E#?7@C1d lP!5L4dǠOotdϙrT   |IjHpV@pZ޷,zH*H~.b}&̓֌LY!Ɥ}e uZ£Xb6c ;'2 fjL)PgaPg SD =th󳹺~a6b \74 όR3"֌~0HN!TZ@?"ٟe ݟkf@`& $3 @ڿJaL 7 H謿>I0<֌>00@os0Zr0aF f%ܚ6`0f LY$m#Q0b#Qp?MY7j{6ܘHgnI0bl3e2cdɬT{YBjF쫙3+}"F[9I#垦$IVoA`̄1Oz>&MPL>Pg ?k02%M3!}3O}vԠOHϚ(&H#G^mZz}&yr‰fh#cQ3Dr>,Q7Ϥm\xyuvLly g܃E ˺6aO8jjvΌ{(%bYǶ܃۝(KYPyJ|ayg\^=8^:7Mv&y̼ǫoZ&kVұ9o m_ }:e'TN`>}2\uĵ:kW욑b~ 6JϹuZu̫:=ޭ2~LeOjṳ~=;dlYaZ'գzkre>*|_m@?j֗tNڽȼI%PSz.0"¤݁B W [׾;]H::pKjY b>ScxDƧ4o]ߝ.˛0\.[OR`+Α)ћJL= =Se`# .A7ggݗ\I_fT:Q"%TW1~^_Gck4^J+h6pz1>+5]y ܕܔ!;!aWYaẂ^;oWt¥_\^_#I]@8H S ܆Lgb+o'/^-C]loqM$`:ܟnjǟ,=lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0001-Saw Strings 1.xiz0000644000000000000000000000361311172205155023456 0ustar 00000000000000\[w8~`yO!8'MMHHv_t[[,߯/!٤ڣh43Gwx@~xSxl lywQÇ.o._o?[ @Džn9NC$r@`u2CI0^yw׷Wenv>xkaٸ~l1L'gZ{nzP(d^\'bYSTӤʵ-Mv}Î|m( ?Xsż5ck=s/`94/(;QBg2;XpI͊!R+/政ۓ! F~]ߞ |ꆷ.^ 5`Zbbc=e?uIW~6+~q^/<,f턑D'K 9D3g5,^ Af9C"I! Μ\|6 #U5c gA?@@C3-:;^Tfs翌,t/֡vB~_7N(~sfG׮,X&]ɟ_vq+'G+ceV0Xd-=?ga ݒm#m a5rP =\8"qE+ai?).jm=AEB#BE-Nn].Sj,CXFo`bњpr^0H/7 r\98> < "lC]'SBDY~:!gMZf#E,|@kŕfv16tߓ^,H'Ki.QT[&ٕ=.&ZCA\PB0&JT4alXG%DX. * X> $(%Wv8(F,SPIt)v>7B`[* !8A|;yX(5X9 qhQ,?`#m 0VYdO .a7+N8pz}3_P>{YPFR}J+^R&"r,1$J+"/$?)R|\ʒRhQ"'oqH>!nn %N*&S^dR'OgR %a*r蜙Nxޖ3rwe:kZ_{U^Opk;dˤp++G~r  pn_υzzܑQ;įRy|~E˾|> ZXyfjyӁ;rVn{"flʯA `k[@5+0qM;uSsvRV=?9z%G݃F}ѭgB#mz4un2rI{=mX[=Binrk|8{䏋[{%xqϾ|}%׆(i5ش?cGk{bl$>9m !6l>/ذuhjt_y cy4NOhR>+^l")q7^X(aҨ{fly@]7^d!b).p<] {>^ްؖ2q 6x5O)$ŋdDNsI R Zʭtي*_R1\8 gpU2ޠrF}繙M&9qk\2syI"LE"V!GWrPMY~nĄ( $,G)KY*`?'590HI}{5]zc0gk RfmkCUd8^DlLi,kAb #!J9\%"&R*q'mq)Yng89( |J=D"7EH~nntR!F!3Pœ$^ .|E r"2'8zϽ l`Q¶ĸ3-KB>rE@m]Oӑ؁Ql~c_GMn*PsQEA?aLIô%(ɺѬz> !^ KEga0C\2e/G& ;,g$=4ˑ=<\9\,լc0N @M3} ;jb /YF线gYQyZ~8_g]TF͊u>>bНc~(f_XQGz`P2Iߨ'!caiV̄9B:狒;_OGdlw گi(Q it$ a >-^#)6SVF3 q~lffF=f9D|ەҜ_<,@z#SǘFd<%(O@} 0jd2N"Bޜ%ZmBӔ~XBjPsidk߳lMY* WiBŋmk. *)+,X ϕ 5$4U6۴zvoAa*aZU’}Ï3, :L\;S,)M2fD%{}L 㐕dy_X ÔI ĥ6|NdTawx̛2ҢbV6.F>M(IVֲ s-[uWWūr!TT16s~%o4:/߫Ŕn}bFɳ\e>&ajA:YZ)ۖM+y|-B}r[WC&3~-ǘٿ5,5~-ïf|݄uKMXkj5~M#ף} |_W?+g??dZk_a :VT++jkVKkPIk`ݗfi .^g`;5URA `kKF@ vn hۺ ,mv:|/`9NϚ}G;nny+tqe/R tK.nʱmq&ٍs&*&[ssƹWܫD8gvN3\ XmѬXZ9"3ϕ5B% Ҁ}yiOxK6(.DJׄ/(:L @e[Ֆ8iwxiޖ]2-Waq!"gMfz[ hUQy(2Ljfh U4@6X*B2l٫uoLĕ,KEˣ4; :Hlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0003-Saw Strings 3.xiz0000644000000000000000000000375611172205155023472 0ustar 00000000000000\[s8~ނIagلdtQlbMJ"Hr ii㧦ѱtnI㣿g ]w|6KQ ՠ~Nmt3 =Җ쓓MIL6[FS%KII71|N ] J%@t_/ @hıƛ Ysji4&WxF:ev̂)v06f*E:YQ }fX^J6+RX8%sF{1 {Rtl.u,7Țhf_xnS@ ݒ7L^ *Q+;ȡ,>G b( "G)ZF2Mpx~dz?5 HXgxus9ݞ!\ + V8h=Ud:^At(i,k8 DFdaj+x°ziDrO2LUpMR1@G~xp~@Gz%N, =d_^E#B'B =yef":N2p[`fҐ!.Ȓ=&0:%zY(xC*݅;BgNħC!+9OjNtݛZmfΫu@Kuûo `H:!b l촬!|B[dRBQؔ)Vyç au)DgֵRw{=Q^c4pX6ZVn2btI7 >R0,h7J #s9j4t^ ` s.& Ӌ;__~/lbuwa Mya>tk\ؔJ L4l0GIbOף3{Ms龟?4=qv+L0v<+JǩUfthh mV8V+}5\ZgKi)>/GwtCt;+VQbR$z%p]1u`a`J)[{nR+̃<1rYd`C r(ev0)w*jdFi&^QV1BY0bBĀEo┿Z%DޜZEEs/y``EލWhIU٥ڭ6܂iSZNǣ3Fo"IAVfa=ͼ2>IWB:ЙJS@ &}%F\ΔU\QX12Ǵa?2}6C 5C:kln[>4R]iP%ߛ[Jǯy}Ct&WOpk r7k9ʰ҈jjBσgV{7_CIUyZW n5} ;t!{ t'5~'5~}3k_-ȧiFU kʩvM{Ϝ\-XC Z:5b?xKG5TP\[k,~@C: ݱTR5.Jsgu:ּTKv;Ɋ?!P;-(uXJ.R/h͊XUw k>P*\v?UX4Wi%dw.Ἓ]B}7h7̓L/~Yta|A[/˥ryh\"ZDA{Aٗx>_m(灩D>AȈwq !nuqկeiV?#_8 )Llmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0004-Saw Strings 4.xiz0000644000000000000000000000421711172205155023465 0ustar 00000000000000\s8_񞂁I2e.^4-[9$?HZƐMژZ/vHq9~W];=˚WY8Nᣔs=ʵʞN? qa$}dd.>lFL - (KT%uGML@"o*ȱe{tmƬkt|wNe蒩$4Q=dدNk1$U]=t$}I?XH&:fb,_hlTk,D,"3L7:#L!#*ʼn0Yl˜ N@DߍFO .gOن ss67 "dd3co:(5FhC= e{(ZN$\4$/:@< ل"CξyQLB /V.E5b&}ÞTպ0S`QZ k&1/^)6QuYuW#701jѰ7Pd0_LQ?hp9. s <vLeP 7m$BIfmT&sLDl![42s5%lˤF_ 5bp- Y:ň& hFݨI TQ9.>#b/ >ԭ ه[xo/wvuw#'|;0Z'uFwQƞأ1}Q->P=CQxzC%K%II1mtJ 'P$J^:"҈c׍A2G>TuC5`8oᄾ n?tt21 Lim׬F U2̎$(Y/iw>?-?taK*pS( f475< (!~Xw55/QZ@JmY􍬁Id[.JB3RuƢ.Lc_^i  CoKc> jv]=KP,BKֈ=%{U:̒ˍX :M}OD*T%פ-3j8sP7h8/ܰ}}{gd > ._jtڹ7 *"8Owt.5-^tY$Cg9Jr.΍Ջi4;_.dKYV;.)Et b=>s'ȸË/&dIqBAkة&ޅa:sßdz8QE0W~%YLۖĞo;0\bpGjlA^6e/J 9J fi@7H F PaL/J"|33GdllGG'_t`Z0u%L#˘FAD2)Ҡ523.f$f&'=ւ9B|\{W΅?iz#mK0v<BE.]8LZ-[zcrOÙKSbp-- Rdzb4@4,㯌U$8dr(erV ,ˊ cSfODE͚5kmZb\dGeʂ XbR+}ꔅ`Ņ A(heIYFb+%0{aхCH Qķ!pZ S@ޔZvEES/y 4.^&,В(JKح&sߛb\Ȃr:PTcUFw&Df>(hRtc"-cE Wo,Y%crLK fC^ܞ('M\_4L:p?J3ӖGg|fߛVɻ~njɻ{c[i5/vCo ! *ۈ|b| **_*¯|l;XU5?v:-ؽFmsV 9 n6gCͬ>뛡_+ B+UϓW_=ٯg~5nf@SN 5߷.ZbxK[Tdž K'{vd KTXRAX`zҤ:h:X T0O~?Xfd˜ hTTuAv (]gкQրCKPXsC=eN>a˰i.Ӽ7~q4w4^L3z~^. Cz@Vʠ:}ue_Lد6灩DnшOw'vzWō7]xEմl=_[\,Llmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0006-Saw Strings 6.xiz0000644000000000000000000000403011172205155023462 0ustar 00000000000000\[s8~`yO!!0&f@:}(n IG4OMcwQ{"~xn|<<ۡiStoף;ϊl{=>q/?G#|Ο84}Alp?µ'u0Ʒ`4d[b=xޢFK.w`E9bEĞR` izޭ95ǓTY/ulGaVdE7'DNH-~ VklF, '0K^:"҈cN-9CMU7T# N3gؐYd=Q$yT_<7d Ip뇫%Y[8XK )olD͜(eQ$kFy[sq@ a!86^j՚5>7 հѡYh36 =! Ruiǂw}&_?\5dJn`z]Oނ%ۺY h)eh{" rbCD.eD9b#19 W46#⚔b=h=nSNO >m( [UZ$[tb<ٓ/J!yr)pXÀO5--,Be|Eoœ56Rf}ÞNiUI #v /4ɰg۪&Գ 0dW#7K0hh^ip(yq]XP> <]hd ,#0I*Q ;BLYƖK΂ R VcKhr5&jŏЌ-vcp!)I_#2'Z`I7uE Ąe#*YsfuSsY`IAKd)QJu9΂tɔ; 5OXQʒ1S(!V-K8ﭥ3٢|jܙqDKȲho*aq7ZREiv)z ᄦۣuc+ -.z=D"NB_2i4omX4oӼKj.).Ἓ]B}7͝h77~>x,4. CLd>fo^MS(S!L]=c.NZI4v>.M~K#kP/6<Mlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0007-Saw Strings 7.xiz0000644000000000000000000000367511172205155023502 0ustar 00000000000000\s8~_CBL8s%$sb˜mߟHZK?%c֫'D 臦 \>~hOz͏ޝvy{1|g7YѾ뎗W8L߁!O<ʟ6YcG{b }g{أ8b|[fKȋ G8\形U 2GzÑL% c MgN ;qъ3xCMTt' NX`xu! K}=<s1蜵v(,ENs?Fx sS{S.C1l U1ߠjF}4BÜ+^>KR(JV%jLVCD@4tX//pi ! 4Go4} ,~== L) \ !4fb)"> ' ȸËE%JE: 804fɤ ^:agyvʳdkydN~̊Uزz߂mg?q ͯlQc 9u !Q cB@|,N9;ҁ"QZaf!v1e0uKhC4U0 \$U0Mժ$4LWg5aąpt507M0h?0Z0CHrO {s_4=y!c\E<(O  0Ijd0N"9[2kn3&4*^ g.)ѷɗ>~,Gl1l%U"9\R+?(crs膟5L=uk֭wojq %%}OE30 0d)}ʵ}K4p'J 5K2 BʂF`[a9B!5S\j|#"[Wͼ 9*^i]=Y7QY'uQdbNC__,,uJX{[>]nlTݍ(8G e:!W֐<0,3NJG6爊@D?YCed1dLAHɻ4fzEerfƘn ۇGӂGjb``UbF,2*E,72ɱs J1Mf`\^KQE @Ձ+@!mm^>IGv"~uLǯSx,ư]WmƯoح+oXRgy5X_ KX'[:pXR5/U84cz_-Ջ~̱nOKWRV[zлU>C } pWD UN>niwӼMn7ۄv 4H4M3~]Ey팶_ZKD3]F^#= 1P0R^!Y%pwѹ^h|&v[ʪ~\Llmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0008-Saw Strings 8.xiz0000644000000000000000000000372211172205155023475 0ustar 00000000000000\[s8~!d&MM) lE"6k4Eґd m)X:;?'^kXo$pB 5'W7o|]}/9tqߜGC#x{rԠmto=' '>~Fz>Jbϗm4/^1ZyADKIyx>LѼ$QB HFn z =𩦪dtc'}0蔩21 6L=5v(,v'cI(Y-Hatx_6Nދy]ؓ 0gsp e \A֌sJH-Ƹe:*[ 󗉠-^0b:EI(pBNX4iK44|P2M@S!"b`riLӧpNS׃ٳA@B'2/Y!:XN0t[ӟݲ4쇭/J_YJ[Vos`Pm4ԇ{c.B2%!+ZE|k}"Jx(*5ySNrhYM(=xx4.n|eTEQ]Jn l__,,({q\2kVnT)4,6j.lW*$O[;pL T΄{X(g%9W+RO&tbϔ*#%c^.&t;IUVvmiu3fNnG9ZGVF|Q0JY*\CmrK  ?(ݤG娸Ԉ;x[Aw5:VXCn !r_@__O k݁GTڂf_~׼o|6ƸƯ;c\Ww~=-5ksnXy5|:jg; 57&5@Yc)1|R5bwR€ZX*?QcKXCԂUţi52zR@s,%cRh\zMOvݬxqV/U'j*v\ev7UX4Wi&d6ἝmB};ͽ-h;ͧ{L߭ރa:/ݠe4L e7 +b~Lٳd.?~g:և zUa9z?|~qf HV?޻TwQ}@v/̟d4҈8BlxB!I\XOXqW_pap>|{+; <#Hĕ',s} beXDIBѾ*Ű9'5K Ha=.05u=sρDI]w$'ޞ,jP"wi):׋Q|4u %MĆG5 |۲*cY,2H8 TJpDHrYȳtdN՞[j,z,'OFj{ 1n]bS98=?ElHPp~?ol>l z+3RZ]f䗓` _x[cZOtyԙUepx$)v֣=p -o|Ʀ%j0O m P NKF=ilIGta@PiV<Ǎ2|PQ}6-ugX2W-WchqiBaKaKt3#naVg0ZUj뵃ZV0Z5=MT~Ib)6V!lDa7Z/On*5:5xkêےrA ԥ[0eR,fʩ UgCstd8߮$TLBb؜ -Rݧ[R^L'M1:լ6ȍDt1[/ +S<*l$.~vgûQKp-{=s@R`oi3Ū!075 f옙 O&u% wl<Ϛ̑=ݾj M "I5K/A"NMbUIU٠ɋcsI|oBWppSnc9ĕطU=uP3Ibʇwiq-M -GE]4_̑ *y_;,I%blN\+-R!PDB<Ehn~'7Mww^|ϪL@qHBtiyKU!DGI`Ij7?F#8X4b[҈12Y~,bYY/4sm xo8+*aب ;jС=T[5FqH}L'E5b~y>8`:aܷ&RG!GHUV;T(u-*:2"-e5=mxy_$׌o;&(F/d%VcKt3#ɆnagЎ.[j0k6JiRp:11ق*u o96!|a7Zd/OaITd㭅+jK^Pn fJP=mБb2M\.rr.k a}l7.NKynEs{1 '7蔳 7AXJvlp0&bN1k6mbx?x$8ɆKEϪF\`#[#u Ӯ`xpx}z| QaJ̏.-59!Y$6m܌{RTgfwxر1"k"Gwn:3D,H5j`34]*E $@9Aǀ撘LnJˉ  &ƴs +ӭ \uU̐Rn?/uwF23ZZg9;oAcN*x_G#/wQ$!,n>ep\ӶzK%)(/rFs=ylzՒh2!0ˁ2n='1 hd-cp,oM$x#D$F#7?F#8 X4[҈62,bxXeoq/n TQ5)vT4C9{fRmմ iw91 !Oj0y>Ɋ<`>aܷ&RG!G3 UV;)THu-+:""%U=mxy_$׌o;zw_eQm=mXp _nO᛫ۓ_'ws\w,q'x&y^r uM:ء#֣akJ Gd8X&cYrBtpB&I\X XqG`n`6xly <#0$ғuw} baXDIB<+0Պ9 g K a}Um`*̩f)rρDI\w$/j?eH~(Nf-Ro;B^",t rs>ճ!x2:2NZn8pyxoYm-"ƍ䣲9t4t?{X.z҆?FxtGp`1#ULY2#~_ /ZmOtxOpr{' &L yו33E1TvX7[^ z#CF_a.d~7z0QC!}9$tV`]BTXU $9T&'=lIմ^&D6Ī6DntP ΘjUW F;"FƥQVs%[`8iC$͑bcFv}ȓUɬ6BZIJr*kdEauFxba$;^EWա ڲu-WWER%K }`pq:T\t jx0[QHҝGG|i ](5_ipDJIx>ax֚C6-{o 37g ,r} o~<6ީ|N`hj"%h^t.dP6UdV)oxiA☔V](fGe>mh,PD">,ʀg8?<;+ \/ f&U4L$$+OiyKU!yw*^~Am4rш4H1c5TVV"u:X44sܩ x/8 *VV+rd+jСT5IGBN!;qY(,uLDDOR*|ryv4e#O)œ^&J]JFhˢLaHoMuj^1;kF7ȝ?狣y<竣y3?~Bx:9w?buvCnfUH-ߚ(]aqvwؼiԆG?K*dTCWu)#lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0016-Sweep Pad 1.xiz0000644000000000000000000000331211172205155023064 0ustar 00000000000000ZrF}WwElQKp* FE%_L$㍩ڪ)>}W{nkˢ b؎|~\>۟nNN~.ffϝ?Eޜ\GD-8~D^DIOhltP5h:. ҈mc.|CٰuxcquÅIf\E-wsl##ÉÙEc%yxkfI;Ul.Yġ&u:@3USR  U$-sѓ4,s̫#Fܥh,^ jv˸dcì훺߭K+"|2SQ}XEqXV lɆf~ALK ʭaE '^%y|c;Pw{@3&ޞ 7 a0Cen`9|Gplɡↀf۴fܑI]qK(@k#̲&rdN~7麟 8I1Cb a%r'z2ːRw?/uW-TW<M`hj"eh1?^t.9;A#N*Uyw4t☔V^HK-Vsx3pXz/ WKY a>(6/o pY`@#C=oj:YޛH("*"T@5_ESEJ~+zS>I_3qCo=I!w4gG|~4G|y4y3?uq64ׇ(VeWs42okVԲr |WE|;nڅ4/Z8!sGQ~iVH#lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0017-Sweep Pad 1 Fat.xiz0000644000000000000000000000331611172205155023564 0ustar 00000000000000ZrF}WwElQKp* FE%_L$㍩ڪ)>}W{nkˢ b؎|~\>۟nNN~.ffϝ?Eޜ\GD-8~D^DIOhltP5h:. ҈mc.|CٰuxcquÅIf\E-wsl##ÉÙEc%yxkfI;Ul.Yġ&u:@3USR  U$-sѓ4,s̫#Fܥh,^ jvh(d68vw+\Ɗ?߅ TTyZ'm*VD`wP=|h9u4'r|r+X1)ȉpEB'T^" ̷ $}!":2NVZTY407Y*KwE}űtpqyU(p0ol>Mz+3RZL2_ 0x˝uXW9mRDӬYJs5A:1fRͧ\h\B[nIb:Nn)gFnt%t(7_@Wh%1}+ZDӪÇٽI<'e8b#i %Az==cl˚eL/joP[0!F27#pXPqC@Q3Ymڎ{3HQ]Tۤ%)@l/д dAQФNz *!'5V#T{ڃ=n1Der*]N\gp P06cHlA=ɹ;3\k!\?^(?$6Zީ,xx?Db]sw^2GTR:hy <1)eq)ke36E_[2v($=K@y3_S+@߳J*}>Pl_0]ֳFzR?j2t7QRE$UDRjx 9NB#F#h4IjxxFu1K6wj^: JIj!h@rDhZ> q8b 0B%Ո1%<ַ,+yrߛKUMaFV*vz8z2&R]JgHaHoEuj^G1;kF7ȝm|=)D:}$wmmX;6>[̷_nO^/l=O?>ؔۓk_Ϟȃh1-ښXn귦4q4Nfh2_!2ܖO=vӞ$ Q7[;`Q:d: ͅ9grGNƶ({{@3& [̟Njϕ-YĂΗ-}%WJWiC\ σd<#d8z0-ï"LI2^la_ x˝uXT_N\ʃHuz†JR PjI6Gevќ8$0[^ JW`3  AF^;X%j%BUZ}4ǀänBaMD/3\&oD6Ī6DJ7kB?lbUY]r\f6d\5,57ZU1]MI;*&1oDcקu uzRL7-x0g؈F%+Bx|]sw^ 2GhUlUܨVx>cRZQ$W{#\>ÅV" I{br4_sݭ WK a7L3xY@V jR?ÝXˡ`DjxDc4rЈH#?$TEc"m9;}v`.[!L6-KՓi1(ሆt"F/շY +̓{hR;:zTaSaFV*a.qg LޏWEmhY׫"%E=ԩxGO3ť>gy.,lI|_ec8Z̗G|u4Ͻy3Ϸbh Cx;Qʮph-Oz[x[ф(OېՃv%whCܡg Qƃ(4Pտ07R$lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0019-Sweep Pad 3Wah.xiz0000644000000000000000000000326011172205155023533 0ustar 00000000000000Zms8_%L)s P 7nmgI_kW; 3"Vg]I'' /ևvu}?^{wz0[‘..f݅:T{/4m>LLdzh5MWco8 &مl҄0)HpGhih1Wbk+!bI:+z y H0aq5Jv Ad!©aPIb֤fMgǮz8tZ;i2]wtUD-C eh_- Zsz*SqC̏$}v=ޛUڈ~dvYY3 BY,dhZ{>ɰ(!!^%@QLPQX! WSTnu$$tp :T u:Q2IJFXY&/6Z>LWb$&T|]}\{9J%U}-f5/fɭLM2VT3㾜P̋|ѧncFcYiA%Wt!P8XmgqFtU+=eT4$hF4̖ד[ [4бIC'ZjXcP)ŝҰ,3u'~~L}pW,l{O%[AA4 غ(U67 BF-P\aКlhLq?*nbKfKUaš1Pv!Q&*R}T[dmx{WmVd Ym834.(>Lu./o;j{h+o:ɗ++kۜ} .vz!`NOUmP}2׫e-tJ]t4.^#N|>[N >v _LCU2bdrt7d .!IyA2.0`3US(؟r hG303x==QNWFj}">u۷@ͮF:$|VmD l~C ^F٘\8E1 e{|/$p/ᠧmc\ά=(nįjXׁJ#Mx}qi>0Mcodz\zd{gᰫœ՟!1CFbohs-( B$jkAX/_j\&RK$y RNs xau7G@.Di"6('.aiȉn` s(+2=rrt5#*BG̗G#}ՉX4q[҈V1,b,?4ןv:^g!KD3QX]ؾ^e:-uWuXL]xp5sjMܣ6qD^W㏃.~]v]8re _}P>k? Ldzh5MWco8 &مl҄0)<ݑ2F$ʪPWɅf! {F}IM 7А-! e" ^{{ ![F) щI>2ºϲya4#1Z 0@mˁT6(qhq7N|1OnmehBs5Pvg^{$>uS3NC*}U R6/8ܤE#W7["_ )r&!A[oT62aJ8?M:^Pͥk *s0[ESHxѷ~^]I\(.9{ . a}#ZNOump}2׫i%tJ]t4.e`5Z#|>[N Ɲro*l8rt7d .Cx ǃ W!e@jÀ8VUP̱?rӎ`duS{2{>*?C?"D|xl`qIe[Z'ᣠ f:3dե?g_HOx^v*զZ$j6 [ (&>TB{pNz:FSF|{e!G^4^Juz\wodz\^{dpUuꏊP!#r7y36R$IPk`_j\zKCCI)|'!yxauWG@.D(4L7j9ǰ+z2?rrt7[HTĨjx|c4W(шH#'h[Ea~߲XlXDMq.n(D&NyM3J<ҸS%Ep5T.}Q*2^>hN"i%i揄yP"FRceRMR;T u-*}EplER~KrSs/O0% O{CNo\^+|JuO4gG|~4σy3h׿4uu6ׇP̮xl_Oz{u[҄g]S?w{T,!xfJCK;#lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0033-Strings1.xiz0000644000000000000000000000424311172205155022710 0ustar 00000000000000\[s8~򞂁Ia2e6,v_4-[Y_W!H6&zjjKO>=/GOm9k#☮e;qÇ?wWNײ?Ň3(w\j'<7a0o⣡';Gw8Wz8N{uG^]_9 >9¦i-?`2EzQa{CtĦtq_](T{Zp"׻U$i8.U49lw &Qo<t\.f oeؿm.$,SH'y6v"&X&Qey[X,sj(4MVKKЖY~z.)eF@֫~,tt[ IA*"֒DQs,J^3Q*jV߭YcLKl(XWQw?A daddK}Ԁ<%M)L`YJ3젿mb%9 1,VeԱQ<_\K-%u3{ʨ%#ʢD` /F֌hKY% &:\X(ڊC6j>wGA2)H5HCxo#%3}Pu}wFʪYȔB&Z0HDaDr`XU#rϽ33e5S;AD1iyRVmw*G͐F -m/TxȁzlՄLHLQfò@548*yjp g0ظ {94΁ŋKfXXRd_N__Ok-~hBNZƯ5Q;~Rlyv5~[07sԇj۝߱u`k(Ϳ[{_"w_[ ikh6o+&kcmM褤Sί7GۛƯ j N횴Zth#__ 65~ {[Ư7uk*^xSk~z'uIٮm>ۀ; }AT}@_@h,wL8VV.pX~4l ~~c`J@X4=Մ۾=-``ZWK><M*DFvbli.x7e즹 ;2˦4oΊ4 bcPNs{$Nsgo]coͅ↽_Iko_" ^kz1{л]NvDH~U* t^Uw1bՇEٴm¥Uߵv[lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0034-Dark Strings.xiz0000644000000000000000000000367111172205155023476 0ustar 00000000000000\[S8~`N ag6IlE#lrJJ;@?Gҹ;~(jX;O|o}\w >ta />˗r}>Dk]0r ~Mmpӛ=++`O >s=@. luME#?+GqţuD4#{‰D% cb E&kġFk/c9-5UT4Mgk{4#CLَZqq Ç)|0ϛ, x }')#A)^G錳)i?tluH"`-%^py gfA%)A-Xb0IĜlN\zKpq]9Vc{[,k@g; @}0y=nV4<#R*v&enq-I~=Q0HVҹ0ڣ/N'd"*huR6(HLR:!Z"1%-`aDD'sBIpYn޺w'ݎ\f{>wY|{*Vu]ڔmj_Bcuvֲ"n9 rՂy4ś_-8Tst Ah foG>I$,p잚 @sE: `! ʡ:M_N]ˁg;jofUݗ~%ɯ,X&mN~KF;e7 i>^Ô쮀F|EL@80FAh.B}hm{@k3T/C<_<ܮ0K״(C4  ͩ#E-WJlQKsk22`.ef &֬=zq[ C}r\/=DQ!vMD-S ?T 6JvT(3gcVn=wʬF-{.-ix%@426%޶JE ,[~Pz0JT4߰cZbLdEP r.R˕}`ŎbBKS̓z",%3$a>Т=?"o?o+ #-ʣ-98( ^ g]=0VYdK .aZ2Ќl7}Jo/%y*\m4ʸyHD/J"R);Up[q9GVBÏ87fC|=O2{ @y|HiwO$Nk"EO-7mΘ9Y{oNfXS׽QRwe2k^^6U'5zUakzUR^-^3U@(|m)>|__v'/vkDTPkKF5~l)g[φNK_[Y{\wþU> E~kk_9NoƯywC{5N?3nuI2ks*{km]KX=dXRNE.R^udY?fvu0uRLqcYM'w,&jb>՟HERV#1.rG:}fɯ$w%|:|y4ىOs^r?e@~l5V jz5 ITM٫i&?V?*a:1^mezih^Z3|'pPE=نr>044b'OzW?M4)nLQ5-u?wO^ 2Llmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0035-Octave Pad.xiz0000644000000000000000000000435111172205155023106 0ustar 00000000000000]S8~N'3@'4spI\E#lMPߟۑ`JAO-JvWoWϏ B*֧ZxYv?jW>q9~3Y9rpNᥬ% zɕ^G6>~pwx׋ 0`4p|q%9t/Í:$}^UϯTlUlgwC7q7'Igi?K"z) wYmG7BnD!Z^%V&m͈=X% "jIN 7q=MTt|{NSc蔩-Q9ڍP96K\9ݷeP`6+Sqx;lA@W5?Ɉ.8@4y -EZ>Q@(6Ƚ裥a|^'(co re p-(N StL{)S&%)t[@B&R^FBDn¡l裡0\ .]|G4n\ҦT\coDQZY/wcZeRB"9q~f N-0&E9I+}(c iM.MS7ʙj-1`۸N‘?R(,0qZw %VO-J LQ჊(fn^E.u -P(J[uXVlՒ}鎯GE\}XivWgCH լb?'kVY:lV Mօ'(X$=\J2ZwJqG(D_n (L}qQZL[|Ĕ6Q)3KI[r}K5w[+W`{nWXh*m423k>}oUJ ~Rw_vqZl?l&_}&RzM&ӗ&I۫ OJ>]G6WuWSV n,;fϊ=]Olc<@Ul g>yVZh]-xd}Wp#hez<-Bbo0E:cL $nfaVgVH'jtQVnK bIVg B-n+DQ=`z`IMC(7H,N bRi~T2E|Z:_YBi60C75C2 E/gpP |,dʫ, %`b:FG"j怚!!X jPReΧ2 _͎ l1 C0  7//ҩ ``Q^eĒ7L(BޏQA?C ))sN˰z\Sv .Q;3ӿʲC[EH{vzzuhB/?_.4,t}8.)ODM]~л~Cz֫eɿm?{]7 mlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0036-Fast Attack.xiz0000644000000000000000000000432211172205155023264 0ustar 00000000000000\s8_=c&iK`r@:{(nAldl#i%CB.M^~b~HEX)j{K.JwiӇ] /'_o'iqƫߧQty>ZO\?aptә'/Esi8C8l*RsH`<ӛL'ݛ׹(U"{LsL$E,Vjչ}'k `{uP ֚St/f,(k+4:ȁOWRtnnL|̩ДRfm[tG2l7\#@lB^=CL_>L!d+̪$Wgڜ2,{UvG]:ނ @Z|^oN}BvB#Zzn  .oh`Eile&m Ss2w)aΔ,y7ue+eoPI&_תtZ׽akdFݮµ05G>fo0L~3Q7Uϧlܨŋ W:ќ@aF2y-\4Aۣ!+n)"!ި]wp5 e8$\Qn- iƯeaJSxia=~Ns~ xV÷Uֹ_Y[uK9HUAʸ5 +\Hgd/J!yPڠBIA` u>g"HXޮ0Koj?p[v6 $LcUAUeTӂb4ЎfEi_8#7q1yuAgp`4b$qȗawPODr> <#l@B1^tjd4,-BJܭCӘ~ā\اMz8_KG6\|<4elʌ%(lA$j%`}&J'@a 6Iv\&̙L3`\eAgT+~l`bQZS ,@vA `Y,l7ȟiEVl+[3sH mr8R-򩭧3wIsL ^.3tZ$UR[U֌lU (isl~!<#fUo9eӭqg"@.3]kc*+US|1\),.͓= |o*HuЫYqJW mSZU~J7Qi˜=V/T y_7?+)4GqIarhgD h{W_a4[K*Ͼ*L26Q& ynV ?m֔ZT&L5Mȿ ~d+j& `M@Zs hJ@҆h6* pz4Z7WHV*-\YNh_*|Wj&j_Un*6_ճKV_ϚVx\`/*UHkE;Sko|?W( *6e`7 @XM ò`l@<`t`g} Kv-.&VJkD}84>s8ƹHt}Y2618p8ƙ50 Gc}<7df},3훚L3L@ $%0Ǒjły}'K `{y $E/mf3*O˘ ;WWh?Cq-Yrtnn{+_>3[q'RfmkG2/Z"P%~V(${tMa-h'?p2#8ẓ=Ӳ 2 g+|;6;9z*=^:,(-xdIIj5OO Ss#>0-ZLE(V= \se֋狙E:;\d1'dV_F s4E,(BBݡםݿ.bʍm)qieaC޳PB@k$|/! (pEb {H *IVAPXRx8H{ en#"tB 88"~RtXƂFN!Δ0FQ3AD-f}RgGd%ӆz6D5 ZڀzFif 9sAGHLZC{4ws %2]['ԥ5Rŭ$)NaO!?t<H&MT+&sJĘ K MR RcSCͥk0]K':r4anRUR|IY'a7sq5rSzERQʴl8JُRRA!? d8H1Bֿ j*EÏ[ty,ce&%I,6[M`)iRbɯSR}5NjBz=7^sDGn n׾'?S_DR{qd"hMq?[ĕ5%,Qm~iz'؊yRlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0041-Saw 1.xiz0000644000000000000000000000344011172205155022046 0ustar 00000000000000Zs8~_=%& $̔r@:{(X# FJ2$&O j%~iOO葄ЫvD_vF;5$yu_ }>Lk?h  mg: ٯC,(UӋ4^$". {JZ塿w&6;O2e?!s=V({1bGhEB(и|TDf33i&`*I3K+mtET#]7c9o5S]W4N[{8͝-3K=QGe={Ep/vmz~jHV+ fAt|T'?pH 9O#kF}{W@ a)p Sc'@*y}'k`MhG(Qu1Lzhu8!?$v:ۻg`"k; e)eh 4#Yz$J^4mV uy09=aU \UpM21 [p b>%Qa}ekᆵ_ѝBv=hxi\8(odaq2 B($K#/ ^%0B\z3v,mOw+8f_OjuZ7QJ2_!ٸhX`/iüh]z9 &]sgjʼn.CEN0a^Kl h̸G_p hb?aj$N,%9# fZ6vTH(t ^~΢a߂K~4<VJѯđ> 4wfmF?a Sjv@#A!M(d\(%hhX\A20R(\1"7X0K'4UڋR*e6LLّլֆ9;Y-gd -H3d4 <  Ie4ڕ˥'~@ĭ$ (K r<Df.]8bLZBޒS 2 G oVcSCek4n=jx^aI6mWOTb㒰%MĒnXVLiҎbT2QٰaNNaMc\deʂ% X$C/J.W}ң`\Q-"&T" X6ak` VVcM|*Ax(Sm5Zx3MC),yaG(=U1\xfTEQ]ʉjp׌ld}oGA7mo@ͽB_qgrw#Rd>DPh< rElϒ/J އ\ܞXO:f(y "萴LZRl>=TSfL0ɹTuњͥ`H;Rcq7T9)CT *Ci9%w.%Qw.%w.Um9K_KjBNOO`S|} !t/!LMTF=kF75us=O+^;XR,~jCaKsdUWMsXV\4Ws5U^MsBU|j}W  z0dW3Hd75WiU/pt^ݪՈ+;OO⢷zKܠm/q귲Dմ/ /lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0042-Saw 2.xiz0000644000000000000000000000341311172205155022050 0ustar 00000000000000Z[S6~WмBvf MN/a+Xr}aɿ݉l}trtng~ (N/Χ>E;Z<#`FoQ`rѰ;&u,hsk˕?izc g" pR@/@.TdnZ+s!%(,ȬMf(4˅WL4ʽFZ\ޱFZ:@6fh`F'YFWYDIQl@MnX-`?È:Qղmg"[,+l+HPbNT/J!N<)+G"qŅ*Z~TwJ`(^;'*DbJ Q&p=TQ-BMq=E N 3>ҀEwՓ(ȫK؝J`ߌè}tN{oԧ>R~&^DTmY6ݭvS&IK)dYNoX6ÆJ\o;V,IdCi|4h= J촠B>1 l0QZ5@i 7>zo(Mõ' U47~4 U7ַV~N,iLXj}f99>::TSNY>ƺG~mZ~-JVO^էXOvDA~Q*%Y 1\'\'i4Izs=uRN"4ӫ0%Shy2Λ9 yy%ҋޔCq/Ӆ]nk%k6quVu׮jxS7އV/lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0043-Saw 3.xiz0000644000000000000000000000344511172205155022057 0ustar 00000000000000Z[s8~I0Â2@Hg/^_+㋤#\v<%Kc]~|t'$^5 g;t}ո[O{޽m4.ܚ'SGûK;uW/`R|š cLdz`9M/'q;;mPmVh2ڦ`a|pc."q#rAl) A^L͉7D> C(]Bjp2DV+b o8׼$A4P3 9Tcc~TtSUdXn23Î,.De3]Oqm幉B+$F'xk,L1F#2]~RbJ> ^\;nTޖU7|L)z;zXI f/BѦT)YH,.I[JVncSs) Cϕ+֜~6g겫|I2OP IvhA7akCXFreP Ϭ,$,~9ru$>=ƜOېwX)wQX׹5._2c/~s$Qyaf"oD(n]yH5ŮuX"'g(ߟMjǸш᎘|#CHxb<73/e0&QLw>AH 4Zm~)TK't).vD!-?-t`K LJ>;Wr4Ё) *T%>\,aGj d7J0Y{AyB4TT1x1QQpJ(ַDfqL/^ Ik/ ly ZXB6Y_M"296Q#631) ҰWX&+YTYYkn.fti `K$l24kw͕?Xģ$( &yZ |a$+^!x1ae0ZBCΖuJGC~PA\kriʚ-k՘hd`U,JTɐTLʦ8Ka])cH^әOc;+`=eŠʄ 7X((T+>uʆ0sjCq!@ yCMb 9FN!ŠZ:Gbo?ǩ~_A{ UEgGZ("ӢC`"gjR%Eit)}цxR+h4̦a2חWqʧ`E{i#a `+b":G, ƸYّ%%dSVKR>#I}~+'ADYsn 6 `4E&.O2Kc(K.jl@_c)mA)s7JUÝ:kJ) KIRʌ K0'/B,vaT>P9o)snԭ|e?-D_Gܠɧ*={;xw #Gv>VvU)FuL4uKsɫbu\:nYOr';ד\Iz&]I8|ib^šzh\r;Mhe8M0Q@D[ #u|byS g l=%-+C7_Pgo٢ʙebt|tf89( |Jͣ ōekᖵуCwb? ( 4>n"andԅefk@C\%1w|%`%p.zp(8"鶺[˱Ptk|Ȗ˂k+V?/I,&J.N `jGq!@@q?[ #+ašҢo~F* -ګ6/q,f^Z8d࢘3jI]eѥUVKmeߏ^/_/b16 }),2NډTMt2M) L HPwX_ +zd;()FNI_bև|@O24ͼB=;)f205m.{YbB$9*.Z3):0)swIUcIGIi@$sR *E:V[eTkE_K'bW>}W>=f7w#\6NoIn=םÿ]|; ZG' ex#7&Ï[\hł8N *IȸK4Y:&~lǮZ1"nFgݍ=gydK<Ѽ ֘'7 @ͫN' a|YGyDQ#A ܇XDf47 Ͻl% WRn}o.ЏR4z}'`{}"""E,8 "]vȄ#3EXafܷ"?u`Mנ؎QVϾf@ahy} SQkj&޸o1`՘S)yȗɨo.+e #(:r#c䙡 r~j@ ^&aBJsb 9U7}Vt}l@o5$~ٰb1=!Dv\*X1'HPJA,\ӠvXj2N0Z&n17Pg q !q8۶z-SH'"e *EFKo!!F*ʢFb].^3E>L .J{ ad(d<'=beM@4ދ{[d/ʑqgK,O` z@+TT /m.JU:!Tj aJiK)U/ʥgO7g%\s~3gRyCqiH;wЏCLnZ=1,_{\ɻ:=~W>}W>֞Wx=+5֯ ;zͭ*>uO2up'buB:aYOsN8\'iHz蓮_I}Aeb_Z~h>5hp9Vz`v4F.R]\vܼ5=ɓ.Ɵ{ۨY6q4_(-0lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0046-Echoed Saw.xiz0000644000000000000000000000365211172205155023107 0ustar 00000000000000[r8}Wg!7LR@ξ-g__$ds)ݒO'wX t5ZЇlpx|upp?zg6ОmOCG>0MġQ 2y<¡c+kWMf8'p*"sLk%r=j,X!2ۆc_6d#J@y7Y 7T s(N6{}0jpF)& *[`Mf(%Z`W{w{w3_[*O|L)C[!pk,' P4F}~L%b#!Zz9aZ"[:*\G ڞKI}qa\gf|g]h}B$f^_"0#BN|+XFY r(a{3,T,:zJ"-/Hv8s_OjNt-mlÛ8u@pWX!X$+ r!)FAj!MЋ]DDg !f|~6Y@ˣ*1G|(@Hb017Ge&QLftaXB fZv6 ꜕G Z0>׮y*Bݣ@WN?@(ԇqnj}P"yCS!dߎ( G ee .Vs s!A8y׉]^>T#[`+)[a.jE{We=J$vhώ=5ٓ}ahq,;sKLgbNǣި9\bND/a߬} %\P\z@Bbji$OB$P.LdŝS!fcKTYcr2SE*<8T-F. ix#m iՄ hI_ )I%8@F)O’mXae:T*QZyjBI";f. VU#^.lPZr9(F @ePR @v= [Y6bqT<!Hε=&= ){$BD ΂ALDE 'V6#"WzREiv)z ;]yQ:x4'bd-ۢ[jE[{[=h]nZmW:'dl6(t>hݴT} jUn ynϽ*vE*%(Ȼk0J 'AD0޲?&$Y֖1r'Ͳ? HhGS>09Z5>8}MaMȤh?Ht|o$J%wdTkt_# UT*DriHEgnyA%y8z9"mo )7=},ׁSŜ@:gdYz@ITr,o=/UBx<4.g" { ϒ֙eJ$*m}%R@#YYHsNn%7e@r_5Ёղ `h&ͮ&뎺 &GGaM?\fl;i4-Eq V(Nijt2f3(oh;^D2YgnjE~ a1]Hn5ݴ'[0aސa[fl\~ fN`RŒ.HҸ,{2(zF> I%}Ihr20%d)62dlޠK{Rt­kf_.a.8hmAGk(H% rplp@`y0͊/U :ۻ48Ȓؖcz1fhA$*enjU`BxNFhhuR:Bd間jx2.` 8$1Fi Vr]a'fx >%9q/7XeMs4K)T|C Zck3M%( Z"Jdl`aĶĤ3'+ .en޺Vͧ#.`E9v\Mo&MsS%9o 'QLϳ*Vi_u:6=!Iv(JU} ,q*q11$jhF1LWlG06JI!lyZ Vm7QZoHmh&gN fQJkfCE&iIab5^ˌve(opпx_i=QSo[L yW,99>,veLq'bPٯ6e+d{(|Svҗ|mlȧufQA')%oajrTjM 0)K5?2/VIQvsh I[%Bym *jVRʮJkRJ|~h)UJ)3OZJu:fRj*Zv!v,?_]r3~7^ӞmO_'6|;q7gZkC'Gb#>Y!^9hQch|כFCk}yc]rYkQu{JZ妿&&{wOe?#ױAhorߝ9!q$>rhKhX*X "ZJ%tG/@ojım'[yETuHd:~32 v'jWqQO^@õ $ np$qOk7~b7 [d4xdh05v$PB(~\fvL@j P-@t 9PiШ:4cA&ٻAoJnX{,ԻLn s-Xr:S".h7,< ׈M=% .#jsOʉXj'Q=UԆٞp}ף|Lmϥ$ГEKqbXevtoq; ?+89 'Qb2pfXF73(3Ϸ| 8$¡L=sP%$!h譛ceNؚã)=^:5k]G}џڍnsy9Α0'!ZE(AyHS/rᄑJ !bx|6YG.ѐᔈ|'GH?6x0_ІMˆE a&ecCMRpl|a@|;~᬴>T 5 j,K}8vZ3A)?w6T@H-g;,7=J!yr)pء(qɗ!O¶EIDiĦlq_R^(*Vm\ az/#-hO}צޥZ)PKT% 9 {kn3 %62\w֥YEZڭF%9D^`9(mR%s"Ĕl 9 V6z84KK([u =Tzp+-"OЌwcb+퐟b2:aE-.-E nb2RT֬_fެ E\,,X2xEP0p(J.W4*F0SELdYF4YyBlcȹ4!۟scx'SіݏΘgw-+惩aY]7 re#ج\FП1=XC#w` V* e`O4U1J{ `a:/U5;k8ض4 FkkѦ|M kvlzv*۟~=WdOÿnݜI-z@2z ܱӟ7q{~/CTM_xR g.<lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0050-Synth Violin 1.xiz0000644000000000000000000000620711172205155023646 0ustar 00000000000000]]sH}ϯ=#LimƵ䵝f_(,!ZE>{ki2O}܏\zul>OOo/\߿|o糳7xnp ;|>Ji' {>Ev0Of~vmޭNz|9m^;Oo>YYȋNziKڶп&v|=ŝ%_]< CGFQ7YZB ^XrsoV@t,Iu2RNEs{%s'ju,>Y LY(.Z/wQ'\z'ƧVDms2(l"Ge4 -_HJ YbFŞ|ڎةtx*p$W"8׻L](2Q0 '[XqBryYɎϭ?JږAa_\]=ת곿u˔|c{PТo(S~vV _,{oYf͟,Y={ bnn\Rd]󬧾jf!L'{=wnmmo='ǭ'%dmr5 :Ndqgk㻑WD$z6mDyid6ϔ; k;V>e1bqҽ,s\$ڜcl-r6[y׮_͞&cKQƿr۪[=%u{b'o}s42Ueu$YmhmkSj[;[}f冻*\h; Z[8+Hly }/eQ>1Tk\Nu2= AN2v1s4T\b+~EKMjL:*q+,D DOs@@|[Uۇʕ>z11T#ch!Jh"of"T)4J6&:VL$t:Ư,)s;tb̸j .e0Rcm <#>EZ֞|E0Dom*9ƮicS0l&#"Xkr뚬kLCI(XjNfb4wT#2$^ ?J#9U>lPr2r-$j+F |掺2{m!.dA `+mB$PW 54ȴ- h^}h>tP:ՇJYy:u 'EbX(m@)$Q_ΈUqNVIVk.zqԧW=b0$sU/XT&^%@?_+^I@_9njxE+EbX+EbX+EbX+Eb6'%/[ۀWwo^uۀWSԟ/e]+E"XI˰W>aaAu5b +3Vc$9ƬE"q]?e[3EW x}+Eq;}$X)^ ~a~~p`?8@A${ ^1,!A9)saXmx!0]^%:}b:DW ;=^Q,UaLFW጖W# x鱀W kS_}MDK2E8c26̈́[F+E,256rm@0 3Xf908080R!Q0b7a lsp0(/W z2+.Ef,~P f񄁒,`4kQ(/)F,뙴E(aS01R022+l!A$T( c.V,r E^ F6`%)yI F^`%:9W1z$=ur^?җp%aW(<[oØCi= M^sKd=s70[ϖȀz1`ž0Ga786P^؇JspkC>#}k=v#l0 e0L._*OJ80`068xI `0 F|n0>bl>Eg cKonpa@}v52aܙ0QN^E9}npmD9}B{a$fQOi\!#F>r]vۄٕix-$م\H=){d^3S`MtY6ص3`輛3鳃XٹisI6ggwQN_K>@0*m%/6h`XD/E|iP:bؘQ"aщ7â"EgE  S,3n$>6D +o^t xm+tP)` 阏WQ2ReZNҥ"_bRBnV.c 4YY}' QH:U+*qWwEeq㇗eӕW`#. Q@mMBaVB-9͆Yl+v+йZB2G0PkbY2bC0bC0R Bᶒk^J*k#r>T^ /ڋ?^8ᒠ@Kexξb~d SzAW'wRlk-m!JU&셽 ]aF ˌ*rS+֯R-Q8a8fmc|{=^ES]uRUZiwjϊ\Qu}xM4VjviRQIRRn^'sλTʕ2Z+UD$ƹ_Į8IB}nr*&u5 .Ee4Wk 8-U4uKTFRӝS=tCztt W.ͪX+ itUPEcu\P︞q=Cz>| Տ9MPF9M3}χSwpb~?=<6èkx|brvEYn%nTؿWժh&CR:!޹UX~PK/+Oclmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0051-Synth Violin 2 Fat.xiz0000644000000000000000000000700011172205155024333 0ustar 00000000000000]]sH}ϯCU)5vR}Q ۚ"~P I-9ݪ} ~?oaeix,֗޽o7nps7v?~V+ 9xF3z/ܸEK^\^/+w<$pհy܉~|} N8>?wMXY1Fɴ3|yh/Bl'7i ZA h5XZoՑGŖVGWj̞0/xZN~aZN]ųni3Omgw `./uY%dufRj/ ^U'Y}IhŮ߶agY{ ύObt/\ʀuy+fq^omIؑO9u`o۵Zms)ӿ ֍E9bdױz.M֋Щqn.W ?hi 5l$W1o-\42!8 XrM,U\؈Rqq;){&=FBwyPfuY> M-;[=s4\n{x䋍s}]%aAQo *Vjw6p/б!==W8KO]D%CҢTSkmN鐥Mڛf>)9c[_FϾ-¾˥?jRUVZxzVs0G̻z0N@>;L#/*_jB8`. FX9^n0Ð`/Jޗ1ԅ:ԋEm ڦQ DSeE{fQv} (`Dçf "ጐLɌ-^F#,T `(f]TXV=.l"k\ɜW18.ѳ裔iw\u_R\y#pe\۷To&W*4"E pq-t"~Rc$]ظ( ltFl\+C-bT!!!r+ \hY t u euo(=#ܖ$S5 >$0ʞ2#Ҭ> Ę$4Ιwr`2<#a>K+6Xfeənw:GC9wj@laplLW(bWdM9Tj@HeWݾ_rwGW]uŎ:WNìgt,$v4_02+&pE09bGa̱`RB"Efdn`{pŰ1*ĕ0f;bW~%4S$P$z!j|f` RoM.K^vGfV ټ:Zs#h;bШvg(f>x[3'o̎q{an XO0B0fb=dlt4n IiELࣗ~Œ{! DK#R0Kޔ1mi# #:Pɥkf,IYޯqhA=1 %{s5"՛d U^tdzQ z ֳ [/, FX%׵Gg薗`l* @~ta D BFi#Ҟ~dٴms s#V"i⍘!g%*8{qXۈ RraD\0m#_+Y1ɘ<:XMRho3NYD>'bQGK)JX|va!6_zftT mN|<O_!N񧖄3` C9}D(x}܇c1#/s,Ѩ dC>M0ؠe?ȹÿGclS':TY&b ;ED?om3F4?mGM6"7!^BĆ?{8~U1F0HY6b ^ D*0zYjLۈg} ̪OU+mqn6{@/ T(N2{F\aBoO1O}& 1&.) 9e#v_ V!v=O]/b_=ŗcd͈g~lۈ-> bi#v [p:mDZPaDZPaւ #Z #j_ mDS8E}vb#j U%˳If<[&OLՕ aRT?c'f~^l}4y\VNX tfuT*I/_?w/I6~x]QP\Z/뻳ϥ|hWl>KR),)4hUjGܵTgYn*6 wQaI1% Lk9*Rm%Rݼ^de&^cQnO4!-}tWlUqЇdڋ^eA)z[@m ҮXiI7ϩ]>h%U:O5Q7."xP^ijRN lwV/7`;KǼ ]m=r[_GDB;wW/ Ln#WJU)Z#[?ƷW˳jm|ю ʯQ3ӻNKBFnd ҂z lN18mPB\)q`9+gJ3az,v8^^}DUC]nZ!eJٙ02+*jӴEUutffIgLaY{tv:L:;F5nYw=j%޼u\Tĸ j=7W@YM`٬&ms87 ԛ Q3{n~ZwC9\!Z&$[|3+iR:^:tVŒT򞴓j +?Wsi'e0.3WLcKlbFȪ<&ٲ{ubZj)ՉihQ,{nV'D=b/]N{LA=TDݺ#1)+{6#ش[>_o5Dv!w !;+h [7ŐOM5EnI]iWοyLglmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0065-Simple Strings.xiz0000644000000000000000000000344111172205155024045 0ustar 00000000000000[YsH~ϯ`asUN *X@ ic}FĵI'ۣVO_uk|ݞ= t<|0_4mHQ v3$č\ :|E;RrύVWa,tT|eF`yd/@-uw4=-Mmهh+:rZ=g9dCҸPdE0dSje?!#V\$ETTݖ \; =0|~c.̲y7{0՘]ig{Ny-QH YFa3>NV^`!h`Nj/[#z,P\ȳR56+WdבTviK@ϞU?^Մ؛ZŻ,sv`~`Rgb}d;P?YBK us@ᝣvMfQŅ/C"]\{((F[XLs>- C"9M9B9~.C6"f3rX B$B94ǢS2~tBr`LFlD!엟WHZϲC6)J~X&ndxrG̗{aRop Z{Ay)YK';FZ2Úk-l@kqDbqtM0MuQk PԺG5Ԃ44i8f> }2}\̦P9`xOЬ/Wa +yBCli r?W %Y!pqJDgrgVn=ZO; leV=Vb8t?^h'JD*]tt~m [fe kb:T*Q[ulۥ #٣HXHX7@$AO\9ӠF)MD[S >?hjMeb>C=k"dS!-ʫD 7Ί8 d 6C"gcEJ RvCA*^q`~?N?=9_Չ6sy$O3{'$'iROX?-O5WҐ˧d)qŃ p{S>Po4i:;I*뉘^?IO(-Gg|PY} u;9ݡ{30>>UgpOUxܤ?W|<᫂8OU)~Ǿ'n1l*_=-݋K~c\_eWSo:R>UQWGq}wPӁmիW#-܇cb^'NxiU\'I$ zs=uB^$'f<_*evih]oH/Ks<6x,Ϟ)02kN{t!Wb?IT,*ϭ#?^F1lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0066-Dual Strings.xiz0000644000000000000000000000464511172205155023511 0ustar 00000000000000\[s~_i,1$f2IH-ubcd뷍eKjeyjKݭ×xbaI|;p\}~~pͻ]M.?6qfoӋ73kSDnXlqKlHp>2nъ~!+q <2R>1qcȚ8LV̏GEX0[©1D4򎁜:N&AP2-]Hl>\,l.UE*^c}ke2Su2XoBq7~0(RIG Bh'ެYaۉ +R}D怒U2?~ALFmu7ORELO<.P6UK,,$u}m K92ɴe?yj 6h~ x&&=$L}\OǗ@ėܚ;h1ifUac>:G|iщEi"i)Chg ΰaU;%YppvfYUvXƭOp=@;`@@t'y^ "eE4fAX.+}r`J5m DYʘ!?9f( )Zt_ګ}ڭ+qAn âZg_I\8#X(LZl2/ s%m2+e AȢm 58e_bD+P[ bjdxΈYV%׃ZXh?l4Ұ|k. F9AxtE dn* %4aWPtJ Iģ oI3YQDU)u0cdUŠLTI7htcpV+3[Az5du !u,Gcbل5Ami 6Sj|fbh*6jt"bLdᆑ u]ÄgIIҐa2Nƣ˴{X=hA>֞=SÞagA#2c -6͠n)n:&!KT!i%?'Se"ċ]:fZeOPgNLa፯`9+Mpg/띑G(8d"t(Y֢.$*/Ε%` _7HXzȅLMy,=lx+=c7{=XNw2+<|aC)TD~Q7(hD f7K CZ?*vs,r'`JĂwuMI˓ghQsKZ[586֫۷,m@u͔^+ض;ޫ?bۺ!s< {cst܎/n±=oVs֓Pɒd9IonǙ}|ͷAG}EiՖln?".[\+ɮp%U<ooWߧ5(\fSszN=uj=8ש\FTsQ=νzVimvzz}hF߉Ūux}=-ޒf]o%/1qFp w⌉~\ZiRC_+?V͇^}fflZ 02}aܡqXLqX ,q-6CN'5̰|J6]6LQm_X 1{ Klmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Strings/0067-Dual StringsOct.xiz0000644000000000000000000000471111172205155024152 0ustar 00000000000000\w~߿t%$9 9R =" 6rmْF!i-O5>}3W'}lZ?4̳}?6{/޽rn8,~C#z~{hm'=y'7qLihĎKWM?_Oh2mh@|}l ­-I2^DW1<ݲlHp>2m\њ~%kq q#Ɇ(̋[X0[zéDy4A:N6eOkD哖n4xέG%h^\t՘C0V&3k7/.6pQ? :y!IE +t" {>Q2*1wpKmY f2oy80R<28aJ~#I䥮G>-V<%dC"_n\N_\l+24AY,R݌W _"ޜ^ yC=ܱVF[CeID{-KgyEԭrU-4eJm.i=&0$oe}3;: u]_/wG@:RD|)Dn"n)۲,Bh{ <+ªח R3e}ٙevLJ6;@9nD UʢDgxKAD?ި`'Fee WLȣtBN(&Q@Q|Q!}>a]{5 j}Zj$rKЎ@`]/_`jԚg`|i8^c&NFڇJ^@Xe|gC(^@d%*3!PV㒻v67cE&PöbrYd.G7RG?,ป_GIE* 3ة@+ѬA8F-U5k?Yhq=W+ V }b$\RnfLMjd[m(*/<# v:QXXvamm)/eyWHm/LUB B!F F% 7E `Pn""o&" I]dK;[R1U#ПxtmNco+ׇUUw4Q'd<$J1á1b7L r&N-T3$ݞU T"J&yQͯ@2*'ͱn.Cap7BL`h|"L&sL5~{h#1⛥eZ)"/qd.3G`.V#0XNÁeX95dB#~QǗ.N,|{_1}c ;{T[>=Aj}F֞XÞ -*W~IUk=~6/ttp Tp_Nڐ{{IMUv 5|2$|s!z@Y,EmPE)dDO0n-ԽRa@0,Ϗ.Ik6RmFgHoddupg JP^yWWלY ZkT\%KiZk d^\oծcE>WE7cE~v_y|ܡo_"|tT]VTQG^՛;*OI^~ȗWNdw `fG* E:{%}K=uA4I\'TOsS=uO4IMܫj>A+ϋyeEJ/WףZOF8 fM\^ةp^ptי{u/es㯝`BXCxҧ[Qٚθ;]wce~F ۲}"lHfGK!/\'o}锘P K$Z:$Pcˊ-rmƪkdpLgi$a.+$uܵp-E}(%A$jFIb[Փ(69kjȪ sq&Ja 25PQ?QBEn8N~Avnn`I_:0FbxmN,yr==` (EXQ6uU#OP)Fou6b!&Ѹ d>[p V|T23`+AD3-v(ӅLy.<}S Ψ;:k1ͣ&Τ:.^j&<vL%H<MRBEmR%X*ӥB2d):%Y~z.xdtsGJДݨ咂TTc0Ei'cA7t Duʸ|(!Q^~Y`"[z. Uw"ȟap^Jv9\%LPP)@h x`KZ*JaQ[V8ju4zI-)쩢£(R- li3-Ж(:Fm!'>uFwA:߬0FRl(^[KEZ[ ` M 超#)k97\K#.-\S >^c}D\ݞi1P RMT}Rv %u%3b1Zc_aeڗa YL UM9>Pz)m(6(Bw[-Zm ~FYmMY?#RS2iSIXYfڝƒH|]0PcޖE(SRNXG4JݐvJRUf5&,2H5wCXZ&$2aj$,༉w8Xqi \KIXA[ERlmKIX*aiüba?a'4܁}XZ+ 4al(HXzp%=ىT$ύ2y|RҍA^"y\d}?Ei.yU]y7ͻn[;L4_M3=ʹ xYh44^o7Dz~{ד"=db`n;&i#sO$Rlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Synth/0002-Soft Synth 2.xiz0000644000000000000000000000411111172205155022763 0ustar 00000000000000\]S8}`NdBf6 hDJJlIWeOյttt$㣿{ QCy#tи^w޽;bt>r{M{;Y];2}>DLkC>(r`~M7]= qGO>4||{Ĭ=^c4y ($hD+ФUYDs2SpdySIȐإE C8vxMzCMU7M# ? 9L؎[q6 ބkk6S(W"gE2$uHr#D xGe+.?paK&`)2b4ؼA׌犐JwK}\3rs)&JUP"գY;葬N@Ą( cT- wq&_OF~XD$0ӻLo/ !X۝tBL)\&Y3/Y#6XBpEg E}(4r*xJӀd-+I ]7CnS> V:/Ұ覟vP<"r >0x^fuī8e`72̰5ri] qQDY2,=Jؐvd>("{ȕ5KtX =(ylּiu|xVYcGVVg$Iqan.TaReT)p%+[SV 2%K\{=e4aa%C^bϿA$+*ûtaAϺSM ?;! -ڙP BU(SOZ;oTz8;H췺V>Nd{K\|i+?4r /WlQpGf F4ڸt$43A^+b$! p5E\FUSxq6h/G1nFͽLKXgN8DOS<%_hf͌m rZ.&gЙ5< WU]77ȕ`pў`?9ƭ(d S+magj+nik0c_5JkNk{hllYڂs_7;b`e->!`k An'_[W+#` C5~k5+=Kr5g%~iu 1ks]KXߜxK5Tz lfXnKd3`_:Tz_5SW/``KռT}.P͋E(>s J+@Ej}͊XU<b;ـ-s(C~O\eiO\?M.!w 4iDi>fvaDс:<_:ϗ|x&d _Q//S~kx(/B:mw.R%hhDw,G : DTfzIfYY1-sYYV,=زfiIw[ejGKfq^uM7C-Ngp-y_T6?{nb`[ X~E7Rhۿ)Nlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Synth/0004-Pulse Pad 1.xiz0000644000000000000000000000361011172205155022543 0ustar 00000000000000\[S8~WdNddf6 h_9H:KK[?ѱtngϞx"Ai;j6|ۡ|yppjl}۞m˃sx)w~6WA8-[~r0mm2`<φknb\4F fn̮Rb-y93'TYslKQX(2N׊d/Nx!Z94#4B6XN4`*I1(]t6EX#m;ؓX/5UR4Mg[s4˜~%lxyy!aNy+SG7/[1$Ւ6>^O+#k̓J6 f.Ų5̼m8E( MP abM>/Ԡbѡ YX3!6|!RuIB}FJX*/{w3_T+Ɲ|XbJY0[NBl(,cj-sѢȩX:Mc;,I[*V:ó6PSBQ1㥸t.ܰy33hS/'$ER qa2pkfX58El=/C zeVdG6[xw"mwK@w]}{*Vu_3_&<ߝ{ܜHT^`-kv>Tn !zt(l5 &.6h4b% hbL̿է2a(TC)ZC)OSc)kETKof8N>XDyka}X*B+@J̼=ZRZMKKռKu75XEzqx;⫱TW|zlXR/URwr?h-T]Ok[[1|qq&~P7¶y׺m4oӼKXjUyM.Ἓ]B}7h7ͽW̎Ml>?_륡zyh^"ߟ68+\0j|\ B|ֈÒц/dIzS\G۞:U&&)5@lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Synth/0005-Pulse Pad 2.xiz0000644000000000000000000000363511172205155022554 0ustar 00000000000000[Ys8~ϯ`yπ9Pd%@vE%l<2>$dsffx [m/}ٺص sڇfF\3-0^?^\v3?n4gbC|}r /eN:bɕ~U|y&F7vk8ThקDYOȱL Ka+vDV8ZYnCܰ|T DKbpO(@U?./$Bfbg-5Qݐ4Ӈ;}Hk/JfhpSϦ;Z@`Clϰ-KxIMK"o Q1\Z9 -nZgŪBi:*9\ ZkzK=^̅YVo'Ke0w֞hVk"b Bl NVm >Po&8`$mT=u3W,\f#+ rߔt ߯@HJϲԇn2)ׇ6ԯ] `8 IQuxE ]S!d=Q;ɣ.'=G c(xS}FFbSԸ]^ T)jz^j/=-X+=U`kCP#`ҙɸ?( /f i2蕻R,}x.v eO"/0,O%BE>}9ʊ0,RgBDx]@jsIe[aɻQ?В61UH R1/Wl,լh@LhD k=oX;ֆPu0=3K* @6H /%fNҀO*#8 MDŽJ$AHheMۘ*qyKC8k 9&vOrdKZ2DDDYhluhѸȆ-)$^kA[1V\LGz71ן/Z? eEY{>U'ѕ*לWj^ҠFشDqeŌ*rFWŁHEżk>QQ_^Z "I3N86!n*rP5Ոv}O>9Q πqV.zc:qI˱Hb( 4k \"SX2 -{GcW} ^kkb@8PE5ku~>W5~G^;GWi?j5;gwYG?}Wٗ 2yyFh3F7< -| v҇?;! a7aџyJ5e5UB*\MsPBU{3眞evi]jo3g pG E=_"$֪#} 1z)sO!?\zh|SE{l7*iц|\?(*s<lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Synth/0007-Analog Filter 1.xiz0000644000000000000000000000346711172205155023412 0ustar 00000000000000Zms8_=Ca&I3e.h--sLÿ7`H:| WGk~|qy⻺Y!lwti΃Kxq+?J]:Qu ~ &|<kSq vOFc1N[聥5 tW=&ȤA;O[oPن8\OYQ_y,X#gH(""y>aR>t @2r&*GhH|E#M3ε ĖnNO>Y$)D߅1umdy5qE } dE,ʑiqh+FqMy%QKp$jX̻z3a9(CI"-  {ՕP#lrHNS ?ⓒorYRWƋaa\&\6&[bL \ICkXd}^Rki@l Ĉřu"Ӥ*4ے,@qebu0}`/,yV|O Pn0"[ 4C? p&#P|dz2l}/RFtij$3[Ff/3mG}@b _υj7rC>I=͓׭^O?r# {l7|hP+n  upY3 ˬ,hP0Cv1jfd𥈁+jZOÅ$(C3~-:[.jKZ)[&Wϒe3+_@T$@f[ X<>tJ VZ 5 j!71sn7eևvOt}(=UHvf9iG3 ɀ]\ 5\PO0PQD.|^@7rρ։'Ob &>fW6򄝕b#7@vf|:O9 Ę(~xW>a6 :'|Cl5 ^p}bZ e^Sˑkt>?{Hvuຜ/q7u%?$Ei'[gEi¾eNT*Qٰiٰ\UX9`(Xb(XbwC@Г#K!ÒȔ ,5MD G6&n.W(,C%;<v(鋺gx%+kH\VƃL]VLW%(6+%ό ]^ v/m) m ' ~++'QWzz%c*2:9kCQL2.bfQRr։TJ+QrCGS½Jw*xW)*K )-(;z .ӚgR#n~-}uY=atȫ$V}1 QtGXĮCO\^9Jlj* ijo*$Q5ͽ7L?)wZho֛Yvy]"jg"+裑>XM:! 5RhG\ 71BmbDյa5+.lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Synth/0008-Analog Filter 2.xiz0000644000000000000000000000375411172205155023413 0ustar 00000000000000\[s8~ϯ`yOɍ$`fM b pkˬ-߯/\tӎښ#s^| 3b/7MI^4gNoqon]ם&O]Hѵ)w/aD6_A0!Kyc6čM8'p|z~"qȺ0zx1Xx8&Q LG똎h>G0ÙaEDhr躩ĞCA|).h:<ۣY 25LvL.~h <Ѿn4*qmN0Y?YP!u?l|XHŖ\F,#34Oy*LO`k*b&X(L,WVվT !F$7mv@>~\L@} Ba1K.p/Ч>VJUϷSk+.TzF~xd JU%BxABNɈ'B[U8U /f0 B9 ,0YJk>w[7yx~c~XU$Nb=\Ш P(d&<\({crJC|](Vw=Su9ƞ+*z[_Q`:B0?/&}uնP53!j9"`uY?!\sm CF f{H(L)_|XzEtBL(\IB ] &_ t$[wǺR a#, [U ^h)P34{9 @ΔQ./zɒ=eI|Y"DQ`*uQeLAKi.&3RX v@vR; Xř]C ડTfx5ҶP*G5*X*0N;jaR=zX*%YuJ#ީk,Z]T]!-KXJnr@YRZͦReXǺO~&p}2JFSBW]͚촯|%ɗE4-~+6~0y!@{[dG{Z`|]&8?gkUGzUk2)76w/k[;>Jvl?zm^i]zćqޥbz]8cWrd㼏9ySߏsg'ڏ՛qE?<쬷Bz;?)F^5wSc=ؽw}7S"kzl <ɖw櫽 %n}/qceh_8~Almms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Synth/0033-Phased Pad 1.xiz0000644000000000000000000000366311172205155022671 0ustar 00000000000000\S8_&N$3N\ pI\E#lPߟHZN`?ȫj۵OO cq@}Ը^>|8|>gM;Y_}}8CC BƵ!F^ذuhjt߽y1#$!h+и|VDf3Ho82$aQԩy@]7Zx!b 릮h2]ۣ){>]ް?l`gsi3!xσqV |HFK+ț $Db7p&#@AH2d4ؼA匆SsSL 2~9XbJ$yGw:QZ~n#"B]NŜ-vpq&_G?X9`Iijp}{5]c`YbJ',Nj׈-=){m:slGC%Q`ו"kW7v"lYH1B}D1H`N{4ohbem|!. ɂ X£-qgFr8tݶ.GЖci> u{EXױizh[1xI\U!YcWǓv遙H\`-y/^b CN%y/ /^u%bCdˤW=PģN@c"VSwXP`-B.WTJjV0"BKN[1)a?_/Y&/;J_ +E;hY1K[VH6~fA_XQpGzj/$/TcũP "El#89ȃTbX|Qb{ Èt|n_:ӲZE M֭ @i$#=_"ԒZztfOZPz:Dy,4P eLYklOnFѹt`)_nvڹ BSXF<(O@C 0jd2N"`!ojf6cYB|^HBkrIκ-$5}PY5f-2Qm7>kAZ`9Y&`2@ٴ~:D;Cl\%,U%,~$(c`"d20 nYZ 4D%k͂̂ ゠DK֝@~c=rGIJk}Nrex^j4faD#*-ya$fh}e1Ȧ5$jöadf4<cAb̾͌d.a݂x+5| ,nm6'>hf2b>+7$M*aY n{6o}7Vԍ"Fs왗 b#ڧ9tN\+ .7UIҫ贺liMjBK஽8\}j1'G54>R 3q9z-E52ok k^{XSc ֐q _顟v{q_r [5|^[a5kn:5|,7ZcRpn _Xo[ןmjCkj~ܩk _77p+?)m _H~c 5|+(w^@~Ukv><.528fGsϚ}=f7wjZ3u~wiyg?Uܲl5Uܹ*^sBU5솝~`5׋Bz8^/G"-&qK|jJIB0f]B.,t,߶~+"ݜV~<=cFlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Synth/0034-Phased Pad 2.xiz0000644000000000000000000000364711172205155022675 0ustar 00000000000000[[W6~_ לI9)$4 {}B˩/,I#ىۖ'Isi,>=# #/m~Ÿ8o{O>t5}[yu=~T mٓMExD#NL=[4Yp4OnxhH`gU$sa L)?6O7̞L3c>s=4do r߼x1#b!xx\#!l>g4¡a0BI hq꺙abh:أY K}F}qu2,E}Q ԑ"!Wtf^$ɯtB+ X% 1T$R-̾iyy{?Mdqzp MA?[#l[.)$meIDۿ"//ZB^gwW,JS28ȖkKdU1/*Ş4,9E eb3<" R>gQD Y"k>[[OyȘB$Kk[T$JzȀcodsIȖ ET/K3 Yv|8ľq k8T&DIU7#*$š1{jT0{~rj/@#$\V5BoZYM-h*K^ bPb2P؂}cŝodk?f<^c h}R#v {t>[MäKS;ZR s&GDqCr@l.t;Wij*Qދs>AQ9h=  %pQ!= 5PU u6 PdoV}ʽ4sw2Gwf&rw 4J\ꠇs)q'G$|!G*yvg[*oĈkh"ʒX ~&eT3&rlfI6$Yn,6(f{of>oRޮ +CzB^^p؃}9KgC)R҄_,WHeF{=8k=B'ѻ|]rogWo׽V뺣.ɧ#(?q'Oj6eoؓ(?z=B6ϖsXjt?yhA0 sBQ*dcNDzCƒF6S'rF&D,5f]ՅÛ`~ί?lLa+'8$5vG՘Ret' 2T(ՂdBM&$&Q\]s߅#YP% *g.<71)P|;#n6/Q^\|IIVQ􃬀LTw-`!.|Ɋ#ybF=;Co3$սor1gƵY^Fp[z(S/trsE48"h"8isgXlq07A?$ ]/_{W׽xN!F !-|h#9I #ьN|M+K#2%?dFXx,`Q–ĸ3%K"C.rEn@uɿ6CWM]|;+y4jTxx\VicWzS̝$ʏ0LA5"d7*d#rP PfԠYDJIYE>d$-1sGwjZP k>Դ`DH[XFkR͢ʶhFo`jFWԐ;l0HWsa/~Az2>HSL'<"A1B~8 #7QlB1c\țY˻Xh߮8Ԁ{5\F eɒ9+,@SVnP[FفJʊ9Vxm%o = ` 6 v$fU%,O@PxZ@gtk}l`b:pDkM}L R vFL!lÚmUH9[pߗQ-DS{o*J^.^D3t-P:)Kٝ:,kƪKvj/S^O^o0/˅PQԋ*[M^~O5 k Ej@Q+b_'^+M *\fqi͏ry?9µU(dp !Ak;z# _Ak]~%aMqh_ǯuU9ik=I-~eʯfeV~U=j2˔_;ۅgQ[>R`ů;vmȎ_Wh״v_k`l_Z*5*Rs׼ߧdmO臁K}ک]u@B粞 AiGK/]ݷ<7qf(IDkl}ü[>P(,JBz6`Ye He4'}U;K Vljg5.\qY@CW~(@BH"O@oզn -$}Jh~?(L'oŒli R@ 5U8DeKu,`j{.e/ʼnc5ǟ̛ɝbv> O$1* 'qane`62̱zo@YxEl!|0+20,Bϣl^ae7T!pA oϤjNuumhś$ u@p`Pv?r#QqaA"/(^-<)<x믜(Ul9Č~&+\6}hy4b4$it^ u$)хby8 |miP^;!e?.s#y6‡徒R+kJWH$eم4n6(ZvWBz!&}d,G/(.R}GZ+Zp[,W]Z`>,"`};̷]^TiJh:*NJQQԲ q"O9;oprad&K)1`@tFrqLd5[9i2ꛕ7̥{~~&coz;I?{l^}PT*[%p92lUV'gZZ{+Abq[|.\%sIIrw?u Rܼ=o }֧̙^o8$R9Eok.D¶TJyäRtHr}tRzS)D}~U.e]L0(02(9l-ZlQ(ǑM%`_3?^cȦ #:)^sv}$S߁L1L/-ivgKΕNl e{D l_wj/Eڭi_9@QacTrV(ߧ{}68Y=IoTe5U [r8W\,_THjofaf=73vih]oK}>ϓE~")#}vHyQ?~t);o$ɾcJ:&ܑ7ڢZ7}\ש0<-kiriV/GU<:dfXZ9(뺸dgOU"IM4w-CF{ qekL& &:lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Synth/0039-Multi-phase synth.xiz0000644000000000000000000000405511172205155024177 0ustar 00000000000000[S6H'&g)$4 7h%?%$G{Ȼ+iەݴIy>l[N-Bea9>?^]t3^~[uc2m>|HdIN8rpkôuMɟLdzh9M_ѣoZoe~thFID\6$lȬ?6GwҞ/ra-~A[Ju z1bP@B(-q=W"qN50$IꁞXBӐc5{[EwT%MΞ. clE ݥh_%;8"lNNssLj3(]@*Mp;g+W~\Ͷ 97̐2YId4Yw-Ͻl 73S6Mb(Jv@1oVFDb_Tb2wBnntu!YJuo'ˇc>v߰ 6`JUg0Ԟwx#r>HF̀>ksVu{(7;\̸s5>b[J=~kO?ٷ{[UH6F}F論Z]$J{ hb%mTJdqQH6_@l#)&' 7ZJwqp,$IyXB&% &|)I(6IFy$",'G5xe/G@w `8++ k*֬~&(ZchLRMR8emG7'j5.0 ]Iړ.(*bbEUI oNj2Y[f!ӢFCi^bALry%WIo z0. DG"{UY xl_/2or" J=hx]" Q_S_ @S(wSz"[x \l6p1.ڽ} .U ,x7Q餣f1( {_&zmz|5-̣!'ۏDUY\C0}4lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Synth/0065-Computer Lead.xiz0000644000000000000000000000341011172205155023276 0ustar 00000000000000Zms6_A#&$`LHE#lòk\^m0I^>^WϮ]t_76(6gNzxy| NNNn~{/v-49;n<0Y7h0EZV_|Q};߶/t=xׯ~=^:1-ocY#Ӓo붥셆)/04J "r̓!#BgG PRnְCPpBu[ &Or$ʺV `#L_V: - +=LB5T!P xƋՇaU(x>#R..,j}h VI% iRVT>"Y_ ZQyjZZ9IQsQ!KPA[FV̹]^)jz^@=T5ͨE{jiq"}H={;t6-|Go`rњ; ]IxسkwԕC [P`cOL@;'w" N> Qee[BޚvZcnBTx aQ[5i5rieO{{)Q. `A]6*m$%)6+?dQ:IPҭV3lJJT}ܲbٹz.rYVYºp@ҰA(\;SPVvpŅ*ClHGl<ݯtQmiWB3&v3RaUdK[ bMe‹bB@ģȗʢzRiviMVg݆򖭳su'Ѱ&w狕Ml?Scmب\N+{gg3ߕ2JG7 (x!/* Fr# {ʎG6Ce*)CNG"'G힞y1~M7GZIM<#[y|u4rH#v#T%iR1,b܇Eλ:D#5Cp5^G"z` j\2[QȚzsp\W''A:ҬtDžXU䢗5s4sD*!T>hP>Gk|dB̷m;i8=4Co_;pY]pyh.oDbUvF_Jԓ /ٳ>b ?/N'9&}Cb~i7,G$lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/Synth/0097-FM Synth.xiz0000644000000000000000000000513411172205155022254 0ustar 00000000000000][s~ϯ=K Q5'Z/*;`s| "%l?ĴRj}jyi㘹svrӿƷ?7n׶S|;Yѿ+!Q䌬-#'dO7hܰU x 6pfxgOF}eN; ԶzΜ&l8fdgqOcɏ*Mso 1P(͚>ӻSAAI*gÖ@l>*Y@*g2ǎ}80a.}ZJ:᲍%j$dK 9~Z@$$MF)/34hݻ;2<-W~y[2t]||q.;`@k\r ^қ;2eR#wB|19|)rB:R.!XsI[BV`B:sSV. {ZW!g̨b }%kωef\b B9 VF.3YM?g6ْ@L{.`,s, 萍p (ӭ ]Ga55̵خgMbmnQS #]Я:t GK)`j~)*Lv +u}*!ho;X!?ICgyTDЇ. ]x8EZO8w*D1T03lnJsa 5ʹ(YHB"DYe劋(cus%QVDYA"^ 0}^"(uÐ nn6j%)?ye)x(ߜ9(k~QVeQ=:E5>p/1%~#y=¿3 *ey=e ~6ڪqDQY*%˚e'^eU\VDY1'b.ZA?[/@U.-c.ۺIpceki9,zq~\=OOb.+ohe|;DQV<>,e)V H `ŀm |=]1QVDYeŊl+$Eʺnx0񂒘!$0ʸч~u齵ZZ3۵ , + O 2@ո/T *He0qzU|a "-/|h@H@Ij <ԋzWNK_qvm 8<.6>t|ug;Cv< ׷G';;·fwF4[db?Ci٠|eWM h8ݧ{^IPή-Eʞ78Zn?yOφ9A0[/X+};<TKPXp֙hLpb8"VQD`I$pkX;V۰FD ZQx&vJ6 Ad$$dXws sɆʩOdt$i8y{?Bܥ Z73 ŌNڙnMӾϣȤb!$6+R|;$D SG4]`yj Ud4QyIi EH b<]` \RodqRju>*"!,@+UE`we^--=&U2I"RZ/88>3n @h{LG] $䢧pVnw2E 8N["lcЧЗY3rWo2\/D.IO&Co7{~> 7+Cz+:r %e/aQw}xYn.cBjۓ| ahi>K\Rd Be1KMW|OY!8 ")#J7)ӌ!d_E=Uw;zd[9M۳ʶ״p6jeLsw|dt 8r^Fb0,mi2 bdںvO'8N гjﵵ-0 h dI)MPPSSZɫ(}z|([g:մoMN:}ul^wAE E}ɞ SUMJF[^m7o0|wluG#*n`-tΣ;bPћr1l6|G.Ƙ#wC 9vG*ThN0 u%j-] ]f1]\19~^lV83~~N.nvq[տ&i7%@lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0004-Fantasy Bell.xiz0000644000000000000000000000413111172205155024077 0ustar 00000000000000\[S8~WdN df6 hr|t$9B JcQ?> B.Ƈzxo;E~;<<88zx5rg]z]m˃sx)w8_j+^98%8pmhE^nzmw8@<<'uCba7W=ޠ qDwQ֜q,3hPdrߜ9hAxasEeH 2{±T% "IL-M@o)ım{dtk&3?t4D2%_pYD\ @K}˟'  fh W''ew}dSbYQb~&PB(=.nTc (ׇ߻@@74׿;]uxERCɾz,G?ЗKCG  JWM Gno'zQ`ClԦtq])j0ց;G8EsoVҴz.-UFx9~,tǀt\Ee%H%C$R'vXt$e$JlXsab`LdE% gX &/&\zQYa"WT[ 5B ˂ [(m@a8jY&V,Oa lHpLD_SDY4u "rh\XeEQ]ҶhB[1V\q>v8_%tbdmq2\TԫnBеVsdI! x\`J/#L7vR`i,݆$I!43/[rF멓 g?szr;Gі\mTif 25 *jF/Kn 4Vf>y#X-gc:WXܤؕU-Шp K1Xz,?Х!,bi=0o  6b@__ǭ_a_vʵl)k;oV6b[W˰֕ U{¯Q_Y?Va?r<_#[_[V[jǨtukkͿV 16&8_՘ཌྷPFE&΄v& $[e ⩼ԛ :hDV'Ns}6oX^M=}6lZ`-;^TF˛ty~7͛vӼMX*yN6ἝmB};9);[vs@ןmҴUT^%"E[/5=+3&ItgI ՏZ(hOXr.Ʒ=UT)ʦ]h ?Ґ1d6,vGlmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0005-Synth Piano1.xiz0000644000000000000000000000351311172205155024054 0ustar 00000000000000Zr8}WgUIP@ξ[`e&"en&O1vtt[矟ecM En6uף۝{C;˃s(wAȵ6OE8fGn;/\p4Onx!zeb\4ц#e̟Ҡ-u='TYO\G,*Y'[E!?B+"F,}BYh5đpTD>+ Ļ%uS!bh:ڣY 2H$iq#XTJn^~w?qdH͊NnoʍD CŪ$\~•H.*HՌ3vMPpMZ.@3=~ @9(u $fuʩƁL__싖_! g\K`ź SVZexl#YX9: F#[1O2$EPI3.3xj89( |J=A7"t{]e AL9N7*<\*5(<ʗ8jtxdJ"bH}yFVS̹]^kӭf=e_-kV:Ҟu(-DY,Ti} `<xWĞGUIoŜFKWv펺r( ~4A9BS(yb(OCpKjd{N2Vʆ]֘y*YH#k0riiO7R4>~c@s&-cH%8PMxݰ$IPDU:[-uaUcBd``u?hYCTYJvާ3VJUl5O‡ 6b;qT7[PXp;l#&#jR'٢HhK rMQe #B`q/zREivimՁCꖭv/x4J&_L !iimNj F]UmYQ".Nʫ9)v9:H=j鸕D3բkTn*v2J2C|3FѠ=rḌC09=9Th!嶫rk-?0<-#ٛ7O(arϤiSDӪ|MM31ї4-2M*!4͍}# IalOǝƧw._ܣVSxR*+ 09iiv'.뎻OH# C'~Ppa)R& B1pYpZ=+Y%t@7|0DqJIw҅A~Gdw̃ Szt@Lf.J,]qe{92$xU6N>- FP>+$: B"|CY d`0uoH)E a+_.0KB|C+r&ϝV[ɂaD"qth`e8M/Q-;ۻZdI l3.(lE KODI礥8'ʰ4`FcK<%y(4r1mC$(I<&Y$,~voFwnnY1B~ XeQu1I$Ȩegސl"|% |YO FtMT="wi5Zöi֙.=OǪ]c1|fݦbG#7筋4ȬFR{1S-h9`h<܅a ԡ,5d1VYKy9d<ߋ\XEq{_lGi\'(jzegA&U\a*~5LſYϋY~^U־W6.\]q:ۋw>nZʼ?G [[=;?VxPLF ~x0Es{ae6s5S>A!s\>fzAC}(X`s¹njB4u^ Ѽuthvjyq-"K?;JWpG{H- LnZcw2v=ùA= Iy4蹵˕'~ĥ(!bx(%zJIc PYMjd0΅2PGfmB\aDíkj079hp^a9V3$Ř6 R&[BIlkyZ'z޴SN~up-˂ʂ}$ (D)=n'e5eUd7XjYhFbJDXA+/-MfVN \oMNnZ7RzQM&`f8Į"˂Y'|ƙ@Fi@3{K]T0U^sv4}_`F4(u |>v,[VRe";IY2U)V.E?H`K\q%GҏQ9;!nOZ͂R ;uP$VKs)f815}>T9Dќ`uћ6jSj`p뀥Y:L3 62i~LF=0g|[ :gj㴲[dي '%뚦hR_[~d$f&9΁m9Z oηDݵQ?׍ƨ`"9lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0007-Termollo1.xiz0000644000000000000000000000354311172205155023522 0ustar 00000000000000[mS6ίH 0ܤ3͔$4 7~(B|gˮ-ȿNAtثj칍 #ǷME~m>Wwgg7l{ېQ܃jm'N`L,ؘ[0vTd6/d>0kwz0E{L M'nLb٢-q诃 \e,g9#A(!!ȋ@B0#:Y ]T% u"}w4жS|BljlZOV.bܵ0Ę;Cn=%/blmOd[h S9p꧈d`T)Kʗؖn!2X =<~K,kξS&DH |w $0*[8@22Բ5:xlB6`F  T=u3!feh[#嵜6[@Or_/-gj"yY>&NrB61/?kYa#c+Zˇa$(#}-[v&llyP'=x}ЫL\fy>?h=z=ø{Z~M*I=m@ʒ\ 5G^~Q(P,HГgK!I8N4]9X uD/ !O|qM3vN{NN{ՒGP\ ӧr"u-]Zl0j: Yk(~ȗdh+)3y"CliD \)];&uPrtN[hJ[6zHlԲ7_'R|KPXvlhpZE^I p,(I؅j9 HfIɔ5TNժa :N9rQb`~ Db1^Jrا3V; Ul5D Qr 7oߨ^i$ V t߁ਫ਼ E2Wh8>`p*Іq(0a,ȦTEA^JOoe[3VܲqN`1&Ä?/팯-~6r} I3Q&8S)R$+%D R,R~B.'NLj.q3]*[;ʊMh*>/t}->R:P.gTqա,UG,_QOѹ3^O}ѭ5WEEយr>! uUOs\4ׁl=u\Os|U#i~3/ ·Bx84.C=z\$=0csJXc!< tw5b~&9rY]_tW~/KTM{?6i21lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0008-Termollo2.xiz0000644000000000000000000000371111172205155023521 0ustar 00000000000000[[s8~ϯ:B$6)@:}[% ~%|粓ᩭ9:9ԫ/w ur:F?^Óכŏ{ ;<]:q`oO "ž8ri'0N =L? q1NȿBexuA#L|A 8Yl-B FIm5N>HԀ 01Y|S@?BA9KanxTfSbuږvBI=9ndqdb{ ~L֥Ǝ\re!\t%6S,.\⹼5$i]D;Q(HC~cZiwnzoAF>O \"q'ť ,oNi4>RVAd#DC0f/"Fň D=q3y} ZրRkW> Nu  ?Zϲwi$^}ڕ8HR 0Q5%U4p\.CMRB 'Lz}`c+pB {QO&!Ù5QUn8(I1 RN;Q$(GhlS%g,6[{ボ?:|Ç&L5I9dQ%,>u;>>&6*`8#H8P1q((6LcU2> ɥ\+' 9ACI_'#_g0}oL{ kɣxBy??eI5>pv(w-Ҵ'Z3k>'B}:7Ե|KPXvHKIϔBD\%!kAA fU,hCT~ݰcd+&c`ZE='5bqbWQLfE B0 ݏR t~~~$Gb(VGOT<#-\ekw@xLeʍb6BT%Q c"RYz)=ٖXqi6ݷlPR[t};t}]_Wv}PR-IrFu{*RutGqժiœMs4=5=oKE =?kB'l5W3MB&aLsmI87$ԛihD4_~fVcKW&eqih~\3<^ sк]PXȮ'3! L\/* YD})4o5A? |X I8?YVig+2[dyaai],@&)H343y3( yx壶?}nc`WvֈKgYjZW/ 43lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0009-Termollo3.xiz0000644000000000000000000000352011172205155023521 0ustar 00000000000000ZYs8~ϯ`yπ9rT%bP@ξ-3?2>tSS[bZR׭O칍 Bۦl lr|~xwvvh6\~y4jϹ #xwv#?{+ &{?6y<3+;#&?gr2|!nC6p-CdӉӧ4[T%s0`>x0|*xx( EA(͉!/> (=Q>cZL@U .QFvjq,ĶnFLӃ9]fΠ)D2%h-Q%ݛVVKܼ+{o/b(H0G{n35IVF%-PdSbD`4}l' W.=5nbR8HJ8RqKvɽ7:BmjT|QԀ F#2]~R@ R̒[gx?Y>J#sG\],|1[!q!r={+%[[@&rH"[E I +*eqX}I0Îma`7֜~6g ul#O$2*[8 0.d:2Բ5xI`!E0d#E`DKY} Rhˋ;U^u[ZײYNݓcz9?h=~+w~H UƓ{ڂ%j]3 #!AyRZIӓC _'zA@[ bq:US'iͣxB(z.ʃ~ ӧM\uYIkn.fti-v1!gY$˒R 2=G*st"kAɱ9JlSr\U+Z«CeVS˞K3l1 HыzpS]hִMXRBJ%)j6 %!(SP9U:/e|W~ZE};-bqg3jG1 (Àv?JS6a(%aA;0<R>X(sns( N mGF>eٔ(HK鍎skƊ[6tt2L|dm3P%IUU_!~Ts1KVsIPFՖ)JoBJ~#,)9?wa ;aJ96>]ǹLjdd 4,K,V)+J:Y; @d{g,Ik"VA&ӹe|tVZ93oS֡ # 7|yGOe:es_5ūF_`txuC}O_4gvI\B uUOs\4ׁl=u\Os|U#i~7)S0/ Cx@4^-[9e) <@/WZ>Z3U~ς@Vfͤo%_)`gr(&l=vٮtsfXV\jgfU vXj$OEaVlΛC'3ȗbzGm?=F8=~%=#G- y*lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0011-Drop1.xiz0000644000000000000000000000325411172205155022623 0ustar 00000000000000Z[s8~64, dtQln4E7`Rf<%csttnA7_3O-Ya^|j=WϷf_ܓָi)}w*䝆Ԗ`~N]Нtݙ;/O0 ѧV_@`h*eV۠PP& B1pB4Ds%4#OCL$)3A}UM+`WCO֘.3 <$nF;h0fؑrq n1nقNS$qֶ0Q(s:Bq2=sEr!WPpq79x"d+3ߩdlvP%̽? <4!çK̮\F$hB”J"r- 0֚םΥaP"El0LB,`~Lfy%K`#bX{p7=ILV,Jk@ĘE[Ip'3Z/kRF) ]Lh6h 'E=!P.#xoqHpb% X$e!,뎾w7 )!3H(9I&0U"|{M*Ig^ 9]\n_^D^y]/Oe]]XnSb 뎣51j//1Rvҫ9ZD0VMs!e8VN{5rJxSRy,IvL,}P`z_m8G4"k=[<PlY5vT}MTX}̲K(澑G_Yqx8Wۓ\w;u-i>ޱ–M d;*׃-HlJ֫rY\뷽G>"d!u2 h r!qvQ*yU-KɯwgG0ÆMb<Ԣ5qQwԫhN@H2˗6nk}hz2ؗbh@+oE_qr~vQtN@O8ia/mT R؜mYG%0 bm#l(bXE7_P` @!4ՓO5妥3j }૆qG/qÇ_=s?0.G~#1O̞4_Su'[wNI# Ct3?Qpy}R(L@b$zTNs 3&*QRimta&~jqO$_j;i8&hFG1CLVyqݏIԺloTK7m=2&Nֻ'%:ېYG8WGRHȪާ0 kÙ{{E.)J+om\S2? .PY*(R4;Z+~SX|.' %B=D3a4f~pv߷VYڎ 4۶j5=t ғJ(x!H[s4RJ=J3.xNqHpb% X$ą=뎾7;7 1(!cB D$`YvDL$ɒx+۩Db F+U]N,4ry;qQ}'sul}ž}S鵪{b4?tg@+yi9JZ I텆8NAjNYR*H3S.B#5d( VY/\, {Ks $D1߻ރ h(0OQ#0NP_΃Mٵ S,TY^Bx\{i.VGW}ܴ`xCOWwzw&QLт^(5hHEG>rV qB}4w~ADvsvS-2y]-/!Eg`QH- LnZw:uG=ñA= Iu<칵˕}Dx`=9$ߏ5BE.]8lZ:+z`f(4υL4ʽFV#w7693j4H`N#;,Jɛlk4i65Bzt~/>|8r:\|kuG9 8׺is fk{a|d>T=C|( zխ7 ^!ڒy4'4*_B8 8KD\Au/: oc w4Z{9D5a04k{h#s_ (ްUÔլFBiqYP(w/TjLnKjn&"I1џc!\% 3莱Mz [Q'lusSLwdq UXq0LeR<ף;螭[3!.ɩ#k5gP ̴X{@d3{> &ÜDR|v깴 ' 2[D2} :ʑ8G<rhта|T DSb O8<$~\HwFvbgϱ_j?OF`:aKf!.DKju^uHDlu}[Ħ $ np$eDQ GPe4dͨ?1k}Uo \!W±] \DBD:}#+`}u" F'DrHN1X voo`I7QKxS2[ud}\p)XSb/8IL\rbKDTQk\cK/:´NXBR&NhBs/y\hX$;[ d-L+ʄHzEl{>1C &zg`E6Ь;mNThֵ]o'8=Iuq2$ + s\C}!/^,]'t;rx -󳉋f/ GC^"ƀ&!a|) 6 #*T5"OtՖ #-:U-Tt|o] 8M]ȗE} / VNKQ^ݷJtե,M}8m/=A~m,xB.;֖UZ$T!d_?Q(˥Taxմa> Eo{LDlEPO z!QFցdԳx,uԳyywЇqW<3HldF\1CQY.% 0()#/! X/Ld$V <'BLYȖ㲾ZiXh?8P-{4\R6Pfۍ||bmE.s9?(c|"KR4 ~LL[&lRʆv·8&7/ueʂ% X"N(J.W$(K4pŅJa$A(pe8ܘ.Wq4b+7؂3|kNx(35;S "YM?#^x:,0a@S(I/7Z05c%g\٧~8Ĝ{)डa@-LT*QPU珉ȪF2!;RvQt"ސPD1g,1,3n*J*)&_󅑌Rd)!lmmw.G+RE[*1";p~iœQ4Lb9/Kn 4֘>YuП1zî׀ƥ^14n{ky<״PRs=4VxR_h&_> p{'gD|5 @Keo`2TJFJ4K$s&}Ќ,%.۝f<`)ЏROE,_8L[?XJ8iUIW>}W>atccӖG)v7|ߤ?#N:׫:Q^v^~P?v9lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0035-Analog Piano 3.xiz0000644000000000000000000000353711172205155024223 0ustar 00000000000000[[s8~ϯ`yOIL fl,v_4֖Y_hE7`t{)>:M,߾{㻺^Cm/Oyި;86knqǶϹ #xv+_{uvɕ3~<k#+n cg6 ɯ5 ;pCdA7&W_oن8Τh4Q3R抌"Q'B^( Gېh@ *Q(ҭbte8b߱[ji0&Op:!K&!ڎz~1q_m$"l{Ԕ m(7snf4_:U6:myJ6( fcͱ4:%%ùEXڵ$^Eg"E,whHQ"l"9 $U'z$n^L?g|5?%Uq0=ɺ]pvlk1\ZN r}ˉ,=,\Z=JkD,rY]+UEӤ-QMSZ  ۾Qek~]\aa46^f3/Y LE8sy;bX0Yl = )]\#G\H-lVeg-Nr 郯W~{*ܖ5)(t,vNXe:-JKzj-/BDx]PjѲMa{Q.4 `AZ]JsiHARs䕊j9]( e$*lXa0"g. U,A \AjP,K.W$(K4pńJ"' KBh" GLea>CV0ȷcxʟK/eG^;RONK xRJ[k_ J]*E^4Eo8HmkJ.FJV\%i4*$Q5WLN d฀6^/ KCfg"4I\`fwFX*јDH 򊾎)#D{)>O:[<]4SE2EմUK+!)7lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0037-FM Synth1.xiz0000644000000000000000000000424011172205155023313 0ustar 00000000000000\[S6~WмvRH&an"WlK:;iH::OR.?./\^5OǍCBmqUa?h|>8v|3z;kM398)w'4©aƒ!LL@#?1c{\rM]Ht6yFd3?lLE;Ѹ1_ɿB2͍ﶷ(BzE2 L*!}Rj9'"mJh f\5cLŏ I LHK p[FВ}'k wut! A'o>:Ovoohfe2f>QR1uwmx ffYX S.#hCz! v5bK )W8BBWV ++mr,wp_zԵ-) {J^low7; 1ZX/h幱~#& .h74LfiȊ2|8' Yسm\Ebb]W wV؁63þ]O*!sӸ?Nv'8l&tZYɱճ1N/2mjᆑS'aF"D%~Yٗ?ۣ!KX"i^E,m_'?zyiCˆJ>@s=B*lQpɟ%&fo4l%܃wx7pV,H%Ϣ}8;?R֩|EqDL#+8|D%AqHR\%ouB D>+)@:P4e4X"p7…wKwb9U(vxt;+iUꨧ`uԫ^aK~p7ct]iW ;1(8 ;Az Gv@Q!q|^ OBzܸ/ʍgGo׀|9h>6S:5~xOGIaue u*Jv:h9MrTUG)9{i;,.z,yMc{⩬rQ{Y)?w\&ލs3,FƹV\Eq8_T0j32]3{$n mZog١vh%_#ԥ^߻ŷFq/)Xrcގ^{u88r& m)VpƯ5-%Ztʄ[fZ<4v8+-4 vec `ЭIPYH_ 4@Ҩh{On;Y35kFsivr{Lqehc!?Elmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0039-BinaryPiano1.xiz0000644000000000000000000000335411172205155024145 0ustar 00000000000000Zs8~_LM̔(˽h-[loHZلL)Zvv%ӏolX{@kSxa6rNX#;1vx4lLh7Ap4OxiD9PH3~[7[ ~l2Oܞ2m zD\j:;EwOO &k/E,g\2GYbP"11ҹY8ue9ih6>>أy [KCѼ4N t}ǂY7 umܼQ$d8vͤewf߇rVri'[.DU NNLs, 7Z$BQ[` w-PFj_"\,t s(:UJoPZJ@55u NfO#7@Wesg-hxX .:] 1L֠1#jqv`lʛzheN$H|}E(&><ҕ n.Vjd`H\ו3m#'T{.wZDp= yȊK0 0g{ +<LB'Z5;Ri+. OAꮄg[Nentt:8`u[[u:/tHk(2ɍS`r'r+%Z%I+*u%o)V!l`$.b|'īI¥2S㕷 _e˒rQĩK`dgfИ!J*ʂLw \m2 J]cMN[Hu`plJNLMuVS{6GyThS$gCyn-֊/nhB&kY]J!!$daT*nc~8jC-{H?> ~ȅT3crg2YTZZ]j}8Iz ^0TH -Svh pEfҷmfrS2Ol 2ZۙI~<4$-tIjGjP 7^z *ZBT$Z^}W';+q&\1t= N"nj}[AyZީ- c|~a0 5nVMnUVY0bHYv׶PW QN.OsHJf ^Zx8&eW\\(frOYPf ) L3+`j}GOu>K@\ >f"e" %ug$h-գG-C{β*E/~D.u1SY! ߓDQ"i"fj,rK#ǭ*\+cg񘭨G}4`7˂d"Jӈ1%"wyYGh;̝ޤ^[X]{.FktZNqk?拣iM4ww4!?hxY]bCxhLD=طU!lP*gk]a#bB,xw]dFL30ZG,54-2(0;[WqѰ?w/.RDp l]%Ti6QrEme=CpŪb]%[dū6E4__,+gGg(\  1&'57)#jq6`͜κ]E΀$B€% o J-pD#Id> uFQjwq`WVll<Lt He3L Œ&Dip,ؓݡzBLe ʺ(\@] J`5$s T^G]V1.nԨ`BIt-RUcTF_!v2F*-Bs #` Q-KvKa # 0v)<O./ZڪJMB |)KAV>]QnSEc(˫l j"r0 /-9%orBA%؅sSq"V}ܬW5WoKΝѰ7) L[ߢ|4I @dQV%jQb ZQM{;|} fFIe;di>/HX\(LR\ִCR.V2P<=6՞y-E'BAjU oo(fiJyqlф峐ntHy<p )`➇X[0;ylJZ?fJ!>Ytq8M#A;nRʗ\eu4ZG#U_= ,bF@'X Ej3wbs:)/nCp ƙcFc`Ol>ݛ泽i>ߛ拽iMswo]4U!v}'_:+DW"X]~߽OzE:ۘ k>Ok W4ږ9&nkAb~mUP? @2L $lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0065-Synth Piano 1.xiz0000644000000000000000000000331211172205155024117 0ustar 00000000000000ZsF~_AyOq`vbSDҩ y?%Hj:ySkN5;/$N<^wwg zuq=y;~yꗻiawڇc]ɟo]͛+Qm?v/,l2_> p6亻%Pc?{t{`ܓ:^h1^쵽\JG>سuY lJ_.+Ef9,<Ҏu+,TS7M;42HV.bTnݧlnG'Z&H>F7iw1cKnp~\ %] J0m|ϦhO N2G[5*M1;ݣ OnjƊSgj}B53 K]"Dؾm s27T״_ީQ$yQhH[ pnREw8h9(GcN6x4*RI2E}__Ml9a Gڦfj05?,mq|?]?IKyH^!5Bʸ '0 3TAdTh(8<]?5^+q0leSc{KZ-#;jς&1OR?9\^]5HO=þ/ x6&]sHe'JnLkq$nc0.⢘DdAO־8{p1Fˮ.]T?F›g]+gK➱d^3ck2xwꐄ"ghgEq̐W9[>H!J$ vj٥%>n^ƟY;4dprX^Xx MG{vtuh:2A.ai(5RΡ8ykJ&Qjbj q@MD"h$ 3+"e Hպ\jf5Ž!snuT!QSQf͜*Y|$N\3ςd0Y=j|waWSFu&oeWk(ڥZ Iiנ2Ygjem4R'Z,1*[B)6[e* 56LIup̉/Nyp2ϗ'd'<:gP4~dO׆:]#Z՞Luv)PO.T飺,YfD?ik41G^~i/c#lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0066-Synth Piano 2.xiz0000644000000000000000000000335411172205155024127 0ustar 00000000000000Z[s8~ϯ`yo ftLMF"-֖Ӳ~EґMnCJ䣣s'Ea%i㫶b ~j?,zGGNnS6<[zSA.P]D?H#G$ԣ's@֔fa~M׆&dy؊iĮmŚd)a!f0eisK]yPo$ H+MN)%$,JɆ%$SdY69VV8YTD@L,^ta%~R#N}?w3Y% pyK,& XmRSi^,ubJv ;h6g3͝ aE`JWź\HLp3eB*kxȚ+ F50ߌi8HDi>,d3=ɐaW*}S<.EW4LsMSմj['89^%2d5rŲԸǺtM7Ut);U!hRU4h2oZOnȞJY* ֓QG "% @Ԇ rU:X)WmVS$U36N}dF9Mc,QWT7^I \w,)XNœU ۍ`*cywJ}oNƙ;㛢w>m}| 5Q8 گìR⤬8<T8O\ap7Z<!ʕ$ %{(c)؝`rYh@ihpxz!knhgr/[KufkO:wˉ@3%IX֘.18iG2k׀fQ>.[nn?ύ8!fu;UwIqL-'$@+wq l:q"Vz+nǣ)tR Bz3zFy<p;|/rI{bmOg| 7COZay3 zNםi ~zꈑ[:Z"D~ Cΰ ȭ"x[U(RY59:NݛQpwM Z1&_ ' S19ǸUC:}8unFDB/꼁YɓNGT[,֠V5̨ɏjo&Y٤FaǤFA<-E_gXUouQL)ٽgy(/9Ns'% |擃i>=泃i>?拃iLs`|~A9\:+Cpu_bMtuCf!?5PճrA ޾kq M탶eNlMeb*ڨP>#lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0067-Synth Piano 3.xiz0000644000000000000000000000342011172205155024123 0ustar 00000000000000ZMs6W'2)Ψ65ԖIԽ` JJ_߅`Av*Sb}QZ$ x|v>[,/7YCy=ߟf|*5~T/<m$'G"|,Y{19<\>X8aEӱv"ºª| OIb+!!$?܇Ѹ@bunQ%@Z<oM0fhTo­d0<擄L3Ma3P1xjGRD oG<w<5~ƈ-ԖV=|菊qhy}#/NN*K-9Y% [ϣ)j؞8_> M!XY_I{bq՟s"7K abEt]Biry~j/eu4ZG#zE/L~DqM[Y# I"gʪob :>rFp; |Ypy!xP%`f(ѐ'ͤjHZ< iVɺThoD%"WuE#EOt7K*Y2fbsK.m ΋ EDhˢ{e2 4|Lwם|됷繼 ٿ7|*b>;g(/p`<;o[,?_nOn/m{???ۣk!_ .hΗfmDnXpG_koqo{tgdZh+E;? g&bHppedRO|l )_8|TCN ]4?S/BNUP14NgGw8+?eH;T(m!uI봵SHa"[KxI$o Y1|p@i_<"̇bq5}lMXtZj jIsEEi &_٦C퍂psrБ'6-9=9Yy= e% `:0w KFIx$/o"=#Lk *)ZWm(\@me ܚ#ki)Ɔ7W,^Ua7f$[HYF)RuP[!n2ZDI!%-5М-?7 Q%nK a#)0v-<O!J)\jh+5[ 9Y],4+&N}Z QRW$Jk~|YLoY};8SfX-.é>oVmt}c\\c#ީ:ĝ]9JaKdMr7UfPF0\`fӈ`$c7*X!u%zٳ+3Y#q:KLi* M^![cc( ̞${̏+j?0g s9x`I`e=5иbօaV{r$6+>hIa ;}-Q dH+jDƮ 䔄a ָU ||Lt *@=dLٞ~oi!eYޫ/c|®l{S5FĶcM|{G+9/8:cdY7n!)'VfQHv'Q̲Ի "l\/t:ee Z._I{bv՟s1"SacIt]@$hMѳVCoUfPX ,bB@Dagkf7}EpX oK#8Ɲ,8@o-Tz183x,%IIUiqo(Y6$P z_Qu)kS{Xwߤ=ѨS(}4&:98E^Bya$LޱHom 4\&͡zoqSeO>i5ឪ/g4W8Fu͗F`y9\a뗺?h9\!:L*Sg%X¸A /5-ŲVp=GeVa[o8x2\ zs2Gk#YZ35P0` fmYHOtH_ڥtx$2)vЖ3=e.ޣur")6Lz& x"5g"%u +H[vn{7,FF`دL~Dαu1SY! I"F5rp'9po?#aipWM뿅J/1{ŊZ Q^xLZKkFqͲ  iP﫼|#eNt77z5jf Joˉj1ѻz7hP^F(-Cݴi5Dx;T_6;[^}]\݆_/UU>ٿ7 k<7|u0.?;pY]o?ՇCpLDwSbP>kMUcK8oמW45Oچ9&nsAb~e4@T͂:$lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0070-Synth Piano 4.xiz0000644000000000000000000000363211172205155024123 0ustar 00000000000000Zms6_A~GxI3InhbLt~,Mm;/Vpә]j+O7nmǂzyƼo;Mi>Э=;~|7X?^߶gbrz{v2}6ֺqdLD#G4\xΡ^mB#x؟#kK} Ok̆螅7Թ?gGknMgTц~'v 0Լ<(R:8mBeqцy|Vaa[J+t Jp&5Khm8e;Y2%|hi42`$],VZ@Z纑H`$ۢK{2T$~rEeV_bVoJ6Q f2[5ǾDJGI.@J6TVHt<DAG;2KނP+;H1M&W3^ޓMrg:,ȥ4ȥTWurbS]#n*L2|J3uJ-f(@:P{tdxv7|PZ`{Βlొe\ts28%/,nâ *޼N[U-,^abPy8'#n$FCTH++GO*$&!TThV~q?8RKrKp) b7BғXUI7N5@hʼʒbVǩM`dӤ&J*`s{}nBq}qCLSsgpl>UZWjWwHwjƣ.r z XAhhHH^z&~rv^|RU4/q7 Cۅ]$//z"dD-}õS$bI{bi@$LOh|!G\bڌGnn>QCYE0BM,bl H|PC.i,I"Z01bm,lv_g6`7 ҹBp70i ױŽ!EL.)g/~P̩JC0NxQZ yZF^*../r7n0u{s{uF|7?3*e5pUVkjxTo ux!&RdXoǶE3+ Qb7KIIv#qk~ÛO_gsd/NdN{2ͽi}욧Ұyy~[LQѸ?5;F)lmms-1.0.0+bzr2569/data/presets/ZynAddSubFX/SynthPiano/0071-Synth Piano 5.xiz0000644000000000000000000000562211172205155024126 0ustar 00000000000000]r8}WxݫLiF䱔;h9#Zrm7$GMTwųF^_ ?~|Y_w~݇|^^.Ogu|{ǎO>r{AHV;Oc<^ƾXnbٳ;zy;]ϗ `C.|{~M?G/~d#סݑQ璄/eݿNW3nz?gZfhoY( Klx2$Ŗ:Q뵢t,wu7B Ȥ䓊^:@EW#n;N:eρ'-5}Ybr;[3ohȄlWt>wb2PES_w>5 LFD9-:-}|XKo󤧥V}ਚ r,d|=𜏝nNň$̗01Ld ֟2 D)0\߱@nMqr,ueDJɃ]/_Zb[eJmn/G3>ؾs4PXv*~.+~y=)kՠV4Ng&5(oC_G/sCeJ=8eh=dbrJ S ԏV~fՐm&^WH 8=#w'{UQ ';+б=d7(R0K%~/$GҗE3m 2.jIWZf8^WUZѓ} CeT vdE:Ҹ%zpAZQq(ITrO!)"jRnFZV"a?!&ӊS=y2++ YzaTjTvq۱GՄS.|_(O&5Y7L8)aYS$%;::2iL3o3o6no3`+ `#`kb[,[c4B[c,)6hl% ˨ȰW#W#\ \ "bGC(j5kp540*ݛ3 \u52jpeʨÕG:\tu2\\\\\\\\\\ \ \ \:\ \kS>=)h jjr㥜.+s۷ j}pEp5p5pE|;p5pE j }pEFv;i "~}\M\M\їǛ џ@XbcźqcM ct컹ea ACF2BF'G@t$:ެ0onA7 LK%:!|C(|p !!<>#C|Pl0g$!t>C|Fʶ$J!>G8}NwqNwL#>G8}p9s&ޓ#>G8}p\Uy.q9r纏덮B8}2Nk7@8}p9sN#>G8}p9sN#>G8}p9sN#>G8}FN?'U\.~,WPUvT[.nӭi]ah !MB,D~jz{w3~2JQR6ōիI}7$7qʖK&|n WYEG~}_[/~hp(I*dQM'*Q=[td+ޔE*(&ޒ,'ifyWSBnS&Rr?ղ!HDu=l,KVe9$L,"@eE6cGewDT̓DŽ`qL-fG,??{&^⴩%^8 :Zϖo"9xR/C>TB ^H7#U[$:+I`Qde'|95~L e K¼S,<* ^~2[\}m*0eu mƭGscݼ/ (yK)r(n$uQD]uQNCP.PV% ) "TEj=[>|MiTet$f{vԨ .?UjDthM˿ʩQrBRENyɑ!!qz[z6{j΋_ʈ.ʷRQfR艹.n~訫'ko緜Wr-kr~~~-[緜}rqLUX^uX^+Q rt]_ϮII!\ZRVXW{F, zڕ4vƟg颈$,^vblmms-1.0.0+bzr2569/data/projects/CMakeLists.txt0000644000000000000000000000022612307160667017237 0ustar 00000000000000INCLUDE(InstallHelpers) INSTALL_DATA_SUBDIRS("projects" "*.mmp") INSTALL_DATA_SUBDIRS("projects" "*.mmpz") INSTALL_DATA_SUBDIRS("projects" "*.mpt") lmms-1.0.0+bzr2569/data/projects/CoolSongs/0000755000000000000000000000000011603573245016403 5ustar 00000000000000lmms-1.0.0+bzr2569/data/projects/Demos/0000755000000000000000000000000011603573245015544 5ustar 00000000000000lmms-1.0.0+bzr2569/data/projects/OldStuff/0000755000000000000000000000000011603573245016223 5ustar 00000000000000lmms-1.0.0+bzr2569/data/projects/Shorties/0000755000000000000000000000000011603573245016275 5ustar 00000000000000lmms-1.0.0+bzr2569/data/projects/templates/0000755000000000000000000000000010401051475016462 5ustar 00000000000000lmms-1.0.0+bzr2569/data/projects/tutorials/0000755000000000000000000000000010401051475016512 5ustar 00000000000000lmms-1.0.0+bzr2569/data/projects/CoolSongs/Alf42red-Mauiwowi.mmpz0000644000000000000000000007733511603573245022471 0ustar 00000000000000۫x}Ys8~ v;B*1=/ $vQ &q%.,y $?{ٹ'L;]]>}n_"Xг`F~kNj_z7 *߻b{ |v֋^gm~_b LDR <x*3z;3@w"k $ !+o16hh:?'Ht&a^d:zώAPUz~qvF{[l?&X''t](WUPr1UJ+Xƽ}Bd( WإhІd7B|j:qꙶƏZIXz4=;36zƃסD&'|Y;F|ׅgqa3eQMg3wXVb֔ + U Pz}?~ی̼S jwaCe]xb.Wd=5C쭬|rL6Tjuf`gTe3z *1 "?Ai-+I=ԋ~k-n.VɅjݮ0j[ghZgMau{qMzp8&gGˇE?}Cfn`KPO{= Z87yuzȈ?{ 7< b<2Do /xk((ՠlѠD7α!JSo j6=4؃0 k 8xh [7Ez2-_/D=׷^i^wlT쥆ԚFW*\_rӡlƅj^?~} B KgG3 U! iC/dʬ0)DiðHn4HFa %sBgaN_иzX0]E,]^dN-pJ~ǐ ]m!sgs:QuY&"p!ay\>[$ &D/%}iq_^^r-~R!NaTNd"">B,=+d'Al] ,~4ßB!E1-DϬ-2yѤ<^Nohl^ڍ,b*{׶Ys>5ExNd>e_qxFGd 1L$,SVp>e NN ObWY0,4 , Fa0ms/®g6t T.;$˖0#y2뾛;>E_|dV5k`m}p>s]f:BGhN]Efw+qtsh[pq<Ff҅ɺޭGp1OܻG}y{dSA?^- 26&fi l;yCE8Jm41Mh& &*&yGĸS0u &%b qY򱄦:\|>c0!CkXJ2(4" #Vɮap(!S2cXDN06<`^ҫz2juվyVP!w̵.ٴSt6uJFgxt&6*Q06,EIk;MNcGi{ݶt~oyߟ8:>&(f#L5Gk0hfi[~|`ňXao"Ӓ-E9ym7C'}TfmoʬrfmʬL E)ZRrup#5<$Oz۰>Fg nBi R`3 Y"W#Vu'?nwmANP9,'HvAݘٹfɁ}xBh G gLZGWv0HG ~,vm_>~Ao`,G_i,lg,㑜3)pE= 8{Ihal#CS&mvL51eҖPǔI)S& ;LuLTBQ } _D*MˢV}i]Jcְ?Vp׊ EЛ%9e#W2 ]8d{\,dYpq%+w\ɬJfmٓ{;/ܶ:c-#>'_~}X͕I)={[Wm5ͤ¼KVa)%0UwZ*;O8!gKVq)%8딒UuZ*:Og}@ tN/Y:SJViE@Ģ?Ii42_ޡ -gڎ;Ud.a _= L~f> 8W/x䏼[ -0eE.r>4L+ǪW/\E?gl+HX%%_Z'w&?d:uf,k௒K nbPP;7aT+zj;A^`cFu]w({#-]tIbz?`*c5d½iC!kG*MQ0 kKe0(9MBkCZӯs_ \1#NW[uvmWPf?%ѵRd8|Wu|ɪ`d-'8bFۖo)kg3Y?Sz81&7W 9_>% 0̅|zk[O3ݜ+tQsςmSOQ}Y[]mX@ipa;bB$&|TɁ,59e@|,ncyNS׃U`TZ'>>{isH,*[Qk? Ci!e(va_B`i`o. yS9_%¶w2GOKmȿʐ@}7w|䋾kVXUO\*ģ״0_Zf{Ci+8z4x v, VuXܹ!S0kvs+fϏ9uOvja߿/o/fnn]BV1 ! pv^r8vo  IQ0h.q@8$?U >.+CY65m tja8 ؅H I"5,3?E$3d.c9al[,IMo#9#!ctվyV !cwь:gS.8(V oq΢$w@v_^^2r.o%s3(' [4 4X(l|klqדQԺa**㕝|]bz eRn~h9<3z'ãlXƔMP.89*w, y/:񫲺lTl"̍|\l :,tFW8٠p\Į)ۄ[.vJ[v<f)5B׍pk ظDzH HfpWI*7U6ہqsBg +jrpa%3.\%g:V`'[)f&[gf ,J;>r`Gʹ;3:3#uIJ*o6nnOP9{Nj4E`9I6Y,Z󞿤̡21vǃ%P;S+r?TneP)[JOJ˂،rpFY5gaпӠq9C]c i0y~h[F}BX&퐰rQa ;FƝ ) La܌0 cꠀVV #Da S@Nap 0CaE. XX~) L {HX1?Vd넄0 cꠐVV #D!a SHN!a0AGGPGBRqf^J:"f>ȆCwnV_xXqdh3ikm R@HyI/iY&4c͵l> @d- +PKv߇lw>td8:jWa>T}FnffajJoF1-Xv iogNd1ߒXXkoӑb*gԑP0%)%.Wwks%w"k5gaݸ۴Mk}m0/}o*H2lg]6ܷ_;)G]\%B>i;pn-x=E+=5;#;iIXE'ݘ 2ut,9/~mgmH!I $XeT =dl>}H[PM`=Q(2,\8ʢϞwc^0$`G&-8L"2ikcʤ-)S& P;L@vL42Q'LG U ˛EUP ҺXǶaᒯ"7KrʚG2 :9dp\,Yq%JfmW2k#YkǕ4;'yC'v^mudoǘ[LG}bOv+CF?xvX½xqyfRa%0UwJ*;hX TEvRq%8딒UuJ*:hgX>LCWT:SJV)%@索Usbџ$4Ew9˻mYfNꖩCF~Ӈ:g1jԞ j>A'=~g==h RR`ѿТW¶obY/ꙶƏEBGxQ9p:!4F6HLE}ADxTasýmwgF~$M!PɵBg=X,%L{g|;Q4H\E ?n!ov. ӷPÌ{${0Ax"ï^EpמY[? ^#a|i|ޙ} l6N̒H_%fݚ`Uwo¨VWvƌ2%AQE K.s6-5=/kP9p"mDNeNui}osDw_ Gk^+ :)3;QjcvdQi5poR @ZH˷EZ8[C-i|0N~5D纞҆h$\ɻ/m~Aeo1Oa!{0rGR}^9,~֞ >,ͮ0B8qI2 ibxRB/ c$Z"Y,V(0W{ ^=䬷9dX+XP!_?vg-<uo&/zp I~M0jyB7$Q.}J=ԳN§:plO=6υC fPxEq8x-~{{y3N ՠF G?O;@#w}m/ib {s7x"upIp}` }$zԃm wkX$"nDĄ$ & !M=h&|B~]d"fp$M0!|ՆCGFd Ej ЋP tBn$G+GK"[k'gE?  ^(@P}(@ /Px ^(@#A)Z:9zQ釅<zW% /QxK^1 PDk>:^Cb0 | 4]!F 1RBbč&ģ#i 1RBb$,^!F 1┯#)H!F 1RBb#b4ʸM!F7I QBLX 1QBL>'bX(@ /Px ZE 9^ *0H \EN |7 [&%gǎRYtRMP[;vL!ʋv\hu~fָ(eOiY(܂K꺢Pfޗ<9/h\<1BO`;W9qEo2{++2}7cqumuwsR yq4_],wq*Nhg2x(8D`{eUل!dbdۉgUb(44?Ai-ǯ^5|DE0ɃeKPv]'1­f4nN ^Xy[=n/Iahf ~hox,ߖ?c=xiz|4@ f}=?ްgBjdZ#u., \‹&޸kCyأެQl6fm2ȁRF9p`obMCi(Y{YNNEc큷uipA7H[ŘL:Yfk;s,#Kd046Xlyzzl]W#hJd}e"Ы,8L-5lq o;G,`0fm]/zf\r~sa-'U$ w2G0+c[V}>׵`,5,#עP `o }0Usw(wn$fȸ1,al+Jw`[co]ӭZ;v?%cVFMlL?(ba^C&.Ps6vC0`)]JS2eXf*Pqq@a) `\6W" d"5,3?E$3dJ8r%sؐmYe3!< W7W]Z4)F-8v ΆzLnљYz3acϨLqg,JrGdwe>>S*)lrɱKKt#7g"oN"-@9hD:h(zKis=zr3ZwL9@t[eas`u@]LTK DZLGe('!1eTD -4N c7CK%N/('5[;s#5T= FD6(4\=k6VrDjja-xۡUaǃY`hq|F5NaPU&CjG2L5WDyp..Q=2ôè$\XZHW AkTS `s e33NʟK1ms9'\wzbu6`(*&Y^]2Ik]&j)MwHZ抋RV(}ƜIrZe۷\ƍZG7 S=e21vQ^M;VhwWw,ʿV8]Փ;_ղF~633!Yh\fڼ贼h[bGMg O&}OYn=*Q-oE9)VԪ}Zv4$Qox[jt4QےnvحYt_!aljO吰¤Y* LQa kw cS@(') ZidIPHBº2RHBdX*$BZY)$`I!ay$EAa, š0tj?p}zP;i>t>Z05C0~LM7hXtFqZuQnMp(Б߇lw>td#۝}}8:j7fa>T}FnffajJoF_'-XXXۙY~Lq4VVkm:RߔY⑕Y:RF$nu}MOZ5^ [\xv`zf#U/XMMe0ܰşAiő^wbS@|Vݜ7v ]sV{VfOVkwFyӒqҤݘ0K̒Bu2ܢ-(Dc3i?;$ޣbYZxt!m? 6 R^8ݜ+KJ.^eg>%<2i!1ehǔI[rS&muL42ix1ecʤ]ǔIů*-<_:зETBOX޴jZ֥2m cu W|Q4 YSY=\n[:5˵wT 2˜>IUK]OP{6 j?A>3Ԟ?CAg==pj" /oz}?~یzEWϴ0~\T_-ܩjρg5AbG(Q £Hms<3z{ 8J'v\g+嚻i/|or]3J saShAG^-m}}j"xO9Du&cUvի⢟3kDK~$;_oP:c3؃IxwYP䒽¬[,T*MꊞNؘQD]םc;#ʞ(]tIJ?[<(4S}m*x2/Щ$ !`0z@*?Q?(|+{C7t\v'z}֞}utn4@^ 1QѦ/eӞEh?fӑ6*iӢ_&t^toGɸK˻kwIr?;U2rG$~>_HFU TjOg׫p-<|88x4){4g R 6֫^uSxzV,* j #G!\j/d k X fХԼ!$[WYx>L^` K |B2^(4i,..j5*](#NVgzKQvFE$#P|<͈:ރ.Sx(Z2h͜klm0S֞x;S::k&wZ7uQm(:6cu م7&d%1W,|iYn&2E娵.hl6}}R,ȼ uݤddc\G!lmNрnnz'rŔBlYxS ĨJlo!fsAjB{1>ϨtS5'P n2{16/4/ᄿ ͥ"R[EJ.6pg#!jEzVsX0Sl.!)j,c#t4Xa6 2gp!r<!'D/BX0 ̣.B=h<1,\Rˠ&"zh*p!j5GERjsЩ<5[:?r{Z,<. e<@y7qq\@1nwj|FE "#\@y5Ajj 0ND\(@@!!yiєDH"B-ͥ ?:<Ƣ Q[F28w.lNdW$p 0-PyIG !buZ c TRˬDžy\߻N{+deRԝd7S3$p `/qgD Qt|#D=]DȬf" 8 &hRԄ8< ~Ay>v&`69~9 DƏi.rҟ ؁!r4ج08N(B6'l5gTuƑ! Bvapk qĢV^FObnS19 㧇DGRB. F y7r9h8MFzA^k͉و (u 9GT7fM)Іy7鸷) BӆB,1 47bұDd:ph@ENzBz™1a|Kr|B.!NC{Aα6=.q!ЄN:I'uL ]B9 @$=~@n9B1PL:AyXʋl$S]I.5ъy!r<!'Y^<&a%y^gH_~JdC9x"(A?iW!وDNfD[Bx!BN2@3Fݦ4("EH: |&Jw#x1. CA=5r,ishM%ހo$EÉ '؃(X;QMB&XţĬJ O?lgZK*JxOc"@{Ur:8Z:)L }n5yh  8O47Ww55,x!o- gl/q@=M!'+hܬu<"#+ܰLkłG 0Eo\tQQZA?MِmB$){>s,x9 iJ0|3zhƅS{Qa8p$jŷQqodX[>^zo9$jFQب#K 5tﻯ T0 6fsijΡW@Z^=}( !{h3L7qFE0(y6ft(paeNH6 Wwu;뙬[کENR3 8HN03lNQ2<2-ևR j.vuqw4߭]]/ũBC`~7B}wz \.g<ƹ@bT #R:Og- -?j8|"ٚu8buyEYr5937=b^س !"^FbeN'EryBq8t؁l*6MsXy H,dGO1%x.x8 48<F0E+#EvQe `&?\G,&t3LuV BN}ls9OhMy28/XxnP%eQS+5檛lʢc6+ڍAiE#BZ-W\9ĺTSXee5DHO) s 8)GZe4S5>8bs;d%n}m[(C0XP5;YW޻sģ22Fe(_-bljё};8<{t?#9qt|@qt?sz%?L}Fs&6rboߖ+QdZ%Cv5Zc4 1S ſ)ʙ#+2u$8jIJ@z@y k<Lo@ ebHi*4lg`W#Vu'?/n wmANR9,'HvAݘ fɁ}xBh G gLZGOWv0HG9~YZ1V}>&0Y`!`@= dIIɅӭ,)w٣;D dm2icʤ):LwL4@2i1ecʤXG 0U["*tT'F?,oZUB-KZVb۶]KV\(,)k,丒Yq%@Jf!Ǖ̂[+ew\ɬJfmW2kȞ y1ՑEcn1Y=JnLr5Oi/ۺo!wGo&^ N)Yy¼ӊVaމE0OYD 8n'g^N)YYӊVq։E8:tEUsz*9dR tN+Z:'IHQ|%8o9,vܩR/t3`$T9}|SH lԞ}g=ӃP{z+/E {BEޅmǏ6#^b3m;/W~yl9p:!6>뭑 8BQ}~@zhpo64d~{ 8(lYV&5w ^Y(g`5i08-ƹz9ŋ6$Bw\@ݧo/+rITa\>VEh_*.i?=~`[@G*+:3%36=l}g]#\WukW Z]S 3ʔsl}Ds}m KqidSgޚ5LZA8ҶZ"2 :>7KJsFu/`uzkv#7N%V+C䬗#K_1|k3v~Dp@b<4o ΨL^~:e2ӌhsj\Ewd:Qc&9L"xdc({6ʨ^K5n5jDMj]qI|87rBԘDq w)eP6vdԓz3Nnv&."oNcp 1 f*}$13Qv&"5Asnq?+;Qw=?>p̘p1rnBxu$#EBXͅiS-@Mlj"X?&U[atby/>U@[\o1Qsh "I?:c#3 @" J.@L'BN0HJ0]GE,lz#'X^ y]K/;ŚOE 0E.BM:Dc~i'Fy!r;4&HQ>;ҏ5/A}!rz"ƣ/~^hѯm-_ :[32,=MeoE,Dۑ6a7yhUFMnp3a#x^@fq} Ag§a`̆R>=s'#Ĉ:1R{N#'FHN6p}GFTvӛcPb'\Bho ddyQoS˭.t\#'B yye _r=nR8)uR JY7g2^ta1s73,5] //ש"}^l_ BT8KgRN/ݬ4\I^y9酣r @jʗG ^;eH8זR#v.j g7Jr^W~SnVȅ%}7o r=5 J-q5m 3J害TxZٹO5m,^*(.kݐ,[K-*rJ麥rTnwe+J* I?FrDI FHkT_)9꿥r7OnurV?SBpNjBpe\*W\!V! U.Bp\yz*W!y*W!!A?*W!E!uWBp+F\\*^! U 3 R@"r $E$]bʲDrR'ާzr@)IP59r@)IPz倔RH9:p倔RH9 N$zfZY5ٯQa=L0I>*{杒R=35?fJV*]\f*|W*PK `~>epFYd Z{_s629A2HO L!z:%1;'y uv8[:p=n o: 8'soCS^Uq-jѢ-@MpǣQG=jZ{y ߣvQG=jZ{9&h+0-?#:Ooy=m^φ4߽GIyo_jZm^?zogtU /)̥g v]@Z+j92 Eɑ"9?IN/ʑdgzPY||a7Fw2hi %%ы$";]H.3Z|eTIz$n{ҭrKdJjOwvҟ&Aƛu ffy ї'A/DD/E Eu2%$}C+ӈJ]By pt {P؃=(Aa {P؃=(bMg=(A^a {P؃ J=(Aa {P؃N=03:m6~WiuTT*UJULd_x49Ugc{v Z헺eoע6@e MrlT ]wZp';? _ڌݨ<#9+zC_=ӶqΕW퇏g?;v [6pX'"_e"~zfgB@ ٟ5n>]̀w,B -ȾƼ_ ۾K0P/0hwI¹$I'_ UNpj٢ǷfhOæTJ\~[\<\nIKaywH:ya&ڙ/F!ɋ( ԉ.4 0o3 _ټN<C LkIP?~;p9G oZ%AuY3x.|H`DysuyzX^\^̎aOY._-Ʀ{;rP0AG pn: &D(+ȴF\X,(:d-7hz#=Jk59i 2Azm}ȁRF9p`<~)vMC'Ze,SVVrkQls(m0\yc׾M[TۻN63dx} f6pN֕m7Bȭ1Z-u}[埒1,s2}yT7 !h(yM\ J۽m0h *&yGQSup%qYʲqx>c8cp8@V Wװ,pR tcu"2eueǰp;>: yE^n~! |7\A\wi26{M gil%8+aLӴxt&6,a,MGPe*.$.EInyl!'hJ8-X]].9qznLwI{N{F-ȡۗ ps=zr3ZwL9@t[e3as`u@]LTK DZLGe('!1eTD -4N c7CK%N/(5[;s#5:YncBgx"tYzs˞5etdHM8luaK33RG,L>+o]ݬn.[1ZdcOP9{Nj4E`x5_e>W,)uFQksa{ΕJ;L@|d%A+K/0$,^< gDr>-* 9!* pRmgYSI4k~1o`?_ +K~d|PRP#@u cWx_L~ SߧBʏ +¨OJTAa|<־a0uMa S@1S@q$6/DY*L@tڀp8&iNw4y:M߇NG f/fƏ)<&We1K(NK͎:Cۤݫ`cz*;0ݤ[vn;,Ȼ*;w24TvnlCIM_0Se3OeǏS歩3RyhuT~n[~7Y\|>c t x)AwSg>S";ϔ*Hx+y*ԇJC%һN=hl&W{k퉪:T'>e>NmU}^Gb7HہͧGpU)SWRmgF =4~LWRRBo0~9 l>&a+ߺ:@:ʨ0)$L!a Bx+0bHX{FWI&HجLaՌHL6`?=@> LdSNI% `x%P Λ)N>. rt40ƀ;ep )5'QAǀOqVW+餮VI].V`dukCv=CG+z:]Бއl>t}@G()xA(#5Glw34 SU-}[^>0@0GEZ%h;3'8jMo 5H1kSf3kGVfeH(JqՒۇ5=Iq /Y-<;0 >c/!: 8O-|[O 0Vu'?娋dE[8R8{fDXeT =dV}>&0YvB d 2#N賧EqX0I6I!)H;Lښ2iKcʤpǔIԎ)S& :L*uToቨQ/@GzBoteQU+Ԃe%ֱmkkkŅa͒̂N+.W2 =d2{\,Y[vǕڈ;dq%6͎IЉcn[Y1ӑEؓ/o>x">#^Vpo*paTwz*;dR N+Zy')<g5,Tuz*:dgRN+ZY')U%@甒UsJ*9hX' t8"F)&]jur֩YSe]NYLZ"g~3OP{F jOt7jO?CT{!,Xo.`x}+ջfdK,zmjwe ^T{\ĥ@gsSMVAy@`6'F[f=ᯌv¬[,T*MꊞNؘQD]םc;[ʞ(]tI.H?<=os[I 5ȟ'BVK4Z=Tg&0wIItWLΨrt50}aaqi1URviY5poR @ZHEZ8[C-iLa'Gߚ\_jDM6JFt4K6>7\T&}]ae`Sx%̃c|}ZRԝ_hk<ԋ~k-&I#֭Z\^oI鵸[=n/(-o3?Mӣâ!]ҿ~[Mv%>=hLc] )֬< fIX,ҢxkҌ<7 dC0 mGAIIpdgw2wk&(V ioq΢$w@v_^^4r.۳6Q͙H {N{F-,n{l|ktדD!6P) VXݮPLck~h9<3z'ãlXƔMP.8VhDY`W%N/(G7[{;s#5!+:mncB'zg :,= 9UOR8"5 _.VS@¸k l660(HXO+4x<s<)tzp9Sq9UNh5V2ǃʞg/{YWe>).҉uI[ĺ=tbV:td#]}vCG{}:.}/:}/:2/~7J~yQ#5 ߍfictL.̓&2ǤA! ցӳgtj?P3md7eV9xdeV+%)%.WwkzZ[$ddv:}|SH lԞ}g=ӃP{z+/E {-_ ۾mFfĢgv?_} QbEE\zI  1ڊ# gQ V a9Arn'A292>d.a _= ]p(}$ aq^N ya];n[aˊ\=|=h WUW"l_~kϬVE/JJN>L~~ɾu@`6'FYf9zᯒK nbPP;7aT+zj;A^`cFu]w({#1]tIX?=Ain\|}OOhT7-Ff}5}pOe=rw^ !Ѱkـ V؏C}B(*OFk_M/:NXbÂHą qL!%C!ދG$8 Љks/-b+ꯨˆ+ꯨ>&D=Trzḱ'㇮iƉkS=ޙFgN e}bЌJ TGrSlK锋7 S6>S$M,W'.F{E#ݓl| 4QryDc[Rceߍy̯3[?#g.Go\i0r _$Wki_/I'M]Wo?AiaE ӦZ- `Z8̛j4bghm05VK8i\L@.b0| ^ Yd+]hv .0uZaej\ ZCrшXSO0tvtK"_6Ga;}2s_^|֋ן.K.{S-K NgOOdDK#B6EF'dxXVm~;S$r/dl7)(P"JK>hdw%/i}-7Cu=uO[UVca :=A1pPJR~j Lc}nV8sZyFN9.&a٨e4KG늛zt艋艋KeILc8vgM8|.A=jW!@)OCg.X:$zev3_]i p=xdS$;^-Y6M^&WݱKyYd6;yu~dC\bt[ :ldIt!sg~S̴Uaog]v\7M~<:QxMɃ.buu)f]4cop5*SOeY0i+ _q;M*B霸4@~=xRpTx' 7t{Ҕߍ ͈ތ͘ ތћn͘ ތ͈ތ͈ތ͈ 71}uYmy-zV #}12/2/Q~6|3*>,-dP:g"@ʭK71/X|O瓾D9hw9N[44<g?vF\f^uGNGtxtدW-?! N4:/ÝE qNigt ,i;͵D_ӹgNGu9Fn~]3[{ԀwroDaD︷^=5 g07utLTQQGE:*ꨨQQGEuTUE=g|:*ꨨuTQQGE]UCQQGE<*ꨨvGEuTQQWuuTQQ;£:*ꨨŊf|c86so&M<Ϸu]2k3_yștvMC;ݍn]ᓖZo]{O58vN;]*'yf&<$׊;]Ýsc ̚xwS;]f ? 75:܏QJwꉮ78~3]׵2 t؎78:stЀ`}E r:*ꨨQQGE#>*ꨨ'lvL(nwθ;v)nwdH[\"u.ˀ.ˀw= Dojp2m as8TuRjf~V{^d|X=p`QԳD6̧Z҂dENaEep2JRRMEfM iIQ 1) &eZK ڏxlI)3&-l @8ط+GE&Z$ifY8{˴V,11"~VAmui k )Rl+ain,9JeZ->dZzi (R[HY 6Ս7LF3PnFF6D(@2E()2F(mZ+prB#KpriLBCSR ! %nj[Z79([pxWȴV.9 Z3)Jp;"E$)+dVss!7܁ Y.Yc1AcZ#PP֞ZmZq Ikv>V@VPV@bEi3+u`^fħzsJ90+u|~nYQ=iԁ8Za>0igEFeZ!<ieęYq%72O"ضCfeX"3+uZf S=2d|ړ=Opϭ4) jVb=ĠP=O pϭ4*2[Y\٨ZijVBdFrh/,µ` +d 0Nae:f^XY\5oa […]3QVbgʑaJ!Lt|E.wS3 :#κ".ȭN~ v[uZ~[o7s?,w ;I<7qgLGS'қc< 9ɓXrƿ_|i8nBj_;sRT2YzgMՉc:IFWn53߹@S bI %@gJb4l.Nd$xcu,#pV~8r4? l֧E9&m6آNI/嫑Z(T`AiQBYNyYH;y̳V<'_Y'߾/wamyzi[MW0?VbzZT$])؍ee1z##L!B5Ɩ|Hu|X'$RREF y~&jV{^/:ߜH] wO=+Ogu̧YO 82ރڌvLqtgoy~q5W&[↙@d6uPqKPH/Bp.AHŦ>JR\iAVtRѾ$C市alj`ps oDodƕD[W4b("ƼdӠQaK^(h%T/4POozӠ^,hY4AA hPPC? ?4((ACA  hPPC? ?<8(AAxpPÃ? G?2$(A#A  dHP#G? G?2$(AA thPG? ѠG?:4(AA lXPcǂ? =#ud񕼞򱍞Db`~'+PhMajވ st__-׫rYkfd.$ J6"_Cos D8s. q:UeOLë/߾oY|\\fǯfo_ >Erqw8lfGfw;{fWwIgî>Ar|1/ԾiE"1\`b?<H0:?JVU:"|Jq~{Y|13{Y>%_$7<˛}zy\t{h>?wśM pō~DTh+_zVf{n?|~~9p=Z7ރ]Ke^v9zˏ</^$WśO߯_'xCm??4yl]Ňf>ߕr/.9ܕ+qV%cs/zDpn+}`&?/Ϫr/>vi8溩5٬=]3^ٲ%(Zg#64+u{6CrjKW78o˚kE$P)woku"}uɫ~IĖH\W:2e"OfCE&"gc=Wuwyooַܾgu|>^\6{Wlmms-1.0.0+bzr2569/data/projects/CoolSongs/CapDan-TwilightArea-OriginalByAlf42red.mmpz0000644000000000000000000014314011603573245026344 0ustar 00000000000000 pxYs8.|~z߈SwI>vvwL )")Wp@I0eDH.m0zď|RʧY_nmAo=w>*wFs(ǧK?]W.ݻ~4˫E 26*`>|J/g4Zl<AhO^@IVF[?Dv[b;?]mOLk^<)hOǧs߭{.2x&'s =xYJ_F@!L+S%oQc!#W:MEeMS+*# 9+A}j'_|>kJ?LRE/Ls;'?P kA3᠛fcg!߁~xK( v؃Yt+]񧷎3@ä\M?>@v2&/YE$W:8 O:T`;zh{ .s )750zÙ̓/u FAs[dzA֑}?'>\o%6w5 \1 y~ Wbq0V5FտߌQ}aW]?.<:iD[wQpOaĎ rs} Иc㖌:=XhF [H@Kjl-YpL/G`~e\8Q@4eR઄V yNguuT;U;:5DlfRg~hq>:Ddݢg1)U1 h"&^]b^vi񀾉6hTMͩ5۲nL&UY-XXfӞ3^`1 xhF3"&3Jg#tP~ kO/GU/PeTvTK﨣2_R#/!_:PbїAaa0ha05BޅNb_{7>+)¿j Xdw${먄KfYۑO{?mڱLUinlb\ GWGNJ9IadFUlэS[Հᴱ?U=/;OyŭoՄJq/Ӭ?uv"ZO$zt߁3,@ '']R+.ڳvӄ3hawSo@O {V&0{6[Ɔ10ޏfs٬ 15ϳ $D|$Xy91EJR֊;JŷL>e" 6bRc-YQ4ƐJy8nfj DSq̔uYz1on"Y}@{ۚô42ew5Ptߜ"Td,Vd6IU%͂jAF) 2̒QYyGWQKEf1|>&T78q:ic]9 aڟ2wDL>^vsOpJ9C>PwcasS9AǎOW'51 ~o GԃRAYR(upN%B2h*ha&f-w9d:ᜍ. 9Y}.=˰U Ps]ewQYewXRNy.X^~끞<5G9PҚ!l"3"%#AA~胞.C<~O=RYqS=D&?J0ƐBYV3ZA&&RfX-XbK5Vbz|*̐|b~cj* 2h#SCVt^p$f6;5jj)S8HteZaְw߫̚GGw1+7(*O?<~ n7.39lstfAF\@FSj|V39Ezy h NTǀ^3*ywLkx?& +@ʙ<8[>` e K׾7[g^Z?؅jUڰj{LZ?ge⅖cV1?h.n( +0UN>NrF7yp]uעvv{v_uvN\I>D[ -ciB([)SOmbǨI~E5xV%R8fւ @?~Ӎ+z1+Mh0Z_S~|c7a [yIemK࿟~QtywXV6_N00RO\Ep>y= ~&ojw ZY馵BcAС1 GCDN`]/݇3D5yIІTmcA)a%Ƅ 01G~Njgv&Ld\:X`ޱШڴ[٨7Axd6l>DEd`$zxTuxQ&ن~.3ޣFt.G%>w_-?fwdp9{ ئρ !!$VͶiI!@p:]1 !ldIH[{+j#et3ۓԼ1M(RA(rm0E[xdgz@8\{/B]^Lmǰ, #A:t夛n66}/|L7ip[@z䙏 ,qT2'FcGK1;6і,/o-HqE7~vE~ϪBH jz03}ίx]0[`p:X9ݞ&)j [j<2g6$NEe#_Lgfe2_@eUZΧYʄJ¨mP`\{2mhl:aP v?u1{> 늇6`=C:twV3>S3ԹK+t+*Niyu{Q}8 Pwf!0@ۅT(bV( 0MUH bp @DZ :"+'XܷD9(P/s@xެJ6z٩ ^S=2L[|pf gx3e6Ii/ Mr 2 $ k18 ctKԒ.nϮi7K Nx7mK&تs݇~v E v"RlwS?NTJycU*1F!vtq qagjGgY [xx2bS6YE80qvlD<-%Oܝ_f B[Qh=T^<++Y. uN j=pj_?mcX4VBOj͈:x,d ظDxFp$4=RM={Z` *$2.y5 D0M0+6H#AB: 6{6hbn!ufڏB:TrpfdfvE9cyo):ˑHoZrin69Tܱ` Xj` M&%thksDa=Ij9{,o|PA^&?=NQǪZɏl̲L!mW!f'gzv28ym4pض /qnܐ 6ܛ7޾iL f i$HhY7qWgF!26Rq+g$tԦo~]R;Lj6sŻͽwY&ժe[eɛY'Y~G5oY`z5fxXs@ͻk(z(zWNȢ,zˢ,zˢ,zwQɢ7YQng餿B>:P'4}:u-J㫛gY\[-,U 3F« Pw}w~M<5p+#F3ڧQi2}Vv8nsr)^( rE޸[2WUrNo[[꙰S5T17[WTӱ6Z~֮'^wZ/c%!W+gknSmw tT#7L rTk㩁=DOӄ2:O2OR嗀1蜳x>WW x2ϣm(8ߌJ~ G 2LE֕"sӨ0{ =8,&/Vw;*v@/GITC~Q-7`pS $K:\W/tvd7F4{&n[ӂX3 Q#p8nb V5E,d&jDȑ9K@Z"U-3GVi9AwDsF8t/ɍugfuK2lc E`! p%>/M!AD,gME B!&2یrH*nNRRxԼlVIbAݚt}޴ܔ'B#2PLy"6)OrlX`)7gܜ&7gy9+"dW&2ٕɮLv2)dW&2ٕɮLveK-]dW&\C/]n+YLve.]&25dW&rdW&2ٕɮLvxgw1Icgj%Jfyn&izaz6`<:~ ăCT Z0Bϡa^M7y>:~f,ĩF&׾箢0 b`2@2hrNn}_?'(ZV@BA]_3׽?|gIG{8g_xlO7򵓬*u|'}sAKכ۫ݬQ`FKv%yӍO<3Q/~=[nϮ;R4ӆ4MOm?bX?&yN[*1)EvzA_h-+=E^LzhquvJ<Zj!Sf'M.coO$W77g]A`f?|,~Eba![E̿~Y~;HF0&#pepn7! n#pJ7. ^<Ѡ% c=8CvtFAʱ ƞ5 SL 9`b܏|Yɥةb=$%8B;lAV6*MP0^=٫ #QO^„$zxTuxQ&@iI#f:լJo}r7/oZ^w7(fgd%j1{"ȶ!!%D?/f"H 6n%!!5/WԀF \COgSF6%{Hǵl7W pf/_?lr. vyq>O2\a[W>r֥n66{/|L74k =@6Ldo_1Ȳm%GKf?7ߖ}$Ԩ@=c8d"gbUY$$u|"b jz03}ƯxI0[``}pvw͙Ll{+"K_D5daoY˗4XU)cK52 8q-Y n1i@~t,àV.=pb}3 An8үF{h]^6fF]_o}y} fe'J) '}%nj]FbTxg`m@@P8bWA8@U2EqiL 8ژ\\V \UCI(D8x{gFns<@po-]Zicfln~0l7)I,3uS,*cNԒ.nϮg7KMNx7nK&](C?B;ţJv;ف촥Fax=lRX_oHp]]pũg\QYV:"VXĔM@.$`Cf;yzy *7wyZg>\ܫU^@ҳ!݌>PM8l5^:uUaǃY`hɳv WO)D&w.36\ P5{ݳ׌v -$h&7D_ -ʎ b~ϷjV&[gf8.Y`;.#\bѴRU(rogW7Z,KR{.T~2&;JLKL2abn{z|hfZ!K)T`L*kH%,Jns*#*=Oϥ熂\󣧋 o ;e};"g'᪷3p3T㱿ހ!fDm!"~X:3`;6э>H}4ҎD8j ǖ6aWPWO7t0#EǶw|'C~bt2d8LC>82Hiߌd;xSxG9xO2N1 cYhיD_~zgprxjg !,A+*)Q98xÉ\G>LQ✿niA_ڂaǞfguZnzTV`0V&~HLX˻cQ԰Ǽ7(]À ?A 0@DQb wp?tiˋ?0(ozO֒0J9ɑh`Ź*j i9~#MMӟ6`/`mܻ .?H ZQ_3y":O4hIC7xz6/0:Y'*cK52O P}R'Y't\9m% |?3x@xphF,gU}AOzs{IӎRfڮ$V4Z.F Ǐn#ǁ(ԧ孝=M2$(jØ8i$욘mQ u6 )ҙce #wn#fG!}~۞@ 6C Us 0>Pd#Nra + } EcoPa(fIǔIJҎ)sS&):LR2Ic$Ȏ)T:LbB_" LGX:F?W=IUQO7cr7 uЛ&9g"V:9dZuḒiEJUf+Vn=dږq%6+v\ɴM#G b/ŨVGrqtd'dw/7bkeⅮ#>"+ۆw摇I¼K0%;d N+Z¼0ON [8l'N/YSJ8딒%:hN,C7tȊJszR:,iEKsb0 FSL-|yYfN~НFC챘ZxzO>@)c?Ba# ?B=ݪ,&Wgwo[L?N[,&?&!5/Lk׽rc/3?I֫} QH]6*hdڮF[?_`s O~Wn Y͘p_4g `ē}^ISU쏲qm-$]~hXZ>|2C`T|"{"w$ڵ&UAQ#c=i=ޙ\<;{|3oe9 s)n[hT*. ~\6xtB[C#?S8 /lhF;em0,(o#SxEI3Nuy]=6k 5kXp[AͭO#df[7i2}Vv8nsr)^( rE޸[2WՌ S^ьY\ѡԱT퍬~ǧxV G1rF`E"QoЫHURJn4˟wܱH+ÏߍnS}~]pEzobRĕlߘ)c(L+ 9ĖJŕ*cŘ^zx6CW|>/܀W!C[^ +`<к%hA2.rT-X\$ӰSx\:7zz~jESﺶ$iSըY߱9Ȝǚ/u:Z]6r(ys'JT{W͉1kϓN T^4.5xV4Fg I _uʭċQz;aq@PUW=`&NWgdN ίo^\"vNvcS&pק@86 8چ^؏q߱^cyymGB *&z?O.{.ZEORtVMqOu<`sf,nЖ"9ݞ& j [j<2g6$NE FdAʪO[|LH=) lijm0HwYȦclw[3hܽ탘^ xtl03O:h13z?1Lkغ K7I_ZWy`۽,Ї#H@9sP 2EqiL 8ژ\\VbgV"+'; 2scHIx{Fn<@po-]ZVi^iΦre/ dd˻"|f+(la׶S/ޝے Fy) ONy`Nv p;mQy^OCi)#'YbibH,L#_p:tס#PqtT992JF} K-,6Ym*͖_.)Xݘ y`]yNwyvGPhC1waObE~?R!8J, U/<4qu/l+GWm`݇uRٲe+M'gK:iW'#mt9'W#$cM TmIhq~s}{syIOm坟6?6^NHO6GB08>hIYh5,&z\ǁ(ԧ}q6뭝 aI ǜ1Eq H51klu6 )ҙce7f0B0~F?BhޯG!}~۞@ 6C  \g!У 0d ưЗcoPњ%L8LR2I՝c$_ǔIʯ)@S&)A:LҾ1e }HDܧ;ЗE} =a4~yՓT{sY@)c?Ba# ?B=ݪ,&Wg^ZL?N[,&?&l/Lk׽rc/fFkh$>OxizFAsm :ig_ܹ^'^ VfLGsFn.7pj1Oz%OUQ?lv]ak^TTaRIk`qkV(vW)FُUWuxgslPg;xs/̥ղnbQP7cT+qI %n}ׇQ/0 r:p Jf{)hT~'9 bF N?b?W[4j=Tgcl9럀^{+iLL yO{?mLU]ner\ 7®\f7.얌U:LJ㷪}ƪQܭRLXv0VFafVIV*Ri-ا^B~DEMuB;>T"7B rTj㩁DO?%|6K?ͱna tyv2ϣm(>/&E*_[;$vА[^spEfue "X:kF;'164p ܬ`/efJV jVPCOV5Ko* Yɭrzk*G6 "M(A?/euU /;?tFu.vr9)wfQ !UKә5ָov"y9K|i; E)ϜC39G,y\f{绤8F^m\e4qTtOA~;qtj9Xr8vS3@G8\gi0sQRU+ʜ"zgtУɧ|@X0@C# 0 XTD?X|/#0PRh (} pEb\q%e#Wb\q%ƕWb\q_94$Zeʨoj^MaMFmN.e0 Mo Qȷ|.4YXeZ:;,ҵaeߧex& Ti3DV9O1k=ZV15rl3>Dݚbf "4_Ѡt)t1-<6*Bd c\!B>՚y05Ϩ<Ő15*uz+Xv-.Hж:9ieк8)?(ᕩbV3N9g`9Q<0ڀܜ9*V[wjE͑#5ў<5K$K"Ǻ#AvSGMG:GC.zU Sem|Z t5F?刳wԊ"Gy!cqƑK7xp(Q5]vXė[#(Ru`7E"8H+;6PQ0V #ᨅ\@wp}  Oҷ㎉+ 6}^=@.8{rq{r{feCs\iM~v 5ޖ̷͓9#&O6a6n9;wыlt"[sth,Ev;Y+jm1ku փC#s `bsH\s I`Zڋٯ֢ }sʪhVi@S$A֬cn+"/I^M715N5F= ._%c{΢18 _LZ#;$(ZV@BA]_q}' ُϱ?2ŭ/BW+`ȫ}dnV;!}כ۫3N C۩=.og_0sY׳jy~yM5䒷OކQMD(SOmb>ǨIx+gUb ՋS0zZP8W{IТ]-(liBqN62<$ ]hH".ooo.n~X2􋪥$Bwѽ` LF(oCR{G:ty袱 PĒI8 zp{->$ǸF?/ڐm9HZI 37&tXA79 5Xfɸ`7!&[P+yzWOjHTV$zxTuxQ&نo2S=:iLQ OWkOY+r`E|H QpuZ+vyw\hY C?}]C~yɷA`z{r?7)كEjqA0K[Nl6' jrX}o=\c/$@hsCP($Q o~WpogW7ۛOQM<Ϻ} cT¯Rd0rZ@lsA&g [{׫F`4*?g'er -oB>a"lko>.n/9gJ'FΣGއ+X1v2%h:breuwOC٘2)*h,LapdhU60 tv䯛Bp ^yX` , f9<~IYɋ;DaV1@h⫹ u1E?QZ=E:Zge8adضR 9OjVf=@be!V)%G=9MmI 3I_nX`=ڷ S=ܲ/y0)+cUΛ ҶaS9Zs4p Eq]^0R ,;v\ z0!mS|'3k ٜSym/ҷLtδIfޛ!G n>ؗI{#ojp#]q1L,}by[oԥ]7< a z~E "zXi AXy{Ǻ-n`&Xpę2(!"@51g6$NE/e#_Lfe6_6! (cK52 =HaJRb:1H^!kn:b?I $6GjF`z3Ⱥ $x~= p8h1~_^)q*՝ d|l,{РbV'}yuX+8/ 'pB=P&*&yE`T u L~*,?/+SYKlP5 &ؘ}D0`D5rﶵ@E5VN=FoL9$rJxd!Ȅ:{3oҲsHpZK=t6J= 3CGg|Ų#aY72FD-bwZ>:OiNz~at(x:o@ʯOG ho@qtT9z%JF} kլ6vf˯_4jg޲vmF(:{q,0bt[ڱB ţ1rtVҎ}UU§U2ܵ5?N W( H;WKYMwNBg˹~ڬ=QcGS $8$oJā/~B7o,!wEhʍ2h rc{}׃X|o< o#ǁ Fza6*^[;{@e$I< (1oHvḾL@g~P[3CT:t*#w%k,bH߶'PM}mOB( Aڇ+xX0\bB_.m_FI$ qL*1eBǔIJ )!S&)GyTP'{,-Sv?@){ `'؏{r'{2pOo]ǛEbƵƟF*d6c:J|i#pj1Oz%OUQ?lv]ak^TTaRIk`qkV(vW)FُUWuxgslPg;xs;#/̥ղnbQP7cT+qI %n}ׇQpO%(\8G4} nNq°QӏO%Zp8ՙ-wq;۬%7gbpBko5ǩ7CWnyq8JRox֧vVC!Zqp@7#u~ x"h5_ZZW=P.F;'1{οBgXiK)inژԊɕY?9AޜyVI>+5h܈*:x bI>t^ d{_rܧ}a}K/u1zd}`B4z3=CKM^ך!@is`7!@?+WU # #MD?cp } iz2 )ˠs6`|x O&j"lYm'AҿcM \;Fm#0a)(`aebjcyIZajH簘gga.yژD+џ0t`&.e0f Ywy:1±waNC߅xYbe(fzӘǂ۫ , ,Q0 L1P4N3N$1ϰ::<ë,C1`5N2N3N4NLoxJoȽT{[roKm:ے{[oL{ z$葠G z$葠G>cꖬH#A=H#A=Xy9H#A=H#A=@K#1<H#1<{3Ty$摘Gby$摘GbwyJGG x$G x$x^1$葠G z$葠G z8dg1}bj=gn?__[4Ɨ-z@-¿'`@nkύUR+j~rk{Ƀ?|7ek+@Qs\;5/T$8 [ZeWwVk?(nwɾ)8͵ƐVHZ3E34cɇdX3-_xIO7򵓬*u|' wt|kqq ~H!vv{v_v,4:?mhq~_+iN~m{6v~>FM ]|ڥxV%R8fւ i)W^'b;@o$f4к_W 0;kQϠ3iB;VDyuq~{ss}vu4fǒ!_T-]/&U-p,܌Tm]2WFO^fèɛF?7ty P|܈I8 zp{S>$~߮F?/ڐm9H[P0%ߘНc&;40b=$6B;Ub+&(ՆǑ[^6 I::R;jM"E e{t҈N5[͋߯Wf?fwd,\]aGNHar̓NZ+yO]hY C?}]C~yN`vz{r?7)٣E*G i qbpl6}by}[g qEtPշˋ߿ۊM0.Ԫ.(}jc醏?hq>&Ser lxʎAmC/I8Xb7[^#F'{=kN "'qR: xxNl@=>%g;8'"@mVO3\'"B^Ye#_L'fe._PeUZҧ-m>DZ{ZɖSҞվ `o6 בMǢ= *a?.fи{/\q1sd],agUujcfvߗ b:װuiEnz[ʼnBM7v1*30{Y k"` T8^V(0 ]WCp.#8<ژ\\V({ g[}tzQLkP&U+{ÖJU$L7>-4L "҆3C x6(<߬,g(0ӧ2 12e{̐vyws}v}?EO`-8_2lvŻy[2+"EAvIډ7/$U,ξ`-5v943edǪUc }C6 W*|%+e#2XoExɈELdB)blwN}] !^Ahy< -ȕs}gww kl)fE =b#T!vx5UaǃY`hiyd㰝 ظDxJ)x$T1L f=TTQs_pr˽HF{id˕{f V{љYmw V{*}j23zj%|Ld,r,~r^YeQ܏K~ro'Wd餿BW u^NסX88$DQ+?0c0 +Js˱xrJGz8|:Б._:tס#=go@Q|(V-,5[XkԷبfi6&4[~<`vc-{ŤyhO~Q6# Vo}:ߤYY:v4%jKBۛK1js\ξcyn ?1G ]%K$4iWvl]>A,QϪ'|I/F<`D> Գ[;dI?۟ c?#왘uȵstK7`0:JgXe`~l>q`;8_e1'aX0Fń,&"w7GH(Ik$Ac$hǔIJ)AS&vLz1ecǔIwS&~uT/ }XDU ݟw˫֨қ })⏛K:EMfLW2p\ɴq% ǕLW2mipǕL];dڞّ# b]#~8Fa:G2J[?xnO;xno*ܭB8fG& N/Y¼SJ0%;h N,C<:5l,$:dN)YSJ8봢%: !+*%KsJR:-ΉEÀ4M:O1r7=g;Uf .Rysz=SO)=ޓcG=9ޓAG=޷[u33׽?|gIzqdYa_i@.u%٧4>I֫} QG]6*hdڮF[?t(ξs Ov Y͘p4g `ē}^ISU쏲qm-$]~hXZ>|2C`T|"{"w$ڵ&UAQ#c=h=ޙ\<;{|3oeR s)n[hT*. ~\6xtB[C#?Sѓ8 /^Sp|il' 5~ (iԂ{Ʃ蠅 iVטؘ JfP5+:BPj+h5ZN|3Զ3CQTƆafV+aFhkj 6#)3sZAS]`f!oaZ[c fkزr85ǚ5V>mgS5k s(mce:/ͫ6mZ;uj1gc Zu]A.SzN!|l̵ruj1LhF2-5XXWuj mYFK`0* J[}oxHbc16k(32&QhMW j׬TW>k:ʒ 5s*`R#5פFk>V bI@۩QZפ2a狶@ڂIQzI$Sul&ҁIX5g,j$mxѶdHnQ# h;fF$Sc ֊5Lͱ¢Fv:= j$Zcl[@Rt:6b1lΕӧ@Nzi)5LcPHf%̟c=|`J NiL:@Սj'ڢuFx6ǥGz0,j!T1r.Ψ"nVIm F&D[DeN \Gٜ:@5UZ9=tcd9=p ?A;Gml(yȡ(B*aR YRK@sB!S@Ba"wonWDO?F-><#|\ێll0h%,r}c|O6qQ\Von5ypׁOPL_>..n^@͎?գ>Jް}ܿ~~0wң/JZx"yp<d- od|\ኖfJ+؝MyOX;.%:J47FΑ_y|uNEvE-,E"0`ܱ3_Q1oXm8b}/d!dTI^6Q\=Ro6ܽC".5ytʤ*;gI4q/-+Wt↰O 0BWxIUnpN 2Bs@y=YKXxApuJv;G\d{A3ؔ~/}phoi~>Nu &G< YfTஶ=ݐ m@roqmE45:+# aoahlAWQPe90V86z6ggʜ![y1%9ۙ<^-Il3d F;냗@<h+ͅaQgx,gj9Iy\ϤiEh%Ў=>|CwT]y_h0cVxke##-Ǡ;k Y5Ήƭ l2E,{gҮq:w`>M^חAi4iNisAH 4c(e;os8@uҁ# wTrBnm~@N~,?\0(ʼ)#Z,\߀R^>xCv/h mr cӼ5K"ϛ m&toͺ9; ELkAN!lxKLwe65SW;QIfaywqwI! 2pߗחK0rf M\'\#tG F_ELxg)0a*JS-_@v d1KdxaF<1*@' 4b7CfJ|$cwFhBFK>Fn*>w٩ʍ80]Yx".#eagW7#B1~`U^XMeՄڅ;\gj1~#ܚliQЄ"YBs!wϗ[ao )7YNq -@pŋ_ԉ"!}/1e>`nи]* /VR+], }nx\r,D>ͨbWݬ1Yea!XECC{Tv bf7 Ꭰ4IÝ* jSu\2ݫ*jnȹq$Ԅm baE7Hn&bȽS+b"VB *\כ5n6cX׆c BUc\mSmdvGtDɳBy-I !vHEz!h*2 YET!A%CV~~?d YELuVlT!􋅘!:嬢,Л& I$`5$ I݀ ILC'd%ːd0$4R|$j?{fƟY!pQ#Lir2MOPiȤ.>6{q Ol\oZ,۫G?ǫ[B SR&JFq2iH6!#|dsz2i82.ށ =4{j0(aQNfƖ+ 3\m'%)uS+KH_f!}:g1TA89wC(#K4K$HMiA]$:+M&S <7v'=?}Ȥ,GV63Ԣw(6`P$hBb? 5OS$=ZiѿHXjYq"Nk{t=i@~(_g.,y"q6tbILoMˍ?3l LwC_+^3te2byu+bOkphC>/I;0cgsm7rHgtZs7\ai­0Cځ^?9BRu<ޢ-)=D!me^BP.T A<BT L8e!30V(fE}C/k8* O'O\OpzyW}ĭ[ 'voWoa^-Ꮗǫ[ʢTfeֱ5,F&qNY8r&ELڟ3iӽ_ΤHmI~9r&WLlIЈ#n1{gGdWwbsehAa೰iݲmmكE7t?Qšgggggލtptyptyptyptzpt8: FHc.zyGu;=<SO =a؏P{;xg}T[n/{QVH׫{aY/:,GeK>r nQ鹽(:C'i ud:DvTJ=p][eq |8kg?IJy} *jY ߝ%Oxx(^Y 2O SU ' 2G*=UWQ%lkؐBP_ϳ[X l81~g~(髚vKٿ1PYBe;?kVng'tx–(]݄nknFI ҏHex% P}WZzm@HeC}?8QUcrb-cgZo&\줐6epPWر\1UR35}Q/u02sĴ`soqUj~q(U6׆y:Dv6WL?آNuGqn:G5[u&}*8YYޭMsy6c-{| @.3cdҦwk^4\Bgʹ<L;WgϧYv9[6F]ɹpN#~&G>[)B{R0yP֟杋_d£J-RC8sف+NL8eJ -H= pX/=/]T7?>M U@J &@ڴ Չߞx*pժOM{:U1RJg>Ic\mAB"%Wȕ\f1Vm8 +n͋=>k8mXڝ}<:>ڐs!"DVd"RtSGuYhBfX"g)LX!q}̅B*Bwڬ,>V[YfM9<ـ]E 9R]6M(3bvNTZ)>W.5UT.S/FOE!t3_SevG_- ƔD1~&W\^%=rVrYnTmI/W'Me' }mӊuc'+ia!BRVoll}ۅ.gZGڮt9r=v54,g>rz,g䚩[PLk )rH-:[p-:[ YP߂>~DhA{jcAXnXMa51&İV>W7=xӃ7} oRޕyr~eUp!`L_{GOfh $[0[T.eZ[^x%v.Jz1i%F${r֎m)a:[??zH"$!@gD3xY`?;5{w4=1O@CpeJUd>;+}5o/ )Ԩ?/(9B@ƀ_a.S~s"É}hv`݀3.„`]7ҏ"1jmkTjA`w FsVv#>6[3ttY󫸀1­&497)7חMkPq7 _5zG/WNz6BRT کPO$'qo +\ѲLޝF2ěd梨BD5 Cm"i¦-(oȝ#[uZLYFN~r' R  0Xh9`[٨7F`ll}ʾF3o2[ 7襆GՀpigocS&V9{_Mڕ{lY'id+XH<M&&,9ŋu跐2#Ęf t-(V.hU`(a[X6ޞ?=x:/pmoi3yl&-x'f ]m x!]ۄ6 d:[@"G; =YX0{{Ccx 2hWw_,b&+ˁ+y&>8>P&&^͋1-1m{g!f0ށ5x 46W â:Yr0Iq?#=c~Fea(ߐ̢U|>U U)eB_9f-Lu\W`3udP9с߶5Alwŭf;vm[n`q.ij-fv_oWw:MB͵K4˹V En1*0v&F!t\woh?@ (䄼I+7@۸y9qYʢ~d(V~26pbavGqopEkxw@^Ȑ/X /cӼK"ϛ m)&toͺ:HPEܳgpe65Sc;QIfaywqwI!©4pߗח{0rnf M\'\#tuI FCE=Lxg)0i*J-_@v d1uKdxaF<1*@ogA=fb}N,.1Y8Fm佹i7Lsc}pW0{ Ӛ{;SDb`pw g a5VjzLs骥vrF500:.)bDw!4ky6:Q7p V00?aRSU4VXMÅp(NjY#{?TiTCr`&2v;h2=)C{Tx0#ĢBY6{zqFK(^bUBk.3kI'd)4|I4N4 u2bGk+Ѡ$ qYB&NC ,̾"BB 'Gʡ^lRy +8:CC5?Ǘ( %p vwϊ;+'14\ތ, P+^ߘ w28hqؼm༃yWsμ80nڳB_Q3SĦzv@:Zr/[|aB6VȇwON}%Vn=O`cXwq(={ܞ?=t2o۷޸(y޽$]~qɐU5U qױ}[ ,&F g ƹ*@X^ )[pc -|TwhK|~ȹ遯# PvWXp#Ⱥ#~^=T"T{#X Gp]'aJJ~ VBB U-kkk!)Κ2bvGdDũByz }kH$ 遼HCzZ@4Jl4 /=0?Pigv;țVsH<^z`82 遳Cz jQ m!= nH1=7Md6 nk"]X{jQΣ|>Dvk>zgOCT9DeO(ܫCE!{:\E_#^ ){Յi-?WŎOCWU>7Liz2NC&pI+<<1^ MEոe q7ђW(횠+[M!#|za*$űGt栀whƢ'OV}*VEJ(`KbJ\.77+N߉V[Ok!臘7vt^3aK,2,']nL܇_"on]]C>/I;0cgsm7rHG{##giIF #=Í<ᮙ#Di@h F cQ d[h@ 9ÅjlP&0IAj0'-Q͊>"O}D7If!['n 'O\OZy^}ze`["lWGF<<^RUB u-+aߗ7`G 57s™:3)/gR_ΤlI~9Lڈ3i{_ΤM-bmY#n1ȖRl m2(|=[ܽ-{1yfܼsܼcrܼcrܼܼ#ng5JXzscrcr#~ֻqt91919qYΑYGӨib\?^/(NrtBu GwSğŔS{.=!6jOp?@6#o?BNG=qj_/ ^ԾG^X˿,32%_iYiR|7gnTzn 7$bWz}2 uÎ^  }˰l;y4coٻ<6y'ɲW)A]=+3ixŋ"YvV [ avĢ@1A&VE*꣤^`RH*+:3y~ 7',p%}UnIcP"S;7*> +1T{rGxЁgU[6>;DPvnbwi%*H?'Kd4J#~ms$@ @t\ h[뵽vT~Q`^ف+RCj=1hr+oA `XxDۀ *x_e;^dKٯɭ8rfhҼRY&buL=Ԩ6gjŔZQ+VU{qFrڼN>olڜ{XfV 7pty8gu_h)T`Q53b=`G9G֛}6eJ} I|rHusW3KF Cg'5G  G^9,t+ :U@> r4f*Q;i=yY6p|PFiNk_"@?尛Z=@ @-.4FނZ) ^Fz㫑*0UEP>JdYڱ< )L}*?9Q?$H"$'#@j* 8;{#F7MBO?кE$m;3\rώJ_î!?V餣x]^`.0_ fb.US~s"É}hv`݀3.„`7/:H eZ>ZP؝_hk<{nGқ3k‡Oc[gMhnSno/˻נPn2@O(jt7,d+o_̝hANjmSHO6߀j4We6!vZsovޓ3֎KD.n7 C{c9_ȝ#?GZLYFN~r3 R  0Xh9`[٨7F`ll}2z *i&GQj5DW_sigocS&V9{_Mڵb{lY'id+XH<M&&:uo!5eF1K59/et)@@zΠ `֐5> ۚGµxWcxȁM ,czϴNu L dU> Pkș[x&]hH#,BЎ=>|Cr3VT],T01 A|M 2r] cgo@&wNtmM`P]qYl]qۖ[#u\`}Aݮ/WNSkiuisAH4cT`MB J~ܕPP yVn"qsrc0EDQe>8l` (%< .^`Xށ!3^^| ƦyD7ۈS*16L^Lu!Hc'y;?u&g7t l1k~[njw.>BSir//w;`@8ϛH8NFۍЇzD6g7XS`FuӔe U&1Z6Ɓb+N#Y•2a{ybbUV! (88*fK `zz͐6EAAEY>\^c6q{sn>`2/ 5w#\vlz3"SVTXMX]3u%GdK"<=܅HҮr wD1X2ô}7;`ZVd< {bݱEXq{8ɼmz@{Wv%CRVtW1]n~G l=60hܛU$\T1 &fay1hoÍ*jSu-͎*R ,",@BMVt_a< ^!xYDRdP`%uGRf$+)Q$%[ :m'TQb8kʈG}Q }!=7" Cz jnt*=zHz2~@!;p|ف oZ!=xCz$[Φc4/SHT"E1{4@&!=@ް6ݓ$!͋va!=D;jwڭ{T{蝽6?uT?kjQm Ɨ=p"^x{s}8{1U\;>uj^Wd2MNP 4; 'yG'Ax1(7.W%DK^kd$o5dx2iH6!#ٜdz2߁w yf7'"{k0('3T c]}ruHUГZ,+G!aPPR?MFZ)mPZ)yP+QƆQ,)q{_௜+;B|'Zmlm{g<ٮba {e;-doȰlt1q~uw1jt-3b$@9h ϵ!F x%q&[+v D7f9R*Nu<ޢ-)=D!me ,?[([x!~[@$"!dP@Da4+<裯_$Qg'·'n'OܚO%Tyj} x"lWoa^=xuKYT Q/Ե:_ހ%5.$ 4 gR_ΤBIA~9"r&[Lڲ3i#_Τ~96z$ohΊzfvv3#[ϏK2]ˠOYsnsۢ ipypypypzpCy(aiyyyzCY :8:<8:<8:<8:e=8:GfAOR1 ~sux:Uҝ =+NQ:SO =a؏P{;xg}T[n/{QVH׫{aY/:,GeK>rlQ鹽(:Cx\䓴:U^";{%8Z.-ò]ofЌIebCh䵳$^v>WwΌA pZ<=k,sp>k Ϫ>C*XYDuxaefE>̐O3 9WTvu);hOE?dsk]cɾ"V.m9OՑ&hͭ$2"zdX'>mck@Șԧ<^^yɽclk]WQ읯(*0O]<\ӞO-sI~!~> j1roe8/ws\\9ǜ5fOjo_O(Hu?L'>QLpYGS\jٸg|,&hg^۴\WVI^}+kq9O壏~N[ =j|TEKc< {ժ<{h%}]~Ur.߬sc,F_qY-PX4i9r@}ˈ|vuA*Ӑ_ѣISEoK_?OlS5gV.^ FT$-PP35~Rqc[]|.ig:#w#=ͣheu #I;MxL~v9{gySP63E:r1̘Ԗ\vL᰺ [93 ;4rQ^ЧR mgYٍ@zsf\:{MzYw+s츛 /]= 뗫s'={b!)T('ǓMAƟK`F7hYnM/ A]sědҮ#/ѣ۵M(mrxo.̭ȝ#?D04ZLYFN~r} R  0Xh9`[٨7F`ll}.ޥΦjomX{z{5`,vƌ2ԥj"%SC0pk^ cizs2_#6כ>8-9yN18*wCQ b06@`ґff\ge`]; M|6ȼ]~u,ƪѦZԦslC "Dz/ƴ$s;G V !6>R ,aC IgJ j03)r2Y]Jγ1*q_F%'(UIŌB])}rp/yT_y|L>𗿿L+N&Eo' QeqBFx d:)z8,]t%#dx2iH6!#ٜdz2߁w yf=L5{k0('3T c]}ruHUYJMJRkD!}DoTx99%dĨbbel(1Œ˻ \R6=dV` դT?Cxބ0t IgSV[[A|Fϋi1F 专h ϵ!@b=KK0ҍV'@{uf@>@h F cQ l`B!B$x!~[@$"!dPjmz1Q͊>"O^9EsDm8OEZyP}  '.'OlWoa^-zezDk-eQU*DPײXV}y|ԸP#kz8',I~9 r&qL˙n3iˮ_Τ~9L4ْ{;+Fܶ1SϬl>?.6 =wO=wok-pn7777︬7Ȭ?7Y,??똜?똜?븬?Ȭ?ns|΃sL΃sL΃s\փsda4*Ew9W;JS-ݩP^p]RxjO'>@ =~G=i;?S}t{p>W²O_ufY.zuM O+}!. I*Ђk{%W?IHeC}?8QUcrb-cgZo&\줐6epPWر w[VT Ϲ2Nߖ~)Z,~!_[u,[9)T?5E܎ ɰųVyƬgIA 'VW]gZɹ6U+"~0i5_z /QjsE* շ+HdF t%'sh+)Y.-EQ:r: vY.Wr y\ɹ\|6+r&E+FL3"!1zSvQJS X,ơ^z`pƤJ&Lar2,tpCtJrBzdz7H~dK,c[!]oA D*]B@4!9ԦjDz= gfzn'|:V r[ W\Ecv ,~\^<Ю)<4ͺ|1nMT3<7: qEL;{#]щEbՎb*ԂF[sVv#>6q.nQbi>xZSӥ^_/wtfd࿟~QQ%oXV>_\}?;ރIQ%hb$'?"+\He6=)!visovޓ3֎K'D2 C[c._ȝ#?ID{KǁMYFN;t`qBS텕yxc Vj+(zo"#K $R۽ O?3IUvWvh:,kI'^ ~ c禊ljڌ }R3fl;9MUO V;^[P ؿ:%$ppvt,x 6d3l-BwKL=Uf;4jk#K ƺTPg6"r0ݯVe4-\B Ʌnvu+L 6՘6gg!ңy1p ~iį`e[ٌ74+2\՟5" ·L:oFY0=cF^lu`2ӥş|>UVwrڬ+B|BSWoG`ׄ+n܄-ijmYϤ,\l76 %SS6713{[G@k(8rW~@A%'LZJ+?`X~<f%WQI|]x]T/7 5:O× d/h i+ۡ!`26[DE8BcwԾY4]g'Qmg<`߰̆kiL^1CC:fdvww"B L}y}I?} #fn¹wDuB5B/(\@}h)(y ̈t! n+M c|mۡD?_" WLXE0扉ETYp\bYMD\%N,.1ٚTFh#yon"%y9]$^nUmp ,{;SDbdYc2 k =vtR;Dx#ܚlA\GB+njmlpN /3LCTMDb&̡kU#{?9TiTCn`&2vP<5ŴL?r@OP7MH,2>H&^./QRiQx2@gjLrj6 VMt.+Nʹv}FL>P:.nӜ9 Kc7c,!"Jg,hξB#2J H>,_lVG w982GfT&.$_B6b‘Eu?19;(Y25$ qM^kCXskvl"všCXhkaMȓ k`CTsjQ͏C!6X@\:0O.F S!6†@aC lTx5 0 0z@@K+:,?wqBa00b:Foa\t_LJ&ze_{T< Vxxb<LKVO'ǝCNv5AW2#!#|zagZ,YA,4}~R۠V1R,V E1XSryx9ZTJwx]+0 /R:K|;܅%^BYvwa>|{yu+bd~yqkHځwṶ9/I!KK0Va@Kf@k@h F cQ ; @ 9UTy6o$C_Aޗ*+fLrFS>6A$Qg'·'n'OܚO%Tyj} x"lWoa^=xuKYT Q/Ե:_ހ%5.$ 4 gR_ΤBIA~9"r&[Lڲ3i#_Τ~96z$ohΊzfvv3#[ϏK2]ˠOYsnsۢ ipypypypzpCy(aiyyyzCY :8:<8:<8:<8:e=8:GfAOR1 ~sux:Uҝ  Չ?)U]P{BlԞmG=P{3վ^-G}+սӗYfdK裿^]ӲJ9nNݨAi!P䓴:U^";{%8Z.-ò]ofqebCh4ٵ$^v>WwΌA pZ<y}cwt2tj#>Em}}(% \dp?dS+ZA>[|3!Z턜vhV<joZg?iǿn7od6a"~\r9kΎ>* 0a:O5]|q}|ߙDn7QËJ OʼnQBHvG5|*ysUi7|oMx*:nv)8v<˽{w^201{Ј@+7_WϷFp" ,:J^ `rh$:.G_>G(S=W1 \3@I)#0 OqBb,E~|j6 jZ}5_,쵒{q 'Ud{!ix&r&δBL|}IP +Q^E(E[[ ?,җ_LIמ()iV`bYzBً.~jhlX~~k|h}w8KSQ>JDF5 7\^h;swm>kivef=mY&ۯ1JڨL4W,W\e \(xY\dey&U,Nwocr |2YռݵsmZh zt٭yK|^xHS`,ëm铬r,!YDs#lV0%vDźQd3ӟ3)ڡ5~ WUi\DJY͵S"`rHgLڳ>\Gz>7Vh=_R鳟;uʼ+5yWKi%^7z,%^7Np%^s$ʽoJ^7Nj%jOTjTS{*?j^JjO?WQ֫ӨOiTj4zi?j^FZO?WQ֫ӨOoܫS߸W7ڿqoL^ߘjƽڿ1{cjT7oܫS߸W7ڿIoB^߄j&ڿ Mzj&T7MoҫPߤW7ڿIoB^ߔjڿ)M{SjT7Moڡ%\}ݱd9*/4L8U&pY0ye9`%xM€'ۖDf}@F tsÌXN8M8h>{Yuyy+o>Fv9}~ˣ'6F?~8{fx?Ipv/zcX`TvK?NdZog?>)G 'zG$wv}n#osuG*hko+#{38YgtңJK{tV: u~B@=nX"|&ד^`@U~oht{[oޏ^~ڱU"kU4πlPQoGE W" 5`κ$"ʊLJү6t ]q Ifh[@RKx {]i9}8{ؚ-]ok}nޱ^RGaV>vIYh@G ߶mPk}gr8COoTl縶[">ėf~%'F!*?);i9Yw֞lmms-1.0.0+bzr2569/data/projects/CoolSongs/CapDan-ZeroSumGame-OriginalByZakarra.mmpz0000644000000000000000000012465311603573245026216 0ustar 00000000000000 ;x["9.^9vVq̶Z6e.j֬, "3&..+CtI%?$Or.yWϟi3OdZ\-U+kKxUbWo;O?Tm&yݧW$a4YՏeW_`pXs=}7Oj[~jTru1cu{<.դ/s򉥈D?_5ZNjyULjm:y֌T|>M]NcWi|_f ֗k̲n_!u+jeOMٯӼX"KQ~a4 Zdzі]Udaub#;ٗżsbbE)k-$j~:+ټbdc]fr_Ewٷ/&כּ?\kDt]uj]#k5Bh!Ovr괓'\E(0L?5]!2>ԁ1oh<+ͨLjc8Y_O{E>ͭ:yΫyu/DLS\J0:v4LR339jH'w^\Nrx~p& ߊ+Ue7;Mor~oB7GGI7:dj;3 /8MsN>ڌܩZBܦ>&9I^Sԯt@(VsVb6[Qut8 m#&Tǘj}3?;OyJSrxuF L^Xי#`]6ILa|NcX&$'dϟgpxY-S&O*Oſ<>TZT|iJOzQ=STiDD4">Hj OdjO$Sxى|;Nu88p<>Oe', 4r>S|s9'5#Bg 7(&d*S`P]K,Èe)Bad?HR4ń\Lń\L1!}:gL\1!sń:9zO/3#n|6OɂՓO tuayw>n}a\؛5޻I#%Gq=9au3pX=U]TJozJSzJ7zR^5zNWVSخA|:M#B锜(9s!IW,q}A'pWgRH<jRJ*=4X^1_H0D w$D;?&G "Q)گ+"l$ttP?ϫbhą{:|;c;׏u\_B:!t-ڬN;(6ʹ:k|vn-Y1Y/m-L6Q ֤m$>6ǯV5izRB' :\gc6m:v>4Ԡba _ylߟ~ak1۰(pV( Cŏޗmֆݴ)zxyA=/BE&IN ʳtMέuc=r}ƶ2$ӡY(&Fjm4q:x{ϋk~}3@Mg΄5$ψR9|*ncf LJPao9l]:}%41/JǷ y 4#/݋7fkA~q@$ !- آeIn<vdgd;7Xmq<,oUv⟦(9fUV'bج*+ȒS+2 ֕'*+"Yz 6a,~ btQɋz xWWz1[dҰzƝd7AQBo9,F !PIw̚R;j=>=Q Zm$b6u7 N_4E)6{)k#"i-$Ƅ5V&}eUŭ ӕZYF װ-Ot*PiOE5ȟnᶸ!Y={" hE~(C,?L2",i0pOap&"BFTV-Ht^ HXZkG8AI <܏p*8&l؛D"I!$[VU$I0`ӢDz)DdX|yO'|dIM̶0Kճ} ;":ߓP\PE$V t'Igۛ%Uvt'A$Su:n{'f$3=W4n|j=ՋiڲjPOq;Tiٜ*zD5$q;MU]i-MttLsu9fwin3[f q; ݙfvwkH]ݝnVYݝ%îfw*L]*\]ٝ{W%nvʢ\p;Ey.JX]ŝ'-=7yZ_D5p+OGM65o9čoW7O8v.KJ<;yR_ 8O 7yZi88O+L\/*AxC_ a@ K0n t9GEIjVps&PLp `kq& \Mp-a0W !.3kÙ1J. vx:]' v8Kp;orpV 4v8KH5Utnv8Kb7S7v8KpC2҄,tsp;% nfx*צ%~Ta e/EH S2Tr2T g b5* d "6 U!YEr(_r xL5IH#7J5’q v∲N5 :Հ(Wg N5 /GopgG6aՎ N]M۴M۴M۴'ugGiyџ;џebGV;џĎO+ T a˜s?C?w2 ]@eGvg#ϻ,;eb;Ď,;*ϻY{ikXо۴M۴Mл]봎]'uh<#@uhĎ-;Ď&vhAιNBvHCvHCEZT;ZI!JZTvHQvHuj%CVdTCV;ZœR*MtT!7A%J1,?bi)w0ZS̾~GKg~o#W}]fYRmAY̸RT9wpf&\p8H88H,HxRq`#Ӝ4Xnx\8+M\hZş_MUN=~,_hc^=*ftVr^mKY:#kkW_u9_T%__3Pu^?d|dirOM'[z(\U/uQ7i1Ox1V٬\)GGG>$X}+Vd:r_JǬru*-dmvUۈiyDfH$آlfדɧ͗_IQClZ_COb6_6Ւy_/ba\_|[5>{͇o?~wf fYĴO>2_uxߧhZOѲ\2ŬY!-̬rWaA]l_%|َ.}{cw?_5g651Z?N}Y,f?XgvY|*k[_~f }쿯ۛ/]Ob6\>W [7_ONlVr4Y|>mUVDKyeVN:U.aRFy9f2Z}bevU 9n7e s=@rR榅i.{l6u$¶[w]ԑ;Evyy4p5:?v㢪l1Vr( ~]mGlh۲.#ft|!YPTXi7?}ww? vۏfp-,`k5~[ͦlLܞ"i\KnrE5O`ίp;TǵT] h<}{?kŜV5svW}HLMFl6 :+gݨ_? V/3WWo>&¹;opz7 d36 ~9`^U)<Q"f;knWƩD#ZXxbNi^ףbVgwqow,ZabiTP"aӁ"֛uUL[2<Ìj\Nq=+ug6c?l5thbО%BxDn^Wg.VnooWbF@/JTq+*~,Aʊ-an/-MӺ_pkPWlZmT# $՛ Z &lw I1f0,&1-Ku%  < boȩ1.a:fdEq":)8feof:YlzwvPjNfI7(LGYg>:H֙Y,~iQj9[aWm)*$81EǻO޿~yqMX?>Clmv_e*f>]/߶ƨwPi˾YoQFEXfǹnE},]/4KX7çߴ040SpԆrt9q׺,SއdzǴ-ț OQl`[lt)6^Ʋ͛>GwHr u6j#~y>6h#>Gqu<ڈ ژ_A}gkikjkkklg&nM$׻?#j3qGn) DafUa拎/bf]`ۛm]6Mܤ.o̝7OM$;7):޴ޤ,>{p٤7n5t{cM;UCʠ̺,S["QhY0b5Nh-+TMْ?m38tZNDzɪ? Aɕ߹朌U9._ @&BF M'qɷzɞDv:do 6y9h?j"Al+c$ެbqJ\*a^-jiAE]ꑭ3 u%)lŷ9Upc{V !y\@Ŭ LѷzGAYALKVno-فq@ͤc.u笳 :gm@9lsjYgz:sw6ug?kEY+Q}w NȀ}#X{ogĕռ-Ktrޚ1t5c֌[3f >o}ޚ15c5?s՗ch\U>ݽu9 oRL;mֳZ=U5:y̼kvf^5;3Ϛoi9; lajY}>kvvVU;;_u5N{CfgY3t:=WB A}{0t'r|S>u˦H^@]Ǿ޷v%p3 0 no޽fEL>m?MSǼL֛/՟no5HW北2_k&ajpeP~ʪihROyQ-V\ rVY+~t ~5]].t1?-&zgEvU0d#웷>LM_Y weY9/n foML.wf;ϵƏd*yAG]T>i]iwց' .VaZ>sk_O jcj내o'>CQi:C|ƋyZf6#[_`T,{,mm5x<$mj*՛mAg%N&}y_yYu8گZߕl敫`]KVr#[ )r6$c]\-е|QeQ0dW?w3.@3wԞCiH;)"7%g?˚\SvZ9z~X[`D.3egS?4l67.sO,??OU9~au?|[wcUϦ~hm=ZVߜql1kVs?cU~Vz6soMӶb?4ןU1~~`ퟜcv Ԇ-l> {`3EӘQFj|b!:6Z(p]hlRV@1Q~6TFYGOD41MAB,t'=ڮ7fw>RlTgf~&lٿV2h:%4)ٿ'&?ov@'+ٿ@۟&ٿ!m&m&6fOVV:ؒz'X7kU5@{ky*Xo?=Xc]iW=IX@.5]`_X0+z_XDe\l1W6* hUMKۿ^b6Dޠmc{Dm,v {hP dm獅}MP}MPV2T"*Z)koe7oVQ.P֟ePm(ZA˨htqۡm@mn*Z #}Pފڇ귱 ӱOU~6OM~6h%:_@~c:FzE;Yo!V}sT}w'Tj ~ '5B_}R h1~+56CHh5&!48M54q=X7tqKʁU!P4~}EPKGiw] bwMv)gH $>#5q pґ`"=/=RDP#M]S j&j*bnlHkUE5FQ#u_WiF HM~W)$FF@~F"".RE iʓrJBu.R"%E*3)L#F*Fj#HK?".RIT^8xz=SF4T迦z4R#TR#_ҙ8.RI_gꨑNr)$G:`ga*yH% ^#~_g KG*!owkDB3Ht>He .RI5Ң@e-X}]:vh=h݋:whK6hʣ5_vڣF+.}. 4@_30{G ZKs)'f@{~3=3E͡(ťA( L^4(UqrQ`{=Er]:JE>SERod(L ^τ]:JG=ϝ L lAZ±P~ ;gg!8qSsdǂ|G>/odR6}d٠[9m,~Gyz꿍 gA2jU m|~+tty ɯG rq[[]DDU ]9~A2HDU-'.vA2qyIA2 D>H~ 5HVA&~ \5H?Alsm'`z=.ԶGRڴmNC .J=>O O$Mf^F~\v͊Rݴ30(LoEKkǀ_%?}^;F6 ]յckࡍXd4.L ٜ]TMŶ뎦rM;P֞8 )Lh*$3TMd Th*4; M~B s:q4F~GSThh*0h*$Tl濣4; i8PGSq41\K>3[A^{nB% o-[Tj@[I6@v"X Jnr<2±;oOܥX:@<a@} 9 %|ypgKbY6.P dPY:PPZ@6('T ˆrƯO oRB˅6Yd grʒ!|[d}2k$_ ʒNe@Qj);KSTROD)X.ySٱL,@]KhF}\wM,ea?QY.ˠO B}3f`fǥY*~2by@o~rLr)+ ~\!TW 4gX*%kb@;7VKsX.PرLf%B}s9LTXLeX&c8}v2)X&eBX&eBX&eB?2!$eX&48˄VcТeB8 q9 ~q,X&eBcТeb!2iX&GE˄$22I =s䤥mغ'wmIګݓ;G{rܓ; ܱiwOܡyN{r=CZ?wO4w pOuLܓ;0{r4~~tO 'M=ܡ=C{r4ɝN,'GSq4ۮ;Ѣs4;h*BY{h*0tGSq4*`BGS9*h*49 )h*6TM&GSB뿣GGSh*h*B_MTH뛦6w4GS-:GS9h*h*B ; Lw4GS!Y&t4; MBœb~MThw4; -h*; ~t4h*BZ?h*TM$i*X1h*]w4Eh*wTMMTHazGS!鎦h*$UrT~GSThs4RTl֏4; MBGSMGS!ُb3MTHTMb87M%MdGSIFiSf6"wv VמH`Kޜ26٠ŀlVv+ hO)y@mpZ@9mmvy(mrQaYwi;06!ʲ!dTlCAi+V۰t ۠Ӣv,"K?VAfgrB[l,HV,@6۠3[l,2K2oŒ[<ʲ!d ɒOo!d ٠'KRoAm/mb4wdQY.c4U~H~SbPY"X&mCa@ψouʁr^Y.@X*P~+cXSV!?T %`y7;JSٱ<,`oAm/`mʯW 0C#cR'KM~V'@KX*D ZOX&OL b@,)mD%oL2Z^8nLvqhu`Z)@sYDژ\`cmf T]K*;IV,X&ڭb!ޅET8oRQv .H}ϊeϊ%B̟Y*yKc: H˅X.X&aB[%.],EӿXg.H~V(%oR6(%OKoRN˄z 0~}ϊeBKX&ÎeȏڱLw`,#o2[n,)~R!\ oP~+ Y<;  l@6,]$T; ߊeD٭X&@׻Pw@bPBL b)Y<0ʑ]*PX&OӿV,(n2}eG Rϊe&p巺?EeBKU ?u .6۱DwKw@ebǴcpGS >9Ȕ0hT'{o@ mmzHظ:L >< IbOsZ\/PY".AW^!hXA/@ Jzc4ǿ olcPY&@mK/@a\ fY6/eB},?DBe\;BI]Ӌ;PXT۽Ӕ/P_܁OX*oT/\6,*KZ?D^y,;Ļ@.RL/NJ^_qwkŒ79R,`[o1}'v,j .b . ¹ ^q/Vőcm}ѵGh ˽8B{q&?w~Gw9P]Ի(^]ԻwIP@Kw9PASF٩Q~jzĥb4Kz5N_{eFQzjFQvj%F,kS(=%@S(?5N_:JOˁF٩,j%ojEe @[Gd ,YT ou0~},*KUȒ'O$,}ou2|2Mt /GdYD.<&G.qThfyD BdPi"fGt=L"˄H!T,2˄rL,*K L,*˄L,KL.T,eBePY&TBey\r/8I3,KBe\# .24,KEqwA\.*A4KAdy\. 2/~ d,K<,*K2D^]T . *KwaY.24KrL,*K4K24,*Kʒy,ebL+]&2),w M.]&(˄]&.R.2qwPeBLhww2E]&(˄dL]&L]&$_eҌLhww7$p,2lƱLıLc,2q,RޱLhw,˄8cP4eX&(cX&eBeB߱L,/2iw,ZeB; ~p,2!E˄2ɯoI Ŝl^smr^iFi7V b d\fRVO8W[=Yzr! 68'M[D0=qy@W~,IP{if-̈́4O֜V4(Փ3(L'M4zhLY'MJg3BhTώ&ɉ0o5@d ad uՓ3Cg eoI`*'wQ4fh"@L5L[D4hULIoMOPiͥ'ofߊȟHi2~2)YT]~@~/ɝ>i&TWESoELzr49Dh*T <6Os_B~2YJy4LxGSq4ۮ;Ѣs4;h*BY{h*0tGSq4*`BGS9*h*49 )h*6TM&GSB뿣GGSh*h*B_MTH뛦ߎB#\*rrˋ!\)lzM9FT *UJՠR%~*ՂLuHvj@:\=UH5R.M5R~*ک/=O SP=5L ՓCP=*B/miʹ}J ^w5NP[K ^/@+~5j.P  @6PB3nv혻mnv5^ۨu$Wۨ T+&AgWC1$UV$z[lSQMoKsVӧrmJ7D ]|W9 t<|]zX2 ),vTK4'ev 4)IФ^@SۣIÌkΎ&(8+;&%MIHZo!Pv4mTGz\QI|yrfeXX( E95OTQ$m6l?BA2)'^i-Eh3$tڷh^f!GX0PE Ո*XSDb]J$i*XӤDbMF5]ZDSE4eZDS1E4eZDS1ETeJ$ҔijHS1E"Mƨ4eZ$ҔijHS E"U&4eJ$Ҕi*HS D"M&4eJ$ҔijHS)I"M&4e$ҔijHS)IP1셚%)3TyD");XRU,/ӟ"%6a(ZC̸yf)XZ%))BOk O5U5@E+r Pm*r P}!UA5@5K$E5FjrEuK+R`)E!2XRE!3)ᇨbU!3XZ%)2Hk VPR*rP\#Te\#Tg'ҏP}\#TgJRTe*,HT:#Ƹʐ񛆾8'J"\zLS #CTD ?Wl#C} $Wlytu𤱗3E`bf/Dp1U/w=rP\\x~ }e£}c6 &fI@8L.Ox°ab6 0lkdm7o~' Z\C >-Qa*a6&fi$\\2+$q(0G&fiHW8L,1 H` (!,o7o=m߼aXۦ=8fǞq|ڥ}8n 68w GY,3ď#,m Gk$3#,-[H1K$SqW.I&`Zܗc>j d6}Zܟl7\8RҲE!Tܟi!۳?̝+$$"P: زا5@ )fi,t)9 W$ِ-}pcfy )!!,m(c8XJ8s%chB^EY' .B|6k#c3G[GT֦'>Yjmk}ⶵqZ*m)+ܶu n[u^΅NֺeֺŁֺ%ֺֺֺEֺ֚jh[+ѶVpmm m{#m{9m{Om{em{{m{m{m{m{Ӹm{m{m mcmc mc+mc6mAAm#Lm#Wm#bm#mm#xmm㍸m}cDCGqZ]qZp!8 Co%N{31tdCt0Z, Yji*ÉřRnI*I4з4UC+ \ }65@gCG 16t M3uC3L ͔474Ќ_Cp8dZѼCs/LDo109t=-Cw 74P:t@нYCw 60;4@C" gx@'8Cdpԃ<1$=)qzT8 {0ʇ+8:\i}0ëGt!$qyh'qZrʽHp.zfK24\ݺc]ss 'd8\F&pHE2*HL@ɺ{:3'ޏn]OdV3d8:*u[8(*u[8*u[8*u[8)u[8)u[Άf"Yl8_&u[ΆSe"Yl8L&u[Ά#d"Yl88&u[Άb"Pm9dݖhHvlNjx$#'@>>GrW?8Mj L5q<9,Xx$K .8+)@n'*.k8)h4gpX,VaqXſ tL ""7TpnL B u2 -I( f@ ǂag<2 4pW@)2_M|Qn8IiδTq#Bp88,HXI+HrYp@>%07-KH˘這:N%p$? ՆCf03=9*c8j@錄EZp,RJ#ge49 ux8k8whYEt G5@uXtM gXٌд9$Zz1+n.rD2L % OK7a~pk.Yָ43_xPF ~j28ceYZ6S,-s⾠<2*pG%sp߫!Nv_Q_9Mk/$`q~90 ,K+eG($qPȬBy Gaȣ]84 W,<Iᚅ3q%f[q,@5W;Sg\0&U(va6MwDp%fjVJ0̬I{C%Ѐ R!7˄% gvTY:.1~#Ւe9ؒ ~}IU1,qT8RgaW_/]rRp9Ȝe#~ߔ&Ӣ|jv$βā@5KOBq0Q T˗z#oi 0{Z=!Һ5JZ{Zc5إuOklӺ5vv{Z%{Z=6i {Z=pOk<O0ok]jdz0vL39,(FA8LB.`py >C4le9YV4bvgvskpǁdpρC<Jp8JpKySSë4+ <72qtCZb`҈G74W' Ml^ndnF a85$XlDk.BnwAiCq%Tbk ՏeYn͗bV|]6Of^:#k5kW,k9_T|ݰUu1h}V\٬+-ydqq.s.WߊtVzy5+/~y٧EZD_Wgm?b`⏠Nl[ͻK)ط~Z>NjKľmr{ӫ󋟷?n۲k6JwO>^ *mK6ʍWr6)bp*)ŵ½sMU;L+/gl&lj=M| lݤ5F漢OV\?c&mlm] Y;uuw6qD|ɾr[*k㮴q˯ϙdV4:{'Yf?}ƎiGiq6z'vߙ27w)#7n=n˷ѓ6x?K[ |_e%z,㗘|3_\}^&ߋo.Y2_\XSmeJ:ti;([X eJ:tPDV2%}qO~%/4#U2Ud6|2~/n]ůcu{6W2*1?Q_,x_1y6~/-S<h1e:|wLWB,1_<À_ ;||q)6~q/_׹ |a"׹u$,w'9 =@y@\揟:>Y!/DÏb^q>~?k'q?})< +;ȇK}+m`_Ч_Гy:~Wυ#Tү@>ȗ+y?~W //oR eM_jB|+ 5/0%4_K3%%^ʫ^,f/_z%ʃ~FЗOy)yʵ_&P_ pW(o E^|+w0@~ן|7+wv 7vWrW 宀wfLTJe_ pIW(1?. +Ixp2p<)'?/~y0NEGIּ$۹'N袣8:@_*Q1fS ҚNX69=is&׷8~&gweRE%8Lm%E͙8E$nY.WzLqnjQ!Ka\ۦGq~m:7m[?}O6v?MpL?lss9\uVntuqQÉ(sin*AF/pl ̎ԎoMj:0?gq;:cgFr4b1/&&1F\)oIoQ`3願n).>-&i96|Gr5\Nh2g̬r9w>|:WsO9a[7[&BL3֏{d|F_r`eѪӯmU{?%j}쿯ۛ/]Ob6\>W+ "[7_PNlVr4Y|>m VDKvN!~-'jFJh!UYrUhܸ'-[ ('enZ*O6}tfSLB,l?u%O)ʵ[˻U#f<;Ƚ%:u^>bt@[ݖuqnf%3:*Ӵoa65 El7rٔ*e3`V67k.`3( 3|{jj]ogvs۪fiɈ҆MgE̺u_~}3e\UJbDu2'rwib_nrP=Z;ZͶIr"<|:{xa,)ܽ۝) UX'ԟHbjs"f]V3 O+0 ~f]bY0-1ȚǦ^ĠѪ-T[̪T9}0 F_*+!Dp̒ 9w>x#h#ݣcq|6;~J;4A@b՗oE4Lmugvr@28eSl}?WٸÛ:nvoXʡBlb>ZOmkzE>Z/QӔueUT1fڱ֨ڕu|MURǖMIc߫Q}cʐSg>FEXf$ǹnE}Qkp,a}ޔ~~4V$OQ:f>] !\ g1 %1g3+i[6Y"of1+Q hB'dE onD!tNBh% |)^(▏-1痍ɿ68=veqhI19h[;ӠbZXt,&Ųy/>d텍X>pZv1>RoO$H$ <,AuEoytM'#(fˬl.]J2zλ@ s>=R6AvTqd u{꾈QR8Ǎ2_VvVۂAc qyFxV3>qeut`Ñu6@ ' Sʖ#7552ŊspmI{eܡ= >]-sN{qWO^$7?p^^Mଢ{'yͰ%N9{^{{dQ(%^S{68X{87F{۩ᗆ{P(Rs{4"+"t!;veq}Fpo^^Y{-Jqp{9^ 5^@$up{tpo&_w;"po^^Y{-Jqp{9^ 5^@$uW:OAlC{/A2?#xUπ^ZZEIm/=(Z^ rx{)hk,ὀH{W*uo_,?[<_R?7L-"obw\mJG~/O|oŏ4kM!e,I2no޼ݽ<7Go>߽C;!8UۧG+SGqh#zmh#^G+hc~mkh545l5555l6mSϟ[A[lS 7arLe9*qb5hd'V@lI?~xcku8/cYF_dUU^ӯr60 A`xS-IEq\/|m:mg*a[, b^ΫiPLiTZd[P f]ӎSbUjqԔ%TS,A@zUlt!>^+A$>YN\,FP؞Ղti6A1SZԀ CƬ NtT+7p{q@ͤc.u笳I;gm>9lsYgw:s6uXg`:kEY+Q}w NȀ}#X{ogąռ-Ktrޚ1t5c ykƐ֌ ٝf,wޚykƂfg$TbbhU_N!3Wݳ&t+|22T-K3[6jWՄl3ٙy}̼>kvf^U;3_, ;]NfggYYV쬞~v: uN5;CϚgjg\ 1t:XI@?s \t&ݟ]W]<:[6G/6z/:%]Ϳ޷/TYp{53/gnodiiRT?d|t{3EҾ/g\;W{.Z$Mŭ>HVVMg`^NFrx΋jjlͺ\w3VOui1;+!f߼}gl`Z+k\}9uL0}o]drw7y}7~\&Us ?OIxgO<^pZӺ ݪ~jHWK~V+_; jOɔLM[-frs/WvwMtjZ֪)y]uIz۔aU<)S g%N}y_uEkݦjfZJm5>*TuU[ъbVLb[ AMC6Nn >ax=Z؆>d.s|W\7k66NjeS*#>7+>7Zm7Ʊ%[U_ƻ9 T7jUW~Z`]K>SW'r˜`eLk.@4) dOſw;_>/<w*.[hQ3;fQD, jfѮ؂{7>ɘOEy.qcB8pݏ  Ȝ=#{Ӫ Aw8#U[Npwyye–uॡs^ڠ6A:F_o :?;yպ ?5@\n#鳇Q%)(K O̵t0K9`.:%t .xP[Ga|EX?Ԅ! 퉒0FȪA\33ͥ~P.L(ڙXs񄉘hgYbvf/ AJ&fhWrqR5a]2C_&D|_!C9Bt͇/C9k;F[BtهrDg %FЅ'X.|5!ՄE2tه,]a&C.P.]a.KD}(J.{5!#Oh1Y܉хN.W6I3Q F&A~ A$k.(#?tGr &J ᠋?JEy)#RtG{ҏ21*)#^RtGr4ѱe%U?%C쉪3trdzů&D]3@ҏѥ s]q(C~,s.|p?ist х&D~,UI.|p?rtr;g$ڛD{g)e=TRba{aڟ\I+|'= UTj-%_DLGjJTh)QeH6Hd:T$rBHb%%XJ1?T%$ P(k(@B))Q(3>DB DB 凨VH9CT+!R]!ReCT+XFVHPyr"T+dR;HA`P%r,#T+$PR'DNȕcT'=8p+jIza_\L@4P \­K= n!fs.?>_H RKCmx=O,pWr4Xk>b:=)O~ZN$}͏9l_l8,qV&Z?eKuvY |e5iU~u/I]|S䫖XqU|of}߽槒n;+ګX~<G\6#~XmOѴ*֣ei`.'RYXBF#̙Zo^uߵc^=.}{c[@YC3g~/֏{d|ހWn߽޿~ lѾ|{K⩞`cS'6j%1Tf 4ttVo5,Gq6R༻w̰"{K1O,Sňm,DkU!rr27n!߹^tfwAI& ]2 `]<(n:/_Gns\T?$6bH܋u6UY:ZnrcOYiV>բs>?VGe6}wQ@|IC@f_R>#? )v@ DCbo޲TGZN|t덾95EU>,VֳC%#RM9J_h\ݘn>|YM6.޷)ޕ7^Ѵ6dΑ'ZYy_,. f pRO[7XtlpYb W>]{Vw:]bjFsk9cfwZFv=YsrIk]7q~0v3}W*C7͘Y-oޘRfzئzspʂt稶zc;R׶=oy֜xmKNSm\3 &%;_Su}tf`>. P8*#׳K*8Iu=R,RqTqd~s6::yFSn|;:?ӻ>Ac;0~3~P=I;l3cxnqyCJd=P}%to ^It{4%HWҽw6$^IcRҽto%t1ْtS;tF!O!ݫ@%"YؽtJto1IJHS={%{gCt1&% ^)Iv\IJWҽҽ%_I| +4%+^4ݫ$+~ct${IJΆ$+cLJAҽVS$^}>%$;f{C_CRiIL|^-^|{4%HWw6$^cRﵚ|o%|Q^P$|: _KVU2O3[|jI—L| / qڧi)_~^|psoj2uq6oWߟOz@;wG>4%SF1iM=>bw4c >>ssXiab?զ 1ث? Vx i vƻ7˛vͲJ7.=wY-Y.+capd߾Wo{c#jʲl1]Oϫug"fqR0Odavyyy'v6^Ϋl7c`N/M zw{/MUdɾXGcm{س9YBM7j22J 2. 2J22J2:et7lxmؖѡy1xl5pӏM?'{Vn|eߥm9M=|=d=d=l=pd'qVg$q÷,qC,qC,q6-q7MY&:߲:ٲ:ٲ:۴:78D-H'yOo^[NmĆ{~u x>)b:d=}70~- _QabVl_?Ln>O8e1N77.?ƳŦټ2\gBM]נ$7"l|OzlVl^ڹdB{r6 M][uit^Nvm4pMݽ}+sr>\Ol]lNE~au{C̯>C<Wy㽋zzΊoҺ,,_j @d>~6:˝j>ڻ+߼ui1l]>NN4z=Ί"l||U+E=7Z}rjXnLj}v=;ziiBˏu,~ 6l1ʇ./lp]O.>V㖭6[6fԕ3Lncm|6, ߋMxXnjR~0CQ/wOHi--4z:tV%:z 8jݥ{_/Foa':nتw؅a{t`뤷Qs=#{~*M'8ww0|}9A9~$=qDwq|6nD7g嫽16Vl0g(Q)hRW8Ebu8l]2Wo׳<+}k^djyyɶ޶+E>ggY{oGU:)+soV}2!W53TbAcv!{ºVGt8}&ញD_bW7z,& ,=B@[sܫf=n=M : }@8:r#B@Y)c:1c:[ABp t :f:i΄p t h@83匞)=@®#t @(h(hg@4}(`@057 t}h֞#dr e =>GZw wo99o99o=1t7HˡC$G<GTGl. Np$ 0d}s}}>=K) =Gbbz>Cb@ϡ=C`C{Ğy=Gb3rOW H8{F)} $ ƎI} $ {ļ>Ʒ1W4vi93Ds$2e\#gX3%>?c_=Cl@!Ǹ@!&ID6gHX?gH<_Ğ!a_=C=O !gh 1ߏ-?'$fq$q$."Xu ļlZ* z@SH2|oKĜnM lDf2+fLFS#"j9BHL JM6"Ԭ\ kfd3L8Ą =CXpxj$ yBH@FBϐ/cj` =C!&:4SKU#g!g`T$4SH Yj,tA)T g`5 3b6gPZ6? T(Ld% UjJV T$ 2b_sBfreCBbf61! ͳ:1O 푹ABV00AB*fF!g`s cԢ*'}00&¬˜  IlƎ e&RaȊ?&&3Ugoh Lf00r ))9Lc*= YzfSe :4,tĀ92 %1`BK },0_ ԒIX(&@-4 r'MBW Z,Eb|I;iHM)cL)LdLNa&cL1(ed5 0f3F:0#t|YlZl[,~ÔFbN#1(+jd ilw01TUǘ sCf1&7| 6 ,11PT AȐ$c#IjqdXI,ì1ˑjLsdٹDGv1ӑhLudDs)d<, %t $&d@|RɀI ?ù,kLwd8\@8\@8\@8\@8b48Lqd8^$N. kK S:9K=JO8|`s0,FcI1 Aly% Ni9U8WD0*gTc"S{sBsbq6`NU1̩= 9U8C0*|Td!tNp`N99MĒ10X94K"sbItN,sΉ%mS,9sΉ%[c`N9i i:' MgKn߳mߏFDه 8l9Iq1QxWL/G F\Jx0>#e8碔ଋb3Wԑcl\tW{肄LjGC0.IY^C% +(eWyH"kYfg @ѦEIF t<63h3 ^tN¢ENA- v *0mnDLd0mF@m@ml6C6C6C6C6C6EYd;"\"E).HmvAlsRd+6"EDlRd"܇ )}Hm.">6WHmCls^6WHmCl6l6WHmCls>6WHmEls>6lsPdEEE'8mƉls7Nd`"܂ls&m6`"܂ls &6h\j:lpi3R c$M yP<.. X\A)?\ܑ.\#.`5t(g5Yʽh>╔ʘ,tPRRjnKn+nXNG:1Y+i 8%B %ߏFs0\1O,ʄ J gCRNTq6hY M@ %n#J4-U[6`lv\+6B?p\Ĭl䎫5kkqcR FpǕLjqR?N#L ci0E~ol&E9 'ܢڬ̏/Xdcm&E:C".`$\?K3Wfh<.C7>pY ƤE cc1%-":6$43]\fY"UfOE\%krfDAsńIJpDS9G)I㢌YЙ4E9V G5r='ځM95sBDsB!sr뉋2OAYsk4 qQFFt=gHSjyN)mS=@{geXjQG"pʦ EA-Q j)bC)D{1jӎJȪtmpwtNĢ[0X4X>PĢE,E,z(b""" " " ">EWHvAX RĢ]"݋)bѽH.">EWHEXt>EWHCXtEWHEXthhCXt>EWHAX)bѽHQĢ"-bmEXPĢ8ƉXt7NĢ"LĢ[0nD, 6LĢ[0Σ"SEٜdqdK) g[ʈȋ,ա&C)ikC}$ʯ}RBȖ .[%:Qj"P\(#*;Et,q+=z0i;\QG5HWyheq.6; fe<".`5\N)qE5lR\h#F.GT: /`¾-m[ :n 8)U X9~4ӸrС-]K!gu&q]\pSq5p<\N`q;od\q3t q REtK6ӄ 6k.֠D\pX~/<i8qT(Fv-Ԯ \A,,XJ2upEIZCfWj1PqZ 8 $K12s3 N`pZ h& N1 N1 NW`ЩE+,дSk/Q]0$Nl$_q3$_q}$_-, =SbigsJۄ )Ynt60dM gur(8`g}(83PEEEEEE) }HQpg(8 E) %R{\"E) }HQp܋) }HQp܇ ) =HQp܋ ) ΢, ΢܇ ) }HQp܃R{(8wEY@Qp=(8[q܍n(8E & -(8`܂s& m(8`ܩLߝsq{vیcE7YssG <,jL56ܛEF%r~#%iJP\,-P‹(+{RE}K)1YJ:(n蠬%8OPy ^ZYŋE,5&x%X[bD$zKq0U3aFXJ8RL8ʀ88D@\ӡL Cّ*N2fծzL*Cẍ-e![6dmv\K6,8`B`#L ۉ5mWk0qZ pǥ!pF'F L=`Z\W83ekyZaf2@l1۞oL 3*Fl{Olpl,.j05'ݝ`*7,&/fphw&‘͸}iq5|2ݬ&U+qUz4~i3?CgO5D'QM_̟}ߍ П){œUÆ}iTMP|FɆϪ-s1 EuZxh]>䳱v"զ~.gm;~|-Zƻ)Nx>?wج:ckn ϋLO3jb L6FO66Jo̷xWygk+摯^TMMLɗ/˛En$7dytcBey*K]#8rqA.Յy9cZ;vw@ϓfu!"k]RT(lzצ-P7{|~n Zc 8 /ӊ°/z LO:ޏ0NBc2wꥼu@g!Z2_ l^c8 =^>@1@7HW/uj71\^fO, SY呸D׏X=vC{q]/Izqk8{;"lhTDeWT^Z\/;Al*L6[i!JSse=QO(yBl Lb{~OwTjB7$~+=O7M;Jyv+*yIKӢzz}-8ݮdu~q\l.GB70ʼnwY٨|}|ȯ k!cZ*Hq[F@oJ=G9叢Is~dC'rG症ѷos* v|8,D{qw:r\#2 :o}'w:'Qo|xIQ2}ӿrĐw2Ah?} A_`/`PX_0 /VB A_h/pPZ_8 /VB ԠOY)S?ejPO A?5SVԠOYiӃ?mzPOA?=VO[iӃ?mzPY_4/EV "E7J ˗_g٭9/&7lR),ϱ;_7L~KiיlXm-I{j@MgzfVeXn3%(?7BY]/cug㛗W?_x—>Pxыvx|{{{z.ߎ߾zyr+oٮgv?JgśߟdϮdcQqt-gyS+R3`GGWmvR8gߍVv=Ya?p6.ٸjreT˼lU???C&6%^mwܖאwu=j4>."@ۻ?';om4ޚg_'ˋO'4oỼ#%1/sP~+hK1|e^/瓲~dɻѿ7Ϙ%H3A|ד3Qf1/olw|s l\Lb^xŝ,DE6R10 igWmIs1ĉ31쳿4h3[2kZFqCB*[X.>x|}3/:MNvlllmms-1.0.0+bzr2569/data/projects/CoolSongs/Farbro-Tectonic.mmpz0000644000000000000000000004764411603573245022310 0ustar 00000000000000x}F+}@HXccpIt7,6A|qeDH$ Llu[)pz㗙Uf1Ku/_9}o˫}yny\/鬄__nS̊4)a,,?g~7?/UPն-ϊ&Ul/>u'uv&-j&Yiq/i;8S2ɖJxvSckhlZ ےeed˴g F6yx}&Y-$r'䦰gzH5-7)Rc7#\0HV x|?94"30InVrn6NSst1OdrYk.lK5嗳۲pRT`&j98yݮ>KT>;٦ErSVgV`a9uIY,*2lmժ|c*4塪j:_̛׫0tSpV.]݃mLi5`Gk# v~9@~]|#g&ՇlW,jV[}|.}s%v9AJ-EM}l'MkSg n7-?7mK.v :Vz"WUM x_9/ *y@/rW.@`O-i-#G{!Z^e˽jJa7t iEOY^)kK}ۚ+VRF^=dbTJ@tpN_JY3]+q$:jt8W$f))sxwi ?a[< "|8=_MgOia$K*3Ԧ𘦔ώĂzz6[NYNvrQm6=JSttM8Q/: 8ю%G!s4S;Z9yc< GDf҉  k$| O:"|BNd9LH@ Z M@;6S( hD{O UgDZ걬ǃcpb2)Rb_=уQiɦ%lZi5`Z)c`< =ܑ̈ά64LH{;G{SmSYNev:w{O\d7Iq/ޓ[cg~YgkOEos8M v*);ilc:V<#aRq*Ϡﮥ*Is>2*Ͼd睱̺3ά;5ѝqQoGR'p͙>kZq>ּ X^Rfp v?VPٱB1*$vkSF,ږ6YNVb176b92vq1o؈a#6b؈2b:I[3#5xGo6RM×Zc]=q|NlNj9_l7yxy48l㰍68[xAN-}08Q`n3G"K?l "5s"Ur)-vruѧ^6Y=muguEVY]duɪ G E.0'T;Q;Q;GU;)ϒG<+XYdNV;YQ;xnn3W;MI?cfN.TӪ"Y_£O_cf!:#댬3: @~FƉ =C⌝Hw6t"ЉGd 7_I -o;_7յGM,'g"b .P-iZ(yzYazp׼j{Ez6z}1o9:hzTb gc Ǯ=0cY ##3/#w0+P]d3f lͅۃ*y \;F;ch![ci _$͚Հ jvhcp|;Vτ/w~b#xuvuHvJ|FK:Ȭij7j|E~PZL箇ڽז$dq ?]7{-oi\](,"3P幣}//i):-'RlKoGG߄M}INkTi-6F-ve(W:uUU^7Ъ akn-&˺u|/ն[?BQW_NLͧ!(%k'FvV#T#AP$Iʊ(9J: 4Df| 0C?A{p?'~.swy~{>uRUjܖYٞ4&[.ʦTK=JR/zԭԬq/]ԅ7ȕpjf-anDSȖkՠ"U5?tA $1fjmܐ(nw2=Z^eK t}2'"f_Xŀl 9Hh/ 6=ۋ`߁]&S`\V^$^r%w`s _;nq0@G>6޾Oڼ$}@[_l۶8jsy;qpT~L_70?%GZWӍDo{s6Vׄy콗]-tHu3T]=5aw 뽎 }Q0}^lx{vޡrK@?eׯ뿾^~4ٔws)ǝ?/n+sD}1>e_G4w?GO#H?"n#?o$L߈@jCWL`*E #NݑC dH!Њ L 21RwC rd#KbNtI| d\<@D2Jl-ζ8l-ζ8l϶8l-ζ8mfl!Ά8l!Nݿl!Ά8l!Ά8l0;g[mqg[mq'mqg[mq⁶g[mqg[g[mqg[mq`/o-ζ8l-ζ8l-N?l-ζ8l7oٱ18l18l1N?l18l7ƅ6#Pjl18l18l18l1?xJ}ǂ8xp@wI aw)LF#Qad]>$}G#cQ=s${Hb4{(0@p"hL4F#rtk&=Rr0f 4') 0ElS7GBv|;Q ;SHR=6x IBQi*(A]q}'~Iw~$,9;$? KFORްS77vO\wv'(8&FC(<D@nhʼnc9 2r,ǂ8d\9d\9dT9cA8cA8d Bs,sL8l188l18l1cDQWE=NDX8Ѡys!\ #A$JtS)hlb&{=& w0qP`;xL7ߣjZX}lviCYd˫uK{-eq{.˚@5JPH֩چ{lvehsH,[,2/W}//i)jvN. z-®zQ9rZYOJ&럳ʯ6EEy':[;luE]4|,rLU7ۺu,El"c )ۮS? ~Կֽi>do4;quOfEeuoo^<)0R-\{v추9R]OKidlt N9쾛l)7Ie颳 .3 nHnz>,g0V[T$,+ҊUj"*UmfW_b!.XWWYE.3f_.iPgOޚ8([7Zn_vMD>zͳU^l-g,"-6!%r.YV~^'fq2;mh8-uU_MUVcI2jj[KëR9k6ɦTK=J ^_TcNe'ЗVԭ'З,êW)\|JD,MeOA>|JVz^V;Жm8 ^bAI ~')(Tcdq %ΛH%U<斊\-n%ґi'Rnu[Q[J6GUNC,StKS[ nSbڞV` Bn*@B2)$7c'!BTHGz@y$SoaGH} OAtDO[b)Vc)H}է`X}Orvd 1% 1Ѕ$<@>V y##)?hO()ChO(c*(ҧPHE(#@r(D`E(B#]Iк|0:>T%Gj#ɑz0bk׏?RB~9 O88\$O"%O!$?R$X}y$O$O$ 'iH8D08C08Chj38C Q gq!x!`q`q!`S!m28Cp<]8C08C08" D3]C08C0a8C08C08c充C;*a8C38'Cp^ƧCBc,kqkqPǁ̒58X`58Y`@^i8X`58Xg5qF#RU qLiV+Š +6ذbÊ>|* ^'#IQ>)O 1F"Ii+X}N[ZڊA PF !! "1`I#i+4 & D0@ D3@ D0@ D0@ظ `|0"`;`s};`;`; DDZg "` s}"` "` " DıZr"` "0g "` "` @pm5_ D0@ D0a@' D`s H})?H@V X}"(AI`H#@%0AЀ DЀG D0@ D0a@' DpDGD0@DEY$ciLh ,noeYWҁ |]..e \$T@N6\m,lH,[,2/W=}//i)&oiqܥ"_(7?@?eZ؝N_,Oujvyo>9gKU-dqo}P'L.6zBޑDH.]OWQ/YS-l ~7tYMOum[ߧyR&"eC/ ݖ0i"]ާ.VU'jMj.:l2Og)7<%7e=g3`-*{}[07U-hZl*,T>njJ~cAY ih:? fb0pbǛ!ږ]0lKQ`!ֻ}u^gEZCP_E1t\,$%*he&luVᓦ3[3F+B[cγ)p) nyʋr-W,_EXņ=_E>m _'faB;mh8muU_MUcI25ޚ-#M 6R{t*MQБNQΑN`)9Vc)j5QI~>E)Str>E%GX} ΃'<8?R'P> A0n}OBx$3H}OBw$pOv$hI~f>I~ I~ IS_O(%@!( (`'@ PF'@ L@v52OD%0 P#M%0('8x$ I ` F$X0$I#@,HtH,`AD$ I`H#@,>Pb`A P J"XP6E(%@,(`8$#H#@,`A` F$X0{].E(%@,(`xE(%@,' I`H#@,$X0$ !`AE(#Q J"XP#%" @L,` F$X\$X0$ $& I HyIteKrͣH!@rΣH#@,N$1$=J$X0$ I)X\%@,%@,]%%Q$ 9Q$( H$w=JaH>c`.e X0$ B`~[Fʩ]s#G8s#>G8vs8pGpNJG8rkpp#G8NJF8b8‘#+#?GG8rcE#95G8V8‘#_s#kXGpǚ7P%Q#0IDМ>xGxvx\<:e\!,$%V$@ Z'R$?i1H}˲&,','H}@\X}pB^D ^e H.KlH.Kd\(R BD _0)#@A\]i.n^e,DsYbH6 6Q<.k7C A0C Aw}4[yAAHn#g! `! x<B8Ze! `!s} `! `! A:! `! J@ o?+ A`G0nv{$?.WnqA^C;#0q  @ ||AF>>G 0$yAH#@(@(a"A(o īiY$cA uvu]NjB^euYޤ˲av z/"Yr c,4MY-yZl]Z\l9gurZ_˫Z-e^$zDu97۷omq77?os^||y}T~ o^\}Kr~Jw^|Tӯ޾H_?ܮ74(~o^|_/߽>oӯ/_?1#v}~w/[<~L{niO/f߿8p[_L߆_Nυ_﮿ϧҷ_e/,Νۚ"ï?[t/=wSO/snR!{/Q5>Q廫tD>_|w/ozA|~~ag͗EÏ ػ%Z|^|NE?}ܿ{C6.SoՋ]bw7?O_MON|/_ӕ}7]K~?NN_boq=~LéMr}.0u$}~,~C]iпџ|.dÇW_O/[0=wߋo_QË"/}oL^k._M%UHj;;p/g%Qwy(bUd^ ɖI鞧Hݮ>K/=ә<&䦬݇&gFP[Ts{0Ϫ<ZU.j5u9b}ohJwMUߗ0-Eig0ƈ1?ĪJScgvh 2Ja!1JB}u^gE*kL"Y^@{eL.&*he&eSiCE5?ufWϘ_R3!5V5r%Pw[T]6#K u;Z^eKN7VS}47VIwǁޱj]Ƚ2kVA`N9@䐫^S"q.yބnN> h 9$T/ܯt<$<$Qm> jh4&@P]7@es2ct9|/Fq9Gx~ r JG? ԉOHIp8RT?HL wɄip>uO }diIc=\.*է/,St#, Ҡh)XN!)#@J bbFƐ2IealBRr&/oS??I}MM=,& p>> N@pL}: 8;|'b|' w$ w|' wSw|' $O}Ηɲ'srEa¶oC } f.Q7 ÝBe*K:~neie|ru'r~VYzެ _\)/H;r_~z gyRӺowYY~a?>(l|,r(Q}Օa몛nmκ\]vS;CH~ 7?=i>]`oN#4sV7.A1Ql[׺ATs DRs=/5Kuفawϐ}+yX~wfg8Pk~ l^32Lszy0\suZs皝݇k\=lkqݒh]W>gz$OP.EEb(**@PUM>5Slu>)dn ;$5Vb"Igod> \Y;_~hnIVX} էH}]*y CP1iSFfv<-pjbwтԧ9QlC|M2F?1!@ڣi=:"&aQ$@{RvAWu^cES!j&5ƽ{ &e odx/)Oڵg$81cD72)C S(X}Rva@J dH2F*X}R^\wBUPW?I%s$x>)?ȳ=Py„H#J\AR`1&0(f`we==Nqn}'GX}ÍHv3 C<~EFC~cA aG??('}D%0?=:n@48GƟb'ƟbI|Npuj"=쪫9q݀"_h7Xg@z9ńvhLJkdN[uPf1*5FΟYΟYΟYWΟm~e%İJj գlƮ.ZꢤE?+꿺 G7 мH}7KANZ [A/;U_]#c[]t {u<%c >0G:Ƣc(+YcC UHB%L!le 1GIsQ#x4hfz,$OGf(ƩVO4/7"f($[#SJMz@Yl5|lStx`yT+CL@!}B@Q)w#02*mzB`c@}NUc+=r۽)У@s 4@SqO>ډc 58Xc 58Xc 9hp#.y\3e/~ˮ_v]OK({]OӛQ҉byS{u]+_l'ݝie:+|zR!tSƩM:7&Ld,+h.=<YTlo%"ۇ'"bK^!,dGn& !f!7M\{4dKv3嗻Ƚy;Le? 1 5LS<1ireOm/tÆ^Fo2:CR[#xǻ{v'kOXp@&{K>O{l#mwySUjܖY;g֥"WI LA'L]x3m\[TG W~ᆞU<ċoF24wr]hdn"tVu*DSsʖH/n)-'>j}>OXQXKegTwڋlpk֥gPOіwq9`yA-Y,%/: 5BϼȖ+b[%8bynJ\.4ڶs[Ö\DRӃw؆o[->$PȑQ"oy2Į%wh@ RDLN@DY!Iqw' Oj K|%yQSd{$,l $72LI[@K&\w0}n'wG2D' F!{By waOBХ.Gf1a< 44h!]nq'0ɊIahnu~@Xd_~N:)뤬uұwVcH:)uRD!館RK9LS&b`DXaM5DXaM5p4gM5DXaM5DXydMj/k"&šk"&šA9,O-DM,DV4EjԞwfnvl͂P~VO(&Uyݼ"vdgJ#y̋E rӐvlG=7dV`yp'g#Ӱ+=dh"\e0ZӸ"K[@idUoŖ2ilGilmyJ4BMcsu"*k#P6CUG+|Z Gg9C὾k)mG5XW@0UY#!P5(Tm]GDd9@8AMHlƪj*4(j!4ױF^e/Te _KF^e}Qeơ۔u-QFF^e#5 ՜GL qDlLd!.:@Y`c#H <#!V=6(FFe8Ď)9L*FUZJVI#W*ib[%3.id&[%J*6V/~w@""q^t[ޅҘ Y 3bM[6RlӃUc7k`hH̪AEvPFYXZnl+ ,+%)S4*րhzq[K%E%[_ fCdG_Ɩ>_fCz |u0Pu0~AA>Cq0׿2K_Wgǿv+ٿ_{WxMlfz `zQ3c=ck]͛z `kz+d.Hd] wA=*dv/@P-ٽ rWi'f5q0kPmS -'z `q0Re=fPST}8@yײ[A_+d/HPV-fO[R/nг/>)F W>|B{̎б")prnvIdO=7'ai%Pay%A(ݷb*N઴'b2-:emO=?kwXjI @?c)G@Y(?tV*Pڑf/TVjh渪K_}+= a~(xay%(J|aBůJ(O9ė9ay%m 5@XJy%^dy:͜W"$C3c+drJr40W_y%P Xs^ P[sbt 7@YGE&Kd|]ڔ5hJWEI/A*'$9n 9|#{KB:[AA /1b6e8*kŜ]T)=%耍!%. Uh_vP|eVdr@%6B o.1HHYAcRvYOvrl'F9DxbK-ߓ\"<%µB(l WKdX_K[&{8ٯ j7Fb*'DFWBlo.qB sz ~tKWޫ3eN/°jjK!sEu ,HamggE9L r2PD2X^YNMdFGOzI`پVz{K(dN/,߯ ̖@1-eN/*}R%NuAy'Gzȱw8drOnμ;9PF+לNX:\7G"s~Lwʏ@n7 8FZDRP;eIq&u=If4O]M(2GH{0EmRwNI#OfܓW|)l5m6I̎*Al î_i:fܓi84sZrE)fܓw) ՌCYHFm!ZqrF8j\ܙqr(* { u3?ˏyZa*> &ݨK3L%eǛari&8 %e,0zH|yܘar `j( CYV^3LeA'9&({ z`rJa}0]+ WwimZu¨09Ȋ܇_zprLJgNYH*Ѫ&P)L&Ωkz`ryѤ{LeC(23ڗh}yB0/㔶gɡl*G&UMfN"G p5侼Ri|fʶ.0~,qFu["}h-T 3NgyR8t 6䁼rS%qf tz#' $\f\T5zj6roq@CQZ'䭟 }0A;ٷ&$=1P8v||FƧ{@rk  2gˁ09=(y o}y%a"`ىrar(-UdrWhle>&a"3c,;hfң30Pk\d8v0a )`f/ A] }Aa&3NT>Q sL-hkBn }jy{prSek3{pr(Zm3Le_{09] 9adݒf {v CЏC'z{`r':&~}sȡ ֒os̡q4Xo:Jj( ;5XoF5)Oskvs[Z!C ~"{'vY 3^lH(KUvIkB!ަ QbHЗ "4%na2LXͶzZ03Cӹ@fwc};q1#1`sa)pۺoxK09(<,+r) [ޡk[w˙; ;s|=>0-K cٕq꾾hWKͮs7ˋtiu|04[a=2"Ooɚs-WzsʒOi0s{?2VX,/;fwXNn-עn-`ΊA 2ah^ ٱ˽EZb?:Pw/C/i/:x*F'C!2t0aЁ~`y51݈R\| àN &m(oEVIk>Afުt?ﰗ Gjd-Û?RojL6fr gaΖW(EY,>s})R26 σFBS;=jmsqrG~yYz~6ay:ov}P`x],2U,6 @s\wvPłÆ6! B;{cCaB"mԷ3ҏUˇ0}6/@CL!1՛!~Xivu]J~ ?e묲@6T/*3KnЪhŸ, K'P{5U 낃wA(LSv@p쀋ws[pO)x쀿q);Zl?ooG}Gl=k=>)cve[ A9V'?)sPIOmRoI9@[]8)tP>(mw᤼P~B i^^(N E//'兢B Iy⤼Pj⤌P\Pj,EY`}I½=)s{{R?Iܓ?'n/sO^睔y;)zwR?P`/N^睔y;)zwR?I?'~/O^矔?''~/O^矔?){R/I_򿠗'A/ U*dYzBy0d"! !PEB;μZe2m5-8j‰6+Z{<)Bidȑqb:eG_7Mȴ?DJabgKZ\F^~ͻ7_~Żiw|=9_'eOlrv]Ϧ{޵juy,Yi9lW_]W7il6ܯPLʳ*L8]U'Z&^k ߓE62L_W,L/&_^M֍]gKher->|?au ;j"_07EWj*?l)"}&YAn5I gʖ/|zC"/al}H/˭/ꛗ//l9>)Q,Z^2E^||2`lĆ<|2U/><~[Sj*L"oNW`dlϫLD~>A_%ErG<7qb3qYXY5dUd-k|^sud kߴT 3)٤0_ U2,V&q o^[ puYjMCgJד*+o u΅yB6R+ ("$Vv!UWJժV'NSs'#sjNe Dmon,/hˎgaú+Ӫ1_?\&lmms-1.0.0+bzr2569/data/projects/CoolSongs/Greippi-ardudar.mmpz0000644000000000000000000002117212270600515022322 0ustar 00000000000000x=rrSp')/y@c6^lRKB\RyI^,q_ƈş׫ݪ]ZtG19O}?.ȳoW gNLC;@oËrm[\~V1FY Wa܃;V_+ÿmn&/ ;˹̱F?]u}:FPٳPs\,^#kh6Z߂&O ~vΜ tmڶFft;75:ߒ%,7<̓ 6(zWYۺg92} qm/#wk#zKVo4_5(rmcl6Lrxy0qv}ωSӻ|2!Ƀ{up[l[os^C~s]>b.?VG3{Ѳ nk&h_]pqU#:}  ܿIoa_ך.WnO0V{uZ+,n۞M$aݩyÜ;soBu/SKGm~}Y^:5y'f?֍M};p]k#o' }ϸ!|Cx zwݷj-Ҍ_[H {`f^p:Z|heu뀻{Dˡc=]Ocvshf_S kkq赭$ửPB܊/ǭFn`kn|#ğ~ӞԵ>BKK?P7(㔃b؏c>N=(8;댦S!?NAhV:MA~.~HanZkSGgyݷ 4PGMe5/C_ko:X ?7KR\ҢRk$z/Y? !렔oVUPb||~$j:Z(j ;očJ?xrsc u6@UJR!Ls}( uz}3:/s[Q~)W8b{&BJL/ׯmU][׊(j$Q*U-?-bJTtٵotȖ}$j(Wb^-I>5E(ܿ*T67' A2]F Umwi f3?Lk9 Uϣ #5+9?&%`J PMW,ͼl )UU'+|=+/<()ժ'ݏ2y.x,[J=N]y ʽzU#x%>=?Yo;ܹG,[x,oj?nK7Oм-zЪso"T}kLՊH^PT=V,6@"ԅ >ϯf--3s@7Y:-;f<ߴ,W\C3x^lV0}Xپ:W#T}5bpwUh?8h ' a(h\$l8P46gLXl!o/J'L"3Yd&dS#343CNub$]Q2n-yĀag^Pd(ϔ?DsT.\zp;E+2gw::ի <|#^k t2/:oyfϴ~̍zb΋`h?UU(S_<I*kU[٣߀|G˞{sjY#ho*[qJF]ҀxS+c^*Ą4`Mjuy^ -Qv,UO \{c]}XH]MU;g Xe޸=(5}N(3 n&(bȪ̚s(cy(˥dȻbM`LUo^ W(Яpn̦ד :a^KTi 'KJBC&.J7}n8ݠQ|59?M<˴=P:G']JMMʵ?}rDsZnk -UX؂ cyH_EEj ۋ;ǢN˱x8lcБMXTX68Mx/Cq!&d8f3%ߪ!#& 1 Wf) )J$N@i0h6 [PNRH\H , (E<$`bHS߱?t" AKX,(&UI` AI~2H$.{2)’;\’A#|)n>){%5@QE p8{؍K^>jԀs#.bGGQil E >Wt!xxJ}%H^H¼xxcGQ`#A,?8\`9@8J@iAgZ!9L9$,<;γ,w;gJ;g|O!%P):!?6O #r,'8 >EJ-Ocp/f+Cf²ac,lPt `پ9 C2H` %Mzq698gOZ-ٛr"d9OB _6zp CX,k B{p>/?Ba9x |ɲXww= \x0o3_!\nCAYH/׃Aa_'!>)xۓ^2$ZV}0߃wC M!\=!\p W+}SW}awbAX A*wE~5 2_!|S a%x^pE| G7>C؁p,~oEɂ3YpfWM'x}<VG %QD%z)'Rj@]S8B*S*"O" =bt꿓H:PH y"IT'TDM|2%T'TD%z25Y!zVy8Y!zVGuB=+D?MSB=2%Y!zVGJVg1( ѳB=2%Y!zV5gyYyw)rweFֿ*|ZxEt,DTږҒyX'"ɽG:[ P,4~c;03:(w/_*^Di'(tۜ7ҞӼԫpEwN[?Z>$dު1nkyv &^1ڒطTsW>yЉY4Tcu.+h #q/ov(u!˳*l#z(pC"M{|0]mh_$JVe_lYy~*Jxvw3՝=_7XTd`GQ#է! C-i*:CCP$hPH6oOE6Y6"O|8N-EͽK."DEc#A%"F!`,v *W FxCHw,AI,jEu(zt2<" `}M1/NKTQ,\pd,\}dƷ(|rP0رSS dƏF2I$Épa?̑H88Í8HDę ؅jBN8vJD$ p%BE=j@rd*Q!rrDI}OY/G&BiʱO_;.BGkƯO>OzkԉfI ~1.mP+a[E,$w"" ~*aRHU#LW5" ~E@l*):Z5Ϋ($v-ʃ‚-\tT"[`2qw4o= i8%(,DDY;u7B6/ g/mP~fZ$BkbJ!,Ht3d"!dH$NEa/)'*m"qDthn{!t?O0 Emp? -KON/f u8tzNg:2곌,>˨QdԿg9mZoDžjP23֖LZ4h|H 9Gx_6o!ۨdQ9O+'҉cPQIT^3Fh2C"ǒfc8\$֑ٻ lT"¨[lWXm d[)?tC:SeJY`?"<(${RS_#ZQuE[aX%zwM5J# *AI!yzcS gȣKJ" O%PcfCX lQuU_Arg>`P>-ӣ瀂Zy5zmp&x>B,Z-?/@Zwu7&8-H]a-X>սF+>ZC"JBi, $JqaSa, DX1(q7/>fioIio!%{4RȫK('l2"ډ8) >O{d )G(ޤB:T\Q=8^ˢzYTǀWeXOb=)u '`xI!S( "!qwB{E lOB# 7t(,)~d7䢳= pj=$ <ti|F1v:D2vM= ,wCt8bhQHDl PlA2JsVLM>|A)($"\<4GGbzczG shq D*0 -4A3gٌGXCg5ܿ}ٶR}K >` ~ME $D`}2;·0?=~`o{cGp0Bm[U?Yح¨l :Їc+1lUqaeOkP>}Άhjt`fB1 0?63b$}]&3c]Y3|lC~PkM`ȲFߖ<;pC?ȱS` "(@ÃSbPb='/`0tz$I"׼桷n;7ـu(^a/Յ@$ ׀l !_ ajЁ2HҎ6H>(h*񠹓%wS;\P=v ܮ]m"2HٙE Ӟm$qGRppz.XC$ áVޒCwW]xBtXt3a3iΆΦ;;f|X| a i..ٻֻf37dTjT-jTmjTjTjT-jTmjTjTjTjtp/UG?:UG?:UG?:UG?:UG?:UG?:UG?:UDŽ?&UDŽ?&UDŽ?&o7UDŽ?&UDŽ?&UDŽ?&UDŽ?&UDŽ?&UDŽ?&Udž?6Udž?6Udž?6Udž?6ݘ_x/Udž?6Udž?6Udž?6Udž?6Udž?6UDž?.UDž?.UDž?.UDž?.UDž?.ݷ=R\R\R\R\R|S|S|S|S|B Ch81gp2,%6̶uFk%oTĝ~w xFel[Hg i9A56}?/EnywxVFSr!wv@)4 X;˝]w tz1e.,X8C%F۽_.?/rJ6}W0gveq禾w @q|DϙFsӾ0G8Oy <\~}waο5?ƻ4ƚ|!ñ;s@eˆߧqױ&N۴&5=[_3w]@>s+_h}" ?i 7>&_h9 ^1++M5cjK#Np5É 1v |ٟ"lmms-1.0.0+bzr2569/data/projects/CoolSongs/Impulslogik-Zen.mmpz0000644000000000000000000010714511603573245022351 0ustar 00000000000000Nxrۺ(BOg?R9vy%NԊ,cE9$R!)'sH(P"$n4ݍ&?7KaBZOv5Y M 0[&?._C}x|?%].f6EGOlx L'7m@_6^Ke@(ބ{n.#a|/9H o22/d#3(s1 Tg |gO?.L]iP!$uGUDqy%oIFQ%@ QVzQ>pG=z)I` LnOtـ[;޿_K߿=~˼R?>$L(G *__똼] ҥ7]fKEon}f0×ۛyr]]^_=\w!Kf/z,, w7i_aYImu4+V( ɀk{G25ʞݗ8\Z\_ރ;!\j"Qs",r+~hl#7 A#y׾-eI=)jvwh-M_]}yC63eC{ 0to'ܒ?]ނCyT?GoF0=ʐ-.W#WIsr,a<>2 n21i'\E@h!vG3FQoEm勻|qD%X0(Ix!mR7&rׯ&i@jʆRH8IK6q.$& }JݖefW7\}v54U@P zϾ|qq8P(] 8LU,DK%&`i қKpF VQt7bt0.iOc _ f_IcFz'K8R3fLi-/Π_v.JVAf}f0n ]r,:Vvf;vև wDKf d~xV#XlxG:=u`~uϑ18j%]R9"z%/I24M(*m, (bW(P;BX O/+`˚)  CQl PG(u`PW52/X[AHXzY'ځLfPxS,ixJo7oK*MF2 VitP,جV)9,K3~۰R;$u@vwu{syqBFTQ[qm/_%ƳhEaGn-Ht \\*-9O9z /L)kǵ|8%ŋ,|c?37N!NEڌQ-O>x((# XpqK@u4޷/sgL;&Py=ڏOj-aݯ+ކ@ڳ[{?l}G[h9`94tS6bgY̩QYvbm6 $&hBXf?"r7bN FjDl\@3 XuDH%  ˘VΎnVLڡοV'jX|=U0VPz 7+=;qB׷~zpKqPZƦk94G_cTi t`12-# 6PSڨ9ڨG*I -E-aBup-ql=-VA4j 9ǰhY$#-a\,^0r^4+Qq.a9WGL7CLG?✚~: p<'dCbY#[[Jx[{Laooq_"-/}HvG|xOGxT?6LNV^fݦ ]}|vi>Z@c'T(M[1~b7ӫTҔ K4ŚYkOM]rrGץlŒ59KȩR0űzezX"3&1ŜC;z!w?ۇx38/-ցp_c(B7w_8a|k1ċȦdOG! A2ۮQArūA(>2ܮ7:P g,FQ?DZiVcJxC ehլ0d!ѿ3:X (d$d_ПdෆIbx|ȐuM4Gru(7ޔ."NBVs8wX0il%&.&.)&.띒&>7%MΔ4q4q/SM'%OJ-|taRGF?\]$U *`.;"a~)`4I 4Ii) R&ͧLOKt7-eR?ȴIei)z7L:Wؓ{;/F< 1bĤn>=܎+ ~̚Ɨ<Jܭpa~Dw|";&eKZyG&}az9Yx98EuL":&egL,㬓 t@EsL"9&etLLH˹{r{3ԆjwMC)>cubb= fO͝ cax70{|+; ,ח=lX]>^5!_#gbF)|qpe߃52[%A A.rO~Y7*A5[[(ބIЭs<4H;W rOkmr5Znb$G Ow%{刟,kD9^%y[q-uxr# d|ޙ"ï>EB-_&1/rT_KS,oMWt@Du1W&%h >D9?e,!*eN}^j QQsLM6oC~a4SWj,4'׿8ulvk -HY[C1/f]u6syVi~ WᛂVI7h:Egl7f`#e$Dž0mn WǛAUka)L?¶ǣo/ɵ;,^齪ɺ{gm znzɈ{!Z.ZgV)V㈼V齡Y"z~zo!v ?'/Z+T5X&NŸ(+#8PY59)&#{#ət"6\L-{"GBN-#&J' ?eSBOu]BOmMBNUy{Sy{y{Ez Fo"~(lBQ 6xCP3T|\"ow ?Cd6xKPsT|[ɭPS|]io ?Gwěڄ⟡⛶x\(*̅⟣9sgP3T|]#1'/)F}U&OW7w׳bhu0~1{dWH0 ZIS/X1a( n@Ap0<ɡ0dGãY=\w$#PwAv78N藟>`){fd% lH`]GI2^p& ю7QSt(+5!D`{GÁ=ZG zeHzx)d0^X!DzsΓ0ӈ*F?iv;9al+)~3HdTGUjƌ3knP X0Ȭ F WKEܪٮlAh,A*w,ցwW?GLv5RrJxEVJ0^Ue0h[9Jb?n|8DxV7(LMÿYRinaK%G)'\/ce)%T0z]_@R$xђUug2V18e` .4@u:P=n`Ni#oQ1IY]%5~pH{vk'oFȦ2 Zֿ -h#7qՁqP{ ٣^ԑ6)aY6#cV1y{"h lj{ V!iy(:pB6oqm46D$6 "XُU-ج2V ~Myyw}{`E'I`'Z'm1Ժh 0,9g:brjFR7,+9U<;knZvf݄MYkgYDSV鳞AHC;<>.D⟺a P؊ C;wުdԵQ kG;pF]V<*|QYx|` y'N_/n)yZ#Mcqe-E-S!1֙¨Z˨BL䔏U\k3uU:imm-ì+x ŷzN\>=^Ihd&!hxGMBV hMB4(h7.!t 'KZ%D*..&$ڄDhzmB'81}B'0_QHy8/D[5 Ի :_1F,tjhSw0y3OTx[INth|v:5ڶVbtNtrƭK41L4ӱQ4ӍP4я8f_jNBC4\>>O;x<'}𴘳~ֈV{֣tX[pܗ;aKG;|<.d>x$#ٽ9- ((((ficj`W?_}| Ī]`u_f#E;q~!!1boB:XXG<@ X?1O+Ck@-4Gru(7fup'bt+9y X̿] x& ihb)i⒴)ir)iR)i pSԦ+MIW&5)ѷDӤDa @=7z j T_syP+HBAM\L*LKT]2;-eRevZʤr봔IGvR&MKt6-eҡĞ y1ĤΏ&&}dOvuv^/Ӑg4䙵Pn=$¼Sa1)0Ew\";2 Da'IYǧ,cRq1)8븤EudggLgT:ǧ,cR1)@縤EsdgPD-.&\×ۛ^6PSm$w?iLeS3=6w'g0{=944.TOX__V{1kt{ׄX~>dݨln}xF^'wڶ~ \kb=ɑhˊ_V<ݕ#~*QxmqpǵARY`yg@S\ =o|p,QOZw:@&b/OOa ܿ\UX:mH 9\~O^g&C,2$^b\x;+ g[?{Q_5Gf:D9Fc15$~JM ?Z"j 0 L=^UҜ\]^=ڭ-P filżmv^ԅC}Et d`_%Qߘ)÷אtIIm,pK=h8޴0^SOQG7^E*mBmڞZh =UCz+mGoFȯ:z#"a ij-3OEpuzcБu~ ӈv^߾?>ǫ`R$2Wa$r瞂){*W,>p|0 f jy>z1f-C]~0j. (סB^THs%V`p p-|46n*VG~, r*{/=RPe5R)k93kʾT޼}?eM'(j8#j8a nA)ZՒ3w{xw*}c?^!W̃q}Ut:ZVdOY*R7at誔U0e4.o4Foۚ[[ G7ORom! EV>I5e\YY": 3Ӗ FwDu}\f!N0Fgk"FwVFW kxY qF/܌< )V02zgs" ?MWdmc6 ?UF>$^XzEAV/^XyXUXzaa,y՟ի VVoZ'^XYY&'^XyYjzae66a՟,y՟ V^VX'^XYYi V^Voq՟՛#*,^Xz[oV/̬^V/̬V/Q2 ?372 ?3w2 ?+WeM-SXS=g0d:q'aT \/080Y⧧h0>,m(+0"_\@aR`IK0_ l`0^` Mg؅%Kx3X%9jjOk,q={\ipp[ 5o)g']=(jEѳ+ʵhǵ笧`q|`O\W1j6*3|\5pkp#AX;qqD,*@Hp*क+HdCnTԽV Ԙ4&_Q)&-N!).齭q (Vrd&9SBj=}r|ZohL1=ͩ3Wܘh;a㑡!#iF^@=4ChT:aK2daNMRWjM94 XM7R6ctMUfldbD}3QԤ$'^4e׺Cm']u$i'ųx  gNcxV`J^Z:ݨ1Dvf`T&=&GRCgs^rs^r5NV\hJN`Rۚ4j9Y)V4(c˕.ДI.YPP4t )C> ǩӳD:Sx=īףMe="ūףVw=ū= '<|9. 7)CDg Xy.Iko;ыw{PI/P-Z.j tGOX:J{K2gAӛ5DS]pI-c_{_}͹f{R8e8aálh$MU *) Nat *OL^ߡ͠tf1Q~ղ.i=ddI>9޹Ї0?|]<'ʫm槢vDHE*/R3~in $dه$IDJ!~>3V2%%]Be%]B%]BS=?!M޺C@t"?i cSJtpΩ;NAjc#5Kxu̫~#7mgE*7VRy\Qid ިj2:CɈbĎd8( b| a38'>oCqM^jUm^=6u࿶i#>nvVtLZ!4UoETBU1j*@ HS@n m= sL.c+~߯T)>S\d";O)JigBcd ʪ섍x͒h1`C'*lf` [hHmvviK5Vqd/TmK55n[ipRMۖj:ܶTKᶥZ*-ҹm %vmwUns۝mlvgG;;*ѹ [%v;;Y5n{"KY6(/S~U_ {~Eު(UQUn[DE5mjsM-U/7k&Qln[FEWm ;*-UtVVwio6m~d~~RUKW-_l~~ՖU[Wm_M~~նUGW_u4~1B /TVFָl;L_B&njr+0墆ᖋMW)SXZW[d@˿>l0h2Gq:-NήPPOPq,(ƪ896POPyPfPTP;%72qE>$dCEcCEaCE8OJ{svPg8>)-~V|CL<g|9 M>! N|؁xlpϵc9צo3y/}>e+q.GF6r`/8_>>\~ DMQżC3lor[ PqO[0 \?vfZrBMqfJݘc !π+n21i'\E@h!vG3&/ |+(j0,_3#R/:^D)HzFǫ hm1km~u7OHLbqQ_u rspC?~Z]" ;` sk"r VL0H![9} or~y&:4 YzGyhVIT]`q58ΥO77 b2IH/qs"Gh]ph8яa.X zʞia@|Ԕ ԑp̳l(\ HMĻ-Jͮnzjhѫ0}+?np`CQ4BlĀa6^gůd ^^J- 7{@H{l\O#F(H1ZK4~1ka/Y3毤`#%Su3d͘?ZbAǖ l] z`5H~`tAͯz:vޭ.A`$ޭG8(QN*h:|w?_|sddR7.?^%PMdRyۏЧ*ٽm$ ("W P;@ O/+`˚) CɛE qց/_ _`Yxnb.#UceS0kƘ8$sh4l] q-sgL3 !tFǵs]=wح zMXQr(وgf֏)& 0S8d,4y'ftx[IN|=z~aekYۭߨ}l׷~zpmF#W;=i] Ǩ(sa(cRZGơ(Qs,Q,'U\eAZ mLQ 92SiZBNEU,ڱUGWi 92YZ\[KT X]x^;_sL"lg m,9,S=S ŢOX[+~('CwȓyO9l lGql=Ew^Lǽcx$#=}HvG;}<>Qa|0y ;r [r {r nv60vB"G9X=-l -c|ŔiU* (,-h5T,t5dLpR.;$OpաɒLbd% $?VøgnxGvXK:Y}z9Vd4\ldO.KsDNGjX2=K d])|ر{ gݱQ:$ׯܦeT9c=ٖM ?a?_Nsg]?ؒ6ClYx:qwrX6Xq"`1( jj6n8C8p~mdgh>_i]`1~bw2 yW?0JKă(k!* R ɸ r F}2| u#ȺQ :D&,Nn`٥A߯ {Zko#rݵ&9 x++GTd9^#z/ .pkē$%~)zm'2 Y~ʟ/?uM^ >g:ouې]' sD_0)lDM!YYeeI^ŸKq.woζ~h0Pk$ urǞcj"/ Ix_"j 0 L=^U|S;kXP3owa֖Z3yUP9BhX{~ *@AG} ̢- ͖l]f;i*iQ\"Ȫh}QR&+=&. JjKo=߻qvG}ΟGzMż0\MkEc}?VI4K` uǼmk /3/=`ߊ7MeCdP [&*͝q`[/1SWCL#RZ_2 ԃ+}x]?l}T0+mT7gh "& E~=uYMog<>,3yqmER8h-Wx[ut$k_~_/r/ᵅ>('ɸ md ⡱zx8 6 iM 7 vDrܶ8''pX)4NnYخv--kMîMl'itNj,Kv"Y)dY4Ul'a,KlbYЖ5զ }l"nݶȲDu YQ4csxoYv^9PXv̞L;fxg<ӎ7eϲcgƳY}Y6^s,@&?[=L~y09nǡ|"(  8ئ(LH7oRTmDA=6@cI1m%vO(ô8}P)DA*[EGİ/X6L] jÜݙʤ,vf3Ybgf~;bx"ߙk[/EW#̶a?=zig-ܲkko o2^㳗 I8/!#7a.ȳe/]ze潄^4}or@}s.owWWwfkL6O!مO/zpFfn[ |^G`kn<<خT$T({v_p^hedJ@üH9\}u9Lf?4J |kmFO%Bo]=,axoWwzly+ t~ОFq90ƛ?z#e %~ZǏ]|zuhw eH6 יl8Y>ׁRK#5M?A7?<ӈ* FV?i&v;9e֌+)3dTGUj֌I3%tlvP 0H VӍWKFٮlAh,A*F]uzPAa绫#&;?(.K+xI:Tǡ4T%~#"Jvo hG H@D@@9( NJfcP[""0(h>@  V)2R5^< v(hɨ!CCsx?% } qx((# XpqK@u4޷OKYӍ9H#oQqj-aݯ+ކ@ڳ[{{tmב6)w2R 9l*$K՞c"n,aw٥فjc*d0/=/AN?-ܠؼFcU5JNBH%VG#s G<6_^]|8Xo@Y2%Iem ;JLK)D2bNdlТn)LvM@nˆU"W)eVPy%J#ZUfUOx.gW-Q'5pXtέg96CЉwzdTgE] FB'*aD%U'V%'S CNID)r¢֋Eg#Ja0J9RW.'.}ҍ>ٛ(7)?#J~d#J~@4l5h`~mh3C?rM:a{`FM]XYףwF]V i{HV}}̮h܆φ4͖D_cTU2t`u1 )-#j}PSڨ9VKۨGVL*I 6ëXT4F-!**~#xVx^+Xث%*W,㪮mt+|9Z lcS3Q6Q SE`Yϩcm_gK=GUfR?Ɠy!O;|x$#ٝ}h 0emo=eOz;Srէb^ys$#fE*+:X~a Ld<=97|rupǢ\:mH 9\~O^g&C,2$^b\x;凂 g[?{Q_5Gf:D9Fc15$~JM /5_h*Xfi>8mΡf.¬-grRhvtT (E[:+!밖9d_?P-_9O *iQ\=v l'q冷֫ڃ{^w|wO}"[;LeԴV?wCi[[MD4 p͋VXGe>"fxImXoxQ f30 ްsd hdnwMD\CR][hĽ#țv9ܴ#o2f~ګu,+ C^SY$o :71{e|2,~y]cY&m7dGS*YꎷXio,%o*,3^gY|Le{c,%,~2,>"__Z fy\7dTStE3.A;nUqb-!6NWMwvH9t3ӞI-R=HI?HI*E']N&H iFJ:TN2RB6V?H 5ޙE:l#Q5!Q5tDMHԄDM"%r) X$jB&$jBǍti)F:&$jB&$jB'鈚 iEJrG ЉEJ&$jB&tH2S5!Q5!Q:HGԄDMHԄN+Rrd) X$jB&$jBGtT闈tD#"HtD3y7^ȯ:QF:,xYG,~8IwȈԁ#qJDGb<)э(ȏD?bɊ($EK`KX4GRb:яX-9ȟD?bSm:яX%iȣD?b+d n\At$KNя(%$ ~QTe3~B1A#!K&я8(MqlG >s-DGȪ%YL#Qdݔ;`lVIH`j9"QtI,ѕ( :,+f | %_`DQKJKt% 6]66 ِMt%R6ѓ(bH(:%:J5nDрA^&E4 Ep6э(J36э(%E>G.aQtsTKt#n:reٍ-*F ْP<݈\ډ1A;Cv#iH(vnİuDIvؐ | HLt ILSzE&ӖA싀ɾtɮGd; KBtD` Q,x Sl~d)dbkTdbZ-YLv-\KL-C(bX%}d莄T%;Ǵ@v.mIDfcX*UDRnC2*`QeS``T$H)MHJL(W0z6(ɨ*- U'_x#:#WPTŖ `TU$D)YHuQUː `Tx#&:USt*SDj&  `*x#At0Uz:UD]A1m` @A)5a S!Ed'c'SU\ uMqTUd4-U|d&[N$v)&hкbIt2=It2 b\-]PktTk:bT"k-۩Et2 vJE-ݪERQ\JEmri5NFWAz_M>YAt25NF>XMt2KD' ЮT&:ҌD'`T!:P)N r:D'cFRb\$!:C:D'c0n :=]At2bQ %Nl20٭Ύd1`Q] :RAt2`㓫4F$`G+Ue1ǪTfIɘQKTdL$UBt2k x 1ṗSAt2;b|:dvMEJEe׏7UmU3")j*+= %)Rx0 rMEU9Q~8]A>(4PUlOtŪFt25ՈN2@rX fMCFt25ՈNƲJUd@T+΃X8AY+6NƖAQNt2 tj*¦ĆNt26j* s.TT':G:ɀHNt2 RJEuk@ tb :qju$ :GD'Pk*j 8H=JD'h T$:G7D'tBbzMըIt2 +6NƱ@UlOmv ci䢯 "+ˎ꭪E C\8E5@d Lk :}a M @ y8"+&WRj6TIQmM>UѲ\ !*)T OHTI1` &*)+uȧJ$e|ؚV!*)K)Cv0 eUaM 4N.0RPM&HΚLv1 b@d1w+7lyR:bi.oie9Nv)H=⧧zvYQV (W?3Kk`өz;?W:&2H8i V6, ^$Od['X`Ha-p R9d D=@f~:oL}mZyy`{7[%AA]-wY~zW?$_>jNm⤐s<4H~x/?..f~Z{,}/讁&$9gCKDMh l.pqQ9 4wa֖Z3yUP9whֳNxT (f \ Yѡ:G+r#wa(%/M8#E :^#i;"TlU FG睩6leȰ֫RtЍt1ޭcӕS02pL?_S "kCnT {cT 2ZtS[}X_8_uz!,5\~TZBVaZ=yϨ#N\GBQ$pܷրK'BZܾmn7fRЛv!ƔsZ33&ў`)/0mnW9bQIY+ibyIH3/)O'a+B'duaûO,kiz>-*ݧ6` Oj'W{P?~GV?UEP?k0c/ћRH`[_*Q@BԮBN8{ѽR F3З,s"B;8易 '$e[+ p1'a5'mɑ%9~pU|dX KtשSur{^]>|Ojuyzny<_ޝ?]}͛ga] jyZM/Yn!,?܉ǖSwj7`)@ :K(blj[*t;:z$t %^ B.[]HH4ىF'WUTiPC1Tkt CNsAŶ u2oPҰANV٠^';]mePBL[kj][kkAѢZW-ueѢ^WL9]YTV[8TlPCծvәb~U0َfWV*@M@ ص7[DͶUz\uuj;u~Umkաj;mU=*vmGŮmGnL=*vcGn#Ql-eP⴩v/ex_w+mwP[o0CWuфZ5wH¡ z޶~#/zEpwAuo}}U ƛ{[}Vs_P6ըsoق*?(H: j[u^>U^?Uޗu?wEiP W/jܿa*ͱTyPC}EW5ZN<Qdטދ J^@V{Yw V/WĜ✵9zWEPA_ֻYֻ[ z{*뽽:V{X5ڱ;Tz8t+TJ/ gPUV*=zxQ[_4=omѽ}_[{ld偗b*|3f j@8n*i#洉p{)Wわs8:ۚ od1w ) Q=v7]'8s&ͮ^ SM\Ϲ4q.itM㦫Oc&d@Ω<'xNc7Y53Wcru!cZ2:`\]J3 [_͹sMXs򜂨 +J *eP֜B'pqpkf4:979Ύu.[s*#+ O Ofw9zInd,Xuyurj jo)`'ksα Sd^@|Qf]7dI(('$1ł)>H)>I('iy$o3d⣳('>S|1'ǀI>I|LI`Ow | $CwO|qIRcP}%$q1G`O}LIC,d1ICvN)'I|j,CP-fg( lfw"e[ q|0nƱM8)WCe=vO2D;bQ9>Ɛ,cN1p5c =f Gi|t ]!Vpbs˒qL_U9VqXW94c7 X~ cv{XGu{Xǵn btD1>0)l!s|0ink Jrp3HrcHO#HH$0>4sXUf³fAXc5AXCD=-E[JX5~XJ(!3D(x8 P(c(xGA 2#C=+U.p f<_$q|(`P"`11+̡s#ҦXsB&@$DToEj<Ԭ:57?kHg,x*D5P*6>Q>QO@ qN3$!r1hA@!G"5`dB|PG>2T?2T;2Cub#1IhbBOnϼ+%aX~H** ֽ(P`KPD(7 )l,E*3q"")̶SԟƛBLjMY(Ԙƞ=??/Ic></j/r{x̵!8ulbXȻX,\\,s1k cK9s1yt)&.VEYpȅCi4Capl]Nk$ოt;c=F#19z^C+6XZ8CuL%M( PV=CZi[DC(2ZBVD8\oP& PD"+ C}*|2qn2CȔy0) z.de }q-i#ȼ:>vθp8S>-At}rB\>'}4zHd8re"3YWF}_v0ɜΡTC]9p(inB8p(i'~{LΡHCHg<3 JߌzR{+'I>t;7!w`m'#+Vs}zݝ@!uw zY; +98-UЪPݻ]t+VEurv'pnsq렫\l~U .wLr[gCJgx@t\Ά9M'hۀ/h8;_:M ـ&#mpK :QWZ%8 Ԁ#5j#dMa O!H#QpL@/ @g t~p x{\tO.y$bDRˣ_:yØ'1xڤ<$rRvHg:/LOsWt5p$K8 DAg/7@'gHw'ƛÈ`u v-ƛýp!"\l(nmcY8~ am&0ΤJC8sfR.hPz1&X0F K8_Re1/y`( P rYۭ1J9 QpbOʡ0Ci80Ge!ʡ8d0DM0 CY8uچ(FcS /ba)%XL r,&G9|)(7qCPar( b\!KðP 1 2 0C0a,BR BR 0C01,&L,&L,&p ;I;:pkuLDA8n /d7{aXȗ B_u].܃e1bd˨k/lq`! v %%{VB8vCa;َv\y!듽l]B_Śaqpf {epv,lf?sϖyv=m}gO[RکI =Ϩ#;$#;ڧ"[s#PAp' EA xQUDg>т)L@ݎPu΅&a,Z9=i~b@*EO@|ç- ]sy{9;jh1Y$:Wxd^aG '#p7DG̲&*8w_zn3 nJhtca7봒qЎ,({xxl' Xdya b8/(waFz`X:d_;C~] 0p(_c¡Ҟwdh_g+|`gd(od*vNVLqEi;#C/#X?؆ad(<2ҍ*%gD[Z17 :T~/q>Cw8yo56&V;pQRCNm <'L0("s"Np( Nh(9ڡ "O< jE8eiDACB #ErSAP`cvAPcNC'q&C'Ny&y}-u6|6b恭a}xAmت F RymtE kt]D.D)Aɠ6D _1*"@xzpڀ$hdb'iZ|l%-cjjSy9b=XX*6 cOW屇TADzx*Xm F8jO5,3FEfX. וC^W`Qҹx]9+Khue93 ZEM崼\PpNZPN@9̈bvD;lA9:;iԷN{CU(< rib& R.Ʃ)'%5I BB:H-3Hw7B{)z RyS$ N6gSvYzt T9gEIУS&ZDVjZ" 9Er$dB+r v 1B>F(x;9BVnBwkzΘC܃p0r.m]mOF@k66%8E[hohZkm lJZ+hP*Z@kYU Zk[ԪS!UXюШqJGV ƪum[9 ,m)g뛓ӷ?p0aX;ÿz|zyޮpWMw}W8ۯ6Aʾ?2ݻ_9Y_ 'W˫n?^^\Jt.d>^~lӫNn)/?4O|u~ m](sт ]8Ò+ێ".QgM>tլɹ.qrϓ]Ͷ2XsvOs .?٘frX̣%8=r)7W>\v剆߫'aaUVAU*6nE=TCF퇉*6նV[Oب\wv:Ͳ _vmv{_Pl[󼭄XmVIMbh]3[[jlͿUQ?Y?UY]O,\|,~_by~~v`Oځ5]v4 Z|/'/9(A;hWN}4{z;ƶ]jOꙁg_ڳ_Ӫwf]]627\:]*h|4G=xOyǏ=TSe~\/N{;ތ㗹l<8D?Byk~?5ή1\5{>۾{~ZT4i*ڿj*ڿj*ڿj*ڿj*ڿj*ڿj*ڿj*ڿj*ڿj*ڿj.ڿz.ڿz.ڿz.ڿz.ڿz.ڿz.ڿz.ڿz.ڿz.ڿz)ڿf)ڿf)ڿf)ڿf)ڿf)ڿf)ڿf)ڿf)ڿf)ڿf-ڿv-ڿv-ڿv-ڿv-ڿv-ڿv-ڿv-ڿv-ڿv-ڿvo^ڿyjE7߫|o^m~q~m*'oZ⫍b~ϷyuʋTx^le]N.6ײ&Bu E'/_W&?^g_^v{+4qs+΋T\ŗ?g}/ŷ_|}ۯ?/W|rl~z|͛o}^/Λfu>z~5g_>v=Y9?~_>v˫W~'k>X|_|srX _9~óyU7f6ͧ=V \ܼY]ή?|1j=W7wWw×WoWgt؏4nֶ_~Oίnrszv\\^|Zn+~>Wv}˫o/N޽>y~~,5)9_].ί}3M Ǚ]߮,٩ۻ_ |3&u憎@K@t>uĞj5TBN=[3пhr1t"Azrt/Zk :dUrC`~:fkxђ)iğPZv])N'+'Vd*{ta,Kx4k~PMe}oQF~ ؐ-Α^jfO vee;ؗi0x=4 iCMGQ6|s<L[3<,Y.I2ELuxgb3lEGf2't$׋GęWݷ|i?f#4~Ù, Mt*Sg:UIJ'YNMv$sa fHHgg *W (b|`v>XnP ӔȐ!JW|^Q7/_ss>dmlH"jKފf:F/yL6;6 {d2'\HY5"=ZP>fr&lTgk[8xlo-ڱxή<&BjVz18>*; DY,$ wIGHqf{v4DmM*?baFf9& _ PQ:uW:*Ny"ݗG>i{f™YfR`@e)͔ %G i En#5e+ 5AW4<_ݲ҄1ӑnqtr 9:9s'h1wnǷI4c*/Rg:n^X =Q)Al @\@$ T2KbrqLr\ߗQ\ ' dcd* +"Ⱦ/zhm;³#JL[9YaR9',q'(VkOo 4jΙ5RS.;K8uggQl8|kٙW^ 5H˲_7-㜝QKnvORxCMɟLDLgF[k[kMH;',ٮ; 9}'mQ<GǦlRXxq"_p`M;a]TKTS\{ HGeO@\Ĕ,"\hqosٻ]l>񫲸=JުB8Qsv-lla^ZDAvR5leö[ت,w6[NѓwmŠ8ɤKuNs:0)7\1:v813E]NxY^;Jv(bs" s)J=f .Yv՝gr(̔=]V٨b~u[?jURI[@|Cbo,CŻ)nm󟆴rBUi{)-x72eDOɄ: ğ0"W,I}Q`WNؾu3Ҍ2B?B20n=&D-%l{.,)8 ޗ]^;W }Pf>aٸz_ }PzG*'PB]w'5((BXÎsө@ N4hNfm2 \ :u )u9$v:YnΥ###.#>#N#^ 8~:JW߽o!Ho!Ho!Ho!H6f_.\5ݘ}˜ĺI;y&k(t{d<)f70k1 2cFS `$[RZ\.˻5bq;x!Sy@֚uC1kA.ySeR*:ڱb>4|^JQ:L/Ҽ:%CWdH i^͢?dyV=ړ^_zbbOaBWdyG#pib3|_VIVCJ0=NZYְTv7td||9ەab-iY K#0Uo0GCBg >H6PxiǐO ㄊS]vx]8iwvtA >'gHcƪC9᧔u,%?'FG}%6XAc]nC-yc&gھ o9݃F?9GMi1}˝cu$z nj4 eNK%YvY=e^40_K'O|R /A9uG_S~n9_oT~N9rEMo);"E_%{HIˆy3KHK4PϢ Y"a>^$gY0!0_fD1)j"cj@0!DJfqoT3xY0000S ffffA_ L03D 0000S`P6_ f6<~0Zi}zP]%`F631p#?+, k؏D2ܭX?6,m6iAI%+mo|!'-^_;Li&4DNCԣ܍fy!C0Ϥ0|Y.<:vr;A`Ym;A(e4pm 2ws nO\r@*Qf( (((S% 2222̨SN@@@@>uUeeee1zgL2 1 sq<@. L(e fff*vT3U}89ܾR+ |}=ܾR.v+yq~,G&8q$̭V+(1Jc' *@mGP&;@=%Wr"ScQ܍b `fH;s 8HC#MbO~ k2^*l9i!m0~UD[<hIrߴlO(i-;aa+wi=XPt@`"Kx4k~PMeeXHё[:G_ؐH۠R̍6{rLc,[~2씘xf\$-]IJ'Y=OXNz$wa gHHg *W (b3`őD>*;ȉEY,$ w=ՠ&4#hHyT0xe N==hu P>8UWɿ!v_N- WfeIy<4y9>!v`m&l0Hݙc[3b\Y}"f:2R-n1Za>X'tM6κ6_]0gOaB벊/*pyH pN!* b۽n-HM&iP/ID4 N^וe•^By@9 l̟\]VE]d˕S})854CkQTe2ыwq~"*Xs%xzso8FCxϕ5H3.e"YO.Inl4~7O2㢉Yw K+$f 'f8gԒ;'/e}v2I!y?ob쒡H<okrPFu[b`\݆? OkBl㚢qMAIom #MR︦X)|wTS>[b?)V u(j'~kSLG5qbQM!Iom #MR都X)|.ńOk'~kSLkSLkSLkSLkSL5%'~kSLu@RLﰦ Vom #] #M9aM;Ú#'~kSLkZִ>;)>;)>;)>; OjJ&(f1QM1QM1QM1Qez1Yom #] #] #] #] #] #] #] #M M"!k* M"k* M"k* M"k* M"k* M"k* M"ak* M"Ak* M"!k* M"k* M"k* M n1/g9 \\](<ضjP}d&9}{!1h om)SCb>9HKZڴsE4A>E={jQEx1) #Zvjex*BfS],}Weqyu-lmДVS4xoia[\L6 n"ʪik뾩mGT [YmWa-lsl;JZ'>>"ݨ;ZqIaQ-}`Rnb&Cuڛ81<*z%-uʭ 9(v%OxW@nˆb)+qY;(OryDgq8̳yw ӻ>m~g=.m@-,x4<@.`50I&6W5^_-})ӻl9wYjYP-yim[nϧڞ5,_ħikrEъϔsY+[ n׻f˿u`JՐtЉ/ԑ[&CUeI.{rG3m`s̳=`*4ӎf Ft>Q|A/9tCr'{\xy*5ʅwy*L3JFsmYPA-ϰl@8i\jo~"^;rzjok{PMw {k|B܌^k^.&Pc^B#U{hC\vWFq&^>3JX[F8{"Sus[Nm)E:E'8|Q/tgZ$ ;U1i_wnf﫥r0g' tda3tdc3tde3tdg3tdi3tdk3tddk3m1("Mv Q-Ě{dcicjDׯ%#WM78U7ٷIgoٱ}/7}?OGYs Z̬9 feєɖnq}=KC;6OLYZk}wr]pA2sd<ؗ<ƞ;SSժŨTK2to#B>JPAN1<,`g*M8<)]O58v0'%wl>M7otQY@d1(ѮCEÌ0 +6;Lڷӻ1!?0Ӥ6LZQL"J5W2iK*e pUʤԪI+U)VR&U@"jREPBkDEQKZ:6o ;sq|uL8fI޳*T+U]V2[dVeZɬrkY쪕zWdj%U$bbV~=c>bXtHv?Y.JY#~ϟGL;xVV<5qya4~ɐ)Ҽ:%CWhHj!<ȳ25LYt;AUdȳ yV!ϪW4Y5y֛ItBSdHt N!ѩW4$:5 Gq$s93[^-9{NmwJt7ɸT'8s-3~3jst'=>*#-o8HbMu']KuX=' %7";Kk 7xEkEld:@ yDe;]ёeo Kl'xNGfwC.]&f|ґveۀi}嚪 |#z!ųf$ocz(b 4Dc'P†qB۩.b;.];mc; B XO1c١xRWSʺGÍBou Uı[C7!ʖa|ıM3mÿלvxZa`Nȟ#&[4ҁ{α׎ Zwn_=c]WhB' yj?tCr= AuyPzO.bX%n A'C, `]EaH,x*jlmXHlslD6&1Ll~Yr'ѷnhZA{Ck%$5ϋ5{_tS[Xa[h˭a#o7x%9!_UWS[ S jݪR+q5.vϿMgnz3[-vZ=8Gj>+6 s/2x(bxh*;(4Kq_p*hB$1{Bкd:XFy eROڹ4_r%G=k 25+(m/3RY4dr'V٣ Ed&ҹGC6TVyEqR :H !%APh';ƲeyN)`{hA³(2  ; %۽) :ڣmx$fxX\NdP۫RRfjM#拂s dtR?9*5ݼ/O1YqwOZ2, Mt*Sg:UIJ'YNMv$sa fHHgg *W (b = Ԣ?TF4 ?ap)|F~=_ lH"jK^O3H ܡ1\H%Q4vm_{H3r&..gOn3}z2)be8|pmKqiE4w!G/ 5 sףਞД V ^0N+i ji*|cϞb V"< VD -56m cS]͚%O,/(4sEϑP愗=mGT [Ŷ[ت,w6[$E>"ݨ|1(FN2)S@*݉ȞIio^#1ÙF6)z,#)2F%(Tr#6;=W(04cfp\El']yG!W'LqeepʛL~,W5*I]%e$5O9$V"0Ԝ$mnL\IV'EL|t=ekX<$ԊRXfOsY]`Jn3uҌ2jBq鏆ѤB{n%ByYa*4gV{ng(%zX!N|Zg'(|OA-ޛ@꽢^?-r/{Tͮ ^(r3zroT{49PMd嫽13(Bʽ ʽPR˽þ 3{)e>*"8lL(ZrLvg1`\E%6S8gfL L2>0'%f>M7otQY@OɛYh뿢aFNJrᄕI&mfF &ȤUʤڪI+U)̮R&m]LBJp2iK*eRCT*5RE:~BkDEQzrZ:6o ;sq|L8fI޳*T+U]V2Y\Yت*W+UyV2^dVZɬryH z(}P1NE׌dXt+9y ϴme_)wG&H i^!ͫS2y4f2̓<+STEYKH6PxiǐO ㄊS]vx]8iwvtA >'gHcƪC9᧔u,%?'FG}%6XAc]nC-ֱM+mÿwvxZa`Nȟ#&[4ҁ{α׎ Z__=c]WhB' yj?tCr=-/eR0Ϡ),2~#7nzNFB=~3jXdzmz^[luGRkrz3ߩӫ}bʋ%!CKCs8J?sB@AUw%Gɐ튌_/ib@TB@B@!_h3Oh3k b@_5bt Wiiiii4@dI H"!,7:r$uD K$HRI @@@. \6A0v{$AW6L J&R;qy'䝐wB y'䝐wB y'g;zP_DO^,歰`#,aQgC~<á6P P P P 9AmjsP.qOHdJ<;aMU%m#~ڒT>u{||WAnj[?FoϮvV0mO%\@+u..geB+س8h;O e4/a bOj=bɆm}rУA>\/u&F|G8I zZhhVV͌&W󯋻)or;̖;>~Bl+܋ ,ں9J< l*rGIb,964?}uAt~hʤsh}ZJr"ScQ܍b _pgix[,uϸ~wJ{${夽LuAl-O#Z"@7-L_aa+wi=Xyg9mצʰ^oQ<G ؐH A)s͞iW 榀I &,8(xhV>*n(h㑨f4'.I2ELuxgb3lE! Dkճ~rTLckлy5_}o џc6~%}Q0`\f_֟-e;.E䈊<{eܵ괾c-\x>+9&!*ݕʲob|_J2$֤ )A@ǙI>rv֖Rz`w~+|jQxMS,Cj~ Q $R3|O.NdE7Wo_4I._&H18| \|"6;6 |d`_N;R9zMc&gFuehBlzqK}ƱX gVz1>*;۰hB: 9]O5 1qfv4g& Ι  $V:B$M6q@<] 1dJ4<9LZND+Rˈ4ُYS`Fqko 4jΙ5T3. _1C|M)C' h_D;; ~1/=&X9Na?W3z> L2KeO*QE4wG^Wj<<GlGrrJcuuvƉ|e5uQ-MPMSlW3x"j[G<<qSp%~e|^v˃Y_e?hQV]QVO6++6 0]8 s‹T6q$jJgדpEvmqIUI"+FۉAqIaQߎ t`RdFL7ڑrs@#;UwBJd' XF%;E='&\mH>}ʆc)+qW,T]yI!Wg43eEHߧw7enEuHrI㐡r)Aʟ'$%)VV*9g3eԐB?(BRd 푕[`MÒgOV9h;(qq91mNԯS: Ӱ:X&xޅ?pة\ușԡ,Fs.6sȆfȆfȆfȆfȆfȆf8z:߀9Q-D---11]咑߷IOJD6ud>>9qMljbB/FrTEjDJ{+W)A}R\F=rW'ea*/OTW;PSJ\.Rau,l:m~VLG p[xBVP"x҄E=1Qt>FT/̪sQ!`$Q.' Z9KJ*FcsQ`{0kFSTJ\̗wk#AuAT;fxj䙋g;W*XhǺ##P={*G1vQrr=<,`cj yFEqrL O͘ƺS:7o=sHl&9w{fa`QAꙘ%\>M7otQY@OY($ +6;L_i VJ3LZQLJJe2i*eʏUʤ-3I[FV)NR&u!X@"JQ~V*F4~9YT5)}e cְ?xɗ[So=kɬKYՅj%*Jf=V2IfY,*OW+UV2\1"1lU,pb5#le(+7i/<+^xMpi} ͫ_2yuJ4Nɐ+ҼE4L SyNg/:%CUdȳ yV͢?df/:%CSdHt N͢?HÑi4DWy^vy۝2iP}6[Sb'`%8s講wAwHnejl=:T5NK?{(F֤iwfMsGiήFC6熨W9'~ e/`ÎGJ$1v$zI e^'.2==s'RG==/{OO>œ^_zbbOa9G&Zy *N4WIV|\3zB^z]e;]ёeo Kl'xNGfwC^$2L# TӖbiu~^H,u:ئ p7X/3 TaPvkxq'eT8y|:U}:=)3/0z<:Ҟ ́ؑP0!t@4X Ӄ#/@>ANs@D8;\9Oɾ33y/jsr9^xz/t|Ͽsuso妍obҟmr>>w?󟳧zmo/Yk_tz5mOۧt/nU9|ڤz[|i_ml#~?arn-~ޭFek:W`?u5à>{;Dt;l?{$].wB_Wu8gF{@7 #_C2߶e{|:~hޝm^0ߥphs=2uSq>Hf4{$wzw_[;ְTvp#3yR01㋖4"kDTz{{Nu;8~`4؝1f$rc{2aR0>-l'Խ%6E^y;)E}b ഓ;⤽Gi5VG*z,cƪC=#X:\?{d1(9)0:+V7ZJ5tcg;i9i=xF{GdښtqhQ-00F'Om-B=t|rkG-x!cIV w^ i~A=8I;fׁB0 ˷$hϹaeIEck9]ő9Y9Q vl5/"5($d1ZƣPpQ٠誐خԲ\B:Z%W,#r- Y6go{8  Ns'"DOFWz) ؉Ђ) eQ,h2f/< !J|l,,,,XYp\m}J?\}>,5!jBԄ QS=8RAԄ Q&DM5QN Q&DM5!jrF~|(M4!hBЄ A44!hBЄ A&ͬh/DHl;pi@W9ԗD"&86}NjNE"Ի罛\B{3+~챣hǂǂ6c(;ԗq#0\Cmc.g"w-6i1{_ߛ\8/;8+k93;Yߞ ` ` ` `n|`y7XXXX[<;t,,,,/}pԟ?o#>~E狥?O_ A'C'o%&Ymת!㩄uce =~AK^2Ll~Yr'+ 5+ 5VACVXXS])xhF_n  pINmsBGCZoTJ\Ϳ.n˫żor;̖t :G>Gj>+6 s/2x(bxh*;(4Kq_p*W/X*ri' *@mGP&;@=%Wr"ScQ܍b `fH;s 8HC#MbO~ k2^*l9i!m0~UD[<hIrߴlO(i-;aa+wi=XPt8|Kx4k~PMeeX䕰oQF~U :H:1%APh';ƲeY;N)`{ha³(2  ; %۽) :ڣmx$*|׮$j"T<³TZHw! Dkճ~rTLckлy5_}͗ џc6FF4>+ncJL%'QD6 )Z",a )\!XCj9aE,?g=r"ZҔǐqHW9' :/_s2p>8vI^_-}KiBa65wP&dI4d3&ηYko#ؙ.Qx-Ƅ/Ldlm/\WY;cϳvG„$\O/Geg9A'd ƣsăw 86rb`G>ӿg8^ |)@ݏVwc*_'}9w|䓶c&|O&d&4Ny9>!`m&دl0Hݙ狃[3b\Y}"f:2R-n1ja>Z'tM6N6_]0iB+Nlq4>JpNa bn2- HMJ&iP./ HM^2ו e• ~- H̺Zdz#퓯W׸UT^ rT_ N MvgG Q)舁GTJ :y-<&(c͕v5ᔆR(2ٰTz֓ˤg=Tz6~,.gb^zqĬ;t>iH18KZ9; ~1/=X9Na?W3z> >/"0ַ ׶)vNXD]qwrOPIyx=yM9`P::lD2vº&§>)<`-#)OY`E2`1>V/;A߬YįC3WP(y DEʷ4qW83ِ-̅1'Mn]Lp$jJհEveV=f٪u2>Hq7*V JxO2)R<*܉ȞIኙio^#f;-f^1Ki@Y&ƫ`P1X'\m@|ʆb)+q+tux\<#:3eEWa2*o1}zw_]VďZ$)weP.<؀[h kPsnEّ͸mÐ6W*YhIlJu ͮLD3QS1u#N#^ 8~:Jܽo!Ho!Ho!Ho!H6f_.\5ݘN}˜:Fd Ef` Ƶ' ^X6YcGM3Q):W|Rzx~)Rt_Sk锿ʯ_'v*:ɢ~WN~WN~WN ;~'7 n@6 n@5z ^@5&mes<,Z;OQLG)>*H)|T E wYc|^JQ:z'(yJُ9k<,`]6V i$aw){|1_ ]xjoLԁy)3Db3y'bfƞ`},aG^ZK̒{h>M7otQY@OI:Y,-$ +6;L}D/ҥi!I!I+HU)JW2i˫*eOUʤ-I[U)RD= } ,kThhtrv:jSf]Xa'./),{"z=z9M?(zimOe)_0Z :@J tZhB&aΐ_@ Y=:0b?HEo71HKE2Xb%&dо<:mhP旞agI# Jӈ$ʙ+ ZZ~2%:"F"O;"iE0{ frpppp Ս $3CΤ=]g2L C~[3pj-S<©,GˎvEp:={p*CNe/2~ip.'s.Bv"{W8=/D{8=DHzԅgHygH^!GHcly.PtcSaHG[=77gqTlg |x `Y&$y<p'" @@@@.ڽFt#{8i]1 JM'J6XoorrkH~$3çEDŃֽbW4ަ A'C6{kհ eO%\@+,.ge@+س8h;Oa4E-a bOj=bɆm}rУA>\/u&F|'H{\u5(I"ãO=?h]P+=چ2'dߵvtu5wcCix[,uϸ6aCߋ_%ٛ-'/e5, ~;|bN6. GC6TVEn|z}tw2uiubJϔfO v Eᬹ)`{h1³(2 5 ; &۽) :ڣmx$*>Mi j{b\#*oqV4>indJL&2i-N'J~UF2$ Ӆ|c @w` ~K|jQKS#CjJ.좩|pqbٜ HBʫ^H(ϗs-g"is =N {Ka!mfOnKn,"W0_$1:^>4|3vA9Y%G7ɝ\"X%0k2Pzn-<_G )ɏgӖq -'A l.$\c[!'+ʊ3GlmД.0%G-!GmD} S|^(W|L9iTʑyvń7>EӲ;JY%ֆ\ꎱbQy"^jq(3D1 9ZR9dWB>0DŖrpV<+`GLvS4)̒1ᘕ2ajU]y#{eyxDX:70C,ir.ђNjfa>{y^VRڽW%۽eҼ͑Nft~ɵr-!VSXbU==UNBE*o*ѥ^?B0KqEn\pmr?)|^_-N5~Y? R=|#mB^-}{NtF"5"=8 Hq͍Ț+u"v*6Oc\v> Z$NK\v߸& aΘ.Y2ă-2zD@QHxj͈mdEd_WKT<2 /L[tRRKը̅I_K}ߌ\igf}꓉esɑEPbjuaͥAkVܓ^svIj1b6YY[?t\o+zzw_.o>VdiĖ &LH9qDwSy}NgU8d2ȮQ]𺀢PhGcቌJNN  HAቴ*8ˌ+ׇ6F8pHp`pꚖ%dpZr]טR4fVHqQI'\Urw(>-տIb1ىM٨8K^뀳t ч3W^<k.,ΤvaYE!iAP >nlX2L3}z2@8:g dԀyj#949 5959 6Ɍ62.~ ˆ2YixV[t I݂jozjȨV%E9#[S5%6K ~, Yĵ}]@OvCa 3MlD#9k޻6F$W;MTO3XמmA:嬨 %nk3JIif4K͈6͔mQL%I D*(=!|l]RW)ﱿh ۢ-QmH SשׁLR*aeltH`['Cɓ7Ik'o&OM6y[ k'oMVF$.05bwU o*&UB/sت9k:\*eM gIE r-Y2.grkE[vrmĵY.gѦYˑE1Uˬ_/ Zf8_|y7VFmVїa[[S,ynB3<0O-kyYK8T qzΈTrF3,g)f.qtsF3e@G1wt$AǨn/gUw4cz:QZLY vAksZϏ0Z|Z_,U o%M^>VhKLmsi7}28=Y1*OvCgtd>ۆ XB ֧@ 6i[;.{5ocUDg6wVMf{^+k/ݷ~D`xzC\x[z+;f,7_{ZpEܧN$Kǂw MzxM8,TgvquQ>{U ?V uvNq]B z~@0:`8/? G:J7xn;AnK=Ҹ^+gB ˛lSgrш?<{]]]/J;zSD^q*]TPqț1%M^3]t]RA1ĮvݲGz$Q-ZT6XكPj6ꎏEpH#*]Ea`V8Q쑎2e{u*GúXc6Բu-@n]1UևD#b룚s` ~ʔm8@R@e*ueOpF#<Š =\bUA;VǙFKr28 '% EWOV@X )̽S>4Co5Hy yn00-#ͺHg;siTRvO[}ǎ!Ea6KߚKbyyćY'܏>yr؇jqye7ֿ7md_XBɱwk*I^|v2_%?~qwFˋ>ֳtc`;d⛩T1d7>-8[r%ѻR3;yΌ֞v+;hZ\xSiˋ4ҙ ̨o**~|wp{sq]3-@츋 4=|vwTyȾ~ck:dM /M@t7qvc?|^yS"{/{VqYlu uLBi}b%F/"(6bHR~/:&C)w{YR:dDc^&Ւvoɜ-l0>q ,V?oggS~l?_߯;ggOΗUtѵ+& 6EW*;m6$.og4 ŚS5Yzv۟Q8/|1y 'c߾__=jSˍեӪ것P96[w4By0T"!|gۮ9f\gftJ]9]zy}{Ye^NX e1@dn-սE*1ى.:l؋quQYyEe֙cw77=iL$Αُj 0Yޝw 48Bsu\;M$o5䴍OϵY~zϫuvR.`r++*聽2V=W&pD,|b %zT,CXI_Q,å(UWK+%|5yUrA*^\PFcA@͈A@ ѠPdxo(©xoGv{Er"~0Q#4Fj{Er"^\xH>4ޫ {Ur"N4O^͸/}ze7h%5rA}_ E4#߫x^Mm4{E}Ex?{UrA"5߫!߫ 5~{5q6>\lp!4ޏ#4ޫ G{5~j GxH_x^Ѻ̷G`|O^\`|(N}^ͼc ޯUE>x?RWx?Vtjich+/hchh_h 4Ojj 4ޏ4ޏx=GQQ/zxVփF8V`'8JWUi |,S2Q7 NRȯĂNUխsmi hg*Zu鶊`ηU4 E [E3p rhB*Z{I75p֭ vhUNEp2G~UE~p2Q%xG*J<W`'zNU Up jl +OܦNU13qG;Vd\\E{8WUg㪲1MU;, jq(\SrUWsrU-r%h\EK\E+\]#*G~E(G檺*sUT*Ds5p* ]]UWB#r (L*c<]E jDݡ /8SW NU5}*zG'Epu~pS 8aWK8cW:?8eW:?8gwIG~U#*q)+f]E7h]UjL0j* ëJ0˪grT99;ȯsx R8WL\?^ëhK*:6sxQ9V{tpgO5WJy~Um:8W:U1pWvsx]'sx^Uë~OsxU! z*ĵWĖhBI _6V5kΟ@ iޓ-qg/flK:% Ozr}+ #B}O O(de噝O,;11^0sdK`C#힨rU:wVvMKhǗ5̈́6J^Wװ0ZZs\H:J G |Bsd^͑1i(r̵goW1eK)21vPU?"Z=骡vR~XO qu%Rۥzwi])pW=GQ7߮M6jZ-WbZoLFa2&X:P g3H,ɶ6C )*1lEb.P> wno>W͔U"Sl!#!%^DK.N])5/owra-c/Oj|툘k݂"sYy3'MVqb1CJ:=zw_.o>6Q|i0$L㌫$ܺ&cY> 쪃F=j#"@Cc3ӯW״vumiY!Yxw[;pJ)  \̌#M,,GnЕc{Ɏ*O`&?Fk8׋EpJ ׋q6\/b\/M׋qI\/ʀŕpD%^׋3F q` p8ԡq\0c`," PJ` 1.qmB` uH₱P\0$ %*c\0b7`<oႱM\0> px2ɪd* <>`\}ÈT}z/Q/SMSedJL|bv r+l/.o\=WKJKoudUx2i(!8z2; 70Ts"BXSωy2aanL˯_/??j݂] `I^.l|T/s= k D$7~׺HK< 4o"AlNomM$e7fM Ӵ dq񪑪V}oVdW}+7fU*@!t,E)E 8H "? ~Wk_$8@;@V,H@H@[PkIQ)eKrJ|yZziㄳ%!+󑸶o ~Dg3';q*pOV6لKhlzy#ԫhns9Ҡ cޜ耩LOh쏨5lr$MGd!^mL)^Svozhb"XY!|l~L-A*Yy|EcH而o=gU&OVH%DIC*ae.,ǔ h]kmMrh'oyM6ym#ɛ(ɓ;lkD"jL_#q?[e0vpbR+TY91NSURz8Hp-Y.gRjE,lhDz]΢v9V,Zln9b{(&<2׋cV-V/o<+f}`K;.{5eOB8i&y9#SaJԲFyJ%,,g8K%gY*9#Rqbg @G=g:*9#QZt~'@Gi)=r.no*::ilf T=ԉbr͂^ Z/X{wz~}z>h~bX0~/bx¶﷏_ѶB+_bŵl;>Ο?M6'+F3I@i3g:T2mCz,!uETBSY۴ =?zcUDg92wVMf{^+k/l;++}G>xqg׋>ąW crJ5 W}DT1~,xDDos͖o|jt?"Rѧ(:Ju`-C 'A?%fCݸQ=HK{!/Efc0OLCP+?i&?Ks'`)Z?aJa$V@F G-(J4%IPQeӡWOQ@bIuJܲEdG(P=ZaM`K{.j{Oɛq; asr}q lg;M X)̹Oؑ8?,f^vW¾4a]B //0˴D9;'OQ\;>-7vo +YYh=9nmW%ӫw.XlNe̓/DF`nXgl2ś,;-Nh:!Yfjct,ƷϑL_dͼud_?]VwX :ǜTP?42vcH|^y"u+ub=Z+s,w7ܺr-P(ODZ5YxFWlnfWd(=/,)z>)Tߴ[M|mN :ecnAU`V7Tk=VDdTPƒ-)[LG'X2k{~E+y㓀]#$ PL&ѱ6F$W;MTOמmA:/Q=A;s:u@zڌCdzGcwV{3"\M3 >q[z$S;pI=EB41#Jg%(da0TU{/C@d|Ks<*;#dXvC[ļ+=Kx0.ؖmMɛsɓ7j'oM6y[j'wU L2}X]jht巊IUPK\ׁ Y,,ψѿR* i~2eFrmeڎXX^kvXeq7ې]{Ջ.!%Gvlw;fW qmO='+o?P^3to{4;ؕwN6Ef~Ps# B4NxDn^77ݧ,#U*Gʈ֜ޟ|lh6x8Сro-͈I&+W87ٵQ}&I@ PV]ޠQހiwGv7nwݮW~ bOZ+]I1nӴ>N;N{ΦC;:?igiC rڝf(lTTƸQPUO;Z~D'zkdӏ%jufQOkzX갞. ).QөOH},|:@ Ϭu#}]gDdg  =!>+{FiOzMƞ>6RvOG&AOOpMtAj(bރQ{Yo٧ i{O ϪF:0W q:lܫ :6{;LE=XcR{oF oZ4J_~d&{ 15eF'dOV@,p/*!Co1s a~槎O])%~p5e!v<ݻs#qHXrgrY}i*%ք@^^*'܏>yr؇jqI7ֿ7omd_XBɱwk*bzu[//w..ʯ>L,{xod鷫w7e?T͎ ~IˇiwL?֪@ TA~? %:ohn7&{Zݿ,"QyK^/Vޣ2z.6\In2 Hk&芍#}T=ٌm5xOtt5TJBLhVZП='K4L I#j'Wu^Lv HM+BO6Y;f^?i3y?G/ _-Gc΀YJͪkD-XDWe"y ͫon7q{E;3KT׆bM']N(:SN_<\R O̒1/UHn ,-=$VUGա[w4iw.aT&<vUmu$r31TמLNK\v#G2˛_/osoK +"Y# Os*2zD B^l7=~3bSX"V Wx|DclE.L"x+pFtuWJN_K͘Uvnk > D2̙[#,}B+tY|)2AZoVN2bL[I|j-FlqDtf Kwo5!8Z+ZZ)KbAL9 -/wqN.A €~s ȨP zU_f\6q#O{@`@Ꚗk?jȮ-5Mcfd`H`PM"GTAƢ|VT}یNԧBԼ76i\yk4FEDg+c/e_IZgRR]\|ڧeR$M\L2G.mLQ^V5 [ < ?w@"v3ذQXh8G SI2T(R$#_ 2;PY,w!}݌<K`C#힨rUqtpXXǗD2+m`f%dym-49ߺ3v^#N.G 6ٮcʖRdbj ~mCGtP;D;3XZrg08:RxTǹ3 #;"ͺ+%<:o'QM-3- lCj5BXJKjNA x?+IF9C216O̜;~^Hd[СSo1sN+2.m>%\E*C w+ lKo&it#Z9Z߻K9:f E)ókf-z3Ӳ]Y^VXЅcv\L(߁JPQ#?W$ɖg5uꝖXx& GH$L~J{}s>"_ՎǶ&jFK Ep)^~kA\ǥx\o(.R<.#Krp)q)Wp%I\ {0'fa,Uw$}^&Se*^2 NPP2NC&:toyl%XRS W ..#f]p,4dӐQ.OCFq< 4dӐQ|4dFdFrb_^~~`bajw%+uvrt`eo0]O2Փ'` ",*IeV>DOE/HF"UϦD.Is-sE4m҂L.(ūFBX-g>5dE:iVXTPƒ͖|{pw{}Ϳ):1+K]?Gھ.D/+N)g؋U~)쀚6وn6mCo>oDzP!كV$^]Hh\↎!QoftD'y4[ɍh/jF$}iY2# S$-Dx t"!|l=TRyP<1nt@ƷD$jz$"V]07JI+2pK/* / B}}Z/eqiu܀]M0=Y1*OO9Al2c $,Z*ئM\oV,u66YEtsgE d絲N֞㻲ݷ~D`xzC\x[z+;f,7_{ZpEܧN$Kǂw MzxM8'0ؕwN6䅾5=ӆNM=Yoýw/f,-4h1jtti|OG>$N]/$FiܛED'd(U]"]]/TD5h8?eWR_7WV D}Mo~%/_l4>J7 [?!_ЬIgCeGK7įkĉ_hTi8 @ 48@@6b!$|5@6cP*@W $~$_~t`)A !La ӴAL(^B Ѱ z@MXo4Z!`)R 1m hǚy#DF/; Co4~Ý$oZls^XSLg$ڳC44`z>cG␢|fۥ T T,xG<9CD5r<ڽYJ6\o`fungXn绵]\M0z{ewK~ed;ֳtc 8Yku`nofPMȒ ^$zml+)W+_P/uM9|)=Vvд^Ω-di13tdT< 4k=55QFjF>4+ZmCPR&4Ռ}hW$}5voWvؗ5c р{UrQph@㽢0 h(8ޫ_hWsxhbGj5EfN4|MS+И銌5Eڎ*k;vT ^ՌHCpW;G~5S`v%hhhuu!8+c#ptGJ0xW.FE}5by #""?Ú#iM5s~k* UT$4ޫ U{Er,={58g{EYxGO^ Ι"^\xH.pW$׉ 8+JKO(jBV El=h ǪF}eAHC㾢`kp@L#C *L00WՕ'5p6JcCYfGgNT?4 ;Qd\EG75pFXSrG9; A4pVNWh\EW1Uti 8+ ?H0E^ pZn_"NUuHL沉7&8=WUΊNU'*'Uի&;Tz&8wY,8WѲU5VzU=M kW+Z"gz5ի2ի7W4z]z Uyjup^8WYG~U`TI#E* u%4=^E'|^Ehtp:;0tp:2=U?8P鼊fux:*1! ΫnpR\|(Hje!A,>q%i}eC`UTusH!]6ړ-qg/flKKxǡ94`8|]F=Q:<$AP)bRsgEMy VB$/kXN--\[ S."Ĥ#sugP2iȘT@ڳ+똲Z;du(پ.C_[ 8*ҨQ0ts뉘8DjT ]{" =%<"Yoצe{4nRR+1pTe7&#а2&X:P g3H,ɶ6C )*1lR]P$fq#@P@|q}uLz^Q%i|Bj."Ѝ%7SfM ٵRf [iW 1O/}z˥坄pZmn!*4ﭶk( ;"q5b\zvq@8R{*I`խӯwo`  RL$Aqf[ 9fӁ!]u6q, 44Lђfx-hdK2Ue T̯^~2Uo몗zGWLt,żg#+>7eИvn~vy`z&(^RZ"5c(!8ejG.HZ&&"KZB nl>5_4Tmс(sVe$j$˜QB44"V]0RR:zL‰Vݵf< &OTM-6y'[l'o&OpK/* / B}}Z/eqiu܀A0=Y1*OO9Al2c $,Z*ئM\oV,u66YEt"sgE d絲N֞㻲ݷ~D`xzC\x[z+;f,7_{ZpEܧN$Kǂw MzxM8{o_vvWxicvI-#Jy⻒[:*4 ş?SۡMd>'0ؕwN6䅾5=ӆN ?tp]K9&|agѲɘ*c2S IgcE?t~'/Q+ iơTj;ƸXOB}}<04%Plg1~Q_hب#!~PCQ첗A㲚Z*gGgezlR=txS-|zOb_=*^$ããÿuBT} |vla>qNNNN; q*8oXy9tqC%uv<_6s7z>K ^_d4ؔt9Hb:Us6췤Y5H7 _xOOfzZi , h+#0jօZ@#: JFV1D~1htM4qAM4q pQGM5qQGM9%+8j⨉&8j⨉f٨Y8*aCb A A 11H| y9xӘ^A׉iSSo3f^' MaCF7j0-XSN482n"N;v"D؉a'Ndž׉?;;F+Ǖ}A!B A "A A!B4!q A A!BBw)Pxh@En(r3ЅG6<|ԇGO(r;㤟w"D܉q'Nĝ;w"Tq(n+nQ銛t傐$ B A A!@ C A!B QBDd!B A Au H'!B A A:2Ƹ A!B QB4 A A!B!>!B A A<vCߚU!|u˼w-| :n5qXl}8ӣ֊ƧIxsgE67#A JD'OmYyf(EW#6g`S.s˟vXN'+ - WT'Rmzzn-OUY۴֎kO;&6 뉰ÇMf{^+k֞㻢F}#xqgC\x[z+;f,7_{ZSL'ݥc&R=&Mvwvn|{V>9`GZw [,ND~oпR* i~2eFrmeڎXX!)kv6vw gjEv3mHy"+o4x /-w̮A2i%:ڞzD)O|WF sQIvL(/> ֖vhӽ9,M ;'rpf{_# D#\Z98L o} 2 )H) smK R7B~&*lRj _5hhhhhgabj80 SA;D;|=;Lw_ 0pw[ؤVmqZ,ZX,--|,e£ŢŞŎ~FE=5=yŞNt g^hd1μbbhS/4s2Ym&&{&ɢɞdddd:Nddǩddd'mhhgasɽ݃&d>Of|2# l3*PX1%Xǔ`z.{ X~>A~~~g%]cECCkwT_t)Z3YF5!+gISk4KfA3畳)W)S aѣ)Lm` ` 6l @G!؀VG` 60`#@` 6l6IF` 6l ب0s6l @`Zju6l @`7 6xe: 6l @F ؀VG` 60hM)6l @`m<`Z 6l x`cy6l @`Z 1I 6l @`F5zEh D6m6A"( D6m @hц@h D6m@#@!6m @h h}D6d8(D6m @hZ a &xJ D6m @" D6m ڀGhCm Pm @h h}D6d8i( D6m @hц @h D6m@#@!6Ʃ"@h D6mHt4 D6m @hц ژ$ D6m @hF5{$P!@h D6mH -5tD6m @hZ #<%h D6m hm{IFh D6m ڐAm @h h}D6$І D6m @hцF6m @h> DhcixJ D6m @&'h D6m@#@!6Fm @h h}D6$H= D6m @hF5RAm @h h}D6$Іfq' D6m @" @h D6ZD^Q6m @h>6зf'FF/6<62$7횸r,y>lp ?#@4Cޞof$qTqzpUF=9*W R|x7BU b:R~ V )V1CCU>!*?˨r9 JTrTZNTʏyk\JǼ彨>`>yRةn{7FL\uL\OA;]*]u}DQ9{lХ"gi&J3@Ӻ:q.]w webkDUy="sW٫jӫfAWȿ^å@m$ááõppppm;\&uhhҴst8t8tn'GZwt8t8tn3pNe(@CCk !%::2KoACCk /áés^FCSp<2ááõp#<'pCNx1dnD0/ C?AZ&a(y n' :tȣ/7>7ssxpn7N|g"$77۸7m66ss&s";3ϛNCg#qn=Q|."gdȃSz(rz.\DΜ8ӽz`| :ۉJf7nO~v~V5m3gcȁdl;OjKJTA@\QaݿRwId F*p}5[IMPNLsCNξf"IG+l ҂}Q{&`i\A--(l7G"҂cQcƙ; j=QczZPhk՚Gihք>;J[v]33ʴz"lLj'lL/-3Lգ =qGp3L 0գ.Tgta4z 0#;=/8HA}az  c_0HlAaz4Hh#5\CT0`ff@?ja觍@?m@Q z aV@ϴZg ZPT=CaS @K3-uz Q0h ,UHT=Uh3-( Gbjc#:?-'Tcz =?S,86Ph)]avU:NYKa儏;NnCT<2N^/A0zsՌImUk e:2\BV-! "-}vmPb )쬝?6$b''pufb8v؎ەK)RzfP1mvn<u6U6nTq7>>hM*6>>i5ڈ 7VWVVV#VVcVVVVVV#VVcVVVV^V^v^5k5Oo5Oo5Oo5Oo5Oo5Oo5Oo5+_ׯV_2۝VOy[o5+_ׯV_2[o5+_gT?gT?gT?gT?5EVQVQVQVQVQVߠ2 Z7h5 *ߠ7Vߠ2 h5 *ߠ7Vߠ2 Z7h5 +߰7V߰2 [7l5 +}e9ΚC~ćt`yCt{a/tXx4Q]R˂Ӄv}Np;;2f1`_Q}~/~~u//OnC2 7vG/wݻzeA;Ԗ˟Kb?M$- sNu7 4_Vd΂?;?NH>kFǴi1{N>tǹvV/_׎}Vús=o?"U<.ZZ5n0X[q?/_J/K?+oGǵNB93$Bh}/ /EG5l5V$=?J~;ON班ӡJ%g:۶m'[ʒvC˴:_ePBQjsvNnz?At&+ROo (k]P]w#k;=ǟtlmms-1.0.0+bzr2569/data/projects/CoolSongs/Namitryus-K-Project.mmpz0000644000000000000000000017165411603573245023115 0ustar 00000000000000>xmsۺ?~>S;"H=_Ĺ5}ŢED*$/@&@YDh^^a}}_όvkw([$e"$vOMu\\?aQ~~vb$o'qܟ|7Ø?xk*ck/O'^H}RuNzAn&i^b'RI/E?I,- qBs<"ܟh 9w8=SjK8a'265OxC%':7^do3dXmo$JB)_E/ʗT(A`?k,=6Zs`&R:.L{ 4}3QfW46y UyqK& ɿ'L+9_d-uڿ>}:+[ô b|ctޚٙ#*?N/.?J [$ܦhYI*0\]M9M&,Zp-?.Z]KF۞I :j-^dwC^ %t[lP*: 3]+K ʯ;94:lY#?y.pΨ!YS".]A P)B¦M-,:lj4x x CV U [nUUF.km^J [!%f  C$LFFFÏ x(BaqŝM`W\62pOi(R,ࢲXfvvJ~Q|xPlaԃg!ޫ ^{!ދx/]!ދxo2  bEWJ|g֐;o#O|EWPoI@y[#dj?W_4>B&!DĊwo|ylwB67ar 2 e&x)\qv!#>CF؝{=?@FSgi̟a1&hf*#;-։e ([립528B}yYPfF* 5eu$IҍH$sC/ux+/]"MG "^"8pK4=|Wj2([s򶹳[䬜`mVEd̎-a쨰i6kK`fel PR@C %7~xy+ GY;H=] ^`Vvm[dZRcWb/^c ġ/~&ܸ+䁌bL`_ټ40v?jּjPM@aCĢ(# ˆ=Hy=6s&uLdSdA+} O$EBjF7ܞ],JD-xrZ:m ; Y"ݍU9c-S3f]8l<}ؚakfyqؚ!5Cak {WtbSUkd7gn͕vK{Vʇpa0_3y:k0Ogr)%}+gTD8ATr-FaaQ6 ojkUvTtibj!620hZ3bipw~4O_X{fAzs طV~- eX|˿(e8~'Z=b%RA.R`ǥyU~EĻ)[ҮXrYPL˒ oJ0wÎaG[m<>ϋ0hܙjR7vՃi. (OYoz7鳞|oc6vuMHxF\&ijWVkGJzģݩwz={ԼK>L"giC$oC=Xi/E #q6=&MeE* $nO.)O4]I"li0*< E'1G_^ӿjs'olWӐc\s{fԑ~Q%yUtdvsKjD%"~}OGv+-?7*vv }a'k[Hȥb(]g]kc4'#>ΑI8o9~} ǸZ$ΣWRM.)]7X1_O?(y,2]puz$NƗͣdSgSȌ':7^dgȳɨ^ۻp/Lj\*wRwC5Zh jsC·o|!> z Ai i~qTjלsߓ{/2:_ξoqIKaZu~$"#k,`vc{DXZ治+z  nnUxT*?;6!(-ѐwa{p`W8H_"*x}F,56w2eJ/=ɖţxEUo˵Kg^jhn3}WH`(]׾XͶwh𬟷q~n!{N>o{蒁 oݰ0  84<\w;]Yr7W.z .}~{w!]Ab=T{iU\/)Zĉ"s>;Uҩ^,^nVX}R4+1H=G޸R*^eUoV;ʢLJϣLF:#>A3)^ ӡ,Lg-4[~OzP^j@ ! ;߫ex ȹKM"]bXmldB۫|vPYqr]Td?-&K`?_^b/d¤{ }Plw2<oHK+6N:X{rKEqwctn{R0ل?:IBe&5BXa>IG:f<%^.G]S1+;s> tKA3c^cH jqؔ}><,M=F^D7>)/gm|-%}U>gڍb9=S[r\$%-Qs"0u\|rf>/(OxŸ~ð.KM2a}/W_[.wII+!$1 g{HGCM`s[y3<#.([v%??u(=-Jrj?Bԥ8~W\yO}`rc !,m`[erYA)#N(Xwװtژ^Oі ׁvվ3u뭜ލnlp+:(O,|}?]~cA;Oev?i,Юh“EDq'k (&m (>?_@'%79x:':(O,O!T rou~KǮp>{lM2#EMay'vzR :Hj߼K#gdlWp6 &?qp6gj2`X\u2YPXZL=a$K(8kNEF>c8Xd.>kEFcXd/>!(hhf*#on&9viJԔY4oVʮi+ XA(t]ҾBuAVH2ۀ5$w9Cv0!Zivx."^]"]]$~ DH9;L@Gnjmf_`{81뫛碖Pu.2ɹH"w]$V%Rw5{]&"QapRW0kI+R@.gLK[RLKxd'^v1p8't:ޒ2R${ 3iq 1*>a/JҚn' _ć 2Nn4 >Xx W9Eҭ{@O(w@LuISo8d"luC)ZdN*u։Sl}ؚ!y1pց~=?n:p՚=۫nsez{K{Vʇpa0_3y:k0Og-{tm۝8u'CXLI-,ހ@طͿA[^Jש‚yy_l>$Nb9p\7-=?髷^V;:1ImB>=%'7zA' "R>؋#KEյr)S#~􏕓dF)m.^^9!\y&HHV^IEa\^MEb_]E^K-]D-aOIxgYJPfDOy`fݒ2*Ju('weY׾Cl 8 W+/+nKBl3'v UJSeSyFY=ܜQYQ=\z˥Hⴺ]^ӆt7/ 869>1dg'olW؄Yыk (Us^qosvRT'dռWbUɜYFvjk^J! 5o!=~}%'#;DҨ}2QXe;:p?^Gk3Lp'2\!c2%;UJB"b)Êy4\GR"ѧIn8ol/>t;tЈQ/Ni$큸IʵdS4ܧ!.Ol?k y63k{7 O¤V/=._~P)?ɃwR7yKpIv_#!6-?/?^_^] 63}ΐ{y/E"\2n5x0Lˠ+67Fpt giG? 7ާ <[\vwĢűM| K z;Cc.sw" hgyC2Gdܖטd:ɸ)ýVR[ `xr}\᭖r \#KZ||L+ڡt9sķ_b5nYOs& LD 2|!W |.wfg E+/v zD{O"-"t>5݌Do-k%jr-qI属zIy QyʏFw2Eg&{M` v=tT2.c-(zg2L^2NasouGv#ǒ3|I7/b_RCR|WIL3b1^=EuAybg_ƮMbօ}f'ffY.uyLg#F{^@`;]p0O3 䘽@@s̹bB]4~{M]c$})B.C.cT0Pq"PQpn(Ma^d4}3?+@^3@Yrl0'{9Xh$Lw1yG NWO RLSME cqرjLگ(zoޮ!n.Q|^]$л:JlP^|8/ۨxO _f2X`͓b* "Qp=\4aV/U+z I^͛si>`س`A*s5;OeNd]9]d7qbak)/-V} ;^V{ZgVt_zʎL:~uܵk.Dyd/bn,3qI'KY>..K:NtZ` 7ķJSL4V*[ff/(V,\g\STpUUh^_\]lKOMmU;Ys%Lғɼ'cuڿY` Pp^] )P*rU>RneIA)fvƓx&՜->!2S{_D+4%g)OŎ!KA.i #C Lal+`Eqj?! ;(8`Ҍ^c!&48c@a% lVl(C 0)_}d=ЪN55^K&虁ג zdXy-W4D KV.bGvv@2!8ܯ ^JF{<awy28dqzXd:Fȟa:!|h<٦J,šel{%%궅S!(܊of՞-=f74k7xd4+pT G)xuy{}΀nt}Ex}ٛ)bM^Ou 4||Uڵm۩b^,w+]ܫR|ov(.A# Pk.vДiI]Jd/ c^5ҾxKH!&̤&3*>a톾@z4U(o&r G_ˈXtrŦݜ "V=x c 4¤LuiS:d%!pSN@v:E!X5<`:hዄA+u=׮!Z&dPc$jX A'B[3f=lzؚakqJf(iv`ON:pկӁn.?^u+ZT^z޶oW>̈́a1Y3y:k0OoiMyg5JXv8Kg,5cj4W&㬟& 1Y3::k@Goh:Fq=sv}{~uٲשJ׶݉SfJbJjhd߀67Ǿn-h/߂WҾN{7 OL{zN]f{\'q_ρn4AL/t\e G'ƒ 5rMhקR?$2VƵ]/~$a,qUg{vV:ejnr(exK<~!'^=+7 ~d w s>1L ޫHHVqyCȣ%U)=iL|;@ ʌh)򙞳^Jb\v?լ[!?ҿSF%]鷮N,w}z6o Gje3mB~o9͜mFa2JPiyr*3(7Qx9딒>3*|" KoIV8K"giCFxm3ui UxodxI?B6vQAxI0yD rCRVQ6Jita5T(>7>Xtu'*>U0]35{_vuMKxú7*=AدAi潝kyAg3٠AgfdEgl͌utt6l٨F٘Bo z f zU(x1b6m6 Ab6m63Xm۠QUL6۠Ao>zo3#J zf8C z6:x(1z6m4xA6muGoKzig*Wߨ^T_]R_p?gTנx?gMs}t?7د@ih*3GIAɣA٣IIJG]4 Ug?7T?揺#AѠHih_ih_eh_e?JG]ѠXiQ1V?W?WZ}41V?OT'J돺=珉Ѡ`89eb{L6 K 6Eh&z6mTGlM6&bmvM6Dlm6؈6 ڀh #ڀh GDm@ц#ڀh&X6 ڀh #ڀh GDm@ц#ڀh.a"ڀh :x鸞AoF0 zU1̤t3)ILJg1̤`&IїIh 6 ڠ? 6 ]Dm@jDm? 6BfSDm@jDmDDh 6t_m#ڀh @V7 ܀p #܀p G/n@#܀p.n@AUn@7 ܀pC6 7 ]n7` Fmn@rn? 7 }p 7n o /7Ϫ[qXC,VEZf{^7ba^ױx{:M,iu#Wt W4Uuk&FnŇ P|_2#آұx!4dT_cٳ.g?3_c).]7rt9r9˙"A.mɌ._z5[8Z'H}M2Q{݄QPa:t﹋0Hp"b֓]F*%naÉܵEMJђ=+]uowux$a.}!uk?#7ΟxN6y__:1;4dM"^uzsf=>8=SX7#Y'Z&&Io7?[Ƌl|7\%ÑUJ/~9S[/2\()*-=-6)%|V!6X<ؤ>yPT_{՘L*gB'Z#.ׁ}n7r,Y?;׳"[!a>2GhoBeiba,m80x63љٷ LsW|fm4PFf>Ьfʮn.O/?λfp:x&mK5{3QL7-60c/ՠ_aQv; 봹Diex=w$ISI6D(s[xIz}" E1)xtBuy]LYeAQ"r[X=oX6(W74[+*k|̡αg/U2hdCw0w^k9vtqb*dZl'3Mw;qDm5)[gZ#C`cI!e V^r[Uݳ_$2X fn~Pȭ+K:[,Aل?Ļ[U)fp?s`-3~I|ҏr LpU%UX˷?N/.?%tdRJ *n,@&Idޓ : UOy(82&daPπRQqr+K IGv6<8SgT_l,l ? dwWjg+l4m)/R=C2b\8XG b8*/{!#Rk^Js^€8 $:_G?7 VP0.? Ƙu-`L_cv368dv?;fEF$ Df<: B 013 0.!7#0PZY!`ºa"F 0)_o: 耰a!@XGV)pA !@X2   @aR6m<: l@abf!֑a \C loF!օ%a B $aJr8h8+EL`#uj2PqD|XNt1#w~ys{@@-/%#|8d0D28dqq8 d4yDȟa1gḷmB:糏@Z'xkQݲ^;FQMx=X274k7xd4+(caWW__a1t'OiyqLӋ> xۮI#b^,w+}MTODqAd,Ԛ˵dZRcc~L6aAvCCR꽡t:ޒ2R${ 3}es҅cT| ۍYZ}m' _ćїeXtrž5{Aw'I2Sq0k-S(8dE!Yh u:E!jSNu:A+} O$Zk"!tJ5z?nn.ZU%u-a۶~,ZqƪI ՜N[3.f=l2{ؚ!5C) %[3^;lPy10mu_Ϗ)Wٓݜ]~6W^-geWi/[ro۷z+Iyf0O<5cj 4W&<%Yb;aft֌qΚ1[5Y~qO@G5cj t4WFHBҸ9=lTkĩ:MbJjhd߀67Ǿn-h/߂WҾN{$?߹N)潿ui I{oEȋޏN%AjbШO.xI=*!Iek^Iˆ1cz6"zM_'-vuuԈ:tzWN} ޓxy'O?īpW""Yyc'= r{5~uI*{Y?/}x#wyJ?'vg(Am{?A>s0_uK#DgRwʨ+IvBe]OQ~&0Hpr6!7ef6#~p`0QO~`å\z$NvlOV˿[eGV.Vob/# <#-6hKpGLm&2^"nxX'II^"(&o{ޫAUxyZ}O=I,q?mD^D U|bxYbwg5b5'# t3t(QAHT8у4 n FJZiRJV#]|V+>oP}8KOTLW}`g kjʛڛ5oUz^#5?V_f{;f/ꄊm~Io#L*˛*oY k~ī{?د@ih*3GIAɣA٣IIJG]4 Ug?7T?揺#AѠHih_ih_eh_e?JG]ѠXiQ1V?W?WZ}41V?OT'J돺=珉Ѡ`80- 6 ڀh6 ڀhCwm@цmDm@6 ڠ m c#ڀh 6h 6tDmFDh Іь9+<ǔh po3挅 zU(xBomVR۠Ao>zo3b¢AoFU}6 +). zU{ɸ wAoFUv/q~wp~wXW-퀝h 6 ڠ? 6 ]Dm@jDm? 6BfSDm@jDmDDh 6t_m#ڀh @V7 ܀p #܀p G/n@#܀p.n@AUn@7 ܀pC6 7 ]n7` JGmn@rn? 7 }p 7nn@7 ܀pCwn@mn@7 7{I,Q7np$~)%(̝^O9р^|=\m^=cLkxtV[/qS41#d&dd# :@J#tB9eCXVaze2 rqpG2\eXO ibYLaxt MY_ UVL8bG[Ur ];ńa ]`n% ~.x టL7S2pOGE ?2e?;Ӂ6*46-o|f1h en!8#pTglhlB8#;m89:pX3189:pPQ]5e:g7't'I?+(IcxZ367yNMbMx& 1g'#EL@?0eAtZOA/0nm :OA0atb0bSY8 :.^D4E if Y>f N;})3 ~I9p[,ޚcb Y0ppPo}8 Л͸<~kp&8&8yB:!G:H。  28( g 2x/IXv3>[K0;R G,uFtFs3  v)fdfdfd.Fj֬bpX32pX32pX32pX32pX32pXdcpX32pX32xXd.XnHXnHODnHODnHODnHODnHO!]txH ߥq3ֈ'jI0a2AL`=d. MLd0 pL&Hy|L&T 1 dBF B2L&T0P'dB dLa2BA2L@نAl60ۀن!fJ6`l l !f0D1`hkKaCL d)pkP0:8?1'xJ8CS Qpig)nk- Z2V5Zdb,n iT&%SSZ25[2fLŌMpspb28O<7yI3&C,醳db\kr h$lہP %36ry 3Zr9 .Y n/ Y 2) [oQr s8K-ILLsLLsLLs 32D4a&B2DT0Q!LDDL 3͋DT 1*!f"0Qb&B3JD`& 3`p!!f"0Q'LD 3U2Dԛ3U2D4T f"dLYNƘh^`*JLET 1SPb*S dLE 1:"da*a*bLET0Q&TD쭥"H*SUBLE`*JLE@TSh T`*BHLE0Q&TD STD S c*B2"do-1A$"Wb*SUBLE`*T$%"TD"SBBLE`*N2"d7?"dhS2LE0Q%{khVuDB y5[bns+UB̭`n܊$%V[JVs+BB̭`nN2Vd[7?Vd[is+2̭0R%is+^9oş_zxn*QDƻCce~'vIV|xݧ;'0>4Z.06Nbl:n'_ρnTHhȋI&r}QPa:t﹋0Hp"0'2*q N}_,oRT Y鲠D={w8#ػ{4ȿ\A~CVA<'K'^8"q}bvUq~ޜ_OO/nϮoi3FE3;yelk4J~OulofgȳcK2X$I^DG|AN~$c/^k/No/5C1A:.L{ 4}3QfW46y UyqKτsߓ{/2:_ξoqIKaZudA1B:U}0WMvA+ڙsXdnRM| vdZR~wljCPs ii8_T7zp瘓qN,u+7 5ˌq<$S0 l2dʐ%tɷʕţxEU*\ bI4#KZTtmGH5~aw$t9QVYk_og_cgųD$l~f2Ei+.4A:s6\h7A4j2/(p.˗%o.@'VL/3]lVuyx"&#)vO?}oGK .W/ #/^|r~ۧ_d:PRTz4fdɤUx6X<ؤ>yP2闹.L( lE12LSD0vD:ؾF%hg}zV+$NZg>C M:M,,E"l 2mgx/h$^yN,mW$'?Hffd-^xVOJul ?u)^fʯ{_[ercYkʭ֒΁ي `<(zh m8mayUgYVݷ51zB>3[9{Yocވb~n%5ߧ[;(O,v}>.?5h; BKs>m M3 \KI( }|a++PPF9+`QTz(O,!TT*^ScX8wFʝBl1,\}s,޷xt[Eau/u-yF%#hXKt6^/:3³٫g@=vGdqBae:! ەIf9TL0l-UKU_Ž/f՞KΣg> y&T⏺ nf1Qn6wY{ v?q:q" zuQ=hO 6x{4LnẖefҏbeԂu6O:RUDbfv戻+-1o6VTDURIRcʁ~' 5E`.V5Sǩ&mObNTOzpTnuJ^ b"P*zs8Y~Aʒoˋ{rnrZUO H3jrԚ#Uv(AQH$(lj }~ƧV(S-SS9Y L5 _68v5(k踳"Ҩv{6QmUNj]j#Bv3R/jK3z=PI!6ڈʗGwv@{ִ"{houD{==mh/^UN"+R ^D{^D{DVV6@{gEODW%p\GW^kfnEWGi4 qoEO˓dL!#CF]<awz28d2~Mw^Gȟa1gḷmB:糏@Z'y5.l hmO7VSeB±[rP^VH2(d.")%̓Ԏ;TS>ӃԎ;T`ރKԎ:% Ҽ4Ds6\í]aVNq':Y}Y[34+(c`WW_(E ,Ï[w^FNp= ':t|U3ܶmg-9m.{ޭtJ)Aa߂i0ćn{k;.#Ӓ"^hዄpA+n=hYTZ`ֵlulvkL&7TsZf:9lpؚ!5CXak0 %[3?lP5C){Wtb$~=?&\fOvsv\{kT^lʽmɯ|'扛 <5cf t֌aު1\ 0jgq1Y3Y:k8KogiMY?M#5cf tt֌ު1\ t$" I.&z.eSm;T!p.T)=|߀b8h~ ڋ_I:UCX0]vVhsp7ۻ|:Sz׍w'ybz]$b,#/wN%AjbШO.xI=*!Iek^Iˆ1cz6"z_'-vuuԈ:tzWN} ޓxy'O?īpW""Yyc'= r{5~uI*{Y?/}x#wyJ?'vg(Am{?A>s_uK#DgRNSƩ,IvR]OOQ~&(\\z;sM/5ڙ͈ صLFT)#*.O1wSNe& #gRrFeODp-"Ku CU pI}'U_ͲJL[+Ǎ7NV A f%hhwI2SGg5H}IL1l6=7L9dF6I1q G/7Ύ2e7ȼWԠmK+faלKOъu&k[*5sqڊҟ1 w%E2.I??xY}Lypv3{vyo2ؗ| DӆE'ކ$v^2EEEyƈIȣd4 Q/̓q iDP9i0bRiLj@/GJmRV &c4+u)~&4ik]/=U|6ޫ9ʗOXTϬ[C5*`liaM=NCOc'*fUqǑ:}H)n5wҟz?;cw{ո͖l>|D2kZl@₯QQY9]ͦ%ɨhF,*&\)D8acH鈉8tZ$(Y3HɸP^ !Uʘn1hX ]Fd4`.#Yn1d2!5,HBj RdX(2pߚ@ ЛBN->Q#hѐ>gdA 8ӂp>#$+CpO8g<GCpO87;Gy!8'S%8'̒#pOf988888889ˍ7%JpOr;;7;>:Gy18c,aϹ1Um8)M椠u4~ 28u}&U:_WnM t@'P3 t t t  Cn{=g5㞑cCÝAhgdHgd@O)gd1I7Ӥt4lj\xD9H>>?Q@>x<=nC}5y V^F:.c4)W [b~t8c?d"!E@Bo/0 =ϳr,xR??Oiՠk&`P[ pVج0'8H4aO eF9_&"^g"5h)5ƒb>_֔qOKrFS'ˋa(yۢ l` kPl*`&`VZUFXhn07:^t7)O o8(P{xw3ۀ)t&[дl7UvNkXJ8fM1 =(Q5`[&ކ}| ӲtO= OqcZ{e{ t:t V `ct0k? 2Aw(F5#D٬`1ʀ_"JL668GM',OCcFOD,#R\V F&97D\'#lp(4K`QQt3F((5dۣ`jȶ8ԀSa$,\T˦40E¶^.#Rܾ6I?5`m;׊8M)0*eN!۾* I[LE_(0!FHmzJjkF6 qhr@$+x=iE*p9Jn+ pC.o͊9n lf嶋$rSa}1qe3|yf6n+-[E,cOlcO%cln/-cƒٸ"p€GfbX,p/Gq6O2VW*pq6OC8'߉v6tVrv;e[}8uVƭ&/u>i7`Z8W xnl7presA,2.nhUxm |T~wljCPs ii(Io1'~ eFȸdfHo)T56w2eLkRr@hh/xQUNMX$ 2@qR;݄g^zdw$t9c׾X˛.._cgM daɇVC'?_/F-/Rq7d_1L5'` ?yA| |YB=A b=S{iUO[/)oZӗcE'-gs1hȃw dbqy%\d-y!\ j(Z,H;U\RQ^_\]^_}>"|絥سaT~Zf@~1iķO߬|qŠvEߥ ϠK!+'Hu6Κ"ٺg-좖odnyӉZr EboR#J`ղu@F`" a/sߡO Kw l%&:ڹg7 _L.o> 1|`?g^b/d¤/,V<&RfXDbTaݍb jq^RvQ܌ l{R0ل?:JB=e&UBXa>IG:f_ӱ%ՔȎ.w|VרTޣˏ)G)ۉSʱT?gbm58T>i;.ԏ겘rbI\MVkTz~MlM_nMM[]'͕*C@$|VӦ"SXP5͕n5c*Z+(մT>{M0eGWSk̯|VSzT>;uc)P> W>)j*µ45)\]JcVIpu-xjLyGj5峸4Ojm*)kcgru|*WS\DU>;5*c~]ML9ë)U>VeG`h.sjGtuAgtuaʇt5P4OJ@(ՕKR>kjJ ί|RWy S6M$úVʧu5a*t|T>|bԵ%D̮ T>fv3哻3M^V讦@M峻P>YS.XQܠ]]gjXӼwǺQMSS*t c_T=LS$c;sȫ)jJ`)4WZy u .8|W`_`y 59X僼$僼^TԯbGz7|WK -A^MW8Xyu |W`|t |K`Gzy|WeіA^MSAޑ.)ˬK0tu52ڣ TQ?ȫ)Q>;ǔj:h)wLk3]~m)/O_VK$>k)jZ*t1eI^M-哼:rЯ+cʛ{4YL$6Oxa)մR?ɫK0eG\|@"yy q} _jq<.zEfF_V(I)ZjPg=s a:jf=W_oGFeOm6ˎ]S 5$ /ǰ껍İ)t1`m]:p/ḧw52c4n%$sC"'Ƣxen_7 qR׮g@ $b7CZ $g]cP _N p*4sQ#46B{h"# LȏP &:m&2`%0= 7GWUM(+Y-ez^R3L#DkϯT댙ٰI֪Ҥ\XX7?X B4{Nδ3l&Ϻgr2ŵY*OpXδ]|Y"D1]/~^,].Ӝ:~Lw4x.;#y?0q:Nt#,y?Vw:O؝՟oaL| sMmg6Ǎr_.>/y8"[-+-!DVQPxPL`"XJGT9ST0mk*I?; lM'{':pqopl=L4ʅo_uؗ3=쌀[)YU:2 P(;u")E*ZWIw~$I=WFo~`~NJz(qdGp+)#-->,n1vhn69r-p3'LdnbIvۂ'>l'DnCoj{=õl+ȐOӎz9#>33<瞦ؒXdUkpzC3z:GpG`|&\Ih8d'rǻR#p:bD_8bQ+ Nڻ&M\ʼǟu uVRLhS&kԦL֎C2Y6eʏmd-3۔ZF)NlS&s!تDVF.bn*ltrq]*4(}Vekcְn𒯲(K7OrZD2Үd^u]ɼJjyڕlW2oò]ɼtyEv%j-gWLbŸZzy{eg͗m2@Wӊ<yn׽dy]Jץdy݊ױw gQ5,,gu/pVgu)pVgu,]7t؊^2.%R2nEX;:H /gqGSq]qwvq=D̒ ށg`=;Ϳ٠=X?VX0]_S[=Ž|(zq yvߓۧ #pQV> pGA䒕 RWO(,L;Kmm=?zBNg xD+?(2c1U$O̎8FG >z ųGN*o9V" X/3tTwcD^DD?^̍[}XE;;:EƆC}dQL,wåw ÍBĨ`+ղJuږMnTlwɣ}qPLۇJ8ƍ7:&ntD!6"Q#NEq˝}ca%ꯞ1GU V Hs)/z@]%P><:4s.U_pG8S,8|)&9ya3 ʟ[<|Pp<Hī`Gl~S S5zٸtUE:pMX{43 r߫׆2G?n|T&j d",SoY 2G?jéLoEY&oocɃ&_fɗ>heA?aIU8ޘ 7oސxӡx 7oxCoix olx 7d!7fie]⍲NFY|x"SQ-ޠow7(;)ޠ%.FY~x"SQ-ޠoAF*7 o@} !1xA;NeoP;W⍲nE>  UpZ+pY8pA?k6zGYz"SANGY~"SA }2aw 8(2pPw 8(;e]iWP T8pʇ T8l6xQo=*7(7YF pH fHRx&_oq |)A/7heEޠȗ42x&_oLfx6eM ޠ& QK |)A/7he%EޠɗZ6|Mz38(k8ZY&IQ:[DyCr (I~˸B.5mS襦- =+mtCnes;t,%CeQ Lc(C a8, {-ޫlunx]C.x׷C̴pY8pY:p1a~G8nlwP ˁ"7$:MagOFQv(1JFذ2azq G6wIQ`֓m*ڰcEw}zezn{|cG+}?ROomm6y 71(V/eeڞG6ǭz>/yN>ܐo4[34mU{VGϋz\ݗ[D O ƳNsmPt{ryOcƃ,!ip"Be,=Ʃrj;3J@e4/Oؔpl,2zXœI(u tF,SQL;BVG8Ju5t9/:BAk#QW{kͼ_zYfEzfA!A$'2|lQ~,<_g߮M|1pfU0D]1%6a*OvQt,&Ӓ~# e$$ץ.5xq2 jrqM il;P5lF.SeT(-'ڔ?p躘/|YRDɏ`޼hX457KR|H[X1ݗ9dCFbԔW+O jlwqRfrFޭݲ|DJɶu>+4Xv}[낦h8.C?ix:OQ wsZ`u9PO95j#0 2򮰀 X@Ui#,0 1{` ԑB!o,.pP]f-5c4B|҉g&#[j_o(G}k!؁[Z)ٙjYwLnT&4ԯZδ0 [\|!d v{y!yKKv7aR  Ox4`S-Y&E;h?FV J}uu8&$^b s{itLmYDu\y+"bX=@$Ң$KJA^X7ix}wMrW`CXF!;)u85vj p<^=O湓w2GC,y&T(ܹH̤YweLؚH?1003ݰaCOs2fd]R.,54(e+Igc69L_~ ]dƁpyԦlfz.+ᘼ䗋ۛϕ%BU%3BcCh,j95+5LʬmOO0:{/һ2Ǿ^nڌ[ 1fW+2$seO%KRa_D8{;}Tx|Fư2# BJX[X\bmAbK$CUm~}?uE<%ƶv/X W5kjAUSU5-a(jBQDEMPՔ5T.PvAUSOPd~OUa 3ǣs,}&&AOH_SZ:ءGeAɯz J~$b1$k<(Epx}V3>.M `1~dà `) #F{<#^ZSuo*w3@ݛ޲ uomP7Խ27Խ밄7W{W7%PUNQ6Խ-f6{rUc{Cݻꇫ{78]w]=P汃,'xpY~x7Խe 7 Խŭw]PԽ_|~Gu\f;{Wc1 v**a#JXWK4>C&=_, ^E)?EJIelѹd4U j5z^%8F(buH%D#I$#fvބ] vɾ쒎7_Չ.ه]SI‹Zk&dAާ35S5[<{pכD[u;=sڣ;<́u^mouՑ?SPpB)Ml4-#PWREB&@֓m 3x`4Wp$z|kU4$_-h!Z{|_ ) 04mcV!7?X eFa;p.%tcsp/˒ap0? rl`oWXPjD˺=ْ,'w%2{7˻_7K_Kr4WnVG?'By?i}:K#O33<+\s7?zt?HOx(iԌC ڡqmޱv:oQL1J?6p~gyO.qK[>GRt7x>bbQ+ mM\ʼǟ=ǜ\¤% , ѦLjMJU2Y6e-ڔZ*)ЦLMuB_#1 }\,*ltrq]*4(Vekcְn𒯲L7OrZD2tҮd^u]ɼjpyYJmR+wС]ɼ{yڕ+ᷜI^1^n,wceg͗m2@Wӊ<yn׽dy]Jץdy݊ױw gQ5,,gu/pVgu)pVgu,]7t؊^2.%R2nEX;:H /gq8tܮS܏8vub fX|sjsz`ֳs{߃lgr+ ,/)OÜ^X>ZFh[{esҼgyr!\Oʊ r܇ 'Q @Kq[k=yrg!'O^b! 1S%xqMc~`P<~!i6c%.5<2C Hu;OL~M8q^xeP(їU):3piPdl;^gyxY q9\*y1(9/|OG _-ODQ׭m&JvwtCý}$ϽmxccFGOm-=Td7QKQQ3h 6[ awN>E0]pC!a݇W/f7إnhp?!\heA?a`8"Q 7oސx Px 7d!7Tx 7oxC oT'7f7»e⍲nE~x,[A)(oPw7(SAK>]⍲nE~x,[A)(;xDUo@}P߀7dC}Bxc:L] xF'x2_w7( |)ޠw7F7(;e |7::Ju8d!8,Wp~::mnE~6;nE~2x;NepP;e-pPw 8ӴI3Amp軼GvG軼GvGeagFi]wyfFQʂ   ulxvT ܣGu  ܣ;*ood^o=cc6o4|MT}38( A/Uh J7>&_j4RՆoo|AhN7jQFڀ: ,R Sg_=QotǷ=2ȠUj)Z'.ǝX4#OͨGaT!O3X~*> }ъ8Gd`-:ٶA^wnym -붅:*A^p 8Fp#w}#LK8p s 8p!+^[ pSCJ2*Fz-ԣ^J Oy~A8Lg)\OOtz洛 °FiSO p1U~2k8lQ٧a}8 ~PsɷԸ[[[,J&7)' $ ^ Y]qwڣi<{&L;r&ϚQNg09ڄg` LFXLd Y`8F77 iP y`kY3xϚqG{֌;ֳfܑ6SS9Kբ׀;v2 Gd(zixů:UA4mWM!^bgR uQC_bJ!K@vԒ}Td5,+?O.@`!n8/d ҋ哽-K^ S <-,2"4~X&fQuQl#rsM#^l/EyN>ܐo4[34mU{6O_|X^&^/ow׋Z~0yE[Y'0`ڡnh;YW/l2x'RONϊZT1wgJ=Uv_6J]ǩ1҃tes uD#K2nl!'U y/"Bfz(~Z|D[xQ~PTM!+P/G|l%. >rNɅǂá!$<=hVPwuD?K TᰟQʈ?8x`,^Ǧfcr.<]M"D[tq'BjBn }Q77b1J{: K(j |TZHw26BON{ű6˛ݯ׋%ag]gV7aD~,sɇv)?{/۳?+7ES^6E[wy:}?U!:`һ8- 0|X` 'SAK f@ 7k+ ?.sC.Tuh3b#|cq py[Di/eYIdJ0=_:8ub3k8liR5/=byMDo=~kImk!Ё[:)ٙi&ll0xgLnT&.,Sq$ByFٛFe&3m) 77H:r^~^RMD✽k_" w=ؑDh4MSA6X)TS_ ;a] הTcV{u/0m`#랈+Y`E$qthYhd_Z`U|8Z)(HZr }wMrZXRӵ'"';Ftsj;lr4^=O湓w~ʉC(Ƒa4&U(#޹H̤YeLؚHo䄙nX샰5adeR/B I'aJmҩ{ c-2WH-2?Y.q%\w)' \&o>seM:~x2 Py!wO@VfҞYY퐞uN12GQWnB[)0C]~II5Y|EPɒT5N(TŹ̈::ɭ 1K 6&;+TaVI:ɫ!Szsf~M+'L䩆zQZ]נcemYNW@U'jkȧBQŒ^it"+Դ+k3(jCQPjoPQLnj/YT{IwWPAP屃j,'BeT{ ޺ :,Kq T{ W흎GVgw63F{FT{f^d^ .PjocFPjoPJVPPjoǫGo[j/T{yL+LjP[r:P49/*[ZAl;Cҥw0s_ 4S?:7CG~<UEtd̎0Uvv8CX[:R2Fh%ۛ4ۀ١y ȵ|]s=hL0_@gDcZu BFժ zp#C>~ ggw"7yownPHOx%4qxqr3&;7jf!y6 g)x 7xFgϕYQC;{r[*0+= 琪-#6Ky3Zi =N' y?{Rg9Iuk&"2YMg2Y6e*amd)voS&kqަLMuB_#1 ZYoUhbQUhTQO\XVa^%_e*Co䘵d^]ɼByv%6ڕ5kW2Ey5v%JJ[$^/qO,@ˢ;d/zse\K/i/mMy' 0{ 0K 0c΢jXYl?^2.%R2nEXYoӽd:]Jӥd:݊ӱwtQ)&r_nyy{Sq]q7qnD̒ ށg`=;Ϳ٠=X?VX0]_`xQWh{aYhQl1VK #pQV> NGA䒕 RWO(,L;Kmm=1eg!'O3b! 1S%xqͭgr##pDYIc'+lvUၗ:}LD1~xd"Ïn"y/o-GBDOѝ׏{H"cߡڎx>#RɻFy{?bTj~`m%nm&7Q*ۇQ8(`C|%yxlu7:"hoШ"־Z^%ꯞ1GU V Hs)/ ܥ7J桎?(}xpui~]ܿ7}88|)&ǹHO-N>(8]$0Ҏ#L=ɣwD)‡F'Z#q#&;xu( Yoހ7 Y7o U(p@ pZ+pY8pA*[*vGYz"SANGY~"SA }2aw 8(2pPw 8(;e]iWP T8pʇ T8l6xΌv7 |83 x?}{nR pK66`"2TM!Ϧ#m=ʜܩ݃-i:"~(iGĚ)S[B"zw^צSy͜ްS8\|H1Qq35i3͚N7]6h8ڇܧ-tm d6mNm( PqG&`c PMl]G_ppuǻ>?Ҿ8d!8f\8p>ǼWx="cvtL2v(8wIQ`֓mvmر*EaE_eldeM KtW]ndymiƿDXgEEVTs?&"Xd_?/8,}!?i(fh<چ|3˛w}sWq o_s>@V1$Hr~^,wl+K:qN1D(C6w׳3̳ ^07VOX*C܋#5 $G6zޫ9=%ik]8u5gzWa\G&Y"/?.oo.hqf]' ?ZX{2Fp%j ~Q<2XQc{]/1vqfN'ntZ=\< zv G_.ywwuD?K TᰟQ̈?8x`,ۢvr)Xd^GQ/&SG^q6~yfIop̚`I~ ,SǘOg;gA=[??R~S4IPVCgk fS`?]2'$!d$} #jrq͞ 9gl;5P5l:-S'UT,Tm?ƌ<ʬ&|64Dk/ 1d@8&́tYKpJS/w׷7ow_/LF?+t&n\O{'w͆k3ɱ``Xcl/½rSHVT "OJOnRgc8ؓϗlJzm[c]#"ڻ&)oHʄtWM?^cq9~5"T`E"MY*lyD>jL'E,*<45O+B™EM(c!=v<#NvaF:%2V>Fhgs72%ejtsLsk@a? G2<2#UYq %{"kBhѭrtW֤#>W`0yyZnq{sqYhmWП)$(,dmG+W5V2 9r; *H~e _/.K!t#)5Y6ki;dI\;>9U;Yisr뗪]mtЩ|lVp'e c7z]+G\B7R=BSRVdR3YL,n~[\~̺ܼ0 r1+(h,<^X0#!',^} ѩ`v}-2 4W^l= ڔK Yܻ:_}3wb +f^уx8hf>`[;, E%D8Y.49AKQMo(oQd] quxSg (OKRB"BnUMhiexe.tgXǶԌ #uLଓ9i\TeHEh;GWk!ԁ[z;&lͦM`p Fe2k2me4FgR `{r'] c欛CJGqtGo@qtgo@GUNQ-4[jԷ0רoaQf9nlkuyÈ"}-+-m3JdB?#΍GI,u0\hȺ %QU9K"kM%-4k_%>+4l_%>+4ݕU `ZiޓdI󪙪\U}93S鹨EhVXp+WGJSͷd|{bo_OesyT!G@ζ z&=ԉn)%c=gXϩͽ9XαzvֳA{ $˭(`޻Wo6n1\1q#' zq*2[|oۨ%+aTT9ڮMVhBfD蝓Oy#sv8ܐ*Av:lqK{{R'<l[`e?|/={Έ.("l7ƹppB&JN@wUU#QGڟh"~Z2=yy0=EJGoM~Oy0ѷ.^>ďϱ6kѥR⟃68*7(_[ Ij(8$a}4i4Hcp649+ELuNDpi5}ڍyfLvhMyVLF+Df<+ƳdDs)C2t Gì?J%p8MM!Ӱ83ҮSߐ;qDwr~nq~!wF^M5mTP o"JC>"Q0&f!~MKdiO ?=pSnr&ܸ |<|<2znfyiF&9`KܼoK ;H!7/M7L7/MYCn^AY>&7|C.*5Ò|C7{d?>,7I$#*I6V_dIL ?ɲ|X2'~ɲd ,ɭd%C5;|P2f;LCO4hC-svMcײ^W$1Ov0ȹwg3ۘ;e;쓺՘;VO[qG{ڊ;VܑwbL`Ӝ TwNp={pOESu h2e@ˀ-Z h2eZR;@f-Z.7 h2e^+@g)?xY ,O#un0᧎ &xFv?OKc>  z0Ve]{S?4K/,{e#+{P}@^[칕L)p'÷ȃMX|*zC'>j##v8g$2b9$bSQa9O.&-x:QI!Q oOE%{1d]BVqe#՚EGMZ'L[m dg]g s`<%~?q= ꗿG?+7EScj.?w<_o#؈. !#[T5/ʷ7ʦggekR"oW_T-/XbS./8ҩUUػF}uc2>Bje=]D+29g6\}. }{,7-n1 ^ԃU*'͞agW94ZEBfl1g_y, džaxK |7 LB*g8[A=Hw51xC~L'?.sCZ Ocm6Xf+ٖV!Ikad_ `m$Lyt>`˪v^>јkJ'ef!h-Fl^ Yc2@A׻ſ]|6diwyE:3T| `z7%y^ cX*(s!Q#(60y{P # ȏPF#U60`KO"BnU d}Gt~oV/R32L#Dkϗ1 9| ȳn"z۬kX BD4iNδLաꀳ+m Uљ6Ggr2uqY2 Z#`6`&M\jCfdwۛՃL9Aan/?/6ozn&LJq"_I!޵/YP?bp֑%Dh4}SA6X)TS_ ;a] הTcV!{u/0mɎ`#랈+Y`E$qtNYtd_Z`U|8 Z)(KZr }wMr@XzSlQp^ntsj;l5YMWOǓydjizxDz1b0|gR{HQ+LuWDy@x1 }61&)KjeQtB=)>]_M:pMaLEfE'؅6c.3<\wY+Px/w׷7+v$KrG@1 <N,`R/-UHf!/J j'&ܴ|%7knRp@ʽ^ܛC'ҋ*}BŒ^ڛi^!&Pc^(Bʽ)f# L^Pǩ6=*B,TU U{ ^AWj/T{̠ ޚ+PmP\[ @54+58}*{<ϡث^(ʱb{Oix:P490|G` 6!28Yo/Out3x:yO#?z:N߀7*Q-4[jԷ0רoaQf9nlkuy"/T[VRYHZ#λ|z"d_6XN"[~[*U*4RuᡨtֺJuʟںJ㛏(:Ѽ'6UBl/IyQ##W 0/b2Y'쏐ǭT]HKuԣ.w&RcⳬF\E mٹH!aƃ[h{I6O_5]LbmY3[Ipv4e؜ohfyw{u~Uds B\75?Y̢G&+):[h{*ժ7ʐOq?33;sڼw.qmHOV<ݶ̚1y~?W;43;\X'SnHτy`7(!=-*= 琪-#6Ks,@znbF84"V=0ᙕ:{rVLoS& з)kЦLVM*Y2Y6e;md-hڔ\*52GB_#1g*ltrq]*4U$Ua^%_e*Co䘵d^u]ɼJ`yv%+֮d޾ZyUv%JE[$^/q,hˢ;d/zse\K/i/mMy' 0{ 0K 0c΢jXYl?^2.%R2nEXYoӽd:]Jӥd:݊ӱwtQ)&r{nyy{Sq]q qnD̒ ށg`=;Ϳ٠=X?VX0]_`xQWh{aYhQl1VK= #pQV> GA䒕 RWO(,L;Kmm=?zBNg he;BAcl#J[ϊ:FG >z ųGN*o9V" X/3tTwcD^DD?^̍[}XE;;:EƆC}woåw ÍBĨ`+ղJuږMnTlw[|qPL,ۇJV8ƍ7:&ntD!6"Q#NEq˝}c$/XM_=c`ӽZIUzNSx6u^I!<#!>^柹K;]%юDxLVd p8}/8A]ۼ3 䃂CxԣRGZSK"9yڜ(9ᴑcוmȸlTug{_weUMyeՁ(Cȣ?(O%G&}eFezUe5MadG,ifO6}&J旙9(dRs~ɃbA_f/5Pj(??hSA(5P엚?(T, 揲#lHf??(R~f1clXf?Zy7?R~fbc,5'R돲DjϘ?#5) )TՆm6@ WPmjT6@j PmjCjڟ PnrdrP~(7@ Pnr(7tUnЦirY(7Է PnrC6C -pCnҥNV"pjìevRoo#Jgj:C=+=PPK-Ui2S5^ *]6J'貳2Zvh|RA^P@ t\OPe\MPe\K]KPa` LˬEi2kQ=c-JNW6]*jF0u)im='ںY4\56L;dl99p:#ic724Mj1xƴfy8T 3xπ =hv2Rm~FI(#6zぱ&re)EF˹xtq4nӁǝM UJxx3G܈x*9iXrAP*@\uGqf"oW_T=Xc:L'e3:n=rFKh7F^KD+29g6\}2. }{,7-n-HYOh2{fyQyZ+Yhy> bX<=?Wo" {<žax|7 LB*gxzK qC=4?'Rjr`QC;{+= 琪-#6Ky3Zi =wxEdqL+ WWA`R]-"!ڔZ)jS&k զLVMZ2Y6e ^mdZY`jUk"fUfEUQEr-[c[v{|u!h yc"yv% Jqە̶̫+WnmW2oˮ]ɼv%ڕ4k9b{,ݶjY1Sˢ;d/zse 1ґvZT!u2*h)Nt vN,D|dWP,dd96b/Im}q0Տ|=gߏ>$TsD@W^fkmnDzWp:_z8δk靚b$$q" I M$PVWw["νppx Cf'd՚7O(וּVB?Ħ_Z??u GY'OR-BNJ[ɷdVfVZ׭c;Gd86*]d'&d^vLRh8mDS뱥x%-2C/EǕpӽ%Z.;z)/ LK钏 \)mȓ#iP'/3kRٍx6xfx!/Z2Uv\^$ߌ/H_n e:BbcԐ?d;1j\ OAd\VNֆODoZyW+2O(x'~'~lXTyXTuX O:~:^ďWyGAs  KpP\<Ep :OpP\ϵzP\ϵ~|?Nr d8 p@pp̔~CG)h1C  gP<4/ּ~bͪE\SX83y9lrƁ8#_&Q£xxta1W 8Z 8@p| 8Z 8ެX*,O51I3ޖ@.NGʼn( iC Hէr܈r'g瓛˳ɲ Hhk>$29/2{O.<,x90낑i[:O փaUv%C1$\|Gֺ {g ZQW6inogW!E:&34XH˧ܰnփupn[Ka3^"\26p_q~wv| K mA5udw>l@ Oܚcjnqqݯ i/]/~Ⱥh LFѝWKCshY=+ G Efm[u,#wEahow3Y .?7ZV1:D3M02Fedc\ѵ' ,dcAf90 [|We>9҉a3ȳ.n>@+.^Zn_gfi2_ r+we>Wlnlni:"1"Vx [p1maī8юhHpwȵVI:@1eק􏾢)~0E-BǏAm t.3 J@פJ!yEB@ !POCyY}ulP~!3Jc wWTOМK$m94,3B+/3g(n3}`X'zf6Vdޝ7Ґyym<<;<㛕, $h+:μdgAvsv{}uruʞ!lYz>͌p>?AsعNF|=h7Bj?|[}`FiG3Rw_ao9 ẘY5)2rt>6}BoWJ27wo]ؗ6JpWa&Qykz ;Ѝεn^;Gjk W-ỞSr^nTScV56DjV՗Eb50:E벍pmvۇ㲑SjG}&w)1]o=xpca`eikF#omے`|W؞܌=6og&_hZ79iXbƌ"NGGUʬ٘p߻gɯ'7W̌xt|$3oh!)m45-vuM4{B2Ũ{s/K;0KS-1blK*q?h!,])3MTwco ~ -ߩ†&3֗V|h9а|}i=,WL!f2a_&x0HP"wz$ $ K 0ȄLlȄA&Sſ{&l:P 2a d l 2a i 2aV  >&!ZȄ1MA&ȄɄOLd¾k&ϑJ {e02a k60Ȅ40+ L`C LX kd˜ F dd1l R+HT\!ƲY>;&q}֠zȞ:WcCL\5/`a{ls\K>ב{=4$|5ocꤿ:M^aNx|oZK}Ǘ5N/|#+xouKձ}cQv|ulQv:}ulQPPGߧ?J#K#5ȯf/XTӧӻZ/IIf1b߀{eO+gձ! ~ +!um rɆWw7o*C)]Ndm{ځZӺIPgCy<1l䷽pr2y#YȍwдηF@KO6Hh i "yfa >ϷhgJ"iJ* ηGf''!q[@{f+O՚L|ӨaaCNZH+Q}> rU&]|6i>nDlJϦHM 5>d"}6%DlL` u=1$Pd?n.7UB ^},vc慨n-u"s[vA$XmYҭb==AXmzn{h&I#}?k}l%GL]nϮ>][+C}b{GPjYuy2A3ȼCzwX M?VKV" .;%dž*m%NXQZj]QJ"ram6(Gz_M6)6]7혤1p"Rr #cKUII?VKWd_>a+{K\"+ cw)S^֗%7R!ې'GvN/_f¯;3@oڒ^ ?\hxȇ*;.\/"&# e:Bb[itVCcTgLmwul O|:OmcQ:^V;'zڰ'2l3zZ^llllxdӝl&1 x    d3/ ol:m'ѱ5^{ w<Jlo4[#gxuB~qby%Ot]66P$%6L^nc w\hDV&vl8_nե+,H*˻*һ"OX'"OYާ"Xg"YB٦݌gӝP' eI}P' e?IPS?X|BOa"&)BOa"&)BOa"&)BOa"T&BOe*T&bxٷBOe*T&BOe*T&BOe*T&BOc&4&iBOc&4&ibs~줟PӘ ?PӘ ?PӘ ?Pә ?Pә ?اBOg.t&BOg.t&Bo俉P0o"&L &Bo "ː~<%|7w=f2149ě7dqCZG|(zJ2pA:9[9D^]cJn1ȝV(Nyp޿pɦ0sGN&dsPm.>,ӏ'w'XϤ_./ϿT::[=>}L.hƣՑt"hQ}xm7xFcEiAX#آLW\fBs#Fq>,yd ClwiH+=iOQ%=Y#i}/ͭy~[vYI_~I86gݏoP!ϊkښ_H V{yKދ`|A˨E{9o<˱8&g#.ޭ6-!y?kkg<EiiJo[ĒBmi;reszHWEfxx l+i9MSBv0/kh]=oN#VE\_dPM 4oHʱ p_chٜ/aj(:5[V}WŢAN.Y"_,*!p'seq-=ۺZ^]X^]ŹBCd~:-10zy ^rDvaCrvpqYV kc?]ނ+`I8Ub){eS5Z:wtO?WAVV{ƛF2O92=P sZfR4y>VvcE$ "`tVd(v%cTb"(P^-chd'_׮X=2 Ǘ[Ěp6|e iB5sn_!L |-0,m22S( f~M3;LP$jF ";,yL/}Eڏ 0snd-wGdk :htn߿o/p W'cb~RBoa16l-~s0aL% &9!(1l%zMD?Ua , X72&Tc `Dܩ%̾^]R58!-x5V ;B~3f i#O_`,;@oVrzB{KoڥuD= :7BgItf px0Af:ȓpάšuaɁD8x#It9 @Q54top9 @qt4Gɏ0a1>\c|80\ţ#ReJV[^̺k?ڶ&hOtw)SZߴY뙵#k ud8bINk~(Z?V'9=J +؋܆%Pj{堭h[$xiGrوzypy~ }O ɴ*=|7dҪPᏇM2T"^QZ~ƋH S4F";2Ev%J=ە,e+YlW(ծdQ]ɢTEi=;:bDOˢϏ 2-V淗w ;2=xkI<~3i^y*%kRyjEkXyg15pNgqJgqZg))qև:|E5Q/Y5Q)Y5Q, qP\ ^\vBu{@pz$)U R{A^OP{ P{>h t),uowͺ}!~/o8a|-4/Gk¥ PHnuI8"Gp.F%::<z} 8Dym1㳎{Yk{0oނ\|X a n0NK)^^/#- WݯX=EFK'QÆ RŻT~*8yEE'JJ&''"_gH2c;آg7&Gɢ(\?Q-Y *]J>'Ju%:nxe]7Ô,kKr^s+ +t@#p#mDJc'w%؛$n'eTV9^W_^ANٮT=vC_[e_*3m6]m';$X ٮnaDGr'_cb@a2O!c4cQ7ƤX>JaGioxd#5k?n&u)58LlUͿ,VݲXx0B[+~g7ue-xue("#怜=6Y7Tf䍬N~*=9<4xpHlԔ)OMW{:j"0!fh#'V4hsb:J9hFu7'\߀LG+L7RHQt>t!tTsYKhMhFn8 X|kF9$躏 C:hA%} &躏!C:hF4MP'i2M0 S4AI Z:d`HM4 JуLtd`Mt \A7 d`MtM|A7!&hY2>d`>hqA 6I4oQh:@s-<BfFz A-? 4aoucFZ(DUJhY{t |˙k=H[=_6VB +aH²,,+eԟ3u= #:^ z &% .O27 ĥtK&S.jj jH @uzDa$) %_Sտ|j:T~iK@4AP"Y@&uK{EfɧsRx'dJr~r)~Փ"R ګN֤j {47,qo&n켠;+ taAޏ9xRYrMp~ yJ.F< v}eJgXn^dSKϐlr+lFYbewϼgѓep?,WaLk,&cHY܅؞o<s[9y?>ƽǭ`Ĉ*)>-X[߭X,"{Pal;0{P2 BVYr*'M<άsYzɾAsEfel=4~/G>ea(_eQүȜNM09?~M3;LZT1r[W` [կ ٮ(63by }2fZۍ[߷ވt=?p>]AQ^Q3M=MuE6}/U6de7q>vqq; (P&0 p|\r]0DhZ,,q W.! ,NեfXzpPP!78~ĬsxfnEy3dC}RwoMhf`6gwgO e:u|F262ޙFdۋR{LwWoQp&rS&TtP{C^#2XnJB,D,".<|#%X=mPfz *wW=L~ԍS2d/(? lȮμ xmm-H4akBK9~mÎGl:FY+\r|LjށC3 f͕37am^!(hA(Y'^6!.:bҰFRln=dÙe̬on'F.I)WxʜY;O\wuRX3x˷ɿon.*CҕϯMRD(589p.XZ"^M#I<% VGջRhVǃ};+rvIG16'ux@iPR~MPɒpW56vtmXY"Gpf@) e:f,O6M ߏV#sMbBqLǍ86a#AcPtHG騑ayrQ頑}hJ?;BGSt4EJ{ӬhϓTG̏;9ӉHt?(~:yV7Z 'ɛ4dclsX[PlQU2JVzyY9u[s:NcUgKґc ZϬYU#(aKrJ\>]_Oia+E7v {{q]$L._.^:B>)nv Aλ/5#¢\n$)ӒE"fL~>Vv9/,pVxHvC̤Bc ,2l`xK.'f< Iާ~9Ɂ8늝KguᩌLެۦL޲MUJ2y6eBVm䅠ڔ ))"jS&7ӪDܐLBqC& UxxT,CJ*+UkH0Ec*c-#YlhWh=ޮdQس]ɢXfEv%\Jڕ,JH+Yfjٓ{?/&L,0)ӲhŞa~{xWoLة/#ӎ+ۚǿ!47y%kRy*%kVyEJqSC gqzgqJgqbџg}WT5Q)Y5Q+ZŢ? Б@EIm^rU۝ _ nQu$jAj/~ bs j|7j͟|3՞.ŀYo޹8h7 N- ɇ T?L_;p5ZDk佤|=l UKUg"n[YPt lrr"2eց(3-z~vor4q'sDYd1\wQ(0*Օ|AZَJuݸKSv\oG%_ю.nҏ#Kz/ l7̮)p*3ߕs`o=QY+z\uKDq./yw7x0B[u6q7e%Z:(Iv7T3ϏPgk'?tBc%cr=囑yp!9pIn"u9pCQS!!AMУP5t#&>jF dD} 'fb 38Oa9pfDP 7m`JkJ XH/z `G/z hFfz pŐGt B7 CzJhLϨ?f4gᔆ MiJO ?5gZ Y,gد d5 F51A6f`]A؃AB 60z;l_@ G ~#~jHҿ!3oiAz~?Eh 4 4f?c/ 9cݧ(%w\1uX[$׹Hm&ts:Ws-Sӹb+ֹuXuXuX\\+++й@\\@\׹+й:Ws:Wj8+й+й+й6u@ >r`\\>Q6h9N!}BFP!i?rtЙ +;\\:WP$׹k_X; (af+ \. X\U{Ź\\\\A빂 :Wsӹ+йt+й+)s:Ws u@ tp:Ws:Ws:Wsm\|\:Yh0,} Q\_B\' t@' t@' ~dH/!RBLKt@' J:Y:YP[}W?n߬_~ܾJӥNd1tX'u ]'uX'AdNd1Hy,b,5NdNdNdq:Y:Y:YdNdq}U&jOBsŀӹb+ֹbt+ֹb+)s:Ws uXup:Ws:Ws:Wsm\+sl:͚$ XA& sjf#Xaa]`$(YuYH Ri$Jj醱 P8Euyڦ!K^RBM TT%Q%hIXPKY7 _qƮFAA^cj|]0Š dԂ@hT^}~l k$.[ o޹" /i7Z.BFIKEAQ@׺% Ĥu+hvs G!y?kkzrP{6;E,)6@vm2a}xa4JCMG2cg\ G=Q1汃?<{̙?idf%@O>kh9@X$z˪tSCndSKϘS4擵6+ =K6F^Ø=dl|]X9Cah=~co*[U:UV}{|[1XEaF˅<9N6x/` -ñ/ X=DS/Y9 I ԣ ס_!7?4~/G>fa,_fQZȜNM09A~M3;LZT1r[`Ш[bZVvF1ܹ[1snd-wG ߋ\Ϗ%uOWvbai~MdFj]QM˭baU(+ yMבBL@w,P0 a#`4rrU8>. C. h 3@-W׸TM%:ᛅݩ ;B~ 3dFf#ϑFa\c|80\ţ҅ekܕn5s?q:[2V7mzfڬBE9XSBhp#y6 <'g=BԁCeK<-mEwA 8F,ףnO];Hnx=E|pJ2-)ΈYݼЌ"9񽬥m dE+ +z訔JbџH "]L$baN/Ĩ:AR d?AOP{`P{ P{>pjObY7q⧯ؑ].1َOO TEњp,&/uI8"Gp.F%::<zvɳu[>qr+]cg-&a ߼y}9ݷAaR^GZx[k'_{^hO w*b;UWqw8N!aMNND&:evEnM&ğr.(, . %Fo7H <^qaʎm㈼55%MqI9]y: ѶX"1Ne滒MR2*|]/rQdv:\5v:vc7:ZU;fv­m@<$Zvv ;%z&ͣ'_cb@a2O!c4cQ7ƤX>Jaa͚hoxd#5Gk?u)58LlUͿ,VQ`/*ڒu6X(M]BDK;^GrY@&7Tf뻵:S)F桳a1< KpbAo >OGc|46D=h8ci91=?e|?4e>c~>Mvͺ{rLW GhoP6hyFF!v7hw`kt7iw3 ݌iAxAr7AfByPʃ̈́ whxnh 0wð0Wn&L] twӈUH7f&@F6Zp-vP!=VA.7fs<-4E5$g~DNCaRDN+?̐VCꝂPʏ@@ZilrVƠ]R@N 6#n2LRi姙5d WIC^ћ4ol;GGhHo|^Cz渙@,A^!=A!{G}F/m!足$N3s%!(|EQ`Qv5mf74VDhQvj*Pܐ&6F9e!(lؐ٢ӎ@':et3_7" WytrК;2tcI A17^\^4R1$ 4_PKYWx|=Β`q!٧<<|dԂ{ cKyw^vu?Gоl\l]'3f"G+."_\|Æ`]~9'g_;!_o^B9%`>ü%U]2",r<~/7mBk+oj>" /j7B5H "oIZT^|wԳneG(ـ|Ip5 +\KAimKoǻkϸ6= gf4uwȐ-Mҿ~umpdzWaZ㓱*8ǣaY"+,6X4iFOy?kkzU{C%iJo[ĒBmdg&SVJ wN銻H3M7. 5Ɍ!q0e2 £O0%+G%=9 ktZTz6“z(i\DQc^j_YLklG41,ݸjV#K]zՎ.泃@<{-~QrQgrπs$#jє yW<+^НB\_dePM }4HMOCBw q%gKU@r9H l*oUSYM=2$G6Cg6lcoȻ޳Zfefrze1e&G6.0?ʱ7de=8nET>YnŤbaY߳(3mg_9dJ[ca<##V$˩`62-} <^DW_!/LcˑϺY"pYT22S( g_Ӭ1L<[T1r[1`([b8ZXvF1ܽ[1snd-wHNc ]ӕXXx}5a$ٕZWkarAXa0 Hv^v?u SnP8 LrB@`kF@ Gp|\rm3I#0$@ cBDž>Z,,q8 _.!-_ܜTf_z8Ψ 9Lj|3;+"J6A,@tѰIά4"?ݞ^TҔIR(s` e6vX-xpuZD2d#$_ˁ|QB߳I~z-z s4Zגj %zIHZWj%zPu&Z=%jch$^c5R3E1RӈjMԸSiEx,S5zA@GzA]@QzU 쇦~f6~BF/ 5ф{UzAƯPW3M}EF{jm%P?Vӿ`|~^`f~W QWP?Ud/7zj {jZrF=5K8v(H~{7zjbW6&N_٘z}n_2rp0RWCpVB}X^':jWd/0W4O43{U{Ei+Ja5`Fഭ::Ѱ?{Eaߏ{p_^PH18fCmMc)߫Y׎^ͺv N*PWPhM5p ަ^W'`|H/W3M^v OCW+jMN2 WWPo_SW+_Sp~N3W֚T{T)޽ɂO:M}pp A\ehU8J1,Um*Z**cC9v \Es%HCP.Y' UaX\E \EM \E~4W|6WUX6NEt>>>*b8-tUR x "H> 骚t5%!TQ|PWU|Rw)O5>;P5*_ap|Z*S )hTO*UUSUug6PQ~lWըw1ݡQ >*D>;R4*wZ7wǪ,~REUoTةz~ ^U=3NC5Dт|WU|WU|WŒ$ࣼσNy~a^U)i^eAy^u~^u4yUiYf @;; U4esQc&T"h*B&Lgz=?ӫM+^eUN>WGz]cO*SD1yeMyޡ"?>ϫج UWPU, ?ϫz`~Wє>ϫf" >kcPϯ-|P)R |U<*jU<ܯH1x_b` 4[Li^EWӼ&qi^E;Mi^E[|Li^EJi^ELi^eU`R |S*N@ >˫L1p_b;U)֯H1Qމ" >ʫj?wMQ^EMQ^eal'no/'W[T7#~Z#G g޶&-Og{ _2d^#L r,7ux\BlmWv! KɨZ[Y=m0KpU{L6.luC 7EKHI@YlN߉vL"͎MG'3;*5lώث3Qӕ%9%.nﮯ\qŹ(sFՏBk yN`{'pZ wcmY._.^ ѬXv Ϝn C^μZs]2-)ޡgQP#v%{"{f!rE[h@ hd1LĮ*0l`x?~ٟu ʌ`݄M$bR`sDYd1\wQ(0*Օ|AZَJuݸKSv\oG ߋF;w?/=;g+=o0B?7"K4ƞ{©|WrρIJpRFeup%Z." NٮTǎ#{FVKʾTaglXNwR $X ٮna/l^,~ .&_1{OqB-c&O2Y6sxmi֥4c.Ky183E+FhKzt`v#b7MeDK;^GEhbJZD|*c3\ݭ`xf۽J&145y޲L=HS'o34Нؽج&O&!y?( Ft& (~pQ5qH>nQiGYp)p&QʏGL78zL'5)#HQB:=]y < Y7Y 7ȧoCHQ7 ȸc7'3i߇t~Y5q]~l('n%?zO1dFahs vC 0 `L4F-MG&ir:LOjI7Gm"'2O>Z&=95\f#˃9:> 99:e:: Uy<]Q1Gmɇ#|ȸck~T#]: #0#0:#0 uFG`4P0081C00:C0:2LgHV%>G gMh-K#phfpM8fF(Oja4`)'#|kzo++F CWt+zϢs&ho0pG/wu-at/Eۉ~&YsFw:P^GtKGtFfҙYH=@*0>8ĞiHλ's'i'_=!" y|S^tb[8w$yAAޗȆ7E";V[;\؝Edgvu\oC>2|WE9?̭o7=NsT~R(dQFMhmQ` WgPda[TOX* "܊5 0i] &[@3Gl@у5 +\KA:l=+@ D\]=ݞ_~]9e=0㬻Elo{l;h; v7 VTaYr;? V`-(f$0G݉b{W~PٙɔR.C.?,wCMG2cg\# OꡤIrIEAFz[f@fZg;aUW-|x?%qv ϫBP{Ιfi+f֯Pd}ލHpSBw0/kh]=o*Jh ~#.ϯgxGRI &rL@` PВ3*P\ E7߮Z*L7Mlj)M,x،26[,{Vp!76G^'Ø@aɑ, +=x( r,~6}~}{}Y[UOV}#|[1XEaF6@1^l3G0|P0E&TyL5WTyBx񇬣;ܢ٥dΟxqRܚ0mkch1iXf]M67Lef B7co#+<{/if]"s m۫ʸjtGGeLRE(549pɮVB"\$]i̺R&|vLv#n$kz2Qn'GхZFr%Kِ5;txXo"Gp6fĘTShNn>`0Kl6bԚ04x"N=p$ ̝AHE#ydǩ5y Na脾9er^cd0əs%O>>ލdٚy$}ƛyNdNVR4߬_nM,./̦/S &}F0q/u2!D.5F3/g/OEttGDb=ͮ_NóAq:s8:GGɏ0a1>\c|80\ţ#R%јJV[V6Jfޫ:W <_c+QIfbO>rdT} 6ӾJyb&T}dغJbtG4*ƴf]'KWTtƏ f)KsVB"Vڬ0VU#(gKrJ\>]_WOܺbczB޳> z%+$G@h=p${-mEv8F,ףί)7cA?s1|y+Jp+9U'Ӓ,UҒ͘l x_gKu2ܢ(3J:(AY*$l^3˹HYW4Iog!ɛu۔ɋ)iS&oئL:M\2y+6ebm[nU{"nU eHPErWcW~wIXhVEwe$ Jە,+YjW(dܮdQd]ɢpEqv%¹-{wtbńEf[ؓ=o/͕!BxpO;xpok*Zp0L橗aJ橔aZ))aYL )ŷY%kRY*%kVYEJa_Q tK@Gd tTJ@Gh t$@Giab"'Y%N媶;%߳mNrT-HYOP{Al^?A>3Ԟ?C3Ԟӥ`ֽ9`:;w8vdK̺yӬz!yyQ{&\:YgIld#zhT1íc97GM :hC 3>8h7 N-դɇ T?L_;p5ZDk佤|=l UKUg"n[YPt lrr"2eց(3-z~vor4q2sDYd1\wQ(0*Օ|AZَJuݸKSv\oG_ю.yÏ#Kz_ l7̮)p*3ߕs`o=QY+z\uKDq./Թw7x0B[u6q7e%Z:l}L 1 {/&rFl_mvɞWoϨ?945R>x؈wHM2#O?hF?jo#|`t&z.S14!4e@ʀj?h6 Ad°?j֌@t+pWL?.ݷk2uH٧?O>GwɧGK?O:@wOjke cf G}f֩pTEM7t1LFDwFFN5$`ZM4B3|9XFu!R?NM'q9}Їf WٌnQ{ 1u9e RfQm(ӍQu5U#2>Jq3t1n.@8]4$NO ئ!9p4jFP 7J bF| hIHͨ=b#!ةg@0!=c1lpJCz&4ş3Akł3 _r@A\hJ 5_}_Ԍ^/X)V*|Eѵ_{t޿/_{4on'T%,mkB=2- fRZѬ2aJyldz9Ltѐ<f5x6#lHN7lg3rdՐn8Ϧ@{<Eu-möҵmeaD@E8-驡ٔ<- x6ų1=CjHjZQ x6- "- -`]QJr: jeNo\&lbUINCΫO_fǎS/iח_Ү;M(}IFGzIPH/i7CV%F6csҗ󕾤 cs~IcA@G:X_ 间n؋'*Y$ ]/xh"pX%lhד"R kNR-sv{yT-T7q⧯ؑyAAޗAɾS$hEÅݹ[Dk{o gҰۯw7WwIf&|y1秦v~yʊCLFN~6Z(dQFMhmQ`VgPdKQbR$RQFﵮI1gݜ?_*%guaX] ?pe^-ysuqxw{~fv!WÌ揳Iׯﱽ< xv* CKt|2VQgxt="+ZcWXl2k5D4\OkOH)~^OZ)mK iL)2@9=+"3<<;sg38PӑOnS2DYc'CcL VJzs /b%鴨n!/4 _. 1H/Zs߬H5~f5z#_[en\~5n> G:drkh9@X$z˪t<ɦ1S4擵6+ =.\"52=ƄLdl|]X9Cah=~cwo*WUTV}w|[1XEaFE<f,A١a8^eh(T8O:_*\֠e+:ԃ\sU}:I졙{9Y>2 Z6 ւ_FtjYku. C. c }F @,͢TUjg?w 1Qϔ♝DyVbYO$bp+w@.,mk2CKpU{"7s-^[Zނl `Jl&ھ CxmmĮb#Qh e7ek[v`;0+lbК04xv4 *aV{b$ypGI6 J!,y$0a\3eM!j C"ݱg:b#Ҍ/bk#RLtPꐡ~ ?c:f1d>c3) 똡;3 }O ɴ*=|7dҪPᏇM2T"^QZ~ƋH S4F";2Ev%J=ە,e+YlW(ծdQ]ɢTEi=;:bDOˢϏ 2-V淗wyU!~_F<W<5-B8io& K0Od TJ0Oh 0O,I,5R)Y,5R+Z,Ţ?%0@:%kR:*%kV:E#40w1,ǫۊN媶;p[p jD=I j/} '=~g=4T{̺7^Pgfy?}ǎrY7v0~Zu]/$h"/*}քKgYgIld#zhT1íc97gG~@Xgu'Q@n]k^$L;ᛷNڎv _pq^Jjziu&o寝T@~y-5^R>6L*ޥWO\YwK-V~,D(:ɇUWr699|?@ =? 794ʹ[.T(|NOJu -lG{%ʺn\%);E^]rgGrɝ^ٞo]m%Rc=Tf+ $%q{8)W:-h8v]^؋ ?mqwC #7MLzrj FGM}(? P!nlB,On<(O4)ON2\%d1]鶔3zfA5-BZ!e͍J+42/%qG"|lWcԱ]}O("_7aMUe>t%1$ć$w7|uaِ$ `AF?2wIY bM;4T'> ( HʷH-@ӷH?2@[yw5& PQS]1dy֢&57L"P#',gwMrͽ! (f1'FZ ȶ;%-ȼ>H6yr}#'' 5 0]5 7o% hN} dDnAP~.`=rFAhT~6dǍ@H<YiS"F`KN@Np``6וmj/~PH  ',XMOnAF]zfMz&ғgOAPKzQ,=~(IOn`v)>Jb EMdmr!3G#qsB)4ף&w8%;"kH.+2pg 99 1-"xd"|dyˆpԥ*$1y$'1 @jM)9!DQ8~ې#EN|%  WdfSLGZ~hLGIn<-@ł4H^4dN)( W"&D{r50 + eO Xط2JWӢ͍ =X\J{W2n/Jn1^7I=AkB!|؃l  xImD('^@.!礌d :Bq7} { ,@Qk݌Sx\5R;wWQ-Sm ֱ!LJb}8h%)Qo\r$JSRU UDt!C*͊Y6+-%@/imrMm^+6juzI示$#2W B8oLː#neG^KRG PbAPҀ" QNg<. VW-R @g{Ʃ߲iCQwS< dNJJSMHAM!p My[ '$$Ieg!egDǁ^|%'E5y%w͓K(:P]"ޛH!#NX?^yr "CnߴؑT&9q_)!+XS'zrr'tAP:YF,(Ajt7˭== Iϭ>=E{d{զZSiXt>a5*<"zo&x5jKg('ʝ-,1%{d]WnVdy:}[Wc1Jۿƫ݋b? NV~17oD&Yoxvnwd5j˛Ϸwק1419a.D{̴_N Y8؛U<*.?N//wwRKwr_|goziy'*v^'cį1bH%=֊ vПzTIWAmt|::M/9{X4ցySy}yvwp{szE=OC 3xtȐMU:>]|۸΃BM}avc;N'' ̚3$f`)ЋQ ݥ3|Z -V`Kr<76]03y}c.L38Pb-nS2DYЊ'CkQIOr3]pG:)*fAKz,i u8c<0(uB d&4/_f^?}a^ ֏tz@Ɲ;L7$YlKaof,ur.嵻d7?/%_0~ufFp3U ˇkTnǀLbj#)G*F3R_28xOϝo~q9G^^|z.L7\K#C؅`pP{Sq2|9r=$ݶE69:Uűb]vquBD++zBIk]x:Yfo@cPCs~FSosci0,D[#R*Ko`>nN}ܗ+Prw*v9J\9u\U7ׁa* G! 7KWErxi4քLUcmV)4zv{Np (Oޞ?Rܥ^wL]ߚG<skowjZj +m0Unifr6]@-&_jll3-4s׉FR2GlfnNJuH}0Zy:چkLR#JU\U40IW&R*$R>x-%N-g2;R ҹZa䱲%m#oZՃ`8o}(ja22T-`?`M6CxV8+1SH'H pg4QP8#kH9*!2YWl6VKq֞zl{?Cmcýv x+QwV Jz}IZҠ$BzjTa5/|~ PM")QVJU6)rYQ(À҉QhGQ]ߞ:}yw}б |3ۡgr9ݒ19ŀa~Yjk V _%k] ROsO096S2jz`lFp <[ 1X՜5`j9gWw_O!e "T([2@A)E)2vvr%?X)+]MƤ MiEࡢL kڪ3QWꇩ:}VوqR(hڪ3ڪ3Aڪ3>3Ϊ3+-:kڢΈhHcoQ%m o]B8% PBh gՀڋ B)vm a%!to#mp=k%6FEk}^PFef?{D1C ej46hy ACslX{E. JkG4ڠa[7zϤFCCc1r \|qE^(p]R~'=D`$cvNבz3vh'Ys::kI2מb-\z2$>nU3 @*DTq\N:*[= {{py{462 }EK2,9.y9!)o ,6lj _O.~|Û)/a B@nirb4rrz^`@.w W $5r=Ye` $(8҈z #*2/lIfAf9^JChCBf0?80PC˃],A7 T1S.3Ȳ{Sz_<TGGP<UQySwJu7%-QՅ&J&9"0%/r?Rck#,6sJ]||q_ib82=2^y8ES  tPѤr=̽QI*ɔV@U96aTT972k9kP+ &]- d!܈V9ˉD!ґ AɅJoX~C|oCעqtKXjld;HUqNHN"G;@A=;:p=n~)k qf"ʣ6d*9~ ge@^: n=IIp哹JzLaPyd,}wANd&1L-10f= laW~3E T~ɉ8&. VUS22YpIM}2Y&epu2YI,dܤLmR& I̴~B1 } _L7*k6 $Qv}n&IڢFh'yZF2o?ݬd^Yɼy*J 5+QkV2/p֬d^)aÞ y1n1_âΏq }`OvqspV oˈzŃGxkI2L)%7OIw;+Ma4FRV_Ǔݻ*c7Z{OO~_M]>\v?֭X =T,MUڊQ씨g>~Mҥwa]]uۇn:fs'Xr2>§]Oe_G?蠦so>IwN;~ZEA'N5a >tVdg˗sonIgwHJg1"BCMIi( z v:zK[o$5jxKmZ;j|^OJ>4+#F;HLKBj{d[?LCI|~`[$=>DZIoYяsL7R}9e蟏}{د;Jeÿ?o{$ `D/?-gFǞƹߒ9=d iR\`>`!A҉4 @"OC0aِ~R@fBi& Ɛ<$2jyO v΀ვRT+kCe3s'a5Pz@PH~IOF' DLU>P5+pK=bV?=i?|SmP<P҅k2 A3Kx\Z5$ 숤W}%!s钢&ujۚh=Pzѓו_^'F.|# .z>r @s\U.&(GMNl@iE4fp 99bOokfŅD JX0,Ɔ)HSo#ނx4և2ˏtUr 8rhC:kQS%ARc^fQ6! LAbWqUg-EH]m6 (ⱸA yWǏJ470د# H@RvJnWxE>Di΃LI{j\C\pE~n^۲$hoPI.U1 :߽_|92,hq쓡IJVJz3ߝ;IQY=X$p>\aJh:\W̴$3^Y+LM;|_ȧ@GqK1T[F3Psۙ15Ñ~#5=MH_28BsOϝo~V'!\ ru\YKG*("]:|67t ']PTeoX#׃{Ь22 7Z?u"7c) 7k90 U @'؅C_Xe<=?a4fI/=7 KяH=4~w 707Lx>q$)P=s|b("?W!/-bz'],M+,+X>4Jc4"h cǖ{Ca+4zCGm&_uW륟lލ wS}rf3ojYWݻcF]Ǵp].wE4J+2)t^a7E1:wq~vo,}$`ԀzuI @P8>/KSY1jq@Hu-?,.S t|mm[M0L8MA㉞*z;i:')ЁTfCԉ͎4Hcka `2mxet귅e3R]ޜޜgrLogSzAS`K*9xG^n0P$NO}wd0_(JJ,x,".,x//K.˱z|]&yUn.u}BAy*r>9u\<7{ \ZB:onF3lM([˔ak)[;fliB#|/\T>e&ST&wiwe]pWC?ϩڛ %ǝ6 f* aDA9u.j4}65̙Q vG) O^#63gU&顷L}0ZyZx$BϡT%];Ls tm2J, @feE;նLlHEjRB8!:j Nj7A2 ]R}j0{l@(q4|Z7 HS>0L'm`o҉w[ĻXt]V:U؋Is̼N]L;k0ŷn6J|D=o22K^r HiT&MDvٛ'n⤻曆0M#St)]@'?Ư& E .V,*]?g*m({MvJTu]3L&lDrm#0M~*: 7v}h9mqO9Uo\GS'Q2FU/tPù7{$N;{J?p'0:M3̹7w7ˤ84!BL165< ŸrY?e?F;^#sВă>1"юz<SjͮigbrRh [@#G~Lg wc?t`ē!F/CSFD MȨ# Gnq3N HCdQ} ?dSo_i6h g+FUu Gk 0Z @-h `|m>de䐳!$yKbDI9Ђf&cIzȐ)>!\OG=91]AIHl-'[#1_#%BGG -ԊACg-jRs. r00r2\Z"+3ڂj LW%[*"J[ XyPsq)!R lT6 r60rt}$?䄚t&#>ЃU2"w pB(?C؁9Bk\4ON*?6 rFzDNQ^Y)!#=`#'wBzN IâmV6z hFnz pEGd&}NP~ФMz&ғgOAPKzQ,=~(IOn`v)3ld#o.&6أdA"Buu ⡨V_*I-jRsP_3P_t&9i:w'KA[ZNᑒtPl;(Y@*JI].9%!{JM a~=r.9qh.9<(گINv(گIN%'j^@r% HӁ TyBM:v!% E #ǞI#گIN3X_T$';#(AVdǁNIwJ, },Y@ȁda|P1%8` &,دMOnA~]zfפ kӓ kSA-MzZE`d-R(Y@dE>(Y@i?(Y@MdA$ d@:\fWNO,);[yjN}=VMrJfl|^zmSB:|́@+HJ,4*ANs:t9lHtNժRǁ)o}Z/"IJB&,O/[g8Q5T^3MP6c /m|eS IXQlV衶PKZM=$BZie0fX|\bS~PLT4ui\sG7NwXNW.4hyp 1#,70ȭHp+v2 ZKZKATɕXrr"\Y^%jE,U+bQ#CMRypjE,ČS+bQ$݅ZyqlЪɕXDŽ锊Xrr"\ moX2ma"zȩ-bi-b٧oXHm"N-bQSbWSEQlG-q)Fr+)>%_RAރiFsk"xCɘF`m/1Jm͋H(MC7ۙ*Tb:qF+6wjtx8wsAwp, 3 2ށsO'&nKCCزzVp/#$|w{`% ^1Yyzd^AY(u H:8?-4r+c o 6sڸڶƔ0q8sol .3Sjq.%I7E&["XY|mAm'""7 @0z!*k0]ʞJ?<ۭKwݭg/I}E*GefFLcgӷ9gk_x4>Pe"IV3;I"Y:SwgKo |13r@?Rp3q^]fN ]tӉh>v9,?Z&ڱ{9/+n4O`<ݤP_,aFSp{4 l\`q\I@ǁMaaK7xBx28Ԡ=I6)}$>jRX$}ܤt(15*_ (ERbJC* T!U7̐X4 Ѩ3hBg4 3?Sfw-u?Qg ٨3lBg6L3?SF%V?Qg lLQTlYBg5,Y?KF%V?Qg ݨnBg7lٍ?[F-v?Qg ݨnߨ _Q~/F__ɬF__}7Bo oШߠQ7Ao F@5?EZ-xl/Ν=ged&/H ɌB2!I0,=^[ bJL@Q,$ xwT<7Q2;݌3!vo+dۚm-Ǔi}v~pߓ?={EׇΗ<|8vu?o?݋$Y>??|>S{wqvHVK׍ȟ&g dṳO =HC=x:i'KoW/N1Zoy' ~O>FY; n:gr'?8I/߲ϏaI嫥7O*_Do2y3d_d#zjw@oiJsVh|nV1†bb-;YlF~ukךdWi>+$4 3N֧zilmms-1.0.0+bzr2569/data/projects/CoolSongs/Root84-Initialize.mmpz0000644000000000000000000004067011603573245022515 0ustar 00000000000000x}8vJ-?_z;t AzAzvA\lJse-ub&ϰ/0/$%Q%Mu0됇<$Cۗmbooȝyo~o=$Eqx˳Dq *"˿)N/sqXǙ~BP6Q|ES r?~H(/wnm/9KjVZGiS!RǬ bͭw.~,pqEQn|$ġռ|{c{7JKִ7S?>}xCB@:c&5EJ}Fjꢪ,A~p_燭x{[,MtbCxєJy#uw~.t?>*NJq/hw(kڅ)/yaCF?TG?={:ե_A'V>ҞtEp7cBfjZ{ja^lDUQ.lxak-I=uXlm#,Y >ͧ]B`$ݺv(Q)|61JcnysfR{9nd])KֵӮ+maUתH7hw}tΈreSW?aXb%ҐBS15[?u}dC*V͞yE>~Z1,Fx]FCFW"# rs\~6 iw!2H - 29BiYJ2U3ZЭh0\׭h0ԭh08 Tu1̕#sF=fz4h)ŮWBɹM@z<)bW1jD!&❸gz#*3VU8gԫpa3mH&͜AD9~s .+ϜY~$ܙ΄XS6\jV1b G -3E=3=3=3 =3E y0SU4SlU4SHU4S$зV_g2fOSX|<9֓Ԭ߮X}[ =?>/ 6S40o`PLA}3E e0j8^}cc>7ܡba3x2$~ݥ먞fp-Ulzr=]fNEev_*evϵt[ZDٗe2uR]f_K]fMO}evqt]f}[e"8\*%غ,TFu56# ghbyڐX6!m)IlKpԆ qLmCKPڦ rg'FK1yf{w7j1GyBP=WOmYlS_b}QM-6D_b} m](lK_b(ml[_c*ٶƶm|¦Eޱ q Yj۶h&Kq/[:b/[!ZX|S_,wx(i/~}}q鋷}G_#aemm6LWF[RF[f-c;lOlmE\me!.nmLmֲ,mֲa96c>\uu!]o;>>,#X3/V(;!d.YTo_ڞ}d3@_շnخ G,rKq}9__;`/K} 쥾ȗ(Pګo~.Gͭ@1mMS1mMS1mMqksK#S2M}WJz|}Y=_|}.룾]>d-Qgǝi佩HDѾj\8߿yQ#r4)к/1G3iܻ׹ϡM'kn3:.M}dG~=BgZ uI/(­ } ޔ;7Y&&kʼWՇ/8w1ٗ-\Z'1ۀyGԼdDq vu^'[SZ6η345ro:Ot5xLi74fZoy[o^}#\ߠyc;oKO 35++}=޼XוyE0LSه_/zRΫ}O)k=mr/ո5u{BcZ[oYG&k}RPAVH% Dg),.{kw>!˗;:W,Fl畞N 'u'u.SxnbՅizv&Ժ4ngk=Kvᴺpɤtܵ;:QFj=KoUĺ Fiu[tuor풩1nsvT=k=>)<.)<.)< '9];s]>+~o4Ɛ3uS\-o)~l/!O9"}gN><4Γw}_"_GiWz씗ǡS`"?l( ”Ko^VO..O>J"bR5d0ջcEw+8sNп.NE9ŏ[=ezGxUS䏷Q>$%xW1uE0'EZ?u{d1*VʞyEG}e߮x mxEȳ$r%Zg9JU\|6~ ӴR<.XkuRk:cn$u]qqjЮghVs72CrS_GzI]IR5CTb|v[üL7`ϖHǻ,f"zyOGkҏ鲦 ?FOczڛ3PuRV:]rxӞv-: Kp<zb{3䉧j.VsAK|JMxoc*?ƊL{mIjgj{ ]~..˻D?c.vOU؏@?^ 9| ܫO6Sk΂>]ou'w!ySg4_۬pxIxIxIxIxIyZ\%"/x>/7 ^j^^^^^N^^y\yUxKKKKK"@,XS /////XpC,X/ / / / /Xp `2rrrrr=Ăk. /////XpA,Xݑ]*aQxIi'wzjvS&PA(@(@( IcwDH!#4IO}A xYxYxYxe~.!ބ KKK"2]z 4bQxYxYĢ9^}ƢA 4'׳&^Os沂@,k|u^nx9x9x9xPz;Y Ks^5gf%%%%߯DdL qlrrrrrWE>Grn-Gvlq‹?ծ;Z?Fiɣ_Qk LJ^xü3ٰW^r1Jce7岇DˆQ\bVtB#o .ERI`,g,Xk+ֿ|bLZЗw 1m͐w4K{SKҮx)Wډ_1V-(CeFƭ[KџF+iZp),@_!6E+mwl!XPX"iZXBNՊoV,^b[tΪ׎#;"jc-)$ j8* mTAmGWb5*pʁ@Ȏ/ZJ[=P|n<Ԃc鏧h)FŪ+߮WZ5yK.KߩRab;,Y IoI*f_*ֿ-[L_5 ` A Wрz^ @(^f jncB1܁ z ,hx_A%U U1@=܁*LUUA[TTub*@8yb*@TXA(; Q D0D "! T:`BR (QEv^Z hp"2@xQFT$Z AR I'$ AlFx͐ 55  ђT2%Čv * wGmQFx^#$f: p*q 6UDTWϦܼ8ʯ~}9哛ޫo>yVh\ }_BW *)/H>AZ A/u/a_PB 2I/I/HIHb#j32l )dSME6u@ =ȦM}dSME6uPC6U!lQG6u C6U IdSeȦ IdS$$M5ȦZVs ]AdSRȦ "lꐁjAdS{MUI!*qȦ"ld-lB1l8l"@Ȧ$MȦJIH"j̑M5[wI#D6U!lj ȦD6GTl ȦJrȦ*M3ȦaȦ*!lLT!lt$ T:,ܛ*eȦJMD6!ՂȦ"B6UMD6AZT cFq4 TE $MI"dMD6՘#tȦ*MD6!ՂȦ"B6UMD6AZT cFq4 TE $MI"*$MD68385~.CGIƅ_?wSq"m"*Jg4 ‰7^ZPVP8@ Q_/#UEP~:vC1JU\68p2VNU:UV X*j$SE>GdlE晊MmSΒ6]b;?ѿg1jRsft}ɬwO1+p٨.{YKr7jy;Wm+VR ?% yhTʌ42רXaK(bU!SLh<ٔ;oыnzz98`'~[I\/fޱlWqfw~߆8%ʂ0қS4+xwc"kSmtWZ m؎Vn:,*Evޘv 5JO=#>IExg+WV [SZF#(w/Eډ5v=AXtǎ=b~XH7~= ϒfg{{iyX[O9euKS_~g/ \9q~w_v~S3̿~o?{> Ɍ*gD/XE7'u&QqNE~FiQ۵yY=>=NNжar(kL1O-(ZqhghiGQdَ}69Լ Sb/oo8}ܧ;j_i~2]xcoIMuXE]3 SoVNAߣz75_QŒwkjmESܣ_G 氏Osĺ͍V3gI-sfRmBg FޙoBg+Kҧ,YZObʌNZ=oJm׭_tImqi?HJDOݪfc{鸁NGDy@urX/ )׫]k~&23,6Mq^w@IUcmi]0ԡu,Yl5׌;eo>c/y㼧.ʎ*p՚owfʋ,մtM䇊3ݘmR.徰xUAOhZ_܂&pf Utg4q3)O@ MIi V; _$o!RdG'bƗ]"0%1\b06_cm8|Oj~`~q!hhw  g @g Q8rԸ8S+':WGjjj̪%uf```@ P}eDo 5!rVbbbվU{͂O4-4 ƈ4/{#@xSkXXX_hibbbվUxwMZ]}ޢ[o;d_wюxK@ˮ !˯a'/s颿txis_xxTW(j5@b5@ ȹ@ ƻD ˲ν jO԰}\jL@ ?j5c.-4ϽjO87Ɓ@ ;E ? j5c#6P15s^7xCݾk/=K t @]1.~]ƗWѫq)R @14|ϻ '<>_y(S46hΒ6ja}x(mXY/zTSY_iaMr=>~cL#MePxC41,";Gr]PYc$GNLʼs+H!:1/Ϊ3T>xwKh%-9_UatIs<};ITk]k戉fYwN=HR{YVkJP d!с#ft6Cϖ5 U=v]STf>Jd[XSn㔎KN-K n>?&Nh7:ZqsI2ja}(ͫ=7)KIvՇݺUAs:&6/:8wºNj% xIEszI{y@/I~)׫%>OzM7=ev@i8?.ows˜e ?%ӿ0{ۓ^W=e=姤gnr~X[OS-LY=w)G;}ףߝOnYNZ?=5JI~Ϛ2{O~=>S_׃?wBh}!9hY=(hY֙A@@@@@@@@D6| D D D D D D D D DKA3)D D D D D D D D DKNfhhhhhM-%#Z-hhhhhM-%#ZWD D D D D D D D DkC--------QZ# )----A@@@D+D D D D Dkjy----O𸶘 Z Z Z Z ZS˃hhhhɈgNhhhhhM-%:!(h~H----A@@@[y----A@@@dDk:-; Z Z Z Z Z Z Z Z Z2FhhhhhM-%; o.HhhhhhM-%hbhhhhhM-Gȟ:Dm-?ťCm"R^x5|G(M7y!Jл g:_xC[WŰ̝i  Zp~rA(/\ւt6 =yg ٙLβ&04+mh{b]&[[4:-$]yZC-I_!!(zDZ,o5- OHZi.P=@+it{f-K'}ywL6@ :n@@-Y!%q!%_-)[9 0-) v*J}[(ֿԩ\_t\z]u#]wDw\wkq߭*VԂq%X8NEĚ)SSQ`V!]p" +!r8hRr h1c/Ѫ05'c{'CB/%]L~AT^ITTTTITT="******$* njYKlJHj"`@Wu@UAM_Wu@UAu+(@PAPAPAPAPAPAP%APAPAPuTvԀ *j$****$*&l.AAAAAAAAAAMP}`@Wu@UA -AT^ITTTTITT]5 :, :$N]AT^ITTTTITTM3AAAAAAAAAAմ-AT^ITTTTITT]S  }oJHj"K *j$****$*J[  ΠKoJHjʠ-9DQ_?;l^k )#YuSb) ZIjKSƲjTo*VݒTxUP ڒTxU"ȿ« Ԥ JD"-I[qS7Hu#Dģ*VHX5T1-@xW/J¾-؜fGA@[ŵnV=ETTTB#FPŴh A"X>+˳g7 {4nwnI*!*- **ͳ S&-Ivl˳E\ٶ?g5fh-&gAi9b)v[R_y(=њ3*d{%:j^fq*kUR VY (}!K9NqOX*0$T֦l{I5LOLS8VjH֮.kYvU.7GbV5#쀖>qlίx?$m6bSQbm)'&sm]vG^6HdNJ5v[ݞS̩Uiw{sj_/sjTڃYFw nYnV#J#"QBȬGGf=>2+%Y(̊~D dVg͊y͊YR5+YJf?K֬g)Ϛ,%Y⟥?kVgϊYV=oīyg?[g+Ϟl%ٳ⟭?{VgϊYQ3+9Jsf?Gά(ϙ7N͊YQ3+9Jsf?Gά(ϙ\%⟫?wVsΊYU;ﮇzcVsΊYU;+Jsg?Oެ)ϛ<%y⟧?oVi??P=ΜdI>9>Շ,0_!*?@C՘]UkX2%Bɐ~:M9"=㗊~EdTO2fE/ݮ\b/JͿO?dOqsXb~,ܙƸy*7ŧO>wYӿ,w?>1"WݺX uϾ) o"&/T橈^ v2*-qDթ&&X4?Ƨnp}cS~k/xl_}{clMto˞`WT ƮΪΫm`xusVn)nnY1,n1Nol{YAWI)˖oڜg]k+ct.D[*ͮJTQɿayH8]1x̢7%2ϫ<98ʍdcqOYA Fx1U!kYˆ7bLdUĎf%qɎϳ&;|tmOv",[ hcZy=$uVYlmms-1.0.0+bzr2569/data/projects/CoolSongs/Saber-FinalStep.mmpz0000644000000000000000000012575511603573245022246 0ustar 00000000000000 {x}wWptC =geog}Nsf 8_$. ;NyA*TJB;GyAh{?ó-חۋ?މlx3o3F8r_}lOWĵǟggJ9e  3OY!묔\ogܣ%ìoG2</3 鹑a P~V εə)"l쿁([`o|Δ';ʓWIeTRq|y;#QⒸ"jw93Xa' ~7Ё-VE%JMXAetbK~AqCN>FCx ]z^J#&&1'YxƎ)+J_]!,T QԲƈgl RlG_〤~'xl@RxknaIJ_ټ)RxRz tqI7VFiFj`(&L,61|80A*c{R|/a(`Ko6%@%LfFN'DI\T1rWMhE6l&1̦S@y/d^Ȩϋ):᳛!}Ȁ_ڀ+9Ňs?z3-5,+?f@{X?/eSo't{6#/J^c[MC5#6\Y(7_o.ooV\z'O<$'\h(lFt?H# uz)Eb ;=tyI̋$ @ ߶TF*i;: ZzO WpdgW.{NYBCmw tz=Kw~}9"B(MF7UVA򆿲qp؈) |x^\/SB{__.M6SM('؄P xHlp%GwZȨ:0ca^5RKhrGj0[+s1KR79ԅ㑿*Vth5UmVmt%I7mV:a+5kpY]1{ =EG y%:.޽I{gyspzu@+"zfʘ!)$Pނztb^ZfU](VKz YuBʼT2kwKMtDTm".9q~[L:FKyy)_M7yO% hGx<߮.[SUEfvor'2]sñMj]:w)2DieRjlk;ϵM=0\۹ M6cuumW ?gs͑M"p}^1JITA%k/0W$0–#×PT8(x\v k0 Ӹ[u%E1y߇(wm,^pWlx]~ju]'Ws9 Wq:\9o[`}Etp Swh/OH"k c4}hv=Q ]T~[N`pp'ZLErdzF2ak|ڋLA3Ќ f :Q,3v3;=k`Q[/8nXf2Qչ2إt9X=]b\Y_h-&< ڝ#퐊:#F.Z;c<) OAlsdR,9He-C5Z2dŴesXpYʘ廍Y&1K}eNR, dȲ YʐecLeR@Bd7BxF ,5ѐP)GoBr& )g*%儮[#F-n$CWcV"w~qҧ'5>=yIOOj'zR8ӓz&n9pRBתosvTQ}z3d t׫_Zt92jdx{V6y@OjBp[uQCv@]ԖP괊.nonX͔wbW8#p̐So>[( O`u G }=م=y@7RL v77}~>'QJ7z5)L@) :s|iFlZ\Iq iErΊ(T6l~A7X!쉧QP")8V+LFJuEy3aa tt,)KcIA_K BXRCǒ=걤J%#y41N{2BG4'#tx41^ՃyZrE8cq +t16 AlY6mǓy:,썈]8,-*?, >,#ry9()^# ~u rsr Hp N qܧ@L0֬.К&)9SOɻsК)ͲHhM\Da^J${@$ҨD4YNɟ;=%ozJ}DLY$mE"Y0z%% =GV$prJ딼)9S]$pd"c,89%+#Q8Rr^}Ẻ{:[Z-w}y)@RkyJk}b.>X3kb-iX zY"xZ! #|=h*ˁ(-pAtuBϓ3etpm#芋/0ℾ[vkD^\[C kہ )GŤ5wpw(y>13!pv0Xp'o)-3rщEwLA u1 GĻor7 ,37W???_MLSᯜVaEwoLzԲƈR!$ٖSPlGF8 _ #&?qIi%*vd.)RxRM`(Q_FgHvo k`Fa̔]EwVF陲Gi`ߙL?_;4/TXsG(9k4d6=t̫aĹ^߈_+? LScj1A-'DiriQa?t,iOC-Jr=32'ֲpw V'J|P2B]V覦pd[rdM^ +~A6@RsˤJPA}3b[Y`ƋƋl>'Q+$?A 1 3ጜŎLob>Оq6Tolb 4XM&î[p+ U*\Jp!ODu?ǘ􏼀YLY iUoq?uuYe̽Zف}UD\m3,audsӱSZ)χn\)˕\)˕\)q>>ȃ~zu`0hQ[hphȅ_y>Pm6^=?,K/~rWyWl"wŒ} uU&!./l@ *Ȫlz_D] G]l*4}:t–Br!r!rQj\h4.4FrsQҨq9R@35>Z h9Ps끾6%+BJ/kX\ R#亢yCEڜ|E3~W*Y- c5YT4焸Tj māBjfhRq}ͽfG(AtOI,*NNxucr|į#~#^O_&vm9t{7T_*t&=kN;}sЏ 7{V>#4q R| ^1,hsmY*HpQE /GhQ)$^)9$)+ڤCjRtW"EUPEuጷwEHzmze1FvO5{jSCʈ^hpd#夋ɔx2=~viq>e18GΈlUE) &m*\r_5H`wi@<|硆VloJ ,8rtS;7t6~.J ?9\~c\z1˂f U.G')UL z99v$ lqcX8Sdl[c#|:R@-J!NVouOx^LWr m Q.unEa1X:7 RbA܈ 2Ƽ cnYsc^ayAk`Bٖţ r[\,".p-r 1-r,dߊX dż -x-ޓ[ [E%Â+DX)Ȼbkؗ0? < 3b,`8 S)ƕ 1Acyut}P)iq0~-' K YOO?e0~ ' e0C 2lǚ 2LƟ^X!<3 ǡ) b0GgtȄg≠38+N0薞a/g68F{U酑:.)ކt,Gz]P;_]9s^V+>ç6[(j1rlS 5:;:*¸Wۼ nn8f}9>TICmoF6RݣJM{΋i&l㮧N;˛׫) lK:䭗O2aެ++NrPtMKpeVge ˇ5򻺔@}8˓/صzzM~G C#!:ChLXi+\J< qy<:K`Gd}Zl+ 1Ƶul`Պ^4:ݟ5_,JAk\mpnMF;Ty&:,Z;R51vPF3I F5?fklN eOndk8k9⒰d5ڦ36#b\25Q٬.A=FZis F(Qac9Q7W^ :i'uJ. Q5 k1l"!h<ۣDBN=|$&IDV(<%>DhbXH@CDʇOl"=_( ԘKan-vr2~BsmB*R9XA878`iJeE7:F* kR /Po<rTĀS@Zޭooo.?b\ Nf%i[*\ SSU-__蔅'nLAtRu:sily~jß r]3mӡ:^NHo_&Jn%*{ kw$kT{#ހ3|,C(~ZLk-Řie"7ץ]8'`o"I 4f%"B\BmKx^ѕ%v6lRxr[Ks;ڹŜx/" ;A{,Xm(`i}y-Z0g6:rC6' pWwܐqtq.Hpu\:gAڅ@I-wH)cx!q[7 9ҖwM^z$Lr*ne9O(y8{`(IIZ'iuH%!ypI ')@vH!yXe`:(EAyf,JZV`Z.K>f\54 iδa9Ӣ L 3-2{Xδpa9Ӷ˙wXδrmؓ{=/Fݶ:0c->'_|y+<[~ٷm]÷E $a9KwLye-aޑYH'qV5E֓Y,q19KuLgYGf!q֛:dA%9>g tYcr@縬%92t8FHs6˛q֩ZuܩOt#\r|SjVSv?@)z `'؏z'z2pOj}}^s˺?~'ˈrװp~.Z򌳥ATuBtLY#*Y! u DuTC8op|e~>HLr]LT _\p(y>xYgu8 ;sAP”9}ĢP1A&DD︉A2K̭XfP %?~Ju@ʄӀ,H#>>lɎ.}tE2 4Jvy2 'GԂ0*7z8c3Je͓@+ít)\BˋۇۛװTn2gZzX7|nX]~#^SV rLԞqt߳P H"͚ږƴ$w?M~& vrkD́++Mtx}+/jOq;\'ZrTV/"ձ1㫾7̂-_@fQpy-Z0f29B~-bLu 巿ma4utv6u [5vcGέRfk`bpNwnG{ 9uqL3h07zş)gڥ\sAȊ4Pp.ƙ9{] 0/PPIw&`:oՏeEqdN8`!qZ ba~pyK 1zmEphF6^zt`$b2yIqaloinBrq.7WfCZifhzgNl,p*3+ ˚k.,$7 [ޜ\-DM.'$1nfDZ7U`ڡw[@:]}tZf{z#;dP@RZ0N9І],k!Zíw"aVq# nݕiU<nz/DtkF5U&q%ˢlPa2| ) i盫dslu"דe RF6'G,$]\^0C̄dNrfBo-39T2roViE{jj }g< hB 9,$QTx TQΪ0|S'0f$t$*o|!m[;>C\c8@08+8 FZ(h>;`*iH&׵$K9s=:ƹbd bYx38Lb>b 9ƢcC-8 cj{ u22DIC2c[.7̱Ґ_՛“96Wxm,k"oͻ OdWx+̱%t>“968hGx}'A/9̱A 7+/]ý5m`m"ýy^y&#ý2½2T2{:^c){{ɱ!vnX{e½2dž Rp TdW{;^!)ýTdIJ{T"ý2dž6zw^c){ȱ@"\d2L2L2Iؠot낾dӐNCFk: 4dӐqd\U5V'"dLI#[jԷ0רoaQOf&+[}xzaKIIh;7/}$Y_R?KFZMUL ,J(aKJ\<^]o.ͯ2#sk ? wCL޳0D[0ĠCþH}֕=|[p0My,a19Kw\yg5JXYd=Iu|gY,qqYKudgCTs@瘜%9&g tZ# @iT4bB.oogXǝ /)7ğŔզ]zJl?@>#?Bɠ# S`rp}E[?/eeDFrkXV\?_-wQQΔ5AR׿@TG%>Znٮyrco'A$^$|XLy9.&/󬄯cD &xjl}g5 TW54 .2EcBd6F Qug[6R]; q@R/GMv'ml[uӎI U I[,QS12x%QPY3h l500T]5,R{;j-{LT*Q-. }#uB۴Y&S ꉡ𡺘%FlHOm& z2&c~9X`?#z_Cn굾As~ /51ƪ*fگdʇU"vPH /`mHA7i րʄu 9u~gFB =ԺcZÔ6WjL#VW8>Q>lРTG}jmֵjZ}25{:>x^dxVOa;z*;; ӑ:~]ՙ;*Wfe4<]AGK4ՠUC V<6w!~2LUUaˬ"r957-r{(2zSz;Fzfvrsz;&#ҋM=1հ 9d)MͲzcޘ9qNo̢8yS f2jCzc*1 <`5zc >exi7eL(&LS>ma1gM1w dL*.H޳RtJ ?+E3EسR5KBadt;]Сvh;sZ T>LRIjCbNe_; ncɂx6 %YpȂc^qf26,lF[0g9g9З[bnvA%斘[bzA-( %䖐\PBnj) %䖐rK-!7܅3~DI>bAy%jS jK\PB H-ڄjK-jK-" _J-ڄkK-kK-מ wXTnK(rLN-e\zf]VM !§G7*}9Y7|{۷/m}rgG~;;^=3/ܗN'wƳmakZv؅=M6qLB"zz' XrGԂQwޓgre5FAAٲN=kJO$חw7WMafd~Sh$ox._~ Gy;8؁M'0(WzYsmzHjA溺 eAVL.渋7h8v]%ކ\:!UXx\'al c 566[(j1r\S 5:;:*֨[jq7A|-ǬK`u8Ç*i^FQ{TIU}y䀍yIW{gyyspzuCN:&f;pP;zրxڒJ=5a2m4]teupV-"kf2N/%P#vƫv^!Ri `p!tN14/?oX#`=%i 0̣Zq4U e[V1C|Uv?oo./ow_/ILCYSŨDQakm߱Xu{]. l\EkGJ\cu-PP@Wv`{O5>$gBN\&EPW*[Y3-r$(C<6hLDP L'5rY(Qq}Ctv_OIG8( \>eQH DBzp7m' ]$ZvO`@q}rŰڇXE_UL~ $<{Pc1e"UB`ͪ # ͵ M¼АBJO\(y;"UM,3:AU)V[69iXwY1:iWܹ%]oσz-h0׻տn.D83t|A@'i1Ws?I? Ő dj O]01&İ/,QP AI7,1%rD^XX]LYKLSu.DXb<`B)j0,^^RHbJ*k6=VI[iD`GF1"6ǼEԉ?)5M)h=֓}Gh=֓AGh=K5?/eeDFrkXV\?_-ys *:a|9뙲F:U6B}CAև@KqB-z;EP| 81}mm;b3&40Q4 |=3pv0Xp'o)-3rщEwbLAPiqd[/J#&i~ 6;FYE1jQTW54 .2EcBd6F Qug[6R]q@R/GMvll[uӎI U I[,QS12x%aXgHvtod=cv͝StyuW>n p0>Nϔ8|L.xމʪϐbڬ rPWˇ./ ), _Y0Tp2:rj)]h { '>F9{O6/"%cm#4  WUӀ z{w}NJFhP_~~JRjgs:r(+arv%dɄ/ԥ+ϋ!W_TJ-(q=y|1re3q.暿ڇNŖ6@g\r}9'\B5&#E ySvmso8߉M'J'AeB{_GwGC%-,H]{4}m68]<LyMp5GgܟsoWbc=$236\CSD[ۼ nn8fśiQ[Cr(?T'瑧U=z?w=uRfnJ%YrozlQ۳QRP4.m^~5YxQ4,.F$t86,mAHO^嵬0%P0vKv~^;RG0p!tN44nu,r?WN>8 9N 1/ ;-CW!w"_7-3f9\۾cq)- 3ԩHA \٢Ҩ25/ v $z=+G=kᬙ8hgK¢!vkqt{Dq6A%2[5mn\#9LqG!: ;'NZɥAep5j|y4[$!hGu1Ps}u2A:DS7BQwH(dQ.bE^X]LYPLǪ:)zh1B,%&4|I[džiD`}"cc歫Uz}]mP\ iu:ż :0:ڣvVY0.2#qY><X(_ӥٱ~JqG~4dw*2.;i7Н[7OEF"#&SvHd| 3 ѓ-5[LOFȓm Ũם6u[\i3g|^)U5eRw=Fׅ+-Y$ڈs"m";Ht8HtWi|xp.|rp.7ERd =rs۳Rf) jK빈 E-k2`T+={L(RBIBۛ۫+U\>W;~mpG&weH۶a;kUk-7WN?'4^w"Sv~C;ғ~NӀl un$FC7d7"T] ͜[5KvloZ QD 5. pH-̍<~Au '`2 !7;J .O̙T8r@]%:LP$aC$Eɓ:$OҢg tYcr@縬%92t8FH)&]`ucw*4S~(ğŔզ]zJl?@>#?Bɠ# S`rp}~prܲ_2"\b95,+?<y9pe]89SHJ>Bo>H]Qh)N[\og(r|o'A2Hm>S,`cUD?#J1ϰ}&^VY?+cn-0eFp2:.TL >57;nr3sTCĤ/;㟟oP2a#fc4;4$SI_մ[,T ڊZvQ*DY֝m#Jv}n <I8&TX"cJeII?6K2Beϐ*˜]s]^|Eu\%i3eRU'O3_;P^eϡ`u~eS|#~ѓљ=&t#,~*dh9(b=$] \Q 7N?2&r/*M̩ 3Pu LNĦ<]W)O6#!t'_v)hi((m7qۻs497l=çYGև2'aG]<1W8θH&|}î'O'LsY|@Nn1GZz`=&w.F-ᄪۯW̌q3 E-%ڎ^  g6l}&cfRŞ;(( dREkGtu-PP@OiTz|9Pqk~̢# kpL{3%au -z(ѲDP L'rOm'0DrSxZkE՛vXO:ꤕ\:}`Z&\cK$ZvO`@W2/Z_0lBEnQM|:QN/agjȥLF(vL{ܰ ?\H^r\s2%=bpn> 03r*,I9Zc˛CI{Rm֩yӣ6'Eo-NyyI|nwۛ kל KҎhU¦j)N-gtu\J[ޟ_Z~~ug+Dgu\wmˈ?٧k9Ii[mDe/a$]p֒js<AȻ]L0}lm@fZBOՠL+L>&V7n1/B<8Hp [0M$"4G[ӒܝB6 ,=~vlP<< a,tR~Jc;yϜO_D}7w|՗Y0+kQ究Xhj g --8V$]Aڜ6nu=5Z[{;}k$ctҮw:@mޞ Z baݿw}_\)p g?NZQ謋i|nzFOȔeQ]bP=a_xNxB'rD^Xp]LYN\ '-h0?oeyoֵB?i0l8Fdf.c@jalxyMTil@\ ihg>fY*PgQ{p*3+Q ˚k.,$Bۜ/f-P>qݗ3!#ƿSv5HCTdݛz*2nX=iw[[OEF'#[iwƞoaC{2BlS-L,W(F0W;BbGYIޞunY/?zTZ &*VGj%p](I(qq{pw{uEĖ!gGnrq$xF\WT-Fbg?>N$~?nQ=uYzIW `3<MR;='I4Ӻh!nDЭ9ƣ ڱE[h)#Da\x@A!{]фŒ1 < ָPL`}iˀDB Nһ&Hs&9NЧļkQ_EI`' C'ivH5!yPI ')vH!y^I `kx"bL_@ezDoN.T-$SLuxL219Te-SIur:e]s:ٷi3)%;:g Y¼cr0︬%;2 $j(i%::gYcr8븬%:2 ! *9KsL:e-ΑYÁ4*EQ_ܯ猳NrN~BCRڴ ZO}Sh=~֓Gh=4֓{j}T,X.[[?YFdK,esr .=;&g VG _ X- }Kl%D/-t!P@g̔cbJcD &xjl}gŨESI_մ[,T ڊZvQ*DY֝m#Jv}.o <Ijzo7=M o M;&)T+#$mDVGMǔē~mcae⯟!EU`ӽu<`=UW ˤQUkczbVjtVi v%QnfN*'Z<‡bv<"9F?bTO&W`̐0@ }Y4r9q7h@{Γ 9M-AM hʦk8Y^PJLA#If. w"|"1Xc@ѡ@AѯԶD pKeaKDpf)aJh1 ռ0F 2luayApc?ʺz0 21 Y3?/0\p° qNd?=;a?0\eNY֏˰~ʦ ^t0 S”a 6eMt&0g?kZ=cMPυf 0 91Ӎ?+E| Jm>+E7ܳRtc)ҳRt3Jm<+E7ݺ +@RtJѭ:+E7i 3.F7e\nȸݎe _6t ŸWU XU,8^0aU2bUbU2cUcU2dUdU2eUeU2f|M39yg#>sϜG|<319ygc>sϜ|<3 9Oyg>sϜ'|<3 9OygS>sf_h)9NZ,KQ`QHq,+eG#(xfC%ΜSKNTwC ԟd?Mv}9 ="%-z|cܚd d9:1hx=+x")xNΧ#'aG] s錋d—]Rvy2 k~*S@ōgͩ6f-8 Gۣ/^pk)C |ƽˋۇۛװTn2gZzX7b@ D@xZEphF6^zt`"b2q'ρ_|@iޫU֓ilP\ ihf $:;:kge͵_qN\ݭooo."|d& fDZn7U`ڡw[@:]}t($79d?F1L9@p_C`s @Y l)B~ixt/4mH`wO\YDUPTHv;H(Z/& /%x&Q}ygl&d|$ {Dv't|'Jpճw ъafHL0ddGّVcoMWK.íw "#.F"ݺ+'Һyp^ N>:jJMѺD]pY L~3 0s a.vYz ?@ʨxdbzE=D}ۛ fHTO.۬R(4E`&yf)Ԇo($!ʼ,{gNV1ܧi{6"vyBDnE M0YĜ$"k(cG#:XoRFB'C2fTyO1 ۝"KZbm~gh>Ѹ#0(S-'խ6{mvzyg罁=C;@q-<~*;Qvk'86HfZ ֧(γOD'ZE;Q~#s tzg=P0lc c :M|8@ '(BߑZ׷__?r;xNUȱxȿ?ClM> Q.NjD{ܳ#ஒqJZp^5٫zЖ~NR="Ŗ:6!$ԅ=Ɋ,C&ȻClc=,}RHCPlJ}~bJ5Z2dj6T6b"NZm,$y r".J_8ۓ' i ȶ^d {?Y#%r1ocӀHyHFHFqX $Hr:4*Cs\H-n塹FphNP+!pAKzxCs:½odFN{R^%5M{eW{E p ^ 2$%ý *^poO{eK g+^Sj u4$''?ދf2+ԺS.[I_7S ʐ/?!!_2KA|yw*!/Tg2}62M[L[HDV2T5_גuʔVn HkyŮ%+X[`'3}Kζr+Il1!VWO|+fVR6+I[-R#@؀̖3E21*I2 _d;Q2cM7?z=ARm >ڦl;__2w%8dd㐑 !#NCF6w #;8dTA0ҨaQXF=f?15]!۷ْaVGEcX7tY;|B`W?(tU47潘D$%.2MK"OsoZIӲ[k]&|zoL"qe5MZmUej8FHHd@P& UU 9 KOF`ı t0Rz0t_ui ('kKmT\9rfP XcQ@v::>SV;>SvؾDN)\qDVeRo}&)Ŕg7ۛKziyҖ7u+\m6=rLpaAd HVzСnM䅌}8.tHhp' 7b ׃@vJipk/sVb DjF#٥|daD<'t7͜Bhof5npOl!*¬- (dCĕw^d|4` Wʼ=<֎si}7]I3IsRɓh'&OMP56Yc"Yށv9orf-b˙V.g֒DY{˙-m3)2!17Lpe֒nq}i6V1u{pK{]v({h yj<;3O&̓ɹ3<ɬ?YV,:;K>Βɹdr,;;K2OigC.hg:29wLΝ#ugHfI Kc/I.&͸]^\s:mw*ĈHoDa1bAJXg>A'(=c?C0JO7?CG*}5UY0]\J:95ͻFhS{8isӼg9c 9a= e>"WX}}~Ba*؁g&rܭGǪy&#:کec_^*"DoW\./я4۸26^KZ6rS:V ޫ.һ͕H%zHEH(3zy!Qy:lwaa*ɡ/Hí9dB>5?S "3Ðm꧄\DռW*+dN.\ }۔G N|hQ/q7JZy\d y}m+CYƣe8w&nnN\;|3ٿnt aQdgPwWN)<;xjk7j gU y/"mnΰ%+ FqIgE񝧓#E-&H4;ilް.{*N5tCū~~0GM*\գڈz8 G{YY=~a^!Y&aΧb[[^L!PiG 륋_y )gPX>tهh5񛰊>;;™/Dl{i'o@IW) ^!Q+V]c໭ߏU. v/}8H*Pm7ƈAvuv>R#JxfeH/ֿ|^xJa^YoGF ˟݇olKrZl%j Ϡ F &5Ji{' iPSlzbR|-AsFP#H |B=8K6vGŮic[ױVxh&&λ9+vq-R_ \tC\#&mT`;&vS;1  Ґ5<4< FDΓߛ > x * `(ܣ#x&.܄F Q0|IE)1}jl(eR&B%Ik Vc^h=6)p42PcmfM ¢k i!`LJ~P.*'yO>.nOywY{"%RuylSYcM{i$jW }־b$P|N21?@s--!ŵUb#,g/e |;Wȑ z1ɑ z!(ʑ z_تT+hHFXlj+Lwεo&q" /I,(K rҠ(?#%LUXP Ă$ס Ă$(?3ˇ$(?#6W9bAQ^XP Ăڗ#`IrAq^c@^\CK^\PW%yX/K.(ثrC(˒ 㽜YF`3^\`3^\`3^\`$̇F`$5$˲rc𺬜0+i7 xeV:/ʱ'7r~ ^rc5@O Wh&P xV8/&PəM˴N+?B~,?N+vB~"PHGb8TNx?S(S(S(S(3?/(f`~_N =}9C ؇ߗ3HN^ K3e ߧ# u$E[udI~i_d`H_d`H9$b3d!@aF# dJ'lUI;RTpȒ >Ȓ >ș7[yICpIdIdI$RḪP*8"Wd1@>-+O2 M2 K2p<[$nIB p1+ͦJ CveyAg veM iIJZSV6Uxn_jxI_g ޾$6Cg:Ȃ_!Ճ)h0 TB!eFA`l=֟@g 7!0{]# `=uzLd$j\A$-n{@Cvye/l @U坳A#!˲G%F&G_iM,[\|`*~v*r}k h{݈ґ`@iK4DF%/R l\ Zd,kvٚܩnJs 7$~ {cNu!Iv5V,|FYX??w!܇ /uo*bkW3(|1ݭ@'#VG(wX?1Amo9"\'w'b X^] MLkcXБ֕$gZ^j ?@zjYTۚ ̉JȚ&ԃ;6&l x,t妶hΖxm[b8 ܨ e0vqS5$ B!5_4"sTMce#b|~=j1Dy.ohNA[~&z>gxu63yW]x"*=֙3_r{w_KoKbb$I\f( 9ƽL^KFƈ㐑G8ddo8;'CF㐑8ddo;CFN8FNNy4~bjBŷo%F$JA8%ǸwLQ*("& *\i[ȼ  YHQ"c8lߺHIZ~oo=yUOx[}gLHiH86!t(R?P EtE8}-#Eq)a,GF tc>Бɹ3tdr ;CG2ObX{Ijw1-އi?oS'.F|S' ) Rz*'(=7 J0?AJOPzJO7?R髩ĵyy/Ωi4Bb1L3ݯ= BG§JM(kѽ_5AjORO(Z%8?6;LD#t`'DvDg xDkƄ(&Z%lcUgEˎl#ƃ]*^Yib;qm3el+0 mU[NT]dJRY[FQuk T,ۅbߵm.erw!ޡmxc8NR1qOi)#fF"Zڪ>dn'0LZh2'@F'PZp~vR'GO)/U{F>"% ޥxrr olP۾a<"wqGUcp_ "%cnk#X z2;Mo7W+Y |?=ǃA8[SG G_OxN.gR:tbPSO u+Dr6tE2 :?sEѹ{ @ZeTygVмp.8wMן\qD6֚Q=砏2Cj gU y/"mnΰ% B&P%'Cj9B} ڜ~} fWiκ=xg0K`\ gƑ" O7Wl,{h^ScHUգڈqm s5L&VL'/jd#҉\˜r[kO.nOτv/dVw]V!n˪xiRO'o؊~QaߍPKaXy@N2w.2q[HпByv IhEP :aW}d#ёN̶?bUhƙtF+7=͖o˩Ⱥ$Iuw[c%kE(`iAX4Й){%- 64|]!oZ-&ߑ/V d1K<F:y(dTXq$  ؋Z}O}JcEOfpA j+Uk2yTZ_jf\ORzL}!5A!,fMdonWk|_SasJ<)hם} ;)hiن*dhO vT ;+,NT=~$C*8Vs62ۆxFk!Lu qDsBTw?m[n释+h- ^uԣ2k_;u_̶e.*Ri}ˉYiݤ]G3^R=jlVE?ϾV*u'$O0%N~Rꌈ!8yV};&%FryriPBG?+We'T~]?Xx׽ Q'ɨА|̴13k?7QW:2JZd6%|'wVDG4 h{e`0&co^š㍪dB#7qQ_%WbgfBfaAF=k硫↵5pAHb<;:''~؟hbKM ~ȟ*:d3p#6<(D;(AWju3oz:>,Xl]B /_WWZ_f ^[UKX5AkkzmM~H^[ku]}Vdvrg!w򻰐~kkX ݼ]}_v; ߅<ІOk^+J "!{jHaDRߡK +'WŞ"?"DJ_n-'1E(R2vᆼ6ܬB2;VMM) ӻZŜ2ƳNvf$^r=0=V[!|=W8ΰH&xhՓbfEnOn(i8/N]kjs{ ǴW8g1/k~1'z֌BBjb9_DmԾ~^D[B!P% q(/oyC}zi_7IEr*~{IyQk(埥 )Lᰟ\m؍#iO⊚EzM"2@N$MJ*K{SWj#3Vi@P%5AQ#Ju)5BmE'[@jуQVlkkыyq}jqM?m-69a*6 V)Ħ Mj)fU9Ryɰ]P I6pae&6dۃ.!pps`=94@jNqkqơ:ZD Bn?FDC~+dbFf95pT79Y͝λAOuy& aoŲ{Y͗,K(`i":f3M-tg\^ :$r*\W9ɿvu!PVcV[1rV`dLdi9O, uMsh1v_g7jE]>? 9=㼩lU|ۓe Ln d Tr%;]M 0C!0zKC .BWnlCu28h! F3ZL,n\\T O!ϽRMce#SA.GAG&}FU\Vz9!o Nt9^Gͫgvy6bM&g̳{3`2ŝs]&:CoɅd6O)E.nJ^5c֟PG"kzcSDIYBѺ0. BuJ "!jv>² (B~zCMhen}Xelٸm #uֵ\&qQn.(6h<.8wΊlZ2dcsaL zvDq} 5GPY J6bk5j{5]U͠sCl'EE"T|mBʉj4Oܑ*Ɩl0 _ lGeZ'ӢhЁx}3"nw/\="wsv^:۹{ܽ*sLsv&$;w/S%չ{kTҹ{;wopi??sRhw'gw%Aݽ۹{:womHst{0۹{ܽL:w/TQI\;F;ox{Gwd΂^?+ZZ7'A{:omHt{0{L:/TQIm7st+$[;|tlF BlR4"fN!X %&w )-DeaceD@(yBv>9D-ܕ0+ԉbJł J}3 OPz:~a3n4 Tj`޻:E%Vhsjwo81(|q vyrr:7r{d*GAt5eMtdڅ듀 V Ώ -x<OF/+np9&6ULRfښٗCCZk1%zn  pv0WwNW{e=&q%#¼\-6}%:?Lغ|4p{3 6&Y=Z؎ΓeBD =N5XǸ\_Xz_0Ke$PLCQr"rja~4dje^]6USg# A] Vtf ??)^aQqLO?#u+~wg<.zs{G~7w'X{Y8撟f15<'a,1DSJ ĺ!~ٸXaSwX#wD`0 M>`lO^'?,IiEegSΛ,qC5M(tlbfj%sQsjWg`rbch._/j#>bkrunލkIA« zNxE v8]-Ξ#C~FhZE<=,<$Lfmej) c7S-8yiO(;qM!@ Ѹ{>5!a>

҉th4dQBleo9=?ѐ'%b2"+q`G8,reõ_ӹYƊciuƼF[r `af5tP+ (QBzec(!5]yحC^)Ī]< %BmqnfBQ5 `k|q8FWdGd9!!H(!M7_~{O$|{p w#^?Q#Q"?֏:&D a܄{sY& (K6ŷljIJez,׆xyNjGdH~Ȁ?UY~E< ֟43y#Yl}<ֵf%|JW>I3ZдQ5WC+_CG5-,kRѧ[&<FR>f^\."ک$Fo 2E("C bV "`9X+nوrޮ R~a5-R[wx[pY:k IϤ!rZ_ L6^M ߫kLTp]/(II1G**rpSujDV̘8x!(Kt.e*P*P*PeYS'|)0ha @Dž2Ŧ_Loxd5QW2u.N_K΀=L䶑v]`֖i;Zi֖ih2R2G$|8go vkxᝐmgXem!\Xr-1Ba7ɗ]wF=%xeD!RuOB 'FO (O.C#{qMS\&hJ$ν`'h|*ewqQ3Va~GV - ҉᮸,~Fɹ6_#U#2}iUU9>kY[e.g*surV񮳶ʌ_Uf<ꬭ2Kgm/:oh'v<66[Zx>[rʂKFbRq1Ʊcm;".67Rq涹K3͍mnXmscgnv涹;cgnu涹X-*&5܍7{>nv>?%-ixtp;1Uf]=aw3Xlm߶ro[M4FĽ17Pm߶ƚh\yc4a+r8P3Pm ߶rh\9C4!_5ə>K˕`e:)57=E' xCၘ\ m:~|D"\Zv7PL` 9v[RYhV# SBKsQߝ%2ccѯ^Hg*q7 $ݍ7wW@kl ;5^]#G,?r'Hs-׮g-=D?BZסp:#,lz;bDi#S9BZſZx1Dֶlr@e;}@nEoO7|iP|qzkq:ͳ<["ģ;}mX:~mz$mj:n1TY5 <hh$oFsC~ÍZ҈yVj_GrBIk=z kPH.V'sU' NU'=?t z R ,d@1WU &R@UîbbnEI _AQtG%1 %ׇ0"QEIw**ľ^Q}J,$:ufU(@fƒȮ E0B BCa鏊`8 #a  eF BC3,EA` 2,0ax(e@: B-T 0B.4 ȼP P, 214yA6fdh|Y.V]b`(2Y5T U e,z kCXAߥPڼ, dqh0Y*ša84 Cšdq@Ƈ!0@&#šb(|,l]CcšaBfliC8S)b;YzaY<lCBg>h% P8 :,|F[0,M5΀BB+zAzơaY~8 =X‡lC۠dơ`Bi>ak"}aۧa[080q( 5 l"Caۯa[0vl(0q(ư= ư5 C]} [1t;}"eq&CD槪iZ7 T JR)~QJ T JTJPJ8PPJQJR)T*JȃJ8PPXQRT >JSPJQPXMRT>TJQPJQqN'T&ʤPL _eRT&ʤU&EH@eRL _eR(Lʤ(LʤP*BeR@AeR(L,ʨ2)T&ʤ)Lʤ(L,2)T&E T&ŁBSaB@.p%G'(\O71lE2 ))ݚdEL@:-lzB֋(iTO >JUDH@O _OTJUāJ(Ĩ >'TDTāJ(*}BO1􉘂J(􉈂J(h*}BOAO( >Pז>{ʞ7J*{BeODbʞPʞ3T%gO'&JTNrJS(D9%BN>P)*3r LT)l *3R:# *3R:# *3R:# *3R:# *3R:# *3R:# *3R:# 0JdAt,UeRt(" mz[,Pgz>J>*BRT_T*R)B*BR*"$R)T*R)T*EDARD@&FRT JR) R)T*EDfT*ART*EDARDT*EDFS**@ARDT*EDARD`kS)JP*JTJPJ T JTJQPQ*BRT N6>Ym 6_7a4}\$2:ޚoֶl |jۼہah; e>bPLjekvG@{D\p_]{'a<,Ҧ -v; WAbICKd2}}?g7ϸMWMOvIFi=-A3"o_Z.q7`5aFL˓0")X˩Zln BaqL47=d&mC$ )O4n!&:Xj%sQsjWg`rbch._/j#>bkrunލkIA« z1WڜO?LgOu]bg.Qi|-Y$HL 2E&%%)V qxո&Cm[ص h=Mʏ0@(PD_p%!P U:.VQm AγU,*3Es[:Ba{-i% eSf}6mk^mPv0__V}d(8Q)$G&w㢖`S R$2BL&2BȌسJQƢxJcQdi\ x67ن|q{X`Zu쥱5_d$cȫ$ PAuaFJ U!,G"T#̬5(R[3)o+‹Ts[2҉th4d瑖W&S1 EQxF+C)XﰗL6ސE R9W2Lor3sQQnTˉ<-ce{(",sد GD"i]Io8Pm(YFu: qn+2 dk:! gTʋ 3&mi8]g7[uRFLn#*YF{^`E#hS‡aLXu[g$/9{\ՃE*],`wnVg5Ёi7%4EsL~wkpktK+].UkKUڥj} 5]&`:Xjuk5&``_0 Xjuk5X G5k5]\0 XkUm_)^+!տVWkC6ZMԆ lr= Դbm@]6&d} iԇۀm@M˦>ԅ njZ6.dpP2 iԇۀm@MȎc dߚ֛oMk| oM>[1d &|\ 6[ 7|״m@&1d7l5F\ۀAMss +l5lu&|C9ۀQMv4l5y# m6`\=ۀqM Ԥ6 NM6tj2Pc@&6 tj2c@ + g  D~P]zM"AڰA}>lpPWSbۄ򘴎QiMM,丅ťb煵`4I؅q ~pFlv6lv6lv5?D\#6 P6QI؅ڰI؅ڰB]YXXVW?Y\#6]+KL/.ԇ nj?h\#6fa8nV8.׷v8z\[Aqm7ǵS]k/K8\&qSMr."q>l[u7ȝǑJ ǵMSxRm\[Q]~&yX׀%ry᧒] . ~.W΅L6 ි6 Q&kEB]京X!MbP4A]$uAXbA ~N>hk 'v~V.rm)ʵyz]+*y_:O,r]o5Qm\[qmǺ] "k7 r]gA[Am֠6hpkP45P. n j5AGA[ڠAm֠6h6ᇖv@Yr]~^ tqn᧕뺪MV6`kPu: 洦?5wOwY) d̃]% U'It &m &S?= x mo9ѳ# 20_u!ψH 0¸ ){a4}\@f~[Ev^3h. 2wk<khwv$H%Hr^DE;hLgL_KbxvM qc +!cZ" aF;v ŘRvD:9"Ca; Y6+9r)7G }9Q7*agd(S=;7oY.< ֟43Cf"nx G~2LR^]x>{[CfPfNg:ur^BѨ(fY]؎Ie&_}:SI߰% $g;z:ށztxLG-At.eaG{GC,G#Ö3J~VH3IײnFi#f荕iD5[Xϸǥ$}Gx{#)K3@/Ñ<)5ux F1˹0DzD&Hԫ VVѡsTt(!Ӥ5il,=&TcҾ-Ξ=wONqJN8m172T(K0.eI.ƅ,I˸%$uBPd]ʒ AYw!(ˮa}ʮ aʮd 3eM|>7( |NP%@_@v_r, @Ԃ̝\*_;,6Զro[&W`#XwPycWkm߶o[ycM4F9Cjm ߶ro[9CM4F@ΐ/rTYELC%WJS2=;ڀ7 ަ`/!?8:c0?8`ǿP,Eq&퇛I΍e-_23_bWoO'gr ZyG"LyZv7PL` 9vB&|E+{)ԲFTwgIؘA5޴N'O\xv7V܀E_1eAkL'`x v?|}#Y\ i _iጰ@ˋ'-ۥd ?*;7$-ղ `e-r9n6(>%~!RQ8 U-CJyQɝx6,GJ0Iiλ+ZeU}3O;,ssZ~vvhDz018kdpq'd<;H=N3}G?$$:YB9t';zC3܌O cC><V  'j:@QK(x P_?bF=(` dc8, >X RT 1&R( L郖(!E6j8P(ᒀAA~w"AnWCdBDq(G=4Qh(Z J]t%J]ObһCN"> FG?M"-E #(jh}yvUȪz dFiѰ@A!LCưMQq(2j]v42MF FCNsZ/0giI;6 * Ĉ=gr#uᑌ!4y13,l  KL^r!~;wn"iik;$#K~1:d5yfK5_m:~CK9;nH~vkwyכϸ›~sOug{~d<1c$ Y'U7v3ұ Lڣlm.^8pYD !|u%WKiB/4Is*X^^<>Ο泛{g\v^b&ӧI;$Ron#Auܴ*Mo5/-L\TB=7mk |I$|8}_61VCȃ>#0 &pŒ<KR|QIDx 4X,Eϝ Jx퐁P%MԮ`5I-_/}{_/j{>|ݹwj^>~NgcomNW< c 0z|X$9GL }]:^dz^z7k2 yAe*@" 쾆 `=X Іv-8Pd؎@C7??gO ?k=e=OVuqI?:#{g6 qB3)yIFSDlFT*'6K-w 7^abtYz?TOUԍ}ng㶨Q };s]􆙩Z(H De@D.<2}̠*`Os(d4m`/hYyPƬ .5{RIv˾|2w)&+/ԌH5Kb“PL a>-JeNMc:-Yr=>sƂ9\~GӲ)sɘY!-ck;Bc=..&`PJ~k4\"I Y#8EJ"apbhn+IamS[HrK^?'(T$6$a$I8$`T BT&zddalR&(&M)&l#2['6TIE=ڔ=;0e@(gWUFEa.! DzUFEa* 0* 0* 0L~(@TOaQQQQ~Llj#0%T沢0(0"D//UAQA<0*S/ @0l<*0*ï02T沂0vt˭ ˆ LOaTFaTF ¨ L9TFk* ° ¨ M6U \V &}mYE`ĉ^^/jp !˳\Y[6)h.yP28Y?0 eA AY w!(KBD^z!(K텠]UJ^Ca}0?u: vA0\˗Ǘ-yGe-;MbzLC Ḣ0#mBqI;j J(X7(i&%>J`ի;j??A/4m|T6HˬWAz>(S'ڑ3de(g(H2?W-(q;==of;X;;Xȱx"Bxr>u o.Xk,B3pP, }{WSe塱rZQ3~B?A1ƛ oƊ׻+Fx 6y/.s#v$ߖk׳"UZ!? t8S6zyC"^bWJpsCB_-ۋ A "vk[69ڲ>XN๛ *7/nTxm:alBGտyv@fKuRxTr/ KBy7LvZ Vha1dU_˿3vX0 >8Ј`bpG8>y~'ilj3/#'/#zR 5BF\Qvz~h$/ǣw+ b ; #awh)P7 tSA[d8#]}9z@MZ5iwv3ZT"|"\I;rM¿ c^蔡w%؈Mu+ /ѐ`CGq CsaXYߎWW䑛>a7x焉/__}&?Li|MohDA7z#Xx1G?hN",ʞ]<5 EU7v3ұ ߱@Q6nycjGe!1 յ^}. =Thkc?C;XˡoWvq40*`^KL$`4iGD-m$hNٛb /Xjizidi;XK~g;H$76S >/+)}&G }47=d&{ū&5I/*!J *ywml <*2{&>嫱\žؘ+[%ՊwU5WQa58OX;yTL ^mЋ~vp6tz˃[i]۵4n,V#Ξ CW *DwFĵe\-g9֍Lh8[ r<\J.UznAn  _}50v=Ļ2nU LzuqIipsCn,y^IOKX _J2TNŝ[ u/|9#oגb QzWceFC8ܻ &6\o,o蓵6oga&ngG We?K״ĸ-*x}IVtff="̭;?X2Sx>E_μx.3}=r?OW_5%k 5 mj,RDlz:+ܥ*ԋʹ^ 3X:"'s0D>"R6'tO'h:'s2l(/!}JM:܄t\֯KO̼}M)/Ay l '-,%R.B:^؃FbIXzq=$nꕴH7YW@X{06y30aFQȋC\hcV!Sn+nF}7lsZwƭ޴&(IIaqnfSE>w'E'ݭeG d t[WTxG s-0\i O&VH:kŠGCa_C0xػDZp`;F biKf|Z"$X%P^|]y']ƔBIڙ2ەIxy:_U9b" m &0"?:GIjF8h)w"2Ns$A0*ɨLq>l|2w%*&+1ԌH9Kc2z qv0ݖFhs/es%(6QIdȄWd{/ ީ )@4 Iq:ʽpzGghZ|ӥ-ʣw{ p*,S 'rEDڎP93%6u#Հ`)M,-%rZrA%7dNX)QĘ9j"3v4<#^ 0]R$,m@srq BMbc!A4BL|iB*Cpbi*"PJ*$"4/0RSD@T/2M;QA\*sYAA̗ ˆ V °A<.QAQA&TFk* ° ¨ ZSb*0țŒdΪ 8 dyr:%~J %TǡCyAT4E6Y.,z-,7|dNq%n]a8ʒh,QD}^uz!(K녠,Qrt(WRޙ>u:vH t\Y.Sz;ke/ׇ$/sh{,SZ1`{!(C`mSfmV-c-(CydK2JgO{5Yi:|!{N)@o;U˒gc1,\wFuH}#H <$^7$!A#Pt fE*; Lʒ+/)vri x҈ ƧRdM'f)%”<5IXS~c>N;W)9S2rI< I9WV2?gm9kY[eƻ*3~uV񨳶ʌ/Uv66ی~b[ljiPn* v.eeK{*Pǎ-툸HHř.67z涹a3͍umڙm~יb[4ؚl}s7ޤnڵb:4eDerWuA`)w;Xm6Ѹriú8RXCm+o7Vkq5Ʈ@UPCm+g3Tjq 5r|"*r$gt7_+MtS>$w'MPx &3x8߇`Ϸ ܏ b@]nQ84iݹ?Yf`KLӲ-iҶ\͊ ;*|̇D\&e;}ts7U ot_S)ݨtD͖h!!ia"6}p+l`r!Wu'Όpw{ZXaF&9 ˩wLuDCu*͏t)# "@jERKq0M)''胊`W(ݮ ]`$DzB a<~E!썪 aSQ + a( ct* @Β$C0$r$ gKRC9cdKZȘ$l dLR@dL(@` 2& D [B2&El &>YdM@dOh4E) , ȦEA@6AY@ B+4 B,Y, BWζЕ-Yr%u-*cOξd!YT0 /BlL }AY~a 0#C0Y AY~A0#C0Y, aFfe1 P ea32c)fdh`V8c)B;0+Sw`Ffe w`FA2B2@hrF&A2)]d!YTt!taV[. L0]@LBfdh`V[ LQ0#CЇY@aFfe0#C0Y, `Ffe0 !b3240+S0 ea324rV&@Yt rF& Aʤ[9# Yt322!!dM#*Z*Be@ 2 Tʀ *f@$$3 (`) 1)ْ"XDB@2fL 2ˀf@A'0{Bˀ( 0 fS ̀Ae@PA+0B,EYe@ 2 (ˀB.4 9"A`D1H̀(D4Æ  `Bհ!4f@P 3 ̀A6f@P 3 (3 ̀@f@eA 9%Ab3 t` t0̀A2 "` ̀ e@$d3 `K^a `4  Xl)+, ),AXl)SˀAe@PdA[eAˀ , 0+Be@ 2 (ˀB24 @2 䬌l0( d@]gQy TJP *c%@P΋(^Qpdx)+ W@N<8%y 1>4r禤@^Q< At+ At4rs@^Q4rE  rE:" J0 LAYb& 0A3240+SL&@P  LAY@ ( 0#C2EY&@P  LAY@  )4Qh N@&@! h䬌t0( \n `D0A.[:A.[:Q` B\nh0( \n `Dq 4r' ( EY&@ Y `Dq 4rVF:QzMQy2 TʀP*ce@+  u8B]g@+  uDRA]f+ ~QW@+ 02 (Ѯ2 h+ b402 52 TʀP*Be@| ; o(Qxfx3w@(7,C; c6@MQ (TAw@P (lo9U; AκHAAξHg@PdAQA wӐt0A! }  `DQ4r7 Ig@P 3 (.π(0Q` -vE h MC ,@3 h$ò@f@!3 h䬌l- AɆe@P!f@ 2 (`TryvTryv4 @2 d3 h`Ye@P!f@ 2 (ˀB ̀Ae@PdA ged3 h`e@P!TLf@P 3 PKA5Qy2 TʀP*e@W0+ z^˂zÇg@W0X+ }  A^EYP`+W0+W0`2 /xD* & / ~R՚W*Be@ 2 >VzC^`@P`3 +, pz AπP`d)W0*e@W0+az !{@z#sKQQ)AHQQ)Az@A!1Jc9*Z*Be@ 2 TʀP*Be@ 2 b *Be@Tʀ) D2 TʀP*Ae@*qHP Cʀ8\!ۼʀP*Be@ 2 TʀP*@Ae@ ʀP12 b *Be@$$)> 2 T{QT\UTě*?k2?[Qm ˜`L%ڞ K<>"! іLJcZ^™o/ޝZ쟿efy:z!/J>Xg4[e`ڦj7@f_7OwYkϮi=;c>;:x'YL77ӧ nflm6ͫvC^c*ZR([%@,"ѫOڥ4yY/M'SO#[ 7V#WAbICKd2}}?g7ϸIiҎ>[H~77'"hC[D-K%3>=&c3,3iyCD8 r CCUq͍dX(;;"0 &p<KR|QԲƽ!&:Xj%sQF|&>嫱\ž+ڸK;-" Z|ݹwcZbRj^6wa}dhZ biudH!a2 AL-az0rEQ1/1ep831wO&d4 Ї 9W`5\XTbU䴋e9\yCCl"x#K$La(xEb,=VkrKdBT99&uMf[Z餺W<>gw)(QpT^AI$K푳vp xtboed Q$ J쇘P0[̎`o odLcR~.H+6c5ܬf69'c[imz[ױ|4^% mt*2f:G82*FUT\ y݊: ^HBk}NʧTTL:W掷|hΣrz~=!cӵOJ:J}yF+C)XﰓLV6dؔ11Jiy؇` RZo*;~'Oau󴌕<]`+/狔<<-#RpĎC(W6\k:el<&^wk;! oau!ѰvV`&\Cz(!W6Rz]cؕ݊=RAųbZ,tXlOfv+U@M w܏ct/J&zO_/kB/dq~j?A+dQABXȷW p75%"@caMDJMHٻ?eOd^]|;^4g:TrmpxpD&p$A,@z wRјϿja+:$fF%]Lgi{?0mQwVD 6l6ol r! s)HH&,,S}~$:^e(-vҬ-Њee(lIFq~m û.ȱK09=C>亽c8,jB;n2cg):#jU?W 3 ]ˈFC>AN`sC=P(^FBh'"&$ɕєDI~<5-+S={OQAT,Uߑ+# kÅtb+c:KtwRr.dDgף$fHU齏LCii*ssV˙\Uf묭2Wgm:kY[eNjl3ډ9o'v֪.%\`GQfXT1@ qrێ͍TmRms#gn=sXmؙwm.ֹuKIG:wM6Ϲ]-OsIKޠ] jA\N .wYWO rj[V`+w?;1qo+5Զo[yc&WX#Xo슜!T 5Զro[9C&WP# gH9*Bͬ"Gr r)XJsMwIPx &3x8߇`Ϸ ܏ b@]n2';7?' |IcZ^e?MڶQ~GBO.qEd#o(x+vZgrܭ'C&Gވ]L66;KrGg _x}/u:›.h- r^c:!tsK }ĜEGzHVGH+_x:O??gMo^^?9lyx;9|*73\(\ߐPW/fȃږM·lgo٠bjHFצ&*tTgnD\G;P)G%w۰$+!ǿz$m;jcOVg>!ia"6}p,v^|<\\tԱaCZywבZ;37z^ :08!΁p0:n~_+( ȋ  1HLNc]4"砼T9kS30<~6R~X/0H1.=!^OF ũ nP$HTB)>ƉA()VR̕ba!DݎޣS8L)G cz9'T7s, Q6ِnfء3GAWrbe/Mڹ$=z^Z}Ql%&C"D ^o$S=zygk[5_a[۷8PRBWL&//l݇Q(a7?E1Uoix/3,l a,L+@޲]`ywF&ł-"?tt㺻 iW[ߝ`6e;aݑTuGpZu_!!SsG"ӢqND;!4B?GBxV.At -]zK1 Zlmi쐷l& `B Gqtz?W\E\ʥˑ>ʥ'Zp9Yp8rsim㥵Uz%m}R_?)GǭW..O|Ng [b.ks.߉rg@|?^Oϧ||\ysNi3ԛԝ:F+ԟ:Nk묟:[_HI:kjiNoTc)~<2l'c׭h4"ԙ~ jcK͖nP2߿/O*Y\ZrkzWsd1R+/R+/ԕWV[qUh\+BCZm:J4QB'[J:ܧ cTGh̆$crQvb1r|I̧^Nz(fΰ:@*'C.O._NGIږxX0;Jr,&%c"*p*1w{{Q&hs-ScS+ uƷzvO؟"nYſ~V2<3ٚ/6W0Νw/LJr=LMĐb4DG`A?:smOrČtwl$19t"ᐿLڂ:i%̈sE7!-dQ%2.s ɦp%>YvՐ:Db;,zX fB, o7.` 0ύcƱL`XFqY+5 Tk~cYl6Vr5Vt ]Z`W`WK7V~5VրiM,d-X`uY XY XY XY 5Lke-ր?K[\D]ڂ5"K` x]]Y iZΨDPւu`]Y i(te-XЕ`BWւu0 E6a$-ظГ4`LBO~ؤ4_ BOz5UxX}$m׸;ۓ4]lOr=I5nn$֨՗[V_nЯ}I5j@g%֨/iMȫ6`cvk؀-KڭAUn IoIoHڭ^[v׀-Hڭnsk i&斤j"l iȃF ]&d@:۰S8aP%VVk(i֡jjVPe7*k*k*k8r T٤ʦd4U6! @k5k5k5k5k5k5k5k5k5k5k5k5kE~2^ S*ث0 j^ ֯ج`Wdh-2zEvK&^ݒ) Wdh-[2zEvK&^ݒ! Wdh-1zEvKn&^ݒ Wdh-[1zEvKN&^ݒWddh-+1zEvKJF^ݒWddh-+1zEvKJF^ݒWddh-+1zEvKJF^ݒWddh-+1zEvKJF^ݒWddh٭+C1+C1+C1+C1+ C24+2xTFJڭFJڭ&^VIVIVI빆P+Wddoh-2x|SF^eh-]F^eh-]F^ݺ2+/C2+/C2+/C2+/C2+/C2+/C2+/C2+/C2+/C2t2Xoޗ+ޗ+ޗVIe}`[`[`[M`/vv:.{_F#Xnޗ+[e4}`"%{_F#XnޗVIUafv;*|vwk|/3AP^ ^;$ޭ욹" O^|DI) ҙ:Y<|O .ƈ}s .7IϟM9n 91wȗΣ.;AuBj=yj|yy>Mp$;0~+AFv^*RyEwiZ_\7򻽳\~!%XKw:TRPӒg[*KW!1]wrCغ8K8WcN >?ӜP~`ڎ$Np(z'J/["av"A+F`1@)"YH:}OAƀ89,*+PI88 GI[vg49HP=d&yǺQTe$D5|6@mV<t<ӱܭ| Ά+&9KY%4-1O1kj؎8ymgܲɗ~nϥS~4rSH@7Kko#;r:h*`33Z1uO1i1eu2)yIO0i8L) P)RczL?1yLɢ<&!:c*sB ,*P.cNr`VԿJR4zLL#tUR3:e k2s @,9rAN ]"GK=IXoԿ /U:'5ce"z*NS'!>泱sޤ}7[<=0={2(uyDr?8EAcO[(oq 0] n| -ts/P۽@B9[šK~S*K~6S쒛K~VJIL/ۧrP%䊘Ɗ**O'mі+?w/ ,rC&1bW A̒AWesgO\ weMnH}~6be%/[ݱn>m1Q&*o_xA$(,F?"H\A/޹6rVrȍc/ n#wz;n#&3AOvsJݎG s탷MHpmcRΌR0pģp;wF?ȭ9薝O\REnonI(ǭ/b7zppwH[w;LvlPnw(&>Zo<*Q<- .0I|7Vak [+)_~M׫llaD.z]J/R_ijקa':^* . et,Z-^kEPZ*^֋Pz(SSG7x+F~*<%k ;Aw_PCC%H;J.=T=y9OŽf^`/`;ws7ΫZpQ ʼn{$i$qwO$}f* D_EgtAetQiSYP2a馑fV0P@7 @*k\.r s#Z8/WAn]U\s0*999eݑ,Xa8iD1;NOaMpiOgR`RLJ0)L*>-ҧfRLJI\ClR[ 10=90r{ f壳Iސ7]V ;d* -pszuwx| لQ ›M觰AT@6 C'uM6sše,bhjvs4 ic4!JQƻwnjߥ\cZEiBկ2H4Yg8 9k $A5EW;:cS[hfw+4{6!`H6a \{ep#BPJå匯xlȱ 4rב>{]iQmnmSdfo ̓ݺnI /*>M!B-`P[ZK9U豔u^N`hJ F>Dxf50V hC05T, .nBU+iаeD2D֣epb"TƤl"bqOcPOgODDƘ<0̋/+P4Y#(&ULj5lw٦ylnU x<~|__FS{6EUhЌUJ4PM`@C[Q4*K,7UhH)l i֠Ae ,f=ūYKU>ӄdق h h hAL4@A 4@A 4@A6Ι#x x x|<@Sl1<@<@9){Rr1O4̇{YYYegӺXu@͒]q 4e)654bx sz&\]6@:ܮ\kvLb&}L"`d_EJey \uՂTLv*4ԶtݸBhVU ִ]~ΜFQW$<8Rdɰ+7Vd}tǰ/g 4^W-%~P;B5D)(ݽ{<%"mGۃJzBv9 /%jU\`ځ#zA5teJdկUsړ;_Py4P,ePG6CVB;}D:Kt[oH+i>˜g NmW]=?{{~ih d9q=8z X*</iV|ǖm,@Pm^^~9sf~aU͆ќ;3-E9 dzC!7ADתEpFj٪Vr 5P&q@J**rn }=}^b'baPNҰI%frv/YhGwu2\Zзv"4fDVcv(?Cjc_cRQ)Լ!^%)ת~m1)o?;Z tЅ\E7(w ✫1_tb/,ѶL q8އgkGoV_mlHxRj98Ad=\ %:]\Q^Z+pɪ^.rpBT *DȸtU;$_՝z9ܰ3mw_KgkJA gM%hkqq,9ܦ^x[pz9X3/2p9W"hi`pր Yh'<-UU^ِ}c}W}Fž+|yB{k &U*$ j}x:KY(jU&:j`:8:y^u1 -S3DAi7}_Ȯ%@~O[겁q oϘ#xXW41;9{UgY2j8k?TC*gU>sirns\뵉gDMzm;H'V5l5r4gmbM6Q#p&4l52/j&jDXӀMDXpyg6gzm"lAMm"赉M6p&6D&^8D&mku6Q﵉:gDM{m&6Ql^szM9D&mku6赉ghDM4zm&6l^h00Y~YTF܇┙&77|-293vάf} DE(i̳M\&dq:ws#s)E"#OQ(g\nAsysyh֯o^}|߿}G}jzzMv,7>I/V僶 _W}'ȫ8M&ۛoF?~޻M|'cr#IYɓKMCA|O_a%1rs|)ߟ֫o׫p$?}s#`s__fwb0/c_>rqyG_Z{" /.L0任C=Y 1^Q%| uJ5WT&ſv[ˑ?)Ii8\aagR0݄c['iTYgݓ eC*I\z'/!w[/W2+ N+У9p"hp儕j^! AbUsCP깒TKJY]Ks㤈Z+[' a۬'z"/??`klmms-1.0.0+bzr2569/data/projects/CoolSongs/Skiessi-Onion.mmpz0000644000000000000000000006523411603573245022014 0ustar 00000000000000exksɱ6 ܈=焖DW{,{tfp( IbRtU6̬.huA2+++++/ǻ!]3q_6ӻj:9_֟0\beG7W~|Ks_8o=m>-glߦQ͛]*E&MzX̲wN6 uwӹĽ]eNtsyh\Dkf5|wo&ydLڤWCJPb>^,VUo֛t~㈋ ng9_):d=F^V{'94t^Ⱦ|:rez*\o_f[.3zDnqmc5jW: 'k͋3W~H7ŐvJgF.~ԫtV<~>LҜggyr)i4[\:lOW/܌bxaSXcFe+/.fַv귋wXWИ1 EKeK*#q*b,Q )`KGg K}vyX]m5xS*d6ꃻtXmF~+b6K/N,7&DTX\?}5+ .470160ʈZ\ٖ)Ŋ *&i{%rer9)ȷFw=Do]r> ܏/Lݝ^f+~1/a/ˌf4RXLKᨇ{;OΟvޯ]r} z)E'LȂn &S63W?`k8wN"Ol@j>Kˌ"Ӭw[A~X gQn,_r -?SPFMf:Na,sOM?p}?t:~{#H>!g {FczB\A8{OЈc0}¾DQ5IX{VV)TJ%UZW @ eԢ  GהRcZqޑ?ɶjlYľNƶj_Zd[mdKƶjlYR)tճƶj_Zd[mdKoyaqlƶjXTzVc[Rll)B^ez*Ց-Ӫj|)i$'Nc*U [*%}>E%ُ~7XWp(jlfM$qlƶڠ"j#[U8QӬllvJZuJ%?"pv:5Z"[k#k-8[klfGxJSXNSs'@֋|~dGb֬YYfejsN[9XT s Zck"[kۏ,i8$Zck͚N Zck"[kۏhZZ[)i%)J~Nak5־,ȞfMV=fckSJS:lzGv4bk5֬ו[kl Z/6Y=ǯkm_fcf5|'T.6*]y6+w|S>LNM7죷uIGb3Mq۟~;LtUGfXCZgEn9KL7엋bu7M?BU^Nr*xûwݧL'_v?n˃p|1?w/X%??Oɏ|By7fYo%?Ļfyէ/?'?/ӏ^}_'/|=+﷿?,-N>_~_Mg7ϛmחW߭_=?^>,q?~gOɯ__f??<𷿎ן?^3^}od<LJׯŏa~;ywp埫(}}oޟs<_&vww?|]i8WΏO?|o啳|gߏ_y+Swx߽|6}|~x1syqr5_xzY;l2}rf?z볟LV_VW>_l/ɦw'j>OgW$Sik/le^y;'OVfZ<${[YOgcrojdթ>*dS >ػtXm2ݲ\.b6K/N$,7&DTp\?}5+ .47017!&(#jq^_;I4h6oKcf6Z/'%0VmiqK(z)\_ÿd~lfMf&a2u9Y/֋oJoxZ7^כLMc &[ifs8$l g>aoA"bSQW~+pY;aGϩaƇgAE5U b5k$:(.(#{ڗN. f[[|U4sjy=ՕN2ru9fdߗ78jWqOZhLyF#kZL Ki=0)m %D##XkSu@?u@``<%cXX[c3v:圱`;u x{``CJYL:H{``Cd aOv: } T:N? hn?h7|?1|X;-,Wk z44YM;$~S-cZ#'L 5= H]Ғ 04id4)BDPMڒ0HB?E 5ZPW{jFafI*fU̪Uq;8oXcgÌUz=;ֳkV˥J౽C]mIE>7VCVCm`d z㗠9{f %[CVHg+V5'>f'PIcE̗NΘ9U%'`[%2Ą@ϔ[(طS%++J q%ŬX HW_D--P\tbaG!C )"Җ|HZnˇ<1##'E-'@G+a[ˢBk <oJ)]]ktu_MySjq׋t*mi-zU<5}}^]8+[z\wr܎>)Zגe0;`vlQm3m !2zחEcs{/m6r{_hc/4rvG9P"ݢ2h ߕMs eaK0"O>>swW rO4۞֎H"8sٴYr$S_n2ߙݣtz" |Q<PGiONĮh2SMf+zE񐧝&٘>ҋgՉuv^*>ŠGh A79yG.u.FnaսrZ,(ڿVսF#wZ#'Ai\5 : $ta1P ->G!"#0%M |Q [+X\:\-ԁ z:  -AР dr;Q1]ttWFHQ 1tLAZK X|h>=G_,>=`dӽ^ǓOZ'>? {YO%>0NOXto3`8gӽ05ϐ{Oӓ $B{ӓ O'?ğ1 ̌b t~yUAL$ X<D/05ɏff1 ̌b d8_`^ɏfe]._]e?4܎O[s5VC}ή&IBlLH%/78>T< ch^^w7O6U۫tV|~>LҜ /FWfmwgd/V.r~W㫾1xQgnַϺdP=XVK9݌FvelYʉٮv壘lYٮvelYٮvlYٮveϘlZjٮvݘlYRٮvelY:ٮvlw-F^1۵[ bk=_lf{d1ٮb]#|,Vd`=Xwl|Y=w{|Y%w|Y w|Zwն|Yݚw|YśwÙ|Ywҙ|Yw|Y}wM6v2nc,]638lvffv滾=c{ ]6;0nK]6;1ߵn]6; 1n]6;=1n]Vz1n]6;w1n[]6;1ߵn+]6;1n]6;1n]V;1n]6;2nk!]6;%o\.77575֧QT}#'i>}44ƅ[5Zܩ:56maaK{ FG;ju>NƉ=$fo`ɷЯ[mCm6!6| zHk#joYɷlCm6VU| zHM=$foQɷPmGm6#6~ H͆ }fc>oAA(,Gm#6 ~{HՂ}fa>oyYh,C!V ~JH=ja>o xYlGm6!VP~H}f>osZP,Gmv#6 ~w{H·}f>olY,C(#6 ~;H™}fodYб,Gm8#6 >*-<ߵSO?:JujUJOΧ^l< 'ߞnB`U5+TF5(Vt_n{OQN!: VDXG4W*DI8;~zi目_GU 딃_Wyz|]ԑ.m|;ޛwz/'uڈ߿UQO:wleܤzLγU{^*Ur>]O|USV3a6+a6#a6>'DnIG)WiriHwv6;y5YCn,^=oja? 7ոW¶5poүGy<<88< &Cf_Z[;憧Uw|s;/dxrkGHY|'-{TBS6ǖ?MP&;~4r'r s'ԪE& 53{$}B=h//yM|P]*y&9_U/Wӕ iZDZFy֨AO{Q[lA-ז㗶p ׄ A8ʰT$+-ȫ[-GH7@%#/6Fo!8&+!_6:.?0Z $&Ll !pO!ے%H#PUӾB 4j|#}0hǃ19ӼnȻnؠvCa;w}Q6  Y yTH0fp;mvͶ9x~)|~ʧK>]v!o|vK>^OA識~A|Z: ovAn|BŐ\ : }4rP9X+TsgrؿvĿvvswCnsx?OCOtɧ+!o|퐏?^8˩BP"F^,f5]r:{!vq}-~8ytWnBQQo[dNZ%&R?yn0WoC>-gY^-(ܭ^SGGQzW-;^JDb'DwKT 72-܂PT1n a&ct# .EFYjzȋFьgVRH7tkVFJ+gz8^/_r;b_|1rE\l#ˏyU\qje0 J5|G<(tyȀñ-5l ٬Br6-Eixγ("s@}=/> [vDŽ[r#ҏ@g9ۻv^'Q;A^hgquœ€%>9P"&xYFޝ\`h &z)wIg.8KI`%KX7ŌNݏѹ}niFWi|ZRYH=zM tZ%b>4d&v /A(Z#tA%Ĺ3ԙ ‰lT~ʽף}Wrj|?nڍ_ݞ|@p{֎٪TE"jIl!ᡏ]ߵd}7An<&6 4ab^ dp3 I-I$1.ۍ\ @lI@' Į>iOB]AFZ fھBR7:OAxK܆Dk(܈\MɤA |Bq4XeҨzr#yѭ2F`h5؅lUV[e=ʰ8m-&6XUrkmiֹ]f4'#aBǓWhB}aO62t3gfA ( =̬hY` #03+2+Zob6 3ѓt4W hmf˸ieS4̿e$R4^( "̮mzkhffi,*,*N ~*t UIxQ}\Y4(TF{rb#mَ?T':6d3p4Գ& e!zR n+avLl0Ed ;-5@6PuB@yFv nI_l1Mc1H?ʼnϋ0:!NJN.]Sjviپ)$afM|t-`ܔ+F4թP[[lFe)ke3;\Mba14ՅN;ucݞ (k\M64b>0s60҉ $(l~ ᒚNȀu '-9{٭zW &vKH0KN ~#UB焂H ,a3,hߠx^bb`qEHz:f]N"QNunIG< #0Ik`I :=rx^>6~p ;UÕ wep.K}DFeٴB  ΅M2РHG3M0uh{by`vD/qZJ:XԧQH, PNG-hJVEn[bԠ b^hcؒ\u Y5Ik޶w5DII9hiۃZOߜZUk94Ņ&{S%VTfwqMsi;˦q7MyfF{' o`d7Lgj8+ƳѕdJ td= V6*?s9gyo$N{8;+'t9㽲8g2g2*hqsƓDWOv!WV[elUƾ26DJ\Qe'`26,ceO,iiAAnY*t`^14m 6hw5Q`h T34*1)_LZFb)BbD0fܷlNbqsCw>/FV6;V5u Ѽס{r5]䭪e^7އVCZo-zU<5oػ}}^]8~v=n"yr>?Z.Mn~:*?ݥcG~dqi;ݣݣ=zwInP61rau4juoo_ӓm6޶ڍm[M~? ׊{/mGы:ϳ=)ޓJfc{JuƢǢYXT|y͢Ǣz|`;,z,zO)z#ws>fE|ǢǢo=r,z,zO)zI c^XXR@==EE)E䫱=N%,z,zO)zâǢѰ=試7,z,zO*zɢǢ'|`;EG\Ng;΢w 9E8s 8QD/v8E8r 8qDp㈞΢Ǣs 8QD/q8E8r 8qDp^),zSYLDϰ7jmɒ+GirZ,9U%>KM6lezDͦ&!jCmCȶHGd,b#mPVwl{D͢="fmXkȶY(?d[-R#mH6lzD͢d!jAmSȶYGd,B#m@VolzD͢="f{ȶl&lI="fcȶ\#m&vlIE="fBKȶL#mlA!;qz< ƓhZcc3=y,z,zg57EE@lm==ѳ'ϢǢg z6k鋞z,z,zgf٬¢Ǣg z6kװA,z,zgYŢǢg z6kzr,z,zg٬ȢǢ/zVk[,z,zg+٬ˢǢg z6k鋞z,z,zg7٬΢Ǣg z6k߳,z,zgǢg z6{~4,z,zg'YĢǢg z6{cF],z,zg5Ǣ73f 7t^nV1Z%$|h٣8'nCĭzO#Z*˭_v;Rn/ݨhTS}2O!Z<qTS}O!ן>Շ~ThS}zѧO!J>Շ{T@S}ڠ'OAR>ՇxTS}:pO!J<~uTS}?O!͜>ՇtrTS}O!J >ՇH->}T$>DS} ӧsO!Nꃤ >ՇV9}(qT"F>Dx>\rsrAC#)FR.AA<89Hy@Tsp PAáC5)jR<;lR<9Hy8Ts`h0C9Hy8Tsp PAʽ0Hzr?یtnHeSv )Gv.YMtfy^4.`]\_gt_Nz=չ[\򡗋j:KL9(nq5,D!T7 nX~uJ^N7۫tseKX>|*n%;W69wj)8[Gqg*߯WӛO#wѿ^xﯶ|˹~nP]l4,Oߋ\krǝMIՂyg-QI!ʶkg:#]-{lrv\=Lfx/'zQ ?_ Ok淳rv37 c7lU9{σFA2YÅ:5\8[&n)^z8.|@}=/> wΞH}/rҏ[ߣIsi_Gp@iV/KzvW'! i]c )0JQΗM!/M!/7rwGS]=b>^כytMunrCsOs=Q+V͚صILi3YI3˿ޤtQak94@s piBy-r1>aRsvzռ+ގy; *p7'cގy;v(Ȼ1Ƽwcލy7>nȥǻ1Ƽ٘wcލy7>ډdcRFGO: a6wPFа!&F`RFqG<ёU?n5}Tq$NGT9*4lQG"vTL$!L:[YNkV"P`ɺ oot9bVŬYQű/9f(~ 'QgMGC?ٽ;РDOysoI9?E|| ||ŋJ3| >+K^5ƒ _T jzw,wݕ$+w__n%!])!_/y׼[_󹸨<:—KM/J]G +ޓK%—W-_^Er/zO_^O]/zk^%UB+ޓZ=W'0_ Cx_ Cx__~% }9) }9 %N8aޗz?@|m|B+? } [|?%_+@(jp("@ z@zK@kU<>&.X2] ĕz2z.ÕA(ÕAT+H\G@ P-W WPuA(UUqE*"qUJ N%\@$ ' e2HB(dH$@@NQH$ԁR6CB( ԒtA"B(U@I(#B!""4}bB!,&@m1Fk1  P,Ƶ2b\R\WLpU,W8'HJ uL@┰ev-q@\z$ H!qU qk?@\qE$J0\+unv I<;L-p.H_ oj0P@anAsqE.kO K c $J]S(%$־k__GDሕ/qWW@[9 H,|$~#}#}# Ww# H\T*"Rላ#ELV q/%@W* )_ hӼ%+NjH@fTQH܋Jq+*qĥ< RY#GyBHTDW*n "E^(Dz%k^] /JyLW A$+okVO!R+{H;Ck-$=<)SJ]y*%[ \=^Rʭ@TOY`N\#n=+""kPԽ+!TB \ %$t$r@ e"" e :](m@dWB$ UBDZ@P Q(tK% ]Ev"y".H@b+a&'$'f@$OmH[5= "{R=D$0IԌ'=LOO"R]}ȟT$*\iZȠwD%$R(MB.ÈJYqʠy'T%2(U&*S,D$W*ʟH IO* qQC2} eT$@ e2HB$* J3+(D)H9|@I]i:IH9[D(y-"t<lC9]' |@n-5$ `. el. P ] '*NEĀXD((EDz@))sH)'=Dxۄan PgQZS?PD]Сs)?P@i,\D| ")n(V%peAXIWK+ |A{_P"gp%сDj6@\$ W+D  H\@$ p%ukMfp)"|A ! Uy\@ XSGݢ1:h-F+"P L@hekZ 8*P#쬧#H.jcrH^P",~L&^q+*U SO0 `ɤ*WjOԍ`EyP U V8Q̨D9PL&B #aD9 ESQ~}*pG wr t .P3^4M g. ;ļ( 11 93МX3y=oy@|^|çE<|VpjK>')/M 6@bV yQ@ۆ8ԝHwf"ݙG3Lό >/  'H Q@F!'>+ 8Hft"Q8"¹H#)}=gDሐ}9@H|' ೢz >+ HD >/pD>Ӣ`HXΉj)N KC'D($ġ3"qqpgD |ZT-fO (D bv@|n NI@|v@$>=Őu|z4MQ}R IK܁H&?&~W=y?N~bHk@tr V*C''G#?h-3 D_?ԬF_G[p\Ü(0UzA $ >;P,|(:1R?אԐx(Ds#] SB 3 >;H2@PC($ \g{"Pe D;@)w ԐD 󣀸c@|v@;5 >9OjH|vB' q@ ODQQ΀(CY?VwİZ!X!W!ӂcЧ?`>Ne1j7s}$-^S$AT(D7~O4dX@9v Q%' Ƕ@ qW@| Eyo@|bؖ@ D^"qD᳢pD6RS"qz9hpA8Ns>iRs0Ԭ@@ QLBIQ@<i@:DҊt9+G̋鹈ӫA(pČH1!7D px ipx ip|* G|*Jq *R)n~J:SSQ>8 pI^<1)rD~: * Ȍ!fyT &rT$9*T #N ωJ$NyL q@|ZPs^D X$<1i*YS@([ tqYY^gy<@AqW9a^y΁MTh;MUE*tDsUj! hJa"`OZ4W;H| !Evʯ;ׁ( >=@6ԍlAUH"E-Gg٩hJH̍S#x j R 4U_Ԃ@SUj MU#Pm Hh6 `BsUv >? QihJ- MV;105$>?*C]1W?x^J-W-R}z*ԁxh}) ̠*u̠*5A3Uv@$>9@bpTRDsUHEDzMWEj@MԁZ@"^lQԞU׏G0OA]|1WR{` =ՐA$>CՐs$B @C gWQՐ RHDG7}\7{Щ835; S5$:35$ޖ +;Og3s >; A >7H42@voT~gׁS_AԠxHL2 {;=ώaȌskH|zY @<8*<: @<:yxxn OHǧ$5$>= ѕufc&#u$xa;^k *ݚ(-r m/Duy$LWD}y%Ya\5:2 >;u$-Ѹė@o7=JŠu^7@<NKAl@d5m^C;HM8A{o^l@b/Wď@s@|zT?qWUýԳu޵:3Ro$XqWƩկVP7`YMXUki'4@FqiFA];hi@|^`]3kD q(k K&R@|fE@|f$Psf;q;C egB!r` 0xۓ-70VL`rWa0bt'wm[az,PPХ)EHG>t&᤯CAGR4\P#Pʤ bG D@:;HGz.RA/uzYthxQB*<.*ή@ѰZxBiT"FP;X4D(U(mQ(Q(-ޣƮDBp W(,OqJC) /<,EtL)"$EtG( W(-ޣ S0pBcJhBi^Ǥ#LJG& %hdD1 E+A+ԭP:rsK˭P:rqKP:CJ:FPZGcCJxciDBS:ƣQǔD33GG:g k0b-kXPKDs. j%Q:']rYhA瘯uVs tN[hKy0ѠTjr$CMA $@q0*{\ l.Q.=]RvEw1ǑdydɰBa'xbiN2B,C:-eT(LwoP؞P؞%bzr0 Ri ;j 3j `+KE^'ʒ&fB}Ht#ӽ2M B°I-gÖ3F< *R0,R0.R'Il9KrViv.1g\-gÖ3aYZ-gÖ3aYw-gÖ4u]) 5*XU)azQ0t`|nGͬfiyh]9# *#Zљy>ެ&o?M?+돗Mc7MI\;z9)g馊\wdxb ߊ:cj#ċ*bq7nF2)Swq%}"[ =0mg4[O-_8xw'lVӷټU2r9Y/֋ي{R^N{t? ˉ0exY.g/pDY[NWy,Xw 'ӧ,c}*5jqb{!V2yv>+8jj%?[8>!jm|UyJJ5b"g$SB_:.ԩe`$~+գjUa0%IT֥MbΕ:=W\)֨EF6W"аN]Î FQ3}fq|!x7G-ƽT~]ޖ *~R?m&74[ m{swdXI>}M*{EXKoK<#NTV&t%G4[\j,ͣ94y;Um]]eN2?#/4 /I7ow//]7׌hq&NLDJA6;j@gf"Lv%eG"(IԌ{@%w#t.$F]m;;q`hx캌< c^4:j#9rtAWe$l- \\^ru.# u{`:=NtIX'Nt]R'։.DԉuKD:%u{`:;NHX'zN=f:#uw`:;NHX'zN=R'z։DԉuOD:'u`:?t DԉuOD:'u`:?NIX'N R'։Āԉub@:1FR'։Āԉub@:1$ubx`:12Cz}X?t<+Oӄ?&ߍx>..>^8Mgדz:]Mw_Wr}+q*w`/Gf2y]du3o˯U.6 >כGOoΧB@gy3L7*܍&"%6̉\ LgW7Ks}]_$]~i<< |,7 ſo?ݯ~7Ssf9YMn%|{/һN{ XS$n_~_oFft?Χjo ǹvG`FyqtfKQ՜}SMxT9Fe?]|b~M~?j:9D]lmms-1.0.0+bzr2569/data/projects/CoolSongs/Skiessi-TurningPoint.mmpz0000644000000000000000000005065511603573245023373 0ustar 000000000000005x}ms:!7UMg='wwSU9S9׭[SDxn*=) ,kbz4x/tE?݈;?_:[m2Yŋ$ub?<2?d}R"fnιne$ofM֏70=HG^UN)NO7I|IU9D@*SCuVս(-.{|mɺ(seu$]˗tP/QlR\_eO[ R>8h[&iE;=YW̶EIl˼NU٤h"YrFM^&!qh(WAq9*fcU-e:eYZl{Yi}˶os\lۇѪIE4*y]UmUyOYPZhpS0b~U1Sʖrjʢ v!^)*?L^Y[8s>Xe1T73UUTb/Y\kp͢mM5וB-MUoPum7Ado \*KU)cB`;y2z6d\z>`;fd v+ײ<^]<ڵzgq@zq=Mf;IexÂ2{Ywϭ3VvuJ%)a)r͟|1Y}RUyx}I׳roǤNDIV:dڟ۳SyN_Zuu1*8J&Yly.,MS^dr-O*W#*X>iX(YTe\˥- CO E2}4k 4Z!rl=J.fhuhmJu|"l >R^֧@A1^Tu{ZU&_T:{ҭ2<٪W| JUvnc^N[YS&ĊѴ v|W"ŝt):O{Lk([?cOhЦ2ny`ZYhJkzr?3nZduvruM8HeYN#R. VU b"nVVPUWj@uHRd 0CaF,S,DG{. JbAIؠ ?V5܇};;]ډͫ=ɺn[SOsG'L2PN]MؙЙ37uqhBB998 kl΄Rr}t ~@^h0u_~@d`l΄/؄c]1h =ӫLNMؙП) 3a8h mL&gv&t5gv&Ιfv& evSglO]%Meۙ3{ksh?P\6r CkCOphG9چ.wRR.Txcu7;ވU;C(#w}Eyќn=hnvXk1V/κ36SGܭwrz wݳ1nGݭsvvH[Mnׯ:wRʝTr'` n粣:ޔɃۧp) {^hSxxSh ZF+l{ß C04ո==ո ivI}N[l1cĨ04Cs';Z;INU @ak~]=ř~kkXaǯ1;o< } Њ קi !4=^x$Go)˸,㲌{ػ2ɸQSqM +C"WP!΅.ǚk"㚀·nyρ߻g\p2fL'͌#I3Gl[ܒG$Tx]6uy]̟MRG**'Zs+0f".l&qQdyu>dq^Jl˼NUIE>tSj=w=NQWƝŗڼΪ[~˽Q'L4KBm2~f-"οEqUO77E~S.OW6yKZY&+_F?r_]?eb-N>ʣc֧:/h?(ďI:.ݭuɴ?ٷg3ǽP";cTƃ`,Mdٖl]Y͍͵hn)ȶ>[U0GTn|lq-4)Y QBexebwŸk2)\Op=q)D@ah[foyMu5Fb5@[9THP%RFV'Ӈձ9]8Я^pztx-U߽Vy̒/*=GV6c川Wv n-8^ tt'OWU%^' 5eml]z8l\r09Ł<ܷz@ۺ̯o,ǖ.\PL]k|M5MݒL]_8…Յ"[hBJ:Ye]IeTIH]qU< H}v]$2IM},hKf٦=yzP]-zlqWhi>!8]Deg\ߩaor/ (bPZ%zfmߢ*"KUj}=_e>ouwR8{Eirئ5/=wY_+:{eT˨\G.}k,_eViGy~l޽6^G_1QeR[ =l@TuV]]$yxx0Er7rH$0{OĶ>m7}zGGhOm718?N\;?{?p5I,v?RdMȑm7#I,v7%]`Mm8S?b/v.~ éSwxJ˞:Ɂ',CrV ^3Vp46C3VzHesk+p`-5=b #6Kk{Ģql#ZdV#]8b}X6+Xwĺwl#c&7UXh]#{+F^\r_|f*zϽ[poS0ZB<|2 )WP)GZAZY ,=Ox#- ^Yڟ|@;O'a<=;?)' ΍=~IÝE=ntaKHcgHezY<ꍽmmp5ݭEw^˧nLE5cԵ/ꒃ|w8[0P@䯫 UZ|rúUn׻ʸVrU56u۶2<ܾʸ rºʸMr;U5< ɫ|ܟ*xh]ք\YT\++zxUN Ϥש9IxWV:U'П't8 aUQ욨߈y ۉ@^ 5Mt&Lc ݯQ b@wv; \ uxs_Z$u[{ z׃/`1"4ݝC-(c;\(cā"@z8xp=ш0baEFq5e أ8=Np]H#”Ft1F*?ʈE1F(7V/7ZoT2`DoT2`D\ŲoDTpr$&6 IMmnMB%P~55J}э6ŸF@%#%n0Q26ŨF;6Jr0Q2 ޷Q#%9(ٷF (Fɾ ޹Q2%C9W`ddU3bqFU,C9W{ *}O FU,B0;Pq˾vq˾*QXj}G֨e5;Tq@[Qb\ B_0;`9992r\%3dcU }tW W 3g\'fqP_r\m3Zus)C51: +<+<+g^ mrnp$&6 IMmI%<|p||s>QhR9M ;8]De4[Y,auNcU-T'4KBguTf(.ⴾe[9^&J*}XT*iTyB} T*];^W8{Eirئ5/>wY_+:{eT˨\G.}k,_eViGy~l6^G_6SMԉ2ԋ =l@Tujhv).C>FUCo?dl%Ͷg24nnl=EuA-Q򤬲=u8[>iȏX(YTe\Rnfb?԰Y-߷IbHEy* VqƷ.f*n]Q0?A}¡~0P TOU*Tu[EU(ݪbs3C$ڭ㬗&>&,Il߄.1,!`Q$Lՙjya| h_PS[6:貫<XI}}nl̼hMzzvm^SbF~ۄT)hݭ pF&XiSC6Dv@cTa~Qo:V%96᷑on0nmhXt a۾o~0nmhXtۀym#o~0nm#8rm߈dRD&6 IMmnp$gkP xJƶJx9<s>xhS9M a=d- 2X`- keZkeZke|T-Å^ keZkeX`- 2X`- 2X`-j^= 2X`- 2teZkeZkeQeZke`- 2X`- 2X`-e枵 2X`- 2teZkeZkeq-̣W}ZiVex]ed]v&.˗Sյ/QW@: O$[&iɳy\Y޿CݳsmY,۴2SUmƢ=TW|f[ 6ydC.{tlǕ4sJv\ηe巸9)E*bPvZ%rթQ6\iȶos\lѪl}=_e桩">bouw8{Eirئ5/=wY_+:{eTVx22T#Sp߸z)ї}')G&~|LDqԯk3HiϾ=)>=UwUWI2 dl%Ͷg24nnl=EuKA-Qr=rsfێhOzUL*[e&|eD!lqg2q@6hĶPwjMrpj?2 vhn%e[wuGE;Kʷ0 $[V4Y?ZblPwu} MFհC~ޡCqh] u@C(㝳 zND1X1"TEunBz0Gfgl̼vn"k7hʅn76sA UMG4c706ZKP]0cz6D &VJpXa0L}w߰) QxV_``^H?sfr]3b_]1˥O\1|e{b_]1ԥO\1|b_\1HߊrѶl'bip)p 8D I㬘'iZGٛ mRSOjf2Yǹ:QsCoR$:Ϣ-t,qy*[Dc&pמdRflnmv%uyNQnqmA_o`U+*E?ޏ;"ǪDsԙ}d{oIs혴uis*b)@8yz`3Mx?Y?mf-۵/[o'X(&L,M, To=PPlU!~B3&ل9N)μN:wWil\ԱVUZY4MևY\O/.Ê@=ZxwV˞ȻJiV!@Ͳ{ϲ~w~͂YNOQw>n Myv)r&bs:_?KYwA~g C+Wuҧ,'ՁPY dUCӵ,ݵfvSw̻^i fkb22|Ut[<: {O|orqg^XMkW9~zᩃXxVKլ "'{P:+,0x6 E:rZĹl8Si@ A) H(_rsXr}^i2#Om9,  C/ia]ngob`IC&^wNSyҸ}fYzU닃m`)Q~m>OC~'60l9p8+ՓmyL-1R'ackSG{}J<͊xa#Gov* 6p!ff3;/c2\wyR'Opk>ZhjSWXPm|'֙Θ0q0?l?aD6? mg0?tSg0?o~Gٰ!o\U\|Bo?a=6'ՀET-^7:J-/ܒl=`HTr?CG~&Pƫ1? T%Ы̷]Zozطzƕg2?}[)['/?K}>]]{Q+y;(_Ϟ9 0O0QYb|tƥ90 Y0;%5MtQEE4Х^]&Bh":Ga4Fa4̧0ק&Bt0 FњA3auuHSau\ 袉Ea$D'd#Я$v!H>EA8Ip$!Gp$!IF@@&sUМp4%Ҕp4%VѤ[=]{4%ӔxcoiVA8Ѭ&EBєID7,|@p4pHhג8єhMS8єhCSbkqhNlH&ŖHbw8p4%2t%]~GS#=5Gh8ڨ>Mm[vK%Ei4_:̀ p4_ .S@U !͗jK8K5t3X4_=Eh~[,W^ޢlZ!}Z*ɦGM:z9\p4U3pq4?e>Z.P if<=&= |O (͎q4;GPZ7@8u hRtɡezNh!¡uѺoӺoCibCG8Ѭh M hJ:Kg`Dåu]Z9?hRHKꁏ^h]ZBKKG>4;3qn4@L_- 랕K@^A>Tr ͎`Z0 i`D0 ha &Bh4 <0Ow= Gw}#G8#@8OX`p̣{^q4)Gp4%Gwp4%3P设{tף;<{G8{GS8єt8# `Σ>Ow=OhJ4#M hJGSqt/hJ40{.yt/hJ.2t7 >ݏyO鞼;G8Gs8'#͈NGJ}R{zԧq4'.Gs8gD h̯DHq4%Gw=tCԀ_@w=I ^c M M ; @ @祻HS45HS@ߏ43"$MC}WMtHC  ٱPCIitL!i,TRS&KhnLl L37 IKX 0f hx8^5Z:pPIcVܒZG@@ZH@* -$`&(@ZK@;<ZNp\6-)8 )(͏}٦ǭr@٦u08.~KlZep`\]Ai\Bٴ6-62`bҤ9  4` <V0f5M kZqpl\ڴظfi{JkV ׬6-B8Z@@Z4m8eGaQ"i!m6D8HGҫz4I@C+)$i% @ h -@`@Z~@5<ZpA]k!p @ 49H@49H@nx(3T> =fp41gG8Dќp4#G 6l_IRlݾpiyϥ$A6t_Il]׻ꀁ$O6^MdʆE\Zka !` JRi ;$Ztf @ h -.`@Z\@5{T<t2㎻KK hu@wVJ l?Hqiƽ{!7 H@Zm5}Zm5}Zm5}ZP`"a8j*a8j2a#o Qӧ Qӧ% Qӧe v Qӧ Qӧ% hLbhLi lT hQH"4A494H494H494h43QB\`, CTA_ |!U`P0hP0f  f}bz J՛  r`4,ܗ Foi`5, Fo>j`5,ܗ F Hdֺ!fȞ:z q i=Cz!i(0zyCZא!N!lHPCZא!c!-mƌچi!nPbFhyC1#!{*|H e1B4 ii_H A!n^4m! !nVzLc !-mw3CZڐAK!ц%!o@`L2@K:4@2,K;$f͇RњjӜa \Z!f iH HS4V;0@ xʴ!Ңe UHɯBi1ivF vhCV2{h51Z@@Z@'i@Ah h`Hi)dFRRȌ  <Zʐ>FRtk)h)C:xAK2i ZʐCFRt&22$䗖20f-Ahfy{т -iH@Fƒ!ô!m!m-hH†% H YIUi3AˀwF yB@% A@4 @4 ! ij8A> irAGd a&H= !ҠG " YhW$ *0͓p4U`- &'0hU`3 Of!\CC2Їpp4sI88-D X_A5HZ_AaID$EZ5$C"D WPX#6-J -J` Ix@Z@E40 49GlZx_S^ҦtmZ@2 M: 49::m!!0ijHHS45u k((0͎KH3{ X.:tiA$iHH4AH@Zv@94p쀁2CHx(3䀁43SҒ@(,M4?6-;$ Фy˥u yB@'4𤁴΀h`zrx 3-)`x2ъ̀0D=gP&5ir&irh@ hAH@C1 ALX g2= 6FϠ.% BO COV *CO) JCO jCO CO h4 9 p4[gGs83 I܁|"ôP/i!IN):d siڧK$7VH,1B:$ɐUU+CJ`0PZT`(-6(pmZmPrU8+hA-{ӊT]`I4;;XA h4ШhMi*$M޸U!i|0%->Xπ0&irHH49 4p@5<ZzCe `,J8XpZq@A@Ҋ Ҋ̄ 43.iff 43H3@Zo `-Wh#rA+Vo[rD/a9 A` Mt 0 $i ?` 9 7` !-6XHie 逶E H49H@ZX@mqɑH HS45 A@<Ԏ.@߮Q~}-UT&zeO{J%:SN_2O^~qylR|5Z=!i(ډA!uI Z h-Vh=4kG_ 88#{ hI=ѭjtXk#tM`9JPNf^bWM̓txPae~G46~Mʦ_yMϧ_|C_@wء_|_0~q7_Or7p]q˥#\:xBK-t |,K_1߳yt XG-\zt:<:h{xU~ma=Cw0 |:x}:x|!Ó+}:**ŧa z1<΀'=pt<Ln 舀VYMHOR!< = .|rұEt|p=c8zq'4lL[e\L7 @4샭2D @NPt>(MÎȰ7acbX[ܰ)0aU B& ;" \aV)aTݰ9)vD@CH{Uvt_}atÖhgg؋mm 34mF66ciO66FCk'5L[`dڧ Ͳ(Mf)t6㄀ul5_h'X v5lhWհ l>.^ȴ ,iݭ԰w´G'tahڡj@@CH !xi9zǂrӲ}VFմ<9MiiG1 4BF逆i4 K>/ _9 +&7Ȇhu0a~M fy @hgfE00Y>a:(kTu:}Ge[(dUޗj{O%^U~S<>uP='E%UPY]%kX̟:Ngi-[sni)DkoiDȖrʻnf:RO_ԏ* MaQXyN-Mofk#eOu |j. o⮋;7MU<ϋB6ti_91!mJ90jOܬk{~ iZuz98q$ QkWBbal46P/TA`02r06.́10GFiđQ#ٯ_ٯmn6IΪu/5{s`A_0S|ERfǸ#:+{D~놪`4?O?US-~~Xey2*fV1v(Q p?/4ٷoOM~ˣg??7-KnfKeJ?ߢu1-ΓcKrS)ou)r,J'*J2)1Yߖ'kKV*{xY.S+_l6Y/1~RO OFfIYyf=ΣYU^ᄷ[:*{pϿ}MHz˪_HZ/dҍ?cE;ҍH7E E}I=9[?*W۴JuD4Ʀlmms-1.0.0+bzr2569/data/projects/CoolSongs/Socceroos-Progress.mmpz0000644000000000000000000004366311603573245023065 0ustar 00000000000000Q x}8+u6K"S o븶g{vvc%Q%%RMR.{.?GR<.%7y| ,JgWdj]Oo^N]u\o*_՗M Uy>5'Y,}~\G ynkN %9Ϯ$O6 Vf}ݫ>0a죘';]ٖUg8DjK 3OUA!Z4!qgJc\M<3J}pLat͟]yM)ʢiTfBYY"T="TCfaγьQ)G$A\|.+7՜INyB^dnI䪒%xHIJ& ^WS=-¦$F5)8'hk&4h?䇹Ü/~tmMAج&ItjURf|h5b-NjA_/qiW%mC7ʛL)8[MU|xmGī7}Wo4=/߽WS4 | vGz˄sKٕvWΏQ~>=t\LmPM19IkCX'OI of t{d>\sQ fhTGf &vTFIjJ̘X8ڞfUaI`UZJf&KW+[ ޾uzk)v.u~j:Tַt*]?6SvX<_|s|X "YՇDϐ섀=!xX* .00"sIL>mJdYv{&0|_/KZcثLuqZt{H)HG–Idnj9P 2&IWᚚٻ0KE;Џ=\}IMG{\:/ r{w|~K_ga 7, >.km)3po/6r^SgΙZ{f{>lcF57meC@Ҫ#\1x'w(6qto~y囟jh3-Z-! = d``71v3 gsHYcb19"cq) eS;YvJvʉ~ W:萆+u1 ;d2d{pis¸Gmfb|+i2:hԾuF朶h\{q6: z#>v>׵NrEo ,~~9 ȭ溬\(K,;"NH~Etښ"yZ4ވ@2и*ZzorviHy k}ol Z l&4DMDyJ2f+ F!Ȇh_]/u?jY["{N֜n- [l<7)Q Lx[x2dms/c,sl;FJGp| om0lFe"C:QH&[FJ"K7imB깇g7 Vlum1GJꔚ 1ĸb1*V'sH׿rΕͧdZf&Mf`Bi*m:BV0T/4ǹYA  OeuCJA~"`"~gBڹ/L?LH>9OC>' ' @ ƿ66"6Xyiح^)O7#xuf-L5[kȷ0ِ'3ۜ&nM'%{//aY1͖PkIɱd "b5kFFvIڢ0-)~~û~6,[`0ޅ: sy}fo ?eF9[]eKBq/[r4{ْ˖l]˖_l]Q˖ p_Ouƭ.\c1 Ț7/>5+z/)[<-~mv^{3}+vF yX2yY2yY2y]4yP4Y`;]Nhg=~hg=fhg=fhg=nhg=rߥ:팢%%%EE'K$vۘ݇Wo,v:M׷IN;H;μY:dHfT@Aw h6,e e( 4gfﴛ;঱r;/{l\'¸\`ߢv=O9Wйl۱1YA洎Rͯ&jqj|oڷCۡv?RT f9u-7?_~u7:;m>˟nfQs8owdC}1*)547LH6c|y3ysկ_JM"݆h"\({ueoQZ'&h(>UiۅeL/ե-o8Lt!rƭC*&2!M`_d7)Մo>SQhw x d+QO3/Mp T2gWLm쩩o$' fcHT_2oyB>"U:7_En . ٫J=?NS<{qݏN[㺟;4!|9j~)>tdЕ>4?L\ɿL/ Ӈ|2}h_BMCW>d >4_ 3-@& drF 6'GtؐD'8!:O8"8 gDÁF42p@? rH4 D5 rIt| /M,:@ @1zc(J_q06P"ZFr@z-fz18h=>W6UJhj/› "*q2XN M7[(*ׄ\X^.(^/uB0 H* G.(^9/x~3?E4(\FwazzqAza(\/8h f96gp=-R8taz~ KhTD+p ׋~@8b4\υ [e E1IRfvX~)  aAzifzazKȰ@\wr_xcFaC_XF>y6HCLL⮢`aW^>|`\~+/a!׹` . r2 Օ Қ𵕰x䇅[5?h E~h( RXrfDl  Ңrp! 5@ -86Hd"aWd3WDpjdj!XUEO qUMbiMOE\UuE`C 0C +a!@a!@a!0!∀< ?P? K09pF~m`3f8|~}p8T`N3B*1hV3Q-ƕ8C k8M&!eMg`)ٍauv =AAYm Q7 UqYA|!|܃G`D0 1|<"` 9hr}a$CAY85\ˁ^sA\lFZ@ވF:`526r`e :`528r0rMM %/Q:^Z9Q㥕V~xiSJŌF 94I0C"`FB#dt͓XtM`ȤuB  dR'+9df5إ@ȤNr#!Vdr0k9t20C"02[f+"е: v-XZ_T@]awr(` C+9Gؕ:F^6R K9t.q0ar oE#إ:F_6R oE#إ`rhdC[v)߆]ʡFlإ~U S74چrdvۥ=2Q9h^qf(~y+f($E(h8X&po 䭨8hb-9[ =Al9aL9Vv@Qy]T?Hӑ!ЊFmBAPxE#V! fyf!(lAzpÐD_eH@cmH&0r:,X/6Cp@zmluˁEJgXj/p݁ [7O{O9=Dc(de ο"Rς[mD|~=(`߅m#s׫]m#Rx4 D,"n7;D kH`."# >"ptÍD,\.l#83X^#`H F"u_k`@R5i N#,X/M*2B 5?hNєo]T ԫ\P^w4a^(tXR2,P?Wf88Д*ԃ9<s(R/8S ի0Ջ8 *h'‚>`M܃e|(T,T*S իȃ*P^,Tj#0[X,0:5qF#-,+BB:K CWB#%1t/"xAx_G M>!l:?aR/ΏEE}rxEo> C 8Gq!@q!@q! q$)!@q!8C 8C 8CҩTC 8C +q!@q!@q!0!Ӯ+3d4+gC,$jP8? g4|A6C n@ g RBc!RoAAkv@1 5d`ZV&s dMa0R\kTs', :o=pC =8i; {Paʿ!-Uਊ={s z<88n]% R3DN?d`Le@ @Q[4$2u l:HC!SA3@4$k $btr`v :~_} @k9y#q;_#ZlAtr0rQ i;_ ofy>I  lHMgyz܇q^f/ػfl>ECW(U|>=+<0VnIH^>9l& s(C)DzvEuH/oDgo%UVi~YGbYv4],)uOHz9*QY#xN'da#KW"ҷDV֚%HzFbgìJX1gR9wg]:ȃ& =lx۬yamBp᎖8e}>Pad-W,X}^ K. |1+"=HR&Zxd.ʠeCIrY[t~ /؏pҚRM* jzZY'lU}dXOWT#s+w3+{yjU*x( }X :]G ;,1TQO\Ңr칔SEQWvu)xvG}IOpWInP>/]/L^UAW S&:F9VNQ!Rx&i/RXׄ, z 7pIMEIp̓?Q~*uwTXR !(ˢ u`$Vy\+f$yK~ v1էqӂZA+oeM\y&BeG?63 f0S*J-wlPC%FS;RCV˒.o[jˤꌇ>5L.6(ڪ!%k'aX2jJޜaca Bmo}PnnaSM~3 \YEӬ&"4f<"hf0U Yaq$M0DIҍ0<ѻ!S1Cԧ_ 0[G/ :TC@ e5`t\8 `(XK59lq ĵ2]#0v0KU }NXݣ* &D'j,=NT 8(.#`_P"0D  lh0! Cn;.DyZ!l*'Ueit؅Iv OFal6YE,LO&څֳ+5>Sm~#u|WVmiYokQ?Dl ;Q$E}v )pD%T4+;Zۇ:̏,,`ߖ%j)=HSC_4Sɗ]LvJO:L4l}[y@mYSw꘳`mBp᎖8ev-AY'(wJ` Ww>/d_rY*E۔eɲcVS.~ ^6٭WPRwO5 $)UGmQU#MلV#uHU;kpxIW%7[7ޭI^aR}_i߇faaJ$>*hyTdw>UT"܆h"\({.4RMQWvu)th4Dᘯ8O.,m:9˧peTemU+N?QθSyHE$^<}싔=5&l xBl&\Y!.'U&1O8FݭR*+E]AY A'IB)Wr&%s37lߖKԮo|ė 4X2'‰6Sˌ58OJj>zLN߱!G 莚DOH[aErR)rF{:awb 3 N&zk){꺞'w\OV݊j/Ò7-wa -Nuks)-hD6&~~ ӻ度_pG_+~zl/mmy۞m t6wgܩbI\I_~GMofդ"d'!]3Nhy(`PSs\'|=z2 5 b c'b Jbh9i,vg]Vn~k-}/C]"(1r7_r#w(rqw.wв p"64e,WϲhVg,eٍXƲƲQ>R,ԐOIkƳW``S\=-riIs+w Q(eڽB*j)>0űh!uGdx2Z?wD񂅼]<(h쓠lAR%}D*0IxQ{R"g/4˶1d?0fZqQY]ة]։UR6oW$ ז=MᅱQ”0l5CBj2%ɡn҂4SQORִl=Ua!0N8 4O:e}Noj/N8oO`t״^pO= Q[jd4k/!sKdMMD@M4DhT :e=CgIqdžG4Nqdѡ&t|No0!SAk{\ā]w#it%fq8:ёt8ItqH:Fx"uƙt(!5H5g ӑ~#9?3i噴tHBӱΤ~# P:ӠFKL^:t,ŘU:A0YQVpݎ%l0,VjUɮt֫8ㅪu~VBNe!')VrvZ7sb΢9-m ]Hl T)u8I?S#UװPdö8a{<yē"A(ߊO3*!?Ÿ~Ovp)kT-lH2rz7@#Z g9 󩷨a=鍄dW]ui}ތrρ[Lu]` j3`@NS QΔlUǙJWPt$SKW}l2umtUPQ ]ZL]#WjCl&ꪏ˺М1D:ȝzW޶;L{g3-O1d{]UsKܑ֞:9O;瀞: ו֟KNNʹHݷNa3 {Y7ө#|J9O۩&;%6WN :|VWh[t+ %oJƶmGt>9T4Stޗd'ô|:mޯ:ԝ0T;5h|\= Uy8-gg5˽/5W"]ʷ]4Q(3 4Ӭb*@zZXlV ٌObY+/V i!OXkV֬7Z!޸>Hlk$6d M#!:yDS4hBfnT2 4=@M4=@Ma~&hz遦hz遦p\Thz遦hz遦n"oDE*XEd*"TDWcoTDP"^AR)"qDۑ! ! b=(85ŀ40 h+ЮUѰ(bHW)_̅DgM٥'iF.f]Hj[b$&ke4`% lXՂ,LE[岁zMvׅU#K cUW\sUQE8ר`:~)"Q`"i-VujWkɮFPY3j(*d¯ׯQա03+1_g _ ~%+Z ʹ^?P`g,@S}n6 9|O1SuꜶP3WƧI2p:T'ɤ•L 'J@v]Tϴ:Rӱ*ǫ w|߫1 mb,eQe ,q&p; ೀ{<ײ}%c\G}nzBK\;ԒvYO<ٺ!o_RtlRE&,Ob NsLji~Y KTtdPle=IN|;W*rh>/[薂qQ{[]^6H`?&,PW}ҝҝK^tt},}W/J_\e_KNvn߯.H#xW呋<ҫEU{z*>rQGzU#ʏ\T^G.^g_TٽϾo]TٽϾ{}Qg?Eݫ?Wv/^\T9ϹszsY彨szsQ?Eӫ?W9Ns.^^TϽs{{Q?_?wQ?E۫܋?Wns/^]TyϻzwQ?ea?Wy^.^]Tyϻ{Q?E߫?WgEpz.X}= =6lESQNۚ5=ɚ0VV]qHh@_X$k+a )A,\ ;( *Vђ˓7*i–'Y]V}.V|)h pXO7_?xӋ?o/'oyru=Ňwjf/\My~q6{xx>8$}x7{m߹,hO9;&솽fnaTfsvUqPiMمRI`2JdMa5[89C<9%/ճɆq ˏcیGByPG*:#R`gV'(ΓÏ$jnƋ(xsG~}KVxM%#-՜?Dhc^*%#ؿmMYюL. l:y5'6O]$(eT3$zrw'n;2gd!LgKeR3FׯO'6 嚶A!H{tk?Hǯضr7Y7

Put down your project notes here.

]]> lmms-1.0.0+bzr2569/data/projects/CoolSongs/TameAnderson-MakeMe.mmpz0000644000000000000000000017302611603573245023036 0ustar 00000000000000x]s۸.|~NS>'Qj\۶lϼk &!ñߒHh&%h}>X'c? 2L9!=y0=M;|ܐ7> 77'+}|Z|/.c>iƀ<7wO>  ɱGi)r{ Yx]w@3m ~F *)Fy&5/ѿ< aGndad棅 m`Biчq`k jXC> jia1QsܴAcnJ'ZuӲ Gď{g$3Cy?'5-47%M9mchT|T_$bŢ114k?菨P,QETc7P&b#G?~<.׹>)T#8*5y{2{73LBSQ?!ó&b9M7q5w ?b5B>yuGdkX@4Ea$$?IHbPso K !q`x0 &s, yZ|F'd9M!)l;阸IhKu=B:Kbai$#:Otg[g;"{v{퀭 *U~}\܀r.@UR0[ @5x?.I:zbٳYgϚL:Z/_SZy5sy/l#g:4Ïω̼@#NVDFPg"3]=cSX H@*$1?PFϋ}i|$Cď"/Me}I =Vum7ܝD0ۯˇmՍ zyV]]ެwU墱 4+D;/[T"3֝Vf"O +ڤwP (B` pg\$hD̄;ثOՐ+W7wF.s Sߛ[jw/ !O|y^^W"aw)8/8X?/u_5x@<#u4PfO`;L@ ]p~u8Q93:Pĭ ƴa@ ͷ뫇߿N)O/yl}9/YMb9Z6^*+{PNH<2N4C*UO `#Ww<\|[U]إF \)?c22q}O C! zUu<xyb!Xɦ4SÍ+x5R59F:K ``۠rBg{AM\ӝ"ul\]zÝG* s\X9x'h,>:y3 >D[i KkAMjHߴdg.Vt*ޭ󟍜E/=vV2eFΰ0Eʑc2\ÿ|Hd30d\(}d #3mQZpd "\/(f~t(tdAJG&rb^Gm'aqƞYj] K5O,P jiWwr$Q5~G!Ҏσ>|#ÃݥVLD(bUOd:&xK|Ȁ^ (|~?6yP1{@ 6#KF@ƺ R>#8 a,K,@{7B ʋ&KQDYu>^J~QN{bw~YΚRKYd9o D EQ^H^岁(RFd἗rɲъ0Z|roo @T ~ERZaI)ʆ ~hmli?몶VckkxKW9*[[K j_Q޹0,G-/6#.kq!r[\ ڗ{-nKYܗNZ[Olk/gx{ ~jm?Nzk ~Emo盔e?Sڂ_>BVr%{?_a֒B%Bڊ_Bom_VM]M|~hk Z/kk/ \{}9[{-eD徔d[})ɖ2RS/gx{oZ[/jc]-eवվ|ˤվZ/߹b_j}N[}EzCe%rMy.H88F/xi+nj`=<^ >e~Cn'(4P%#2,2ilűޏp(b>Lp)G8C3Fh߲Zo#X e!\treWǔ}C0[x$^<7~y6s=ߏ ~hv3X,ݞg {y3& 'J!Wcr<祘w%U;Gu%r=xkY\T+U mwl8@eG]@G.@rD|2=-V0A԰?D{&*¼4[_6f{#]A} IqcUL\ /~9i­䥵|,}^mA5p"{ݤnC[L虎KT\pWy]%/*$| ~Pɷe,V3z?'{#"lZj8+G' + gPmi=!ygd؏/:MmmqG[Y6m6Q5j..o]_=eu*jWm)L' Dc(`yC>6! L⦼+!|\{qT *<=:RІ]LM4;T+X1+oYܞ#Ѐy48NJ7Od>9v}RNCOZAy=WEigŽmb%Ma]ʍ ol^`zhK[徆i5f-nkʠWQXUC} 0Q!# 2wehPMSh6/}Np#-ڗg=t!C2)C (2 о о TehGeh 3U_f 0}zSڟ_{Y2ωܷb>-v< ퟡ>kRڗ}Hg@6eh_eh_eh2/CT>2/C udh о gp_  (C2/C2/C-}ڧ}g#CLd}ٗ5"q~Qs"-?O"%h$"sFѲA>2/c2KGϱdl2/c2/c̘2}ۗ}:2TAȱ,%2OoJh< >3rߢrO\HܧLep_y9 3=Tep_epS2#2PG*_țt0}zSz+,,} |@2bsۗ}#cX2Pۗ}ۗ}fL>>Cg "0}zS_*.ݟ%?].&i4ܗ}?+xzo\>$W3ؑVëoַ\=Wj:~j sAo5cr;EXkǚeoMVFo۴4۴4J-iJBׯTJ$&-gZ49ϳ>|s Qw&}+;j[d9dS쀒 JXz}G!P8p@#d6jW,C]>;I MvF:쌆P zi|T)b)b?6xc,%At.cعmqGB߈ }w;.-зʻB }[;.u]o4/vqd{v;$#\ޯo P,vB1zMBLati],]:.}R}}R}•t\k]E֕dzk]IF+z4JOKiiip]*=Y*ɖsl%>^V}&Ǒ8qH"r.q$'+J2b/vR(yu}pe:[zZxiA$ %=j¾>KG5%D]f{ ,|I і4RByJi5Y^KøZY[3 ?|>X M'w ;(Yw0E"a@<Iq*`Wv`vGT5>5 [ғ'Z!/~pz'!.T\|4;?:j=0N eat vÀd2Bq(4Q~{Ͷ T\,Q<.zQIr] Tֈ35E-?zh]wei.ȳ~\> atA;3m $ qbx_eue;Z;zf`]#T %3 \d>?Qe\>JPg(ceƍre<Xr1rqp e.%-輧g6h62(1wJ&|haJ/fEK=墍>ŸژhچQkOkE[x=hu1V.fLZ1ʤgFCnXOpNr3?+WZ KܾU]=r#哳۝r2kG%QA2.F#Oa 4vuW\?/'I,qhEd|$:O?rhġQXth:shʔ4O{%yT>jz6oҳ1#!cq#HF6ҷyc ּXMWSJilzsHJP f0ʬ}VWrJniji/{uHAle.t٤vԈl'z|eG_M*k+Iez%GQ)xtF-JBO]NURAӟT}3oǦK{V>J0햸x| WvT_ndU JᬭLgoַ/R| Z>lj=?Zj Q $B)X+XfAZ†p)+1ga}Ø՛%Z0-|^W0bp6 vzU~F‹FHEũ4ۇߘWlC d;>g:<[7 axlfs{YvzuMG!#E,G0"[V9ӵLWNi"d0+ ,S>e* ܛZTRl.˄Z^Z|ᘗ^{ݫ>^mAہGHlC['#|^ E:Q_%SqV*xtAs ,27fhC6klUv-H+gFj^s+rQP![ `1jލ9 O[ֺwOrW-Hs@Mи u~42 ;ǀ|.sOpQ*@5VQ a~J]Q ƫC*P\3SBxxpbri5dvVwg%bM"׃ Uv)]Ph `/lڪ `C˛ok__^_= p2Ee7ioldZҴD1kGtEj\=,B%nuX,FķyT U?𐽃Qf'XaC)eDi>>K,C?כo`q*5a2m@>v5ys4?4^UP=d!>ߡZi##;YFK`vgOz2?Xdc3R_5)8mPY ӽ'EG'IFfrEas3Qy rh^3s:;[k[uv|_BAr* di-ȾB͕9.kN w F׻~_~VN=c3(0*M9": 4 <[9rL/Q"5hԮOTUO]騹K %ADxDй^PM="EY)K5.Q5*.5.gH@i@Y (] K\L맋̃*Zڱi+iAi1ҩ7з6C-Es?bS  ~19%進aYy'r5n]uzV R՛8,W8k.kdM6iWy5z~]yOִkz&Y/$k§xo:*o<*o>*o@*=U( _??}*쯥M!WuNv_\g{0<'smupNJ**br7wkZ(G$GRa5.IzD%)cݪ\5:= `A} R$CLzvF/̱yRR@H&OPy̆:a9_z`g׈Rꡘ2P>6TLxD\b*7!a6' 6VP;Q2ʱjbHƦfKvRW,]_vŢ~!mW,C]vŢ>T J3Оdg4?)hՠ?oGE"v p-Fcs1R2xD? =z;.wB2 };. зB߬PJI2lwHOakC2µæf"?p !8n.St9]kZK׺K|{{p.]k*Zsu%>^ZW}',Mғ'}'u'm'e*\JOEz\'[IOWzdkߟq5@:u\.8RHDZt+IJDZX짝9/Jp]ߑ+Ζf;^Z5*ͣ&Tzh~ QO { Q^BeֻRH ̗mI#%D[h tVÛʄҫ^KøZY[3 ?|>X M' #;(YwON? DfzO{DR\lʧ(ؕXkikE ]YZ#ܿ5- a` =y"b$u^ ?LI5(HW0 O)NDBR⥃7}4a|k^Z` 20I:ia@{evtݔ^XDžm':3¹X"$1x\ogk,g[~к*~.ȳ~\> atA;cm $ qbx;_ƸJ'EOYIgϚg=k>[0=k5,.;'?W)v!4}JoQ&08%"MXr^(g%2lv< K *sk"#>q(1=8Et] t= BRSdө4x7L!N:7Q7_E$- [׵\mjJ_7w7)tGW^޳]Ixh%ҞU"3xյת7 !;*h"AMt/+Ģ(/ JҎFd$xz%6!cW3.1dDы-;rwٞ˔lusn󰹽]Vn1] 2a {e9Dߡf H hF3Wn0m"5tUNɩr$I>!GRvcJvk 3/^^2o֨2Ðrpf)]r>/!^56[*5 XG.*O7(vṋՆx̫C;S!Z/ y Bx pṼIk>[áJo >Y9LѢ|%?-ϫkDgA8~Y *O_]~Ῡ,ӝ%/o)ufGC*=p; ]|pʛBkFGH)UYWkWg?Õ +zt/ yc(1 77rb+wݟDc聳rQ.3BpH1_>$]f\qe.re2Qs;ϕ6Q ̴/L+w\/(~2QtdAJG&rb^G^:f>i`csֺFJs4AsJeF9}`O;y;rxxS'=[H?x'=S?x?'=5T?xF'CJ}+!UOĐª'DߊUR`f{0$(0 L,Ӥ{0$(2 L,0$(2ͺ' L,04>L,Ӣ{0$(2 L,0˔wfD0& qtbf"0$)@)ݯ'0 %)D)/'@%)Fu"m@=)Fu(m@t QmT)F ` QmTk)F ` Q3mݯgݯMgNOGtπ#fc{ۨ TJf0,h.  h*  B@b10WX<"V4hX8g?ABD`b,` Lc!*Z]V4XJon/o?Ū)HGDZV ?mG M+&p 0mwl7F'@["[Q}Cu)yi| pZQLM y5-,jzlDc6s:nOJwa)&ōu$rI /Fn%/k׼czv*ޫ,>nRcð\kG`*.#48Yy cxԁ_4v{mY-˰RО5״w pVN\WO ؟bg`?Fj_4`SLTЀU L+m\jj2{mVC[9ghn`⑗b3{Tc.-OՐ.n6WYko1/O s>- Ӷ0 l)Րe\]|zZvywy~X1Lv5+P{rX*fo L;O<,G7LG D!@w@cw'pHUž?RPOy@@Ah-`Iw4kVb]|$Fg!8A(Px0퀨VЪ"@Ws6}k BUPF =/PŌ;0m XOQȞ3 3@c>C[헇 kؾ/>٭sHٯ'ȾV.$?Q.C2OoJB<[Q>'rBɬH  {dh ퟡ>(2/C 2π"Cmо о >{Keh_|dh_>Se}Cڧ7OE%C} _,/#H  [3g$C2)C (2 о о TehGeh 3U}ڗ 5B2K)*C} FrY$C gzg}ֻdh_ ehE}ڗ}ڗ}о Sо 3ԑ} 2վ~ %UFa}OH  Ȳ}e,z2Ozg}ˁel_ elE}ۗ}ۗ}ؾSؾ3ԑ} Bga-0}zSWFI0]F/cO~nrB>g~..Mc9+Klw|Q}j#rAr5i5f}ՃzV*Yf{Yj5CcͲ?,JY~X/$d&iiii [*҅_ן~yH&LZ*.ϴ8)/G[KIHΖ҆yc5O}b :%zPhwBN"lJ5rLrq)Id='(=(WC~M+8Lr;l+* ܇e0-dS쀒 :Xz}G!P8w@#d6 P,vB1zMBLati],]:.}R}}R}•t\k]E֕dzk]IF+z4JOKiiip]*=Y*ɖsl%>^V}&Ǒ8qH"r.q$'+J2b/vR(yu}pe:[zZxiA$/Kj>KG5%D]f{ ,|I і4RByJi5Y^KøZY[3 ?|>X M' ;(Yw]a%2DÀx#bU>F]C5L[ ށk +B }䑫? 'OC=_l--"OxaJ2Fч=oXFƿb X~Jq"6/4X&xD ] _wR!Όg}!*c%?HPs[;-HH1>I) L s, ŵG0*=.l;鰸Ii%A㒮<$7¦@e>c\`18["=uWQ]?+⁉<{xId36?_V `NT\s9eT?)zBGϺXL:{t>YقYapYEU?kߑ7R>9ݙe]ā;a噉"6.9hA !*-rx>!Of9|D[/}Z`6~a aãcU׼|KF:0ҁt`w`/%ϩt^J$EL_f3xL#+7d r 2LQ/;<镜'w\r:{#7/(9 r?P'?KYgvX%׉/Z7&2rue:Q$'/9u u=ѡBRehـxc~I>DB%%F||}6djʐ+_/ٮ'=7T{ОU"3rvPgw3P|EVI&bQ PM%iG#2d&^}rLX rU=]'ՠ"~\we+-K~Qa5a;h;Ԭ:27WĄ_˴UI#$iE@Mn);y,ukld5HI~7Fy5dRy6D,ۼ g㻼n/fKѵ|u9UIeOR=ϼw[9njC7m'd6Y8U8}ʯwg#_pm =@ri+GRp !m0sіnjuc 3mQF-1ɍAD1й^PTQ-1O,o“L .VdqFnLĜEʱV݉yhxA>4T`mTÊiWw~pu/nNj<#ÀZˎMbO4?~]/(dAhd, ?(swg EwhdxlJ.G^KÆ>7R p='@znCۈ6{#ȅf#'!-S9|7Gߧt+Ǟ:#JVFtܽDʈ3F(`OL>2(~ޚN`6j")F)F XL`6J@TrQzfx(=mއ٨e)F3tFfݻ}SBŒ:HMLo 3R])p!%)H XL&) p!%)pC5ޙ\t flI`6JS16J٨EL0%`=~&3a6{?36jfρ(L&}pkQ"C ~u0>ַ(Ǐ0L)RFpK{efVR ౉{ |E{{Z)LVJ|cG[%J =Ywx0u!@WRۨ%p%%U; xl|IJU'9[T<'UT X(#`O.R(#JXfi'+O)N$*BW` V"dOV" +4$I0k% LA11`J LB!`G]fB`JB*BBki 0@גV"pJB+L".q~B@r e!10By10Ac`. Vc`. ,D7v e!DY\B\ݯ\Ac`. !d[sYp, vN 0\"h. N 0S +0c`. &BBc`. `.0X"U`%cBUAx] sY84`sY𬀹,l,0沸 sYh72ξ0!c`. \ڎ,sYxj e! b!V˨Q4H}t+m f![{ܴl2(xq sC[@8 C_Tj] 6GO U0L5Ѵ^Aݒ^x0/At>f =&HyFpAaRXG"pkZxث-QjhTV{;8m轓EI݆ o8Sqy]%/, ݞ|[h2lEj$~C{B\5Ert">͡yھGu<6 1zU3  budayl*_As>@MM@f *'K#/f,N{uQ ?]Z0!c]ln>߳(ԉ_?b^5$pb|M.5m6=(tJ\AF=:h~^q_˻˛y`$ m I zByPCurt3xQ}d`H? xHT`kp/qzT"*o@*4?a @Iw4Vb[R%HR1:#d0rlY-ʘ-OȐ9 2=myTh ʐOY؂"9$<`ls>2`+ ucD,||"yc˾F,#%[Pˈe37d$i*W a,YMez^Z,K֣bY#%mwŗiM? =BlUg7]>9J!OLh%oFj 7 sz8m @7xli{~E<3H8ϑp96߷5g*dC$?UP8 uУMh{:62K'K"=r.ғ$'+=J2µ8 :.}R_}^}R^}]Ut\XE:dzXIFeN ֜%o6LgKOK/-$OTzh~ QO { Q^BeֻRH ̗mI#%D[h tVÛKUž4?Z[ y5yд}r+_Ep[Xl["H[= =").?PPa,5Tے]YZ#\ 5- a` =y"bLjniA|cSige4>y{2{73LBSQx 2y #oj_HAG}2D??&oe<vf? e+LG2ą&G@G'iAB4LNa`nxev K?VqfIŅǸp.H( zt t=gi$/*k٢=24YL?@.Sf0H ӝZhx81DfO!{0&Ot3!='| y9< (1M>A-|$6"noKd[8HiF4JEeZ8fP#~RN)) ;dV?#֮Ǯr*$Oc2BYi8z\KQ#qlE?}}<:"^*Xx#PEXؔ"_G&nQVpgVoV#ľaDrX i>Y&N"2iZ ۱ ?r_4ܴ/#3.>b51e\OP)0ѵB,~_oXWZ)V>V{c^uxNmi8OVbY2.Gk,es{ɕLܚ,,/E bSXA=]O/R!)y)=3 qyE.xkv%VG}E}_DrO|]l@{25{ wg'T_/n^X&E0Ͽ"f̴('(I;!3cc5dULyЯ-c-(lw϶2^\}G]1ِ Sr 8 ]++*w>+JeZxnxJ#Z1k:A V g>/+bUa_u oWa[SRȼ%u/ 7e m}O(m E.8sN APJly6ul9՝.p>8׷7ߘ.O9U.D#FM^IT1ldи:CNFD.: "sJB^E1U$f\d.d9nsG'@Q}OE{m">` j؟ brK6WAuCf :yBf{#]A} IqcUxŰ>nFn%/ԇfg#ڮɻ-6ui."/I42148L9.\j:nO-Ke"Ƀ{pREщkB*jKs(`wm-vbtrSՌB?hE`Y8JVl QVژ7TfcxC[\~&y)6t/|TclQ|ovyw̸ErTʆssLS‘XY6maؐSb!8L+CfT6Z-Cӈ: L"AS]E32$ÕHhVNwPjr2r}쌶4<[(d92f)c ?y2Ζ!3,dzhK!`:1Kd1{g1R,+dȲ 2d)C2ۃ!KC7O!h xlB*M< aI,7"%>_aV>rFr5ddei먕RݱmtVYtX(fQc͢ǚE5śd|PFUߦuTަyTަ}TަTzl!OPJ Sn7žhH,w6TKZ"7!a6' KU@ Lv9ʱjbVCrU%Xa ;z+KXԯ|bQE}+خXԇVbQ*%~hOJh3Пag4j?7L࣢L;X8NXKwc) s΅n =FDw\ qotDžUxw\qoVwzxy;$'˰!~}asse"?p !8n.St9]kZK׺K|{{p.]k*Zsu%>^ZW}',Mғ'}'u'm'e*\JOEz\'[IOWzdkߟq5@:u\.8RHDZt+IJDZX짝9/Jp]=\mnΖf;^ZIwI51zxF߽ˬw/!/)!ڒFJz?:/[<7!xw5ϋ}i4@++bkᇏiZd%">M? DfzO{DR\lʧ(ؕXkik;p dEh atA;cm $ qbx1nC(I:zbٳYgϚLZ K*gOx }2D 6C&5$xv̋4aQ{u~$s=4KȓD2&2rKg"+A'ZTHJc q^ :uOcГI>DX&2F||}6djJ_7w7)tGW^޳]#r1h%ҞU"3rUPxw3P|EVI&bQ P^%iG#2d^}rL`]ϸǔ;ʓ}G/۾Rrwٞ˔lusn󰹽`iŴw)8/8X?/u_5x@<#M4PfS7$w熮JiQ29{bT䙢5'[>$vYִn9BT"aiO&>"TfRy^1wfŰ˪n` 4ā͖5{ͣݞr ʞ{y=V1 j!*:ױ^EC&ᬭLg|ԩCѕ_5Y9B|%5-/'zh8H6y rR$o5ݻ.R>Zh>X)hwc@i+=$V ^r^^ :|Ne!TA6c>4 4|$oY8m7k(=sui'..ˇD K?~E[~Қ3j׍)^t܍QFݘ|q319?: J3*B1,0ҏiϏ*~5.ȉCA&Y (] c*b\=]d ]I:­m%jt)ҎÁӄczZ@ D 3ALpri*nfBoe@u|dȕ0).S Ljg 76U6jlS8h> "^ m\LJk }c0^#/ņnՐj- !'ow7۫ό$GuӰV6xcEv9m U5?6G?"Y+ZCf`UFb-C=NyW]Sm&(gdP<+~R ]r:Q-bȱ ;ږ߯3:#dVFXΠ-ɕA[eɃٞaɘ-C[ٖGEۍVʐ ʐ- 6o; 2b[&#%O[,\Y00!KzSـ!fo dɺMމXK]}`I׫,~%">_(%rf5D+Z5qdc$9GTne͢ǚEi5k?,JY~Xo#k]}dp+p/iMpp/iMp{q/iBV.f฼ {k M"dX iw8+ Qw1^XLVv9ն:r8%oe/-yspe)lDw#dȎ/G53\r)T몁\z:#z8m @7Rs,rԸAIȐp96¥߷5g*dC$RPx uÒgh#8C1ݑRpƂ ]rc*7!a6' KU@ Lv9ʱjbVCrW-`a ;z+KXԯ|bQE}+خXԇVbQ*%~hOJh3Пag4j?7L࣢L;X8NXKwc) s΅n =FDw\ qotDžUxw\qoVwzxy;$'˰!~}ase"?p !8n.St9]kZK׺K|{{p.]k*Zsu%>^ZW}',Mғ'}'u'm'e*\JOEz\'[IOWzdkߟq5@:u\.8RHDZt+IJDZX짝9/Jp]=\mnΖf;^ZIwI51zxF߽ˬw/!/)!ڒFJz?:/[<7!xw5ϋ}i4@++bkᇏiZd%">M? DfzO{DR\lʧ(ؕXkik;p dEh atA;cm $ qbx1nC(I:zbٳYgϚLZ K*gO?>]`"xtGHQvȼ&bO𒩑&D .D/rĩNiyVWDF|b,DPb3"D1 IiL!N͒TP ?tz2ɇ;D[fhop0ؓo5_=ОL|ÝYc{DrͲ\TڳJdF. jsUnSŠ6)/xDB,2 \$hDL;ثOՐ+WuK3.1ڟ|D ¯]2[\}rZmǼJGur,ǐɄh!s8k+bY5-{jPt%W|b_`N +űI]kV7*):^4D҈kL<>NaŊeE"r6^Ox 5%h<ֽW`9Z6^*kyNK[mf3]UT9Mulka$$1HN;ip3#KăFht?GX<bqu8nA͆UV5':F٘݃@n$48W?W\ 2ȩ"%ǵp\X'sm54,G!M&(A%7#=JPLFQ, \ ݒͼk40Ǹ(fľ#MDc QD@ʉf{L\ȕH{tX hdJC|&qC]0I8>"ڸ|iaՍH֞ !-7Z}S{Z>Dێ˟<<+8|+VbiQ𙤒Zc aop73j˛Zf:3%Uuԗ ;3ڠ3SL hL&6W e02ƒ\Dԗ6rd&D2I|SSk]e!غ=< 867O<ojߠYҎ+@J`K(RSxȦFwrj-{R:jC &Iy|@Fvy_^^η q*^\_]^CTtB%ulȱ_9|p=LxM'7BvS!0( h؟)bzS67A'x;6L䑊.!} "I^k +AM^ol>`+EZ_^QOm3+Hm"'ѻ-&rL"ޔh9T` y1{0x\$æ |PeV6 $ J pN̝(T T]Z@Ivq޼3 b&:_QcLiY:ӊ"Mc|ޮ6`z)Yqq FXIПex G^->!7 Kf}{uɹGR)y+!CSt.VAasn5 8 dmjOTǚnM7ġ#FR 9 :vba/bX,zیL!vRC*s\;c63F{,yY*Βs~,kX䪴%O K)Rq,k&StΌ, eIS%EY*[R{ЊPQt We3@YUEM<*#%;UdꂔW] R3pƋ"h= #FF w1 qv1ݓhwOj#=yz1ݓwOjv".JNyE9vR쏹:r$s}HI;Ba<]z#/|GEIGw#V4y@T3!ꀺmuʡ:.`` Г>w}[__.UywG$9Yͧ|AYP*l;ǂծ-os)0lZ F~38ȼ| GO+ G: m &~xIH^ H]Cm@.,#8ѡ,p.XQ2M!uqS”w_FD< Sy)Ӕ\MU%d}hG(癰aP_ t*)򩤠GȞJ :u{*)T쩤SNJ y21a=dP']- (cUH|#VeIᗅMN6t:Yp:Y[U~:Y৓}:Y؛'u2]'Kck¼_~{X7✮\%u $9N qܦ@,ZX4Ydd߻d޻dݸ+ך)r(ך(LLr¼Uz,*O&KiiiR2eQ,^U,Qwqd5@94Yddddt)Ǒ)r(Ǒ(LLr¼ӎEoַ\gK;^ZRIq>y`\J5<%pbg!fubJCKi( PY\@W²j{n1,+7/} PZ_6>~|mbn(D]qy!ɧ(Е-1BGY`EQ_z0!yp&1/pQ&dVE  %Lp '݁J36< Għo貟/-t/#?7W?~MC*1|lv?_VSM‡ʟUcJѷgl0'ltBv(4]'$k(dw'&=yxg8NaCGş};D2h)zTO|wI/5bqmnf0+uW\a]{N/! .mg|#ڇ=tq @%C\qMq 'k4lzf9W]>f,5溇_.a3d1?5f3 dZc&DVoD" {98ڻ~?F= ڲp.C-6c(F90ʁQBR\j%oT+y#'Zɛz'pv6!QG)+!S&nYc7e1^ ~c载ٚ)/P奰q/e<^BKюKrRDNJDR捜zEo+z#^ћ:.GD 2os)mpΫ4jqmNV1RASݰ2F&8ǰ.\L| Lm*> H{S[S=kٮz]6cg_BC/71e$# w[#0 'pz?`wWw7hÍշ/Ekri6ƋtKC!=xEW8zjqy!e(nEh$ ֟\de+՚,`S_7xegR]Y=՗7Ww5yvl3p_azX_ !}QOy z𛞋+'_i;Dzr}'xo6P\=!ݻ^_ J7Б9䇮Z.x<(ʳrA/>‚7&U<'F{C^6 %Pҏj=іu؊ +z3D'z pR일(T T]Z@Ivqbg@7DGxDU%?<口Hev ^`tIn͆)%xm -xp  mǵ5 Fh{ #58TJ='[M\&1[=_c3gI-]Kid meka5jt hzT6MVV$*o -djmAjkcGF[c!DA{ۢaĖ5 #bJn_>!6xʑ@`7ข7Ɏ+hQFVh tښn㵵yFĕ@#ZjA7FoFVAM52Ւkddw؈eoFn1jis-y}51V]Jx'ZJdRdG=.[,tJ~%|r]ur-qܭt1:K̹ݦ4E:KWvչ]YLunWveupWUwZFdZupWBBupݔ.]h]\nk;JS0ąҺdD=v8>'!G5[@J ~?8pX8>Z9go3NhDit({̈́?6VTYyP:e]Q|c>|TNɓ]z݄p\%d}hqqGYӖgY/C:PTR#SIAdO%=t*TRЩSIAJO%<ݰ jdbt~2Ó W\y*y >bs} CwN+ ز$¦N' y:,썈]8,-*?, >,ںN.Y^ %˱{Baޯn=xp,K.~$ $9>Sv]kV+ך&K |{{wZ3eQ5^ZU5Qwʓ}COQd=951}w[z_òqR`ٷc+#T// Y+.6 $t}Y`;Fq"- ~{g3qob^(CRo8f(2+ }^[YK~XfS@%A ur #7tO?sTƟ]?op[;F +C1P[F `[6N'3]'$Ԇn_mIOvXQg'2Z#U'=!~yӃjp7`fĕҺl.C0= |xKi3Y~p급p’(wEDi\S\É4'k2tUײ.;kŞg8C;4Bi%MK.̋4?pE&='N4wCq K,UVaR$@$ 1 BV4S OC{Yrt>`|>ٗ榦2 }dD}}k[dNI }뻛 o|p+7M󋨌 $u;@Cm\ ^;兘! ^Het0h:.JX9rIkcF"WeDWv:ڕlysuy~X^P,a6~Ue?qaYƠh.| MDGbT!g >YGcol/3d%OjHC-<Y9a1{9o)_(Ŕ^+=˖5J o>NdHff`MNpl4ݿr*q` &|SSa}U:F⌱(>bs9B-qvSDg,F ojP h~q#%<+8wSnn/l ㍠،eP> U!op'3j˓ѺɔTQGGO8282{1sd$1X1\92 #cGw#su mŌr(mlZh@F/9rOI `j,mih m%z|)VD`(&%r@0 yAnuo  UՇ ل J 73cr(;zw)yt|OoܧB`P@а?S mnh58*#Nj&x u70m9#]C+ %EVțA|TVfV8>Di?"&rL";W%U<'F{C^)%\$CIb>j۲F[a+ZӴ t`gO"tAԎ (>-$splbg@?DG-0ՏqF8gmm>Bm5_E ]@:aZ &'4T@篈#Gv*!2َhF̩h%}X#}:ɀtv$dk*vRA,scm8,!h){z{2bhX4@!&(oNJk{)HitXmzjoCmp@~؋ڨa J[ꫭ i6 麹qYljc6605 ҸU~E1W>_SDO7ύ=j>O"R~*j}SW>9P}E+jW>SE+j (%UԾg7KlTe)j_kh1 $GEsPԾý?7*j_kt(j_HQ|@gF}E틊:*UԾ}nLEK+j_JE+j  -p{D?TGB~dA*n tfDqWܾ8ۯc)nR+n_qTܾ$Qܾ9(ni-EKH}vSDkLW>7rb1a?qŅT>,_FI9몔pMwD"ƕ?Ҳu{pA߫au,)YJ͓{{R\=y<{ݓwOj=RŇZ|L?}Q1H+qӥW߿.~}H.+<49V(䫇ż2*'5ꀺmuʡ:.`` PVysۇ!@IeboȳCs`? g!8 @;|` }B&SH=`FٴOGñm+܉GA@: myp}NBJ[@ 4lH\?m8 fV6D0 wp (c lȳgs)x셧Oj``Ѻ ᠹjKl-<Ѳ⎲-aP_ t*)򩤠GȞJ :u{*)T쩤SNJ y21a=dP']- (cUH|#VeIᗅMN6t:Yp:Y[U~:Y৓}:Y؛'u2]'Kck¼_~{X7X:@I]IHr)|0 ֬.V5M....Yw7ʵfʢ\k,ʵ& %ӫ\k0n}',Kʓ%{%s%k%cTyLY'EyDadz'KݭgrY P#M..Y..ٮw7]qdʢG,q$ %ӫG0k})E-TRd_2o?TZi^CL5 ^CBi|) B!Vu>?Kt ]\X}?_-#4p-:eo;J+#AQKotpcF!芋3I>Dloxn=؎>2=- rZl=ҳָ71t/xũk%0֏~c&2!/`ܽUW(ae{}Cdc~1wo>@{1l)%!k&zW{`c$ݾXO5}Wt*.W*GZ=5T۲u = =HJջQɲ$&=yxg8NaCGş};D2h)zTO|wI:05bqmnf0+uW\a]{N/! .mg|#ڇ=tq @%C\qMq եQi]Rk7=ψ ``i9 4αY@PaQMP\AVcβvDa2lZ׵c2ƚG8dQ_~C ;b TӅJ@S䷿$l[h.5XJNGtJCúpE-dM3@4#& xǎg `Wd!$EѵΖ}Y,uGX<cqurV:mXjUcyRŭF"Ksusuu/Zpt\ DžQ~=Z*q@2PzҠ$4fJ6o '{ = YnWIM-ɄEM#;ibF_O싶Y AJ }܉?H[L㬼%;4DF^&#tXQ.^D&^,`^9x˳sp'RoFBBY$vTY #4C"ߘ)4OfԖ'uՓ)̤GFk)“ Du3hڼ?f4TL3HX}]."\]gy1Ů-">Nس5Bm!غ~a)?"}䬣$V2K[H)lKjC4 xNtСt0ARϤHzwIE̻}{݄~oaIӀ #|09G\5fQ`Eɟ܌@ mebF ׎D/ҺɸK{"|ՑJU%O\ÑReI.ִeI bJ%U7"=RkxY(b/*NzgfxE"3_UN0 ^/Ka Y=S}b(%**h-+MT\V?T^[CEjo/״3Wfp_,8j-ܗ}1hr[DEmEjO}˶}uꤵxe[*j-)'_SGGۋ[l9ʖ=b?Rò_m#~me[!Hލh-W[W_I^l+/V}5[W{k-Wl+Wl)Wl^{o+K?9$ZWh+ڟ9b֢}I{Ѿڊg)kk/WPkvڊ5 +xu)L W Fm6ÉiI ZrX<?K' XVLvRK*q[L~Y& m<ֻ#p#} > n{} x| ,gVH,yg+B `)Ӕ]I}`SR6/eqϷ|~Y6ȏ9-t1efzfeLryNuϤ 6GCU0( h؟) =Q\cJHn`k2fsG*0W1J#{SJ_=?9)vTVf5 :m'"GM&rv% GU<)F{C^)%\$C9AUQCmߖ5ڲ[њ6{6 O G86-C5#'o+J6=ygЏ1C?:W 4XyF!u<4m\;{#*@.*g^hqaKpN,*/ݪA~Y^]Y[}Ŷ6tVAaso'E ˋW|[ .qaܬ Ǒ^DJGvJ??yE77U?*Pg W_~\,%{qJ)b,]ԁt &Ŧi uD+!7,o!hYe['͓p0IyHlivPdMvQGim':R_.$ҏ+76xS668 ?FqEk԰ԾW-kڥվ58(!Ծ.ok5 HASԾbK:)v/!M? /=j>K߂UMތPԾ)h=t}Es@*jEQm*j_QWԾ[}E3QԾ9(j{PTԾ}ETQgʣ}EsQ>WE+j_Q9[PASQ]P>ᲢO:3j7}E}E+j_QoϔGQ(}}+f?{ f1,)f_kd6FedQ~dA*n tfDqWܾ8ۯc)nR+n_qTܾ$Qܾ9(ni-EKH}vSDkLW>7rb1a?qŅT>"}Qq_R>WW"ύ}I`EKɣ}EsQ>W G*n nJ6`E "wW )n̸}Qq_R>WWܾύ}I`Kɣ}sQ>W&*nݔnq M,d1'ed~p_qۯ=x~BUPD"?Ҳu{pA߫au,)R$'Rjݓ';Ew{RP=yJ'CJRk)\ux<.xӯue繂&y}ފA| A&tUPZ9TEL*?O}r}p^1(lXlgxvhwGXl:||@L`?qa^dfM @4x4ٶ8ȼ|EO0 $a6AwDAhB~?8pX8Fpx;8FFLccEE>;H]d7vu(/h|}"{)-H@ L~W7!4W` eg1Z\Qִ%9lKAN%=T>TRSIAnO%=tjTRЩSI>O&F7'<ݰ dbauWb8 iX\_Нc  ,I5fN' {#twN' {tO' {tO' {SKctrlPwo&CK(_ 1vI6ϔfAךʵ%%%%]LYkEDadzkMݭdГeiTy4YdOdNdMdLݖ*O)d(O(LLd¼L#q%%%%K9LY㈗E9DadzH}/v (zuup:[z4ҒJuu_*4Z\CSg!&|bYg!J4ZX!+: ՟%:Oto.}u.,>z_òqR`ٷNno &KotpcF!芋3I>Dloxn=؎>2=- 0l=ҳָ71t/xũk%0֏~c&2!/`ܽUW(ae{}Cdc~1wo>@{1l)%!k&zW{`c$ݾ^*ҟj>T\UZl?{`k8ezE!w{Vw]8i%\~"+1R SM$#Xvpu!yFsoܛmm:~*x)V a j b 2 0J]x|h*.˨2 Ѥ2 L&3>tFM6Pfc2 3gy Sz>/-$n6~jc:jIF25֚60Xx5TѴI(q+6~x P,e Ѹbye**e-kISC ƸJ熆#NibmJQaz=d}ei"2X*sX//%rI ]&L3Qi(BrZ@Aiv>xч;Niȓc^F2p5x $Z^~_\ rH+-˩Uo_(iHg( dH@\o;^ ^q,x1/ļ %5(#A wksvd6 %vPN\\]ޭַlK-_~ՆaO~/lx'2p8D=mC1oz. |SH>tt-&(jr/<~Hl7×aP iCrvؽʳR-詇kߌ i<b:Rsż [K|YYqa (&RDn xQk\rH[zyQL ~ˋH" ^H>`^g u/DVw<:)yŋskݝ-rl뎰xn2 U-C!V ժƲ z))w#O۟|Ll̀ӒZ8.6rHIJ4.͖l\H@(2E{E|rMw/tK2,7i"4F1/'v7ym6DYeg{Ld2Eڃ_b@sHbפTs|D$6_΂^]N}S{ oyyVprAR63oe=f(Bgnx$*|+lwhRJi,ʇThd w%|kx^W%|I&dPR'Fp;p=sG@ϤD|}#d/"g8,nsDypqKiDAB^@P(a,R r.37`+EZ_^Ql3+Fm"k-&rLӌB/I4x0L-<.Y{KaSƒ>j۲F[a+Z+Cm9D2T9982wQ%Pmti%ٝ{z ([1,gE[æ1>jJs0}fqÔ,_8ބ8#UH}c$YT2І#/Ö ɐzbKD{%I eĆs LcґX1^Y[ز/068}t'WajX;M ~~8tdѨ"11A^S] XWp?Y/I> 6He cg ftRSz3%8KYr@~rβVe KQ\DYiv:Y*RqXl޾3, HEYeAQ.,%$T%)],gE>e PdirSHB)) %;oedL$%\nDBWjs:Ba<]zj\gDM"$T+AQżg *ř\Vu@]Զ:kPPU0F O$9vӸn}#Hf?M0)A9zW 490Nho0}NBJ7Z@JjH pX8rE=OEw*R=SIAO%==@TRЩSIAbO%Z=tTR0ϓ ɠ&O&F7':<jAXpG;NB(?0t0-KR ,ltވ8,݅28,?,mެ>.>0]['ݭús(_ 1vI6ϔfAךʵ%%%%]LYkEDadzkMݭdГeiTy4YdOdNdMdLݖ*O)d(O(LLd¼L#q%%%%K9LY㈗E9DadzH}/v (zuup:[z4ҒJ{̻:/V-!)}>{ 1ìkPb-_JCFihe:d7|:u=~W saYAy?N"' AKotpcF!芋3I>Dloxn=؎>2=- 2Hl=ҳָ71t/xũk%0֏~c&2!/`ܽUW(ae{}Cdc~1wo>@{1l)%!k&zW{`c$ݾ*ҟj>T\UZl?{`k8ezE: )_ F!%?1;qK:*!DVFKc*x[8OD}k;=w6`A\)2 wzA{|@H*,(kk8Q]duMfӓ5ιZ1eG1p  Fmma] Ğg8:_3Bkh!L4,EN-sp>?H[w]/6~ {->\,Xw/7~l(E9/w^*Vm漢Vow-{0ב7IX2xn՗ee)b r#!+NXEȋBJ"^I0 &VKi\//j)/@CQyI]ari/2̛3Kj\ E/r̝nw{ڱ;I(ee5VZco8{p@[ߍ<bpn?f2S]NkḰO\k%hXJ_! *HbnJ6o ({`0à e1] ݒ_Zߤ19r'1.q&RZ`Ndٗ%3qv"W"/b1Jv|jdJC.GSh?Խ$GHWME)Yu08H8rH tԠFKFyVprAX^w`gxA3x8i+@Y"0/Ti2-eM[Ys7t2Wnha}Ф"X");ΟDi;"&rLN@Sǻޚh:T` y9Fp[%ي!omYhm[a I(C5#{'o*J$UFPyܾGq}Ѝ1Oݰ c67(`kc]+-<S|x1W!\Q?B [v+|8'Cook/nַW$2R>-0яqJ'bh5gmVX_Pc˾46a\ &5cٛ@go#Gv*!.0o(rH59^|AY3  k2/]#m9#‡Xm9:˻SZb|] qf;lwZAx=7EhgvN4:ҏzAf5S̾b9 ?9_P~ K\Dv9mE+btof')fSb-\PE+j)] ?%_:~*j}v洈φT>TԾ}ETQgʣ}EsQ>WPQtڟOg o,5}R y\t__/{<49VwrWOjBp[uQCu@]T.׷wCʆ1١{cezAu~B$y%uٌBwi&c=VgI_qy;u7=sRRa D!na]6{CrzpgЈP< lȳg[NfI6EA77 OPKMU+XBfkYw5m~p*R=SIAO%==@TRЩSIAbO%Z=tTR0ϓ ɠ&O&F7':<jAXpG;NB(?0t0-KR ,ltވ8,݅28,?,mެ>.>0]['ݭúҹJHr @M3eYеfuritwɾwɼwɺqW5SZeQ5Q.^Zyw<7dYU,M...Y.wʓeʢ.KFkyJ5d^C05Z)X˗+QbZ磡Diٿ e΅eG2BܲcXV=n^,Kb~{ jeA:U1yt$@W SM$\ as}_N55||&M\u-~?/~[_oL$\"S*b$7}okl ֆp8m G& ּy 6 u: *Z/ZkbXЖ2= ZMk־ ԑ?(tq^dYoOURG!W3$҄\*_}b lO؊]5#jY A~G_r氅{嬸_0V NQ Bi/*> EHj1'{5þ'}Q/7_hHw[#0 'pz?`a(8qohK/9/: J&u;@À3.0Z<)e.LԒ;ɵM-3;hI&xҲon*]!*a}{Ajm6 W~ O1=?=xiSA~s| dMa'oGno%gTQ~\t8xTr¾}I7w|c<7(众T{GN-N+Wys5]rڤ+{`ɾ+?^)54q}oכ`"Mh۸XLM= [u^f]֌<Zgf BIЙIl/Yu)@@m|p0DRk5?Ee\ d珞I\VlJKs E9NG;[$.AI{@F.GVAZcCf зy|0[\]$%[>Iŵg\'smB! o7'M`A{iz= Yla -dN*X)yI.ΚA.MxioV_e_|f&5, XLP+fB0Hni)a }0vӦo\تa$np`HpLa`+o \q#e0nn/t6[]/?(bchU8/sz枀%O9F(OT&M7FC# 0B;W)I/؝; E^kh!غВ1ZUrLrJV2[..x)*[OtHclyPɉ:t1Dz{(qgMrH|>);`dO9kdqG S9Z.9b  H v'Z >mLröS;xJ.,hR\y>\9?K]Ʌ"yR@rLV"y,LWCSD]r'B)~:st&Q.򜜧+yNyjK.<us|FK.t2`5{$me9582H2/0i_p_MԝCB _QJix Ctaa0 䛒4p3 5 ol?&- =Ype鸇s2bٸtO~Y^][2!t-#j@A`&x3er擮x"J./n~\_=m%~0Z}Fjs0cW_pjHd8r'}68>`rM,fkE, je7V92,R+UF̣Q~n}}#VWRǰ=;4w;#p,pPTx>O vABB Aݣ4lA#Wpg w"y=Y`pA9C:zӓ$tFas)!,B5Sa\1L!n+6 lȳgIV2]!q[@G0A3e B gtAsӬ,%`qq]=$lI!޲NRubBe$-$joY' {:I[I$޴DDM+}[D$޴Z?V7}aƲq,+]\_Ð a7fu5؅Fm4fmkѭo[3mmkmĽmʹiƖY1W~vUؒݯn=8Ψ>^x[hkZ=qynRnkVn)kVn)kVniVnމ>K7OYX k~YO:}:e:e:m:qgg}G,rtN_rtNYrtNYrtN[rtN\8:#SL轜q9qRs5)W̜Չ_4K]3h=;S3h=ƞCfZOvϡd3-Xo.{Q{WhsaY|Ш>DO˾T6>̾6HJ6f"o^H<-1BGfY`Dѕ{,`uC ^ZI{#Lc_`Q&^VE  %Lp '݁3&B=|&M\q^ܹePMϯ*{`c g^ *Pҟjڭh >T\Uڊl?{`kUYe({E!sw{t]*8i$I[~"+1R%>n. q]ܳn\0/x0^tt9}H\o;^ 6θ DO#\ ˏʧRK '6%{\& WzҮܧwƌa}{A} l; Wmb{ׯ"c{8bKӆ=dDN(7$;(n/d P[%_$ ڂٱH>e7Mhҫ%x u_{/-™aEaΖvQ-G(ʷP -i&OUJJ݈/iZin?u39UӖ3.6cA 镀I?mo\3 EÈV2q "iW޺I *iɿ&}4ia],eخtBy]5$}b8-_@vy17KitDA螸*! ($8&4Pt_&|`l㜵EMEAW* z!#ZT#"1ʇ4ؑVckkMW SH^PӃw2#]K~٬ :n#a;[Q7 LtL7 lc4 V:8): t~Qr}&~gJ4s05 ol?, =Yp$e9LO,lX ( w7>7#Wpy>ܗK0dlKU&JrE<'w-SS3c@n辻dk92dTR959W)Tz"0C%2N txs$B6{:ղ< %A Tr/+$Rw*R*)jx$LG$*^t3ҶU35v4 gfˁa+T^.nOO kKiwrqp -9šOr Mh .$Va#lp#l\ %ab0>{V`6Z;h9v%-îdeiؕLL4G{eX3 Fhq1WQBͺ`[2p?d~H!#NCF:da"#-ؾHM@7B~ojR{xP퍐{Y-L,W)Fͨ\'j$+i .+3,t,azb̚ӬV jV"jZ^/JJX)I(qyp{KPUZq 9 4 C^o(ʃ@*ZLQ!-4utLوnZmU i?pT'-h|'.{uZo: oh$F%,fD$#fI'GPϷdg QDᵛ0JB!J6)O+!q>VD kI$:@q0 LJ*bW! O $3ÓdCIZIZsIZBIrIrIrIrxIt` e $":2@BF<>]b,jXI{O+ [cYCӛ9%Ù:˙]˙˙˙n˙e'3m#N,gXδM3HCQQﮞ+q*>#m[MçU#w`y0\?\&(pxH2O()ئgZ Z"d1:dZ(FN.)8q41ΩB^Y/G!n 8!L2T_ }?8!Xc<:U~Ӊo$@ -@`ǰ d9ˈ2J&7T?_&k}] ws[⑕lf"ݠ` !"71,b3Y6J&~`03_Y2 p03@#OKNAcmCfvѼSƹz0O9!Z1~~2n.. fןG5~2 OiץIO` IQ%UHOA'ˬ MtTnF[.y噎,*mBZM59 >8Eq^Wz>=$2r5nDׁ OZ7Zӛ `4}1s1^͟ƨ8NLE#8JMrRZ0QZ/䁙+pddŊcIz(!o<_xgdz1H@e%Se'o2 j*@ W kILl6/#@ 3^<{/6~C6WWfBtn81+T聨(kn"r։lI3EbC9X Y,RVWo׷r9'Lڣbx5P$mizo?ӧDS`C3)B>̓m`Ȼ0X \u:.BrΪ~եz17cWw^V-Ͷ X[N&Trp#XKZ#dO,Nl;AbDUkznlmM:k/6nwl+9o]?I]%u5OrK5-L7s$]\9ۭ0P`eTTGV> PF9e2(g0av-,(U 6}-J,Z 2e&1.1ƬyזVmi̸87҃fٞh4utƙ2unZx vYse(m=\?]]gH3p̌o.r͉7oZw7c[[tBf<Dxs;^JhV[B}΃q"&@vEv"Q[by 8.4rifn5ةכV&~Q/o5M5>VAҟM_ :=\=K"ۄ [I!v_Ȏ;kuzܚ润 SJq;AqH)5Z.Il]%]ښgW܊e0ELs'jjZC+ #|:hd|)M񮡞l^%Cx։ŭl+L\8r3213E ˊs6%+^+ NMVI'\P9}k@\ͤ% (}ofY!"sYN[}Vi{ҕ()s?MJn ʴ> <մAH E4.q6"["|XgfIQ 3K0֛<=ImlD# z2JYRíQ5-Ù9B:F& *~ne< 0?g bkܮO2EeN0P:_t '2`(D"Ljl$"yi"y\"yP"yp"yj"yd"y^"yXB&LwEDP=OןZ!eaoᒏjd Mo4gD,gwA,gW,ggV,gU,gږXδ8ikb96#Alw(Fݶzw8Fb̺g${zyS<[o=6eVM8n3M?`y0e=y=>H3o%\z9vV;O΃/AYߍCt0t<:}r >9NCgbpX+EO1rngV˱;U[F37)1o7ug1fi=eZO@)z2BF!lH_/`džTچw¶Ͽ~l[U/a}˶V}dȮOjHNbHrJ2AV}꼂d*%yqh6[Iڡ l0xywx Jһ&p{<^5ޔ {y9xOi%Eb\pyP?zaM4tMAdO#jH¿N|y} [Qf3ӀwYRxURi1X]cBfV Qu.RrplQy g>ɣ`[uLZhk&HjQǔӒa"kK9lz$; yIdM r]@ bdO1q&.I%\@E*rÃu#T Uq^]V-kʱ;'~,Eb m?D}-̋$Gg7dfKpHxa [6!gGҋ,V$hR)|jC.+MG'E\_f"*Rqg"TD S 䮋>aq~~*Yskձw&RsVυboا4_PS_()W/&)BOab"&)BOiĿ0O*T2Ok1O*T2O*T2O*T2O*T7fX(7c&.}7c&ߘc7fX(7c&ߘc1O41O4?&iBOc&4&iBOc&4&iBOc&t&BOg.t&BOg.t&b7>;BOg.t&BOg.t&BoĿP0o"&Lſ &BoĿ'4҃5 ^#*o?XCʩJ9 cWAt"e@$ ȗ:SeSzC~I ݌(ۛKXw|)WOWd$wG ?\_ϓ8irb'6Mјh,@be+,3O[r$]OF{ ;΅ 8¿K+:wp|FV1d\!̞]·~>رo9ʛI~JP7NT=L;X"8j\X0XX 0 ~ʯ-8IF;_g/~9v}tP\B`zR F,yH(,#)SR: 'PoT["! N %:>PƣS䅣T'b4c| ԡXzZ/4D>lmms-1.0.0+bzr2569/data/projects/CoolSongs/Thaledric-Armageddon.mmpz0000644000000000000000000014716111603573245023260 0ustar 00000000000000 2xr<?}__ô>`=&hB_< 816 9smɀX>Ƅ4im,~Zyf;eˣ][- Wi#]<{m袧jC[S]ϧ3\SM0KG(b+§Lu\^Zb"֛R#ʹfgnjuw8E ?1 _KVCtUړ>rQANlHj+"BLFT'S?d\`;@:pejHʊ߆#2&.Lu.zE':jsծX]>DB7F1jz+-k ۸Bn,[,giBym>cGsy'uuCc Ʌmƞq3.h-v46t|*VUU1rEyfTcb޿Њ". _W4w>ib]G_ &eh36N]q],wܦҌXi5/C+Cd_<_mFMgŦZhWOkZC冎'z$01vQ*G~N-{|j*+[5'~L?VDT{M&G]g=Q̺B0S|#ѯ#Z3}-ۭ|Ͷ CaYY =Yj5I? OU\7̪V'[wUo Jlpk(UI &:JmEkHukr8;rC7͑i6G4#omnBE"Fx䰭Wܖe [M+Cm~96$F4)R\c"4 5ljMPk ˚/ƈi}F23*K5 ƗȓӒS>1ۧ$a9S]L6LZ ʑxu-S )X{eރċaxjttyچYM H''/1u%?w3ޝ2lE=XFs'+TT[~}qٯSy&+K& }6 oqyؓ)uh-W2Q+, fQ0Y̢"JgȌg(@:;NLrd:: nMH*XU4y#hFMوyyU4J{jgNT}lbM&9'NϘ:u lǕC:1a%,d &K%` ӥJ|*Zx!pJꅧ/ 铠L^hBAT|o+MXU4 h.AbUTcO$LS+7ѭTfh7%ϫ2~u-ۈd-}s֭o[ {|ŵ"qFzqe 67M lmRi8pm6Xn&UG;ڢ^wzBn%-o6hXH)SSͻp_7 =E;L RR"#J>8]݄ĨYUES?[r^!N[)`OH%2_8b|ҍNF%8H*rC^E"D^%=*0D7vŽ; "[ήim%oR=1`[PLXo@,@DDto7xs_o7wC7JyJYI9yӷ ÛKI>Rg@~Jj":zW|{;yh9UuhYS4v@so/t7ZX:u/99痖@^ l l6D$&0 Ih-q-on"4[l.s\e?Xﹴ AoP(=4^WfRQ6bMEm6CfS|65&l`OEf1>`/yxa>(3Нkj}.rb|*z6ƧͰq?h%4(ÿ<{G(‹ڴ_U*xU4"EtjgTW̙Zj})kKĄ,S*R T0(qSpnJRє*Ƨ)UOEST1>M~Pє*Ψe8yQEW e'QDY /C+$J -x6b5%9rh:%Nji5Jd۲Pde44 }bj'i;Mk;W I7{i-1Ŕt+rm7%_Ɣ^ʔ O.%E,.h<-p)ಣv^0ݯ7KE,7S:عRKlD6͔T2V)qW"iRHtS -M$6m`sbIڷȥeaYLuuˬy%rXZN uW;0+b͝F`XTG#g1?oqۡG5[s9zG.b{x6AV[UL$Y#}k 6mqEbe?癆uWXF" \ϋߟ6ΨVlkK_xT7?tsQ/o)/Tg.USiM? evJs9WD+&k<[L}VmuR5tW]m(sV7Ȧ#8/h9S֙R2ٸت؝rFf2}޹FO29uE$uMڋLqJ(265_4 Ӟ 5}y9#=Fus!_w6zКy.a͐y15feP״6&꼮+#)ՃYr]e]H$Ȱb7İug݅E*؆ښK+lPG`ҝ:F{YN;|Pr3OI2.%MMy*fAÁ]:ޘj å2qfDAiBmkB3  >LY8x͜ǖ=Fg6L 4@x}҆\~tQFW&j*=W?.R=4]cz|.F&&/< dMCf57cSl:0wϧ&ǖM3:m$bظ R'6 u ܭnZ:ә.u\ut/ c&l!g!t^r۽-hp+2J;A}~q 28@# gTA$N&4^.Sg UWXvq*c8N*9|'(`L iՃvr+iLr޹xҐ%8;$P M/ 2re9/]u//:G=@ڿ.O9VqrѮnXD0u2GE g_- p7yk꺙+9 m3 ingkHR9H= <#]"yELM BA% {[ Gj2W<ї%H\^&ld/"I8H xa^L$73дgaEd \5d ZCQت,3[o{(Tͷ #a"PfdE\sDj[&s#d0ĻutpܒڦV IaTR#zJ)?֤m&0F)cvoLQGՑ'm/=R21eN,cioˋӣ̤x7OJEI|E )v5iFrz5"jeP6{9& mRW:>Nwkjv^v6^v9HjRzv!nvj'%x! 9܄.HI\D $!Ib>}ސ \uI}{A B7_M̐/$|! _j WIHB/KjJEv1MKȞtjd>q{Mއ?X4{_sY GS(''6C3ǘںA {2OgL4O"Hb3͓yytl'u:Xnn&UST}9L<@Z!NY r~:\l؇S'}f=}?S&ؕ银Ð1}10dL!cz< aȘ^Ca(aa`h]8\X{O9^tl-͢XٻQ"ϒ1 Z̬̚*#hBL(qtyѿ<;Kj4,p44ChVI}Rw>mq^[j2a n,cpb9zG!G hưLtwL6Xi$UR4kM-Ekv̀-wFqj{͝Ct"鱒ÄYG֓͒)m;C6ށjZH"Q( !"II*9JILsE=A*L* LULU3iU%Ϥ)T<pULJU3)AV%ϤW<X2}H`[ĢPLIUPF%s.[`5m9/kY{f!qֻ:ɂ?g: @g5= @'*Bń^O//2:mR78]rZLD-SV?)} `'؏}r'揠}2p"6sA"PbvFmTG#g1?tӚF~ L65GTcx&.F},~!uqT#U3Hi5MյlH3<: Gc@?FpPgњbލ_mb#ަ3DzŦZhWOkZC冎' cogb*";*Ul3+?6ZhhkFͻHyWޛF \LtYDwk*ܧͣu#CPDWH7&"*L%ʚn. m i-\dsP*خ OU\7̪V'[w:ܚG)J|Urn[[y%76⏟Eݬ!խ6kC(8~핪 z\6?ʺ'ʴpa#g hBIWvsj%8rp|Ͳ- u/Jo82ENe=՝JJȭF|,)W aC W Ù:8@+W-W͍ńt4rIB׬̣p_demu|,{^;yY0qmuz4GiYC2̱3gHU]!@N u01jlhTCh=DۣR6ߌFWbW'.7K4+ 4Ƌk5)GP;+Ls4 47)GПh/_\F~qM 5x} ,AcHa?T.l'墟(҄b\k_jߤ=7iTG\AƏ6 ?`Q{p|J|(>>|>| ַ>|A?Em>|R> {>|R>  >|A?G3|J|(>d6>> >|PG! |J|(> Q|~>(ؖXpi >\)A?G\}T胄G\T胄G\T胠? A4 ? *A@/4胠? O>H } O>Sz=j O3~GrB @>}PG@>}"@>}BC@>}"Ceu @>}#@>}PG|@>(|)G<Ҡ֛i':_A@T胀> }_ן}N;PtGB> vh5 @>}PG!@>}"C@>(2W+s2WJ|e9m @>}" @>}"[w@>}A ܀>}>}B}J}(>q}J}(>Ć@>}"qw`2W}WJier]6_+>ic𕹝8>}>}A>}>}A~@>}R@>BrB -g}{uJJ ~e~|龢/9/of\[>]}L Mǵ3tW6ŽSb뫁hX!<ܯ/rzk!@tsDg5Phb)?ǭc_'kcR?Wnzd ->W{*3eO|;^NcEi,ө_~}~2īAO?3w*?d~[Niϰ/͟LB赤\,3^{Ov rz1Ӿv,:skW ״xs*=a|{?\'=z˿-^ g2/ӻHl=s9wݔsUq9[7Z=>1Z?^'s~[ݲo=x);t:3-z|y{H&3yvs۪=~c[\ߎgo3g >Kl?[9LsYbd{s%h-qЙ1g & adɈ帏Dե@|Y0|;c?L_B"߼x\Ȓ}&X?W ~=jϯju}_._n?dtV|&?G?#L}:?{O7|?9 ~o'| ~<۠)x=@>w4_}:U:+yd?q?C{?'|/W^#,3=? '_[| ?j!׻G/u.׹v|MΖG׏X9T[8WF_QoY9G۟߳ngBy׻n䔹u'/c:ztT`;=Wf^~2_;uϽy}t^~1PܿS{ɱZQGۃZhP?ݩdƙ-vs~(>L/ҟ?3uƟ3xl.[FR8#cLΘ+fR֗qP ҩٸd?Ӳ`yXW[_?7֏aP]=ɝ%7yy&u?َo~t|6[^Y4Kgxzsm褾tZB<_wK}17䇽9>mq&Em~t߸?/]L?L0OIou;>4zj\K'?׸9;0Oz3u # sv-f_mӳF}kqΫss'Wx1ɣ}62S^6n~'7uwӳ']ZLC̼owK9p~vVд-w&<=ew%4-LzCM?}? S{ݍ?ّ{gWיLp潧o_/_!ۯ^G}Fq#?:^y |'|׉åK|ߝx{x{|OO|??<}ߟ9| ߷}{.yp_$Μj/,Z{8zz" 2͙|1ԗu8葩v'gd u#M-/KmAu L49."s_iK4K~w~\G\a_ls9w龚YNzkљ^2R|dNjh:83g,wl:#<< KYG SqǮ_4y~/O3i0j~ϙtZݞv$I>nzz͐^NS `o:V}b~ջ\W\2g?''A虯Or@s]uO~6-aqNotϷdcbTg]xեAkv՝obm17ЗsZ3c;?_,Nů #)$I-9coLKf@/6qx7]6ΏA]\p2T ;hFI~a՟-TEpg3݊xx#ׂ\#~s\wtm.Ecs!l.uf#_XSMRcL}ąG|Q#z$D Gb=Z]7=iW׭еoNJ5C׍е^ZZb橏shKvt gϸ3!n677xcmkַ:_UÿU;YCW\4iP+ ·~Bt߱ЛWҬWp֌7\47BƣMm2A/fTWm ' 7ip|+[c۩r>jB#eL7Uײ64ãp4 )? D<\2ԙ/pfV| ]j{8xGV..lPXm8)pMk"\nx0Fp&"߮"jX6oéekԼwed~Lu`Qª=&ݣ]'ѽ*G1F, LPDW+o LTw-DT֙>tspږahzcYY =Yj5ݗ|D_nUObi%6u5uRܶy%Q{65U7kHukupۉE'TM]Bw9U֥P cul pK :_Wh}`w`no9W+x<[8cM6}3&(٢mf[l i5 'юj8I܎j8Ij8IԎj8I܎j8I܎9Io#4 @<yA? @'q >|o~>|PG`}Q|H~>(~>(Q|4q >|"C`)>|c!>|>|>|C>>|A?E >|R> mw`B }U' (O>H }+ O>H }+ O>ӡzAK>SzBB>ST胄РT胠? у^4q*7{x+>}>}A|8}J}(>}J}(>$}J}(>Q]>}=1<>}>}AMw\@>}R@> W@>}"/@>}A?@EЇt\@>}R@>@>}BC\懯}Wʡ\IA@/RWſw9m @>}" @>}"[w@>}A ܀>}>}B}J}(>q}J}(>Ć@>}"qwico>റrN+>റRN+>റrpN㛒q}J}(>Z}J}(>$>}>}A2>~Nq0ʲȖlN!0 + aK"6b^fzQn:i" hS\wWѰJ8pԈ\Kb#%QУ9=#w `6Qu| [vUL$Y#}kee W$)ZjfH.D"!Qy^htNie`YƦ Rf]մbkCM_&Y-5.⧙NNj[㱣*VIU ,}3Du81*>ӓ<_ݜw/?!9~U&x(I4^~F̸Y|sbԚ\ͤ)24h 1dIkMńB3F  >LY8'$!{زlCSܖI!OڈKVMvQFWn9.Pk_~*^Hu| } u4p02c4yYPoN%k48}B`+ԅѴ{>5q?thA W}t#]h>>f[<nuZatpܰ{qtW4I\s-Rm'+g@'*DN&7
>SIܼM&aSƺP,;Թ#OP_xdb*VR+{(3')͒Y$-:6< H$Ln\ έ7[]whjW[Qf'+ RᠴIʙ$qV*?.]VlJƄY'DV7$79Ȣ7sޝ/IVtg;hVLwgMJG+xYܙ4r v`aQ"xUZ2a M2aD;I@&,S:D$ a Ma%['Z;-$ zZkg%hDJXQH®PH?,6FE7wzJN҉dMaBe ,,gc[Ő,w-2#H G!Jΰf҇6?@|! &yx&a*y&MҪ4窒gJI *y&%Ԫ䙔 gR«J JE$JL0U-bQbR{FwyƤ*R(#9-0͚ö])_f^A4+y8N圖]sZZij9[圶dW-紅j9-U9mѬHAXUŬ..1Uzϑ{qܿ,6Vz߰`==e!\nL`>9'gye 0oϬ?$E08kg3}r_րCwtt>9/k:{fANU ӽ^^du.)np)1̛CﵘZ4ڧ~Srs@OA0OAd7i/EmsMtbvFmTG#g1?tF~ L6566L2.\XBIsG@f82LkkW#,g܎uTi5/CyDk΋9n ]j{w659.6 2Ftz$\f.7tj:V)7/#\Bb^~2fkeՇƳ#q8M'c]T9/Ƕ"MѲT{_z WXF">qʋ$~DulkK_xT7?tszApj)BujrK]5k=ua^m^\^w uWu:~|FE^W-5Sl&U6sf+dd_feR2y_[_U-uA;TYZP#n3 &walY1h8S}ӓ.zOzH\?0NfO_G9K$M`֠ zPCvi{yix&zzڴ/^3Lꝟzj Q28xJ>w뻋 ,/ŶQ i8kdV#ߠH{x$WHwP!|ߙ/Tq7'i-'jFCD ×#s$"x!5Li|=L}hlLqm-Hֽ=%I#! eO>B 3F >LY8'$(ǖ=FdL 4 @xFYtQFW9q ?xUv; x"}]c~z|,F&~&/< sdMC3f57cSl:0sϧ}&ǖF3:m$bظ R'6 uǶ ἭnZ:ә.v\ut/ &ir}6j;Y2 .*@N%75A Fy! K-8`@P}_8_rQ J|*x@>bPxhp~ pzJD=Air)*=cIJVqR>|1!/ڦU ˭x)ӘBȽs5ƥ!IKpv9:k::땛^ eo rz_27 ^_^t.{H3p9]e2A.ڵ PX说"{)EF"os7V]7s4'$VִֻrF2!l ɢCJhϮb9C=HH`<+B#hrSn@PPIB6|U'O%y )(G 433uRh<re0x.5tm}̅(%4Yjiu2E,&W Y:!(l]qgۙJZ',HqjM 6)ܥحxTs#+"+ BT 44oה!]㖴6!,uOL +E栒dSLi&u[6A6JLC4R箎NwkjCpz2ÐQz2@F."{i0pa`h]8\X{O9>o^46 bknkN ~-gMĄou6bF#SIDsudY\mQdr,#E$W.Rvaۿ+){w@Jq Dj3TlSgL25 pwNoSІ"F2ge25NY]K}b{d݋ȇ~E?{jO-{jo+= C0/3}rO`ޞYH8(a g% p9'gY 8kgY$ @g3}r_tHcq~/{?].kSHR?^E}*>%7O@OAdORXf;^j3^htRFitSu-;4u> ln Ÿj#me3hy1Nލ_mb#ަ3DzŦZhWOkZC冎' cogb*";*Ul3+?6ZhhkFͻHyWޛ@jϵDhk#tPY?Y7b1T(|f7{"_G)0QݵQYgH/Qtspm0U=+EEO6_[UjYڪd.6\bS[S(EJmkb3$PT355cm:;rCkÇУ9r76k̽lM0ӳ/;1ԉVcՅX֔omZ.==hH}b[OO37]؏PAc?B}~R9l9|9"x[#o#էȽ\JgboQ.MEv=H_*OPDZ7Jbm$Ų%shZAB$M%@7oQ7 \* * EaY[o ](9}.wA(L( slK,&@ B (@ V>ȉ>r!(AuIT>H`ɱUvA/+ ޕXA)XPA!>heon"d}Q]$x@Q٤NZ_tD :$ ?G`E,Miz’O V/R؏4O_~'4} א)V<"O ix q+OhR؏=b#/DB~+I5p4#'iIf$Oj$$iCF^27< /@^yQz^aB^B^$Cy" Eh*EH!8rB^B^B^$Cȍf$!*E@>4C'WZlKnû8v8>rj|^j- ~0/XxV=Os_?>qDC*xDb^G8bbC %)ݸ`+xB{+L9Ҕ S}f`+X7S͔7AI(>)^ExZ 6jH۟ T!씣OةT?f6&Fۻِʹa6V!ã5@u4Ph^s_P \KwBj Tsj2MT[oaCٮZ(3kum|W$)Zj'U>q+K#C@T^$jKY϶GuL7zQ/ÔPL3TkCW]Y yy!<ڹ*U^r ?|"Nj3GkA6!LyAa?]Y WF\5E_U-uA;TYZP#n3 &H,/"emFHq8ye/HuUӞ 5}y9#=Fus!_w6zКyB5j}mϋ5@/5 '-򶾦QW7Qu\YO&Y-+*Ha\&@5nOX 3#y򦾪`Jkk/ AMA|Iw6MM C<'ɸh47  wyxc^(櫕{'hp}Vo)89MBmǎ*nbJi|=L}hzlLqm-H~ֽ=uIGR[zƠC"I8 UDD#ǖ=F_L 4@xYtQFWr\Wj}W?.R7u9W~gi2,`d~is0K44YvqXs3F8V|Jg~l)X4@( F"!}|b#PKYxl Nꦵ>¹QUM fŇur,l`v4d\TKnb?a@`8`wB&9 *8 J-Q@P %j@-C=( Fm 8 8/pp@ *p/^RцM,;|Tϴ2#|1!צU ˭x[(ӘBȽsƥ!IKpv9TU /ISPM/ߋq~&w%sE(6YQ7Dz-Q.ڥ ʕrRU?,LݱL_i)EvřCK5Z[uӜdPZZZo45$j)EǞ]rz.xVF<^"&#5xNKS~Q.Nvhf2gx'#re0x.5tm-̅(%4Yjiu2E,&W YlCQت,3[N ѓgۄ`0]݊GE:w(1"R"M@CvMى0e:_8nIKmS+B;Ĥbh^m*Ofn=%{ϔjRw4oIdĔn;9N#uȓ6TWy)ąlmsu~yqzI\4).vA<n˛iZlr=L5٫!L.,Yh־y&v\SɊ2<D_I GM.9 $ν^ؐS+%'cZRH"` %$*(NwO.L>eYx]4- M 2+Թ.TUI|2;Ι8k^6or甛 nk`uv6\v9jRzv%ڐQRCUڐMڐ.B1iCN}![,^-~#omȍ[2 ^@7{i KK MR loQBloM K0 d{d{Cv|/{s "'B{aw/%9P^&pf$|! _HB—Z/HUajfOBr|)PS>H2{I NG"$w`}ew5OcDvg{g䩩ONu,-[S80=;rD I G}' "Ne:Xnn&U!/`8 N&ejLÐ Co3,9?Lc4y)œ>7\JaȘ>}> aȘ>Cpz2Ð1=s2@F.#"{i0pa`h]8\X{O9>U^4͖.bknkN ~-'9}<SY1)ϫKg+zlqI}1y9[fёʮ%;"1DHb'E*I*v?ԏ]"MOVH/p8r0U8=P Zg.ſ-4qѤ9W}@15MM+Xc+KqwxDOʎY^7WҸ}A|AB* Ջ(@ZA_BDМ4hV=0Av=9,4q>D4q6i[ۤ Ii&n&MfM<6ib[%z K==l1l6UZ_WMU䟺_n.ᖏPK$jʤbIхv)R&%eK.eR]ʤ gIv)lIhĎgň9I->#fηLcKvr#V1u ? ynM;,ynmkJw<0I7{뒲t,ݼnIK7c͓~V-? /'guOYY]R~V-iguL]Y3*)KGK钲tt%-IG(5bBr7ה\r;ZSٛqKB]ZL[<'bsocCf=4j`޻:Eм4_4b1L??{g6¢<'GA(r .@PJ a/xV۸7WakyL;P0^xE(E8o^3@J!D޴w?wP"bہ q=")TnAbQiZi6?MC*៳pLO> *;xYa}5p rWkW*zxej{{Smޫ'e(W6fO U{OQy "Ͷ鈩l_B%Ʃfa)]! [ @yR~:دe!uW[̌ʸH d1v>l9k޿8db}X~QEK7ֶ r?~_Ya HRSh=77@ Rt:Ljdk 8Y~=*tجTC*_ *&ޒ L}14STJ>SAB5.Y'U *X`,QjLTX s@@"ӃbFxh1# )p1kdGS<oXղ?d!Ɏ ՁA$%j5"aٔ>2ju`eOpthu@l1kϷ-#L'N.ua>x|d$ԯk_891Z6buᳪy/lnC7llHQ5A_(._Mk92~SM)atP`x3Oxm,U},7t$C"0Rn~3F7zdÉA~YfNp v6bk Ll+0-MSRIY:>HjDvjƁ\EGҹdp(?*ݼjqF--׽m+w> V1D~χcAwM8_?Ϳ`߿]*(z%cLwچIOGsĀ0X_! 97H_03nDҜ=9/WwAU 7Lth^ $TGCGRg9ܵ țHq~` wp$q:@eQ!)7OCptv{us}qzq}B:ٞfAA8KǥFOt3U&eBY{#0R㶍%?LzӇiBaa7!7w.m]Z[c-]% zp /A9ijq}rT )#頙-l I@2j$!;VGIqEi)%'D@2N,Y\|Z]EO3W0S8н\GCר{._:&dlٖ[iti-izx|+͗3~%E<~5#>O\$w,#?LSsi.#@F(`w`+Z{r7~t}=Ǿ Hn(Ur=P|c泱>UɅvf Qc+KTW?L|Z.O N6u( U:9jCis(2 yN?!*C oO\\V΄rF?ꋠj,][;끳tÑp9f Hjt@fDe琾Y.攜3u94rf&`򊝳9㛕,aC-cδ%5K+ ~Bs r.BCCH(8 q x'+q xT9qװҨaQ_ZF=զ.l#V\ZRۺ(-J}WKq,uetB^!˾ Kp,֟yVY4l%Wei:j%wWe)BKdgʒZidIsJU Ը{Z/a{x>1"RXhpWF(~Agt8&[ԣq`UJqp Kû,#Tk#N/i$++}S:oF QH(j9D ߡjH,n*?>AB* DŽd(ȽqT1caa4+y @GV`Yh|6iImĝ7Il&.&M&M]d4q6ib7=%J{*ݯw+ʦЈe=K壆dkICכD9BBti2).eR]ʤv)1ۥL:l2)8.eR ]ʤXs˖FxV21bzUˤ;dw/7bkeXB>B[K[ۚ]8f7?L랲t,ݼ.)K7[tUaIYS~V%eguKZY~~֫qtJG{钲tt,nIKGca4JMjн-z߇TnGKwucfiNx--NA w{zx3zwC[}U[0]✙??F`[{8isyr|-pFX|TvAY!"Y-B UCGKqcޙ}GW PLi6D/?F}> { ij$Ƶ̈́EBc\c'd݁{.B9.]"=/|ܸP!ux31VYOOt 牢CDoMK f2-tR>@=׶AKBdlq⁉<+@[$0j=TDy3aK8fbv] ,?$W?8y4i x`qvĢ_|omk5p!pܟB\>- %*mg-!~h0-o|0m>W!;T#x;C0Lr:cu8Cp!{_Q`:C0TyfSwd$ q|6錁:d9M r 5HpIcp1jkCp4k`45c0V5&{ 35&LLc5Y`:r 5l,#?@eciy|1kT&w{ #u1 dzױ`wɘ`*%Pc0fx18L)^x 5y ?0!L!`cކ0-];&M:'~F3tT!Jx@㑡();2mx"ziM,A{O,+b: (0SNb+^W ?!9 !j~(\M!m8L@&Ƒl9q^apEapM7gDL'ٜh|8OӉ:eڝR9J`S] ߫ z0|gbrʵr?)ӷRTW۵ak$mאkZ+ %c3zz2F{2<]s^.];FqkBk/\]Ay-G bMZN|:7jt r Gpoޮ)y1zs{u*DTU/Rvq5G+vvпݞ]-Ure7y(ogz`pC~ w3/potiR|̵ hZKP =Qh^_xB95A3t^דNZ7֊0<8ueϰU-X{/,`Kwŏa+` /_)Ȅ Fq\f/lZ4, ܯ&y7k}0l}e9EwEu Б ]kp uFstCP1 .&T,pc meb壾ܰxJ*%CgI Z.A-]"8Нk l6NGŶw?_-޲^pI;0)?Y VDӇcٶwׄ?K?KES\/خ>u%\TbV\eIlW @N'x/sJXzC%X 6_0TK9#kYL+jFd$շ˅./(|7]H>\AJ3Џ8{}a Ghs/|,"GQ@f+ԃg=n,7xYF%,ai|KN6U=B" L'׿,.oQ /(`cy[O%Qhy !x 렐+[S X_mGl2L7o9W_Dsfo=̗<6iLޞ !&^;Q+1.Ax@ 3m4uǷw84ߘ9q?/prQgh@㘆wȒ!&eRxXӲmqEX#M {HNȗj3yϙ%en*#mN/!}*C oK\\V0g٘ Q_Uci`z%2er.1LCzFZ5K0$ Z3yP8iAPىzrSH?7qf&ڤAS[NC㛙LqC7cδ%5]Aw*qW@(_-` c"w$o}9Eg١ș39L[Y֞gLDǼE="9fsyKGy*I|E_ӖqcZ<}Ǵ#1pF|tJp{sR/'|R]җuR51ٜ`Imw'9vFx?EEA#L?Lni M->UN/7 |&H=ޱ|K(ʄξdJpuףA@=8eDc˦3Z&ƁvΒY9]itXlxB`QQ@F8㨶׌&zx>Жd"b S&pR 5Rzb"h 4P1R=&ɪtDK/bd,X|gKx/U{R3*ÈuE 1%qH[h1X89 d,NY|F`cL8j3*B$BU8 d4(|XU)lR? /iĩ!ѷJ*+d+LER~@"Bo(?5 J3u6H}Ys_pV|4=6G ǡ-ɩiG0 y #0^LNje2&a B2&#äd$LFDP\$Q 0*J ÷=PX| PGM&j) %Ca.FGHd( Pk0Vx0vD2&#a"(e$ȃQQHXHd$L$6/MFd$쨑0J2vb02FB'#ad$LFp]0 0QD2&#a"(e$ȃQQHXHd$L$eR W2vB60|AFX]8Xeo0LUJ:eB{8狯 O= j{tt\KQ^q>pTS!wʀ ⑽,b7ˈ #_A)#DdėJF|kD"#"Y〯jo.Z4+0-&LQ>3S63FF- ֜9Y6X)Ox"^!`~{;Mt OC~Q2`xN=yx 49 E'F Mw?*;q*kC"}[P&c Vt ='º1*vj٩ɨIJ(r$}UQ#v-PRѭ)hi-0Pt|Gl,")@ߙ3rG>?-4omij<;SyW D0@4<(8 %F8DiˢhmWz02Ұ0wz/^P绻قsx7w"yм5C)sC&?|ۺnŴTڵI+W3lWٻ[`K$ŬM&59OꟉE~R "?g4SU6WrEƲǾNWTJbXB.EKpP0!:0J(9PhaY#T8#`i&@v:[#|۶r~h‘ `A"vƗs^݂}0yO7h~>/f;CvoζXn=F]rY/3|Q MXw|9FǶ+ A~inL\2n+s7!.&c#q΋"aDBzqn#e4x$[@~؁dH*xk%+x;[̤q]%CnK,tq{Bv1AqKn=} Ճ.a vY^>Wu^!/pM璮݂6<ž^庛}dGrZ؏Xow7g״-m1;o./nN&ۣo#Do $6C./r}e Ysi@/ӆk%t*"Lt!M9r:dZp.C/v:kjpZtJ[VD"OO<'S:8.P9$rp>Ń\fYX4 |.fW= ڹD+Ґ P⯚!GܼNS<B\gbܙP3Aި36Ld]/SKH_viEp &?ꋠj,]O\DLj#b8Sqvë$ϷxZ39I&@A}"N8gFl9L^s6;g|22#ݲze}/UP7*5;>"i#iHyf#%>^-{zd۫uT6kw>HkcZT|KLۛK|BOq1i? gM)<5Gu'<&"nօWtHw }VPΊRqg5G+ : ,R: 1-i%XF#~58S f|m6b[3QCT2YZ6~gO 5uʏOІ:Jhj4tI#,Iсv)nR&?K.eRH]ʤaIv)€R&еlIhĎgň->#fLcKvr#VPGYskask[S׼ IySn^%euKZy~nj9Yx9I?{꒲,nIK?cz5QtOY::]RN-itL8: FIm̸EdQrhN~_A"\H {);=!6zOpA6=oCN{=qKq 潫޿^3Ӽ?|Gby0Mz4YNPJI>(+$P$>@^_]H]=@xh)3u8r ;!<ʲ! 1-؆HYo'8>a/xV۸7WakyL;P0^xE(E8o^3@J!D޴w?wP"bہ q=m)TnAbQVg:Ѫ#zuTL5AG#ȧ5FKkጘdh->,5 BZqRMu.t`|:0iOL9C\T8Su4\ [ Of?UMpOcbKITU:ǫ:̥B5&˛T˛Ogb{h0i"Vuf; Ɍ=XУcp1b.,+c'Wqp^9T: r 56\l=ŶGr 6,`c0yp1&/:Cy ƪ*Oߺأoh6&18LƂ\r 6ӡ`>LM)*zܐyJٚNHc'a!el4,jlj䖔Th+$kO-'Zt:@7-b^JNC9#M_PrqI2l1UcoZ.%}+ߋP< IVbѪK`ݨ:i+'xץX+PMF_s1$Xp6Sֹ"'UGC'lzBX/n4DF@mc#A__Pnh5z_onP=^;[nϮ:yBZ(x?B{ח"PN9k:{Z L x;GX8W77gu?P̖N?|V`q?E-m_?܃-TF( ;+E P0k9p~Sᒔzd]H(D v [_Yh*xCG2$r#v8gȂbtGVd懶s!٘e WIj P*pޱk^ζA1Oo Q_nt<%u"vW+#KsŅdp(?*ݼjqfV܏u $>e]g/?KES\F}l1kuV/$|T<Ҡ'#NEF61FP7U>n qkYdprW0FFjK3̬⣾s-TBˣ~`XX_:r%0Ong F65!{P}H n}L7) =Kn_V:g:Jxw͈߲{27/IhFif˘"vZ@Y2Y Ǥn VNvL)rVl+۶:dH{,"3m4qZg0y*h1v翊zLqA"]R`>.H|Zsig@︾// ~W@7qi\ +_^榲/0I_` Fd|cvgDi3#uD̤GܠZ`zIjg\S/UL贌ԼHM4qZl5qϲ({6=N3YbQl0'&UeȄ;fꙶdvnw7g)"q1Hl9 z _ @S#w,ut%P;t%MM8 9z 2L᱊q9dɮvΒH访X:,VG6w"i Q?M+ËiXc95(^hT.N$ PYƐc 5M`9Hz2,pĜU,P\[a &` JIWDq)v[ cEY8ISET&(t:(Bds$ЎL~Fg)O U"8ϋ/|`(7=?@LPQe#^e=%^^LNjfG I52[+ &ڋ }h2#:^w,|Hd p p^ea^?PLpo ' #a|< Nj4:A'4x g1![`wU `efCp(4x$l.OG< 4x$q xUΚa54kXjװ֨aQOf)7ƶ5[|8',RǺ.e_8I]^J ;.e"sQ3uK,\L-聇"K#uqru[Wl5ȾT'#NU&h_JR+f`㲮IsYͽt28̪K)41#Q] W>vh>EfD7|[g+-}ޟOަoߕ= 'ޭQ<.G8ؼQ`{L.H]n"}@^;`vI5]t@;  AB* ǜ Q,9iѬ{%`ރ+k1G?EXh6i6iۤHIuIUI5In&6oUǰD؃Va3[%ڡ5~qETQNGൎ 7a\-4tI#,Iv)\R&EڥL:.euIqv)qR&ڥL:UnْшϊgZ&}<;F2-Z)#,5乵)ykޅcv$ݼ)K7K뒲t%-ݼIK7OYV,=eguIYY]R~V1wgGϨtt,.)KGK閴tt:&NOԤ6 X_\SrhN~) {);=!6zOpA6=oCN{=qKq 潫3^T {zqLnM#0-^49Ӽg9>zr8A{`#,~edd 'T-wnZ2cvg¸lbeL6!Rq[׌F}> { ij$Ƶ̈́EBc\c'd݁{.B9.]"=/|ܸP!ux31VYOt 牢CDoMK f2-tR>XN๶ "y7w_w"c5LԨY6"Qc!"sמ [GDEW( V`!H*aR}[AYjQ["Ѧ˅mΈ@m`QXnFBTU(t2+jLKZPܟm9C&_ҏ> mŌ$?ԬYg!]"xo[{x^Qx߿Шx>:zv@zky 4?MRٗE:O;*[]d;uy5Pc 1C;xB@u_yoCqq;n'p \CԣOf,Iv$#K`2o д;@{;읯ςۼk +N;6K86SE}r$JUe)(`uJ`B\xO EV۵az-+ruMke3(NM\yG D2!5d!";G#lGtio~:![) 1CG=rduK j6f=8YR@&\ih[٠7Ao/7l:Jt"vW+C[D{Tw\/:: F2éwV^;^q?[ֻ'vʕy&*5,Vpb< ߿]*(z xcNd%K(/9CߘGi@-7A=Ny8\4Cng)CZ*$$P olI]98u6}z}$vB_h{fL'y%.?x>rΚT$r]v4R>L"Ifcx[ױ7=wcC7"@ufvQ߹eѩCQ`g_3K#a=?WSB:M껩e)">M7М鏤4/"|kF |㟘|IA Ocm6d=dj_Ő `;m8&Mu3ruׅrfl+:dH{,"3m4qZgy*h1v LSue%dT ϧuqE~:Lvu@P~@N$'~7 _wTF#UJ?@U84ߘ,nRڠ;BU9oi`z%2af&f#|źl>d Ifr9r3o <|8h暝hf2kM蛩FH{U: Haf q.yI1dN:楱՚t*w^X^FSTqlW{u(cWr,Y-|FL[2Snw7g9"{1Hl9((/ބ֣6w,ut7p/H]wh6([ X:-}bgL%VlЊm }wš_  1m]so-ÈTAq.i,hR=&ɪt2P&lIO~ _1fÕ!ro~qC`r.uJMeD_pg5Pf>/PIⵀ2"[D,er2]`AEJkS<2=2;>Q1zTThc+$47r9 L8&[ L|-d Õz9~m$UO19z/Ӿ@( kLzc'.}k9,/?&r}wGEB{ECE,됲G~&fQpXD 1|p&BbBdц989M ftDoId -k0x+c2va"c콑[zdQN2vmc' S2&#a,;6Ma0 P}]1栘< &}$࢐y\y8׋/'B4ko4* eGJwx/xV{Idx/k2+2+H{eWy^** {i^ ʀ/δa __m|7Ug^IXt fGxXb9bFA,Tȳ/%ֵt:KdWR*GU'UyRg$e[洵u'38̚K +41#M]9VߴX)+ǚoiq~s}{syf;+Xn6pLp֤G x|>XD4q6iBgmEڤ;Gi&n&MMw4Va Z%z [JCkt⊲*4ē{Y},m;nZ&QPP&NڥL.Kn2逭]ʤSv)2/ڥLKo2)߲%9;#fLxv)2-Z)#,5乵)ykޅcv$ݼ)K7K뒲t%-ݼIK7OYV,=eguIYY]R~V1wgGϨtt,.)KGK閴tt:&NOԤ6 Y_\SrhN~_#\ {);=!6zOpA6=oCN{=qKq 潫3^T {zqLnM#0-^49Ӽg9>*=eU]}PVHHV}>zA+Rlg&pܭ!3L`x>PeC,cZ *ܺfD6[/D OK ~?#il6m&.rZ6p' 5-/i6"[˴%Jrv\\XUydlq⁉<+@[$0j=TDy3aKWbv] ,?$W?8yx{T79ġ?(}:2wm W>SmCeЇ;n8@K#L \*Vf;Ur$JY WPՉ;1.sbrrL%ij&N>Z+ G[tz%BQgro@ITR娔)[#Ě| 757N<&8 / f(ߌ]*_\:Cogw ҷͶƳdG 0߭@L xy4 [=ҁy`Hu%kA:8Ft%4V(sg7+;AKDzR #WvBhۛ3|s(fY'>Z_X6ԯϋ{V*^h#US(?; RƥH(jv [_Y,7t$C"̆Y]kݼGVT sɟ|GvA,'\;g.p9c) <1 zG}ahw"Tj'#:-fε_+Lk#pQ~TlkkIþ{+F bJ&DE޽͉n2`[1ЬKc=xy,T+"i&OCQמ߱lqeƄkj>3 ᣾s-ʢSBˣk< )r%0mWx TotԨ| t6GR%gTlw͈߲=g~ue4f3Z9q=]]/+Η{wwQVӐqY]jtmky*h1umQgZ&]RI|ZZdQy8 3 dw\?`PDrB^yF^^@.ndQ7`4 &n6~2a?@^GCEKJ `<#,^鋠-][;R7HdLMLG|@?%|a85՛i|AC:g'6 Lgq 4t422>vWaδ%Cv>>ᴙ9Fb_n.%0|&H8O@Sw,ut!Pڮ;tMԿM8 8z$Whڥ9DρKe"XmEpd2Grh2*ծe-+7w M*yk4Y]nu\0 /ELp׳ azMw]cA;!x0LV q*`K8DxJKHdrW^3o6\*};"n,QrnACI \ژw,|s@ tzٹOw*7RCh.,Ed|E&'Ԥ+ɣ6##K,nn/Ω1Bkj]Y&!t-X,#ޱF&0a"8& Iͬ-4K 娖zv5;)X\$Bo-%bc"W&d %o/rʶIUD5CBQaFҲTWeP jˠʓ jgdL[ƴ_gL[F{Ţ=|^Ə7Bel07jb2+'[h/ b^uMF{eWF{Eh^"2KE%5"^hoNn2+L;+RP{_iWfrdW{TW֬___~ɀ/k'eW|Xs(w2jͩ@7g'_$̏g%Ͽ"(ywe/]`Y"8MSsW&Z7FK.]Y|ㆉ7soL@7bCt򘮽cNNEkc!P 4>A&o3Bq G qύә x$OG4x$l>OG9= 4x$bN+Q%?>r"LF} K5,6ɬ6vf__ژᩢyԒX <)]|>fINqg*T-Θ潈O,W aW!}X 5YJY,ѷӥנ=94jB(`ikLce)Z)[Ѹ}#S WYo?(oiY-Xr?3$xSNNIN\e^ԁkY}xM}`OyO'8 Np λxļ,%`y`1=YCJ.(:xX둂b`ke}VP~02 4-SƁ8"Sŷzxme$q8 p)͐\/8+"](lLklLal+9D ߙB@s'hChz[@%4A2zHk;KXʼG^=ԮsG4&·h&n&Mqk4qa6i63mmVڤیI&McDa=-浵JCkt⊲*4SXv%QsjICכD9BBXl2).eR]ʤv)RڥL Kl2).e]-1'edzcIwl_oJ8N!g!ϭi%ϭmM_.&uOYy]Rn^-iuL]yϪg$)K?K꒲%-IK?8:xF=etIY::]RN1w0x&YL^暒TnGKwu7{3~I(ҽ^)tSw{Blిm{=̿{z_mU{Wgн✙??F`[{8isyr|lpFX|d胲B2EZх^ b;S7n-\/,3C/ ,"`ӲmT_%z(`A"G'%j4Sz6f 9q-8 u KUֻ wqދrzB ?¿›jPDlx;^[!7g?]?eX*-H 6'>' 5-/i6"[˴%Jrv-ﹶ "w_"c5LԨY6"Qc!"sמ [DEW( V`aS9w b RK&J*.m\؆ Nf5+h$Tه~:¯&jԃK5%a: LK ӟO|T%.TIʺ:^j?h jq3Gg9B(4lXo%XtܭbJ2H) #Cb0"T- F^i"sGI8y6BJǠ~;:/a}se ;$os? R{`g325z> 3JT^-xooOo0@ɚLg(bJ=gU bz>qsypU"T6k4Z46iԇmRѨڤ>QI}B>iF}&UkC6w[O7w;jV-J5yj6O=UR͞ڪSOmTӧjTS[~*?jVFZkiTj4Zi?jVFZO?UQ֪PߠU7ڿAo@vw-oo@V߀jڿ ZjT7h oЪR߰U7ڿaoHVߐjAVߐjڿ! [CjT7l oتQߨU7ڿQoDV߈jFڿ={jFT7joԪQߨU7ڿQoLVߘjƭڿ1[cjT7>C_ ĭ$ M~S|ijKs,q4^“ZcÒcdPmN?l3yQ6#~D#1H|sח_-.o?\yKS[\P>l`^{Mx2d&T9| | #V&J sD{~b8 5-}"oŶGyXn ?+;||_O^yދ=~ 2S6{hWOh<3ya3Taunr>_nu VA /~Gv?Z egH w]G)vG_,-8DJHs ' Sw'(PHsI˜rrlS~맩S;?ܤZգI/~핛};vI ~0|ѨXJ&)rHMX;ۊ ބJ҄JT')liihl5-葹>fL҇c:kٽ-4px?dlmms-1.0.0+bzr2569/data/projects/CoolSongs/Zakarra-59_Degrees.mmpz0000644000000000000000000002762011603573245022603 0ustar 00000000000000x}Y8{ NmxK(ɣ63{d I,/I"p+ p8;At 7gʅ|?_yw߮Kr\<";w$;BVDo>^D"oq~ۿцZ/LJB,=Ȍ?PϤ'( <,[ƲVv7!oQnbijE*"$v'HsdOHטXIٟu?CH{ Τ[7vo<܉zo$RI ,Dbc'9Vq󛛔2*-lˊT\eۣ`/]FzݠĴ'X?ɸn(aKnm9Db,kLs,}[ComAA /{AD(eUjo,ċ_ E>&w^m">t0;br9o격Բ64\tfcV[BCdZʢfH~Tyt2-ȴ :-Ӫ9R-},@pD0sgN;grJӫA1%DhW duf:jJ(2e~Q 3*, 2 ˀ,։geT9D4QU&Ⳛh4cHӤ<-_y TO * TyT;ǵw Dcb ?/W[L'T@9헙*L6U2<*IhC&O/M(]*id}";xϰNީ,#'<aH ̓4'Q;*6a+k/sAY-[oAY աeu(szkB& ;s=Ik﷟YOԞ8,+{f"LvTY3{7ٽ!j <;{WY79J@)r@Q3H9*1z; 錁#fjTV3j0}ZS%P/џN*].ZD~*ev/uuR(`fNK&(:+ݔJ_XS-MFV d1Z+~b} UQVku*<˫j*TޥTfǍ2SLiXT#hFpAlNeOeJ4Ly*ד-ъ1/ҜN mhN7,#Kz>pZCƊ^e%xC 2qfõӮ$z(m/k<k@ؾ&2 _4\'4hА 4hsM%\'HR⣝7ˏx9p:tZ;r"{hGNfȉYĉ'?BQf%8'NH'N(uw'*oԋ\kMfNC3<[A)Pj%Z ֝k+J*K%PeIomH JM'VZy WaPawT{q J.X*m'9y _U7\[AUE5.o4jz9Uksڦ͘\5SVh+h\%69VqmγToUS zUlCdNNz;Zmջ8nt0 Zh9b5Q\[A̷*>Tӟk+h)u9(V-/VmC!VԥsX5g{N*˱n6sr*ݖ]Vqtܬ=&x!<xN<x9CyZP~:/t7|gT2x*bu5q{w;0< ܙԏB!}"?}xo?v ]W0?YQEv|ktIQ%b _2fɛl 7,wn2ĢG&&tw^pcyr<&=?gj!jrII"ho,Oku5;U|Pke>&"jlcI׼Jleb= F޳8UK f4Iuv,#ܨ#쥛`P>069.3yhg%3bTGsn7?|v>_w7Wݑ |z83Tҧj}{̶]= B'\ b|ZdY  u 7> ƷQ.gp' v;-F Ŀ6%{Òӵy }~lr12P0,}?nf[1rօN}x>wɞS΅&*lΧǏU&ioEwM8,߮>~jd0`̈FiW2.nYXU1N,P0kz0 =d̖鱰S|gh g$zJ1Wrdn%q"Ui⿲_.gfe2—Uk|a뵪TfsOJޜmƙw5m 6tA%Zs#tbF{DmAuuţ[H#CV3_^^}~QԔn);Tn馗K_d)tP 0:o9vOӑ2<#`@ _( TzxMhkl^#jcv #n%<?YA$닠kVvAL~J(L]!r&K!cDŽ:{3oP=*~:[:{圆׭{YI2̔ V U+N Cn!ۜ*d) "lppCfblnB򯘗>ۻ=5GkwzL6oG&{x N>d;4Y"UO Nw%oٕ_c|:s:Pq :-N8Fs=?V|a<゚Gh1O~s ~\axiC0O۞y8.y8Nyz:_ /9l],##xiL_^v͒6#uP-!0튁UF 9䗡YF2!c~۞@ 65kX7l`Rra +%rA~>$ Yda9e%is˹ٗB)7̾ڜ2 ds+x)5ЧDY>E,-*ѷ|4TT_FsY"Vw6#3,=mZvx| a^0{|S2ǔ 0qE{dѯ԰8%zLɀS2 8EJbNt_2ǔ @1%y\tY+: HѤsy//G:5ۍmwt<"_8_NZL[<x z?P{쯠15?̿~#ݪ\.>?x+-.<Ǜ}crJ2u.6B16Åq&m RlcBPL^HޡJ0=ZA~pp}+ A^u=LrCT|~$ .B^Cأ}Cm'Udž .b;]wry횽"ǎ/)Suzg<ׁ43vn&Yo%V˺5FU{7eT+Q`g%u]㒗(%Ix҃*cgg6k|?Q.rmEASNuY0 vuH[)c/[";Sq݃S yId+Bn(8A!桘g]fhgx0uCQR~ )w;jgx[6M?m/4e!Y'&+e ɚS+8ua117u!@M mZNTsjisjCn7^2Xj^P+krS皈rҹՂ|r]k.rw MU SUkwE\6Ov,Yby.rJ"_65&Yܦ\19&rC C >|>0IEaiC>|I+b ?~ׄ *?~ׄj~У9?~`ɰ}?~?)Ӏ C?~Ik'?~G (=~&? '?~\4?~&`PGs?~$5ᇵ_~~>K]?~ޟ,Pz4L_~X?h&?~V?eP?5X?h"`hKx?~f~У9?~`ZU?~ ?~~XhH?~`' @",;~kq. K'm r _bDh QEZG (QQ[HEQ 0QϏ8ƑM懖/ MvIV.Lao}8Ƶs¨ q DŽe<ޡRzl ɋCg`\J[A^κEo$ٹ,:$Y|8\~!J\ Rl{ɴU"=Sak;m!=UƉ nb[V/V/g"k}9v~IY"e0z|fhhsSssLjYf1ܨ*|/j}%W7*uŁa%$ <et[91wnn9V=k|?Q.rmEASNuYKw8ԥ-x8$\[/[";2 ™G[%RJ f/3յR @ $L*z-H @ b@B5v[$H @I\.Ȳӯ $!ˑ @t8'iعo=6M'ƊQ2Qì㍒a.3CAlg%ATk\/`@GMecYhzH~sr}ɭ{ ^(Fr39'|fpsUHY1|J间Q&Qj#N½c_W׳fdMv4F&n~RO]s7h꾺(GvyXr".mcB"PBplcđI^:ɸr>2z$ZBG2,g 8c/zo 7ޜJqBiQ(hfLN!H`_$I.7R.(jD.EŇE^OզЊA%yWilT*u#ut]/Z{aJ>C][\xVсe^pw{bdgmNrZ1eR[TY"z /sI`X"*PU>:A~g&_U~g&_U~g&_U~g&ߘU~g&Yo*3ݨ_*f?Y:Y:Y:Y:Y:Y:Y:Y:Y:Y:Y6Y6Y6Y6Y6Y6Y6Y6Y6Y6Y>Y>Y>Y>Y>Y>Y>Y>Y>Y>Y1Y1Y1Y1Y1Y1Y1Y1Y1Y1Y9Y9Y9Y9Y9 ޖ}G_j梻⩺J&=9uHN_|u/)ex-W2t-? Lݧ]'{<e_ۇɐKY>W!w: w# mN;t9Ayȟ)t!?_{]/ەo盧hX\}>IX]iA[\]|zwO./$rIMϗ{d9?_Pb;nO}r&,,~寏 ;`/s+= ')]dߟ.)ϗLMqm긔N,{oXI{gOKL'q /Wqb?}W~h嫆Eѓ<̯FīK߽l?N^vx\͕{2mQ*U.VH=vRjw2:R-i@e3OD1ah?њ.Ue8T>.DEoݫXʛ1n?5LBǬF◫NH/P]7pqkخm$5n|䑘f i;ղ Ur _ !-ב#遤$ 4$%i ^#X@3ndTL|&DH=?c|R v9jtk5)y4,g7솔a֏'K? d=ѣjhK72;gWuÃaZ4.1Ni}!7%5ֈ&uDjPza!:f9Gyq]ͤLY{#OȡLA]!g=h7fW:t̏`^``\ -2-izfNZTբzY[/_/,Vu݀E3X4cьEsEY4^UH=⪧l,.;j,g*A饧}}LECUQjG'^\r[U-g=kӄZnJLmf=uu6t_,7Fn:TSN:5׈3Xilb㬖 ƒOO/eO㮯É2Ɲ%3yOKEOT9 %ƛ7T2Q  <%P{⫦i ?L3f Tada˞z=['^a3W"}z^LҹQ@FݜHn-KGƴZhl 1 ?6416;arQ{Fbb ,6b#׈3Xl5:q_;v.5c'i?1T?Eލy7̻yN{M=Orfg8p4)ca{'zi)S_C_} 2}=8tQnl޳7[SNm](]2X*crgT.D|U/{I7V'IrMxB~rK7[_ym$G@l:udFA~Kֹ<R~.d/*?:`Ç,#D59>rg_%|U8Іm@|eD>§Ǩ5;c]hT3kneLTZd񸱨["JHӾD직7g-e_ޒy_irShd}%}O*#MΥzrbSQɢ1A#B_CbL?fJ_nܾPzyo3q)6Ӫy(&j9l?R_n_?i1Y,7tUo*+J~"zd:d_Z*T ]7x庽ls70VmE+JoqBQUqBh>UK+ios[,{۴js{9-1CD"6]`'k_δZUa'_tv(Uoء&a2[|ۢJ| "GoK4e1m,X؅w1؎Qu;/J D 'ޒ|Z0͑*l[3,v;ʲg0`ODUA3Ţ5&GW4]lhj}|#2?-1m3.g398 }$ϔpV]I'sWJt*RcJ J]v)PT1gUKzӉ J~XuWJj';_2J\BEH>IɓgNĉ|sD>Ʉ7p?_;Y˙K:MrHDOTi9-6q-88[Z x6hR])K=mjgwh_UmW?}I֧BZO^`Ҡya1sHڵ?m$i9'"[V?z; LbϕnEbgE׬8|+_/[LUD*` X:V̀U*` X:_ U*` XuX( XVUŪ*` XV/VEXV+*| `XV VˤV+ `%`u _XV+,+ `: X/XV+jo#.E^Nb]:B<YU51`R. bu!*=ld+F}Z]8OѪݰ6Q ߷êDT()VBSj~&(Uhߧ_mԧՅ`J.^ BڨOdd2z @ D_d21LN!P`o{;vhoVKB`XVgV|n$ ;1߃}dV" @ ȔW (JX @ #{ @fݑ mvG]`w#l(XV+~Ij.]/ `Xe:NV+ `%` cUepU+ ĭt|r3n>J k 4 T`d/~+If\ݫd>SK?ŀ!Xuck]-ߵMԅaRWm]{(X>N]bhZa45A2RzZW}uH5uGHo vhQᓕE4uUGCF`5_~/c㿼~ݷwon}/w:PQ778j0ᓽqIAiVBSlDkb2[j%Oݼ~duKp~64­vIENEju4 mͽmqژ:%1T~׻_}= !H{gYoIjןo? bHVF,Ny#zgdDj$ײlt7&.U"Jl zoL^57["ZөddlǚN/*Z̞͛2RhjR)ֆλ&ufO]q획D#1m>by ]©mo44Q+.ˆ:?qITn\OviV~>~!7*[E?$cjymcJ4%aXA}w+YQ- E\f0W}Cc!yl44s65w34u])ۧwP旹n%5>~ XW)r$mpо'փ4HotFb]/ Y(y!=yf{2K"ypLd:nnTFk46j0'BɊ CyΎ\=㷶&&Qƞ)IS}GOw&x+Y\[iϼ[hS=b߻֬z,>33SU50njș\+oif]}QB+: ̚b"7hL\UiƜ{ &DNLwG41vְCpӵ4[q/2iZ*E*:__J^%×! h8x]p {L`={K(uJN@_^"V?U >/3Sm0y򀢀>-<j"T<خHmCȑ21[U~bvoe<4:nMgrv,Mnh-.=4AČ_u3)8%vw_ϐGdR*[ 6nvnByUp ϶6hJ*HFshlK:hc]~d={ PH뾊dEF.jعڢZ )?olO3 ]i۸2P5D@JYjnv2n7Jh%1k%{'y=;A,m~91rkK˞i[*)#Vr$vګ}7櫎I-zR۩a8+QɝaFB!ݺ+"Uǭ'tN6&;^Q<a0.i., ulP"ƱʏZ Mc1%'LY~U7@<*ra0]V#+ݼO_>%sU\J$s<9~הi`.7z(ju|M`U#S-V.toTZłRL6OkE2Vyʨi3+~SAXĦeR"mvlJM[Mݎ}@@k:XLX}V%L7΄X`. KM0a`6LW V.0a &41a?&&y^ kk2PaAW6V% TCaD *+TXր o~VZTXT0 k-TXCa$jaIJ2q.+dD kM1_ox}fgh mZM4L ޷,p2{+ (^[ec56V:\tT6-7 ffT h@~E]NeS6Uxb":Oa?Mm:ySpMpMpMpMpMpMpMpMpMpMpMpMbޭBKԸxQX/iqdaDIEn'J9EKfhdI_}Sr'Ӄzk!XZUJ>M'Fό:dhxSzl+a'vooDޮv}3iM }G9A;öU~mғe2xdD&ı]_ej[TB'{s9Li8Bj!56!G,ڏ=ͮh  t$U}VĪLD0mQA4t0<k2MjDgY1βՐ:v Y8β5:րC,[ ǐ:KUtkoPJC ?~YT l׮e[cְD|i]9Dsu2*vaXU밚) ѰXa5Wqjb\utHAX偡U^}mMP~#_£z45Nʻ i5#;fyԌ4ﴪXLgq-,Y~BuzȳNy)5#:jY'V&It EszHtN)5#9j$:'VFQ)&ow~9t\S4͊> ~kH+v@+7 <ƾ֗-SK|I8NSgSh+Wy;bVSqJj'HS-cj\ 8"xq^QڨO U)Z6BF)66V Nu>EVg"P͔g B6"05 ~6EQȈU :̹Lt3O{`}ƩY[p 8N N SsfNS)fNS)ԙ#^ZLmUa#^ϭ^GN{iNd| H.H1쌇]愌L|`'YQOP Eк5uod4}}HIlO3LSm7W<9|#JI."(ŪM])L"|gkHZjyW-h52㧮F*P-iJ~Ď.'*I.nfxjJlu}"qԧ Ga:щY}։:"]CoXoS;5gY XJTlSux;'Ki>zƍmZI]qVJVD:~&Pvk. BVp rU!LkbfU!F ,`JD yUʮAT?2"o+]l22,k延ix&}Gbښ῰zީuLXklI$兇%~p}P ʛL5m%-|/B Jԃo~0cŷ{%*X6cS=G PmMƄ#yZQf] 8KӰ~KOa*"IqOѣjޏgS(WilJyx0,q:\XHJw$y? BQSvCfYC +Cwo4YyCD\)JJz0~[nV>'z+Ug mM],ѱG(f#Gko}Impj „V9NmsFU/tc9~kVHNSũ/RS)pqjORS)pjhZ}W~$UehmXт~`[nm j᳿{# l /cwHIlO3LSm7W<0;|#KGNLodzp,t>ChLk[/Fu:»n N/r*3Ahf8{LoD8z$J|[/nlDvMp5Pj@A/M7q=y]]sI@TZ &zo9/Xu`2߾e*=*x71Z(wV) xPȈ{C7a9_-ߵM3O< ϫNcBG՟\gfKuHz )/<,?XP|eah-n{AO`^oWJT*P6AcS=G Prd[ES1ao^pPfh,a֏@`$wVӘ=6HiV`Ӕbj&\īsq%<<G`z{1l^t´\sYv]%Xw=XvvXNgݎX&T -~0. 0$bN1,*U/!w"+^Toדkf݆ Oۯғyz܀}{e2r&[Ksb ŞGnq!EO[rwv{r -[|Y]}W~$U!#{]&\5 >W=Œg"2x>'H/~+If\ݫd.A5, 8 ۺ5ٖڦI\2Z0k.=q,vTWIiAVJS4!# o/_wp?uWGTa[.y4ްl_YI߱_TOSG_5_}4Tkz0 &P#>~>~2<˻﷛}{b` U@KXQ778j0ᓽqIAiVBU nĈe2J\:yQ&64­vIEDju4lͽmqژ:%1T~׻_}= !H{gYoIjןo? bHVF,Ly#zgdDj$ײlt7&.U"Jl zoL^57["ZөddlǚN!~ʌMGMfOs)JZt45$dI2Yӻ@W{hfc~ q%jH@q4T/og-5G 4:E `3ݦ}/wI›ٰKjL>}ۇ̿uKk7E~0(Kmh.w2/7D!Kh1 %/kv-C۸tml-y>8Do?}JeXy" L@qltx"QDɐr2vsڮFt[D;LIGO4FrKZԞ$wz}mgP{7ߚU_gff2J*|\Q"3KV}-ͬ}/JH}E0]m;;iSL:1 x˜s҄ӉvnF|}hcvf 7λ~v?v?fMfx*__MRHU׫jJh8ݜp {l`={i~ҁOgɀ2 H]tJ'ff.MfKe@2d(d@`f 7O>~Zf$E:^hKˡ>y]ёBmr%pLc -۪)wg(OFYލ7ҠjΗ-9]'gµUv6]jvggb2-.qUY"#k&3LHK̤dd_}y_?9ZIkl6ظ%y +UMlk&ґdo `iܮ W ;`ml󛘑̔&b'ڇ{\oeB?df0J|zJIGN= ]:n=kv41񲍪<5[Iغue, uDc?z&bJ 6/l5\OHoqKsLEa0]VR}w>}-+,El9{FSXB,bScśhr~LeΨ̽LK'Ec$Vx?ੴEޘEnɨ拋qF,^s Nؔ@L<,5Jӣ=erbJ#Bu;B=#^8}HJ>QIG`ɵ/}` z=/l_#!?ۗ٭@P/koa2L&: k&옰0aUJ&i` k+L6"U&V0KaVIݖ  `DE k-# Daa ʅR0) @u" DX *mV+ D% ^Ñ"A f|raGZ$a @" DXJּ5 "@Kx8Sb6ЦyDcw+ ?_.Q}`~=ݷ}rww+sJ7HuA_6Vz6VSacu<yX^ظ4%@| X#_g6DžKe\XGaɚ: x0n,J9&z1 xb| rgpyVÛTΛ4ޤtޤlpI'\$Y^ `z,uHU}kr՟aV%XTbڭ5i,Zi#h ͖,)뗻o_?}*L{J{bnPÕ,ؙ hxËF'_i N"~oW^'Cw"՗ك:T/ E,ߨFxUon A,Ev<_52!˷[ToTmr,|wt4!rX_e%vp'61n'БW %|^D0hT '4 +q54ǚ=L2MtC,cYFT lQ;βU:˖C,[wla9RPJYAF,*eUzhn?,rjڵlulv蒯W檦wPtUɰ؅a5W| j;kXUxa5Wjb\ENI^1^Xű}U8}k;ojԇim]ӧqWMHNi)5#;fyU4Īd I~r 5$["#GIyaIǵ\ud_ 6} kDbovK4oh軪#ȡ#CeGh;:ElZp.OiG1Zk|\[OF< Ո ρ2bܩRAT_KmO~j|ˢ\{l,?~Y\b B9"+P}LD8w/T8Hit" 猿R'T |L/T. _>OzwD"b/ڿPD?V"'̿~P}N/EB9_ oB9o%'T)28Esƿ,g eҬ[ X| <tDaY:.p, %nrT@L0^/(B\ljB>x>b8Mq $kAWR@HςiGZ@LrUb'6I8AUH/*OE,&3gk*rJžRH^61ꖋB#q%ޒ'K%sce 3  A <q|QsgcǕqܙ~sg#qsg#qsW+qswޘƒxqoܕ ";oܙ4A7\w捻2ׯO<xЕ7\_*Ӡ2Ae2Ael=@evK~Ae *T&LP2AeULPBe. "AE *Ts7CEݨDҩHH?Is^H5L8U *} *Tf*SwQT&NUv"9TP8Uّĩ 2qLĩ~Hĩ>LlOe*dΟդlto6R'|1*7xwDR_xžŮt{=x =x}d=x{ۃo=x{]o˅t% }r*~=]U\W.;Udڰ<=凵gYÏW=š@G*6{HIlO3LSm7W<0:|#O#&h+=-_njaW , lK+kZZU#o9ʛR'-qк{[W;](A lI|7N'Rf%dXX糂L\NJ hJ`$4/Oa%,t,SW}WBteU}|؟O?Aupdzh6/aH'S5am{?ڋQOSQضw,\LA-64(W0; 'ݹV2լtV?X=nlRv-UؠkҤ*j$J9mbުtk,n54Q9ic;%Yq8sK\ф cpyM,dQX:dп}\yƫRGF eN񿁠\[]pqn8 9mmč3O< 5ީKXklI$兇%~p}P ʛP5m%-|/PSmjOlt2pΦ4Mx%=N3vջnjt/]E;'9=+{ǝot3~OsugP})w9t7g/;{җwqt眧/sB|ϦIw9/]wҝsS3/m眗 =9# x3O;q & }yN.N.^7^9 ]Yob[m؉9Ӿ7vE9f6;|wܺܕK8DFznoXo4_^Չ9x}R s/WW#h.Sa^,mo^~a85i?fogz9Sja$K{[1nlDꇟ&8vk.a5FE *UpRpC@7& JD yUʮATb va9_-ߵM3O< kjzXxZV1aO3k%:r$=Q񁆺$=7kհFlDcɆ|NDEP,qP4wځapc.#ipGOmgv{h,XnoxF7hq:RbAa!@@:gB'3lY]嚟m&?ə$#AXfZv|R0'P4ĩjAY ֱ1ԜLbwИu ACq*Eʼnw-=_ĭadS'n?R ոW%v(H0->lao,?DH68TuQ9",4!؟ i]MzFR+I1 GXiRKRyOFwie*SRᓜp)hq(}k4͗[/4kiaFi~i+$9_hvܐ* 42阌ý:^<X Ɍ2U<>R}[Rј$ҁ(7bV:f)NkE`rLy 'cY9p?S~'GIioL)JEf2#W/*C^ >b-Tz.Y50`R2$TҀ)FNr*.!MP^1IY,EۥէIDRryS&"AtNn2e9eL%{V/S Ȋ3+'܊Ɠ>T_^%Jb"UU;7K 7enV4-්L1)PbqIAh)hNJqNBO;JfiZ売`3r U2GtLY83r'RA\T53QY 'J^wf -kģjN̕")V2@PʍXMO]2e+jv:ĝEKiNi'2#l>94`|%;)eR4?J͢6fcqMŒ>^%kYErCҴK.MѾRR_qևOpi*.M.92MO4ؒVɔӜA $e3BW,cA^ヘݾ{s*=54Fu:l=hN|_F2מbe)X :4Fig??\?Pٽ[\TV˟0R?ç͟7;O+D}aDG^55IU}|\Bh|Bm"¿n?Y15 Վns31N h\EF# Hxw+WsHX[HNh˽ H΅d4/8Kc[oL :jş6lmms-1.0.0+bzr2569/data/projects/CoolSongs/Zakarra-OneDay.mmpz0000644000000000000000000007132611603573245022071 0ustar 00000000000000 jx]s7z| :$vg?wvjw't2ş?F w\LǠ%ii鷄4ً߯b? ~^*?r߮G:7;(H*"$~vo7\~t\?_}HAB\im_>ak4<adeO'^lK^n{nP C)~X!Ʃ, L"gc^4zTu4z{nkOO64zcqP)TdrɞUFHg =HaT1%(3`/mПY %ſ.VNj/%8PIe)iѣMG+Ʋt_{.8# "Ep[F)kb=/=r6۬) )o$hy1':2'K3jż5hoغ:}{ӧ-<U$Yނ&t${ .%v$xEuN UvsjEy-<|R+bȴ"?OyXFF鏔mWOI^xKᰏӓrBd?_+6DE)|~xrcl|߆Q2.~: k/^[ ?AS@VxB/8|/Ө{)*$rO%Q۸9#Z%G!\z% '̷2,kaZ`:#4o?]77a&RD6EM¿>r\D[e^R]3j..ƴ636aG36i3h[U-[3u c hN8'O,n1- ~z>=&v \$;j$+%_]X`EUV"8}. jRjr jr#q'.kg{7aQk&P_0Yf<( GZOYQ0 C.`z! ȞþPкl=r&E('J  noįbcP rv'[BXaT%B !'rېMCS{@x)U@)Ud֌LTBJjql}P@԰^`P;X/T4`|Sg "i ԙ" `f _,ֻꏾcFz!M̏z=."E!RH"J%AX(r9l¡6' (OO`fQކ,q'B&U D!H Rw$|y ok֏{Oa*+3%}}"j?vn[5qv^} +[2$jahԡw'Sѓiطx#;~Lܗ/Sz S v͞W88}=JOa\_i_.S͞W<9t=S(عe@Os`rO,kbr%3x_/~]1C6 *xiY.@ٽ1=5?<ǷuAC5AyQis3EdQg6n̹)罔O~ xiqA`y{XJ}~+}>@4g/n%NbhĔ9a+ɲQXxncڂ黍qǔCD -DBD[;hizhm4}WrJozJ>48 ؇uc+bXnhm~B]8qb?\KYg@k&s@h -Bh[qB[6+m35[@[@1 [蠁IzO7T-Xd\5s@1J⥇3b-fA11"#Lj|?+4]Lg\0uƪpljUҧ-ɭ\j52ZjIBm]V!S2.4`[Ke;t %nRX5rdFиm[o!U!Ug566oשdoYƦjNb'@4yQn>~|<(>GOaILX ;ENgsmP&%;faj2M {~/TefKձD\jEU3}u.UZ9l[zo77қɴ7َfD}io^Uj9{ujWgқg7&lVoc[ːx齍mM3zhqӛt7/cқ ٤ U1-^37@~kD(GOU0)V@꥾DkOTq91&M iҚfz E}^^ >{8jKj H1?Z0TZ-L?[:u2F^U̶ lZ~ ׍w|^z5B=: S+Q\TMKsdK:D_PY9sy)ы8XS05RcУuw"&㜶?RÍ3R_2'g['^8Enm{U2h8"uxovpSIhؑ&n>{J{ 3S?T-~7(- כ߿MqEMܳ`9AC ͨr 9LzEZeғeVN aGh!n/(mXw]0 VIQg{-sVfbKEUу#~F Esbn4Xxb}km1ҕ8:Iށh+=N yi|>@KK44x5--ؒΡhi] z$ mv0 Wv';qFc󂅰}3[;R !Z?wܧ[;h0w?;MS͜e)tzm ZUV8Zs0(lwH@"@dwL *2@_ P+50MUBq@Aq@-nRfB{Ct 'Hweb!*3ϡݝO,h'+@> 0M;Ei3lf%Sp LlLckT*$:c ,c!2IJrd߯nn?;d 8|͑%͙fi?; HD55Jsz#'IZ3lR^|2΁" A. t5xLu . :ml5»92&xN ajRʭ,1*xwة2We까r(jnPi ލ/Mi+3 |_}`G (7 c$L a5V 0@ 0@º$ a 0@ StHXv&= a"<HX33@ 0.&0@º$ a 0@ StHD+ a|<HX33@ 0.&0@º$ a 0@ StHT@ 0> _Z%@ $ 0@ $S r$6 0N;X}Q@ ;HXef逄 |wH H a $++@H4#@ 0$b@ $N!ab)(@agY 0º(L @aI3( ., cPX++(&( 0T?E(练&  +0u, 0º1,`aXU%q:`a, ;Qa[aJU vi ™N=DWeAzozټ&@\Dqy0w$r?d<9>ߚa<[%Wq"90c|}''[F#_m_77FqJiud_>td_L>td>td>td~:_C8;U}Yȋc̍?im&+Q=j%r)nԏNn!3v # V!Μf yZ>!#ʼnsv&&0JAvg%w*(:o }%?% ۺK'4' /Cm}/5>A{!w"Ʌӭ)`>;u0k#)Rf"mHMk!e6- ) PRf@6&kH֠BOA5@ =7[ˢR}i]vXǶa}EKV\*,k,dX,taX,wX,dvX,uXɬݰYa%kJf%$'tbb̴Oǘ)Eٓ_~y6W^-3<{Z{xqya%CwLS2y aޑE0,8Ng_2Yǔ q1%Cu\gY􇌳&iVK@瘒!9dt+# GqP seaN珢CjꤟT%R{FԞ}3Pfj?B훃Pg}%,]SΟ\_NTKƻk|1> so#3\FKl$.Q?H]xI=*A(k^nI(={z."|(_#ƟFZ;(~ 䮝${ .Qǻ\UU[k7["Y{s'U=@rǵ*";UDWq>ybF"0(JJN?L^uh==)7r<-UpٿYb1TwY(2?u(/${%n|Q`KaDzetzM w *P݌nB^"?K4{ʩ<+§٤%WF [.#&P_z`!#DO떔|1z|K SF>_} So_ޜȵ=~*2'F_ᅱA2xǏ,DrriG Si \raʅ)\rarlr1zaʇ)NStSYOU1`[eKNٲ!-2Nٲ!é|)[6deC)[6dʗ2el)Sz>)wJf|o+7k>c S(^Tf%I*#=M~n"E(DLB eD ub0P<GxNr/F<zK_ޔB͔B'!qJGuOe駊Be*P'!z|E$L2z+M?_{YE&J-@hӪ Ā7RU Pe*c@P$Qb h@=0*4 d4]Cc@U]$&}"`*[1Tf(QUL@(SH&18UShu@ M tgFUCRt@]t@W . . .+ʌt|@tD]@tE]@tD]@tDWX@tD]@t  8kd5!v)] 4E)5px<Քv<NB@:-=<Г1O/_~B)q"5I %7N_b?1X))G2~"DO_f?IzD$-DO4ZuD\C(@]Kc~kNQ6f׿8f8w̹Vq5 ̹0œ s.̹0 Ü+2Nr jbs[$wIܓ*4CS-SMpĽrƻk)*[z5B?: /'O 6`8k ]{" (\kde8F/Nn|_,RD<#ؗF*,HW{{8g${)(52y?Aݠ%+։n8Ͼ~CZS)qsoW7wc~}D/Ş!kjcmfQOMlo.A;&~[.21E 24?~@׺;~G[hiLHv]-bjx/c?ŰCٓ6#oM"|~pw{@f!Zr0gox&_kGuGTmYW=8҅,Ŀw.ZFB^#Gfi0eEe+ :ml5»92&xN `jRʭ,1*xwب2Ue까r(jnPi }/MY+3 |_}`G (7 c$L a5V 0@ 0@º$ a 0@ StH0> $ aueH@ fH a]XVVQLH aթ~:$l0>  $ aueH@ fH a]XVVQLH aթ~:$ 3$~]hk $ 0@ $ N$0^/@8HXci@E $ a)&!a& a53$ H aҌ $ K@˜: 0I $ :OPfPX33 0.&0º(@a 0 S|Pj™<6( ffPXɨ&`a֍ `a| , 0* e XI SMS|l8 wXOh-t)&* ҋx[ 7 }"L'S6ɸs$! cJ(ɸ.ρ#G}?92*ju\߿]>yo1SJs =##b##c#{Бz:N@*949L5959L6껙m 7+X^8uJv=̩pnntmm:6ſY#Y:R68rɆn} (T"eyk azF^dn-+SAF)xKVhp̈́+>̈)a _l8<>Q!oM}ŬE'7@ I.ne>fOoWߩ`I]mM1Đ2iClZs )i 5&nHMڐ2!e6^Clz O0 *TZUB-KZ:m ;+ZBT(fIXHfA'Jf JfJf!JfJf솕J +^V2+i6'9;c}:?L1 ,Ȟ]2n//dţ;kn&/¼cJ0!;h,CygQ5Yv8!:d)㊆8Ȣ?du6N_2:ǔ 1%Cs\Y t8""]L7w-{˵mw*U8=dRsP',R-3 lԞ7؏Pf7j47?S(a|r|uwuZb>-p\7=._˯c? ^T{ke4Zb&Y.v AKQ Gho]pNF[[|vCi14r^٤LG[؄n&w$(epZ<D*\x"  s>2L+>Ug"jq+0r)F鏔UWuygb.PeD[OywiѯUͺBBߔQGy''+Qu>r]$ k/KO w zK9۬ }d_"?ږK4{ʩ<+§٤%-9WF[.E#;YK¿v~rh1UR2Ӓbɤ xY0-`Yn DC<}`b)*@Kt?(3~ĥBjJd7Qf$4@#qxpҷiN W~zD;q>rjskg.TкiXYr9fΖnZ#<+rp;~r={cOm<GҤ^m6^aa}mj+F~n^-c0(,(\FG5!I_PEPid瀔gNJujc*CmMzMlM9nBF| ݒ"KJWx!z C"[/BOR?]zi"._b?1z|K_ޢO^WDfBI(|(SGz?!zZ0A;H74 S'&))GC/4P/)?/-ߔ=MY\O.RE_B'&^ː)4AEA=E1zG!z~>CK}MEV麉l \U A 7Q\[18BxZM#'!Oɢ(,'ɢd(4J(ɢ|EdQP£l(Q6YP%EQBI(4J&ɢCdD@ɄeQ!P2gP:YLE )b($GtE>JWP6J.DoMI{>[N |[ﲚ!`=}&G\r}%; ُؔML&FeCِIv? Si\raʅ)\raR1%jbs=Gar3~}!HۗP/DO/ El^_2 kS"sd7d!:^EX^niz+W R?j^P:'=꼚g鈵nO*4O㗩bAiEM˟IFB;gSrKv1T \M!@@Ĕ/) h:ETUЖ1d ȀVHŢb y t)Ub@Iз,`*[e0ȼ@e8UA(So.P)k (>.@sH . .?t@]t@]t@]t]U.  h .  . .  n]@tGtu&yE7Qȅr ţuG#_1"E~;4dCVsiwyӮ O?nD1oZQNQDҩ@JAB)F1oZLDpqOgG.nz`;pd9M4IҟMӲwasD `=qLU$ 4C2 iLd 4Ld 4tLd 4@2 giZ6N#Sj W8椐R#IH-ᔚpJ|^2:dSjpJ|8NSjNSjRpJ R R#jJ܏#n- Yrt[Xvx Yvw!"[gi݅* s,$]Pw1~]O Pv.SMi %rԔ.S4>.0]XdwqI$SZZsψ[sKzOWӴo[s;@lM+i}GE d iĀRsYv,b!ݭrވe9*bBD YԛeiąbAv&-p#>҈$#ݫ4b% ݨbD,9!N}GnUq^7.%76 "mJ#v'|)8# 8|@qG@qGQ8# 8#A[pR'9'Iq Iq8%Sv'IџS/NIquz8)NJ>'IqpRf'Iq)8)NNFt ) . 芶  .   .  D!q9g* nIxAU\.Vb~BQ~ n{Io^/I¨R<ջ~]%QKEb/zq_>!;C]`#j䭆OEDɲ_Yg?UI>6묟BK#?GZ ScLiTMvzn_=תϳb5*/3U_. X_u"2AvqѦugD= _aI:rKPKpn57Z[vQn~4Z0nB[EM-X fbQʞF)K8$qJ_*U#26cLOq\qC׳VMVMZ;O\8gUKV#& |Z u昫h==)wcNWef݊PewoʨRW앨]FdI^[ ?y.Ӿ }d_"?ږK4{ʩ<+§٤%Q{9x>s`.[$Y"INcԉE½4%dO5`rAU g0^x29$TdrAK՜dTͩ5MЍKe7E4MMR7?M=M?(@[Lobz}J&O PA‘ Y bZLo`cbz *8azC#|F1.&Lo`Ď7@s?=az(82*H82a2QS709yt ƤtL`ƙ2QLS7RpfgolNF9QA‘9̘͢ÿ\9M0sE1Y4Z#3k3!V0T RId:lhĪU6UaT2w)(Yf,1UtLUe:p)F(iJ2]A$XE/VU;(ԘCHhL`JK_Czd&j՘>,lt RԘ^aBl3}B `J1fFI :'L01K'LF:'L&uO[L0-j$#LK-i0}T+dQ ShKVFL0ddR$fjѓLWiEO2^aFld2}¬dMPɢ>L0JaٴLOn1 $ E-[@DC,_@DE,c@) (@(o10#RZL瀢w@ABa =8P`R@Qg W  iY.? 3 sIo. ?\ rz>PO8u2Bp-HVo8 N"T ɸ,_+=RO_ѣ{c7>@ԩ`[n{\VJW#dG'p_|7YX)yr3ǴD&.'zEȼ_#3-#﯌!0zq"wb >(#ؗF*,HW{{8g$E=kpa'4ʜP;['^8EFM#&\ĴLz/^  J=6=z*y~o4x{%W μ E^<=K8iux%g9cc2aڬۆGD1%i\d2'lp.7ߘ>A,3vzvjQWw} 6N%3՗/lp8BH,o_o~7nMtjN>M|B]X٨ w ZDg!șhrM ;Bpxql?EnDzg׷\VP赺OZ}>oth,2x'E4P*TKKcR ˾暖 vlI|_P aޮM=_6;maPfw1yB>)vwoǐ;w]ӭ\;]Pܺ,N mXM4`Pр. =DW8P|4P0 4K&PbtSFY]sY 3#WTc$Nix9V]c$S  u2ө uw=g"/+yX=qE{soޥyPMoYKNљ1;itGgb22M!"cvYɥdƾ_^~nq qw#qKK4y3̕Hwqرh0 ݎ֥赹Fi^c$IkΔ RV{^`O;]!]`!E&v/|IrӅG<)qS@pi|;X=mz *wovh "iiB.ͱg/woS-̝*'٭.Y*8b5ajlu٪}ر7f+IL <{vra4ظ̤RQ]XzD &MuXG=s`َ]t9i&31Z$[ن/ͻ[! s?!)^Q,Vvrm~s9:3;]@W߿|nE+EںH>J{y5֡Sײ(۞sE6=mw+ӟdL%~K8 {E_vQ 9-We|TgDrv*M\TK5 ֞F A`P[F课;ZSuS(kcO"O h}=}tp/ >@+4Oh_ >+ @Tҗ΀ƣɑ0m^ Hw'; c$L a5U 0@ 0@º$ a .H،]0p$L% adrAvv@@a #+@4#0 bN,zpr9agկIma@a֥Q_@k, @ؾ(8/=:;;:\U uV{`~>_77FqJiD ґБ}Ȇ߇l>td#۽g tT%aQaQaQaQlsX\^~`Īͳ-uȋW{/浃F̌v3Y"*GVΝUj_OWU Rr1JJSsp]]#tov0WWIUg4 yxLUsQKZ2ckuQtlZBѹH`GOm֖0ԑRaK6|wkЊOG/p#'xb؇GX1ޓy nCi vm¸ZYaKR_ݨ}d%B>-oԱv oaϺ#՚ˍn$i&\x'٥l(AIعkYJxKVhp̈́+ #Av[7| YZoo' /Cm}o,:^ FȝHrt+1{ QH=3LPl!لl ) RfӢvHM!e6-KٴRfrHBOQA5 =7[ˢRm]vXǶa}EKV\*,k,dX,taXɬװYa%a%pa%a%Pa%= 3?1f^~`Gd׷_͕v?x֯x&+-pa^s3Aw|S2yǔ aqECwd2̃8a-jYǗ q1%CuLgW4YG!㬳 t@!9dt)㊆@Ȣ?Hib\mtXmS#ub*=# j>@}ovAG}s3վ^߮PxQVh>[p_}:S-18W e/H*Ͻ52ZF^pi~- R,G} u%ѣ@kzA' #F[[|v᳥14r^٤LG[؄n&w$(epZ<D*\x"  s>2L+>Ug"jq+0r)F鏔UWuygb.PeD[OywcѯUͺBBߔQGy''+Qu>r]$ k/CЫlzmKPft+'m: V\"QSNUYm>E&-o?_"~0BVr-H/ŏҫ-y^"i%{g8_['aEm(&uFTpEGU΃0F['}1JHrR cJ;u&GoNT@MEIܫM<>b@sEfXw^rBzG9Ex!z|O/BOq3SF$/F_x%)uEd 䋌^|zJHG漦"O"E/M_oJ_1z3M9%DODO"RE_/DOi?G~ɈUbMi?!z"?E=%~"?I ?B.&4LdiB901T Bx TAN"gL]%GtщR;8v/H2\b=#D WIJ v{Io^/I¨RnC[&ɬ,}3 eOåw8Wp9COiOWoby5 nJ6{[$hh> 8QVQdnHUURSs_QVKSԕZQRQ'th[=YɈÊ//ꍪM:gl #wy Kd9SXK^xd3ʇU4`*|J.i08!rBȋlu8EZsHz֑ l`Gz#%$t>M@lXB/I'٠ntu?bR1ٌnFt' e(/n@ޕP"X8m )}ws% 4n@c (#|SS';֑x{ʄT۪2#v !ↈ"n!ↈ[qC  JyFq^K`~i=NMeO=]N=VWX_ gDeOД=RFfR`o`Pl)3c+o8]x\5"#x\qj +  + :4ª>a}Xq}Xzއ>a{s{'/T#y_NȺyճR]<07^~ ȬPrHOސ?SA3ED~$&h / LdP_EvW< La J 9AJJzfؕPH1&9@ǎ@D Ch6FÒc)!Rl`6xd}ivZaI0X]Ja UXjVZ*Va UXUXm*q,`7X o|,`˷_`˷-ߺ_7X o|,`7XXx7cRj#tG^ɮ~Տ>$ мI9Jh@9\Ir*zKFo0c2)_ |5wꫭiQIh+J٥Jf4{qث-<9O@ nv[gzHA nv/v;RMRX o|,`7X o o7۶^Ma-7;ƛ.p]Dr"r"܎D b"z/QV~-:V.&)kʵDY\Kb1Hu+z9J^D65hwOg.H1٤*w,U{>EﲢC{YdL$hnqWiܭB$Ԛ!PkVmEv蛮gj0XSfyXST:P3\߫]nQZj;]jL}T\صmx׻Q^`0+6^2 Pr!*R4̜ͥ1ejw7WRrf}+ňfS/jVp6bX$XvShC9 E9UR9YܔY.3V="F9"'Az1ɪGŪYȝ0FoʪERn6-%Cm{r>-1xs Q^*)cZ=sJz pZ9#]U& sj9U!)fN` $;FAp4^ |~0C^5 1)AZ)ed{՚-W'Ş'ܓX̑N5Y̡N ̱,‘=× 2G?Kh+sk; {Wg {׊^7Q8aFQ=AZPY}Q=[ @$b:m29N@SЦV1+3S13e:HAЕ#Jt )蚞e^ЄO 2ry1n(1n#֔pd:}2'S5 LL`(*Yp)L`L'`hL/`zvaPIԯ0aL LG`f/4T T'%Md:SvW${:)^L`N YIHcZ$'Xij_,4IIW G-XX^ck1X3:A+cTtg4a(9#3=T!+4(XՙaZ "~J70Jj'3̦`/v{L^*hf1 bALH傮c`/t@hBfCISfv>A}+0&rc 0a91ƬMcY+0&(`L1k%`ƒc 01k1dpL1 8fmpZA1ǬE9cY+ 8&c6pL1?Y;&~pLV91c֦1ǬpZ8&c 8fcI1Cc*Q΁g*6GQIq"ezYV`7#&S#L6'$cIѹҵ3Y10ݚi)V19Rv3+v3!qvSd-(D-0A[6YZ'Nl&dCu+,-`giF;KTMN IBzhde#(g9) ^vdC6i'< 蛍x>ԴIZNi;N>8M>p50M>@2pL>/K.b& Kȱ\`%)NUpרeרeCElP$F-$F-$F-$F-y$F-s$F-m$F-g,naۂ0"/{-:m#/֋4/0D];EvEz2MSiLծ̞[tbG]?W0NŌqD C{+ѓ{.{r]ޠWqKNTuK*¥p#\H` (!zcEeu:=jX'{UoUִIG9*ixrdY%/A/"7z؆ٹ~'B^ׯA@ًb\dunuQO?\}=]|Avicu\:O4QD}AQHpJWRkaΨ8R볩A*&P*=`%EF:Pr,'ʴ[>M:K_v՝lս`B+^8JKmK./ƔՏos{XY@n'E Me?xm/TR7udvJӕx޽|ݠ92n[Qb4;1ߍo}ObWY~짓&*zJQhΞx>gʠ3K^ |W+MjdeF0`}T,! ['/+ U%HUmԊ?u򧢭/w4Qô"st#lG2; rٙX)W(WW%?jigJp,WDTDQEúT4T9u|-mw 69B+خwO~P<>iO;j= `Y#QSz8:|#ɡ4\/Mɡ¡(7QNJJU&W~D'czΏbսi$g?o2)G.XM  /wPC"ں~0QCK >mKR%CTCHVF,KM#6~[kWt-iO'澂'#˘]yOs>IkVq϶tғfpwYy$ /Kюg^O͌n6ɵH%gP=qID;j<}y|!1b/'SjЪ]N'n-״1p-ꢐ @"M ZU@\]`:٢TkˉA0ȷOc+'ʧASaِ5j0Y)ouڠ.P]/ %!i?i?i?i?i?i?i????????m6 .{˂CcgUHZItE-4U}HΏ%iUѽ섐cr#!埇#埇#@'H'P R  @'H'P R  @'H'P RI$D'I'QIRI$D'I'QIRI$埏'埏'埏'埏'埏J|[h3VeM?y zжp=$փ΃lɄ94E7=n*S}Eךw)ϩy $^"gt^Yr`S_@F, 䵳ley=YSztaq퇄ݜ+wf\V lVV>Xĩc8;vTGzN;fΊreMMֆͳ2el]X]rKUͪuf7 &)ѦjAU1jS)ܭCπWSn}'ń=ɤ"Ium/;Uά'Kd\q4a @olmms-1.0.0+bzr2569/data/projects/CoolSongs/unfa-Spoken.mmpz0000644000000000000000000062607612276253325021520 0ustar 00000000000000-'x[s6| }}6촻&5;L7f!h@dF-Ik---}=XgceWCh_O," thӭi;z~ ۻ/}0-=|Ϟ.}o.'߱w~?r4c͝ju(X?ys0'PFI =0Յ>?t444O? ^Q[A{5??~쁹4Ϧo>Y !ז$}K*%`Q[;r[} d`ɧl͹+JakؠQҠLG,d~Q+'$ d&}_, 48q9`󣏮vbi:5$9G>Ei=? +!|V.$70§olh@MO闰ێ"F }#䑴0أךkhϦfkUCRY]=lڇ}R__ݭWu']Oט D(E@PUGahFqOP*'-\r]c~U\?Jz!"!~{WSBjG4Җ@ ]5Q m}]gb6*bRK1L.BYʽUO `Ww4\Xn 6O*B]D%ϪDv hCؐNC#,Ӂ|JXs?Bp=&»R "} 1Oá_1!gzJ_ {J5Ⓚ?]èfR[4CXc=vL!V0^Ymk(Wir ke*/3ʍSiAKh]p).h@u4ȰuT/&Ci2yD3-Sf8Ⱦ9h̴? /Bv^si!g=CWHqBɢ5hEBTSzX0t;vnHg_WWKiyn(s!yki^VҼ9y7ƊYMP'I4 LO7w?}s mLqZ (] T` zRoP-횒њ@Qzi[ xHFPλ&B(VB~%T "~%j4.tqz ;(Nt=WtHRUcssp@KRR5ڦتo昏J@Q}7e?adD|6<-Ӽ Aв?,}*^5 V@^37f{`Gʺ0`tƪ[!Dh!\'U H4#xĢ mbҳJ0t'9N -O(K7dqKi/gr!e^g{&'P-'娤UE.HC ;{[*΀nU+.,c2 Z.k.ML\w,v`5nMg e3470Kf, %=Ldcb5>f,%Vl߾>f>f,eL-nc}̒Y6dY{fY,[YA>h-ed샖}ВO샖e%Qw-䷋Z *iQ[[-PLW[`V[45~R.hqq6.Jk.`(//Mudhocĸhw>H~jkzL׿EEXA& n0âl@yIoNpaQ:&Vr/i93gw+0ᄣPR3TyckAH\-Xn*lȟNa~I:ڊ ZIlr-a 9fI敲( _Q,ױX4GnEhĊbYŢ9R*&)F7'&2)F7'&r(E5ß;5pQa9LAX+wc% s!炏<߇ ~@N8.oq\N).i^bd{ vv}X>nx> P\9!1|>B'!Latq]ܻM\໤߻޻/{˥wu-.޵%sq{gdq=&.]ҧ]R]Ҧ]Rץ'{\zOLTo֒H#ĥKKګKʫK⪫w\zDZK8֒Z2վ~Z|QtuuxY喖&K/Ÿ 0_s5ED^ƙf fJ_m-Ih&h0,s 3C^xc263j3^1264赙%6Nӫ31lL&1 Č1:6κl!(Y}6>SLPL>S bLMz64,(۪?!nW)V1AbWb7b*FL^>Io+d7SAJ 滳QJe[U0O${ǂ61E3zwLð+f1N1WAլ ,~ kkΰ߫0f{u&vD3zm6tڌaW*4?Ԟ(f f`ظ<Ά>q*/yOn|<:}v/wWu^f_C -Ъ[y5çˡitW ,;zb}-Y$­y/ eCgXkikEa<V{ўִ cv#҂[/nj&$h}He${72b7[QcW~oqjH*}Fx8>b-?) sb;eNVLfSN0ΫpZ5c iNV$M8QdJq59LۨdΥ=҈G$G$MRIME c]҉B 13@2},g,;spiǴg n;0grdlAa*je3QXD¬u.;:7wxVzPD4H3.pcc.GdS YS zbdsՉܹ4x1 x{ifL %j؉<85z(!xkZHx/gTS]>+]E.gaݦc>D(ɗ>fæhoHZk׵FgSߵЪ=氼Y]_=NN7(WILE' j.l)y0 ήz̤%! 3hQ%c;ZAcc9$e2Ezk6d'-Pv8VR 6`{z@ssw7!%OHrz\_ !5kpGZh f rD UDj8/vBOXj)Cbg9OnM.Bs$^H=ee 8$#k g[ϛ:LWig]o@naI^4^*%s!F,FϪ>iz;>*0{[RC_uQ:֛N0;-p(KK|Y5fxj9j9:͏TO>mh4rE S*}1HQ՛a4?ZbizT~ '{$\@GW阫_Շ?׏R].gn ɤ}ck4#8SRR#ΒjdS.Wt7"?ѥxzEe9&PLU mwl7a[ J@Q}X:a%}D|6<-I Aв?s@T j4[g &ؑ. ]jיVJ܎e j> V67Im‰H:nC[GIJ0tԶP;8Fhi<5<3\DY:'xxL>n)m~,Q2"z5CcWp ţK3(, l;1:::j_p`YEfhֲpu^pǶ>+' m(B[㳙 L8l$!X[K]f}sM-Y(C$- 4r!hZݸ usDM4aRX~W[|0~ZO*څdot-}O*Z7^پ.uG'?@[8|I5_V4ksHnqGL.(Ȍ4.c(`仵65M!v$ kX`'@|Rq"fN*B}  ey\EK2 RURl~$si8˘?M6tcK8ɠSu if]:,e9y\6똒QѣYb'A}b=L в}^ϼ4!/&O ӂ >-} v.-YA}Vл"6 ~|v-w0E,IwLC7}Ē X V@}IJ3 h]C}ȒYo_doiC}ȲY YZc}̒Y6dYih*Eq,,I:_%˲$=8|Y{e DmHF^i*wc սyY|Ylt5k%=$J{I|X(&{IPk:H}ZG:H}G}H\tշoG_ZRe<*BYI+s€.&.(t ҷ}RDSPQQio|z~⎳E&g{=lVy|e)x@3Zjz= m0םӃ.jW 5o)cQ:Lx`NQ&~kTM`'ՀHuå[ *t F"|1砿"ixZ/iC8`Qi-߯LLvDh^)bѼŢy+EsVH(͑UQ,#X`"htC{b"htCb"h\T>#Z% *d![r' 1V <r.h8.8.}q\ w q- ~Z%-HK`gW k߇㦍Pub#8yfJŽkĥK KKKʽw\z׺KZג]Z2׾'{FO'ޓm%}%u%m%ezq]{X.'[ͥdktIl-kߏ8;M\.z˥wc-.q%sYK징lE\W75QniiʣEÏs#=l}bvKvrGGֺ#g$Fv_LB bdU<'/ /\ʌ3J d%/pzMz) |s+|NƃJoHu>3bazcT)1c44?1:Wڇ #QY FolKf{"UCVeUOGfetdA!dn%/1E~oFCB_ bFo)b$dd6'ҫY1)3,(Gb"2Č^b2:4ՙ4$3z}&juI$I8B+q6gcQP$YgƘ LlONT:;7MCsAF'+d2]1%'Ë!MPLTӛbh򓟪7E2bb$`h ET|]g$[K|f3BD~1A2Č>-DB࢏Y( zOq..*CZ]TEP bUmƒ" F0B?RR,7z}Y!e֡">+ BAgk ,wWa+xZs?of~}=}`94m?_p[424آcJaBu>Xw s0m-p(Bx/3ؚ40~cĵ[ZE_IWi4>$[i}{2  sQx刄 29 Gćor_PAG}4{o-E~>=PU`3#$90{ydWNZ5L/y`GUa L ݱϱ,ޚp ,G7} ?laC/ '2=B*j}zQqaF^ղ+̴P6l@`*jgn?;;4p;TTaih Z@c/"Ga#E_f(i$%g$ uG5㞩ef\G^^0RL[k|ٝm6gG̱<93P&53cSˀc˙g8PFLE>0E:T |t>_ԭ1V:Ê2_ͽe)ϒmUU#OIA,X  QC4x1 x{iflP(LCN1̭ ,hִ`/l=x^4@qX]?F]rgkZ3tx6чWK<1h~]G`^k 6z==V.fmsw6yzXm\"(1oS/ T3_ufcMɃopcb ΠEPhE7;ثώ吰+Me.Mp^֐!jn-;'DZoGsm:0~ m3tCR="pd˧26 ^Aiq tM.'m}]gʽ'BV-Ŕr t6Jr)׼cilsB8w˲&tjiguL"X4hyFH'!Ѩ鷎>, FrQAUS]>PRً1λRWmA,* 77kw՝v)]èfdxx X3AL],7)1 !m[5-UaL"{9.~u w"-h Nq2-JvO#L·e!RD[g[ˢֲ缠3vBb,?+w?Z{ͣ-դqjQ&3"HR '1L&놜+n0λm Rol(.@~UÄòAlȶ>²!jXYzNIc&I~ L4cwss mm xpܺVJs<16}ʋ)}~KF'P5Jkp4-x-w YGY2@ƥ@RataZ_η]lnWT[2kT.mwl7asG%tbi'T擧az !$,cv4m /֙|bInkav #vA )jBt& |r P5`+iimoB`+M3ڎN隶V$։"9+2 ɗD9ː2v?k45=j9)G%}Ǯ*rAGfPYn:P9vtctOj_p`YEfhֲp%rib :/lXf#8\TEHukz>c( ^ͺ.!X[K=f}sMER(CpXUL/:hٜX`CJ-c2;P;Q4NJ=6yvn52D 0.(rH`,^={ Wa EUX)gu,Ig 3܆2dުFHʘ%]eaI~YieIrK${ץY,r3m OTt\ozQpl$JGgeMǚDiw5k=$J{I~X2{5;H}ZGwD` [rӹ1ﻫ/B~e}Uq%Ҁ[w`VI35 EƺmTyu;*eThTZެ7%3~QtK}vA\sL_]2g[kNTۍz8-`gA!5+bR$a Zh<2sPt>oudg.]rTg8$*0ᄣPR3ѭU 8~l-E6#qLrTQdCt< ow@:%M>lFWeXTZk9$E!*&f߰JE$EJY慯(XQ,#X4GbEhb)FF9Fχ(Q0T Q,•;a \ՐsGqqC\c ~\8.]mq\{u]o4/n@2]ҽ;\\>_7m<})D 1b< g3k޵n%%%%~q޻X.k]ͥwktIu-kޓ='h6q>:62.=Y,ޓ{dz{OŵGrq &.]R_]^]R^]]W];\zDZLTo8֒%J6䋢Ǜ͚(4Yzi"އ9Rr|/ʲZ'Gv88uGPH©1!,L1 d1H*2ErsPi@5\̒XN& D  ӏm#)Izc4c%:j%ӎNbG6֫yG,F`ju.8k_{Ю=5;k"MCh|8護 >0#{G>/1|\`&<3A L0鵙Lfbo2:宪3^Iɠ3z}6lU}6fg5{&Hhl!&j=>31^ИA Mz}ϔ3A3A ڄgs1qlLaXnqiκg :F u62# ȬȬ"Hd)2;^Vd&h6%d,!c+]7f<$2z=;e/ɬ!d<4"F%I>RXҗ!b: pHv  M3L 3d  b %Ȭ(fZC3.eg'lBՏAb bFYKŬCuQ* ((f $[i}{2  sQx堁 29 Gćor_PAG}4{ M??[{@@U%Ό3.KnPv;|!Q(Td~HgrttX2.'1Ju,|[~Yә[oO'qjT̩ Xy`TOmF8n;DbApC!4DanM`d|tfkZ;(#:ދx+> tXC5]>6x&a'_Lx$F }{;}|]l@{65{] }˛:VaEtp3az1A{UTt\Яҧ?@5pUxj6THє<gA=!! 3hQ%c;ZAcc9$e٦w [Cچ27TJʿlϵU|n~Y_?bڻIVa ya9Dߡf H $y4? 4_~YU nD'Fj@5|(Cbg9OnM BsHME&-(/ Ɓ5$YK8 k2ޔu %yTtzpz̽q5R4e)5J eOV=IM=Vl;"CЎ:ױTt^AiCYZ2&7VkHoLі:ڈF,~K^9aݰ؀4|'k̆}"R"gquG|qik5{a6폖cl2V")Fy>YHj Tt&nw1/gF̌29Qre2H.hHLBawerH/\™a9-ΙL$i;3$03 ϙ"-|'SM(TqZ (] T9OzRoP-r@E-QH;  NLqvCR*Bj ] e~i8JJjdSj}M:Z&et*^^QE[BBŔ)R6}V}6|TJv~.ڡl>yZAeIT j4[g_&Eؑ. ]VI27W-@ըyiVGcQVE$։"9+O2 ɗD9ː2v]Ch2jz rRJ]UT1.ܾ͠'u茐'V0DR,ImΙbiY!1>f {1샖}вZAKږA>h-%A>hIT]-S-WZ߸ **C.Gn2c=*^c~rŋ TK*tu=I1^C3^71Աhw>H£·gk;!~ dkg~7>~To|27>ꆼǍr'.yw4~͟17ϙ[?z~FoLz)oI`e!eٿ?37LߤMx;n>ݦOΥiGLQiZ>MZlܴ0_g Ʒߣ3o A]wp~33I1]6렶e-2ʘi1'I5)Tk-oP枊Vk) Z%ԋ >LImBWB-.SB}RHZt3ԅZv "hPKPjTz^ YS5ԲmP=OzI-ړg"$SnqVgw'6^L#ӃIjW 5#Z%*d1[t'1V <r.p8.ȓ8.q\ qo- ~Z%.HK`kW k߇㦍Pub#8yfJŽkĥK KKKʽw\z׺KZג]Z2׾'{FO'ޓm%}%u%m%ezq]{X.'[ͥdktIl-kߏ8;M\.z˥wc-.q%sYK징lE'\W75QniiʣEEsxu<H,!>H_Ls#;GGFͺ3g$FveD1&br?*}k^N $LDccY .5_XnoJk}R I!sNp4"߮<f$U-۾L{elv 4a^8yxG{C%Us8b8haVz?*DbF$GgW;v4sV0}FG3.3BTeR_cyZ3~6A(grd ́K{}+1o7j;]PdSQ e:: P?4_O$5rX/YF̣e)NщVѫh4ADR\,:ԝ{`?}i|t{i};0C®\6텕dc!; -;^m{.K—w7qvip_$9X=./u_V5x8#M4Ҍ~3p|De9dv4m"5tU[E㋨@;y,ukh&mq ME&RF_F RkH2wRa67ԩeu %yTtzpz])~?f&d*tz|*U`8-qRC_uQ:֛8h8,`~xn]lʩǦ->mh4r5x䄩vÖ4|'k̆}"R"gquG|8=0 G1R 6{ZV60nĽeKStׯß_XhpHGZT wU L?c* 9~WiZD9"t`Շ4Rbu\2_!W8H.js:ЮTHmBd2cdw3cdw¯ڂ|eI= r:sZB)գ/Syh\PHI"G'$ ^{)x:*Q09\ BVuZD[g[ iK 43=(oNHl1ppP:W}38kHc(,gtG|0[ Z 1L&83c^Ό͙erd\;dq@Fv|~ムLAT=o|HCo||i$ }`ýs<Ͻ!}0Oaa{ey7X^ Www%`{XBoR&5}ך7*|i˅<>^MMD2Z4K]v%h'ߴJnZ|-k XRidMX[_O0&iO.%)@{eMrFu`&؀1U6\^g@`9dsHDN^-Tz=˚$=$1&t5I {IbBcM#dx%@]44R-dëoV׏Xo#K吴j<'Ľo5+]2$UpH^YDÈfo3jDIPD5yckAH\Xn:l̟N Ov I@: ZIr-a 9fI楲(+_Q,X4nEhŊbZŢ9T*&)F7'&4)F7'&t(E5ß;EpQa9NAXKwc% s!わ<߈ ~@V8. pq\7N).i^bd{ v}X>nx> P\9!1|>B'!Latq]ܻM\໤߻޻/{˥wu-.޵%sq{gdq=&.]ҧ]R]Ҧ]Rץ'{\zOLTo֒H#ĥKKګKʫK⪫w\zDZK8֒Z2վ~Z|QtuuxY喖&K/oGz[ō5g^#{M3#%P7C:K]׫3AJ楠m)Yg$%i%gJ v~+ b*fAt)*Ʒ p\_K d.A2g R1)wUzV3dz=+([@f bFgL^ Z3YA3^͊ aЫYA8~E.Fd1 WĄ_4;;W7cLfǂ&]°8Č^ibF?7E1 0@bh19o .~p3N<:}v/wWuYf_C -Ъ[y5çˡi7U ,;zb24"E"aB# G ʳc ,5T5k+B }h`kZFK;DniA|cIWi4>$[i}{2  sQx堁 29 Gćor_PAG}^E??_ՁD\ۙ^6P=7:t" C#Bѷ%H4Lia;v9[N_ff*q?R>c7`:?:Zl1yznWvYUXP5B4\1 Rj [Ld(3Rߐ ҹ2{z(|(!5-Ô pYr&K8nޝh\zZj4KQZ-|bqTZR6bq+γ&rX뷌ÄN6ӞEh9{|u^ PRB36r Ƕf"Ѳ 4DanM`dۺ>ߚ샭!ʈyXF/*p|Ra 9rFo:gj̇SGH8{쪚+ ۧtzeHi3Cdw¯ڂ|eəT)Aondo4;Q <.hI3hj;KPc8eͳZ NrZx9d9|_˦ѭїXR(7FNN-1r\)N%SQjmP\˛ATA"ч x`idy fNHg\}_V$B]2dy>YI*C"$$ۡu8Y7 ~uC!{!s}0g>2+b Ų!jX-Y ew.s1n/wJjJO&4]iޕnJS|ZW>ʏ;($ֵP1t>J{~jiה2-DO"(\x8M(C25Z/r?z' CmpY1$jK\%J5)]f}&o-Ӕ3T/\$(*T̈́;9P:wTEvQ:Ogӂ0ŋ -xLݧҸUP`:ef{`Gʺ0`tƪ[!DhR!\'U 4x8 mjk `tOrhZ.,41|,[J|9K H-c.VFZyrTw"xti؝=cg@7FG9f 1UdVl-[ Qn5&`;heZ;oe_TM L8l($!X[K=f}sMER(Cy]UL/@uв9i ^0ĖC ZНktgyo L<~S;tXњH&!u I[-7[xnԍV친gץmA&\xt{/v_8ȗr̠EZ}C m?F.sm1W879e@*v:,LRv (u 5F5Fb7sX^\dvv]bAD강c.((f5à4F]ry܀5llkuN/tH%M@iKsY>ظulsJ0ڱ'XX˲$=|Yu{v%`IRK${AX&}FM ?|Q3ߨtÃJ)s2%3Zb>~^ -M\2,7u[ltǾamޗ[E|7 h- m%޴SL{Q}]ym\"|.愇ّs{TܝKeٶ+Ļ;2z2 Fzu[U6;xUD,lҮFq?zɫ^Ax/k=$+&k&(kK֋wZbz+iO(O(O(O)uB`=muO;-~hyQK# .UV9!ŠY麕!"c]DS:rpJ* 4*]o֏[5Wv`/zK}i͆ zGu'y}uI&jT qBgwl'dEś)0v`⃘[X5됎G9 wx@hNaᐼr/`gՈ^[pւ ]v$.}D,7AAE6O'b :ױBwqFYeXTjk9$1F!zi|;囝vKr(KeQ,WX4/dEh݊bŢ9*EsT LSnhOLhRnOLPjЇ?WwD£D;Xs,Fcs 1^jȹm#O7"q.2U. ~\8.jSK`X .^]d.}V믏6lC%"ENq 8I>w)]k\u.)...i+޵r]j.k]KKwk\\=YD{OKiiiuibl5ޓ%%{d.}?k@86qG,q;dz{DZe/Vz!_p]?lDK+ܥ9J4c5$oe;Z;I0uxugPH@I12^H.)2S%=eM )Ĕd1g<:$@IGo'bcIAɉbdΥ&^vbEv)q \cS!P>Ɵ\CAK6z[t6k(J]Xd6XЛ#A"#{h9/1FOo%z>[_լa&ӫٙLff N uULD鵙4ӝ ƝuZC3WC3)LT:;7MsST:47;&9xPX…,z VpڻΊ<:}T,wWu+/{ !|φhU-ٚaд ѵ ؾ,V l_@PQk`v~]XZE{[ӂЏ5Z!o^aiA|cIWi4>$[i}{2  sQx堁 29 Gćor_PAG}ޫVE~>ޣD\ۙG!FͰ?Ȼ CPsjwzaz;-8b|0 ]f?0m7 t<Dz@\zk  z߬noJk}R I!sNp4"߮<f$U-۾L{elv 4a^8yxi>08KPcȉc>a =GF5ʙk̦ga6=-Mjb 4pgtiMQ-gW1%D5`{$I񹇒4= ,I%Kb|&zk'E +a^ʿH6b;/ޓiH״AB&=ѭ@/t'_~:<_m+f&A0v0v( sy6LsV*tN!ʈA 8g8`H*@]N$콠/`g_n=4DqA\Dr}D w{9 3t~uG23\<\ :6n3Fu lbw;7"f7Ĕ[p$ 1-B 0FEPh o~_o`]9˄BXnT:NAgGkoΣPU~]K}7W_n/PxsgÌ/qEMϗMݢ0Q0{ !BE~g/~}5c;3>%EȐxO^y>>'s?ظ]oYσSzꋌ9y" upӓhѰ%MV/Moq‰ Cd0Fa.^2}HYl``TKhہ@=X`fgFܸN pmǫ7{SkKʤ6TF.9j PhL_Wr`;8cX"HXgFl4{6O2Q 9ƭCyF4+mvAv 闚EN#_?oVWjaBhxG\g@H#p:϶a}e,r|RA׋۫/B/<8䬩,|} wQy?_bG3UZﳶb$U5ﳶbU~__NCc}ڒGI̤$0vp6 j,9 'lleFf3#sؖit,U[6fي{6f1-QWD9N:f&MB\~>I#P !8h IArSH]P=ۦ b79\y_.FH-pXA"6]Eg!m m@'h492`$7^QF=+4.‘jod/Qbc:K`_x%:_c Uy_d195cf*-]eUZ{wdUiQUE}(VUUZԇJUi }*S M*S *S 卐|PĮ 7F`qm~Z.p:]'u7"]P @.ru7V Z!uxļ  l*Tpy%PZBct I6B fibmZ%w޻g'wmZsuѦ5]mZ3jӚW['dy--:]ħ].i\-Y.ڒ-Y2]^m29;~$ÑWm8%{u]g.m8ruц#]m82jÑyWN+=Xw=W(Xz)"$,Gb9T ]-[죷BSL\l;'TL 0Qu8GũJ{J-fLh&v 1< 9by9S|^iEYY$|,pWInUrWIE*DfpPEb7Fi6T=gfbQy紊]wD4ۉ#5؉j Nj:Ӕ0P XfpU45ͮ g3cfԸJ&îNg5p>ʿ,i糉pPYgYCJshYΒpiٹiuvnZ1rs h"zW-MV[n-u 7Buit޿xxd:ͿX.Oiy7Y.Q_ B7BySo,ibpƬ+lzhl=߉Soot7 >r΋6]J8 |;dƉo33>S2x5C6ˬhKE_2Du5R)N4M~+:bEb^G|JO$??C q%H3>4q]uGm*~.g'>(Ax-=|(uwxql6n*\Nc Gto)?tXPI{Xq@O A|XDҿwa:Du2Cl j`V"Mȡq,/‹`ӟ/;ޣE8aa03F=M//C~M#W֧AĀpS$mkH7X&R5v?ɧИﰝLl,M$r}xy#|Bc=H '^(V塼[Ar+V] ]1_> :^:n R:/osN B+H޴Z9ػZi@f(GqL!H''U.%>6[A.H:va/h 1"^Wi y]諦 _AH>=dޗE9F&j*\7`& *NޒޭS[@Z;ƋtJMwdȥqZht/=8^x( ]/?d'~`b Fba6ڱB)@dE&o3ö5cfЮ-ShLKfPZRk4N>"LV}?DckΉb$xcr:f@1F@cŭzAKAKAKI`G-uR@F-qrF1K1ZYzЗwX= ~},AFbȢ( AGxy|G0%=$MWB+Pio 1;CM&P-kCNс8t"PP`/t5zS*5~ %kD"p5[ MFSvQ-BKޥВw|7] -yMKJYhF93DrXgҊv!i-BZĻwOk"=Rٻڐ:jxˣ>G}.FWȲ×߾]~yU 煜ZP4>D-& KriF,u֌[UUCw@UU`PjI|s_nﮯyIG"yNrIn'_̿ǧu]FHʊU2C쥻㟿\jM0Ypi1NJuAB{]ȭ$9 鐁a ֆ:(xfhDPBwyG>6n_Kp[GD,9\c5 &dchkY}|e~z㰙"EJzWY*-YUZԇnUiQUE}hURUZpB{rBrB8+>xy#=*UH)b?.c* .i1mtG߈P wA.-uW [[.j\) l+TK+Pǻ&Cr BiY I)$9T=S45i]KK%zܵiEt]iTKԫMk2gg_mɞВ嵨dtvNĦ]"ӳsdhKdtz%T G^XKK%wEt]TKԫ G2e_a;`M(~V(Xz)"'C(a9!#KЍD.>?)_?VqXl>`zWTld(QL b5])v{Xf"' F9wY;h̎.EH3>P3KMf f-*)'j&2:~ss=~+Z&?=Rg~j;+,Fpbf'i~}p-|hUU")aj2,$BjX_D 3ihbM Esn[epb&biV034;S04kYL853*p:S2t6Tfjlư4b( >7Ui8ٹiuvnZVgٹiuhnv6sȋX"+$mϔ-&BS2x5C6ˬhKE_2Du5R)N4M~+:bEb^G|JnVJr??N q%H3p]uGm*~.g'>(Ax-=|Iwxql6n*^e//&Xx[Jk>Tz1ֹD&ccB~]<6Gi5[<&XD>,rh:*huC.J4z}|B"^;&S.{0AӣY1 SKMA#xX`0FF1 c4T4h@ xE#4 E#Ӛ1FemJo$?r0C- z)KA+2*pth U 9V4H ǖsƈDmtYfQ;1`djp@%4M 2M k#gE&@vgɽ.s_7UB.X_,pxIqrSxC}CH|5։Nn;/~sfw~u?a/BDGE$cڸl=-^n#{v>TDѬ"Xf>D!E\c EPh o~_o`]9sWt!-Z|k-vVd;7W_n/kPxsgÌ/qEMϗMݢ0Q0{ !"E~gk7Rzb@G8g5$7W# _-ky`JX}_ 0mg';Ѱ%MV/Moqd.?D( ŋXC)6@ FV++@ԃ 6o6޾hčPom=^nۉ t 72 :AN~Ӝƴu%4~gecl"QcFb?qD1* C䯘RRdڐ~W: !t7]_=U}*P}e\dcr:h,1E4Ɗ?k ~zV": )&1T-Ggpl}70 ༼7:]AU вH};b!t Nc]"c:yLG*p"ӪL {)U8D{i.lUS APխA\a%{]'Y Ci )(UMi&_[+NKUOcڼ#eš|WT95<6g3(ɵѫ*\eh-WPy -albX +06^]hl|vojv:`/lg.=o˟<( 6sH,MG2  [0y6vk-&^qd7'^g}AnhF NC NCkez$1aL#z.@혫kl##&wJ!H8$5N 'vPrD AL H.$^&v`>I Z V FDL23=F㩤O1Mw_D[,\]P?^T.'JǢ͍EoG?rA ; 346_ЉcA0۰?h6H/_Hv-< #]@7t)by>414× XVӐse1{I|H58C~~9abJ8X>64Ԛo-hmJh@=Pj8)%k@V .͡$\'wbg 3fsmg}҂eLy.[èu4 .{V],*1 cH{兑d(Ymb [v+ >B0g)!_\ڥ)AAC y/@dw%D_elؙMm6Q;)|U! Qx7{YЄ+{MgJrMt*%!ygV_g$=KOZ3A LvӐD2(k U@uK4 tn~}x'&f{Ӷ0 nLe֬A n6,͌YٸehY@\rg hn ڴVl[k+c+ˮT\nn5 ,2yٰd^f%zz&25MOԶIo4IRLM%}$~+j.c5~%PD9`*,-r>0,Cu5 #:Ls&PhfL:B)Cu9۩:Vrmx6u|u\C2T7]Ct2Y5 2C>xcONz4?Ftq:h)JReϫ(WKQN:I,RV/w_Z tai~÷V !6:]EH{Zv!i-BZ仧wOkh UvOkb~>G}BvPeӅ/}ȵ"j 9' nwqjr~ø/׮\:3 +Wxy#=*UH)b?.c* .i1mtG߈P wA.-uW [[.j\) l+TK+Pǻ&CK[H,q$m*)@ӚڴӥK%~wNڴMk.ڴf*%զ5SdOhZT[utOD]b.ٹT[\]%KE[LeDڒe*svH#pӥK%yuN]p G.pd*%Ն#S󲯰Vz&_zyxuw+[Z~Z,jrOB R-t#OK3ƅ{=8-!E,CbbD/ݎr0TGLcblj^t>jO\j&1/', ӲH 9Yh/T1/jU)Q)T+)Ti&vZJH3w{l1 Ef)" E6Sp:S3o8$x˧ό"/f -級liM8QlU:Йlf t6Sf]e!f:S:Sc l6UfVW̒3SufP3άҙU:$MSjp>ScY橦fg7 MeKɦc㸬"_".hXqYE;rH3R }D\VQS&.h&)M >Sp>3?]%4ȬMUhpPm U7i&hTYgZ$〉4ܔҬCs쟾҉s?o\Fky8(3rTV͒&\-1~%q\}wc&By 6M[KA&AGnyqW[Cg@7 i'N hDLL R:,.ixZp}Ha8uР61*Fć輟/u.{ l)3y*'ܹ^>kp 1X*}Ԇb QK/xv4<f+]n>v|aC%cOd2=A:/aIޅslqa V+*{mZ8J4"ơV7{QdKLJ~!IkNfR-aD2쓗2Z JM J J1RRhbS@*i*95S1T06b1($^b{;''|ČC2pcJ[1tB&CSC$+5aΤ1 ')a K!4 CSM%CiZ#KplXjڰCֆeMhc49 ?>a;nD $ZmelA= ݿS2b~GM31fF`H*!+^P^ H/H!8ߠ~/"9xuӻ[΋ߜ8vws)y_..ް!oW3 ?_^l{PE`r[j" 1-B 0FEPh o~_o`]9ˁBMoT:/ jvL U;݅sz u?gߟ~6qO^d|-  1oz~ kG IG=1#)! |}}N yԱq ߲9 ځYs4Dn6OOVoGR\4Zl4% '&%2 Cpb/֐C#mdD`ZRDC7J4}v(om=^n] G_[zU&R5v?ɿPoBc{i>D(:W7GC5İ☉b1nUʻ5$7_1oڥ)е!s㯠u@C"cn~zTVz N<BGGǐF㵔fc,Ef": ) _'Pm4Yrm{ ;te(`8 /d)M PZRk4N>"6Z'Th.5$P\;I:j 04ljt`Le;0D'1DylR Mj#feiT CMw_D'\ \]P?\.j-#!J^v#gJ@dϴKD|B'n< 6Aۜk"!N~Aėd&j+wa!e #$"@cvN$F%T/W)BIyn`C:& /L mc<*7N=-.V8%8,>6lڷm [i\;|0HP 'Dx\QSPmti%ٝ= t;1 i;,cJSd]5EcqJ .{ɆYz(1 cH{兑d(o=42l f*R3⢔_/onɤw :3SȌvߜEclfc ];}S({БI`Tz\`:z]&]/]r_?QV %{#J7}cJ:ɭy'7w_xXۥ2b3v7tYLLɭ2k'"Ԗқr=].59N'hZumk&5R"p ml&xlv4f¶f%Pv{;<7S&eluWJis;>Tww?$@@bM٬yCId -Y7(vKѻr.tUy_2E66܋ܙbݳ$ֵYj-BZwOkR"$=EH{ZOߥֳw!u~>G}\ eӅ/}ȵ"◎ 9'(hs-ZLygҌ.} ĴftV;"PKZkrwxw}i<ʥ;/^]wc?2tg5O.to^Иo:KwǿTv?pժ` n0j:,]?FYo[;ٍs!WC`P |1vpX8"7Ss hƁFQ%t?=pcw7`&W0!ՉX S 9 ^ 8DW`hkY.kִ9Y8l檈kQo!ҢUVEJzGV[UZԇbUiQZUE}TЧ25Ф25С25ʠ><^9G Ecq k  7KZ.p:]'u7"]P @.ru7V Z!uxļ  l*TpyR(-K\!1|:$q g3дu6tw߻D]b6hӚ6tziT-ZՖl.].iشKdzv.Ֆ,Wmuі,S.Qdʜ}?ȫ6t}uD^]⮳S6hÑ6tzT+lo^?^ 喖K/Z%,1YjܟsP~RH5+4iy0ĎvdzBĎgݍY. BApo;q&W&AGnoXySo.%nm݋Y-cah)IA!{xC[eV@ޥ" Xx/N)TQ&?FEшOe"tt/#M>%B%'$~:;Kg|hWuGm*~.g'>(Ax-=| K/rql6n*BcKvcJk>Tz1ֹD&ccB~]<6Gi5[<&XD>,rhrCkn!h"I|a* Ti\RRSKYYXYYTYY±a chDuMLunnÁbZ3uO s:U7@ cPcvNs/AB іbM pq008tLcSJwhL'dř`d2a4'ilԱplcCdcCk0T\Zn,CuĚYޘ!F#i<(gAO8 pX@-gR&-ʹmѼO ̓SeMF>xRT)CTdu799ҚFl#>G=Qޅzs|ɑٙƉV`$7WwdG>B!i[X@u58/oޱN B+ݴZ9ػZi@fpH'U.%r>6[0h]qY2gR*as^# dllX>5srko eo=_<:;ib̂P cPC:$ㆽKU8"nаJb3f}w4#4A 4<jtwZ([)-o _[jFvirˬޔ`>i6\e.}fYjfu%pfF[q5x}N8応V4ki5kfbJƴx.(f#Th[T_`\x^q>A֊MCeL\8Rapj8 ,$nFaq6,,4άdxll<H+dYto.]_x0΋kO ۆuO.to^И8Kws3j8XZ Ɠ/{x wAn.DMnaB%6:4c5 r @pZּ/]׬isqUעBREJzW*-CŪҢ>JP*-8Oejt=9Iejt?9CejA|xr *b1wu1RAn_q]6u#OtoDӅN:][toӅNfBvy*%U]!r-PZBct I6B fibmZ%w޻g'wmZsuѦ5]mZ3jӚW['dy--:]ħ].i\-Y.ڒ-Y2]^m29;~$ÑWm8%{u]g.m8ruц#]m82jÑyWN+=X/p--?-^J} 9JXcR-t# OU 'vpZL1YP1c?fbG 5J;]H;zpD1#QLT?^-L}">z_X "C~)t)Ԍ:JƫjΫS5Kjǚ,D7Of] ɇjL2UP|yB-tbV xQ&v<ݐ=bbǾ1春&`a1PdZiVMopLȘqfy0,NfW̄T83E糙/nU:LQgpNgS5`(a) N4"ͬ>κt|nҬsܴ:47;bZS?E6ZL-t [oqZ,so.Y>}/ˇӷ|Z:C{nwhz>0{~/vUF>~p%MZc{Vݘ1P^Mo;q&Q$h }+o-ščM{ћ˴߆ g4f}d&j ɇ )olYz4<`-d8>j0S:hPEQE#WtO?:ҽ6\$~:;Kg|$NoWuGm*~.g'>(Ax-=|~wxql6n*^e//&Xx[Jk>Tz1ֹD&ccB~]<6Gi5[<&XD>,rh:*huC.Jz}|B隴vem4 R E35 Ti\RR8򥨬dxX0F1ԍc4T7Rg^;M\mIҗē[y2߲pӮ rVw QF a F*wQ轠/f_n=KqAc5։Nn;/~sZ[O~xd?C:6n'D|_^l{0XE q[Qnr$ZRrL!ү#eάW(&bA%"D 6~"2^ ŋX uRTd#c"ltZ\QKKhA֌ٵ 6o6Nzv@XnP쓍ؕ}x򖙻ZZ{tj?`aBY87]BKT-d %W7'4 kx|i(U%Y}4+&GƜ-_>*QM݀ q_y>fB#KZx 䉋.tR_mʔPpRtk= )32k'C [ߍ"9 ;1|]qy}L '>V΃/.8k ,BDoA1Gzs_]"sz:p0ZЏH=4~DNc {)pXW D{ g.lW"Ь{1y>3 ΀,*x >,?kZcLl1g"m0wkYQ{,)Ugxn40ܸ{_ۇ-ݍӨu-#`/@1Ňͮo˟F4Z.B/0C0.&rk [F -C$F !UyYʲvhdSmh; ІŇ퀫k^@:pHZɡpb9XA2Sff5!ɔD:vP!,dt-ԿِQ6miFDg3جfh.}^Lpt' ˇۋ/"&+'X/{mf r(!EoG?PtP ݎvY6(l{ 8 \:` 9 E8B~ADV:&j+wO",Ӕee'bybPOo;."jr劑*ucmq¹ `'-K/Hoqu:"V8 "CVm[kڪaha0ڸ"=%FޅH ҬrpWk"ݵ[ind,pz,-UF {&BQ԰Bf|g's!kMmr+/A.@P; fD,XE} O.e.ȸѰPH5`70\b4^Y~H_ȚReZ4Ӕ9-D3]k%/4auNOV{pO7qC"%'^eGU A"d `yB` S 4@jodS1lvYvUġUe X5ݳ*Ms[5޹jwՓJ- В'+/Vژ&K7hkkawwȚKV?ve=XSO* όi:'gȧ kJSjS/l҆E]|P֤ygTdFNZtߝ,*u9Q3[;):-;s:R/:}N ӦN@?OZr^%RL4e'S s)VO]2N&dmBkln2;:w9EN&'’l@ѝOfl];L໠T;L vCpmVM`A;GJvH(Rۇ h>.6}@ldO}9nI0Ļ:.?Nkϡ?AN4CQ+? 29B%]yu]=5낶tnXOб.c=}vCz:톎 @;Cz%Jcxk3Mas.}XcV98}cX"Hۼ{/5?OGFrM7\rY7kGQ|ėk5Gi&y6qu7/C;.&=}݅nߩL{JY`j49">-}i?'3c.+6gk'{,"=8$58$A5o )r*D F=v6#x t7 7ӌOmu`B3 qI"*~ 0~XV-R&˄8e,e\SNY&+v2YSɊLVe2W'-LČ/sp3sBß7!NJ<v5a!j+9).rrڒ -.{ڒ-.zڒvN[r>iK];mu{f'f3XvEjwN\b&{x'V&w)rOEvţ_&&m/Yy*Kfʒhm).4EհbgIYKvʒdmg-ZY!wcՆdm,Y:jֆCG(=Bb¯\?^rrҝiNXs1,"_pPrh]?yͤ4ו2D|z}e5xgհ'Sw:SQ0'ӣc=ÓQөyA<ё)yK`mN/`z6yhj5'^&bUpUq) )2UOIutB&wD]SwJuη`ctf{3=ݴ5!,vaBXl:: 'av:= ,6NnЇ =F'l{pvOvB)̗S/ԣ#|:2_#|6_:w,SoӁ.^Ngs@0O yLO8> kyHdM1N.CۀN/ݘXՠX dޞpvcڂB')Tz1ֶD&ccB~={ϡMQ'-3:^Q1C]Q"Bӧz>{q)TRTd 8h礥qӇ=O>4f3^DC?b\ݑ|$L%fo 46g#IvtlVY[`U?MUeHV+/ WhwTv*[ا9%ib~bb]~J]B ]t J/*[t-t[x}uׁk^׼%^ fdZi^׼u^{uA Ee<2uH/*zQы tE4Nv^Tˢ#P:#P>r(5k^׼)^KGRuu^z N/AEeb2׋^T,]/*zQыJDѡt1]VA96fU"lɅH+C&ZUPj \ÍPWהnW[4SG&dF9aTɾ8HX|2yĠ8AOM>jqk7Qk >+}6ɤGR-5EUdYUq2jbw5|1)C*SC -R3g3 OQ+նuF@s2 YQf` {Q LuBLצS S"1ej9c=c釖81NlAU|Bm6,T158q(~Qq% r<%YUqB4-DV)j5Veo ?$S'Yt:M[4j:͖pjo#6 }"Fd14 gx:0FdxhP51>##K5Ĥ]CjP5lJѐ*ߦo$9kPgs0 |}4/Pi -O[{>- `O&>s\Įߌ-7cgF-U뫊vstLcJzW&S>Hl>HG m շϋXaDXVN K ӏ" HܢH FyWi@EuEW'Qi3El:IL@ }hKFMʉ/r#7lEE*n$ & Y8es8gi&`Z`Z`Z8ii͘ւ0-EQ3}`Z8i)uoƴ#Z8iiLKa1iiCvX0U0-MBՎ$>!6-E+NX ddkwQi.jwQ0q.jwQ1E.jw&E.]Fv!]va]v!c^]"L\]<8ʗa.jw"E.jw&E.jw2浻E.ĵӸh^dE.BE.ĵE.BƼvEvx"wqJG]HkwQ]kwQ]y.jwQ0q.jw=w5EfxNdVQr 'E2f54dvU!kZX1i̤HCEZC8ĈZF !"MyH4qC;]8;j8CEI8$&Gl~ׯH(CrqH`*qiĈCx34qR!" "MCRfL qi&$0G([ ]&aZ aڪqiEMȕU.ND]HkwQ]kwQ]y.jwQ0q.jwEwř9.R6CDKml" _=`zQ" \xw)ҀI1fwVwCtHS.R!"M`Pqi#&0b(qi#"qi$ ICbrqVH(CrqH`Q `Z`Z8ii͘.LK4qH`"aZJݛ1-]yEl6w&1g):-w&J ]n4 AEJ!:a.f%QbwgOK.a%4HG&GdER796ٛՕߛ4gpg3os7d^ k7́dks iRSR̾[f[wS3'`5e"R̖ю(>o6.je z*KV#eg=&:Aj'zLj#P>*)[jԛ"a2z&|2IIiI2L>!@Y'MYU-a5ˤ#&Kv.-b2 ()td\ZfΥeljRiH̒K,̒K_jͥe\Z&Rf.-hK̢K,̢9,dL*IRyGLQ.-uKpj.-sKˤ[*㈌l|#bKYH6ʥeri\#ITX&rL*g4-fD},Yfy%Z.Ȕ 䒌HB.Ɉh䒌fYӝ0j|O ]@jP.v ]@.v;NI+kP.v ]@AijP ͵ ]@vY]@jP.v ]@24.v -p9_ET`%'4Xd_xdNdɸ0ᲕwDp}}0¨-s4yZ!" XyM:e&"M^98MDyH\<5"-uRǙɸ4"-uj$:4HC. q=RG>fҒI8i0CfrAs tmUZ*L"8[*rwi㻲u tlUZ&afc NiDz 0Z];%IsjJXt>H¬Υ'%qhfnJ˜:|[H%BMqqç .ceD2~ C!X$`7$i&8wԔaQ~ʢ UNQ+"Hә2\Ca3L'ie 1P!cc1G8CEA, i!.HyG).'&Z2׳HKz,))?Ғrp:UEh`׹6U{ib׺ߛ؏]!@ߕ ;wJ#|WbG#wJC;w%v+#|G[cf$Ն ;wJ#|WbG{֪='_blFy/5(l"Q95~Cb ȼ @bHX k ` $8yp5JB¤&[)  28fM{8 ߤ1Zqh)v2HQ[rd A{ Z:@_X/,yO uuA@ 6dmM+i5fYhh7 Yd! *zLAaTppR:v;:v<[xG<[‘lkLk0 Qԣ npˢ ;:v<]Pllt n܅AJ.+q%( LEڄ(E]Լ=.v-oZZQ98B]sj㚫Ur6-FPtVjS~;3q 43d?Oo]d7ito Rz74/ 2~_ mAƯwk>b;0bŘ1c.7Jc01*|`4>0ZmhfFkاuv|`>;>0Z`|K/Զ*ab4%5V6tuy2=vV6N$"۽pclZf _A?j<)b/~(t*f3]n$oAGd:/_S0G΅44&ASn| Sp}B7i2? Bd{3MA @@鲇lOje%bNª.d{ 2l!OĚd)A4&{:,@Fu3! ;ja<94 3 R2h !hhB>;Fd5CɠQr@5F>:)+4 .F6FAAg;1]Ae?7Xprc˫4} !C A8q r}"Q=y0"XoD^>Lշio,afWL忾Gr=( -( ~.)X8o%^0X.d^I&M6hVI^HE*N%\EW jĂ4 (kLt^Hx`#za? emc3]͋~!^Z$3V$[_V k.Fyͯ//-S@V/Ѻ])5wox]p~'9F&`&>>\|i3U$^>Ȱ-|~ϝ=/d>fd̵'$8[OAjnśzFXy$BC`)8u诽U2Hw`*n{ Am8dW0E92'!wh.n*˝," ,DBG O8+% &Wo,7iS:^)i/&iWm+tKdz1u{H ?i,gLQY/W7w]_<4@F+hNG#?,uCPfV4?ș+-gXQ#5.A&hVޭ( =|έ~h8Gd )38s/>}yg k@$&Frۧ6/2+ EQ]6t4˱iųG?g5)YއmA {m5!LC%dDv=%n#'ͳ˛]~t+?6s&[NmSW1-!=_"XDe^O~$N[:M' n¤; n64J;5'>?W_jAH^FoajipY!gK[~]YdyVX6u,=YNݽ5 ˌ }e;YW߽1y(Ik~NNPXx}.o> _a](?fVm[rYQV@r61MK`{[(`uFP`LrJ@`ˢ? ؏%uqdbu} 〫/J*[Bdͩ)NgEA:K,xw:c<5Bl2m+mORo.4ig'1f] љ3UYb]\f[vm ̲DfGfkSf3RJۛD^)'_W/%NoR=-(7emy/UT:n (?Gkizp*)(hA֡LuдK-U8c)ooL X`Ó3똲*( EZcFQuc35aĚɔP/i>؛zUG0}16h/q,n.;m塪1 ,"3_wM;Z*MÅ1aD_dgu [a0o&[ߤ!HTG XwciEw׷7W[%|dnLUJͪO6ې %Lr.m*@@:LtW^F2P?Av攊TV&:cF&;wt֜ѭol6p1o9H}sߠo鱂0:zˣ9Ct Jy?A)ӎ(e\|7Yr 1?BӸy2һ{r ;^3 "):a*_Y(]+\͛[E'k"SqiY|S< 6t<#A4~T2KJՓB)& y DcB|'ih羓T: eo?VOM`e`ЪJ3hHV.&d+LR(Wchʢ檢5 ĝՒڮkU%u/JT,QNFT\'[`'fXlvb] Zz.jW|Ww^M~?ExXBn\Ba^^`Q@/#skE]XϰX/ MH}{gSz61uxL:wϦw:w&vޝ3-Sz~֜ݳINjuSw`X t-M&ށi;0w;0?iZT6;0x]ށr*yxFQ,ށQhq'<;0`JJM~|z|=Sauj?d{ eGO} & ) A"!5-M g)]VDG˯2}VawsFo?d JCTz 8T vqc&d')#Jc$!TDXq-}&+ErW6@^Ave5Z-تOgiToryCނ"I2?C׋1~a.ؖiS!lSIMўk6E[!%lSPMQl6E !&m-<04hoዄ A=7eSU"jɾe5m{n-_k^D:^LPdؖ°-CIa[2ö [m:e nؖa[$o΋V7v~ } OJu} aTQEI^{.%e;=EUؿ&aiS\تjX5;΃-kM5llHDӷ]Uw SuhSL'Cb(qMՙ:i m>vT7 ZٓvvAuuvC$ZSn'ÛcNʛ4K̪O:ZtC+nc+aYtKקM]ݛJL:_s:J~]/5_z{d8s@M0ϱN=ؠv !8}?A) .[ˣ'SkA;џ?0tTgA{ħП">EzGGǧdBw<F|)S'Oc1%>5dzjL85kmi8#_<kN;_8's`o\]C͋[u&UQW":֙pE.vgn f mSn GZXlȬNcPD~̛N3n#Q6aiM[gw]4@؝nʻMy7LZ m&F'' ަ]۸uvl)TXV]]4.ص]%amq'g ަ]4xfo+r6#rW2D+#rG];"wD5nOOA]m#rGĎ;"w%vDא"rG6d#rWbG;"wDkȝLl#rW2D+#rG];"wDuPoڐ!rG];"wDJ#r!ٔaDՆ ;"wDJ#rWbG{ ;̟"rG6d#rWbG;"wDk5i D]m#rGĎ;"w%vDבK]"wDjC;"w%vD+#rG]&`ˡv>7/ֵ/8ʙf`MN'nbniNOpOEvJ;?q)@369#rW2D+#rG];"wD5) rG6d#rWbG;"wDk5C]i#rGĎ;"w%vDבK8"wDjC;"w%vD+#rGȽܭ13"wDjC;"w%vD+#rG]k:^ n2ӅM7iP]nN ilѳ 걛gPTbfV}(&v>3 ]˽sKFC֧6`4xB v2..مLaf0ƎI.`vA ?bvGIx\;"wvD+#rG]6} *1|̤=E> };(5Gz>ʲ^)x6} "A۰iT_$dbc3C7&KfSU kRׁf};*խQ˞cwnXqˎxn͎ڭ㹭6;MZ<-㹭6֘NMDՆ ;"wDJ#rWbG{ϨOA]m#rGĎ;"w%vDאĢ;"w!C;"wDܕ#rQg_ۅ?]kHWiL|{w}pu{SӐK׋ˇ˻:E>I,eȯ{04xz ؼicbɆ V`!3V$%*5(}^p4r[h~}qO~imz ȉN 1wҙkl"/ A*jŗ 1s=a/2l%_sG x(fg)h\o #xSoר+y3Dt"q,C [.V-}/!mT[ 9'v.wkN}~2B}t]V`')AN3ǖf+{jP~{0mUeӝwkwD ePa`wwc(KQpn<4|w]|]59y!Aa](?fVm[nYQV@r61ͩK`{[$`uGFH`LrB8` K? ؏%uqdbu} 〫/J*[>dͩ)NgEA:K,xw:c<5Bl2 C_Ɠ [j9i>ىfiYt6{CtlLmUXٖ1?c?0>9Ѡ԰ Ҩc*.aI66KFTp !MtpG6K+"t$V r ~d禒bRXd $_M$ BQ3"zvD;Ջ 6<9)"" RD8/4hţʽ[xQ㕠4SP,, ս.Zd$&]Gl[}$fjÈ51)#Ҷjvr٪uF_>rBԸt7 6\LPU{{bn Y/ۦ-U˜lg/3K:v_H0WuY rނioҐLB鈅y{G4ƀ cϋۛuM2ZIM&@fUW'mv&9\ dip {-[)/uR ^H&  VS*RPUd*#˷` Ω jO|_C$E2OMZ4B)Mɟ}ϵ\dӪt|θf/A* KJnhIVG+nH%r'0t@'' |}}WYʵX37>!H=_c?!>x *|yv6d 7Sos}ө'\׷~rp+Q)`C؆lta?2Ui i(k(J6/%gzUh)v=RȪSUњvq{dZ)xD4xAZCSJ^(V7-/fj^,P6=/r^z^zs^^ʾ*}M~?\RġuA+_υ(rriPlrn)Y7XYfVdaڏUV3ӯYaɚ,YÒ΂d KtDb’`ڛ۫?\ Պh."RaJE 'p"ǫ<O$,O6o "&!G\sU2DIG)ne~wc$]-ӦC ٦h6d=אmPC)J ٦(6dِm^C)L` [x"aiF @6zDotu˦DԒ}ijc~![ּPst hɰ-Cمa[ö efmJ2td7lAܰ-Ckö  IЉnx4pGd7nb6^K{2+ϴ~Wm]'N扇 a[Fw̖eymaޑ)aF k8Kl'Yoq1[Fu̖giYGnYEse:lqFs#4*$ULٽ˻ۛZ*][Sc RB:Sٛ>͊$~AFDEKˉ1@<%׭@' oyދ?CG}!ϯ/R5?b=~O2\nwoO0fϹ}ΤVd#@`Uf$.8{8kA=ףvAIb2Xrv  D/e8_rh(I.PfEWA"]k!'W="I k]$vѻH|?K-dHcEOɱvp3#( M23'&O5,FFsAf.ä xӃe]_e=PbmGi/'fK/vOGa`DIfqK* Z7I/9;e!ܧ7L=UZt;5lMNS/M]:3=uǶ{nec)LW_-nI;ӠB:; gwͱ f'Mq%Fnfէ uS-vU`7tӕ0,:%DiE%XY/չURK vWKuv%/_2L}TAS4V*3~A0>Qt' F9d-Dѓ%x5QGOڏRdeot4>wG=i?ZM(p#?xIQ昦oGkRiҌ*;ZujNuk'V6qͩbm[N\k|b"2m"μ̻e',ףj߉UQW" ֙Dޛvgnf mSn ⦧ZXlȬNcƀD~̛N3nʃO6ai1ܯ>YƝhbW4M*vn'mS .n.iyIibW6n]e7;:t>UUgWq vcWQ4x:lIibW6 *ަǴ DՆ ;"wDJ#rWbG{ S#rW2D+#rG];"wD5>aU "wDܕ#rGĎ;"r'7Dܕ ;"wDJ#rWbG{;ԛ#rG6d#rWbG;"wDk}6a;"w!C;"wDܕ#rG^C "wDܕ#rGĎ;"rwM#rW2D+#rG];"wD9rť=GFП5iO020vE]ގcmKz BlXϻa1UL=]w3!K*ngm9LbN5z{iGc^Ϥk^OU\%c/Ne ںVq\J"KB5Zٸi؍2Ulm1$9q.>[ 纺e6[dش6CԧoZw:>qrǂԡ!=XX}XFXPOXG369#rW2D+#rG];"wD5) rG6d#rWbG;"wDk5C]i#rGĎ;"w%vDבK8"wDjC;"w%vD+#rGȽܭ13"wDjC;"w%vD+#rGȽk:޼ 2M7iP]nN iLѳ 걛gTbfV}(&v>3 n]˭sKF3֧6`4hìB v2{2KV>;S7f0Y5v*NZ*`V jUf 5Gn8 l.(02QQo]̐ 8 ;|6-(02p- E,fm4 li 4 9}`%Ht$M.4 y f'iŅF^831q&Z0 #4[xF@Duw F]w ©'b2Gwl /wt#`{ewt25._Դ.!xLdEf9B'Il%-8fx? ,[l|QIJ$`B#&[(xB%n  m ,`r5 ky(jhn5,_A%jXA a5,ԃzr_C.kT.[A!jh4 aT,)`èd0b 52nrh¯$fGv <M!nXꆥnDXqa[ KdX&abb[ K݄dXꖓa[ KK*K*KJ",u{pӷ`VaYuj`Y )2B2,2鴌z3RA,1)ԁ%bUć%b%b8%b%bX"V %b6à/P n0w`s7o/O,|x 񢩁!N!C<\_1hj !@ 1h55ok+$v#Ωv okv okW)֮mm!v ok |/֮z]x[ڔ=WTbx_TlX9-* }jbDxfq#N+bʜ0KMLpDp F`D_rgGeeRXȜj1ȁ9!"+8I rD,U&=(^)UD \r)  EKU[P--U[#\ \ .ʤ.U&epR*pRh:-#A8%5%\, Ԣy8ܲ ],"U0n[pdp:pw^fp% IyiZ.fZါ˙mp9328H˙fp9S2\4e˙z\̇s]ZpE|Dr)B3-Qqlzm!%Jh`T`\`dM9sUW6G#lVgcl)1```JN F۬vtLpst0f[wu3:pOX9\*S Vs\V)^Χ]p;Tg]pu>c&:wh6V sk2s΂cVrEqsT ϟpХU3u4P3 b,XN?-7Wbi0aDLKU)s76X7K{FR29r`¡%0 Ap~A2q6$`FpOG9@F4ɬ pgkU# p/J7ɤ=2 nT䂁E_PWz0#A0a#FR2鴜gLC8q 2387=WBF @0a? 0qm0a#F a`t5#Fˆ:#?xX8qhj Ψ!@8amb &0N0aˆ#N`ؔ3wC*)F|wCʸ|w X:ayj`N:aR=BuҘd&08La2q qHna;- 9C 9C' Ɯ! 1g8`e A(@P̏ e$F M u2#F `F0aˆ2#~\q =BZP B2 de yP4e A(@P Bweln2e i C(P2da-B2PNP B2}e,|3B2e4!A(P]@ &g~_2r42Q#(Vk"(.F5n-Qs+V7z{DC [.V-}/!mT[M 9z~r Ϛ&gHkD v4ܬC1lEFn&-jBUS BlgLv7 TEg?ypOs*-.ZdY($/EArPY/D43*9OپSF*ۏ-NQe6Q vz2M"4~yXc Dt"&Bqxx Vqx=y!7ۭi' Ue(Tw j%>KY`Pd+)nI,e tĢDtc@I(A˶D pl n[*\MFC?3ԧ߻I_zQm%U)$VS68TN%t*i)/ro_~W4g{`hNi4̊^RU6h~v.ԥ>[j>ejc=i26MI53HJAHj̲ ˰9qy/:](HK0^ v [`D-YIiIASMd^+:#Q L0*z>|-%0ye=I; n64J;5'>?W_j r"iRmp ٙK#sU,6KlE!La) ~'7搲0w2\a҇.˛kB.ul"4p{tJl۪eedSo 'pNBINLL] L0c?P_Ra8 3 ˃/JI*[dͩ)NgE1:K%<U^CƓL6Ox')ASs=}M؝ "IЙڪ,V..39ApHt4dƹ65h&9C)Țg.jr֢1t_:tK3NC;qtwt4/!!!!'mB:ˏF\kS[ ytpk+]·kR6kCꙵ#YAHP|yE- %W_`=2'yV=Im'6Uej%2@bƫU'q; K .zA#( \ S~=2#)/&f&=VM{j2 pmc=ǝbBZX v0n=)3KkүU$>6o "&!GϋpE"}Os&L[! Kb5F(L2m0Đm6iC)s ٦h 5dܐmjC)J ٦(5d֠'&m-|04hGF?\^lJD-ֽٗ>m;k 56M7^LPdؖ°-CIa[2ö [m:e nؖa[$o΋V7v~ -^D֋}"~r"JRѭ@!O{qgx3^~ދϏ:UC__7f~ry{ﳥe_#WaM]X:2Z%6{*Anbf q k %4Nfs9m|_U&-š mG}8MrȈowz7c<(״x,>o :^ 91LR(~^"ÏE2?py^n'EdC.*+h~Қ<;<'#( M2#GɆI9Tnbo4\?Tk2L '?=(Q%\Ga٥KIx|KW]J~)ޑw{g?'M4Ӗ(x\RY8jI - >fhD*X\`z1 AiG]䧱S-Y6ˇe'1;w^J⿲Oew9Ϻ8?b)Haƅ$:{ƶ@Q:k(XwruS'~}&i3lZ e&̬2& ]Mh ,XtX$vfT]. .؎( bJukh=e猊Ӳ'س.>oR_2G NaiQ~ R ToxjAcв+@)h55^ >nМ t> -Lmt>dBcR8DyQ'Uk4Yd.(4@PjiڟjD%a& `7z6# =!c'h7u[:QƮun`;E-YyeШ^ަ-ȨNGN̹wz.NqC*VcPqR:Mrt+LG%b~M>["f65Rh5ßQ遻]W½2Å]a?7 "|D#G>qr?tlXsƐ0YK!;z;2ө&] <\bEr82\r%L=v`JC3VSNe~;岋cr88̈S1iNpSn)WxX&'-i  ;6To9ݎ2V&25(NnKjē:Q#r/5|̅ZĜԽj\-u-1mcfgoj(j2&|/L۝$jfd忽rgn_rf_ZFrze[GV/K[u2gkeg7aEmʙSiUI9@:?o֝i(k\# FI}$ ^03$3qK Wadϒf6^kWI^DUb|e4.1 '/Ѹ+i9$x ?rŗ/atxo $>g_ۅ?]kH,[7{q4o~keɪ%ZyNB}Wxq.8XdyIWQWnno.4LB /7a~Em!x!/#e.m;"ߌl=-⢻aDo625wbq3.GRJ5Ni?koE ]$|>q2&Oq `sdN^h*˝,"I`Ȥaf!Q#O'}^ūx괩A[I4pǫH-Šւյ߽RCRp'?×Pɫ߮/o !F*hN"/,u3Wjϐ 4l`, Bh/k]=\^KS;PzN[տ9*q;KS?gp<9_|~Oɗ1d_~Esࣈ[:f9]xSLEJtmkP=[M, 2~GKKlS6r"4_/X@B a=c3?m%40y6C!^ɘgxůd, ^V2 g9K#QMM4[x:M' n4\x+}O:\\}ir yK麦-gOSn{f-mu Vd YaXbα/u[̸ Z(ۇ [kusHY6❄t剥qɯօ*cf?ٶefee$'ofVw(`}!$'&.@"@ Kn)0 'W_&g/T|Ⱦ/ScS(tkwqlsxj>ا%B_Ɠ [j|)i>ىfiNlxLmU3˚INJ) .oo.n>:dc^}8mKxTJ. qmÿT"voުo C~dGbRXd*$=_M$ BQ3zvD:Ջ 6<9)"" RD8/+ }=Ykl+AI1-gj-J]W,P٭>uc35aĚb-SFm>؛zUG0}06h/q,n.1m塪1 ,2_wM;Z*MÅ1aپD_d[Wu[,]ز0o&[ߤ!HTsG Xw[iEw׷7W[S%|dL•JͪN6Ӑm %Lr.mҪZbxE Ppx/a$KNP)YVy*2JoJ^Jˆ[n5DB'!S<#:R+ hL{2'V}km/Ķa٥D ǧ{'$kqA׷~rp+qBik~0+N>"V2D(M9!R1)"bbDVG-hdUtIhDZW`-IURPbEG$ !)"PwX3"(XQ9"E="J=R9"P/Rw¥&K.V)RPJԺJJB1ez\B&#d%cUҕÈ84PXi V`V J4Xi* + LoSi0fXi(+ 4* fұ@E&VHJrW\cf/44V`VJ>bn@N+4J4(F^i5ԩ"ir:MOPi4?W}Gv(b/r=Y^#OCG=< ay:4tiwQ=D===dMXHǑ]~|ub7)[uS=5?o(:w7^2>`Wזߦ- ͪgful 8 R@#ys,-s Z&~bjͷMlWvo:*Sz xإjIğz0*A]I* FQB\Fs2#)q$,nB6q-c9ǝ/,)bBZ &)9!M,OWnNgiT/Dhzr=o¤H9 $]-ӦD ٦h6dMאmPC) ٦(6d ِm2^C)` [x"aiF 3@6zDotuˮDԒ~ijld6~!{Pc{C-E˴ NmJ/ 2e(5;lPuؖ3a[Nm:_el`ONxn5po3>'p+AZ˗i^yۼlN$[J8bzNd'^Y/D֋}"~r"d1@£2noދw?CŞgHS58Cim|.-/Sv4?mz JKLh[b_FIV]%3AW_w%zn208ɓeAyl_F`qhkBG%^]$vWWp|3xM{ˢf+ k赐$.;]$wq~q\$A1?kdzӦ2`?OOa.=n1I9Tnbo4\?Tk2L '?=(Q%\c,Gq&zCǻREwl~fOTai-OQ鹤p(N}yOAZ}Z}#̈́ш#^UH9 5^u7S] Ӫ):PMMc_n7b`OGM%=Q6ا;1<;lYDط@|N+ht~P>*=5w/~a|9[l%=OBWӨc"?P*>{X AZ/I^ڦf/%4?zIk.~?)N}[yOI+QZg"Z:R"TS*lYᭌ2N1#ޤÄv3?L :FS1P+z1{1M^NAdVA0M:3fag/QM#[!)K|fkƧ`?2ƄI )-.hApƹ5c ″)? 8#))[l0@DpE1)-.%g 28qp 68sX3 q؉re)-[θa8a gN]ryX̥CjX2 Z8s9 ^H b8ssL g.wiB wfCX v8sY@؁rL L b8B6R@4Q!m#1EeRnȢL*-YHadQ&,ʤ݂EFeRnȢL*-F.q˅5%RWچU0(ȢL-F #R`dQ"EFeҶn1tQ"V (Iwk҂/x|Q"֤_>8V`LZO0JpxQV ථQ"m#mb#wOH.M8CbjsWoalUc[InKc[p'b c 7'ŔIY"Y#ń]P"pxR[L,6Y [Wv [B,l1`dQ%c).)#- #),v#6#E5SgcJTykc;k{v/,ZlȤx~RD7 ĒFh\heRQIWC R]%RZ0G65!J  !B?sZ8BcqFAL Jՙz0(bCk+T+T q F a Δ[uUUMAE^hHR&vC rQPOP¦´ A0PBc,!$20 Ƥ fg1h xP3c؁|3, ΅%xu[T[Ī}a/A(GKٔiRJ0a1 j(S4,n*QW0MB sCD vfT0X3A`j{ & I%J FM T`2D5D eJ0iL(l@,c(1ɀY RZ F(S VZ F(Q(x&[ުbjQE&uW@ `{ӂOm0t`[( :>Ćoj`)=] cU |SXJ"#!B%J")1s!AP!E㺚 B2e E; D(SZ7M"!BlBD&3!w8 B`SD#F#|}&[|CW81hυpbt—8)tD:M\!(A>F(Oi.%"̕o Ghnb F4ft( N(z'4@(A盹G UD NPA@O Jb]c GxIqݫ&(LVVUId%Φ F@ _^>z4T:k+/寂*|&|K(/GdQP^> GByh=|T^> G!Byh-| Q|T^>Z!G 壵dQy|T^>*/y|T^>*/G|T^>*/GQy|T^>*/Qy|T^>*/-H|T^>*/ݓGBy|T^>*/%GycH^>SG|R^>z壍QJy(R^>?QJy(R^>?Q.||t0?jţT8{a!Mɂ;R$%a1 -qmd=  k4%qN!HK`bАHKRҒi*gQ$`i*_Nq]m »6Rl`ƙMlzqHYiO ogWݦ+gTx/,d+mseD~}@ vY|-Ӫ`iC@۴ggc;Z69E;tKwKK {fď0 vJ<|*9LCin.Bv˜;>Y Ɂ8U?#' HQUMS'~3*{ΙIF1%:3Y5]?`hĦ2w3|50Jw2S˘ ,NPv0O2q3t$ґHG"t$ґHG,F:Y֒D:H#D:H#H}#,eF"t$ґHG"t$K󮑎]=#t‚L"(Ԅf/% kk |S |fSl ] d`i;rh8Qe1oг BYptFK^AGg| f:07Gϋ0`ς쏢`9euFAUIN}̣|z @r=ȎZ@r=\zP]Nl`<KDvFr%x%x% $晱>~ZKY~j2%\"RAC䧹D0t,t3Y VfN̜ieDN+3'UEfN̜`9Q2s7022*#22ZZ:~W$ӔwnI[-} yjAtw=ȝJWz󕞯|!{| %󕞯|+=wN9[0tM^+]cKX5t߻k|8yl(zHx5#xq|q};zۋnՏ0zqTO:5-zOӠ^aƷAUYӠ~ql* + :/Jc@=Xr̀zƥf@=Sg̀Y'JK!+D5ES,^^)5-&k68[fdP6'69P0Gs^,Z 1P6хzԩG@bPAG@=[ GpiQ)!kwׯ GgF=:d+z/mA:aGA_/(@jtSI}~HA* 1b~?YBK+n?Wu2$hPRM(EIF5+T2ɡQ::ʨjRʨFF5!JՔQ j F eT12UjreTSF5+2Ys2YQ׾ҰL֔aM8 )Út2YO(Ú kʰXR5y2)Ú2 ʰf]cdXʰ kVeXdXB'Ú55<\n/xeTSF5a:լQM.jʨf-jndTQMլɨ`PF5#\Ȩ&PF5eTB(u=':-IF`q)2)㚀%:׬'qMP5e\S,^) F4%hZ*m ϴ$}* ML+c3X~65p4Ap4 LLb`<%M[,Y“ 1Z1dx&E gx&C35xf0`<1xfha a&G0Y"{: QMf55,f!d"`\5Q`\Ӧk2fkMqM[kڊ`\Y<ฦE3&nqMd,}}I%Bp@lZ&G7i4Mj17i> q: ΌFg?U:v@__c v}}2z}}HgizaWߢ7Q[ӛT77QUY(!É a h Ne N&DNq2iˍ'j)N0':wЀӛJp&3%?4aM,%TNqb)eSQʦ>}8ё'81tptprC7́ӚLa3&o N,F9 uYR`@D FZ 5fav@sL0,@=L0*Rw*]M0*h F4`T@+t( 4 c4i]c33NC&`&`!`&04*#`\0#L#3Uk7Q @>aO9N,!',!',!' ! 0h $jfyX3,0`H}h  K 9YpCJ+'ʏ[< Oī,(|'f(mWTݪ-hu{z|lK< -$ 6~.ҧ= >?a\-Ig\x.`14W lo7R6\ebǜ䛟,E8s3eNj:'_&ktXm>O ,O%ȹ|ofߐ9r"Sy꿄~4oWןon/of'Clk>yM(a܁g?ߞ_]_g]]w/SG~M7uUC%S/L獷f>f!L`$C@-Lj ׏n)@6g{yP[z6m¶@n*TGm%=%Ky𪼺x{ss}gB3jlE<~ׯn>x&/7DUdfs3!Ll Ň ]{[T#-+eXpd"aUo *]$˵m魣nLI}R(Js#32?Lb(B_%2x:^| *BL?2ʘXR³#`2ObC%X0%FP%5rr^ J+W-B_iy'Nb*8PiS5젿4֓:iJ kWRǢ_$n1i,tev<8 Y+MICǼ&1v AiW`/+ީ-u5R*0RfqʬelVi;g^eoXy;)=q ~M6wUW LLM?i;8޼V_x~Z[g֑quzsͣM5>(YiF]鏅CF늲[Gf%A{f-,4S./޿~;ry;F<7HF BdB{ ~qDOڑy6ĎS1Je}jJI J 68C2q M#6Xhqɒc[k##Ű2c_n6]79S0^Xh, 7P :s͙v %Kf*:K0!g/%+0[dזCccGGbLUqꪶ`x )GI<`B|2':;Xmug3UQ3>S 7-Ӹ-2S\cP%2cS"3YPawZ!;T9Ry@v(8 w #5t2@F84d߁piU)ʷ=4{Xj֨aQOf9&1d?_|0bXܶKM)s 謇׵O+BISkEje! C~,Ƥ\kپ={EGe@ 2NMv7|ұ0 MoHN{w$mM?ەxA8"8 4`DϞ$._}z_I9Y L|Odfp9Mm 2èBְL-1Fy8DlHӸN#6zc N!G`Z;cB^ mA0`[NN6d`5Y<'[s/'X93UAs28׀Ĺ4w890KE=*o 7iӰaƆc k0Fl1bpFL} cTeqQ|(18Qc@}1CUHp H؏ƉD ̼R̼R̄Rq |UBcCG eL+u8DL(Ƃl$VN#jYK\YN Jr]p{ )|Fݮ#9ʀ[NN/g躵o׉U6^ռO2lk/;lF4f7ԗVɒU̖r,43IJ[V7)&z-(~#?{X/Ug oK W/E0׵sk4f?tm38#=;*JǁxU 6OݯD=y \(&9>4Go"n?bYI!g?f32c?Ya΃=eEɚrTnIc4|7gTjk"L~,sw*&aަIZr{)%{{;c#~h1;ߒ0ͤe)e=S9Sk{N΋NZ۴N G `nr{;Ok2$l`E^;X=G=nsR5K$2#%-C\β&N~䏀"J{fʞӆY.qҖ۩tUr[$:xU,ߡzTw.vS|0k,Wߵ~]:Տ*_坎Gi?|Mw-o+H״sy3jڏ*_-[Qkڏ+_zv[QmG|zqUKP`,=0cu91V'|tX[cmTu8]1VWc#FsΡsd"uhYWY|Z\D#B:j~Q\;ڷEس4QZ{wFqWt[{"}oU#mx_5S`SL/-DcSiKqItT(ע*< \T+_m}p]'?98p]U]Gq\kڏ)_~T8p]U]uyQ5XǕWnʻp>`"ZvO *uPA9C5[qH8AcjzܷqtMijoSSr YҶSHmkihoX@_jՐvFutqhjtXU|MJiQZz/nҺޥ4 UMS-*\ZUJ 5<' NYS7bx֔F ϚҘYp1,֩-X7=4+gmg%iNj{m(d$JpWU[ycͼۭ][TG?mQ|[';_>!߱yS|/BZMwHK"-$/DZiI%i nJs|]Us oǦFJij./M .~(G>WL#jsG1_C^ŴkF]luk颛U-?2ҋ4Sf0 _M6:JTўmGPE.۰E((VI.M1 "֫7 #9]"> +L?_&V2LrRR~Zzb}X~/QZIlh-\OYHYwK89^0X(M*H26f#eY0I^28'pyLDWe/wۇSB$ 3C9×aw&2YN6}ʾ7sr3OЏ&_"u%C&/jKz5O(}`Q*rz~{~uqq{ǫPuj~{=k*GzaҲR_ۙ.G V֠Ryŏ_yKEn#Now e:M3%2Ȭ4gL12#~.=@]E˵D&OdIȠ)T,9~"e1bg9Gd͟ĆzQKaJ JjJ&%2XWt^=[:P*xXj C~3/o'# ޏSWzuvTVQ(0B;"\5qjΰ os |YB 4hjڞvJsis@,<2!+ u tA\tT^i>b6Z{k$I.wǙ޻K{wuH{w$kkskX{?]~u[C{g~$oH!kǒ kq!mG kݑkǒ kq!kG:ޏ5'>a`H{{@:r?|4~t~~DG8~#ţ t~θ7#ØX{o?'M4~X{ԏh|?κm##ޏqe8됅##ޏsj߁quBqm m_#%Y9ęlt8됍#X{?Niܣ9#ɅcWƴ#Ʌޯ~9h|?.tUm:~?κHraHI.t~HX{odqrO߻h|?N{'\Y]t8EߏԏX{\W\WG:?G kUm` # UAoڎc\UkG kKW+PXhnX}>n;R>o;9'}v4>r;ґ5}vi]BuGes%+#Al sy'4'p3aɰ xW$CG G@}7sKǑ f3N@7'rǓ }&w$,>;d@K2 0dHr=4>;dx?dXW${cII.0τ>;dX iA 5쎧3 0d'B-ֈ>; >;(îcmO>G }wV^w,a3 CͶƑ 4 UAltЩ#J購#QчyG:O6yǓ GJ}Vgzz;}wĚcu }w4˖ojK0Um#A ^}}wޱxh{B+}wX ߑCc=>;@6}w{0S=諢Ot>;Z~}1cEif^t>;E|HG4iߑ4iߑ6n4i_g#mh賾X-X_iV%i裾#ɪ9Co $3Ce9cu%f%H~>;_#1ߑwH#k#-IvǚX?|H|:Rg3 # ߑ^|GLC+>;҃tX}wd5ۻ#u%pXX^w$?;hqw<~ }w75ޑ5+ciTwxGxGZЧzNJt?;ҬKch?`9Nj^\_~]_\7H_,:Ko$jgRa71M ݝ_}r/c+ڷ׫`qQ"<_ v$oǩY2>]x_oϯ./n02G>wQFmx hm$'0G\Ұ6 99R cB3tL\\;x{A(>ȱL{L zqӈ32&C5KLD;F''`%* 7UG"lV[^*/rۢ41Ԧxv]oŊϦ/oY0S,ub[Z 233IꭟӦ"j{b Eaś:frA4G`V~'7o ( x+{ۋvqP2NLo`}]n#$Ph&P Fo 'pBN(} F%'&hr`0v?0A%mZIX%`1BYbq0qPDx{rh4x(PL)\}tPWC,ƣH8O9KG{Bo>ih<<,n 1$0dS3YPA'M/oyy]_\5Իj@iA?dS#NCF8K4d&NCF8w4dNCF84dNCF84dl8\"B֚'"ɬ6\:狏Fn;p.o6mf^sۦ5^%7Qk}jm, XC1,%͗/Pl)EC{ Dď@!: 60$!G &hz` eFr* oM?ە~ŷp>a;EG< o9 GAP  (?g(إv㱏wcqI9I L|Odf dQgl׋[1(Og i t&!Cϲpy,Z)Dhxsˆ\l /Yve?0-! Y'N 5dܐujC Y'/5d֠%-l74h#Z/QCїm6|!._c\jwEjB' E [3f(:lЖݰ5Cq m [3i6%yC#vV ܶ귳cUl.?ߴ[+7A==ںVO~e!0wy,aޘ5K7f[y#WSOz bɁq@ጩrpL[kikP' G¨:X:[}=*j@X's^ ZbQpbVrSS*)|F=#9ʀ[NΏgperw70lבCmBʀJExZu9ƌ N 1ӆ HvG8 ݿO=vqoH07>ӉQnCq">nm@9N$ew㏇R ]I DrSG*UPM/ͦ/wۇSL1f4&McUeL QY r,4(oAZ /jڬ"087r׋`n,adud͟ŮޕMrg7ۃxUE8PiH5OWAr$&=M$7q6ݍw8Y̓ +1?waeOc gf6kQ\?U[!bf+>ښ}(.I<$^]e=X۔yɏ}숎K48QsNeLQ:9/N:iq^n;&&D2X.ye1?iM`DM7y,uMb{do2/PHј!~2>m,kdG6.1X,Ji) iSq[\uթ,xVkmuRۤq3iM}Ufg?dAmSfۖm6S^X^|Vrˡ4[}s(N:޶mpЎ9%h0 :p\!GpY£AUM JUU!Fk!yTꆁQmNa jVCpZR=&kC; 2~$\w;nŝnŋZe\ՑUgл1(`nh[Ⱦ[SZ-5.5]IRJђ]2@Huȕ’6=;%;E1a#Nw '٨2Lm ":7L]sG1[B^:^oa-oi74=*ޱV5aw7 =(ON7LeyQlZ{43_0 &H4EfY!Y@tF8 u`dH5hF8iPWCfE`lSPW+9ga_*:h,Uݳew v:+!ú0O&Y>p2ۂT,,$y1 2;K#> W,Yxg9Pgb)ϚVr@LL|FAd|侃X5$k0R y('f̺gbY72bsy|ZѺK:X-P# )q‚T4z 65Њ;LS kִ3ئ;gϠ/ihƙI14[ ]ELQ38 S9ŐwiѷcQ BpWw3: W(S4|Bd`dL rb L 4 cD[ywuec[)A¶Պ g3s-LE$^OJ GGۋ4. o9{v`)]AGڊE5b9)i?Z| .w臙Jv$qsE r ߲7?Ydw`E՟Is4Hd_E$BXY~I(ֱ9eB$cC$/hiC2XNdn~s&3x)!$3} fg)h|(>47M[ߢiY/,Ă#ʋ.~\[u[6vU*_ܡ{Ai/5.W(̸r#32?!ЗkL"ɲA%RP Y<2D0&V,_P/:ԱTIMig@DRի]DŽR*xXj C~3/oiޏSWzFvTVQ(>^b˰ os |YBJ്fm`;s4UK9Vbxl?p<1~}Wz N2>5}\!+- 6]:ch䑾 ),4ZY '?yp%ć`xcI/|h*Z FYo kN enR?"$p?3~'`A*7šh8 xdoM57ޢxV >(MmQ̹Gj_S"v׭[)~f2  YKnrfilx2qar"Sx'Ĭ"e5=2`^o--IGY07⭀fteaۋvqQpX|v:XMSxç,".mр =/0䄰 & cadr[,`H, @AX1@Ybq,pP{ rh4x(P)] u4b0wiVInowFkB o= ihl gYy2D#aY}鷅edw7gHd*`e\~غ }{`-+ZmnۄarĢf=$9>$~6 !Bjk%hh%ŏHԋ7Pd2X>A'/F, .6"iϾY9Z8}jm;lijvOw6hAh&'bn>F`kyLg 3ă v p!ǜ:DCEDel޷c-E1@r̺e^5٫zV1.GdFdEQ.)e6opˀ hPFt`/ >• `99•]] ~.9[TХTx4UKLٗ(7in.֬ͶwlmwsnkmzRߑ.L&)"5` D4_yAb;/$di2_L|dkR拁2|FV2_F%2_MQ\%d?_L5tY2{9cZ;c$s"s2g /9c(f2gueX˜11dΘ9c2g %{9'g9c>gg8dLK25K4bl XBeOUޖy/ؿ[%#lOCF<< ay24dicӐԧ!|Nm|+=5{XlԓYmt Z%y|xGi3ZI?COq:DIM2r`ߤZ۩"K2֐r Kɡxs}{ VZS Z$~~ߦrىşJ4b;lƈ 3(z峗L$>iBݘ$'Cr/%Ԕ[DfQa&, ٮ(SKc'$qؐq[@Gl2,UVf8 #bN:r4+)̦_okWY@풞a)SYD QJ 70]nś?qԺ17&䆟yO-|VM'sRj C~3UN4#FtA5>^S sf`G7q&rj#L("Kk, " o=p]#7lLa-\j%g F,/ I/X.yCr p!F`7e~gIne^C$LUxkk6?OvFBfpABOP"cy1bY0/Ėz}" }6/jHz/2XOg&3C|r;C{Ne?Phyܵ6:%`@h@@o3*9!,`v|.~mi#U</>@\F2C>5/t|o!][Zqj3e\᠎f{C c VIn/My< 20eOlv8%8fae ΂R^\_7 "|O2 "u[+|nʷ9ɷg?;uªAov۲y G]mS7y;>yn~Zj7U@Q=ZfaQ~[u›=lъjm:yǜS\>]~a+/n;s\(q$qb$jP>uJ>5.[V>Dž1qiF`|XFL&LaD>,JN|XfO@F|XdȇeNNȇej ɧ:2raR|X/ȇe= |XF>,s{2-0 Y'N;3d`ؐu[C V Y'/4d`Ҡ ?7goaA+} c PwW N!W)ٿo1FS[5P;"5CaakWYZbhh'ҪF4ZSnS..M5 )~8Z4pWʀ 'ƀ4x? ߀KXy"k8;\ʀye 6PKU ׉_Cz* 1i c@\5TTt@e?b0vH3m3mL4;H/Cʁ/Cq"E?|1Nd'2_/ƉDfDb +'z(Z_j}_n?~)fӿ^#lٟf0domQZ>Xe\&$5Lr,4 *coAZ/jڬ"08w֋`n${|_&`k?L'h/vtm38#=;*JǁxU 6OݯD=y \(&9>4Go"n?bYI!g2dzwKge~Ü;{cb8Dh1BV}>3*5v&G? Q9\0ZoyIZr{)%X0}Ei&-Kq(̙Z8ݛu?&s^tܦwRMM>e\t)w ~g;M?azpWv.֐ج]-D1(vg;27{lFeaR|Z9ץl߽n^k2גaofwX-' /kzaT#Ŵ"zstߗKvJӚ$d3n7[vKXIdޡE %-Cymeq&i2!]>0SFSVx({P%J`W%iItkOٴdgJI`64;`RK{7P96寍1\]fZ^"]: OlWv#YUze,(Dd%N~qq9f,26qSV`OMؽU0,Tч$x ?r/ ك7dyʾ7sr3OЏ&_g'۫ŭC?h6xg<#L[GGB3ey%SC[lj׏n)@6_{yP[z6mY}tR3{Ŗ&a}PX&o.ὥ%gWoooϿpB9Dax`H˯^Ϧ_D||z_Mg2r31QIfIͧq{GaD&om^!/xUҲR_v Ģ݋] /N7V*_t^CPZ7q(̐r#*'ؗhZ")T ~"ec8+%<9&o$6ԋqJjJ%V%2X:b(5WVsofk{߫T,QЈ8ïb >HK6DU~;zWٝڞvFsis@dBV@ Ĕ~w?}z NECW_\ T H^iUQχm@=B- s~AKuLl̤'pb8 j  LٵИi'Q6S5d9`F` yvd ]Z϶~[C픛K٫WԽc6m&>-a㦪c>]czkVhg!|`T!̢M_^N0{,d/:{̉ "َPu!c-^u׃ڇ9us9"6"C"ZuaOc.۶c~[ E6C|YdTUaeB/Wb٢̥Ps \Zcs&3*(# wGNfyw_Cpbmb"4nMCeX2EJ7'9EЬ̦0~=]=f Lj Ea!9iC󹆬B Y'/7dڐudC x Y'75hoaA+} [ ZD}ie[M>7_@okɰ5Cхak Ef [3e7lFܰ5Ck m lIЈ4p#[O7M-wEG~GՓ_Y' $a5K7fYyV-aU0OZ +8'ƯY1k8k̚%jFY@g%f tƬYq@g#4Hjs97 NtMNi~\B: f0[#X^Y bTt^iWMd,FK%m &Eu$Eo]L|YcNCuA::΅Д88bf}%1@:f\剓6)xM.E#)b2V OsQ.Fcsrg<=ʁCOk8puhc  h?9Oq$Ɛ!p NY3fj#6PpC1s@}`'f3m9 3m7D<7D}D73_3_3_tOd'2_/ƉDfD@燈wCz1GP6Lv8qʽSNMlZ=!w }$<.H'[>A\PŊ({-ý>|z{'P29GD@:Ĭncv;\%s^,΀{E([ɟ>eٖPX]{9ӭ|_gh=BHRL Ϧ/wۇSL1f4&{:*2!~CpFe\%6ͶQ =R%^MV[QF~'zr>Mdox/adud͟ŮޕMrg7ۃxUE8PiH5OWAr$&=M$7q6ݍw8Y̓ +1?6rđ6#(3u<]׼'eSE%"oߜQٷ09<^".ҟz(M*ؕ)(w̎$L3iYCu=Tf޼>1⤓6-jhB/2\c``~Z1$dM3yަ{bdběl:d(IWl(gY&k?aG@Zo;LҶ=3H;jdVJkV}qMi]Rp:5T;ܲ¥kDwN-WUKv*nݤNgY7♫30Mq̖3[dtfv8jf⨙]S3k351]Ml9bf%gl뎫[rtuYw3PTMrf˙y1MUrf,bm9:edciiq"N4^. O? DA(XO&Q([@e ;Ćmc4 %t|#(#?GPnsq;2mF %$PBB %$LB ZqmV,i1n8JCWc@DRK5{aiPCqE5 zv7xY$\L?BH-)ίnӟ=X@뛳{ SqE(6[yUv>9)+MW g˛3,lO) o8|X_xLou. gEFZ2TwC 0u GothycB Ȑ<_ȼ]yyv"ggٌI1.B 4l@˜ngz ,Q;5C0 mx&Y|~s[ Y'a' N8o3~%O~!C^#_fa,_Ȣe|Z`&,5-CdBt_GuG0\avo=2 f@{ QܸI*Y0 8F#0zGk]Z,v}I:MmT ~kVh&΂4wQ[~@A%=rf0ǎ@N~*?@|\0iRtba~?tȱ o-EkF<_wd^̐YM|)osxo%(gBݛ}.4mf=L9g 圝9(V-YIn~s{v{!҉2pn/9mrnݦ ;8];\=uHG6(l~0dr@t[%XIkbhP5EG^B Lg#l2yD2B@APHq4̗z0%Nlϯ9LF&xj6Dr}{tM+?`Pr;U1ڔ-GDbjEa'c؉VckkMW Kxz30:.HQ B`$i\9pSUk譨:&J. c6TM„`h]"]/,rV(9x?ɉLi\!̱e0}k|VaІ)Ew/`zleڈ"@fs{u Jg$J ٟ\cPȽ4E`*9J:Y,Mby/7:b}o<b'JRew(*xKd rU `Qԁ0j jPdgHVb35@ kG,h[( c6"tb2{(Ӥ25L4L~2.# 2:NdQo_&hKF9쇌t2g?d~H7qd\5Co#{i0hadf&+ ُK2k OS[r:BcwKgHP+þ)ʩaZ2b F$ns}MN.=ֽ;oORhg/9]Uaj Sԍ\zm#rFe1AہtJsڴaj ^6YyZl4H:Jw~cG)CpG g p6@!t&̔'hCX>*0A3E B d-|r$G4+!} XEw_HnÓCtɓH'i%OK\г!O-Ay 7BR?AXJ =tNpt vp"c|tv ̄c#A虡c~xpLK)^(#-dvc !J`'݅S*B=U Wq=y;sD1>DP_Ixgsr(<=LnTr䧚vK#R]ѷ0,޶ltr`c{=1]tw /ͫ M&.T!!X" ^zab{}DIuھ@6;`fD$Ku\j`CL7UR*b;? vbnPA .칸G|+2jjnFDGp hT'h`yG7ǔa~ Dc+;xa̲<]_g O < Bj>:,h qˢcP֨ FV> 78/A} rB=ɰP^O_4${HG? Bɽ?q-"HJCN2PꙂ3l{g<5roIFl7"q w[#0 gpߌ9豾9C"?d3]zg#u02w;|=li&x=t'lerѫ; }";Nl`CfGZjq=PŖ5;xՃ4*?0Z\m6g׸afI῟~zCfzvh8/m<@v*oOL~v AGC+\OFMݓz:e쪱?8vxn80#pMad`pFڕn=BQZاXzw?.otQ[]ZXO?ʵb+4pv^|g1r\wo L{Z -GFea(-:@~@-a)I'i!q]$i{G մ6'-|^[r&1ؽ7*JӦo ʹsP3QbQnm2ޙv.7g"( lA.ѭDpGxBL*Yw׃fT."ER`HGC)'  HV$qھ&|eAYb"wP۽ F<*P# ` ~v z0J񋲹?"e7S)ۣkl] -|Ѧl9"spcQɘv"6ؚZUCK`g%bt\R=܅H Ҭrᦪ;[Q7 L_ l* D^pe5Ps~sݙd3 5} Cc`E'86H)xIcC,FA_gw7۫sfTTb*Y%PYE(:0C%Cn\NT&ּ9›Jj1]pPBF) LHw%Ur* ('s@Y5g5H(23+ "[ g~a v4'P}v K_Vl+T١1 Lvv BC;%18Nz#=UqqW$ ڂyxFv9w+;쁓[p+>E8nf$J[e&w?x=J 2Ľ+p_| u|Rl.>{rgu4J{xzHmф7H 7 (Q"-YBiP8 WUM%PEj@DP QpSH [\ n0+,@h Qx,Q*MrU7 jlBDB% ͈Z6$(RD<߆ *n0Jcʓثƹwyu+w<7zBRw*\wzMR ʽSw@*N@; * r0*Qw2Z'|Uw*MrD Te_.n9.W"@7zXFh :H(v0/ƣٜl9E.=(C̲{Puk5 Qk^za p ]&grni9M}ij`xZh3y2T|TxU晜*BeQ̳:;Syg*L坩3wƂj5lRV** K =GUޙ;ARyg* 3N$w&_3w&^Gw&';Pyg,l"w& L4LʴLŅ~ÿ8Eȷ` c=A߫RS:7kdCFy쇌ts2i?d~ȸ|2ށ)f=L5{k0hm .~<Q".pqv i=dc}ɍ>PR?KFZMUN JS`0% %7wkrMy6S\7'~h @[6>0U0Aݷ06!GhO w"➞91<M{_,ף$a$0 AT /BHRf ;O(fe=Oᷳ;F?P$Yg'ɇ'i%OҚK%Tf\414gZ[δBiAn9"r[L۲3m#[δn96:$ohΊQ:fvv1[ۋ\c|=]½){kхvܼͤsVn)9+7wZ;1)? +a"IYSrV~)9+?봬ubz7YP蜞rtNY9:ӲVΉYGӨf1s9wW[FS+ my<9I >J'ˆz*XT:u1Lb4+)Zv&~`]iSc1L -6E1;bN4PT1L Ue1HׂlQL2%f;gU/&yw\d")\3I`݁Vcflvl>'2s'VIwK~Nӆ1z*FTBيx*~n4m*TR"=qŻk#aywspJt 'kՆ3ڡod'W^{kwg1 ߓAQ.dDl:bH|UhZt8q)GO|%ŸCDh;TPp~gƦE<!0eFhd'hMYuoiwbEιvEتvX ~ "b>fnLa>&BkS!GrVs6*r|L\䉐aѝ>S롍:<vt: Sn֟ yM/Sj?IT5\ mZ9ܬ^+վ^ Û_3˺?>~grWװ})n޻nX8eAeiE:T5! 8g),]#(t4v ̄c#A{ϊ:FG_`TǢ?No9V _ :}Nq"]?|X"ï^Epø3wo>@CE?'wңe`?';€pP$?մ[,T}Nꊾl?-deYen{8熾8 /!8i M&.T!!X" ^zab{}DJuھ@6;`fD2[hC0~:>|wD&b6ky3-n5nRQkT77Rxƍgܼ͌Tld&Fnl~4 &ldڨMfdMVzݴ41m6ML'ltڨMMf4&jfͦYib6ndfFnlL:BaȗN>&0"|,`0" 4!&0 [!YL`E:B`@wԖQnV8ribY'Oh (XfcC T@Z ] U@\ U@\ d\*P*P@!,3*P"*P ]w(*P M*P ]w(*P R(P  gf, hN,01N Z`pcjp1C-%ȸuFz8rG.8r(n 8rG.%F6N$J#ppQ@gc?yA$J#?Lu& (\Mͦ (\ J#ppͦ (֭idDr(4!% D pͦ (fr(\` D p 4#&pQbG.0M`EY(dXM dO%*կ(H]E H(4H]E (4.T@E TBACeBЁlv^zCRաyru@4qЁVաiru@Ё4wu@\:&WQTyfVT@ DU@*P =U@\ U@*P ] U@vͥ*P((;X:w פ܁su@\;73l:w oչiru@\;:w ];&Wչs(j K%PQj%Ht%&WQir%HsWQir%]p((h(%XesX`U_b፡p1C-%P m j(54қHG.% 8rG.% D p#UÑ 8r(4q"Q#8+ț"Q@G.afk6ID pnrm6MD pQ#o6MD nM#['%D pͦ (\ J#o6MD V5HG.%D p"\ J#YH`E 4!Eri&+LAd5!&'%ȣ2 T@E DU@*J =U@\E U@*J ]E U@v*J%O@q*KNizRՉyru@4qāV'Չiru@ā4wu@\8&W'K819/IUQg[=s ]=s M9&WH]=s =g3gd@z +-k`(Pj( Ht(&Wir( HsWir(]s@ @ V$s zMH1Wչy3Ʃs&Z;&Wչ麫sչiru@\;9wPLFT@E DU@*J =U@\E U@*J ]E U@v*J%\hlTE f}˅} ؗ} ؗia.`_pG.`_p@>/8r!/siElU.`_ 2ɻ/qCe_}+"shrۅ(hrHXU9XeUJ\fPfNYI֤JY,e͵h+e15W1e}.LYdIKg|Q0 {1TO0n[q U[n=p$qbbM {4*R1FEx ^]òT-4AhO wqg ;=aCz${ϲ6L }qIli1D-4.$&P( %{fYǯl1xmg_maG.|cdLc1C67DB\~ݜ=\mn?Կݝ\>\KD<Mxёntk|`(ۡn`y7`L0+{lbY$\BEO*Ԓ;ٳM^ 909gE(5[yjh`go)ͣCK餔2 \&I,o6۳kϰT>Oia=!3}Կ~q4Îو6 ; 7'@.~Ӭ]HP37N:o3~%O~!C^#_fa8_\Ȣ|Zx&,5-CdBƄ_Gu1\cvo=2 ;<7R~20 8F#۷"8zG]Z,x}IMh .-Z1che8;/(9@@qޓu&͝Q -_xZ#O ߟ'@-=bÏ0b'$&,*r\_Cg'X\ף&ꪥCq^ d=LӖʓTd OR {WװI4|k!.]4B½#ejpa y ~F>/ɭGy7O\^+\vikӹioȻ_(da>QbSnm2ޙv.7g"l lsex?̶fځC:@d]%ﴩD>y;Xo!sם *J9-_@v>)(P۽ F<*PgA=z (+B^/Q7,=&JJ0(Ъmʖ#"1n`Ǣ1DZm5͵%i<=|<AԨbdw!04kDypV %(1j&ar0.\E f +Li^!̱e0}kp"דeBvU8d0=6IJJmDTMuvw:gK6 *)ds*B!7Ҁ<;q:Y,`byx7:b}o<b'JRew(*xK: 䲝 `QvՁ0j PdүHVb X5@ kG,h[( c6"tb2s9N/Ӥ2ſL4L~2Sep|#AsOVN4 1]Eׅ8G⤫#*ے>!#=Q~H2CFzԹ2ңqd\5F0ha\FlS-L,W(vϬ3.)Ǝlp,$t 3q~2RZY*#(`KJon63=f\414gZ[δBiAn9"r[L۲3m#[δn96:$ohΊQ:fvv1[ۋ\=`imM_.Gn&杞rNYyܼӲVnމYH7OYX k~YO:=ggNYYe~ֻqtȂ*GsJ9%g蜖rtN8:F6 ˹{2rXN4mꅋBA@*FĥtfUP R̃W ֥-%eN:uJ);1XeڙcKt׺u;~dqž`xCdλ뤌c1jQt]auKci(j_bV[t7EP :Ycvi2DYu6}o_ "nϸ VYu.c!cڝ"Fl1N#֡115S?X|hcug&؏P"c՝|LDǪ DzL; AXewش'aiO.Saۥ"K9f/ѓ0%PE?8T+y$jOɈ'1>BG=y'>R0SzxsvPk={fYǯlQ./şC c K >> HJ1DqH9'8X\ooFQ`'9i<@O /G5ѓBo lRhQGZm YAÏX>*QN7usg8%]S%jo$]R쬺GJ}|&5M͊{\M"@ ,-T:F'v L\V5PWa=M17k PS"ԢNo(\p@֜89zgBB@R7߮`$i1'YsgB]s>>^J3*a# d1.4SMV=6u @2hobS t ~3-~lƬ!D1%9ۙ>淞o 0n͐_GEku3uR+eq2g3X LfCqY4(`i72V\8Df-dLu\Wpa'0fOR V;<6R~20 8F#۶ޣ(zGc]Z,v}I:MK-ϮUds~ pBpv`|3gqr\o LZ -W@xZ#O`2k h-}\ 0e}LӖP@ _@ Wװ#@_4|k.]4B½#sddjpLy ~F>/ɭGyO\N\vii7k7LӚs6mY4r8N7troqά$Cvwy==gd\8Nf?7Wۛ rnߦ 8];\=uHGD>g;Xo!sה *Jҿ8-_@v>)(B~& 6LGe0扈eTY<(o/7`<K`Eܟ_2}l>F(]W~+vBc)[Ժ X<i4ךj'ӃAqDzH*Hfp#1HAZG@oE10QnXh&,CzeQ԰BINvgJ4* a-[R 86H)xIcC,FA_gw7۫sfHTtJ \cPH4E`*9J:Y,Nbys07:b}o<b'JRew(*xKd U `Qԁ0j oơ$АgklֆɏY)$BQ;ƶmDdb݀2n{ XzLK6B& o!62/ep|YfGj=Knxj59S̒x̑rǯu§ԑF#,1W&sd(C6W2F܄ ]\OtW)J*BkRS4{%R*=j!Fĥi4fl"}`I ' 0@.Cxz,gwuIV\?i-ysi5^қ;}<ݩ!#!h "຤%#z!8LmH_!#퇌Hy?dG!#=~Hç2_!w{"{iO&D00[m ňOÐ z'* # q(оw$ݛ}~@x2RZY*#(`KJon6sx{s?7~9\AZ |wWF8­~zm#ryWKB d`GIiVCwd $a1)BzA@f-P 4{pƉ] Uv/-|Pe1Uzwӄ_bEvA #ε =;Aӻg&izuRݧNckoݽSrwّVets3;xl-}$l2(5Tr7[Dܭ;=&ݎ"JV}Q%w &܍!R*LŠ{VܭUr7 C%wnJN`ZH&6O҂KO"xX|̺s"cp|LGrXŸ;9DǤ!2l;tLDmr $5/]!2^'eړ2}ғ %x"JYړ#d#Ԟl ?BW}Ȯ7gkgu|ϖ?aYqRi=_-}2 j24"D*ٚ%!]۟ ! `pG/;,D8?gi`3t&z(a|-SRm4H ;X)`w&Xf9ʼnDwbTaPzaU\~^yeQ TWt o}\ DF!GI~i1Xw)?*}k~Z!ʲmFklp M }q@L=9CKlll;u Uv-Hi=B*/{}DJuھ@6;A$Ŋv0 {wAAD~GpQGB88-1{[}(5`D? .h>F*Jr'ҵ!J/ߑb4M&sQHqU\Cw=,uu&oG|Cĺ 8@7FCORr߾%Ak9Nk?YWkd >LR!$) .W_&^+ǿ0Kv %Uj'Yx,W/V<^yWiܳE:枎f77 GhTߢAtxDh -;ıAUl!EJQbHTXATOpJ{8vg$6;5V5ȇG/UDzLD"|gRu4xa}P/g8T7/Hw[#0 gqt0kX9CK>r=VN7^t ob)ۡn`y7`L0+zzEbDwO*Ԓ;ٳM^ Ưkge' ]R7o6۳kBhZ7m^>/!p.gtH2iїQ_@~|=fkҋ+6Ȼ$A :~<4&}Y7w|]=cuK*P{-%ٔj`g=dWX59=nl*d=8`tR6ʥco|bhiU\G|[slAMOzQP~5=*M-jv5Ț'X¡;BMr:_S,wIYS!xt͝^rh3aQO1ԑA}9 Rg@&kA??/7߈Gr |3 ~lƤ!D1%9ۙ>䷞o z0n4@ŃfY9-O3 N8o3B07cGX9EK˼їxkLXkZXȮ龎 `>Mݓz:Z @cGqC=Ofh]y㖛#]a}Aݮw/IiqڥU\+B3x ,g7q#u# *0kh;vrS0eLӖP~@ ?@ Wװ@^4|kᐸ.]4B½#dL~Z_pkLy ~F>/ɭGIO\N\vii7if9[(tΙبLG ( OngJr;dw۳sNɅdssuξ m "S# ѵQtTz Y6(l~0dr@t[%XIkbhP5EEP۽ F<*Pg A=z (+BN&Q7̭G (UW~+eiW=GhSu;;jzlMs骡vrW=|IAԨbdw!04kDypV %1j&ar0.\EA +Dw4LC]2@>+ŰChÎ;d0=6IJJmDTMuvw:gKeǫ56;HZsdȭɒJ$֚7_x@C-K v T(QV~W RD@.WxXN3:VpL iJ,}HamhEMb+tE#alFNL&%o!Bķ@[ĺ-db]"2.r!c S:MiY[t׬ ڒn!#[FhKeKv!pA(-CO-Ay @Cy[@Ɏ0?)GI~i1Xw)?*}k~Z!ʲmFzlp M }q@L=1CK`ll;u Uv-Hi=B*^|cSr/>-n +7!8QF` F1{vdž%ZG/m}l+ר~0Oh=]$`|@+/:bM h#Rm ^M#){9lbT)w32w 0'Zk {hd=oEhזڪQ_[5kڨQgF֨iFM73nfmҨiF}N5tڬY7upֽ& 1#.]1VNG>^s=-<\~ax 8YWk o[yppG&<`}FMyFMyͬ.< 8XߣYpG^'<`gfsa:Zbjh!8pZISMQ*‚4J`13jgN^ Ǫ"G#qsH%Uj#&< ;}OKIqvdHH)N${ϲ6np[!-R6C ) E|j[Y՝3l{g<5roI;}ۻdLc1C67`W_7w7gh7 QJǘcoH7:ڤ$Hn}݀3-p$*&^!W>O?'RK g6z=d6Z㜍>yB;z!=s~뛫우 lO) o8|X_xLo. gE6bNC 0߰]8xCx+y}v2m BId|?9ޣ[E[x%& W)#RI;rdH ]dH#CW2j3H:N^<2v}'p>ɹA9܁:;a>^ SA?F&-eb\iI3;{m>\{{{d.o|#^V6~*4-~lƬC H'ŘnhR<t`ܚ!9뇿B`vjLN<Ψ/$gN:o39B<5c~Mmsu˺ )-/aMH*$T|Ot$:S]qZX)RJ\Uޮikb5Jїx})rԣTT2<:Bn=a'0[Og< cp(>r5wW+?K+qaޑ)if-^|I#vW]ZOM'yXKNYol Ǔ_vq҂w5tǫPFqN5M]mCOx^ *%!@Iq^ dLӖʝTd wR Wװ/I 4|kq.]4B½#XfhE1&y->F[D1rin|7 o޷nͿ6~/пt fqyS~m2ޙ.7g" le{rEeb/g Q8(];\=Gl]e"tE)-`=ۏN(n+M bd%Խyf_"v/7OD,*DGGD_F3#z (+B >Q37ؐ=&:!?#`vB+c)[Ժ <i4ךj']C;/玠"U.kbf͕7U6`@oE10Q.nXh&,Ck%zZ ڰBI>Ĕ&iGU09 om?zChÎ ۴ džXv( ɿn6W8}eU%dYE(ZF?0g{['!%O5o=Qԡ{oeޕJRw(RxKda  `QNaց0j _?$ˆkl0&ΏY)$g#a\Gʧ[D~db=r29Lpr^$c î⤣twY%#CFy쇌ts2i?d~H߬2?뇌z"{iD0haz3T " VTH.0{r:BcwKgW+þ)ʩaZ2b F$ns}MN.={%}?w8#pWfyGŞ"MSzm#rYe1a@ہtEUsڴaj ^64yZl4HJw~R)oCpG g kp6@!&̔'hCX>*0A3E B dYr$G4+!} X_EInRޒ5wD].ʣ&uh.eK.PrBR ݢT_w%.(͖O!xo;IX!oLJRJ=!H'/;Mf9JxްnTR[?5:,:w6`%O5OF_+QgJt:}-d14el. CY*Q'sU(\%Οauj[{viFn[.>ګ90iR:=]8;t!CHv  l2Z~0PrkLywiV-ʇa~x:@iZuz7oi;(V/읂' H *8^$dߞx6(ǑfځG:@d]%ﴩDg;Xot1!(nˆ:kbh.Ks{ u/0m`˨ @!~ h:;^|it&2UU$-[2>6зGD90yH Ge'2\CFb`Ժ <i4ךj' `gat\SE޵ ͚+njm\uCDea} †IBv6\H+:VniV 8kU,[ӷ-r=Y!aGJQŷK2bمeB 6p__*-pqJ缲PȾ5 /e ,Mby30+{ { ԑ.O0ķ@R!$~=o\\ cu3qR$gHWb 4E@ kDd6`Gpz#m<2j"g0 m tañ[JaT7j&hkgu3#!zHECh ""5QbEDF-FG䠹U$UhH jUݵ-Iy(A!Q0$Մ-ESr%*d@ ,TQH QBhKK K+y)QE_jUTQ0@$\/BA=n_3Q"wHebHqzJ^&{ebpC(b?ILPw;;=\ڛ[_)2;}Q1aQwcԭ2c\ GjUwҷqux'AQw`w/6OZKE%x͕& 1>{.{֔=qyfRn9+7wJ;-k杘t󔟅gsV~)9+?딜uZ:1gG,rtNY9:SrViY+GĬ?iT`y˻-#שZ6|>BΜ!E#rqRLuz3ᕃu% `Ibn)u&R`]Rߥ(Fwº=©/˱\(F035[tdE8%k=3/a' whŵ~XltBdcq 7nY VCtt{2R;\:n  Hmu4]PiqɺS"ZZug?}{2p"K9DFLr ./1xdLz2^&=/IO˴'eړ2xdL{2^o6^zƧojVR՞L'o}ړ-G=J~zW̲_2B\b=5,+8>n_?WBl}@5|}l"lc7#tm'FH9'8X\ooFQ`'9GmmXLx9>c~xpLK)^(#-dvc !J`'݅S*B=U Wq=y;sD1>DP_}цRsr*P6xz# 72y ~Qj-i *]d>JuEZx2D{۲U`sCsEK{۸pݤaB"i%R-A&=|'G䰑\ dco [`AD)[ǥ1~kzS%"V91`\b@\sqp`''*oQ2-؈CbO\awo?C23aZ;4q3dCF<#6R`y'YB0~:@ NaCOr/q8!Ysyh1I׆x$)/\l.;1Shu%WmK"5Ra㩬^T(Q$Ži߅ͺ6]O ÒXGjf;b}}rD=$ƹ1HLA|e4;}Jeٲ Xy$3DTP>F aXkiqꢑFd9q\^_n3*Ybw]<.8Cѽw9-AYVL0,N'Bٕqpsi̖_A{k+/zc*WLL>D"wg5GFD=Ko 4 E$ض;`cƳmo9ZW_7w7ghst~?dH{EGAOb<ȔߡOj`y7`L0+{=q"1 k'DjIPw~uÝ&RZ+5ţEG p uܼX:?#cSz`z8#ܛU•{9 ؐ%%{@,E[aoLe|HB-8]OUD6`[*L.9Xd30LK% y2zgOϯaL-aC/<"u! u&$єNQN2UwOk8)|G&x#Gp(:QW bh3 8 "ȿ td"ڎk 0uť &0Y<0dT`V.d(I+D{̅G~=#%l3\ c,"ҪL'we6"RB&}u(5wU[q\gJKC%H\IZU2 f%;tj[2]c=b&SGL':a:GTI^7h?lGݠ 4euFBNBrBZٙӦ. 1=:}eЈ=,!%xud#~z~?*.>bXb3[ g+[ g+HM)*w}%as{[a[d8 h _nϺ>0"yg6!HL]#s.go@;a;lM灢;*)&öt3p"A f# #r^)w߼=)+D!V, 0&!u[@0Ձ8\bL R(4OP(z?C}^KRxm(B$N&'eBĉrĉrĉrĉrxĉt` Ez It0 Ez Yt Eڢ4" +6"U님/b&澈i"LrڙWYjy+YV=Z`济WܫymbռvQj^˨RJ Kzpdg׳YmbvQzV˨R0zV贎Wt+:mbvQN˨Dѡ4 MsSԵlG w nDqtL> 1,J4Q3!W:2HdadTMGlaiF`,`<P`$Kl 1Ev-)2ɌEss˩r;zQ_N}ԉB܃'b_Nz>Gr]+M-Ot7W~{ZLy+/sXwCH+iV Iפk5i}ML&-E&ms_6jפkVk֫Ia8}Qڋ+zTECKl5댲p;ZRAq#k\L"KY qHCI ; αcE]NVuqjZVu@;eY4j,1@>^YdTӂf&E?ZZdU UtT$BTk\kTmL)CU^8wl0rxJu)z~3 A.CH8O>q)K }0\_TfU7Zmx&0,ۧ_k@[ڝ8kʖI7jeWTMHE&6a|bUc~btV%knuJCOh^q bאS$GM :9IҲW'{u uaW}fX8xvWGB0ϖ<p:@b쪃_p3r #;*5N]qĩfߍZ zVˠ{7_U>^F:CcS(\5GW&Y^;R'U5Je%?Z"ف{Dx X/ƳxڠL`Q:\EH_Ji\G`]Rɶ4/#3+ ! PPzX|iGAu0&zR67|"$fِ-?s`fo*MҖBdJb-1 7WcckW5R^C8 {K gsכTGomGa7P TK,+_TPh5INS"&o ev|ҔgCeI% b^S7̭6~p$s./,S"L514׃:/V1YJo=[J=[ MQ2--.7O[tv.9S3})?V=@l,{!)yeM?^b/MU߳Z 라e 7*j.>gZoӗ\oAކgܨi0'ʍ{سκϊj5dQM0׍`n"~ʝrl1*&ڼDݝ^VSҺNqs:9nJT5.i.ҕ8(+Y:ZLdMk26ߩQ!pP.Ej AĕAVZmz!.(q|f6 +-}JȄt=dÐ?  ## I`hO;GG8l'GV|I aO'%t$ J$0@yS$k$XٱxO3 Ț'_R=~)V+Ze`+56RA|c.@n$tPYBy q&y)slG3O>Oi:ZoOfiN.!h}}d5Wm*m)\*yyj+Ͱe-5as{vf3IZz@4R{~$Nv]L|cΐp,KCU<}g;̫#9y> /tfgSyQԟ0vTZGrNFhƵ 3ܴ3]?eսOQNqT$;z2 3j@/ʫ& ׶dU#@$]v@0%]1Eg3^gGpbL`Q:\E pK:쒀-67O]ՠ9yXYa~2h<(rwyhr` 4:6Up`o0L+#6q{|S!.XɔĀ3cn68jr'UyewЅa x½FijK/MW yyցˍ*./jrCee=Y̺So@ / N<0yk8."哦=,*x&װ$M?'ԩs!tʔE;Z_À:u-`HfqEo"GMYM3QbwZ`X4`Re{1"H薢׼9bU|*>u3PeJ\Xp3+BC1ɝLɸи"q 7/AoYMQi(4Ek\xP\a!ŋdνۚobv'9.oHZ H TMru<#E zG@SE zI9=%7Fy='EH'H(4!o ,G=`N  g9Ff v *v/K aO B>oK\f.X&K4.L &ɷPyd`CjZ6zP 65-ڧ\}%ڧ\}ڧ\CtKa9hi_;Ccc1%}>xE>ksc<߯1Cls#·}>xr'Gs~'G/X:9Ʃ9gc<Lb+.O .R3ѳDE="i0ˋ!NV1_i"f#ead 2g'ak$Iz =a|>;*nx<鷖I<"O4]#K--a*J&-a +Xk36&kCCbj".0=Z ߥ$ͥuҬTv*XsU'R^y'?+k%ѹN~:!c5r(k8doWus{/#@F,jesdl/LHCV,FLC!r3g3.?itȏp4*:3|*i4g%tL JL#3 ]lD"qD"q>"q8"q2"q",B HQ*PϷDz at:@A5"xElnYB]TGٸ3~3bYb1b1㼇b1\b1㮕b]Ōw#XPNaV>^Fݲ${zL> z,zV=5Qyiռ1j^{5M̽.^kYyUIaIB׳Ymb61zV{=egg}EMh贏Wt+:mbvQN˨Dѡ4 M*ۑ뇧=!֩؎T#Xʤ4S|&Mh/Ǚ4ƑT{= AJz0dx02Hr2A_ ͒!nRHgsHS76N9}4{idĆl|fpJٜ>ۨPK`nѸDq8^!$A ":< dqpGWvm$A"<]*:tt]Yו8]Pk0\ 6MBz.Ox.ʼn @n0#q'+.)h9Ħxv;WCaꖭX,+EG{mpwq$L$B%ڶsP2#]~t|f)U7e(a {zʋc_׷TGN<6EiĴ!*r8gVAa4^Fΰܪmc` 33 0LN%v l|^v av?VXi ̲UEd*%Pt97 8ʝ6g"NX5NLծđ"Vn*[cRK!?LC Le ő$>DVyqVMz,y 1a"M8wǴ#iG)ˎIJI9' (qCv_hS қ"G^iVKm=xZn]hڣh[[-zhXr&2: B[ȃ%[oc4^u_ls`GMt>N8j]yU^a 4]p!:p-`k!^SoW0xFۦ#pW@aKLz[1NL4D>D0xasߩ{TG=TX%EgS+Q3V GS(O%8e"rcj7)^DDփGu=ն<6M=5t=ˋnڪ὇6lW,+QcxlA gZѱwrIb1m~[}U h */g~:5;x1ߋ ְ]v`1c?EopT_Op`o,Qi\\UXh^?Pt_QR`bjOd1T}ZID?UQTGyT ;qM&5W3`_c6&0Y n2k5D[&Sp*`< D,]/] Q_duOw`O*KɒvƊ%XeK56edebϦ^Y1Ïk@ \c,24:FGrqTA}bEܰ^A]7oqG8ր@Py^!"LSg`D{JrOz9 & YRǟa8Pd:_\]ɏ?NnQBwoo~\}VT $7)HN{tTI3^[;yYe 4nn$tPgHy qf82T}tוw@kRZNUE>p}S ʀ1A=؎k@6uť ~+ -,.d >˝'I};M; |{¶zpL?%a*7 Ut4č=uc#xQ=Π-ʜo8*;cu>^سUjpB*>xqpۭ-bdT p4 g?變AKIn*ާ0,ۧP`k@-oa?9툥{OGVmqIj0R[=}5tipǓZʧK9͖O=Ϋ؍XMxLULv5M<ˣf*r|J8ގroNf3IZ@ 4 0,lczM HƩ=z,ߘP0Y;a^ijeV̹ZTܛ_[u薃@"~;* 0j-Ӫf x.]R͚u\6r\.NqymWƻwjYuӪe3iI=\?n//;;z,%5CxcHUDG:TG .GW) .b<;(t`E񐔒p-;G(HBc@dU  `{NOЙE((8 ~T\[JI<^ S %eW<+o0~ˁT-ɔĀMsN\cɝ"KBv ]hY [jTG<; ԛTG]a7P Tq)+_TKA{\, "j(s_ѯ?$' 6q[q])4`!PٯK409ļf40'_MwDv>MvDg M,c|P3廳q;+)[ޢo >nz9*@u戢ӻunǁTO <ƬtMU>M3םyyG'oγfƇ:puc  2g\NfLFdN6cnЈvFO4}ݠ3xb7hW@#fwG' wGg PxGiSlli,nLTN.hT!?e0GM,buzzl%ȷ|l%H䞭X+"F%as{~H΂r {]7g kΡLoGGwa|"1{7Yӏ8o+6ZY={oީ2/@A7&öt3p^( 43"ւwIyp/>Yk;;o"ZW, d яNDZ' CH붼 `'o @/'LR(be=!,qPKR&*48Q:H(#M$N%'ʄP `Ei5"x_,KalnG U7s3u"3λ 3Ή+33+3*3N,fEX̸5qf% J01`-K YԐ"Ӡg^i͢g^muу_*^ks浉WܫyռQY,4z=}̽&^jsg׳ZF}zևQtЄN{EM̽&^iu贌L MФ2 ˹~xbHNeD|y:ܰXFNfwu&@RaºxN+q׏ɋ{IQGLmSc+0znp-'&|X"g"O<0\ԽhC*+xi< >~:ysw;#,!S %@YsPn[p;ŋz04>`QS6M=}HmxXV41aBW q)@`l/ct0c1m~[}U h Jg~:5;#!|/(#6h7Y`c?eopT_`q:` ,n ?4&M1B]/Ze%0_OGA8a|Lò0fe⻡ /$ b8LRWᦘ-" 0̜ţ:Pnt9|ټ=>rݧOJT2{ޅ'@ A!p4(uT5CN3x /# j$o7`yd!)_+ 65f to U(.Iɤs I:MEPiv=lx#ˀ g㾃#IvX }ID5'p9[^~ \zHu]œu-"T' Wr뻛ˇQSm lX _wtSC~W~ /ia혫AU#$ d1i3IX;P3ݭjcIZ0dԂ%+69ĺZn,oq d7:Vc) S- G8R^e9e՚f*']Rҭ d[*3`n*D+5,|vMhG=ʩ9i<pS9FuS;"!¥]xLeM bd7 ¹4Twü:yjYGp$bW}A) 10vT:G\’rNFUhtExޙ^+}Zru2]7u ZSDcssIN6xQ^5Ѯ|pmKvXQDeyۘX/ƳxDL`Q:\E/JWG8]REɶ4'#3+ ! PPqXiGAx@I<^ B2Qʗeu'v0\ #uE%} !7ڲNjLI 1+ɘ섛M15ƫI)/dwa x½FyĵU1MW yyցݮˍ(*-/jrCe*{\ANPh܉$' 6tq[q])4`!PٯK409ļf40'_(qyD?(qDN>ʴ-nHepT#GMq#0}0,R8KbB|AoABo1A@6 !#8t Z BۍAS((<1my3i؆t12nz0W;nAz<df~'*B1]ZHGӆ"袉V Mܛ&fѻ(rS"1*P;J[0F%-7>T>"ݗEМ.Ldk[."nM$DF&zM@\Sؐ Չ0 #M I3հ I!iWh ~3,K4׃-Zk ar81cCjuXYL~D&bh?Mdx4Dv=OQ>M*-ҴfϔE0 Uz s1 9*q ^՛hċnЈݠ/.A#^|vF8x qB#UWhV V V 9m2Ͱ循*$U4 Uy7RR$hYk~"O,RV|VDي/\nihqzޢ/^MY²'x}svttg+/Sߒ5KQ}nkw؉2{)@@6&öt3pq= L`D(`DIYp/>Wiڷw߼=)+D!$uY@ɟ5a}i"= ?BZ T(8ABШ0IP0/I}SkO_ٱO3ԙ"8$S"KlLldx2QO;Hrb~W HJK)Jսk։`OH邬z´xv]͔ŵ+]0Oˊzhmni."0D]fODZ9ZHlQ=yFuF%hhBoW^vܧŰH,>WULDgye_3U"PElDL'ԺE\SZ:uM)(Nj]%ٵ`<Ϩm?GͩsAѥ8jnPI h[~o*S"]$T̐*a4@ʡ^ˡvq_7WOUA]|Xu4bugWcB&!Q`(PFgi`hDc(9"?a? ?@w@Dc(? ,GUPGs^e'`eĉ2gDD9DD9DD9DD9DD:"~*$S"F(S#sE?NB+9lJ=cs /:24 fC,f/3Ρ*3K*3)3L,fܥX̸.qX%  I01u`-K Y$: Ӡg^i͢g^muу_*^ks浉WܫyռQY,4z=}̽&^jsg׳ZF}zևQtЄN{EM̽&^iu贌L MФ2 ~xbHNaɾ`TyrIoIB$t4L)YLdYI ˯ade7)V9fٶ6 Or !F!f6[.'Y8&Rz6'ƥΊ(>Nϱ8n8"/QO$R`AV&#UT:r`l&&,[d.NaڪVtd,L܁BȰS]`1NnR> yg,py0Isq*1>,Rl)&Jl.&H,$Kac²qEaDё2a/vdL;_/ӎiGd#LYf_D\6xVohFyahIxG4r !]<>sɭz.4_4S--E\yi=4,s|^/nB( _<XU}FЪ۾^ t}0,ųzt3㻺[h2Ct[*,=|0/ |31yq7`kč6? #XgK ' qb‡!>|!C\uNێ::1>L=_K 6V 7AJS9FٿHXᷚ v`hL90勇9iaZ{XJ5P؆eE6*tu Rm"< V"~>:QAw0IZ =?@cX{o 3?3?kz :|/(绡`w.pW GXo Fyi#X0[2inH$YOG  QLQR>JŘiDDKlx:0F9v:!v8 6n]!PF%WELF"md~M6R) Kol ]K% 09M(BhPj$Sa5 !x(Eq0_ G5R|3~}2بb(u@S3gŔufϷVyr-ȐXjNP;RP"FT)6ƹxU;)E9X @Ԩ x6w17])*Yv.7n0LV|׫ɩ"4v YPh݉$' 6q[q])4`!PoK409ļfeV6~p$s2fW$J72!xhƔSdH͓J D6 ^h@[-" Ɨ\ XP2$J+*k9e@j BgJBb A a4 ^gLƅq: \Ԟ0oCF)-)h";MΧ4Ꝃ&Rhg YL P rGea^q_)hF8x 4g7hċnЈݠݴ4KuFBNBB啎ٙӦ. [ݶ1}RԠ_\>i*c.i?dos'ff+Alc+A"lXU;rsEo3``׽nUFv0>uW킬G[AE{v[ |W,ݗ 9l* 0[ Ɔf&Q0kZ0z@ԎK3Oܑ7ov @d`Pg Gz&LDZ' CH붼 `' V(\b r  XYGzUCI6 N!'Hesĉ2DD9DD9DD9DD9DD:"=$B:"=,B:"mQ=t}G0rޗ -0~J@aA`ƹNbyb9qbyfbƹ[b]ىŌw&3L$9;^[ F}:9beIx};+|!|+Y̫.zkVVԫycռ61j^{5]Խ2Tz=’Sg׳YmbvQzV˨R0^is贉Wt+:QCiTF1w9O7{BS)ܩ2L[q0ix4"13İdl˹hE5J!Z2φtLőA{ ui:Hvt̖ eiiyT ɑ1G)oNn>yCU:fb1fb8:XTരJ,VPl[tl[tLXH::rOXH::_&/iG˴#eڑ2~vdLO_ {$92X_ wSY$$΀c#Ś}>q _A,i&q!  LHf_$ȑzG9?ѣ s=ڼL/cE_օ=xJzϻh?o߲?eMeE t-A{PA,W+-mLɚnR< .ˎnp|Ww`1a 4]p!:p-֮>~wǛ4č6? #XgK ' qb‡!>|!C\uNێ::1>A(l8G}3o/*>PJq 4E ? 'nS<C3`fa}wl~A(/q9P؆eE6*tu Rm"< V"~>:QAwXq: 1շ[]܀AQԟ` 5p=ჃEbr?.6h:͠7,H:?C^\Ge`_@*!<5/lu_{Kc"vi4f\%4/qY2Y $1q`$,`1  6?a idT@3eAt tH dāx*i<&2ɢ^yzWx,%0]0`I@:".X f8Yų"Jj-j0 ` $|0$`Z&I.cA0/e89`0 `:*Ibm0+ ɤ2LbZڇ%*LNѴYLG5G(X0uI\iu^,AR 9lɪ&IL2 fN\HD/'R»Zs:T2ݿcZl.hc1c`XnKE2^C,0[$|(YV-,f(5t-]g i!"DyU ڰCO|E`6l닣j"C,${UFC߬om.[T;wY9WAy!od-FTAixW>ꎜ.2i r w^f;zPɁ?-o/؆W^h0'{W&[ XΑPe}wsy_"͆U{Oa M7>}<1(f` Ǜ7,y=?ʰ#Quߨ8_y)ޙb["O"K+ (/)b k$N] [_9&B8E)a 8dhG_FEVtK=Ae",mo@"XUTK52N`bϦ'Ͳb=LRH \ؖ,.6+:FGr_75]}Lf-QUFҋcެܓ^ax,)q0s2/?~ p*cʣH<"(֭HToSԝ訆[^Y%1(z{n$t`U<4ęlPe]W9.?o7ߑ-t P u4/6gNqDT6ƹxU;)E0A( @Ԩ xvw17])*Yv.7n0LV|׫ɩ"4 ]Ph݉$G 6vq[q])4`!PK409ļv40'_3/@TA{Yue"H薢׼9"U|*M0rʀ*NZ'xN&43c f!]Z `2.6av|ÁazwXC|a#NazwXٻð40"VgjEFAaQ)W9w*SÃazwXC-?;LJ-`zwXԻzwwA 0.w{zֻV$Ja9\b'0Cئ5tD m~^`"n1w؎YD ,C[nȏ &Cק#DŽi eߊ!iGS"ӎiGd#Npuwt3㻺[h2Ct[B:`]?&/&Fqc3M-Fᯀꙺ Hcai}`?pS{ ௠]>~Iysw;#()TncQ,R9(7Vf8qEDi=T {mymzok{ݴU{mxXV41aBW q)@`l/ctcھ45vP=cY993Aݱ78^P(&g6Br ^0[~ 5਀kΟ: 3PChyjVR%: v B*H() C@AiTiM#'~ﲻ7A-P9ZBywsy_V 6=Wi]?/4T_ @t 7N\e5, 6n2k5D(Sp` ՌE:ꋬz*ږRbraXh2>`bϦ'Ͳb=̛ǧwb5P@X)`1qr֡C>Èx33,5 *y;"ıtr<{b-4q 7+sA+!KJ3 L+)BnQBwoo~\}VT $dEy Vwg?:$c83S@IF98!`[*;ضα#t]q} !URgx|A8s@ \MY2)@F*0N[0\_Tf$4Tjq_ )uvMh1?\_ɩ5-8JuQqIjR[=ʼn@ʻӪԀ*0jJȰClTGj)F{[zlen=`!IZztI4kөKI`X-hũ=,SߘO$ POH4!] kZ\yn9RGS>ՙ7.Gl*l1򪮉y[k[kê .GoVXI : ^gGд-yHes @6h_`|0,4R`TRB /:}9HM0=ˀ* /V'(AcX&mIud\h\qP=r'OC'|""'Aآ5tDm~^,@!ypKQXeBfu~q{<&su>1o5-NInL1+a׮yt7\6yzM8wk޸n9+0( jəp g1SxxtrWd|^ ŝ'NQ gOq-YвH"WYɯrDUmq*B"TĦJP$JC1( E4wdIXL/i<IG:] I!$46xHc"Da  R3 )|L?ލUӻ?:buto8sYwGEnbyAU-W:Kqc ^u,@ԓV+֏-珋ۛ?YK2h)rVdbu T&LfaډMq CU'Fs/ 5@?pdC^}r'/05-0QKťPgIqX\*"o6jrfY_[W>Z&zͿ?>=Iy4hM'S).ݠܺ4jA#%t7htFCnЈ@O"?I#}FgBލ,6F4 #SY- -_zH^ms>)p 3Y҅9hD z {bihٖ-sb@0_nϺ9ߎE#hʚ~EF"|-z&@>S`2lK<r6f&Q0`D.z@?,^)|me(Hw߼=)+D  jA}~Dz~2nQp>GIlY8 R#:1*O5&*48Q:H(#M$N%'ʄP `Ei5"x_,KalnG U7s3u"3λ 3Ή+33+3*3N,fEX̸5qf% J01`-K Y&Їi3f3YZCOS浏WܫymbռvQj^˨RJ KzO>^jsg׳EY->K=(:hB{E}̽&^is贋WtZF}&QhR\?$Xb;RSe6|=3tP8OnRѲ) fYCz%T"~a2HLdqT41F>}@RJ)92q O$#( d 3D3ҧ^gt! |js,,SJH;͓cEeˎ#X6ڬIEj8ˡ6 #T1KBb9[W8:6L'1beS8I'ÙԭI7-G!y\wõ6-,n?{u",C~"ıcd2 ԇY1frq7ǘE|,n1g>Yć4a&ݐ1]&,CքE~ 1a"E~ɏ #c7ش#˔i eii4IGGPh[6;/Yū)7T#F>ahYpGK4r 1]R=j^$G9!&IǴ}h kaoVW=7zƲr07֠XӏnG|/(wGswS2Ila1Fc?espT?uPԎ#X1qq!{Xՠ70%;ϥ:+zOҘr\c(֩,.5[BŒsZaY8E3WZCgҾ=zϤ43,Yv+6g\ݫg_cŔ}M?iS!G Lo<sH=S Կ)QW:YS,]Y/Bd9/+ҿ,+ȟH#ZI=a{EEvREָYҽEV,iյNl4j5umFщ6ى6Y]QԜMetǦ2JcSq%um"Lb8^̓}utfe东d = xަ۞@̼骼r4ɏ0Ne:fHỸ4¼lQy)ϙ a ƨ dVq|.0 NJv lkhoV|>(qiXSgBx9#:c۬ mtՋ,éD=щ(sS?aUm;"I˜Z%ks2Gk óoZv#~_}ǯkk9bU;/S&=W( mQ ǡT8TO`g^ ۇa*rvx jbl ]Kס NC8;Qhhp'j2a5 A2xju 8 G5h&(oTg!lW\UlTOy1k]͊ V5Nalɐ72| Rϟ'~p2 Ùf`h3;/V݁-}ID5'p9[^~ U^~PœmdZ'_@bG~r|sdGWua󴹿4l6] ˯ػ~Z_h!X_^+I?Ȉ4@97'8^ˎkX`z5ժpˣr(]p 4DdwְmNc^Ej{n jt2?<ٟp{o˟3yG?G vGડXEo^sp=| LgNܕ?pcg |/pS'~垩<3{?uE乷/o~xC"`h{W >xD~QxFƑoHA<e?Vi\$<?h| ;8*)tDϗڃq6%)r?1A>q~}ƻqj96p.3=yLԗ7grw>8I;>LsyĈMrߡgd^s O|7$0(r2τx[z{`0) Laa''?: ki߇b[i Py_}z{/_t'rr_T~@B_~sBAOKw: /Kܶ坪aӫAL#8CU0V/о*7~*Ci.r:z_4*'M08g|&$3Dž-C~_d3PC'Shoϒw}y\yx,~d~sO ?!?d_^^2篡UfjB9׎޺~^SuǓ:g;K C8<ӕOIAr9> _Vp)s%6].hϔea!94V?)ٗpW="[5"0~lG{1!^KC/!WE?e}shGbS"Ry v4)#I:jiwk8Ӊn?ryId~ZSa+v׎zu*u}o?uiqs>GNmZm4aE߇c.1}0ɦg+z-K_iSb70}y=/7ܼWy_~֋>ӗsJ_~_kYY18:rtz__+99:-/G/f/qt.4u*q5oWqo%vn/n)abu#1>7:0ar7(ab);ϯL7?ю_`qz{\]c^`vO_>Uè/kǡ[5lf abu#1>?Nk Sz׀\_'5K'r]IܝW,>!A<~g\pw>'>ζ^c_9S> xpI3ckt5(2UQUnoRx.Ÿ&pETk 558>k#f|̗\D?|>|>|>|>|>|?|?|?|?|?|I2 ÕӖ|@ᗔ\GI֟ǂC#?ϟzfCr{:{~>whڶ=-OȍO|]dvVn}z;G+N? Tn!%U ?ܭy_ Kšym:E ~v;^~v-oMngŽxo 8xŁ} ۻ@;ZV8QyO z:&zD&7;t~8ٿpq upap6Y l/Ƃ#[zQN>eУ Xз()r+4K"w,{ {F CO^R?K{;OFq~IR#<ɾMn 7븮cAG԰6'N}r'oa-(>؞io L0gn;dkE[7VeNq3]-u#wA[K}%-`RۇyGPmodo>0Y5z7OO hs |@ "K7 y{ݖPAz?on{!Reoek_7w<`K]탏Oҏ/OZG>6 GF?L;!x = =a ǃ6NA'ǗI|jRWG@ewt5!\|!%zW5|s/7=zq|&v~ TRݑw8|C E~QuiӐ{Ȁ+~?o`+00z^刺R<뼠{$AГ?!i{I{!2.p~q1<$^:{R=%0Yȃֈ`e~u< B?M|}"(ejUĐnop" LC鶄z^?vu'!% E{8' 7#O~@=`{sIbn{=&wPGiacZ (g Qm s4_cb2.kn{I~L||9As(2z [>k]~~a jN?=oCw1 ɑc!y;G>U(܅O>q{*C 7OEyk7&C4qxpL2 >%xoQX%o~7}}Oه|KGkyyo 8zqiƧ'wBՠ7 Lڠ7vjl26_ eؠ#.08-p< *Bu74 D C\{lCnH̓NzAwT0y}E}aȇtľ}G{̣4Ǵ 0k9A} ~h~?? O|?qɰ<'N O$q⊂&8Z7$vjP̗; w7ae]Q>q8Pa{7gyO{=)sMlvqHA 780qdhQ6cCrqڏ?l'vsJu{1(D9JJ ȀP>vFnH>b; C# tGoG^!y"_jli؀b <@e'/6 ,Aoͼ@͐$SE_k3ϴ>= FS#+;;@7PCC08촘9oՇoԈ_4>X9*hx8vƞ"{>gEU(È'[(FD; ߕ"~2 ^,o|w/*s ˤg44N!d+v=G >-`/{7 u?Q{ºn7xb~mwX< )/=`ț̲;zt" Mݻ_K,8 %S(GIpӵr /7/|<Aǻŵ*d,znzDׄ%rʞ(/PO$]ȃ:*8ș}/7G$чYŔ?!ę!_1t҉z2GJ7(ˇQ7䣒Z>dt۞>RJCLd8O:lF:OoYdοk'' uC/=umE6sgP@YÇZEƋcwHwS~}$4r;qz#B4暿_Oa&eg \g@8Vǒ(:I{C޽GE_7@N~Rt~WُNNTz0zq7ZBd^(0UUK 䮳q m໯P_ǞY}/;!5vnbnP> ٮ;N\n;?/ѻ?7ya:wxl~GgI>L?[>7hqrBC xع/aa{rE_䯾 s!qq 9Y8^|4~Zd @}w8Yv܁v >yT ?Zt&IS@owla7 ^ OțL/%op nϯ"N!0ur|C`8$s)Agܤ?2J!;%č\C~|K '%n(4|}(eR׷w߰-8^h~U7=CXo?_\ğP/yğP/g>?br?(M#?C?M?7P?C?M?7P#?Cx?M#>7P#?Cx?M#>7P#?Cx?M#?7P#?C|?M#!I.QऊamSݗ|Y4 h)͝㯼}cXn~t|NoD=Ǿ{Gȑk՛p2|031n.ĻPrnVWXYi\j8M{Xn YakWR-݁d)9C6na9Ѹ`HIr>oҳlA4M/I Lk]Cg-$qT15-Ykz]@Cn6ߙ$1PŮ;|/$W)'3̉Smp+gMa3Ex<FH X>W#U!.w``Q-_gJkwp xoR>46U;a$vK 8a>Uv"jȰc% Ajg#REP[ؘ_ ]jn,p,q2H[-f!-ZD/.[ 1TfbԄ' 9.T#h5V;e%TBښtcT?c<€Rܚ[qKVCpᶈfJ)Lå@0Dsן(K@l$Ƅ S:DQ$Ev21FC!IC[@. Qڹ:w6X'i6],f7e3uf5;\퉤Fa- yY^ZQ0GYvH|Ԯ+߬t6&Nd&OMKP|F:竄,- v-CBtΜIPEg x3v0p9@,CFAؼ;,IA0+.: z"bM^H%V+186zX. ݖVOډթ}Q+81e o*LY`XSjH+0+mҟ^54K]&EѮB$.eĸmkBv>pI"+8`&Ӭ#5@Wl|{ZA|ȑ^o`LG^b021=9]j}cNkN`ok$:cQ􉺝ĄahTْƲc!"~+'1%ukB?J9e<x"Ɂېn (-Q&%rZ2pGX@dHZὄU֮VK.Rn@oO6@Tf&55*= ]"V*F#Wjg \%/QBm@"kӽ(j,a.Fmvt^mʤ˜]R yXZmY~nrQz]a^`T!d9dX =oxʻ K5mA8`l{Ta!P8Uo" ^WDm ˢC'ޢ*vWe Q4xoZK_Z9V&)> V;/+BW` [a[C*Sy@s5?^1;Y'44F1r'"D/˜`i70ә R.?vew'}o5v׊j}Qye\ev-]놀i[jݓf"*SI_Gc@ ]F ̋`A1dwت6ױ*bh_W(6>&%y:2 %Ugi7pv0&ևRߞ:HɚƄ"䇙jЦur6 pi0(b0nkQfdi\4Xy=I](^=$>G֊4U'9%'p8īr~2I✟fJSK=Yfb{EKV -Nv@; ](\(Wld"Fb3IAjGc󅛐1"鐵`ْb 6խfCGUٚ"MyT*`8ddaǃXϋ&ZTe 'IG:Np `~˹ED}Do^ %rUne3)ҀU";bKF5+FҮfd^4-ikT p8s:Nˀ3rIJOT*u+nu s:$Y4#, F e2-kbnSPR:;=ʪWN5)L-M m`}q`DzAj6RYkv-+eLWWF{ ΢ SsNLGivCq*phYKWqfܤZu-қY[+PY"5fﴑ(\͍`7H -V/*Q*e VR^ږjٓuK~'|Y>KH Zȁ&` % E359rni$E9~!|;o[˹ƆI.ց ;X8TCCR sg3i i)\minF0UXz(UՈmG]xPA|aPڲ JƩu:4fV5D 35 bäHOfl&%7&VMra01y݁*A1%F@I!-nq)YfԓvhdRHr2p PTl1>뒃E=D+v0䚰m2 Pv EE9Wugc4v&$6;H*Met84p놖,tr٘Ùyv1ZJ܆4[c͊Ɇ +iR ,0fZ^nz!Kd#i53&yD؃ʊD0.}~5l#XTcx/'vh Ǩv%`"9FihZ _cܔ^MȉஸK Q%Æ<3z^Kj`؋6w Tf$Y%Xjf")-a>Y44#)=oͲC=ԅ1xeho}:̀ٵiW|wm0e(f'J| c|n:xcEnMK/"^W-D()-Zq ur21azL隝٢#M3QiKHju1Ǡ96MwXQEi\bE}JAe-ڻl 'ZnU$9ڵ lSyy0u)V](B0{F5^NX(RQWr})TxD憣5ݤ a`] !d][𽯖QX( E`h[53Kl]U(q(]y5ZEor8Ύ`Lg ndfOH;lwyG֦51!| YJ W:1PGJm̴m׳Ӽհt& AKLeBk A >3Da9L7Y_5|XeZj;/IOuAGBQ\kl$ɑm$(L`ڲg엮(lL|DG)rFF#&r< f^u'tlaq UbV$NǍQϧTY+xh 3aZ8j9HB:6chb͢ox_'hYCJ^[8w7LløKۙ$_GH>3! ]ci.5;1Pmo= y gף`BXj,%c}!m N2Tˎ'!?EHceJh(*vA,)UZǖ*p3jUDmrw]{TidiO@eǸ3teED$$"O?+ClzC @m%JY~wq fx>VoQ"Q5J[%g5KsMU +oFV 0Jr[U+/'t˼eL\1!+2Ƭa,4"GTq#𦵸j 6[XT=絙tIl#lZg3nLl6dܺEw Ś֪>ڱ!2l*dWe4JA5c.aFhcݩÞB ϨٶM}\70 )Y]O4_yp{,bRp(ν&E4 *b !j:g+s(@@KњvSkeI @UVmv7>|2k #(~=#a6^Z ̖s|Q[Qb;q!,ex` l3eż? %sӤ# %-ȀJjhEmFhR4GKf॑imx[]m6"|AI2]=6J5=P"bPn'9z 4Qذp/alSN%n*Us o\+,cg9TVlyU\xYɱ6Vws)ײvkvcFܳȡ4孞fYni,sBD7&$I|wZ-+Rc27wۑWxPjfuXNAY DhWqW$vrE^"kE(ݒb"-y͆QcXYᙏu8,_zM bjldd|1^"CRiu/HRBmBhW/r@u_ c5lr5m4̕RއJ3qԴ%BF+QYQVᴛo#Ѝ(̖hlx zF&wqwЂh=p1? 'cEFr:Z!20ygLS\Vٖ՝}C5&ݎ㮒LwӚ<:f!lY=Ml)f,?ɴ4 LVjF0eϢ 5֤ EXlă~Q^ EF!ͦ0`:yYb+zx8+6_٫tۺƷ+[4Դg]QrhٞІ*8_ntb]*GJ*]  NǨXʥJE[Ý4Sf&mBEϖjxl9QEzܒ(!&vq[EVZLMTFŘ#ԧ3qz0-C@]Q勢i fDgÚZ[JuTrm؜a5,e4uA;܊z4A}x`SЭ+2 ȚRXss(hEZ[IAE\{DYT-lJȭG0 75sj[x:huu3Gs%4,$u[DiMZ k,F$EZ qᕝ Ķ@v8/Ks+ZژÈMfFdR U4e6+5ǘ8gVSoиڵ \bѱ l3PtWDEj;YUW.&d!V \062`2B]HUF.4[ cUGXfmZ42ff2KgMŝaU'\%>5rHW nD-7.el6\&gz*xnA4RL~CDE9dHZcȖЪMm,5E͐qk(3ۯ5"CTw̦U"{"B5fO ()N{"QY,zvDhڌ[m=F5a" SaƳ]7Zrkm墌E' #y4Tg.:巺څ3 5xpJznL0Gq7Fdd@kTCKm pq#SpЂt8F< 7ZGh&uBʬ=WkIJj!\I4ɝ3hF|RV(I ɑZq9Lw7`4/ޞGS':C{bVU':u 3s<-jY9015ɆѨE=q6Z x>!+EEV,ZKJӖC?QD(y1lFY0[5P12seCpM0V+&US k ZPՂ(҆tbНvg]`]+4No6pS'5Oac >HB>D=Gݨc!ӂLO@b' f 1cr@5I ,#w&Ai5Kd|۵kxt/tBN4MM:i'Đ77VE5)dnO6 nR2NrBRUk@A6^ rgY* Q*mRIzf@Rf-Ljk {xN/յmF[Őq"Cv^r]kf`k[ !9ZT.JɖR`7y/,v#6V]Z)Y!_b/B7f.Cfn$@֨(ZL/nlؔeC*J2-tZAjO0V8 -WK[uz(lj xqZpy h6Rz#MAxKQ8'zKAFp6mqgRn=OLf64$Ev+\f[WD Z优b|o{м M>OvdO\DըY@c) $fɍڨ4ao}aQ:Uͬ;#u %evU&u^ 2򞁘3maVJ# [#e+Q@Qېf0^dq>Oavac:@ ='L|pEh_}IP`B봄Ͱ6ۊe":@'F׻Iauyik[Ӕ]{JބXCMYfT^iAR$oO>;GcuY{pFA$C]J'H\⚤MFT(,N;8[)j8SchIw1N7*[x8q.w )3U"OUou<3cptC~IGV׎8c B4` {7$\u"OBAUM@N+ߒ j!&ߗi$6 cM'S\W&q'V ]*M,/Idv7?R5<6@Χj<gs}iҺh)(Ѹ8oN#uf.v`ϑ\HE Ȼ~%WI80߮CoS*628om da^ xFg%` 7ˤ4[um&G"H l3pWr/1,o U @1P8ɡn]}IyaX,F72P˄ JCƜxCYFA\g' ?R%$ .Ż*OT-˔ILyEmuLoEB뾔 Ꮦ8~%W~#=C(/up L9K3U|E~lVH&#.;d"=PNO,Ih^kfk\wÏ.=SUI ^71^B>F JA]I >_Hj=dz7NGF7}ޘwn6H%cVek<.srMŸ/Kir ~1n'm\i 6 {|pӄ:ͺpVm,Jʳ:/s]Td>-=^5^U7 ^"I~&Bz[_B@o@q̪p ۚ$ʡ.PIV$Er#ӕp?_Nlyp@KD_и?ģ:o7E0JiZIx:]ZV,{#֧Q"|^c?7WROk)2>[O&_wdJ? cD-㪓"|+ :sl>Y~&pi6mrIm7?Mwtd|cW]Pe;[̠a#U 0]:u%(l~j9*w8iU@7$1Jԩ*7С?>2P;+bd-ӜSI\T"kH.~Hحύ !Ϙ 7$5[D*c:3sUXEɪUZ sLU.sG]~KIaL+i3z${odD.LJٙ 7?%ᓽпy@Sa8$<+v3 /yb>8QH"gПi=0 bCzsNi,jۈ؎ST3Є0-ɿgiG;4|@-!ua!cx&NB*XcS)y#7xDU b&sѦDP@ p4T OD ~ _ypKVrَD7#/pVFSҷL!7@{xxShab<&>%-YpoKH1JP"ɇ\d[7Ě줠⠙p1wwU,]QD 494y+IR'h  `yܺ7Nd~۫BD4tT1mNn- v9kⲿC~sGꖧD'<z9mƉW-.VuH %#3$lUbϭ?F:cO Ω'ذp^ZK !;f 9_S+A'uvpunt Fڇ~{{6WeԳQg?hs(H!$;Gۢ:ڿ0>ӄuFe?7;Viӥٳ,~Mg1*p|y`eŤ*+L>iU{UL}OP9"n-SzGF86(+)ytg#:ҾC$CI;!Ieö!O[aOsB?w8RK ʮvԻćONq )JxKd1'\0 An13o $ -8;B<2 +/Bzl}edh'Pk~/ƹF0X; eoq~KAuKx1$φ{VEkBHϊ݄wwDmC90$^eC"b-x'#$-[8!`䛺`&V5yҙ(QvtC UM|ym%# G>/4EЇÂee#Z-٫](av)RY'p,給"M|NF(WH\("\'T4 XpUǁHao%`pţpPl~O]{$w23C9Aso0$;1lDepL@ !AÎPͭCaMU>w c`SUrP6[C&bvOzep`BIOxS%B3'k $p?(AsxP/5ƼJڴY#ޝ2]`V"בMIt|`ac6kI&>C3XS2WIhn%w7HW~ {1R%j#'Ǒ|5Hm/v @z .C3Kt?Q&]m>V2I&P4Hzw ~g_WE'CCzsZ_z Nz@&@¹y`C1J*JXO{pGUE:՗:S`^0mpZKJz{ |=w& x$;YWA#O \f1X )rD$ 2ZK|73!S–@" U(@Iz۪ S2GZ@F)˫M \c?24FN eL̛"dA|7ژHe bG-$ 3-~|ya+ފfH5j:iI] Fޞ͟ +N| .b3zƃך2@6[3L# t w?~&+rxeԏiXH!^4i-xQBJk>~f^ʲ]Pnq"t=>wcJXKQ3zuu_JϓWg"^4_s3C=/O^-wҁ )`*/p6>u>zvނ!%KQ8G*)J`.8α24ӎQ8^ȭr"JLM~i[@9i $'*b?bXw*qNR` 0l_d 2=$߀z ;&+z7j3Trf9s$3Ր[U"(*)~\O=`^Uc &n$d4!bu$TV4xevkg{!ɟ;(L<:EȦR7S7YNQ̶f\Z5l,SZhF񘫚>:jP俒"7-K!h`t'S?NJ" ) 0TF(v4`+8+ZBb;DʀK0Ӷ/ΕDbשT𪶡P!XqGU0hV!?YomBAHɋD!۠)XJ"Cjч|:&|jjN1EI2pyPs6>or~x ۭ1^[kђl0 -]f&g-{JL @J=2֬u%m+} <24pb84lz9rZٕN93rFtQCOfD_ 0t _!1GBu oNJ U,IO V1߱3JKr[j]*ҫ$OQNѻP 7MKTGU-zgi&Og*7/e S&֠fvL]Ar 0Hh5|ʾGKdO1™s04{kN/%eI{ v=ͭ 4eE3ț Yiv7U{;B6]>2my$7:sXwM}^aJ4V~Z7mN.<4m{883) q=:x U.5Ovȋ;> iI]'=yg^om;(“@"`aB6ě䙯tC=zqy>^W+кc`q&NeI=_E6@#'_q۟d8/NkwN{i4ǹuA^eWG^{2%|4NlM94LG^~w A(d OoM[9*"WW<m+,ln@ `931_ ӠJ}W ÁMR]}4 QMmh N# oј"e͹EH d]Wo.=khňpըݶ??#\-Og'ԫ;Fm- فI/RL̖zV2ڧ~OBT˵n;x}%{JBr>~{} GbY|"wfPDiǕWǬ?߹B˪uR0XoxsDUS2RߴHD?/m_r#eGV_5q䨩x͗#xEjcuΙirt{KVgC{f$Fv.sق%}0{jP8uJf/| 4IW (.G< G;ֺ8yXvh*{n+sݚ&RQ 8ěP[D]+y]\őO&z3mXUQٱ4#ZD5YvQ_IoV, *CWBl[(~֦c)(L"`Deo-JTC>p!X\.2^RpPVòo'S27o~kY OM63|L**{R_/8 O>8Mk.yL%e%%5`Ǻ/_[bXHC;ĤG\?Դ)Dzgh'or0$h$Tp%fFa_/ J_e:M~ 1=6_d~ek !yZh۲,ڐtyݐ6L@#50W ͖sĻHV M8k'lF yDf'hs]3iKskI9%o!8m^W>Qxuz37{.bLRԝPOV;(~5ROYq"3g|ϔV7c.,/oQ`J+Qh3BY{k{{+!5vZ>351IY_em+vu92~sD*`ݵ(> _ UZo57>NFB"#4!o2e0EUymSѫCZ/5n gx~*X|.G |c*#Ōfbᜟr8!T-۱K\}Kf=E O.g)+3m[wcⴈwV'ӏ1;ԭο3(zޱCVL= Gc;N)ǟ)].zWKֽ8oJܦTP?V̱ﯦpUVl +݂e)%ʅV3}4 k;pٷ*k?9  $Nv,`vyyP%b'6iЮ|u~H~~k-ߞ= _][8lCBLdatk"SVq:?oؑyU~LQ tɇ'WiW1JRJA Ň)ZPOw70M &{mخ\67o-eoi  k|+}|ԞtnA>wnTA볨5BxuUD6g6+KW>=NH ay^<0eN3T(V^LYchgY8gv%U([|J;u K>֒j;8s޵O.d&~ }Ru/7jhf[I9 ;؂~./| (la0h7 C\.L4 .aQHCQU&|Fx ^5^c!S:.5_}h;ir/h.3E,D b{өr<4A4$M JTfmMeMV2u'8 T@)TH6Wvʎ!6&;>tIan FB8oYCuf)*,r\落-gZU??7Z8>8C'J-ϿPm ڄO8StCB̶. ׹D~jLP|4oJނΟN&1fI{V0|+R4FBUv^D&/ųG2 kӻu*5lIAN8ǘ Y%MƁ\AUF) N4aN{#ӫ>b d/_s0XaCT]+i^wW˘ڌn'Ps:0#.I nGBY$8 1?oyx6P~3\۪{9_0F,s?}iP/WfiV>3O.ԧe I?C6=)d Y{xi,-h(+ĚCnwK˪ׁ *y:YJ+Sd 7)1Cȫ(OיtȢ@S"tO)TВcMYmvxc^ ѩx>I^lVW=OK\ >O0@ jTńlda\%#0m8_ht{BtNK r7;ث4ŋ@HNm7<+ܼ_5<,գ8Dݣ@V G]L}¶IB|;tT۶ɕn hNaU+Oۮ'] wd]*M:qT'+_2tdE!LB'{/SU%9d6  ˊCU L_tJ!|)j~]?u)@@Ǜ5(`uܐ6t_ݝoR@rw;bTLv<tX24^E0{aѾڇ0 UIm)lCe,'*ٝ5R-$ߛvleuyVC fcXq5~ X|/#i)) _Hy4_MТ ght޲ttZM#"HP=Eߨ8sGIq0Y0^ p)n#Q# K<jM#'l3I"4Ngm-7&;mb 9^xh ;R` `!(_yy+Gi֞s 1G}0ҷȋls!4 j:g u$wo?7T1 n?ԥɄ$EϾ3A?bI{]]~?OC3 jxgE ]ɓ<\XTt;6Aګ_|-ķ$-*Bt=U}o;ۊiB'28MRH\e?(R8Xl+ڜlUt9m9Glq-6*Ŝjޡ)&KadK~E'9)l^vgtIL0,~,Kcqő(l/LHEO0؃z6F@|7hvh|ݨ 4 MF醣(FG1Ǿ. ٚy0i> t~ay[!|N^)=ԊЍIW_nӸil៧ӹ,㛿m8<Wb9=^JF{y Sal ߎY=^xJt$`}f)|Ǽ&$뵐xd 5 vxgx|Nb޶@%DBC 85Q$rQY_]n$ _l66-+m_W(X:m 2%!aF$ p )e{t{jy!G ,Gi J#d^V|9*۴Sw^Q>LCƷçεNgl9FD.Q0joc^řUcl8bjDL CJ0<ڳ7 LX})xtsFA4{VcVSE;|_L j'Zh%rN@w_ gzLݺFuX?1lÄȁ q S+?Oz1 %gR"SCR=U}xhpmiD<~A91;!r p``dtΞ􍹀xX(lZ<؝ "VƘŒ}㊕؜kTXq )y"='>e h[DY 3pM=h,ZpiW O t[|w1Յl5 6K$BhFD&n+`XBPP>fМ9v)zw%~pD)o&lyw7`:¥١G<DJW6E]T!)՛A c,5ɟAb-0^X`Ŷ3A .Kc)DI&3G,t4a&D,:Pik >|+S]U @Ds[}CR4`c̐a ֛ߙPkr4x!$ĵW l'fe"bL^XȵB4kWhTnqs bos&PA1+ƶO }y%wlv"7-i}$xMpN=|5fG~$Mb3qs20PE[^^y`ě93&YpԷ4:٘ γte I k͒c6[| 溦F>. XU7ր$V3={˃ܣ'AʈVxohC\y3]?-`B͸I1}~Q<˞[l ;V*^D<}bK?]ru^e[}mJRw4 }AYuw=ǩv\Tdʸ>>x1mX_z'\"L{;` w -.w2f UeX_/uUݖW6Nx(rH\EvWsמ(aʼǤ$OVpUkFA%| dV92N:̏ÀF, O\h;ˮ ׶߻ؠ=rjsy g$0j)ϭt 9͸,TRˣux>|MB˝ѥy68ltmf $&IpM0>psPDl p6-͑%nQzZ[H:7 NA4\)􂙕MdAq#'ĥ3#)r=N =ϩN ̢h,ݪZn&꾫i:BEP-y,v$6ಸڇJ٘6J`D _7n+{/,<%z4T>)_eY֤yR2\?}# v+KjS*;Zq*ovpxWYWODC3<K2yY=ƉR:>lGRaPJclbN@{aOǥɹ/-Z _)1U5+=S}=TnU*]ĔxR ;7Yh2Tm\!( ≅wܨV{ p8qg8=уg?7|}hB3&rt4şBԎE3鵋Ը#x<}~ i*nː+NK< \nT5k458NY4S,zL ;i`9%_%%*4)Bqء#w%> 6U[.nLBٞ_oѐvP̺h310gr7󓨰 a*P pOptփ&H4iOʉBkռ.LNoܝrL}kϸT!<ٍ>,A/qih|273 Ln~JAU~ѭO0 ,rlNMcxXCT]、^ͳfˡnY@iVPT K5Yq?o'- 086m"0*/Ңtq%H*rKޤ`~;^1$KGr%F0xLdĊII k}"h<Tb'X$Up rH< nP rf.޹VcQUX\Բ*K ;bqV~Z#s~=G16\KZ /bdbF\};i"gp/Pz{Mr|톊7TbPDwmӰtpJJD>SI幅_+N0T<ʆ0=VajC=\[ 54: ӂ^MyӾhbSC~ymAugAAgTŖy>.LǠs4 .0kOM{Q?~_!)ǞD62P|QK#o /ҵ_PgK67m[;0F|I_ID p6,j-sp;5#Pg( o=ņGpЬ/H~U9_ <"lmms-1.0.0+bzr2569/data/projects/Demos/AngryLlama-NewFangled.mmpz0000644000000000000000000002643011603573245022515 0ustar 00000000000000BxےF`+3c6UUcKom[ؘDfrIf̺hmaM?I;Q*BRi6mb\=q/oogz.__o/zz[O'w֗!\bt~6jdW_}Osg]l_=M]I^s5n~[/΢j]/_/f͵5\w wMsųkz9|uyL',зͩݳ$ޜv}=iu󧴹jrk^([ds.=vﮨZrG&x,oz|n\ݍ監nTId쟲w]ہx5WáhYvpnrsiUUE3V./O:{h|{}7~l2^ej/ۈJ^}+,nM~()9KnךFwz9^7,ԗoG|7]LW_7ϻޜm̛?uLvtc fퟛ؍.scܡ7yݓ'4?6W/7dq6؜v_zk6|RǍȧ`_wtsKKϵӃ{ d^w7'=}d~dN'ӻrMwf/Y=j,_^׳tn;ym,ӠDw۝|s޹`c?sLzԷ߼%,ꫫXmM, p z9ݪ؝aY5_ҫz~ت^_%r}{Ҟ{:KV4UqӸ,;yr4/ty&. 3s3-b e1}yr~mzrNNP< :dp ()$\qVы.mi؏mexv_oisʲ<4Ͻ]l~&/lsחW> Xͦlg*n#o,(,=`7_-9՛jq#4;$~TCy8d2] *):oYY l6ǽ8߼x> ;4;s|xqӴGZ~\~\|4ߗ{6X%C=wI%.ےG'UCO 8>4Q?wAC-W? `;`K4Nm`{w,;T(I,:r[{׻zj~ z_TD`3'w%C,߽7P= @=@b4RO#u:liF#4|H=M3F1ROş<!#4A|iǞsl|:cywlAckwl7xxGn.v.ц=S?tz=o7vzzf^@_2A=8_N7^ֳz3y;]Geyt3MM=߻h#7?ӇxE#OcaLMHUdռUt,(rcmI̍ r|gcJz*z'7 \w$Gp:z!t9>E"+)StF;UUTiáNeb!)C֊^\V CvgNCvgn$Cv+vk`ɎQBNDs:׉u"jZ'9u";Yf',P*P m8TӊUOm1T#lPJPS#TlábZPSQjvکEv[n%v}JT:m*vNjv ;]b2*쬓+TL]uBD*v&Pks| cTL;+C*0w+ ;Q-:C-SPL8Tsá%*qJT\DWDe\WASs/ +o/;qJ9J>+HAx>+C}Q߳n,$]#M@@$p|87 28Wy3|% ITTu™R8N8Y':d]'t uru:] Q I;K9k' rN9pM9q5ԝ9w''u\g7 E2N˫]8//%擌3(9UQrNu^'Tނ:sTzIrTDaγo<*Z ؂98xNIY81 qpy816#yX֌X :/k`$Zgr<.L'b@jW\ iF+iU\KҨFLW4jriĄ1Wkj$'(E5qUM7u5q]`\/'*z**b̥9hn'D T\;Մ)YuނD *TP\Bg8yá+EtX1)YkcXcS. ^A TrEXc7ō 2::riY jo@V{)9;ñ+Zk~΂d7`nL>riaZHJr8$ ׅ Tc0q]cO;ta]T8cǙ @*qJ|mogǩ5>=̈TL'U8b3~681`318~Ǚp |Ssa5>DX4t"ZLi j~z i|"gr(X$'5>NSPXP5G5>ΤǙ%V8̈́bOCT-VA?C[`> i LԊ sA7`sZayLю,xC90U*t3a&WrspzN>G`+7FXbTa h-cWuXrVC0i'ScWU\9VS Xc>o(rQŚ-<Քo#OT(]`-,`!bv.~ NPcH 쐐AZ5c*cc_=j?C}`5":fo/ LhIǼoۻ;Vvݯƫ_O^4_U7ķ=HlZE/aZۯ@0aaSq{b#rδqS@.uTVaN.XW, Xʅɣta(#lW4FYr( 0 TKQ`( ݥb 0\7eEr, X, c"P@yP9 G(XPpY4 c.+pOW1B*FIV]9b\{a AR Ӡ*E9(ƍrs) BCQ'd;,GY9p( fp(J0b( ݉ GP 먒$h!^U pD1 22!7` P뤘c ,P> f%b8Q&ҸKXeb8>CXbA9 p(mpt8G(WL*P&̫X#q2Ffgcqݣlc0w,6r8a4Q&C(*a<Q&DraP^10םFfm LYbW h8r!P&f-/Mcpn0,lQ1R 06$$Hs[$b9r[.PP&e#=EbAP&f -,H_xp crV9r[b8YP$C0n(B9P$fB{ ł(2:RGp勜`ln0zӥY'RMF]`^nanQw;`]Q0.b]VѻV3b]%m0ꖺhϺfg+5 )ݕ*l7l0讌13CM*B,,ۅv)v#BF\Y.`sV Ѵ3{aFDPstXA( w@2keJ WeJ]x%l*@Tto'3ȳݬbVm@ H2ITQ[%ˡ$q\X^`r( á4CiH2ˡ8 ]arܧ.JC0=W e Ƣ0P)Ƃ,= &NL)&J)&NIXb%!rr( r( Å}-= 4 Jr;f Ű`,X I;1 $nP = &,P k= &,0X`aRŰ`aR~!ƚ/l܈Pl/`A7_h< Bn/44},:l;f2`AjqJBp( 86\ +7`lá0 &  bŒO \0,q. qmOa04pugk<٦Rm@[+96~ݗ1=5b85b&Ù&7O}n[ @J}=bA> Dཷ !xc(B1Sbj\W\b8XUáL 28s,X aA@}GtS#F$Q#FK9]aHԉX R11X?[ԊѫܢV g7k9@` ݨKHXBb9igf^uc8+uc9} ưuc9}3+ߔˡ@ &sa6ހ>=%bAQ&( 5b:1 { Z. .ZDž.slz A*@PU(?Z!C"y)}.xQgG8mVHSkG8lN:;kpOZ;l5uv T#U>?u=|5]^–zc9\pv01}ʔS.='}ϖٕ91Avy$Q&DAb)>Sd=0T28If@1 Ж n6gGZ}(끬- \Yĝ}CnlH *BmCAK`MA#[ǡC`kAy"u 0kpNprN_90fLRPCi"P98lP8o8>/'y|á< 1R 0C9N.LK} _pȫh7=Y߇J:FɌB#C`64UC6mc;$d”eSCZ)C&`@* xYse{+g8'cȭv\wcchƅ`:&`#R(NrQ5OP[L\c(1u* %DB[Wcy@*.qIBo(m|Q^&V\+qQBb@&*CW+< tX!PKe q*V(`{,j yTPǸjC5z B8jD5 AB!V; Yʟg8= D q,uV(xE\PR ^&XT~rBS"s% W%`q+C>e{*C kbʐ` \Bj B]?/<񇥋ǓlQˆB/Cc< )h-E #%3Ki3gɻ/?mA1kT{ҎLJS)73* ;J {#4'0k({R'㑗@Gx A-F A|*O)|4҉RFDhH1 eB >VRaJ2X)+c%E1 JJLŒ SԪL堜 rʄe`e12rӽQRƄPF$!HBJ" EѶHBJRg vR )61?Ph;݆WF)΂"*rgD*!-O@;l|\ĵ"n{ vUܺ&wB֦Ǡ5969l"F)m4!qO6acS8ZC V|$5h@k;KZC֊$*E„gvsT1^5i=xqU_]5۾ Oڃo2Qkb|I=_47,X_.&ۗQ;noq6۫Eo-Hs+[r1_/U#:Nڪ&Ξw;+Gޝl;罇Qrjtbj|S'kt;W('T/3؞E{qQ5W|Wc57wy}sZ<5ynPF jA>7s^}kܠy͟%^ jK%^ jK%ڿkA_ɠ/ڿdPx_2K/^jRKx!/ڿtPz_:K/^jRKڿkA_٠/ڿlPy_6lϟe^ j2eڿkA_٠/ڿ|P{_>˽/^jrˇO{ jrڿkA_ڿbPWx_1+^W j +h6%E~-˿/_~%b}vV(L,6j(+6t<_Pm?Z{G߶ϯUd^Hhw[.ڢb] d mTz[Ii.*FTu}~"⏟GgOG~C4>?Ogz}7oI./_~f};z9\?'`h|~<`kܬ볨2Y5T _V͉9M'mNItY>o.7G>8^b.,jj|;^LoϦYџW%wݿl^'Yw@{Ou;}>ܝ\vΟw~rnJY}$6?,7'/gWOIV>iݾg5k~P^TITETghFלy}wӃG,Ezl|;IϞ{3]Eb&"Zߌyot~cNmik' 3iָ4.6T'Omԏ/h|]̣es4nN;]Gzy8VUF-_jfk ?uٝu͇avK]y]\Web~~֞q2?]o?z=ujlmms-1.0.0+bzr2569/data/projects/Demos/Ashore.mmpz0000644000000000000000000011712611603573245017702 0ustar 00000000000000 x}[s8 'bv!S"uQ׆۩rmeΚ~a$$"$KHxe%Ӓn3{q ۅyp~zmLP?yiճ]wߢv>(a{yY.zµ/-@{L(at۩gۄe`a*XΰtOL19ma}T9f[jX'Ë.a^O[`l.sp' ]g J ˃-K?z6,s` X^oZ~+U<1BR~MX)ciYk*%LIc۠w\{Tid:jQ6M ?\Sh: M iasB~.u_tSoz} 8Ho?7+HۢTWS{+S }Sf$q}uu{x ߫dp6p>YV9@Fh&s}ˇv  űd8 sqE;WGW9( Sz e Y23,8EL#kNhl^K;hq{)-9p~C\'QS wk 4@-go)ЀL*~D&^"q~ɦ;|yP# $s{𛞍&+(Aײ r+b+i>H"`P`A7j2ELy_UP*=ƅׂ&S,P(piJ增h[1 L[3HD\(?-YmЕ..4JG6DFkO \~]]_)W_oɉ@)gy "D dAՉ;{ %u=w0xGA%d` F:H4 GOɅx4N O#htT6\lUs]:lrz&,iK(mUgg[ ǐ`i8_$,/vNg!3 r 4aRֆRGWtmI𖓀$yFRi HRDh,jRiUT%!(&`6{/F>kZrwzqʲk[/VwwWTk;>wLĺspMڔ̒wLFyʋJm€no/op.ZMڠh=`QoT,@i)&1{=ܓi< w~٧V-v 'Њ*kꯘdPP xx#hxL,~_ެJB @_!LA`=C°Hd9 BW5((cIq؎t&ռd0ӰwyX7KE0Z3#,-ϗK~ş OP{>L团 $TDe)1 !&7<$4f[DIu}pZbXݠAQVA! (??"ޖ=>/Sߞ'=Þ` LiLȑ[(,gx|[s,p MvGe >sn#8RB`lhy$o?h?6TFTi6Kt8Ui%l>b gl۬ gp fRX>[4:/HN:PPm.8<38>38=38?1Ӑ<M#AHlhlbbDׯ˫"1gĸE,QJ(8۝!T,yrBuAP %0)wTw!0ǫ4ͨmav 4sS`8!~{a*.8O}mmGr>?t<Ug6ǀsSuS-%N>@ou lTH"ug:D3C;i ,}/ oU:vL(1<6"#}4xrG)a!P"VV^hH 8VbH:s # DZBpHUޟVr <z̪_}"U>t.j"@p6ƀ ߈NO'`i't)a΍ ǨOLYt/UUf0Ѩ"8 Cqq*`W]Uz&TOX&f FIWl801HL-0RPY ƫ0'̾̾}SO81ČkgH81Čkk SY81Čkͪ݁rbʉ)ڔ)'\S.sa\2[fbLl-3eΖY&sIZHh!ZHhhh4ZHh!ZHhh<B -$BB -ħAƅTIe9 Ӝaf _Q&~Aw꫱3:f < HKpavÊ'+2+XdNwF팎z;WO P_ m,d Xt<=zE"An he_/?lX@ѺPu?Sh:::ƫi7~ -,./5{_?{;8})ԓn~ӳ|T O9tQCdzbG8>\>%H4$6j.E* Y}yF@lj WQ,mPEr.r! RHlXmG:\@ui•r.W92-.Jh!naeƈg d`rN)SX!;S[`w aѻoCw!Cu}P k^5+K-0?Rƣx[-R?uFt\0ǝst&4^ǯgA:v8[m!46B= m%ԻR);]p >p>p'yk_k ~-\vǐ+|·/|· ·P˫%t0ܸ·ψ5Dۯr:$Ehܗy' xXς,Xς,XN\wBuOLR*FէHץҬEzYcM#ĻǚFw5k=ֳd=?K׭ܧ}Q:O(~SAJ֐,%_.K|T\ w@"\u)tA46[k>T.;I 5&X$iKi}i+eƃVI:`/,VIҘRӛOLBha&: !b^ms HՔ@ǚ}>?gUxuhU;!'mIڍ2Fi)LЫB*7O2{P8$ ]W77e!_<+/[L XZg+ "+2K4OFgSt/s0_;xz]*) i%+jc0g_[iS({>/J \]v<=iW1c)kO^o 'Ӏ^.pџG梌+QtC>?3`Zw@sP>>+_EVXLRkѧE>z5b۲=b-Ů߶XoŢx!n[,Wm(^Ţ]xk4!=KZ YJЇ[5p*)ϛUsQ,~_;K.ʹs)ֵǥ,ǥ|ˡ=.; q)?hK6A{\Zu]-쥈mɥ㪊KWeui3i]´.%%%%~r.LR.´s5LD0dN.}%۠%[֢’-%y%q%i%azrY*,R.’s,LDddN.}ߓXVa8q:c)a8ÑHKWD2vZ&aA(:ຼ^QŖfSӅ&Su]03JPioRoeևo2M!ZL}*[҈*[h}ʧ%O%4'|YpxO꩸t_oiO$v_֨&\kYtx$@Sg{]сe Klǿ lG;A7 _tK4՝s,mgA:>g8fCH2* ab3*okzXBG,3-HNH;h`Ea|+󋶵]s?_.OǓ|(كySu)ީ6'F}Tѷ 6w$c3t]3C 9i $}/zHoU:vX(1<9"#}4xrG)a!WkX= @\ТJKQ?s p`Cl gf O'0̚-`>iqý, G w46Tn!l=-K%9gUޟ 2?2g4<Xz׼'CO{v EmUDSI40wʪP*q0m=NU+U2a.3ٳ؇.ff>v1\&ch\ SKR˘}T|TYT2Cƻ Ud]P˄]Ḱ}J\صZofjOʔ]adݔ]aصˌ]Ḱk5vk5 9VWsvusvpV!pVcîذl5Įpl$v݆[K 3Jldvc#7,E òXa u&#1 !òaWs86#v=c3bWtX6ˆ]، u]a"(C-pJH40KT:*AYCNj>J*ӻ_rTCXgt HU ZJ$ϵ&F/\vhOwn '\t>2x|퀟G)4yQӴ?y9@c(rgXÁ78HۢTWS{+S }S&&GLfy[X.Rvyy|\]| |r٩ _zwj)vhZQ}3pFB̒fEfPDUmC>eW.D C|cP$+Xv'i[R㹸&bX{${E?>fqA5{`/3{Coz6. aA)/jLO wˁz% i?6,t2;X%YP!5۰a~x GTfH2̍9KR7@Ă>ktP*p^焋Ŕg(JYѶ,&*6<@ej0 ^DiǼbSԃ7ݷш&ب͘['4vFY..:FNq?H"cF41L[UoǷ=g;r1/_CfV7zlJ;2z=GHL ޱABzTpdө(bjj]LTgWytIRD6e0 T7Z4gqyKyw GlF&WTdF>?(`%EX:E$ 4"#y%WHW!$hMS $" Tϯ+M8RL š)AX4$gMl!GLvD:qKʈ,Ya1"ݨ`#y$Z?v̨ JB%h S0ˠݤlUsM9<|z.PIFUmS7Ch냥! zHH4' TM4ƣi.@+j: zZֶbfjHݪR7i4"`k[ u<U 5{kJ.f?Zn阄)tYUH "/HQ8P5SPY=Yr n>#)Lb&l2T˽Tʗ5H-gsE=[ب0WljONU7sgj=NTkwslGYW5DrcWxYWwǛP8=7OY/VwwW *1EuqZ.#8i-S|-ctǰg,!F_}_]d%^`G%0JYP/ip Dy(| V.$ɰ}hXM$f 5MQhPו=RA* (MvK X˧Q䬭*\лiINo0:W7 ' "1C;C5U,IuSt>nN5R|<|mQ+$P:XL#;JbI.<1L4JEZk k!_.Ɠ_N|x?@nEtAN p-rHhcˆ*(0kq_j[+'}b(Fa>rB=a >*wH`E"ppNޓZFwk 1C CZc8kc"*'9H [s@aZ͖jD'hb`JîX%zpy&i0-9p\jI}7)_BUɖږ} x]Cg )f,!CJ>UBd䎙e!W#\ˑXs%{A zA2y+y/V$ZEknZZڅɄte2IJ_L)ǵPY$^˓ l!nP&Ր2etrr2oR:L9[@ǘoTUSc4n:=).i\ثqT[xw aѻoCw!?u}P k^Ю54$[v pX1)OsyV#sOdY*>K ww2%\T䲔Yug)|gI%||| pZ pZb2'$~[8-9 eyU:崜NP8-yiI0pZ %pZReiw Y %#;ᳬ%|gId&|gY峜+|gIWN,o>3YR,ϒY汄ϒP>K>KjL>K.>g)|yϒ*)|@ZVa(Ur.Ӓ9yy1ײMn|8p-cn^dT/KbaTrP?^M3s;G¹/¹OIG\Zլs?i>}}g ~)}<»OyM})ҸXaT>eU鍽tUze/ U흽Hjp^aWpGloۣ{Ix h {DI|}eDgN6HCn1#}<,'grUP}<{iPel/;: ϛ2?*झ˗i=$^3]9We굝I4L75)K2\;]<*~<, 1yRs3^g9]YM:js5h«E./S>&b#aWSZê pS%ʇ^ s2g'' HU뻇˻G׏4&-54/m-agv~ԈGfXʟ*Ѐ3ʃGb+墠`y XF%?t=?^dVEj,x4C;ז4-L;zӓ1L:>gp3*sʑ=Mxz&т'#<=9ԞӻAO׃i]鰿'Fbu q]Ġշ0j?)R7"\vr-D k<g8\uWOgMLqYgʮ籘d<\hh0ޔ QYɩ-&/2T곹EBF=x6%B'5q3Yg3&+\W3杄b9uLwe p);4^P$w+k-YkZծa{K+R 6UFjVB Wxip`tυʅb tBu vl!mABz㨶دYd!et{_l+pܮ\~Y7X/X/VwwtK2XǯWwd /^oP)VN5PZWɅC{.жR EE)߲=hͩyТ/r>ImG7i#bi<OЦ;ֆs+#C"N P"J(DSu5H|LPi%H$%%nh.<˜wc#E=XJca_YbAIm_I4$I+5DR qr=D1),"޹>"h`ET SE\%aateٜgxX{"A:-eMsiX(=4dw5ucMsrXK4t6Mbis]vz\g_OO<$e'R:xBek2p{c|י]pi?T[v[R1uP.;Iλ%wX Iw.Iڧc$gVI]{3D \9kN]1.@s>3t zʌӫR5*^^6=ЫvIݨ)+hTV"\:kڮb|yeq$P㆔,xOêz89Uu,U$ò3QBMwЫ [$0~usS O۾l0'`jmJ۰( "-좛T:iOR!Wi^kY#J$ogJW ]#$a,("+ a)eA}N` zAjo;+d?v)O^o 'ӀhpPnX(#J96Eݐ FK|ci@ V`1IEF`@?S\mjӳ(^ŢXbQjEB-+X{kbQmF7gI[k4!?KZqR qyKN%rRz&"KX+wJ'1 \s R,jK˷=.q)CmKǻ=.RnK~ySK`Ad${)HayqUrݢ"EOs 7GsIǏuY ӺK|{{Ʌ0KED2]´&9llY KKiiiedKKEXD2]’%9}OcYXĥKKҫK«KK\" G".^a8ɜVRiނ=zW*4.4$'}Ko)MUJ>| z?| .>| i BeKPْFPBP>-xZo/K-~.u_tSq,U5`7,s`4W`".zUf|[6phT*GolJ9餕r2ʙOZҸ Gitψ(D2Eו=.@Bkc]@bEHs]pmT#ٺ6o"h1xE`퀟G)4yQmbiZ[$z;JgCzԃI X\}]^+]~q,oܢ GQBiI_>,"IFdHB;UA]؏A4n8>$D5j:8s&P%>K^FQBhϊe7Qa)0z]c4c^)A~|SPG#`z6cni?eէ{hJ'F\6`#_Y8*Aeм[,ɗLy̶f'hH(iL4׀|r8U0o("!gVlh*,BFJHIѩ 5㯌oq@NPtX3T-}2yYplvuw}|_})9YB kH<0:١`iP/L؛F]^R; ssXMa<;FAM~XX~b}$T01 dV5ה3~ ɭlДBO\R0&kE(WnD:jc6BxWD> WHj m_Uƒ}7̃;q˻LSjyTf~|8$#Jht1~x$)MQw,a]TE4 J4UGq 4nū` xzBHT$i&,"ag1dVd*3a(44SY?i0RB,m蝴$:U7 & !ݱB;藫 =DnNk0Cf$I yP j4 Z 򝙠 Yc2(=o(*D:DSGEi"nǺ..㬋C"G+Ⱥy..˟"k5;I<#Ń}Nf)IHLN(> | TU`aE9 U.߶bMǤ?}e'I$O 6}yv[FIJry-IFp*IdiyR$Y ˆI/_2h0ik@Oo{ե368y2f<) ͓Yhh $|jUJ.ӫO؆=:jWg:?e-ɷ6-gPMwP [$0~usSeAx`*O y/~Q xEAs}X\}v<'u @?`7y2W$l] tn;̶{ѣ;ſ ̂KWqu@T1͝ xcO^o 'Ӏ. uأgPsQrsl (!0G-;HbP;**bZ>.BA*-~&ܮULϢ؞nEb-&o[,nm(vŢmPXFҳ$45ݐ%[8}𸼥ZR )ݦXrlbeP9z.)RlKױ=.rǥ|3=.[q)?,ТoLd/Eh}dN.}w_WU,3*BAY8ps8q`hZu0tIwIwIwI\ Ӻ0\iM$%+Lk"K_a6hɖdtIvIvIvI\ Kd\%K$%+,Y"Kd8U@E\$$$$N.XEx.p$#i/IX//ѓTt᥉&|LGLi-T%[[t[LS*S_ʖ4ZiӢ{@|kuKf֯as@1p{>߄k!K{nXdAhLw+:a7u`h8/3X&@;h;Yz``^|c=$`&6򶶩}+dx<X!O݂ıVǨ(ᄁ~01h[5=__t<ɇ Q=l  n_@NTGgcʵw aɢ(U{n8aI @) kLm ?m|p:H1VQ0+-f1.Cu10I{zT$ߺ4 uGCŌx:13`i jMX}o]|&:? C/Rpxe]uý/SviCxE:^Ol6cyXUG(|ufr`f4P*Iv-1`M,Bbq M}kbC%$̪3%ݖa&*7liȮ0†Cł7ZҨФG7+z=Y+y&=A4k<~ y * IjB`Vy0,*Lb/C*҈iq\&msŨPKee>p1\f̭*p[e.0(3(WQK쫨e.0\fc7%xT2.˸MȺQ˄]Ḱ4v®p^vZ k5']Mpk5v®0\Z `jǜ]0N|DgAUѸ٠Qsn:4v5]JSQӥ4u5]JCL) 2Ҿt)M6Ki*1]JC.nIOxi>3;Jt#:?z َp׵ >|:(}{i`qGo:,6sV1'/ߋw {oνyWSRO5C\i O %üld o>FEmM4>ۛh.7[EȎ7*}\YwJk>Bi݊k٬btB+j LYgCA~k /QoN9TkK/QoIF&p^87Un Fq< *: K; KJqWUL&2`eV:JuW%83+nfp_ܺN}qy~>jz߲#NV&ԅWq9_q; S=WT0?#*r{/ 2t`:9Gm7S0BZFT*TqS>BTʮ+T\o1z_DlT\ղT\@RnT+д{ߗNwʽ1igu\GjJ5_Y_.SI:0)QCB mgJih8SJCR-~S;R͔~nq34{ }ϔP{34 vz_l~9[=El~!6?bn~+*zkq KN8Z~r3fiQq%j~~&ibV8\^2%^2%^2R6/5%e\ #yf uDE쭚p^m pp pp? g'ʯ伐kq*ƷWr]0x.Vt^t\EuL+q|~HoJ8bϣkX zZRFEe<=BD.uEמ`6____ϙ^-~S.U+.U+.U+.U+.U+.U+.U+.U+.u_rvU9{4L>^t-t+.h. : -qVpVrxsgdP\}k1 J:fse5f k6f7SXšͩHš ltof|35Q͆f k67SXš`tϻ{RMS{Ck%{諸»{ÄwO"H3?mO=xσe1|AcG*TuwA"",ǖt{o( BƉS4# ].+Խꄛhv]S_2 s k[b? O1 q}y,R(VJ'>X>+{(Q:89 \a0hxƯmG:4M Ch`GH"[RKE/̳hi#(29rR_g“=jje_٧eb&ٓIDib*V|&j^#m/\i s&oدm-HUu7 .p`qҘ'ӁVj]~K#5,@!ct&S]_}_]4fCغE|A*㖹hRwq(f `u6 OҠ;Sv@-C}b&2!0ɓ0!` Li #џ]t|5z.CCS=Aq0AܒˀAP0{)냥Q(*~g\Z[{HE'v)mX/1%wװF5(5(YGy;Kė*|B_ԗ*}_䗻*J~_䗻*J~_䗻*JaW%U?vU%b쒿%b1v?jo؈]!.v1K~i1fG4KYK-m=0K~96bRKYKr;Ę%Ԓ`qM[̒Ў3KAK;̒Ў=6fvؘYEY1{̒Ў3KA;v,"*؉V?o)UۑV?oJy;~**g-{V?kGGNX%q*g-/Vy?kПi;zh*)ocNY}[XUOZ dvU޷ŋU޷k*****,[,[Qy?먼uT;*yG~Qy?屮wT;*[;AuXGe4G%Q#:J_tU3mXW%?ֈuU3mXW%?ֈuU3mXW%?ֈuU3mXW%?ֈuU3mXW%?ֈuU3mXW%?ֈuU3mXW%?ֈuU3mXW%?ֈuU3mXW%?ֈuU3mXW%?ֈuU3mXW%?ֈuU3mXW%?ֈuU3mXW%?ֈuU3mXW%?ֈuU3mXW%?!ֈuU3mXW%?AֈuU3mXW%?aݶuUwRWJ]=+uȮ3RWJ]=+uخsRWJ]=+uճRWJ]=+uRWJ]=+u3rW]=+w 3rW]=+w 3rW]=+w 3rW]=+w 3rW]=+w 3rW]=+w 3rW]=+w 3rW]=+w 3rW]=+w 3rW]=+w 3rW]=+w 3rW]=+w 3rW]=+w 3rW]=+w ܕ3~ղ$뫥O|"ʓm!7>@BCe6"zǃw)JQ-;Z& ӌ.zz۫9J`詬oDpTVuvehN(t)ue}4ϰ-f!FIXxL_")5+e!wю\mmUufѫ/3Pܭ7 w'A #x&wGj0wU6O`m;@ayajVE9E^A{>/*qڣ!462N 8BT L phg3c 2ɯ뫇Ad=.$ф ,B<);2g&G"KjiK~ѧ2%nY*./o{a|{ղ8dwbV*w+Y/>Z O?'LKѨ0:yw;'NxX'LxHU0 0^ 0H + 1ͯH(0Kpp߹Vt=J?r?bޖ%,@0>c ,(z37;ŏߡv zA9H {gs3B#Dny[8Q(T R,*f_(Bbfq=@f86EHٰϟ T K D!4B)Ub C{<BØ3HS&ɄhLid$Ne&$f,|iL{2IsMImkSH"nXBw-Eiqy[J%*U.e9eK+awQ4MEβfK.r.4[rْ-ȷlE9͖\ilE3͖\Ӱ$9;+iɱxnY=,)y[2":QAG5ul KERn0R66CUvV uq[US盛 ծuK[qkFk:ﻃ q1#Qz2U95}>-^W%EUS7'J WMbgxkR@{Yŕc* _M]\9jīW;F6JԳt o-Tj*=J]M=G6J:v6&dđǨW;FAMvUr1aRVS/u[W >ɠbQD0Y[&* WM]\(UzżcԳ>lTj/(uyVu*5u[t(uuQ(u>Z}W+&^HR[~u}5uDR1u:(m.>ӡŕ3ԣŅ:TVS'׺M1uSL-E.S%[M:v3J]Qb] ,NJ]8:ynWE#JUbEQMyLn]5y-I޺\Q"_QE}08q(uqp‘'E; (u7Fpv3JP%xg>:5}q /Ξb1Ud0q*(K&(^xD NrZ28@~*_B%\Qj c u:\?~Ot@\Qx0Έ+[.>MaqG鋧pgXoqPү*Nt*6!5E үA9D=JTMY@8cX"+*]/Ma8%bQ48(~%>/-}+}yl6^~JطXhZ(" tIIhնauUd&fF]WIX+m1;JlڵV)ٖ¸+Q*mY%,Z3(/[۲ȸ`QȒzEcSB/[%l NWM]\󊭳+WSک+ T-_uJVEX⫤.y5uKlňS"-ˋEV૦.FEs*ivm;ţRq65%mNJJ`F+aP+Ufv(iVUVI\h+U*iQZ0c-)iT=̴wEk̗ɖ t9˙ 9e+*pܡ\ O=FKu>+&C|FzaR灣ֺuݧPy{ VkU eJ|e/CA]inRWelp/4yW{.dwJTSEuq^(RW>>): {Uo:>oJc]BzSc5uvdmnGE].Z-ULA])W)UyFGAqIJy/y5کۭy*;N]y5UpUgp׼5N_'Q+G[M]\9J׬V eVmQz"BRFKuŋV5s N]zE"dy N\ C!u^q80rh>rN^7G~8p_9 !pȡFC>r"pa8fC s7r!pAA}80rP9v~8sC!8MůC?~:" \e|".8^~"^IK,cjMYysҝݮ^d \q@:ٿGw.6Kqx2ܱߟ"V'T( vw~.Ccͽ\Ig&M Wa\Qu[k:o$쉵8'M 'A6x.ˏrm5I)/MW{ ]}eK>}>w nB?k͏>~w3ˏW.^^}(J:蓿gK)g#3ߦeIsB:iib7o6藯_?rs7k&I˛}ϯĿnFdvmq^Rmp7aN'?jLbc"Aq62:l0dGbx>f&:՛w )41ᳪ?OmN R6R?!lLNl4fyįd,ij]ど5M=|d{,пOQe֯-Pt9VQg],EY>Yvqor2Pyi99P-6{+I{1_sy* (ٮt*chflVm26}.ip']?~n^2ybteJ چq@[=Ō(o`ݗMiq4ϕD48mc&dR`|<˪g:$C" 8G"Xe* ?c&.Eqi,4`iJL'm`\ ZULVЄzX7:n4Œ8o6!3&93Iٙm3\XaMbm&C^W 5\LqJ㻛˛Wp}GZax_]jv8#98[!ll0$NE:_e~>*;| 07 vqGޞMw7=uM 7ۢ9_~M25/[SMjꗫ_~o o o o OtE~+]DW'"?OtE~+"+"+"G~ߓcxq V?ᑿ,<8G~ox8F~~*[oF?8f .o~C#\'FIOo?'?l4'=6'FI?k/ǰ':Xz:؀}tu9XY nO n?{E|u|{Di?~~pNO8xS,{}_~a/xߗ_X/,{ =)޻⽫){⽧){⽧){⽧){⽧){⽧)? wd:)MA?{Ac~v:BS4~c+ks{sLWG昮ȏ1]]ۛc"?67tE~tmnoѵ9+ks{sLWG昮ȏ1]]ۛc"?67tE~tmnoѵ9+ks{sLWG昮ȏ1]]ۛc"?67tE~tmnoѵ9+ks{sLWG昮ȏ.1]]ۛc"?D7tE~tno2х9+Ku{sLW嘮ȯkkkkŮkɮkͮkѮkծkٮkݮkᮡk审k鮡kkkkkkkk k /ѵZKt%]kx5D^k /ѵZKt%]kx5D^k /ѵZKt%]kx5D^k /ѵZKt%]kx5D^k /ѵZKt%]kx5D^k /ѵZKt%]kx5D^k /ѵZKt%]kx5D^K o. wׯr) P=!iTopG];҂3yfbh4mGdQ$A|[»OLfS\mѧ Ixfifu. /~@-1ǻE$j 6*6*CuadP0 tQ-7uw;UBܕw_]A0kO6q.~ N-ɸS0_EڊYifNE&Ֆ6rU|sXitc`͚YSyT1gUqٯ~?݃ {1.Q3G#AO8 gn,d˿wH:km ,@3-gƟfҦfjScUioӐjMY^Nzcy6D(bN~lIp8$, hf lƅn6a$;ƍRoo~}5Շ˪2~)`w)*>1|F{E҇ !UUA͟@UxWͫ_K1X0"u(Lva8RA{*sd ZZ9v͇ -\iE3\^cOfn\辁;Wͮ辁kl}ܣkdGNo[" LXǿ8F<ځ kfS;& ~10a2s40aV׵  S540abr`¤> Lhj`*d`T0%60aL;>"#z߁0 D@ D0&a @SV1$6a&j0{bE;aljG D@a- D@um "l T D@0!ᒰp`ӿOEׯᒐ5[[l|}onn_^WH7GM|> z=|ç>T𪇏 G/!"Mvkja1fy.\+WǫW\Une$X;"Ial:7-G H%V%*sZht I.as읹q=*1§c8O ]S%|dǂ|ى՝hNdwȜv}ۊlo@N x~"|aX+DkRYFջ޼P\yzax]-?Lc첣PIO*|\ϗ6}*,iZ2-?@f}rt2(P\m&3)?7Qrcߥ~pEIJPv4+(i>@i@ 9TV}%C-d]ƟlXviPZ_Be+33/cu&P/!&-4DX4_vr#:0IX"?z8g8Y. yygcC&pjO}۠,uӿW螌*hwf.äӣneQhOq&z}J).>AN4,QG빥Sm'&~`0tZ z V`' yi/~-}-H. ԆmqǶd;!W`Zz Ԥ$=gQ15x:\ B2hDWQ۲hfmSlw~M}:}N6Wߞ:v+׾+OCW?8~q+_ DXHb.pH .+w9钢αxN&ÇavavavI`Of_{}T~[0UƧ-⒍"^фԚL;׸sV\r3'SO'?mao6rlw5 vtmzK\WGwtd2eYl0l#ic,t]`LyS\^I5ބk܍4-4\?vkI Y|ISS[FvaZpg3F!C<$.]!-js̀mܺζĠd)صB-[0Ѡ_L,5ݭ[ ؎fXҖMf iDF/wi+LܳI|_VaX.u><`yVl-mc(r؍QםwtV }ן$Z=}b]4:ovÝa?v]8xWwuf ȋ aiX&fJrv4~&粔N.+3;~Ew~& a\_Oc#h'LДwCcX%pAGR;Cx@g^3Đ,6!pAK-Y*!&8:S #qh Ob@[E`@[̘@[ŀ@[63@3@ltN[@E\X<v6d bx, 6<@;;N 6Nk. ?Z X=Ӣ.ۀw pw8@3@ŢpwY("cy^1S S ǩ4 kZ"=hzK3`l,d\ sn?׏T\cٱ.؆-ICabҀ^uK4T"b'eAi{tFJYP)&@&E4٘U%' X4,('˂} dUO('֫U,0yrŤ!ŤoJ[|g 3c`Za_MX3AfQ-JÞ 2Ұ/ Ұ-I{+ {)e}ŕqAi3ؕc1A_}YPT^'6~YP2Hg#ɁρpYoÓQ +t5tqJtiu [Pu :e%9tT: U@t:N3ӡdtVLNo=C)LNt.N2Nay#T2m@%.T: \)㴠FTIMiD?gg;Pi JSfd'@o4 WS@NCiMKS T4&kBCҴfṼM߈t1:LRppA .gMcEp:oNFpIhFpɦ#@2)t5$\4{;>~g k7*Qvf*Ҽ/giJeE^|FpG4x6 ^~NFf\]|hEx7zFa،ӟ|gmzs>!/2kѕ:-x[r'=uewf>NrF/xdSN>Z$o>$ %K?3N~i&ct[lp&+֎/;Fq1 ;Vݥ~cHh,wGtZ螎x_g&ftlmms-1.0.0+bzr2569/data/projects/Demos/CapDan-ReggaeTry.mmpz0000644000000000000000000000676711603573245021506 0ustar 00000000000000x]r6?Oh;s2IC#ڹi6S>:N!~,76 }H E"H&D"vHYxDqeO;S{\}qaGk8cr|qa|{%oi{p}]4,3L# S.{IL{W͐*3q⌿`?RҼwCCuEx<#{J*ʢG0,\CKe쁧_^;r(0Ct/{PG7q<2mk(gMI[#3sV! l|>x[4')Nho)Wi|o!T7]t"T3ځ|wT}PAQ3RɒLC)`'D2Ty\Mnz%IWr;#j0hI#˞Cd' mB?Y8%ڷ(Qʺw%I'Ns@PO5Sp!S$rJ9K/GD=:t8epFgcbIF~X5 ysVY%=y[_1@ɜ|%:R23" M?v03GM)0Mnʉ|Hok^|o!iyS4?eLmc:nA4PF=q yD^8v1YdY²F;j1[h{iy֒ bڒY1y2 M&$H2|Q&\´AD  K}DZ@f}u(cOGt!*icQJf]_;oF7s.5J̃gJuϏJ.)[7UWz/KwPQ8Z @;R*-V16ԟXsY5e/_&G+Sm_D{SPRgBS+ZN[>VD;F=?{)=Ҍ.zdoA>Y##K&F21Ldbt̉%fSSIWb Wѡ)v@iΨT?pY2!ʇ%*U蔞U|~oc¶z›@3wf}ʔG<2)Ly2^=BNQȪZW{#}>mQh)}Nyypvܸ>jp$& o( ۮU7 uY7uY78ҺAi:H9Eo; 6C>)^ڲu6Y=tOJuuJKuuOKuuQŀlN}2r *⅊{#ZGq8Tf^C/-!46|Fi2V@]5xpa"Q#N;oϯ~]ZL(woAfx!/H>N>a6uìkҌsdM} `Ir ޵psc_[ VQN{k>Dt8Uݷu3 >_g~'S<Ͷ5;M2qmw1L0*3 uPp\ `*;ћʵI&9,`/`W5 ҲOipಢ4S3^[#yv7&a;L5 > PW? ,HȂ,HȂ}mRY^V ~u?$(KouUзj7oebUЯ&+ưUo5VwMSAkS+G?#9zL:zn5\FzEa'2@p`a#/><׊x "~6+b};4_;+cg#9d "I<)U䶊V*e[eg5z=PDUQ W)E$kp+Elµ9a_h'C~+~lwM4*M|ɴQYAVYD9LƶɅhdO2p1?-d|\&'>Dddt?ŤcK`e FQY_Y~O:U613*ᯣ&2}SU7WDmbUG[Dv`Pہ DJEJ?gI?9GkPGkBʯ=*_*|CzM뱏ʷgB&4&iBOcŸ& PLB2 ??( PLB2 ??( PLBOg.t&BOg.t&BOg.t&BOg.t&BOg.t&B`! &B`! &B`! &B`! &B`! &Bd)L&Bd)L&Bd)L&Bd)L&Bd)L&Bb%,&YBb%,&YBbDC8\=w-VG u%5;젞;LauCޙQTTVqB2%x*Ci\f)TAȌ#FJAϷ,r mPtb\|{//n~;o߽{{ z}E~(77 LU7?@oqt(lTIu}Pgx5!۹۹F0ZbkFAjj'ǚhe <,f.F$D1/b;z jW#%:O t"?}{1o 4#_YSyA|Մr k: 8.hz!V.yh.ĩJ7Ǿ8dN.d:W҈莌>Zyw.T4b>ܹ\ xO#bB{>9#SH8_:t2~^ܰD' "-;_/Tɝ®$%"5 d6QksaWXlmms-1.0.0+bzr2569/data/projects/Demos/CapDan-ReggaetonTry.mmpz0000644000000000000000000001053211603573245022210 0ustar 00000000000000px]r6?Oh2w2)ɑi$sqIru:-BdIʖ{sosp/;8r鴕(.XX6+OQ@=Q߽x2߿Vk/qWqaY? "`'At6xt޿DKӷ/ʉq) I.HHf. Dc 8MA ]?X~uo"tJȩ$ }Ȟ}~b>[IH]ߕqWA\%plˍn_$ؠ$WNrV$pWқuHp}TOz4Fiu:lMS]6"T=ЅƎ(eG(~ "ϑ^^Cr׏W'Sl_9fҵM SsۍF_8a#;qD2HXO2Լo^G0Rְq>;?Y+7-յs^ʘU1ϱ[G FS| [ԇ'yqL/嶎Atk@r,٫$?[N&ݳi28AY,(6e </Wœ,SI U:ywt*ge "'_[K6"!myN@M9huTK۟ESF| xaa'0f\ (\?\'@F=w7 xM0^^ھXm&vBo4j=<{c&`|HP Lj3mm- !4LtBOW+) @Cc8*(x`թ\>*5vCua,c.U[F6mܭ&Ap ^ln5@K7#sdL#g,YӜo.#kՙK9̪ :sJs!s!pc {nHSGQf}VY>+gej8*%$# N)#hbs7$HaMj9> Ymt̀~pxe8:ƈh9^BN]*F:Z'_8#%Yr >"i{+Pl/=hj1V79[v\sQ-(Qu=j:t)z_zIhC/^]|EqWqWqv"U`WSriqGb~#=thZ>#C ^~DuycXS\fc1vc1vGcW +q}q>mHO=0[iNlw;hhGz7tI{oySwUʾV0| $ŵKNkf귩\X7 fL6Q*s^~jcPG2ښ0r[>)|d;24W 2K>&:ƊKW2⥫aXժI|XYJ܃v`nl8yb'GJӕFEO߼yƢ2ꩪܬmհLfLo#n+dKُ,*S>sg)kv?77 榹t侟Y5A~uva?N&#ؽ|_%n.Cڟ|;{ m2Wf/&CtA'WUKjY\2mphNO[eE14+շE_(0)NÏ3Ea?6Y`ªPfuzn 0"ī<qvp'#؃>5ifE5YQ˃3f}ɲ=CN9TC"?H/8n$5 IR/$UNʓ"e\Ǐ'S>SgJLL)r)DeJͺ Tpj!9PLj˕.P|Di>b׎3|T):*T_2(Gp0U@C m3 0 4߮Z`SMVvc0ڋA3X_!`4^G x* 髀&fԌ{ ^V{{x{x0{V{BWxZ}nybtD0[MR]W(#i䫍nZFv"R(ہHfyKcNn4)}L>)}B>9͠ūP͠B7 ߌ{H.T~3!PȇB7co O>U(DSJ?U(iDӄF?M(iDӄF?M(iDӄF?M(iDӄF?M(iDӄF?M(DӅN?](DӅN?](DӅN?](DӅN?](DӅN?](D3A?C(D3A?C(D3A?C(D3A?C(D3A?C(D3I?S(D3I?S(D3I?S(D3I?S(D3I?S(YDE?K(YDE?K(YD8zV4_>س?(u PberAEUmeW7f Ye1MJpac8.02BYHzފ܅( UŅCLLa ѕm!7_|_\;WOo|͹4O,_|~0NY~@,$<ۓ[$We Eȝ%'N@S/K`;/+عY&` $T@4N~vNU-L﷩*OҋShX+{:J. vDRʎ?LT 7ϋA-g΃(> `yp TR~/=(}\8 .s9 : P?X ANj􊔌_-CmCA $=*eU'ٝWc#(5Pj!ksa/enalmms-1.0.0+bzr2569/data/projects/Demos/DnB.mmpz0000644000000000000000000001702711603573245017123 0ustar 00000000000000x]kw8޿0'k"v$qN3g-TDʏ&AR4Y`zf|EBCG[.gw|F^p%^Iza$fe{۫;N.;T Қv@7$B56>R)KaSr1݉v-|\hR Rľd/WQqeNybjtvY)^|5ِDЋ['P*ԘVJ7YM }8>8$F\0Rޛ,i Ѻ$L#Z?)_L`Ʋ&n97J(CQbO^#9Γ_ODbL,km{wCdzο+g6s$7PJ2YJ}ꐼ;M3Aaܝ䅙:>cNݕ%[mBbD__w߄ɍ'nHƁC@J߮NKg£7$m3M~1ʹ"QEy׆ʻʘ^Xt֞D%)DٵI5!cc@$Ԁ46!q쌆 ipٹ4(6smu+E-BT(J}h1jr$Ǧ0XMG͎&ҧ,2l! #١!mLTM{6̐`s͋acYAA5B+( U72c;t]eSNT~%Vyۙ^8?'ƒbh3cm11zqk֮lWin7ɜTю&/hԷ#ve:gٟ<)E`d ἁLJ{2!}ZDYd.F$$+i_:4h%=sf"(.8b< O$dȥVlMudsIm&? O.I|)bK;(ROMQ")E"}!"fjzIx0tz`|I ihIy@&B5JZ׬ZZ*EO[]]Fjtj%u%+HBuc巍ek8mk"2]9ҪXiU8]8k$`bާzٹ@!ZW$HP5ijmtP {+OHQ8F5ތ+ٛq|=fJn )~=*;4X WG*i"vLTWqem<_W ^hO(>!F PXA,+RW 9} *"DZZWeYn4;TOc!{I$^lHOUXuRy߾&l}|ZlfW[.`ĥ2ޟ=A83Ce.0-7p\ KAm?&؝y=kB&lf), weJhJ`Ǒ!:(\KRP"O.DY)2")2")2X)`|`*c|PL 2TBZ2U $ݫ[]15$IԱ/.i%];DZB>aK2}Z)&\8n0?$WBrNP8A+(W9y{%?oo$/ǫ^ ve1lNrT`ݦۗCgkPDKM͵fd;2F%1=nVͷr2É0u`@:8|LPR(3S5M-ްԊekތKG572 )54Tv(Tg_7og qVFBz  ٠{0_vpd$X@4!X@D`@֓4Vv'BH5Cȯ XpvgP\D`@,D`^//̽0bp'`4g+?Sk*CEAYdQł{@6ilD"@$L6bFL rlC@$h5y3hvZAUbm^gf $Ae3(lb͠Lx;pKe L 2)Ȥ %Lf.>0c "PHa P_^ܕaI:WVU. ahYaWlݩct [FۊOugsON@P.AKP_|o 'zӍtk4-]Of;M+,'k;Ķb7wsICI3)VmN,ނ˟0'%I (RBʟP'ʟa'ec04)mwa`P2 P ?)O0pz l;[>D-fr DE$PDE$PDY4몠 q 1**P?HNG_ .#dlA:_;,`KL|oc$|KTLţPQL>؎(i=Uy*(b )(fE;;<9ЊqRauj$ xBf;d;d;ddddddddddbox}Hjc3Ced9r8P^+Rr"=PCA=,(aV2VX >m`m19 9yѯ3͟6 ng397=~E;9_?_[rerv{㹬򙷿3zI3~rm2̓}|JWlA BvƢĤW>QSj,Ƃ j,=*5n>c+ $Xu]um9o;JXPbJNnD*8?]OFp4h?]"OG(i (G!-7:֚Y[,mtfQ tc-u}ǚ>g'{.U湴3?|Lj}vΥBzmCI8GflKKo\*Ǯ93cӜn5oˊc\Ƚ6̡zmÉB6̥RzlKBrR!}vY Y!"6*K^7DeK^{UZxJ!˦>Y0p[N{xK63oC1sF:eXz%wT*O0 |G0ZG0Et}J^X:;<*'XgM 2!=1khl‰QiPG,ѣvwzpT5R] Axv*[ǨeŚ@&P kŚ{&V  V в45h@ kЀVvZ V4X5h@jЀvcՠ&vHN6,\wߒVsWYFW笕3>Cg8}ɜ6!xJo| ًO.pz{)ԧ[e/ \ͧN_"q~-y d)u.ހWXp>6hkݽ lXDDJlJlt*UT渥S-SNjq\$9qn=92ءnjfEPvB[KCYjKTܭ\aOr5G<*v+Ws^(W?N ~pH1dҶ :֌tu3P)XXK/kҧӸ9:qgT)i܋Ϊ^ +5).?WSt#A} %)xN=H&.#Qrs]4{e9*[q󿛥_-w~ nZVطu᜞7Hw.?-;w~qgSoe'K^KKPҥt%بs&R>dGrVxH3SrڝV]T^ŞDlSoʎP$m!E^]6BΎG:JFlqt`2|fR#<6uzeALjY oRBuD\Q `DW=$[Y)hE*(SR)(%*JF% ^IR7J?PwkX~1&*HLީ|_ҽ:wfze8ɑ~C݄}Xrm\PFcG(#SYPR:JG9|e֜^5n)R݋%+\bG*s ޾U1: rq%#b6t]4X}3ZAL0jYd]1>[63;h遶 ڡ /͓Q\n~<2qZ/\./(zx9x7Ds߻Bi#3x[77&6jjRz,>Jls}f(5Syɉ)¾gK)h #gPϚxCY[][L//ʽm/%ڂ '0OfbS0D8Hl7ZP#}D4,R-3qx슅U8IG %7r/+oK5k<Κa7ϪLtS\2K+WpJ.w6~uoّs-@1qV1m|۔!Wo:$5 HqlC7!ѭ6t t&y*#(ܩ=[L4̈́ZLhDS֐mou{VLJ@=ju}V@juVAn,;í?0í?0í?0í?Om*S[ ;>V?Om*S[ V?OkZV?iOkZ@4P? iOZ@tP?OzAtPO{?Oo:[V?h3ZVg??zmT/_''wdnU&Mq0!8¤0Ņ9ZSZԊhmr.=?FSQFlWb_ Dc%0k1"ZG듗/u("lJS֓ZM nSEtEG+.mhlt#wX*e\_)UƫpK~+"`H͂azlmms-1.0.0+bzr2569/data/projects/Demos/EsoXLB-CPU.mmpz0000644000000000000000000010063511603573245020177 0ustar 00000000000000wxks8&}FTK7 %RȲf%Է׋t-~Eyͳu=|rk٢ʼH'o"~Φ2_b?N?z,?>|4!,Fl0s~F(O }tWƟ.v&%hx.md02<%zw觴"e)X0{Xn_nGѾ Nߓ0Re=SyA|䔨~Nnkƅhg$+Avq2 Uh~JMNkUĵ0Q C%l!kƝֽM)W;*3mtٖs\cH2U5Oh!nDTS?vB#AUJ4U=hrB+ VY DsZ|V283/0 %pp?3X(y8FCFȃ.YEdZ^~O֨4D"iAG~4 ~?O`8@Y. >S߫ )+N6E+1M-,pZJ)Xioj :7%DZu.f̲?vYvkW(\ny FsүW C6Ip]7ڬp\~C hjĪ+f4GmZ**S2RK͝J6.27 s27 s27 sk27j&'5~=|,4#RKom+fyӫy/ډGhš0ny ":\e!kV~6I,).Kۈ_s+Pg*A5%^oШWzJԫD*oԫU^M zW$4ývO=t/a1:{p9U齧 q0޻+ZKlD#Lt,03#+2"+2"+2">G8C1>ď}*zǞ g^Gpy]gAtmG [vgLr8>CE Tw:ō(qyA>^K._£gb\Gw--O=4àנT{,7_…oɇt8>41#Fͺ.FϺnF= u1e8b臦W41zl1z151e 1yp,\#%)֜vkVt[#%ۚ)_]kVtZ#Ԛ)֬H}$ZEF3:h+H]$ҺbI4I4I;}&˥sc(-5 &c>5lFee%D#MA*]򬖘U򾖘ok#eZj:R.m=R6#ڪ:RF#SűbmU)3VՑrcmU);VՑcmQ3dImH~ȏi ?Vi̎̎̎qٱ*H/7֨HF=G:>ԨH{tFjʡ98Rش#E͊6+:RجH_5+:R׬Hq_#E}͊5gF|pg|iXgG~ "PF2k8  vv#E)Bo^I.FtNt !h+=,k h>kup*5doIƇJc0rKc:hdڀc*b4! \ #1a釶L. &I ulHB[S!]drklh0)H 9HT}ZX YH iH먙*3VL̴L̴Lkgi2ZYmsj#eRTD{agv@#R`ݬHu#mPyL>VܬHs#͊ 7+:R`ܜ8'~8}bODRW[;Jed,#cXFƵFCd\E#ƍj7*:VpܨXqcǍtV.:C4f+X#c"hqfNJ5+lYBfMNJ5+lt(Yӱqk:#? G^`۱8rPƀ21`gPx1`#ŀ͊6+:R جX5*:ֽqMc8ֵq͚/1Zji gvAD=#ᝳ{0$ݴ δЖчLYlW؁BA^ <=6[LXn:M~nw :b)켰 WB炎 +]\'BY\#,ϹZ0"Hv'%*DYa,a ,ax,aL^f1DLaxG-LaCXnrotܛ5fMǺƽYӱnqoW~zO%Ad}ҪʹYnA/X2RMxDrk;\Rz2Dio9$ *?"ke<,8oⅿ~|ŘTR95f"v_Ƃ~?ŊwbͨQHuIGY_*^ Q|9VhX5Ezwx}XuKZ[mR[.5_QYT_zʵLҶ* N9|I:ЁUIOi<%L^ّ+;ru{eGZnHrڎtʴ#m5Hۍ;H+Qٵu͜ѿ޵8),HyGmG ;j;R1uBa:2s0_,G{lV!hQ9X,v>0'S{%r9"e+uw?>Pt1OX߾\/:vH$.l({-MĻm8/r풯 Kpz[ O66FZQK3?|.NJS?`C2N'O{*TW$+7YhoF|-PɃYȔt;Aۂp&N(}̦C{'vUZ|4 P0c&ƀD耱4T|&:$]i{tY; oJõsR2vx@=\pfǕE2깺2Ud(K!)QE82P&/ ǘfx?Fs#3tdio\}A, &FUFFs? dMnd.!Xzdm]`1j-?c9=]4^?C5zœtǐ8N梧{ȑK0Xl3Yh;)~/EP`4iFdS%r 'מP`U#Ti L"59FRh]ץ>BC&,t&+4`@P5BvXdEmgxI]]c\t9\1*睚.;8Ur6ͣA~? 7e}C]¢}MKU`}9ELB*o݃Txߑ3x_y(a]MNSc~񑰀x_U}]&aEࢢ}KU}WXշt ]  MJAᾪȉGX˙GXo1>&Ӌ/DToKKT/U),ޗx&u)*w꟰_ѧAc~SRT/O r-IXY|LkEr2 +l_Jo|~𫪌EKQ<+-T_pqTxߖ ~ΓJ_`oȔ_f-+Ў%~9-ˍ~y/dǾD#L`IodFIv72  +ߐHqL>8f/&=ż@S?XM "aHΦ*vsWɚzabC '04z S{Fdx۠Q/˂$Er| ?b̐s cqCXGA⼧ȼ83r'f8ʳpE2BB"k`3|xZje_n>^q'5[+]&¹GP7y]4x`c!3 ^2U~{\lR[fefSdf7ٯD2Lw0dj_[ ԾL7˾Ծ{Def';1~ 4rDfG1א=,32Rf9̾2/32/32Rٗ}Pٗ}22U@fef_fKv;K_)ݥ2.V8Q4k' Vh(͊ +ȟ.V祷lI?!@<`Sev10dW7G\ fSh6vq˘fgp\/C:PTR#SIdO%;u{*)ةSINJ vTRϓq &O&y':</w_~ k\;\<_bs[Aa,KQ ,pt/DNxutK^*?,dO' X}B;+='X.>0焽K'! %PQ@mx c!ӵX,Y _ܥk "]vYk)9At;yq=YHғerNxzNpzNhzN`X*=YPɶ"=Na z')̋8B #KssBss®.8HDZ]8v sN+Na^}B~Q|ko!5ҊJ%KspCFKk>y a֛4SH AӗH APyM^ lb=|mt_ϑX&lF)#?_5;Y&A|7Yb*\w|{ut re'tAoCd9]$9eFM|_'s4ċ&9f])dY⇪(%Է׋t-~Eyͳu=|r#hPCNFCE M oe< pI!!+;|޶Jd<>9'7}a;祾+j軦CDTZ5\7gTk=v&%hx.B|$lGYAQ}~Jqǻ ^[Qﻂ$̰Us3/(I?V0j}Iei$^e0JY=WE,4F$YETdA`2?ZXdhŅhQQ2d_U^ũ*tul9]euJQZ'4Oh#HP'MUEZ Ԧ+V҂Q<#x.E~!.ps};~;w΍vWtq^^vכLoB򓷍CVe`'ƩAd'`“u=t5Я#|->LìOyn#{!|Τ2މF{&vUZܭ|4 N}ҌQiDdv{6e<fJQlam,wA47r} t;H(qOQi"=ʡ$d嗲{ډOR,\;'.L/o7  7dtQzLEURc pdT O~G2y ?fX8?t4˶1#q,#CxM{[wH_G dM0/PD,4Z7jY'mw'tP#k%F%^g3σ7\{ OCD8^r\9ra%v@"½ZT)E6"*y$c8QZ=N-ʊ*y^[h]%|IضUUwtJMV4 _ {`S}[l}EOJ4RMWu$ېNErީrL_.5w(zӻhf ]JQѾ8MX_ti}W KU ߺ*073$*w ..dJX?t|p_t$.=&0ڗqh_)XQ#hߒqhߕU};]}W}SRP*rr[o| }6 ,޷%*ޗrJT.u)$w꟰_Ac~SRT/ϐ r-IXY|LkmQ2 +l_Io|~𫪌EKQ<)-T_pqTxߖ ~ΓJ_`oȔ_f-+Ў%~9-ˍ~ycʗ@fQɡSҧ܆?IS@&?9d0iL17jCia,G>iS˶ }W1o/n/)VwXFig\}k&^vÉ4z s{FdxܠQ/˂$Er| ?b̐s gr[ &ˏyOayq:N6pNW11>dͫ+F(f'm*ʾb}jVMso?p"H=nh[yd;R". _,zLIaԶ8 ֨` ]?^=*R9/Dt)e5;,$vrcYx?4Az !#,Pa6Bl0߃#] =: t`oo]{`R՜n^rUaݻqqc<{YfJ]F~PVQsٖNHϚ2g_}eϤK^mTo(r%,Har"v%%_oB=TjEu ^Tku ?"5W5Wf岆\i5trYc7Q*D-kPr]\hAk~kaٗfٷWLrŢ|~}G7_UPb*3 n!ϻBfefsp} ef_fef_fef2/3<2/3edf̾쎑wTx2? >}~G/b6_sMozy}޻ j)o,R\p~Rl>?ytOjP??y@yRRj3uΎ9?sTx<,PW/?x"/ z&=)o^c/j(AkMpgӢB'; { VJ=fv8o^.%HBΦ`,7e4P+w1&9ɃO6ަ&;ˏg`bBI˗[@@W a6_}_{EG`)|`O\|[ seR?xp3q{żt9:,( }p7+ߗ/߃]84^j'#fMd!:_J# ^Yu{TaGv8eKb a7ć'*#!{9bJ^5LF)s KKN%;j<TRSI^H:셡SI^9셛SI,ĜL@O`db~ 'E˯\Ap+YΙQ~Bw~0( e)NN8t:Yd3陸ίNxdNxdΜ x y96Ps^&'! %PQ@mx c!ӵX,Y _ܥk "]vYk)9At;yq=YHғerNxzNpzNhzN`X*=YPɶ"=Na z')̋8B #KssBss®.8HDZ]8v sN+Na^}B~Q|ko!5ҊJKspCFKk>y a֛4SH AӗH APyM^ lb=|mt_ϑX&lF)~#_5;Y&A|7Yb*\w|{ut re'tAoCd9]$qeFM|_'s4ċ&9f])dY⇪(%Է׋t-~Eyͳu=|r#hPCNFCE M oe< pI!g_|?ɇ *mQjsߜQE~MMu 0yeI^Ei)=^2DT>EQ{QnGѾ Nߓ0W)2{Ωμ&corJd]Fx,ˏ*e\9ğ " hfmvپ73]G ˷J6.D@Fjo?2SU;*3񭃧̶UZ4-v9 XWl>;M[&Y/LKyPL7층店Gn18A'OA$|O!#Vq?*'~:'7 h߭; 7_/pd~qNX5a@o?<-33/̂Mmģͨ2Ko©@m}\% 6([yOq8ј'Mq?koF|ո}kC~ C gS~zwm_e>[hи/Y{G=CdW} ߳xx`!yz$`C=L(qp&N(}̦CG{&vUZ|4 N0c&a!pPqy*M>Tۮzf=7;TPlam,wA47r}~0wSFuTpwHOzyޠg\3?IpԺ0̿$lfǓEy20OFTTu~cT O~G2y ?fX8?4UtdƱ 5m"}/v0/PD4Z7ʠ~<@! O9c5K ,&V%^g,&=㆞aBM i?Ԗ~h'1~32K|4H$8eG6rWųn>ޒ! %A[GEaG^51W[| m_J΋>$~%݋0ٟ{=w<r.plِ#OeOl˶p+lSciqĆݒ3-=SwZ[6ağ4hL 1g7uMl,u?O,Bb }OjL<'s}~R*OjUJ͓)9?AƼدsvT_Q}z3aB|{o֪GKÖ[;k| QWQJ`" .o]/9]ĩf-:,( SOyDIsfM'Vx7[ˢT6+[C ;hE{Ź-'Q|6x::Cn+!zl3ͦ+fi33s8./C: 詤`'4O%;q*)عSIN&J vTRX:灞8VN&Ƌ"w_)תgbp/G1 9IZAa,KQ ,pt/Nxt>^9,dWjN' sB;+='tBa {9vPG߻O7c<4@E] 4ЎE hsObZd9'?'|?'x?'tqp5(teu0ҵWzGd!JO%9999cdAY'.d;9'蕞l0/?5@:,Y ^"vY)9At;yYE k|K+*y_y \Pi5xo^C`5RC%54RCPv4Ԥtfӯ!8;9X,v~g~ls/aI0Q `NI"}0MXg ]=m_qd]>\:.Eś08\.um ~xwE0׸79I&9f])dY⇪(%Է׋t-~Eyͳu=|r#hPCNFCE M oe< pI!g_|?ɇ *mkQjsߜQE~MMu 0yeI^Ei)=v2DTS{QnGѾ Nߓ0W)2{Ωμ&corJMQK7&H#2X.9U*rf?AE6$$͂-Z&] LtG[r Ѣчe?2SU;*3mtٖs\'U7Nh"=fk'4T DSZ+'pEZ f9V2EqL~̈́6*9d6 6YXfB`o| ; mXWl>M[&YO/&L 4g}gڇ`{96a蠽ڢ}:fH\I]q:kaT*^.NFd$J76~o+򷊝FkFQd]kc5oA?DEHJZ з4ۮwZ_`Qpr~TOZ *_jW}OEEJ˩ZM\2= 2= 2= 2= 2= 'I@uR[gΕI)[ # c'M'woAҪue=#W{ͪZFun-YAV A~N$D]Rz݄jl,iT&E{y ծ146mN6Q&FV { B A@ %SJçPJ'\|J%,J1Kj.oSJ (%wA8 >:? uh` J3){rh^ PQ!G|ގ@AIB!pJfP6N#1لr@4GA9y"BB@W45(%(7j@^|/|:.!w!@(AwPr /1 $`VPQ0B `D %J"( @D@ %J *>T(|PBzJ IBj%'T 2- 費!( d& 6RPP %`Vϛg@C(yT"y3q 'R{{%O)Y'ebC uR&:IP#e㬓΃uR&D`Rz䔉uR&HI(Q'eD5Ry:))L2N:)-L2J ꬓ2N BFeY:) J B!eꬓAIAȠܐܐܐܐܐܐiܐiܐiܐiܐiܐiܐiܐiC:?dC:?daC?daC?daC&?daA\f$ Gh !01W OҶyc@r$[LORd[즔$9'OR$;>IOR㽿ҕ d@%e@%V:PɀRT2ꤔ WP:_tfFTPueAhP9݆kNC.Dm @wg#@עiրI_wuۘZS/[n!U]KwCA[ ^Х).dwQMAU9 *yϐ,Xf2`@MLb5'm˪iDP̆&7BjDԨc T'B8rm&4Ю`9MB s \>5urO')Nn;4 TW'~*!3"Fzzeb]jT咋WL P0}JhAPA.…MD޽IdBTz]MhA͵ C"ESh߭Rll|"ބQuL@"X u +atTQ״çzPTM2Z7lܟE:rUQ:Cn#}bK]7DI.rɝYQU2\KrxK W(4TVM[xzdB7:M1tצ+1n5@8f%N.rF3FreΆzw 0ͥT-(iAW۝ qu2d[ uTeϦR MycgX{5ݡژVgnL]nI Pg(5t5dBhMF%ZiU{bhU Jt()5m|?SI %u)5vL:KM7[kVֆrE]k r:[-}n4դwC]#,&|5 ׎B0x񵡛.7\alD*MؖeZ:Dz1Fl 5=pfltArq`@2zc1 ݒm+ε%k1 ݖmx&!Уbl!tk6*yKl[/9.7,tĝm9d) E12^m:m,1 ݧoϛnϻR>NJ[ >JUITʀJT2U.e@%vBPɀNT2  4-2jPT2j Zu)*PʀJT]t2U $ ]$X &0u* _a ҥ‡ʫ^]ֽDmC4Kcie"g=oWB/JJ;S|S'_(A6<#m ޡ͵=]L/c '!M㓐LŒ%x g(IBc\[Pt= jL'm9aT)١d1-&q_D9($ip $ Aa8a$o0)!IhҁP J @{A(%jB#%F?!F?%F?gHoRH$ n0"(x{gH.3E+m "PHfXqVuVmU^O SԤF'=5IOMzjSouZIOMzjSF驵JOMzjS8S3+rO _+,=5IO E驱/S#!Oyjįzjy{B1ΒMYNO(n,Fe<5=v ۜU#/@%.u%ЖY Aw,݋ ̻e1kn% {lujeoQ.q@xg @( Pd SRb=K*/U栯{l9kq_d%{Ta_R|IgwB섌= {24Oؓ< mK2B/st:"cns˘No&斫#|ru3䖫#C=50>IOMzjSF驵JOMzjS8Ss$=5IOMzjmtSԤ&= {jx\zjS褧&=5IOMzjTtդ&]6:IWMjUH= jsLUP ҷr utYtx{r쩑zw"!J} iBh/.'iJ5^аȅ`>[BCOrPB޷'9t୐SƄ#tʸ}E@)c yPz~〰Ta0a:eLSƄ:e\APzRB/PJeJ C)y_N!V)wҲ%G1H @ a ŔD*4-Uȯ^X%i띄3jCj|uMՀf1u`Vu`+ToU[MhBhʹ=EQKXrz f աcXnJ`GK5VIíB %QJ(r[B % $(r.^ΥPVRru-*0T-:҆;PJ&2Ԣg uR&6IP'eC 5R>DuoQJX BI Q'eD uR&NH]&PIHQ'eBEuRp. Amp) dTmAIAȠ dPR2 B%!AI!CS!CS!CS!CS!CS!CӸ!CӸ!CӸ!CӸ!CӸ!CӸ!CӸ!C!C 2t~!C 2t~! 2 ~0! 2 ~0! 2L~0!!Ƙ\!`Zw-* {8LdUrqLj&dr#krV܃C(`=X\rVM=X^=u_#G&cGQ2fg0 p1pV(Vux/;ա/;8x9(FxDhRG0jǃId ~/eju%r^SAf Ms獞oq8Fε-=rݨRCG /M;*ëEEՌ|jF(%p*ߒR" ^?A7ʒ0zLGYhaΧ!xRA fr8fzq8߇ŋ7I 6x| jwQ%MeE%?+IfO݃QxȻSFQ E{XQ"O_o~._?y 4I?r3-܄Q77[]__ܟ3)7~w(׋i]^|kR [CpTXd6"ЯY7aYImxT0&}N/X.9N05HFAe+ O_gSf_//`d !GRòZD^ x]|Fm%<zKψ !d}ei Oy?wzrlW tx<Fq0B7v[o|e7G E A?W夋ax EuP-!S$nsRrvƔm340hJ b=Z'U=xf J9UR:^.Ӏ)n'!+b]E 'jZ~siM̫_^^߷gۑn`>Q ,_8&]61k6UCT}B)yT\GmadY~V|]B+:=1ۙp龘,ɏ|Z-<4D\W<;O>yw_pEp*q_}wQf"Tw2iC+}=fpkȁ~Lp^DfV~p%~7Qc|,]^v%T*M @lkAq!0紱Ъ,]aêy@:Snthx#kmo x <][P Ҵg.<⟆'jW-_ٴ /,*`-S>Xjje,w|- Fvc4=e]QAUvf +wD!6F8(quզAs;]o/돿v\j_i/PI hyu8}\x?@(܀J 0G2 shSee(LSUH?@@~D5 N]xaɐ-Mcgc 2684E+ؾT*N xr:ysoi2G]DMsv9/ߖ{o\X&hc^e3N$.Gx 3ClKeV.ݖLz%44K [9=B(_)|H,WL9 }Ɖ|cevIdyO؏̋y3u2XnݓCH\|pLo_筟o6rsc{&XYEJ9 .]V6xi =?D6XL8llib֪= Ӝ0]xۅѡ*CJ9!).ʤwW!@{ Q7r xs/K:6pX20A#Cl[AiD|Ȧc3aNYP=-m";*_xԜnf^CJUaڣOqq#QA Im*l*{x 8,%Pɔ[')5haw NkoF@ɻg:c/xx̦Ww~yu]_~ePs@KCF󐑽5\|ryY]EMVnl DďaM4ŋyI0'OK¹Hz`ޯPwY\b~.UNu+x}R3(gar+P<=c#ݥrTmd(&吅~mQt>޲)ȟ#.VK%l ,.`\8ae6eO鷋c`ICm:|cήuvPǬ+w:jǬ+Av:^Ǭ3uJ_:LG%3tJOFw_~}cq,~B>0/Z5rY5yjfN[3+pܚYIfV5[3k!5׎[3kH r(\:r/c%#W}b$t3lLhymibmmcGV]8n7wwʚwʚwڪwߤ'V ~VuuʚuʚuڪuߤjnAssʚsʚsڪs߈ibr.onNtvJsK%%wuc1fi=c {g8oZ oN[h}3I̦_/{8+49X,v~g~b69tQi6 DY`LI"5|0MXJ]>H]~W#GkN oD&,N0M`٥A/%]kduMt>GM(]Ym3z<ݕ%~QI}x(+HWW$<[S'=BIJ&"=MD7q6-|'yC*+?i?ߟuu~ Üđsޕ?5K5fDD{oZ.ڊ]IIgV@MImw<$^=w"*/,`(hEIaeu=Tg^Pn179%~-`tplq RB `%GյwSğQi /HI_neId¹(:F"ƴ!#3Ds堦%_C$gQ0#@ů#K3ST⦺/(TQ޵JY\xc 20mt߽:0e7uK:o-v:q-om˒N[pХ:/Pv:ܵ:\Sl]:moUSN[pM:|6gFe>:!^x;TW&ђ A1LYd6.ן萇jeaj:8\9l 5"6'Ut&:Z9th !ET! AH)M512g:$ @K@F4':1 at$F75- F4& ]9&}`МESJ9CUc *bc%11#IJbb ScXijc0$N@í9qJk1oc"610Ht>1 4J1MCs10P@1L$1]Sb7RЀ&XjA=!`K#Xq+|Ly]%1/OfIb&MJb_,>_,]B ]ڧV\a[3Jt z.0iROƶL ضE=a@۱'ch'8Eu]`WAE\aװUǴ3GLjDkx dVe]nȕ`ffn`fzmm&AT7[͈MHE&ϰ߼VRUfס-mhÀI W9uNQa0"r42fd&442t[rb^rH1BH!o & )&Qc Kf8/\Rcln%a#paY9\j`r6,؈8\r}A؈8\iS! sv ! {jG9\ \A8sU0DxÅi!F<$F7F6\k0` 4W:)hQ#p@ِa a #E0ÅZ6FᲚ?LI 3mea`7&$b``/ߢYQ&*;?k,J{fˬ.,)c73\T>HQEzf!⒃Daũ؅SUqj},(HiPakRXW'2rkG(]=n ;ѡ8!v#0;jȼ&`bd_@le# ylM.M}@g "&^4/Q؞'߰3122 lO b}»~1BlWJlDtugT87!s"ە7*(ue!9tBީ4nSYODLnG,q(Q!h3pfWE cr̡B֓fx)6ڒ4#Jo[shK $EtI3f%llrڒ4V9(%i pP]C̱-I3Rf$A-I3Ff% I3:;ؠ0 +)yf]žV󔎤o$}#IHdG7o%}O1ɢ.:sΨuҠ?OFdO(I^,S{Jvt]0h[ӲF]?UBl`!-Ez 0Ջl3m<u=Q} @XS0Tj Ba-ƞwCa_m@IiP:Z%gXB9iqP:q _Kr;xH;XK+r)p QL˞rԩ%(AIt0y(KZ:&_%:@Y 0ewAYeg?2ZLV(Kyj1YCIꮣeAI8qA9(h9P:PZ91zZV!Je=GϞrHCYϸrH e|Ses\K< }5(Phl@Y>Rk<d5B-(P|uLG@I꾯%CI5v-~%ĩ} R4uE孙PXoaEy+u{o|Ogl^FUXTw&&|Z^YQ% MDlʳd(/*t+9"gήΪDVwpe#Z3⶟:Gt`I뻞|PV~@L \2Ҫ~m=nuiwϡma}w^m{Si̶tsj r5}EǗ\Y9 כFiqmw_8ݩyUį8:U mʲؿ]gmM9[lfc3~[zZQRǩͪx1N +Tı8vxTIÎF|իG߂/a,Q8U/iP)()*1blsݫb=25bd$ʠl#&QejeP9+@ 0wL5 0$BϸF5Dz U" J o|N;X-~q70 _ROxv;fܷi-#͈}6,hәf[YYN9 O*6%<ߵz>wr\K`ѩDoăbG2 dx(Ly~ Ym5K|gmz2E'4?so!){!φ 2M`(k\ w9za&+{,˵z(j=)#(\If+TB.SI.hp8:v5mirSuZ8f<Uq@8(GD}^Gu=fI讟a.=SS|八&-*[&{BPh>.>{,6[;K`D>h{ASim} !uCw&z2f9d J0ԹO ~b 1D"ÂewL»Wa3ӕ$1gQ/yvڥ[a>Φ2#k h-huI*GBa+iMoce-!bb<7pQ b(}G氞-I}>igϦjL'6/sX*)'k{4\,nmhߩ+ҔVO%ZaDDtG4v|#ӬFq!iUݪNU0d;W;߽ۯ?q3A2lɠw[AﴶZAd^A?<(aG@# ?2(ȠG@# ?2(ȠG@# ?:(QGA?:(QGA?:(Q@c  ?6(1ؠ@c  ?6(1ؠ@c ...O(/OeLpv8mNbb+\8v>֎ps4u1 )+@+q\:#E&@Tlޕ?=р{g|4+MS8HTiJiǿٛ79^;ϭSd:Nggj;?^-b}4ڷŇweJ3y<+y1u,nUT}2"+^Yb0J-O!0yovDlFG:&y~m7'Ӫl~o{e-xE%W醿#l]wnWyDqZkѹ`Wq:){\_fז֭$ZyYKyg\&zsNxK.ǎ>mwl}tE K>߁[(pß#kqV RVq7{ڠOR(E-j!'KԳ5O' "Y;1)xM̘co#Oe8NmmQI:쀈P* Q6"}Y=P8͐:|ROS1.{߈#H_Kn1Vb\q~cZt?ż8-i6ɿh{F6;NWjV#߫XYiPFougUe,}Op,YzArZdōpRo,lmms-1.0.0+bzr2569/data/projects/Demos/LICENSES.TXT0000644000000000000000000000121211603573245017346 0ustar 00000000000000* CapDan-ReggaetonTry.mmpz - Artistic 2.0 - http://lmms.sourceforge.net/lsp/index.php?action=show&file=1370 * CapDan-ReggaeTry.mmpz - Artistic 2.0 - http://lmms.sourceforge.net/lsp/index.php?action=show&file=1369 * EsoXLB-CPU.mmpz - Artistic 2.0 - http://lmms.sourceforge.net/lsp/index.php?action=show&file=723 * Oglsdl-PpTrip.mmpz - Artistic 2.0 - http://lmms.sourceforge.net/lsp/index.php?action=show&file=1156 * Skiessi-C64.mmpz - CC (by sa) - http://lmms.sourceforge.net/lsp/index.php?action=show&file=472 * Thomasso-AxeFromThe80s.mmpz - Artistic 2.0 - http://lmms.sourceforge.net/lsp/index.php?action=show&file=474 lmms-1.0.0+bzr2569/data/projects/Demos/Oglsdl-PpTrip.mmpz0000644000000000000000000006144411603573245021122 0ustar 00000000000000`xks۸.} χwNelNi>NvtwS*Z$v(RMRdjH" !:ąp}`a{r N3eobwخu I V,kMBNJk_>AOPwl7ן>\0O-igI/~]:?D?;hXv_-0U?8-(v§%`:?X~* IYOI?mcZo-w޳k@PV4Ӊ^:Q]w6:1MF !JY*3㵪4[ ™Z {Љ8O~>8U`M_`@U=ZL5f J֖]zNM\σUYO2^~[΃dRUPa 'gz T)LΟɕgJLIM+ Ҝ:4~6 l˛QfJR Sk5I ~@Frn; J)#VvԳ{-8Xr>,yT|_p|K8_.N%H满H5ӑRGTn="w1U1ADLJ!1i+ć໣fv|[sy)[mj./Tw ՝BuWpέx ؒf^>Vvد) j(Bʘ=AN,"WrjNټjC.u6rZæmC.30 &N̔)+7r /F! "&gjƈ+|\ė"0 gF^00+ <NPF9˻+ WL:,ʙ.瘍+rfy4e1s0LP\VfV^=¨q);`yTW\;3=*v_=3Q ;ճL@N_=fav&e a?*ڙ\+V ;bұ_+@OT;3-2:vkńcǿV୎Z>>cV ;3#h`?*@0vk2T;QAG HSH[[0syr_`vE cяLoG&vgR?"i(+a;l;35#v_м!v+grCWמB<[V~EMC'$/ȺDKKVC", V'+\t$c$ExS_BX X, %X4Nr`E YX'a<$0,I .<yW>w  bA:3.bHT$b*JX`I_V l L|I,0Hq5,0$PTtYTAY"C'5,0HgZ>t,0 .:Y'8s _|l$`.H( H`A-JNB "ID LE!X@$ H`$B!i`$"IM, X@$ PO $q4 "I4($i -0 Pp$Bs, X(!I, X@$ H`$"ID z@|nU$, X@$ HB!I I,XT( P0MTd& &"ID BB 9S( P@$ H@$"IBR%"ID $I($L)JB\R#!B!IB $  I*{$X($IPH`$B.` P@$`B!HB ɧ \ A($B.H',0 0@$ hHࠐ4 pH$"ID$I!$AALGac@pP e@pP e@pPHr&qϵ5;W"[[܊0>+*"L+'Eӫ 0= 0=azUA3*r"LOQJ0FI'h%E^azt"LBRQI0=ӣaz4"L,(H"LJRE^azAGaz!G#0=ٔ 0zˏ |+,_y)dॢ߇ {6܉t=o7pA}[88 X5hрn"|z:HE;=O?aΙ7%tK e ¶N6Vv伹孝7U\#RōHF~L8B$_}˶e"O}ziB!+S0zubM=sM$\}PwۻOW7է=xL8~ /_/ a ؜IӦ*?>;tpywd> /Xߎg!qTgYDv#P5k䁜x&V.Lӫ׹n{ \xo>b>߃'Dpc䚜W#o8SL+(:.qL䧫w7ufןe '?J|0OhMEҿ~{eyg:@ D=K/c!hn!c;x  9Yh\jCϼS0Ml#0KoaMbs yn[)]dC_ 54hPS}&Q^-`GF Kz7d0<'slO֌c0GUR:N!h1`/2^pYTMu:YG[sns1n|yX󋦇ݝ,jRt~ l0_=Л䄬J l;!Plx"U.[*g=vk/yQ+ m_aj>k@1Y†z9_=\~BiYz@]+tiBFԻ-}!VS.*B{ )ɺ1]S_\5\ܔXz=ʟǠ˲[FfdK53E໓qhv(`SYt˛/o?_`QLcSʣ4^ߴZlV*Ue!t63~Op؀{QWLCCxni]Mjb3__Hmڤ֊'he3~G|gHƱY4ŦtPܰl.ZLkTDir0h*~(o^A~+PZ,=7^c[2X+ǟ0Ov<9uy#+NM졨05xwۗ˛_R&xnP^8N}z+Hzr9Aw{vm*T~yCH йx,qxy@|WD}\"C-uYpyMЩ5OW"CQaz"pu ZFK+Ei3&V̂}j3bt86sR Yv1.yL0V:fTnzѼ Jq P!gC#gl2mi 93`et$+읹$59@!uQ~{b+6_۹ '3ep 4p٨`h+IbZ$©aD\/vBe:UK+u>+ ȅ5k2rӕ?LI meM:`q74LeeFޢlkeZAqm&[O7W^ՒtzDiU ?H5475>E*\Hd9g/Ңߦe)5cǥT[9Ki;.֢YJ$p74ZxcPKYȒwTkVa udm#FbgTx4nFlf ŕN%Gp ^0$ű1UpLŸ&-`ijڑdj|1FN?C7Rcڨ PI+i;hGм˲Im-olyw` 0rڅr7=+|ʯhCt7+_ϕ_HW>2߹g/_Wm|C^_KƗ=bmS>RD)6ý6wfCO֌ؚ֌1И_Y[3{ٚEF%߅[3Tmؚ͐ςؙ;3ڙ;3[R+vf3FؙAU*9e3>Cg80|ϐN'cGޛBްM")›")›")LB oooԦ)$xFN!G wpljNNr w m!;ES;ESQ›RȆq7:H|dF\\@ci;P$o蟅kabq9]@r){Te{f!vq%"]:n "ࡲ~e(?rTji>ɀ q9\Ğ?ezb,JA=EqOy<IK*|=]ʊpfn|& -G-B?FoTV톙̊י(u.|U< 8 K'gT%V'x- ^od1ESƐv)]Yg򂡵*;Krz1*k)"}Mqχ}Gh^CϒK3/v)=&O-ϒ;ͷĮ|mcyB\2Lk!}7@ZM5U0-llG5=YT}ɶ>Kz^d˖dm% sS} rglϒlt2^^۷p ׽pw>{{Fu/\uߺ .Wü^վp ׽pݷuT-4ݎ/0ܲmٺjil4[c<:ʚwe^dsl9':Ld^Sbd/&{1ً(&"\Kc7AyEPWEPk[mɔp /&x1^LbOukmvfjhL`LSt5L13M8w;HK2֔%9n]rCײ<N4bZ}3Yv o-c;fx̆~3<Rw>Ew@v8E6㻟{`] fxV~3<?^Ֆ\3<盢y{]^ہsGx3<"y3<=v9|sǾw^zYANDՋzۋQ|+iUϷQ|#7A^ZREݾ5EGˋ;>"#QNs[qm ^uQ|^sq-4/ہ[GbGoGwGݾ/~b>اb^Ӌ}zO߾;=ΐv$$b^Ӌ}zO/>}NLb/&x1}ku"o["o{"o{"-h|WT]ԽWxE ^'{'{x-gk~e-^q_@},_1~z"VB2(ǡ gAXO)`:Jbq9L]ϑ~:b REXn+J7RNz #'5~@vhK"-o/JPBIb%T^M_S-QNBf&O$a`#c K4?ٷThRHK a f.Sr"hsPl+zӼN!d,o{p GS2Ҁgҙ҆`Pv<- 34%#ii;^wtrҳ T&;j"N+՟J zok8LX(I*`H"%rK͗K˙4AOb9O>0[TdH^N(i*&lVԆìeBQIa, 1tOGO<I$ؙ|Iq ~ -SǷaW[ҙDe #mE=U*Te@\MgE_m7fgdm3Da2/W$0<'\c˳UǙ\,gy}]$^W&UxV]wɳ:yųYw6F=xLgaogaow/Ϫ}<ƟijoԶiGEq$\xy.zY5gJj&Uw)ϪKeZ1M5`{ܮdzo|nWvUgU3Ϲ ⎙xV OaYwoȻnW7M,?9~uLijN7Ce`-f]g:u$k">;^r]y;ЋI#'O{]wi"yھyyޱ;;O>by;O;0c7 Oa{i^aiۏ/i|7O7Oa|<)_Wf*dv5W_|cv_ƹ v{/s|o|%i{|g|'w|[ `i">m=gr^-uwMkղSS펣8wwN9vJf=찻P/SТxM~DAGd}A咽:Y>hQ\·^ \"+HkQ;EN&.9R&.9n&.#jm-vyDV Y^r(-J5zɶK%#j>KdUZ_Bж%P'/ jKxd[{~DV|֧QQ1joOWv["Fm[G>"v[DMĨ)Q1jMD~>mh7)R˗ DZ;%bDDQ1j۶/bDQ#j{QmLDml(ƨqFȽG1GGm1jۏcz0옶>##'bԚF8&ɷ S2vL91Fjq"e2esc hE,^uﯾeqRȣ?m߯?yj[{r ӅaBB_ֿU&ȫ@8SL+(:.qL䧫w7ufןe '?J|0OhMEҿ~{eyg:@ D=K/c!hn!c;x  9q|ѫDŽ,eg^hy;cۉW~Cmf1IlnCs*g)wC ko*j\0O$ʫL8c0hȊYBXTԃ!i:^6U93+:*pyuspC_4=׏[kyx0jHOS~khn=W*͉R惩jː2K؀6 .?aA,=ԭpwlٓe!-1V@c0p+\5ïNg0 &O\VMUG3RSϖMuדa'1h{ǟsƲlh]ČulfV|w2-EYt*nvyKR, YM\,.Z6=û6"/$G&{>wtG} kD3XZJg2*22%ͻbt_P` 3 *c$&T ?(q³ц|D@">@|W<}\"C55Tyx"@- k Ւ]ws|.JYZv; dy2ro1%/ {C1b{So֥p4[cgΆ&;%.?,\l`?c8ASQ\]ޜ| 4E(~pI[/L :6)e=t cN /K<K 6:$E" -Mb'_S"!\K@r{!h(ߍ\XV@tO`d(3kX^ʳ kٔQ-8jZF=nVW#94>[O8[t *i= @jT^ȣΘ6F)-/#x r։NbLZh\2xn&&hjز #uoQO]Ѝ2WʠY8K=FmݧۛDjI:a2iU DH5275 1\Ur^LE1KYȒ]}*&*ұaQ+6 `I,J קYt7tl fIQ%t/.ZDuuU/yե8d*/?4i1t=A"M;0gHN gH>C3"|g(|g(|L>CB  s-|gH} m(gy>CukJq|P8 4_Kr*jP8 iXNC4NC409<0#N#xx=<1Qfy?F>F>F>fSQVinoO% ĺ](ɨOV^b"/džj%vJ@dQ<ֈ6* ʮ7/x2;7~t|;~n/Љ":}"فK7ƶ]`:Rw,h8m #?vqoblӴ$~S]Ve{f!vqAkHds0P(;W-_DQBVK;xa7OH(+PQZXbіluٴf*KM.m6fKKM..m6|:5$jttjtX2'2$DWW-V~UkH"zRjMs6tk2٭e/[8eq\Zm]uk!խe6SHGa7z:6?ntlzHvyspņi3gmSQӼf4oۥeAviYмݚ4oǦ$<6\Og޲Y,x.- [ӂgYGCt3*- K˂Ҳ :5-ΎMC46Dj,wW7XM9RRSDsN"IX,c|soJߌo0JLB雉TT -?zQyWhϫnǏVl%Fﯾeq>]?:~\4t"x ~қ:Hd:YŐIWY HVϋv`VIK= SOz3YExdų0QpZ0xRDP?zAE~^m2B{:0E/J>%&'oD&_O:@b+\:᫉S1BQvK5ϨQ=(*ja&0u&y] _rR4]rbhlSI6?n sJdiDSYy* Yh-Iv =P`L$sB^Zoȣ%nNYFUi™Z+/7Ν ACV_|9-AJm Oz2ם$Q&5iÍWSWj'`PI ˕䲦qO:EcjC /T;2_M KWM8o(,WͿi00)}M W~C |+I",=eY`P)=sPSP5ÀMA )l*0X.&teF5[~Ktf|i dAA}0ԏ'x?ԲsіN.n'''d+xsx> seI,R]\|:zo?fϯs~~~yr_^,gep;_|򿞯38L?˹:G涩\)}ữs4/˻{{OiY ?=7n~~Sxk3ǻz}83 =4WSfC??_~/i4_h޾.>O׻;[T{z)7tw2~oz?_̓aE{}g]߿s|޿za>!g_lBp^ST/}s n/+;w̛~~dMǿ4oqw_x^ O>9Vf?EsQ럿 %t/?篿M>o{`=%>_MKM=_wKiﯵ;?}u?Ϸ_kq'_mE.6.X̀1#.Mx!zYoza/S-U+m]j!"IH00 Z zy;YjvɖǒdLr|3hJ($5QKpPp@ 5/推j|j;mjoUs r;lͅBh, 'f35wMV6w={)Vtc.uB])}jwTIA#+-ETnzls'>hθz/__D*ßohbn'Z~3HۻO0p6s( @^jkA {J)RYxip])؍E4^:h8 UZ4x&V0G:~0i8G}bJ*%$~SqbBuP?\]}pwp{spgT2ߓe%|'4&"_?_ރJBVzX47j97*a}1" ,z7>RaÚ,jTl*rwKCS+jhЌ%ܒ\f1}4iJXЦ  'OӫhoX&ӨbP,*^:ZebP&ϙYq@.bnuXzb+x0jHOse4oh҉+:ː` h9}ӥFCZA;˙ȩYQ0Vט WEwh2] y`(4T5hB13xyՇۏWFWCɰ<-ȾV?sXKmf[ypSE~t%*:CCi`tl-`t\BH:}MP X-oJ}8pհ$dinw'5k#Н E0Z%ZsYz2˨/ESJMsBTBUc[#Z)rZZb~::-O}^U<҆Ggx -kk-jHWt1CrI`hg1Lަeܚ%RV0UnQ*֏m-c εN쪼(lP5N!%0n4%Y_YRpFAA~ѧQ .ooo>P-~߸f0j\.R,b/w+ (uח߾__=|eDGwtOOK~#)O61SMJfzrAڣmjׯ)5E:}^ &hKS-X {QiS)+iQ3E3u c0 L._BAUoea6 q ıǡ9sos { {if *cmR" ܻs>~!MJ~&9B%ه&2qthK{ҙ m]`(MupVwԔvtP.Кv,XNsw61]َgqn{x+ 5:(*L}/78@6]'(7$YgyVou к8/P鄼:!mM Ur@dBxȄE& ~|dH+.>.ܞKKCA&蔽E2CQaz2qu Z2 %mY/R]cb,6CjjA7򗼋^njuMվYmCu[8qrf;F)BYϷ<9<.$9za"IW$B`{AUiץߙWZ &]YT+ݪh|dćۛfOlɉYD'G=?:~zVesqHŸJxvwd)ۥ.޸eH^qɛTu|Ǐ]O^DhZ!7in שO <Ԃo{fq[ N[<x%#jÏEG Y-?Z.z]og}LPWh>4&bіluٴf*KM.m6fKKM..m6|:5$jttjtX2ш|[_o+]ȎԚU{[wk2Η٭e[˸Mn-㶮ې2nc$#Ű=a7e:6c$xm7W&̧i3gmSQӼf4oۥeAviYмݚ4oǦ$<6\Og޲Y,x.- [ӂgYGCt3*- K˂Ҳ :5-ΎMC46Dob6HNHqOm+A{HR*K1o(=7c[(}3̿7Pf#*UwC}Q?m߯?yj[UmG h/h-xPKo:<5K?Ma$U2b$ ىDEK{l;~p}xervD*rBxⓞLֶ\8Sk=ƹ@4U P0rY-A sIeZ:55g]$TKϦ9P* LcWl jj%ʲ"F z5!hȚ&bmv+OVxEjإI]3t ,UޙW3ϙ\VX:oU!i<^2ಯ|ǖ&UGm|`]yc@*J&/:@5bhWc m] 3]5߻C;.r;NYQ%gCnxѦ&;vUvhYlhW?;Ee3q-'k,[N]ԸZLɫ?*\-='g#wK:L wx`jO){u8cZ ,XW36ꪙ\rUYה)y Ϋ2F8A#{K7OV2 q]zNM\σimo)RX4駓Z,xϾ0= 劰,$“ #GB> iXQq[JKE`[,ɳ%@KvZO``KJ顜s-}ZSZwCQz5Fߒ}_I0D3? C$Q(ChJv=rޙ;6;iq\^qtYᰱ8Dd-C7CTseqC[ٷJQymo쾣>x@;]i'^ h3$n13{C#ZxP%Z9QD LehC7dv+}i{%zqB"Nfq2R;ī2J2[&f$ǯa8~]Sǯsݱh!_?nǯۉyІnqyfׁ8~}Gp#o 2+/ nffڀX`A؋|eH~zi΅]kwZMhY}*Cjmvnvgnz )@@iW5K,4`i ,f“$MFSLu`iEmYUcG5EPs(kwF};nwA_e<rͳCE͵CcՖĐc _/܉`m> w-+FnNDk+'R%]kŨO wt'ӫ8XXD=ʟ%2l9KtwN?q2D4rrTx`FVϴ|7(H<%ȩa7͟SUN*əz?*3 r-`#͂dce8pr* 82FP5t}hj޿$la43믊-ewq 0<@0'8pŨ21a}ZU*a Vp$83E& 2% b&M11D#JY|Wqb@ӕlhXt=ˣPޣa@3z4,!e,XrքPA,hA6u,5YXІ9X%%k t)= ,*]gr/ ,j󡁅]PtTi`@ tElX8@p b"hbl`X8@p bl3p b&42&X8@p  `AX8@X,̜v@:C<(!956 y@Ax>䀚PJ4xJPP+Y/ Z'KUP~YPpJ²O(ʎ_\Z+CrIڥ,9J2~qIE>5"MM7sI@e/䜐%[t QD5,&$aI$\VnsP(@$ BR d %I,2kI"CI /d UH3vWȠhJO :(<%Xd(IbAQ ԰P";(ְP""aq:JXdzXdzXd(Ibb>t,2ȃu,2Ȧ#E$d; ,2F1wXd& _JXdK> ,2E$bEy-Xd(IbFWXd(Ib,ib$E0E$k~E@%m9<2xd伇 ȀJ"ð`X`@0j`aaXC,*XP PA,"   ̂R pP‹+SE‚*S7+$,X$@@ bq)"aa( bA7 PA31'ew&"xg""w&"xgb!9T3;|(xg""w&"3\ ~o-XQ{ ~o;};?@D=],w xw x"+:A!wć؂B3(5pƯ -l,@b\/ Aš$, A _):~AP"_ @Q@kD(AB4 @/ 3DA,X@ b"8*T 7*X/g\;Y` ~%,yM@ɉ91s"fNaE\UP̉93W#(bD\EP̉9K$E\K$E1s4"fFRH9I3W1s"f"(bD\UP̉1s8A3+ 9;NN_-ABs(W Ǐ1{Q>}̓K7^z"Ƈ\ajBjK yV%$駬V&RC@JI_ewdzMCg FFLӞt;O,o6{=/ZcfOjwi;^eaAAY#O෵ |TD(sa4M 0 ̊Olpmw`x= < *O`č_Lr[nTh#s0DF^kO40"agه3=P`L`= `8];)**6eRɗj99g}u$F~57 ?;ut0oxqUx-ʺ*zHR3ߤ~DY(yY>4<.kd =+Uu(4gك Bf#uX(6UMu>} Ko5s\+8.!:s@D3''藤7O_z#]wcx1w5JHY#ОCg<9cY]֚'wITTZc$r8*L1ԥb*2ՋY A!2DZhZ@؛L쒂CkOư #>h[o-Rkzf6'ȣ`dHTnoݝ,9gu{ygJ^|)[knaJ_R_m2Ws_x;BZN)kv [vvuW^'Ў4F{whDžu5Cn |֡^Lʋ65)Xt܎-y/F;LhWs..y#pK׃5^/ȗMEkJΔ^ԽRbSp[w(\vq w&%>kff jjs2Erì*yT֋Ncfv.Q)( -Oe(YZ~q ۵Q\LQ5((*FSjY2j&<)[@QBuJPX`#j,jeX37k) P`^xQu5Ս'n>8eI|Ae (Wd`5}igz,<}Y/ks|1_xWx ^܅}sǝ$67r87 /\$[0% ޓV2g£xRskMedu1Zkwē(#-;( .Ҳ۳"E=1mjq&z蠚h1^yQye眢({r=Eᙊ􂡑]Fm9yQ(-=8@,f@Y)I%6ߎgޔ%Qܽ[5`rv#8VԃbèQt5IhkhimV6siim_&DƣO2 ŀ<3hSY=3*rݥ݋Vҏ[r.gnGAyHHp#ay`I^?Rwn <L"9ON $}FZ_i|UMSNFaE3#=8@pWQpW$ڇK?$!b@>d}ةGSd'>ѣ&S8WrKz;]ULO$2O>S쓉'w~2NO!))DS:?))DS:?JO")B?SSt NO%)DS;?jwt:?jOT"J?SSv*NO#)iD:?ZOvK)iD:?ZO4"iF?SӉw:NO')D;?zA=䨞NO')D;?zO "A?S3gtN ⟱E?$o6~ȏ&~wxJJ;rN;̌VfA + bM&z Djc%x][h(qzJ$ZkeF8xzZaեJ8?pqpGϗ_>]>y}wr~/.ڙ_ޜNqg|p׿p:&8t'۠G?ecu QVkvQ3xdS~ VZrZ4i0O[۬7k狋4$EC8YDӭoJL:q|WNϵh>ۿښ v}*Ltc T@erå6kw,}e(8epw7K[RNI~2mTQy r*#f,f2ZŭYĉ^Ey徝}&Ṿ,VG35- [b?;vk=mi-2w"jnYC 3RCt*'cteTL ja&;A-ރx= { z/C:CZsVQ믑2᭗7ʇvt"΅8\s! s7Ҙc>!y?cg)9|wkrI('{x'ផn(LQ#'!x2őrJ));%kҶM}C=fiG *[g .PzR˚ 1,Rct1fCP)@m nӣc_i\.$ukӇI4O3:[oc&)nQ!^;x]'[AA|3#;ra{j.8F=t~?!;f]ܩ:hIvtv; lY8xsHAib&%e`Q'`Vrk)S:OClZq0VΆq{Վz{tp5:ۭq-*ʋX[noR{V8B{]ƺu'i(>szY+|~oo~ va<])V76IY;\rrգ՚8LWml9ō׫RHN\l63뜠{8~ jJ]GXLEjX"MD*#5[*˗|m`}O{Yu'(SݨcwN'f1ǰ܄ 9h%ֆI3jx" *,4߯_{]łZ@6g2UDPnfmtڰf|FI0UN<֊)QpRتvVxZa;C}g~Yp{W_ajMߖ4ܻv.h:\r,i'V-8-]{ž)O+$;7t5(w~tc`[߶k|ga5]@>ׯ߮߾gMi12bcU gbxhn@8 ȩy=tXn@T~}_rm?A}q ;^+^Yt-Kͥ1.ZWvlrxZvˇ2wpc7Ӕ{/qgum5ْhpf;sYY.QT3ڮvg-YNMi}/wHm,霥{" !f!Vm6l7C9hBzY q:Yq\/lFu*=Wv0K1ز[/ օg&<=G+mvQ 3=)sU6:Bh3NvnBDɾ+>xU۬s y9&$h^Ip͵ԭg31bMfgfMZ=銩ӣn0%:7R{KuQ͝ lMiV-fّd,]/Otm/fM(thY=&]ҪUo|HN!P͚Wt2t-,kEϔ^ |ɗcMB mA.@X@֜¨-/f8ؑ`pXA!I̺!IN.f@$#c@UU%f AW Ia@$&0 V$f? UKaz@X)v '$&q0;6BP{rq.=Vb֧!ߧ#Si8l4I_[͍;m,}Ǵ Q#eoWo G<8G\>>q7y}}>>@ɧp8OqY@]}~F9ag O%q0-/g(M^y,n)%wZX扟gIK?딒:dN+Z!'wTKG甒9dqtN+ZA OD1%u9>ztHWw <#~ԅIbE=F~#0r#/wї;r/ BW|O77ԏ}o?77jur{I+UVj]n*l$߂(~ht< h1 8Z%f:X%K4dEhkNt+w߮.Ռ7Y2N##ky| X/U=ܵ5A5k'z:. Q>D5!^|wh56+N;j2m'uwOݟ Ә";/49}?&khooUFxǻNu1Β",\nIƫh>|鳵&V-[⤷yٵrV"Lu5YRCn`k=T-G_6PkٯYQ۪Vs^[)J( Ֆxu+d/넫p\}Bf6YĹJy+2%Eۯ CuGj6U:'sIK }p!t?3Sz>@ ral֝ŇziO:Q9OzyIlSfN_׶__it7SnB&7A ?A r`c;(:fêmb9m–ogcf,Ua'"WЂ4-`.{g4mKqFtpmKgY(ёa/^=Ңj< 5)^Ϲ?-UUR+g<,TΤ/[3[[75P4C~K~ؿP]ORP{RWSא{>78n%8I:؋ Rw ;:{Quv`Ց^ē#K6axIQ!QCg ?4~ ?4$~`I/I"b?Z.oH@iO}OO ?4krf?8SC/_H&@>ts@$?tqe|@C]`)0~h'/s)(M~Q$~`I{ $ ?4~h?t_H?@$C)G?s(PISCG?$~%/W~ߡiX?l~"C'I>0$tOOg$~hI1? ݟiC_J}3GIG@$~@Z?%'S,QWlt@'_d5߂/)]Eu_|k HE HE|8|S/_OE(GE~֯xGE|8_ę OE'"lENOG`d50)]Fu`k HF HF8S0_OF(GF~֯xGF8`ę OF'#Fkz?L>gno^ #Tpx 0N<0$GGHd%I @>\AI$S #hNIABPI `N Rdl34Lt@: +`?%?I~~ #.H)\䷓{3{{?S['sO R/CiO ҁ@^ ;[0@>H hg'd@B tH#+ 23,h 'h14㧁lHa| )`GG)1AF3AJ\R"dT?O 2@nA6r*LdG 1AJqǼdY$B)ҁҟݟh)vn?f23:`h1$~<r?/?h/?[CCOW>AyI~A/?/ߑF#?3H+Hf6~@\s(IC$btT /KD.Dcmuü@jFR4`i ̈ 蠩«  xO?ʶg'f+YĬ.ʾWǡO.>q _O[8.:wpOS鴅[©bOZx-|bn,>p O+np[.OY8.}-\'-b> _׍[+v]-|*?i܅[.b~)SN_f>=-ZPQO]8w)v̅['n:3pWEp[x-bn;iuinӹ \8->pS/n O+vSn[8-)np[->q _+fp[xDWi O+f[t-f[x,\:wp ?J+|bnq O+n]8,^ [«MK؅W'vصc'vصcRx8 vn"dKU%#WW^q/WRxҿ^֏^/WK^qnRxE?W^_ n|)bK_ xRxU+++)Rx%WI^'W+#WG/W'WS}B zOEsGQ'-?̢In&hRg1~I-:[ '_{ʢQn+4G0$~v+o?g)N[K(m `:*;dq3q,s䞻̄#= ;0tt^$_P Tċt'xry?g 8HU]3;AN'!Lt"|ว o$t!+$ij$~ۣ?@$ǔOB''3с+.C#OE'Eh:o`; 'C'ϼY@O$>a@́OzO?I>?ksI& ?$~CHnP#3(it ƕOgޟhqI.$>0sM:[4~@柆\~R ?)Y3ƖLZLt4kzOJ1#g&HH/.?~ \fd.܂st fҼkjN5U'tk8ޥk]W]] F5 F5贠k]ҟkxt 3F]Ó/|A]t _5,~A]t wq:>i&@}t yb;^00xVx D01Lty1LpÆ<|f6. i9\x rnx5Lx˹95gǰ-L~.< [ 97 o93>S _΁Ga>H;&X=)X4ŕK/N{oW'}{?ۓ$~h2J?0\),&? ??|`GW$`ⷿi$9~@> p*u ?04~ D'|$~`NL#{(е .Ѝ{&{3 ypg ?a?R s3G=H$~`I9&? `V?T`S??TH??n>$~hj\?fM>~gޟIPW?4$'߁gG?GG?hf$G)@4'돫? @? pGg!A82iA&@T HT'M>0$`1~I~I|6~ @3 Gxbo(1 4~|h70+Ӛ-Ӛ0ݷcy־T ֟Ly)K0)k`ʻ5{_E~֟La)ALL`ҿLy_'SֿLy)KL`9`*S ? qt0{ 更HR$~E)} {QfGG({eC'Resg? ?E)OFzˤ`>P &?=p^4~8 ?}I?;c>q3iAsόcCwʺqD'u$Y{$)NIt֟$:%)/NItJSKS謭?ItJSItJS/NItJZ8ŐD$:&'NItJ$)NIt֞ItJS-_DgmISDgKSItJSH/[3[Ubml4Z-O4ڼ]Oԓ-;0p ;wt't$tͯOS!qCw!'C? ~h~CN?l?N~ݣb?C(|7~?| o=,_V-D)P)@M|?0~?wz~h.l?ꍟďjS>1 KIh|j)@:?`M=SH>_ 3mJF5`k%X# k$X# k$X#'k~Z5`k$X# ?y$X# ԗ/ H%X# ֜ XsՎW1e8Z, [)e.s뿥j"C%Glu|ăSH<[|=]ڕ43H &RoӧlCDCl:,\;]' UVZ~d{]-\^XﻹU뽦`TCUS9QlHWMnXMXMnYMYMnZMڌCwm/wBwBwBwBwm_T ݵ̙Ew0Bw(w1Bwm}kЍkН5d5d5d5du2G!C7!Cw!C&{ؐ,ņ NC>6dFv=:@wmlX՞~ -! lv6dvvِtng7lFv6dvv]-N=m= u׍st:9:tgw]Mnm=N<9=M}M;نwwzq-u=ysqw[χ;z.r4tFq;׋^.{>u}_z޺>ѡ|hn>q|CH#HwbgTx9:BXSUSUS=pvs:󉇠2*tf<SF2*tj*(}nx7G ]1GU9:t6t8Z>6t>78> C 6t>u5@y_st>7xz>ѡm D@!st>ѡ>su^WCt|n󁞏χz#t}CPo1kl>ۉc}>j:"ƑCHdz;>y#t:>ѡ\{x:P ut:Z5n4rQA7a7t]<+!\HPhAo:xkD6YsW갧MUȍ 2\*jnlT*Tg,9gCnzGB6Mk~ZF'GيƳi_Cf:=e:d ߺ_:g) uO2t2z\t,#g<{O cL2# Z<8p\U9phj]e9XXr`3 -xV8_7\g<{{M/Xw7H1vacu5Q8^#؏1k*k*k*k# [E^ 7:\MolU 5n3 &Ruj2<4x UT I]xŐTMR5] |:Rut.Zdx U?RuN#X#X籮@V#/ j2ۥ/zH} Ǒ G}ː;i2]'Mt$iO$ٽfs\xؐ.2<}m&V7txpŶh{j["{H%RߴgstxlCGg,=,Ć$%ѡ;d,6Y] /Fxxл4^7SŦ<Os QTqX3/nP?O1~FlWjٮ-N1<ئ *]l, 1 >w544B;vMe a׵շ2]O9QбX>`ͱ Xrt^YEr\{oAJp*b8vO-ؽSqC`V o@k2<p&ñvCvϤ?Eo(] >jRyNQѳ'aȯ4N}i#9<9Z=9=9Z>9>9Z?9???mlmmmmmmmu+_Q׭F_u+o[iڿn6jۨVڿn[iڿn6jJ5jJ5jJ5jJ55jJ5jJ5jJ5jJ5jJ5jzרUڿ^Wizڿ^5jzl֣:ѨUڿ^Wizڿ^5jzרWڿ~_iڿ~7jߨWڿ_F|'> e7٘ߓJ+/t5N(.raHwrD@g)m7rrwJ7`:ŔJ'yJ)UB(֙0FR DJJjerzuǗ^|_?yz~u?O/.;ۋ}/j}v{ڟ>?\xv/^WI|9j)]%>\--/>[Ju0vՄ=YUC?m}ҟ?ٷs᪝rr W?_ngb6|l}x9k_J7? /2[ʟ3Z?'[j u7 oX-_̓xTJg_g7h,*$':?*"5wjжOz>t(5hjTkUpSj[Oh0䗹E[ n> |`^-ˎ-q Yrj6ࣵ6@I0fXi}ЬLީi/6әl7_ plmms-1.0.0+bzr2569/data/projects/Demos/Skiessi-C64.mmpz0000644000000000000000000001263011603573245020417 0ustar 00000000000000x]m㶵Bq?n{"Mٛ ޢ(Z[kK$K./7Z#ZҡLhu$"yÇq>MhZ:y#bRm[m}KZ׵Jv_ԓ6Ӛ'z |:.WAgM%֕9]6\!SNww^Z NI>jj[3sڋhD{oA(:-Gnf3"]Qgǧ;WlI壻 +/!6ɫ:^z&!'Ejٛ$Z}&õSUMftWq7q*Ĉe}+u#_!!OH*Hk_݋j?{|]<9A.i?9Kl=#7J[oͳuy|]:lͳu K9]]<8ANi?8a,Kγs:ckͳuxGtx2' _Lzy@V oK{HR!Yn 5WrUDB9D`!b!b!b3䓖GfV:`@wp_7.zb]E!\j{`@SXIN%~}sYӯ~âOsZp{`Xϲ ْ~M(% ^tX8nBLWb0ӯeM%BQ3zP絶 {.PiOT,L`ρPaWT%~GQ~Ӯ`Ls墦 1XTQf!:.@3)5] ^ysʃl5YgɅyzC?m"Cdysek]\j{h[5\Cn1NyOgKP~yM' ՗ퟪ*xTsfT 4q)Ub EhjVf7^/#b^V0Y[@>/StVb.'36ʆ 2;sX 8P x[=4@-WBAChb#ꌱ/F".9G[p̔y3*̖93fޜW,?kU$$1_HgEuTg]DI'ǎ쨆߯kpo ˥:( 0sb|{ (b}(E/JaFn~Ԧ.@s4Ⱦ :u_7T@yjh|?31 ͩy }_(X| a\1mp( m(&Hf0(b3]*,`̣ạa̛VKk>3|SG븝W 6a `qX+J޻Q 0Di$Ohu;YlTiEagr'$F"h$E VYhO1]U+&1q4ˏGggi΂1 \a,c9=,-}4Ύ㠏foࠏfYhA͠xF]>Q?ڑQͨKq3rьE8uvE5xF]Ό>Qg㨏gم8CuZ_/9U9VQu*Z*Zx^ kqyf JysJDP, Zk;ZnA[&MXcTzMǠmEàV[xwj o|[m᝿A-5l~ǰf0j{S$nBxūO['uՑVF:`9׏~8.Bdw,nw8Bv,Uw9[yq[ʭPi+&q#'.=8gS'|z[ =BbTX6 Sճ$ڣy\]qQE1GZTZDHNq!T335StWjow?WÏ?S&Wg_tO6I›_|jw:[%d=yfI]n]gvw'7wLjeN.i槪 U?*;O?a%U:+F #!ro%.IIN qq[+:~oob170?>xCzVsCj쾥Ze{'$o !VRys7IAJI\; V_<M:HʗK7㗒W.n~χDY"%7%פHyA!v+:<'}xdo ҃U;w]eLjy0NAfv=VХvh\f +˦r7Y~#0f_[KpiiUϲ45}+wZQye4msw7Vlmms-1.0.0+bzr2569/data/projects/Demos/Thomasso-AxeFromThe80s.mmpz0000644000000000000000000003525611603573245022614 0ustar 00000000000000=x}sH+X{#oYMvcm=sw Cb ȏq[xH<c5I2~PxX|ӱ9ؓ_?|ZAxs{H /}aWay./WWw;-f3 ^]ˉ؏'̇0r4 yjo7ȋ'F=9ǝ d;N=,&\3ט 38 |xMw@3m1Ϧ;WNk_iOdD|\Hsy2}ۃUY&L1A\__|B+ ȸQ5M< 4\͎*^v ̚"b C8Sۣ竭}XŅsg~ n_hb^w?vwmo_k17z=|H 1|s{u~ys]|>8wNOխJTR_Bz~{~uqq{W?a kB4L? RuUjh.ԬZtW<*6*Zpn#"/=I@@8 VP .|rLW_iyu~4 o<-SW_NSװ=q]smC:2*^]~>R84vgڏ E-YM=ĊV{*E 8E Ǧic+[W5gPu,"SdAmzHr4K]K֮h gT`Qd+}ҔY,Hg=$h-V b'%o7/ JF;P!ݑVؚ qf^uPɆMTeE!!S}V;h=j8i n07w/+9;b>RW[[U>NKoIazkiT̑ ˓G6tzd{?ë+BLR2i<'5mGceT;A/澋07JՌ?j+Z:=(kR:\(O:ԧҩ{+V&֧,ŦX1(RScLQI:W7ח{#kvP1$rc׷#E넔=#¼IfKF-)>{iV9K~/U'aඏm۾÷}p{x'z|EW*V2{2Blb ZIb-hjF \DcRc\s|_19+!(9}1GcC1rt|gA۪tt#!X[4 $턠c<t#嚽Hc\t|gA"Moc tT:[$t,' %!΂!A} tl%!،[4 $턠c<t#僎-t +踐!XC]ckzs|g1G"HQM2w).7@xb\эD\ᡥ3?kWڰ^ }IِNl y'R6w"e9}'R6w"e}'R*G!(H~I}~㘀w4,+v_XՑq;s J(]<[vNgo_bn$BW[s݆E"#"Rq;P-Beg$)rF4\M&sAݩ-sV"$)r?8M@mIъ/YQ͗/yky> 4ڴӗХÜ"|j"T6iD۽#k3mmVh|MT_'qo_%=vonFI0:~FNݱ ;pu4#{>HIhkUbeu^x`㒑fشT\vc̱c[;&ކwmb`޵Ky]Gwmp`޵4wVk7-1-[ǴmC3svwqr&mM@s= @wO^kw7o dA{c5X76oޞ7xco176 zcG Ո Hz{ =op`(' EfV\_\7_kL586YPB^HtuqIPO; j4q@cP,U.,gW(>7ZX|5̴s#+¬ݸZ]ą?{f/v#J㒮&PlbVC<߁\NW|Cբr`=RsI>lre4/P$A&"!H+(A`|+Q%]F ]Ne"[շlB~\ ѭ9y r9r a:Ī#wtZ,],qwhET3w×6 KmL_WW/kJ /@/ۃZ=y 8XBa(%~'" rkIXqrl]d=@IJG #5B@w1R# #+uUEN#Nj8vul9=;X7`7\4{ݹ 6k]f9#{EY{RAc?>9vivU'PmG /+#-JBk"µ@@+ۮad#L6^y 7py+3}]=3{ߤM=ΈQ+rg#6F5F kT͉L3!̄0LXf̄6^ѱB$ sB8 ,98">/~Ao^e <"֞i8zWS{np k)` .`e 3}`Nd>%.|G*e w'>ɚqw}Gቭ͉8bYC? 0+3}]内~7Lzd 2e3q1u\NT9Zs:CePzQ$bк 0Yz/wىors~\x'7'͕)ǍN΀*t=5Uz8wjpbTᬫB)YS ]GcM՚*t=5Q8kpTBñcS˦ ]GM^I,v=6Yz8mpd0b1rŮ覊/5v2lRPc.-v OAɰSA]N>E,v=:Yz8updbSŮ#g']N,v=;Yz8Zwq(d8bAŮ#']O> ,v=8b3=bf nB҃xJ蟼ۛM'2kMg=RcjN7)0^Oʢg}ї}j݃ >-=S? iџsv}jɫ>5J+|$P@΋it@m@^ΓXeN]IHs&AxY;gdwMOq^5E>>||<x1Ѥc#ǜG!'~/Q>>;|NvDxY#e~v']pD6L0?}?Y>}=}<<}Y;:}9}9Y87}66}Y5v˛Q#ǛE#Ǜ9Kv<}dO 0|ݽvRS|5B g߯am>4 sUM>ݘvw&muxZul+FP۫˛H_\|js6Xpp<w't4ml%u몆lW}ED^{J,<ڪ~RW&[,Y/Th**Mի{4 a;IZȭTxҳrb!V8~gv[Vk?+d'U_׫}Y#oKIug 1jЍWױ^0 + =jӾ"';27fMS/o//?VX{O]8q1\,҈hؙpsxgqY11/( JDq?/+Q`EԬkR-˨^_\ VsGD+T5ZuNl@U h _l HAv?-?I ;3zU͕3lyum;V'rB[[_X _"%!%+mR\}*}ּcilllݖ43u׋*jPlP˚$fIuӮ\V4-jפ'Intd`B [nE~zT;1՟sh29~v6 U|COT#\^7Ѫ9JٜЖ,bH$G.X-ՠR lO.e[Ԭ|"}_Vt_3],x.7U` /t&WH"[ TwM2+GmX5P"Ƶ`KQ "['([di3&xvm|r7jjpuۋ2W,'KM<1ZN"yϦnՑaޑ+#4GqhmR9Ggʏ^in\z qJ7/AXtw pZS;J7@Uۻ _p)J!J?}u~ǍBc(CxTCZcr'cEE]B(v VVݜȮۻ纽h`E-Fݢ|.bd- 8odc4Ӵn;W"wo;5Po:Bǭ%[lw7G }:\&]Knn.?^EP!\Vؚ qg^uPɆMTeE!!S備Vh=j8i n07w/+z9Ч=HfUNOoIa'{kitҕ2G2a |=`z!%^ lkerMy*=0OT#=(t촌 y6"Rw^wE\':~umRJukޚh'~T̽ԕҍ4CsSBbc,[i^V% :W7ח{IxQ$ri׷#*ְ,g<0d ln[3~%1ucڭV@J}t#0 BSW0t dԽUT2&4Ԛ(<s5SS>*$IMA=~zwB#߂.fp{b:™U^aqL?q?qL@; W}/[,8h_W%{w'7ՍE#j;D vّHjbo`0ZYR K% b;V581%R!ZΈHRi(=m1YŊ)Eޤ$ed䟑N:}sA궈 }Ix8Zbw9? /TC$([(:})&rѺOPM+s h#p%&_@%^?e}h&1|G39KfΗ(˗]z1K9u@_?df?!T^ s=#P!U fYNY==#~1Ը7ԯӌFv`֞)RQ$VZ]JA#'잎T\ 8:xAz454m;y9JePmr竭}X-g ;ػ ~UBJGȆ燐QP`c,5Tƴ"Ȋl}䅇L S>a Y&1bƖwtȗxX6H [)c O;Zz`!)ncdTYX~6.g׎g 0џVt|Q}ʚG3"×-w ݣ{B=o-k^RQ !ݘʘ £<DzP\1:IrxLltkͶw}:A(nDRQ(Ki$#%/4m7Y 蟼 Ǔ(͋D%H@0Fi})"('@@V7ɂ {{{o{K{{#螨ZtoSE^JH_/vt]ZD n_B 65 19@9WbH0E2/ E 'hCuH ]Z6^01U|#)$||("@@T8x(819]#Bb38Ƙ c0c"1 cx0',,`!7NA`o$T[%(H' m 7ao$9ضK$V|#)BzCs^aa A|̃XN1A 1bMW@0a >A, 8EL((ߛ*߂gYP>PqOJL;slw$O)])o[Ÿ~W/Tt.#fY=պRE:U{/iW!D^Eםҟz]' !躱nN\ ]w\]'siWQ':i }):4 躱nA{t]7&t]'guGu fAW-yAu#w i5wݜ6 }7vqmnh㘩إDS MBD]ɇ(6Nm¬.a8Au7Vy瀂uQvWsAuҢ֥w6Vtjͱm^xs\7A@NΡk;;ri?;zzA=wwz'+@^@@N ?wwow"K{|-lpw"f@ߍwsH:־8H:ھ hnXw9 nw-!#}wd}',<־<־[t^C?$)rttotBH((IRJJGtq_P:P:B[t((qJJ't~eP{ttJ'w~YPoҁґ)v~MP糖ҁ*EaH`;#X}'A[)Xz} ;38U\8jh3FmF4}' ɩw#/J&‘:j@Gw w#$AGws8Iu[Oӿwt4FntПrҟhLT2밥>J$ӺG:1'x`nYP\GgDg4^v=u@_7%bߡ=F$ VjF{17査]#q`Zeݍi犥b^fb&zIjnǭkgTߴ VH"[ìV$j%/k P\ 5D8$m W[8FܝIp5ԣ䥴4w ce!9 X=A:K &Hr9'LLYDvBϱlÔYʉ3E,6;[; |(YiJ yI5>v@,8ow@p|o:ǿ++| Te7z9 V$>UF)"^eΟ{,g,.!.S& VM]_Kbi(da-___|XJeX&=z(tI؁%hvxE]$(%#Hh h-!h m!h !h!h-"hm"hm"hm"hm"hm"hm"hm"hm"hm"hm"hmhmhmhmм\& 6Q& 6Q& 6Q& 6Q& 6Q& 6Q&6Q&6Q&6Q&6Q:D&6Q&6Q&6Q&6Q&6Q&J6Q&J6Q&J6Q&J6Q&J6Qzgyke`(5Di`(5Di`(5Di`(5Di`(7Dy`(7Dy`(7Dy`(7Dy`(7DWވ2vw9$'='W|8_~9Q0* }^Yf;!4+^6!bE>k) 1FHʂb! 4l^q.\\f6 |Ka&X&0̸:}4r㕉nr¬0ӕ1ןv>sIElmms-1.0.0+bzr2569/data/projects/OldStuff/BlueWolf-DreamTravel.mmp0000644000000000000000000020715111603573245022667 0ustar 00000000000000

Put down your project notes here.

]]>
lmms-1.0.0+bzr2569/data/projects/OldStuff/Chris-HorizonRemix.mmp0000644000000000000000000026263211603573245022454 0ustar 00000000000000