pax_global_header00006660000000000000000000000064145465317050014524gustar00rootroot0000000000000052 comment=36842a3bccfb78f5c27642435bff387b42f7d13b btop-1.3.0/000077500000000000000000000000001454653170500124715ustar00rootroot00000000000000btop-1.3.0/.editorconfig000066400000000000000000000001711454653170500151450ustar00rootroot00000000000000[*.{cpp,h,hpp,sh,md,cfg,sample}] indent_style = tab indent_size = 4 [*.{yml,yaml}] indent_style = space indent_size = 2 btop-1.3.0/.github/000077500000000000000000000000001454653170500140315ustar00rootroot00000000000000btop-1.3.0/.github/FUNDING.yml000066400000000000000000000011031454653170500156410ustar00rootroot00000000000000# These are supported funding model platforms github: aristocratos patreon: # Replace with a single Patreon username open_collective: # Replace with a single Open Collective username ko_fi: aristocratos tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry liberapay: # Replace with a single Liberapay username issuehunt: # Replace with a single IssueHunt username otechie: # Replace with a single Otechie username custom: https://paypal.me/aristocratos btop-1.3.0/.github/ISSUE_TEMPLATE/000077500000000000000000000000001454653170500162145ustar00rootroot00000000000000btop-1.3.0/.github/ISSUE_TEMPLATE/bug_report.md000066400000000000000000000031771454653170500207160ustar00rootroot00000000000000--- name: Bug report about: Create a report to help us improve title: "[BUG]" labels: bug assignees: aristocratos --- **Read the README.md and search for similar issues before posting a bug report!** Any bug that can be solved by just reading the [prerequisites](https://github.com/aristocratos/btop#prerequisites) section of the README will likely be ignored. **Describe the bug** [A clear and concise description of what the bug is.] **To Reproduce** [Steps to reproduce the behavior:] **Expected behavior** [A clear and concise description of what you expected to happen.] **Screenshots** [If applicable, add screenshots to help explain your problem.] **Info (please complete the following information):** - btop++ version: `btop -v` - If using snap: `snap info btop` - Binary: [self compiled or static binary from release] - (If compiled) Compiler and version: - Architecture: [x86_64, aarch64, etc.] `uname -m` - Platform: [Linux, FreeBSD, OsX] - (Linux) Kernel: `uname -r` - (OSX/FreeBSD) Os release version: - Terminal used: - Font used: **Additional context** Contents of `~/.config/btop/btop.log` Note: The snap uses: `~/snap/btop/current/.config/btop` (try running btop with `--debug` flag if btop.log is empty) **GDB Backtrace** If btop++ is crashing at start the following steps could be helpful: (Extra helpful if compiled with `make OPTFLAGS="-O0 -g"`) 1. run (linux): `gdb btop` (macos): `lldb btop` 2. `r` to run, wait for crash and press enter if prompted, CTRL+L to clear screen if needed. 3. (gdb): `thread apply all bt` (lldb): `bt all` to get backtrace for all threads 4. Copy and paste the backtrace here: btop-1.3.0/.github/ISSUE_TEMPLATE/feature_request.md000066400000000000000000000011571454653170500217450ustar00rootroot00000000000000--- name: Feature request about: Suggest an idea for this project title: "[REQUEST]" labels: enhancement assignees: aristocratos --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. btop-1.3.0/.github/workflows/000077500000000000000000000000001454653170500160665ustar00rootroot00000000000000btop-1.3.0/.github/workflows/cmake-freebsd.yml000066400000000000000000000016541454653170500213070ustar00rootroot00000000000000name: FreeBSD CMake on: push: branches: main tags-ignore: '*.*' paths: - '.github/workflows/cmake-freebsd.yml' - 'CMakeLists.txt' - 'include/**' - 'src/*pp' - 'src/freebsd/*pp' pull_request: branches: main paths: - '.github/workflows/cmake-freebsd.yml' - 'CMakeLists.txt' - 'include/**' - 'src/*pp' - 'src/freebsd/*pp' jobs: cmake_build_on_freebsd: runs-on: ubuntu-22.04 concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true steps: - uses: actions/checkout@v4 - name: Compile uses: vmactions/freebsd-vm@v1 with: release: '14.0' usesh: true prepare: pkg install -y cmake ninja run: | CXX=clang++ cmake -B build -G Ninja -DBTOP_STATIC=ON cmake --build build --verbose btop-1.3.0/.github/workflows/cmake-linux.yml000066400000000000000000000016531454653170500210330ustar00rootroot00000000000000name: Linux CMake on: push: branches: main tags-ignore: '*.*' paths: - '.github/workflows/cmake-linux.yml' - 'CMakeLists.txt' - 'include/**' - 'src/*pp' - 'src/linux/*pp' pull_request: branches: main paths: - '.github/workflows/cmake-linux.yml' - 'CMakeLists.txt' - 'include/**' - 'src/*pp' - 'src/linux/*pp' jobs: cmake_build_on_linux: runs-on: ubuntu-latest container: alpine:edge concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true steps: - uses: actions/checkout@v4 - name: Install build tools run: apk add --no-cache --update clang cmake lld ninja - name: Configure run: CXX=clang++ LDFLAGS=-fuse-ld=lld cmake -B build -G Ninja -DBTOP_STATIC=ON - name: Compile run: cmake --build build --verbose btop-1.3.0/.github/workflows/cmake-macos.yml000066400000000000000000000023541454653170500207750ustar00rootroot00000000000000name: macOS CMake on: push: branches: main tags-ignore: '*.*' paths: - '.github/workflows/cmake-macos.yml' - 'CMakeLists.txt' - 'include/**' - 'src/*pp' - 'src/osx/*pp' pull_request: branches: main paths: - '.github/workflows/cmake-macos.yml' - 'CMakeLists.txt' - 'include/**' - 'src/*pp' - 'src/osx/*pp' jobs: cmake_build_on_macos: runs-on: macos-latest concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true steps: - uses: actions/checkout@v4 - name: Install build tools run: | export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew update --quiet brew install --force --overwrite cmake llvm@17 ninja - name: Configure run: | export LLVM_PREFIX="$(brew --prefix llvm)" export CXX="$LLVM_PREFIX/bin/clang++" export CPPFLAGS="-I$LLVM_PREFIX/include" export LDFLAGS="-L$LLVM_PREFIX/lib -L$LLVM_PREFIX/lib/c++ -Wl,-rpath,$LLVM_PREFIX/lib/c++ -fuse-ld=$LLVM_PREFIX/bin/ld64.lld" cmake -B build -G Ninja - name: Compile run: cmake --build build --verbose btop-1.3.0/.github/workflows/continuous-build-freebsd.yml000066400000000000000000000030061454653170500235230ustar00rootroot00000000000000name: Continuous Build FreeBSD on: workflow_dispatch: push: branches: - main tags-ignore: - '*.*' paths: - 'src/**' - '!src/linux/**' - '!src/osx/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-freebsd.yml' pull_request: branches: - main paths: - 'src/**' - '!src/linux/**' - '!src/osx/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-freebsd.yml' jobs: build-freebsd: runs-on: ubuntu-22.04 timeout-minutes: 20 strategy: matrix: compiler: ["clang++", "g++"] steps: - uses: actions/checkout@v4 with: submodules: recursive - name: Compile uses: vmactions/freebsd-vm@v1 with: release: '14.0' usesh: true prepare: | pkg install -y gmake gcc coreutils git git config --global --add safe.directory /home/runner/work/btop/btop run: | CXX=${{ matrix.compiler }} gmake STATIC=true STRIP=true GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") COMPILER=$(echo ${{ matrix.compiler }} | sed 's/clang++/llvm/' | sed 's/g++/gcc/') mv bin/btop bin/btop-"$COMPILER"-"$GIT_HASH" ls -alh bin - uses: actions/upload-artifact@v3 with: name: btop-x86_64-freebsd-14 path: 'bin/*' if-no-files-found: error btop-1.3.0/.github/workflows/continuous-build-linux.yml000066400000000000000000000065401454653170500232560ustar00rootroot00000000000000name: Continuous Build Linux on: workflow_dispatch: push: branches: - main tags-ignore: - '*.*' paths: - 'src/**' - '!src/osx/**' - '!src/freebsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-linux.yml' pull_request: branches: - main paths: - 'src/**' - '!src/osx/**' - '!src/freebsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-linux.yml' jobs: static-build: continue-on-error: true strategy: matrix: toolchain: - aarch64-linux-musl - aarch64_be-linux-musl - arm-linux-musleabi - arm-linux-musleabihf - armeb-linux-musleabi - armeb-linux-musleabihf - armel-linux-musleabi - armel-linux-musleabihf - armv5l-linux-musleabi - armv5l-linux-musleabihf - armv6-linux-musleabi - armv6-linux-musleabihf - armv7l-linux-musleabihf - armv7m-linux-musleabi - armv7r-linux-musleabihf - i486-linux-musl - i686-linux-musl - m68k-linux-musl - mips-linux-musl - mips-linux-musln32sf - mips-linux-muslsf - mips64-linux-musl - mips64-linux-musln32 - mips64-linux-musln32sf - mips64el-linux-musl - mips64el-linux-musln32 - mips64el-linux-musln32sf - mipsel-linux-musl - mipsel-linux-musln32 - mipsel-linux-musln32sf - mipsel-linux-muslsf - powerpc-linux-musl - powerpc-linux-muslsf - powerpc64-linux-musl - powerpc64le-linux-musl - powerpcle-linux-musl - powerpcle-linux-muslsf - riscv32-linux-musl - riscv64-linux-musl - s390x-linux-musl - x86_64-linux-musl - x86_64-linux-muslx32 # - or1k-linux-musl # - sh2-linux-musl # - sh2-linux-muslfdpic # - sh2eb-linux-musl # - sh2eb-linux-muslfdpic # - sh4-linux-musl # - sh4eb-linux-musl runs-on: ubuntu-latest container: muslcc/x86_64:${{ matrix.toolchain }} steps: - name: Install build tools run: apk add --no-cache coreutils git make tar zstd - name: Fix - Unsafe repository stop run: git config --global --add safe.directory /__w/btop/btop - name: Checkout source uses: actions/checkout@v3 with: submodules: recursive - name: Fix - Stopping at filesystem boundary run: git init # [fix Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).] - name: Build run: make STATIC=true STRIP=true - name: Make executable run: chmod +x bin/* - name: Set up directories run: | mkdir .artifacts mkdir .package - name: Create binary atrifacts run: | TOOLCHAIN=${{ matrix.toolchain }} GIT_HASH=$(git rev-parse --short "${{ github.sha }}") FILENAME=btop-${TOOLCHAIN/linux-musl/}-$GIT_HASH cp bin/btop .artifacts/$FILENAME - name: Upload artifacts uses: actions/upload-artifact@v3 with: name: btop-${{ matrix.toolchain }} path: '.artifacts/**' btop-1.3.0/.github/workflows/continuous-build-macos.yml000066400000000000000000000031551454653170500232200ustar00rootroot00000000000000name: Continuous Build MacOS on: workflow_dispatch: push: branches: - main tags-ignore: - '*.*' paths: - 'src/**' - '!src/linux/**' - '!src/freebsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-macos.yml' pull_request: branches: - main paths: - 'src/**' - '!src/linux/**' - '!src/freebsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-macos.yml' jobs: build-macos11: runs-on: macos-11 steps: - uses: actions/checkout@v3 with: submodules: recursive - name: Compile run: | make CXX=g++-11 ARCH=x86_64 STATIC=true STRIP=true GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") mv bin/btop bin/btop-x86_64-BigSur-$GIT_HASH ls -alh bin - uses: actions/upload-artifact@v3 with: name: btop-x86_64-macos11-BigSur path: 'bin/*' build-macos12: runs-on: macos-12 steps: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: latest-stable - uses: actions/checkout@v3 with: submodules: recursive - name: Compile run: | make CXX=g++-12 ARCH=x86_64 STATIC=true STRIP=true GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") mv bin/btop bin/btop-x86_64-Monterey-$GIT_HASH ls -alh bin - uses: actions/upload-artifact@v3 with: name: btop-x86_64-macos12-Monterey path: 'bin/*' btop-1.3.0/.github/workflows/continuous-build-openbsd.yml000066400000000000000000000025211454653170500235440ustar00rootroot00000000000000name: Continuous Build OpenBSD on: workflow_dispatch: push: branches: - main tags-ignore: - '*.*' paths: - 'src/**' - '!src/linux/**' - '!src/osx/**' - '!src/freebsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-openbsd.yml' pull_request: branches: - main paths: - 'src/**' - '!src/linux/**' - '!src/osx/**' - '!src/freebsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-openbsd.yml' jobs: build-openbsd: runs-on: ubuntu-22.04 timeout-minutes: 20 steps: - uses: actions/checkout@v4 with: submodules: recursive - name: Compile uses: vmactions/openbsd-vm@v1 with: release: '7.4' usesh: true prepare: | pkg_add gmake gcc%11 g++%11 coreutils git git config --global --add safe.directory /home/runner/work/btop/btop run: | gmake CXX=eg++ STATIC=true STRIP=true GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") mv bin/btop bin/btop-GCC11-"$GIT_HASH" ls -alh bin - uses: actions/upload-artifact@v3 with: name: btop-x86_64-openbsd-7.4 path: 'bin/*' if-no-files-found: error btop-1.3.0/.github/workflows/test-snap-can-build.yml000066400000000000000000000015411454653170500223640ustar00rootroot00000000000000name: 🧪 Test snap can be built on x86_64 on: workflow_dispatch: push: branches: [ main ] tags-ignore: - '*.*' paths: - 'src/**' - '!src/osx/**' - '!src/freebsd/**' - 'include/**' - 'Makefile' - '.github/workflows/test-snap-can-build.yml' pull_request: branches: [ main ] paths: - 'src/**' - '!src/osx/**' - '!src/freebsd/**' - 'include/**' - 'Makefile' - '.github/workflows/test-snap-can-build.yml' jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [16.x] steps: - uses: actions/checkout@v2 - uses: snapcore/action-build@v1 id: build - uses: diddlesnaps/snapcraft-review-action@v1 with: snap: ${{ steps.build.outputs.snap }} isClassic: 'false' btop-1.3.0/.gitignore000066400000000000000000000020461454653170500144630ustar00rootroot00000000000000# gitginore template for creating Snap packages # website: https://snapcraft.io/ parts/ prime/ stage/ *.snap # Snapcraft global state tracking data(automatically generated) # https://forum.snapcraft.io/t/location-to-save-global-state/768 /snap/.snapcraft/ # Source archive packed by `snapcraft cleanbuild` before pushing to the LXD container /*_source.tar.bz2 # Prerequisites *.d # Compiled Object files *.slo *.lo *.o *.obj # Precompiled Headers *.gch *.pch # Compiled Dynamic libraries *.so *.dylib *.dll # Fortran module files *.mod *.smod # Compiled Static libraries *.lai *.la *.a *.lib # Executables *.exe *.out *.app build bin btop .*/ # Optional libraries lib/rocm_smi_lib # Don't ignore .github directory !.github/ # Ignore files created by Qt Creator *.config *.creator *.creator.user *.creator.user.* *.cflags *.cxxflags *.files *.includes # CMake CMakeLists.txt.user CMakeCache.txt CMakeFiles CMakeScripts Testing Makefile cmake_install.cmake install_manifest.txt compile_commands.json CTestTestfile.cmake _deps # CLion cmake-build-* btop-1.3.0/.gitmodules000066400000000000000000000000001454653170500146340ustar00rootroot00000000000000btop-1.3.0/CHANGELOG.md000066400000000000000000000321511454653170500143040ustar00rootroot00000000000000## v1.3.0 * Added Gpu Support Linux | @romner-set | PR #529 * Added platform support for OpenBSD | @joske | PR #607 * Enable macos clang | @muneebmahmed | PR #666 * Fix Apple Silicon CPUs misprinted | @masiboss | PR #679 * Cmake support for MacOS | @imwints | PR #675 * Elementarish theme: color update according to Elementary palette | @stradicat | PR #660 * Add alternative key codes for Delete, Insert, Home, End | @ivanp7 | PR #659 * Fix scrollbar not clearing sometimes. | @DecklynKern | PR #643 * Add keybind for toggling memory display mode in PROC box | @rahulaggarwal965 | PR #623 * Minor string initialization improvement | @imwints | PR #636 * Made disks statvfs logic asynchronous. | @crestfallnatwork | PR #633 * Fix signal list on non-linux/weird linux platforms | @lvxnull | PR #630 * Add option to accumulate a child's resources in parent in tree-view | @imwints | PR #618 * Add CMake support for Linux | @imwints | PR #589 * Horizon theme | @SidVeld | PR #610 * Fix short conversion of 1000-1023 *iB | @scorpion-26 | #609 * Fix integer overflows in btop_collect.cpp | @dorrellmw | #546 * Support compiling with LLVM | @imwints | #510 * Fix getting zfs pool name with '.' char in freebsd | @jfouquart | #602 * [macos/freebsd] support gcc13 | @joske | #600 * FreeBSD swap info | @rrveex | #560 * Create adwaita.theme | @flipflop133 | #485 * Try get terminal size of "/dev/tty" if stdout fails | @imwints | PR #627 * Refresh rate program argument | @imwints | PR #640 * Improved error handling when determining the config directory | @imwints | #652 * Use native POSIX polling syscalls to read input | @lvxnull | #624 * Conditional compile on Big Sur and up | @joske | PR #690 + Various fixes by @imwints, @simplepad, @joske, @gwena, @cpalv, @iambeingtracked, @mattico, @NexAdn ## v1.2.13 * Makefile: VERBOSE=true flag for Makefile to display all compiler commands and fixed so already set CXXFLAGS and LDFLAGS are displayed. * Makefile: Added autodetection for gcc12 to make compiling on macos Ventura easier. * Changed: Reverted back to sysconf(_SC_NPROCESSORS_ONLN) for Cpu core count ant let the new dynamic update fix if cores are turned on later * Fixed: Ignore disks that fails in statvfs64() to avoid slowdowns and possible crashes. * Fixed: Moved up get_cpuHz() in the execution order to get better cpu clock reading. * Added: proc tree view: if there's more than 40 width left, try to print full cmd, by @Superty * Fixed: Show the first IP of the interface in NET box instead of the last, by @correabuscar * Changed: Replace getnameinfo with inet_ntop [on Linux], by @correabuscar * Fixed: Not picking up last username from /etc/passwd * Fixed: Process nice value underflowing, issue #461 * Changed: Replace getnameinfo with inet_ntop [on FreeBSD], by @correabuscar * Changed: Replace getnameinfo with inet_ntop [on macos], by @correabuscar ## v1.2.12 * Added: Dynamic updating of max number of CPU cores. ## v1.2.11 * Fixed: Number of cores wrongly detected for Ryzen in rare cases. ## v1.2.10 * Fixed: Process tree filtering not case insensitive * Added: Paper theme, by @s6muel * Fixed: Extra checks to avoid crash on trying to replace empty strings in tree mode * Fixed: Crashing when cores are offline * Fixed: Cpu::collect() core count counter... * Changed: Using sysconf(_SC_NPROCESSORS_CONF) for number of cores instead of sysconf(_SC_NPROCESSORS_ONLN) * Maintenance: Code cleanup, by @stefanos82 ## v1.2.9 * Fixed: Memory values not clearing properly when not in graph mode in mem box * Changed: kyli0x theme color update, by @kyli0x * Added: Elementarish theme, by @dennismayr * Added: key "?" to see help, by @mohi001 * Added: solarized_light theme, by @Fingerzam * Changed: Made ZFS stats collection compatible with zfs_pools_only option, by @simplepad * Changed: Rewrite of process sorting and tree generation including fixes for tree sorting and mouse support * Added: Option to hide the small cpu graphs for processes * Changed: Small graphs now show colors for each character * Fixed: Getting selfpath on macos (fix for finding theme folder) ## v1.2.8 * Added: Support for ZFS pool io stats monitoring, by @simplepad * Added: Filtering of kernel processes, by @0xJoeMama * Added: New theme everforest-dark-hard, by @iambeingtracked * Added: New theme tomorrow-night, by @appuchias * Changed: Disable battery monitoring if it fails instead of exiting ## v1.2.7 * Fixed: Disk IO stats for individual partitions instead of whole disk (Linux) * Added: Case insensitive process filtering, by @abrasumente233 * Added: Include ZFS ARC in cached/available memory on Linux, by @mattico * Added: Desktop entry and icons, by @yonatan8070 * Fixed: Net sync scale bug * Added: tokyo-night & tokyo-storm themes, by @Schievel1 ## v1.2.6 * Fixed: Wrong memory unit when shorten and size is less than 10, by @mohi001 * Fixed: Use cpu cores avarage temp if missing cpu package temp for FreeBSD * Changed: Enter symbol to a more common variant ## v1.2.5 * Fixed: Fallback to less accurate UTF8 char count if conversion to wstring fails * Fixed: Small ui fixes for mem and disks * Added: New theme HotPurpleTrafficLight, by @pallebone * Fixed: title_left symbol between auto and zero in the net box is not displayed, by @mrdotx * Fixed: Mouse mappings for net box ## v1.2.4 * Optimization: Proc::draw() * Fixed: Ignore duplicate disks with same mountpoint * Changed: Restrict command line for processes to 1000 characters to fix utf8 conversion errors * Added: add "g" and "G" to vim keys, by @mohi001 ## v1.2.3 * Changed: floating_humanizer() now show fractions when shortened and value is < 10 * Fixed: Process tree not redrawing properly * Fixed: string to wstring conversion crash when string is too big ## v1.2.2 * Changed: Reverted uncolor() back to using regex to fix delay in opening menu when compiled with musl * Added: Toggle for showing free disk space for privileged or normal users * Added: Clarification on signal screen that number can be manually entered ## v1.2.1 * Added: Arrow only after use of "f" when filtering processes, by @NavigationHazard * Fixed: Fx::uncolor not removing all escapes * Fixed: Text alignment for popup boxes * Fixed: Terminal resize warning getting stuck * Removed: Unnecessary counter for atomic_lock * Added: Percentage progress to Makefile * Fixed: Alignment of columns in proc box when wide UTF8 characters are used * Fixed: Battery meter draw fix ## v1.2.0 * Added: Support for FreeBSD, by @joske and @aristocratos * Fixed (again): Account for system rolling over net speeds in Net::collect() * Added: Theme gruvbox_material_dark, by @marcoradocchia * Added: Option for base 10 bytes/bits ## v1.1.5 * Fixed: Account for system rolling over net speeds in Net::collect() ## v1.1.4 * Fixed: Create dependency files in build directory when compiling, by @stwnt * Fixed: fix CPU temp fallback on macOS, by @joske * Changed: From rng::sort() to rng::stable_sort() for more stability * Fixed: in_avail() can always be zero, by @pg83 ## v1.1.3 * Added: New theme ayu, by @AlphaNecron * Added: New theme gruvbox_dark_v2, by @pietryszak * Fixed: Macos cpu coretemp for Intel, by @joske * Added: New theme OneDark, by @vtmx * Fixed: Fixed network graph scale int rollover * Fixed: Suspected possibility of very rare stall in Input::clear() ## v1.1.2 * Fixed: SISEGV on macos Mojave, by @mgradowski * Fixed: Small optimizations and fixes to Mem::collect() and Input::get() * Fixed: Wrong unit for net_upload and net_download in config menu * Fixed: UTF-8 detection on macos * Fixed: coretemp iteration due to missing tempX_input, by @KFilipek * Fixed: coretemp ordering ## v1.1.1 * Added: Partial static build (libgcc, libstdc++) for macos * Changed: Continuous build macos switched to OSX 11.6 (Big Sur) and partial static build * Changed: Release binaries for macos switched to OSX 12 (Monterey) and partial static build ## v1.1.0 * Added: Support for OSX, by @joske and @aristocratos ## v1.0.24 * Changed: Collection ordering * Fixed: Restore all escape seq mouse modes on exit * Fixed: SIGINT not cleaning up on exit ## v1.0.23 * Fixed: Config parser missing first value when not including version header * Fixed: Vim keys menu lists selection * Fixed: Stall when clearing input queue on exit and queue is >1 * Fixed: Inconsistent behaviour of "q" key in the menus ## v1.0.22 * Fixed: Bad values for disks and network on 32-bit ## v1.0.21 * Fixed: Removed extra spaces in cpu name * Added: / as alternative bind for filter * Fixed: Security issue when running with SUID bit set ## v1.0.20 * Added: Improved cpu sensor detection for Ryzen Mobile, by @adnanpri * Changed: Updated makefile * Changed: Regex for Fx::uncolor() changed to string search and replace * Changed: Removed all use of regex with dedicated string functions ## v1.0.19 * Fixed: Makefile now tests compiler flag compatibility ## v1.0.18 * Fixed: Makefile g++ -dumpmachine failure to get platform on some distros ## v1.0.17 * Changed: Reverted mutexes back to custom atomic bool based locks * Added: Static binaries switched to building with musl + more platforms, by @jan-guenter * Fixed: Improved battery detection, by @jan-guenter * Added: Displayed battery selectable in options menu * Fixed: Battery error if non existent battery named is entered ## v1.0.16 * Fixed: atomic_wait() and atomic_lock{} use cpu pause instructions instead of thread sleep * Fixed: Swapped from atomic bool spinlocks to mutexes to fix rare deadlock * Added: Continuous Build workflow for OSX branch, by @ShrirajHegde * Changed: Reverted thread mutex lock to atomic bool with wait and timeout * Changed: Removed unnecessary async threads in Runner thread * Added: Try to restart secondary thread in case of stall and additional error checks for ifstream in Proc::collect() * Fixed: change [k]ill to [K]ill when enabling vim keys, by @jlopezcur ## v1.0.15 * Fixed: Extra "root" partition when running in snap * Changed: Limit atomic_wait() to 1000ms to fix rare stall * Fixed: Removed unneeded lock in Runner::run() * Added: Toggle in options for enabling directional vim keys "h,j,k,l" ## v1.0.14 * Changed: Total system memory is checked at every update instead of once at start * Added: Continuous Build workflow, by @ShrirajHegde * Fixed: Uid -> User fallback to getpwuid() if failure for non static builds * Fixed: snap root disk and changed to compiler flags instead of env variables for detection * Added: Development branch for OSX, by @joske ## v1.0.13 * Changed: Graph empty symbol is now regular whitespace ## v1.0.12 * Fixed: Exception handling for faulty net download/upload speed * Fixed: Cpu percent formatting if over 10'000 ## v1.0.11 * Changed: atomic_wait to use while loop instead of wait() because of rare stall when a signal handler is triggered while waiting * Fixed: Get real / mountpoint when running inside snap * Fixed: UTF8 set LANG and LC_ALL to empty before UTF8 search and fixed empty error msg on exit before signal handler init * Changed: Init will continue with a warning if UTF-8 locale are detected and it fails to set the locale ## v1.0.10 * Added: Wait for terminal size properties to be available at start * Changed: Stop second thread before updating terminal size variables * Changed: Moved check for valid terminal dimensions to before platform init * Added: Check for empty percentage deques * Changed: Cpu temp values check for existing values * Fixed: Cpu percent cutting off above 1000 percent and added scaling with "k" prefix above 10'000 * Fixed: Crash when rapidly resizing terminal at start ## v1.0.9 * Added: ifstream check and try-catch for stod() in Tools::system_uptime() * Fixed: Freeze on cin.ignore() ## v1.0.8 * Fixed: Additional NULL checks in UTF-8 detection * Changed: Makefile: Only look for g++-11 if CXX=g++ * Fixed: Missing NULL check for ttyname * Changed: Only log tty name if known ## v1.0.7 * Fixed: Crash when opening menu at too small size * Fixed: Cores not constrained to cpu box and core numbers above 100 cut off * Fixed: Scrollbar position incorrect in small lists and selection not working when filtering ## v1.0.6 * Fixed: Check that getenv("LANG") is not NULL in UTF-8 check * Fixed: Processes not completely hidden when collapsed in tree mode * Fixed: Changed wrong filename error.log to btop.log ## v1.0.5 * Fixed: Load AVG sizing when hiding temperatures * Fixed: Sizing constraints bug on start and boxes can be toggled from size error screen * Fixed: UTF-8 check crashing if LANG was set to non existant locale ## v1.0.4 * Fixed: Use /proc/pid/statm if RSS memory from /proc/pid/stat is faulty ## v1.0.3 * Fixed: stoi 0 literal pointer to nullptr and added more clamping for gradient array access ## v1.0.2 * Fixed: ARCH detection in Makefile * Fixed: Color gradient array out of bounds, added clamp 0-100 for cpu percent values * Fixed: Menu size and preset size issues and added warnings for small terminal size * Fixed: Options menu page selection alignment ## v1.0.1 * Fixed: UTF-8 check to include UTF8 * Fixed: Added thread started check before joining in clean_quit() * Fix documentation of --utf-force in README and --help. by @purinchu ## v1.0.0 * First release for Linux btop-1.3.0/CMakeLists.txt000066400000000000000000000141031454653170500152300ustar00rootroot00000000000000# SPDX-License-Identifier: Apache-2.0 # # CMake configuration for btop # cmake_minimum_required(VERSION 3.24) # Disable in-source builds since they would override the Makefile if("${CMAKE_CURRENT_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_BINARY_DIR}") message(FATAL_ERROR "In-source builds are not allowed") endif() project("btop" VERSION 1.2.13 DESCRIPTION "A monitor of resources" HOMEPAGE_URL "https://github.com/aristocratos/btop" LANGUAGES CXX ) include(CheckCXXCompilerFlag) include(CheckIncludeFileCXX) include(CheckIPOSupported) include(CMakeDependentOption) # Make our Find.cmake files available list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules/") # When the build type is not set we can't fortify if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Release) endif() set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) set(CMAKE_COLOR_DIAGNOSTICS ON) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) option(BTOP_STATIC "Link btop statically" OFF) option(BTOP_LTO "Enable LTO" ON) option(BTOP_USE_MOLD "Use mold to link btop" OFF) option(BTOP_PEDANTIC "Enable a bunch of additional warnings" OFF) option(BTOP_WERROR "Compile with warnings as errors" OFF) option(BTOP_GPU "Enable GPU support" ON) cmake_dependent_option(BTOP_RSMI_STATIC "Link statically to ROCm SMI" OFF "BTOP_GPU" OFF) if(BTOP_STATIC AND NOT APPLE) # Set this before calling find_package set(CMAKE_FIND_LIBRARY_SUFFIXES ".a") endif() add_executable(btop src/btop.cpp src/btop_config.cpp src/btop_draw.cpp src/btop_input.cpp src/btop_menu.cpp src/btop_shared.cpp src/btop_theme.cpp src/btop_tools.cpp ) if(APPLE) target_sources(btop PRIVATE src/osx/btop_collect.cpp src/osx/sensors.cpp src/osx/smc.cpp) elseif(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") target_sources(btop PRIVATE src/freebsd/btop_collect.cpp) elseif(LINUX) target_sources(btop PRIVATE src/linux/btop_collect.cpp) else() message(FATAL_ERROR "${CMAKE_SYSTEM_NAME} is not supported") endif() check_include_file_cxx(ranges CXX_HAVE_RANGES) if(NOT CXX_HAVE_RANGES) message(FATAL_ERROR "The compiler doesn't support ") endif() # Check for and enable LTO check_ipo_supported(RESULT ipo_supported) if(ipo_supported AND BTOP_LTO) set_target_properties(btop PROPERTIES INTERPROCEDURAL_OPTIMIZATION ON) endif() target_compile_options(btop PRIVATE -Wall -Wextra -Wpedantic -ftree-vectorize) if(BTOP_PEDANTIC) target_compile_options(btop PRIVATE -Wshadow -Wnon-virtual-dtor -Wold-style-cast -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Weffc++ $<$:-Wheader-hygiene -Wgnu -Wthread-safety> $<$:-Wduplicated-cond -Wduplicated-branches -Wlogical-op> $<$:-Wnull-dereference -Wuseless-cast> ) endif() if(BTOP_WERROR) target_compile_options(btop PRIVATE -Werror) endif() if(NOT APPLE) target_compile_options(btop PRIVATE -fstack-clash-protection) endif() check_cxx_compiler_flag(-fstack-protector HAS_FSTACK_PROTECTOR) if(HAS_FSTACK_PROTECTOR) target_compile_options(btop PRIVATE -fstack-protector) endif() check_cxx_compiler_flag(-fcf-protection HAS_FCF_PROTECTION) if(HAS_FCF_PROTECTION) target_compile_options(btop PRIVATE -fcf-protection) endif() target_compile_definitions(btop PRIVATE _FILE_OFFSET_BITS=64 $<$:_GLIBCXX_ASSERTIONS _LIBCPP_ENABLE_ASSERTIONS=1> # Only has an effect with optimizations enabled $<$>:_FORTIFY_SOURCE=2> ) target_include_directories(btop SYSTEM PRIVATE include) # Enable pthreads set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads REQUIRED) target_link_libraries(btop Threads::Threads) # Enable GPU support if(LINUX AND BTOP_GPU) target_compile_definitions(btop PRIVATE GPU_SUPPORT) if(BTOP_RSMI_STATIC) # ROCm doesn't properly add it's folders to the module path if `CMAKE_MODULE_PATH` is already # set # We could also manully append ROCm's path here set(_CMAKE_MODULE_PATH CMAKE_MODULE_PATH) unset(CMAKE_MODULE_PATH) # NOTE: This might be problematic in the future if other sub projects depend on this or if # btop starts producing libraries # Build a static ROCm library set(BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE) add_subdirectory(lib/rocm_smi_lib EXCLUDE_FROM_ALL) add_library(ROCm INTERFACE) # Export ROCm's properties to a target target_compile_definitions(ROCm INTERFACE RSMI_STATIC) target_include_directories(ROCm INTERFACE lib/rocm_smi_lib/include) target_link_libraries(ROCm INTERFACE rocm_smi64) set(CMAKE_MODULE_PATH _CMAKE_MODULE_PATH) target_link_libraries(btop ROCm) endif() endif() if(BTOP_USE_MOLD) target_link_options(btop PRIVATE -fuse-ld=mold) endif() if(BTOP_STATIC) target_compile_definitions(btop PRIVATE STATIC_BUILD) target_link_options(btop PRIVATE -static LINKER:--fatal-warnings) endif() # Other platform depdendent flags if(APPLE) target_link_libraries(btop $ $ ) elseif(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") # Avoid version mismatch for libstdc++ when a specific version of GCC is installed and not the # default one since all use the default ones RPATH if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") string(REGEX MATCH "^[0-9]+" GCC_VERSION_MAJOR "${CMAKE_CXX_COMPILER_VERSION}") set_target_properties(btop PROPERTIES INSTALL_RPATH "/usr/local/lib/gcc${GCC_VERSION_MAJOR}" BUILD_WITH_INSTALL_RPATH TRUE ) endif() find_package(devstat REQUIRED) target_link_libraries(btop devstat::devstat) if(BTOP_STATIC) find_package(elf REQUIRED) find_package(kvm REQUIRED) target_link_libraries(btop elf::elf kvm::kvm) endif() endif() install(TARGETS btop RUNTIME) install(FILES "btop.desktop" DESTINATION "share/applications") install(FILES "Img/icon.png" DESTINATION "share/icons/hicolor/48x48/apps" RENAME "btop.png") install(FILES "Img/icon.svg" DESTINATION "share/icons/hicolor/scalable/apps" RENAME "btop.svg") install(DIRECTORY "themes" DESTINATION "share/btop") btop-1.3.0/CODE_OF_CONDUCT.md000066400000000000000000000064251454653170500152770ustar00rootroot00000000000000# Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at admin@qvantnet.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see https://www.contributor-covenant.org/faqbtop-1.3.0/CONTRIBUTING.md000066400000000000000000000036371454653170500147330ustar00rootroot00000000000000# Contributing guidelines ## When submitting pull requests * Explain your thinking in why a change or addition is needed. * Is it a requested change or feature? * If not, open a feature request to get feedback before making a pull request. * Split up multiple unrelated changes in multiple pull requests. * If it's a fix for a unreported bug, make a bug report and link the pull request. * Purely cosmetic changes won't be accepted without a very good explanation of its value. ## Formatting ### Follow the current syntax design * Indent type: Tabs * Tab size: 4 * Alternative operators `and`, `or` and `not`. * Opening curly braces `{` at the end of the same line as the statement/condition. ## General guidelines * Don't force a programming style. Use object oriented, functional, data oriented, etc., where it's suitable. * Use [RAII](https://en.cppreference.com/w/cpp/language/raii). * Make use of the standard algorithms library, (re)watch [C++ Seasoning](https://www.youtube.com/watch?v=W2tWOdzgXHA) and [105 STL Algorithms](https://www.youtube.com/watch?v=bFSnXNIsK4A) for inspiration. * Make use of the included [robin_hood unordered map & set](https://github.com/martinus/robin-hood-hashing) * Do not add includes if the same functionality can be achieved using the already included libraries. * Use descriptive names for variables. * Use comments if not very obvious what your code is doing. * Add comments as labels for what's currently happening in bigger sections of code for better readability. * Avoid writing to disk. * If using the logger functions, be sensible, only call it if something of importance has changed. * Benchmark your code and look for alternatives if they cause a noticeable negative impact. For questions open a new discussion thread or send a mail to jakob@qvantnet.com For proposing changes to this document create a [new issue](https://github.com/aristocratos/btop/issues/new/choose). btop-1.3.0/Img/000077500000000000000000000000001454653170500132055ustar00rootroot00000000000000btop-1.3.0/Img/alt.png000066400000000000000000004626661454653170500145170ustar00rootroot00000000000000�PNG  IHDR��t sBIT��O�tEXtSoftwaremate-screenshotȖ�J IDATx��y<���ό�c'K��R��"J��h/)�_�����T�JQ)�%�xUR��d���2�2d�1~ ό�������sϹ�}��Yq$ �@ ��}��@ ��m@��@ �)<��}@ z������Q�ʼn�U��v� }����J����@��׮?����+J�1v�[K�'��~�[������6]q֒$���K��H ��g(��R�0����Ă�ܔ�G(X��Qv��%�.��6(ۆ�P�GkW�_E�kv���}�=�^~ 6l� ����ECp�g�8s�f׭B���9ؒ"u�7<�r9��$����T�s����)��>���.�Ԉ��x�ߢ�P�鮓$&X]�C�Έ p3J�����YǂR)q���SS�� iR��}�0�e���S$ ]�kobr(��Q�Ǘ ��w�-�F�er6<37?��RE����̆����//�_�(#��UP�|C-���Ƽ}qs}�iӖ}4c�.��¬��mcH�;|��ऌ����7�7h ���.u�P����� `�I�z���� ���f!7H��nˮ.PX�$;����v�@T_��,>����J-.//��� r�t,����z;�S>%#)��69���/ y��������#�X���C1)J�{�qm��tt� E�1�*�>3j�����hV�V�,� N�Ά�#����|���ԓ����7;�rnSS�(��vr��m���8�#� �Q��М���_`\9@EyE369����B���}�g%_�i�D�`_��Z��bv�����X���ۧ,� O����Pg����2�ģ���ܜO�O/Q�r��3\h�[��� k?����K��t��k��O��!�KYV*���^q��È����kVc�LQ��� =��z�Z����"y��J�'#�(Yi�;��wN�o�����&W���F|�䅩 k�$��w����kƒ=OƤ�ꇒ�ȼ$�u��ZcpPWK���5�-����DA7�|�yn�h������\3�3q(����?�A�~Ŗ�����JM�ȧ�%���%�_���w�l�m��h�s y�敂�aY%#;�<�|o����F�E��ֻ�$� ݲ��?���cO*���_ݦ٢.>�¨��oLӀi�� ��J���������b���i�ao�y�Bv�Z������Vy�Zi^� x�y����S(m�o찡?�Rt��8���Ǭ�Z{D4t�M|�5�׏>�eu�m6"��J�� E���xR�a|��Ze���K\���(,Ak��US ���m��$tf�K_�W � `�N���uŨ�Ks'�]I��j:z�:��0�����k�h�!�M�W�����G�KB6�e�����7�m=���C��\��{f���)u-��9:p��*RNhv���S�E�_s�N�w��ab����***�F�(��4u4$$ı�)�6���x��o�eD?8�g�djYN��/f�彴�c�\�(n��\�74�[ȭ9j�ta�Ơ� E(L# ��� RSI|�)�����|���Й�j���f� d'�Q�[tU�^�bȉ�����g�q�A��qv�L*Q���&�4��t��%�Drω�^^QS�_� ���];b�C ��Z^�2�U�_WO�c��Ɩ��VKU@d���f�Fme�)�)��wN�nz���zZf�[�A͵o� �hD�����at��8k~vF;�?�t��`ΓY#.����|ZV�x��s���3��fD��{@@L��(Y�#Gr�� ���n.W( ?z�~5�//0�M$��x?�љ�)z����㑊֗ϬR흕���N�۲��\����(}��0��9�� �7�/P�% ��<���|8e-1�zy�����n~������|��|�3b���M���)�TGk�@y�=�7//�Ga�xm���GmO�u H�ׯ@C�ϙ�hz{�5<�H �$=��u�ezS��*9�?��p�AR� ��F�nr��8�0@Q{��q� ��"c q��Y���^G����%�~0+�MbU;=������Eٙ9_��,7/�ʜ�s�t�ɢ��"5 �9��<��� ��hx�l��χ����=DYc��?9{���蝸�B�����K���Q�p��~�N��(���A�Alx[B���1��.zȇ�'Cʅf��d81_���T����X8�j<��� ��{�u���u��2/y��{�%�x<��,#-��Hz�y�_ @}P]�.�/�Iq@}Vx�p� �k�Ԧڸ���R�2lXa�ϻ�����[�{%q5[d�Y�_Z���� �Џe��r�� }W�Kj�WUM͢�~�U �����ZO�ׅ��I�aPc£�Ĕ�<��XZ_��0��f�G١xDZ*#yMѭ�� �N�}��X]fUU@T�a�����O&&<\Γ+k��UF�.�K��������B��5�E⳷�ƕ��^�D �L��>X����p�=�5<��I��Q��?�]�/=�\���(4�h�'��_���A���f� ̀��q���/U���F�j�RN�o��t: �xG �F�VI>��>��� FSuV���t�mxyyĖ_˜O>Aj��466@�e�޸�j����Ko�1������It� ۭ�����8��ۥ�F;���h ��؛g໮�9�Hy�y�n ��@Ϯ�\S�y$�+2 j7;'d�QsC=vyF�n�~�5�����E�/M��\������lT�ktt�!�gݗ�jR�.ƄH$��߯y����%Ϲ�_g��I����q���32�߆�t���+��BԺ/;ǨzZ�_�Zޱ�s&���)�獾?PY�� Eqw��Q���6��ˋӋ +����fH��y�u2��՞K�Օ�d�ʁ��N�W�@ͤ�Ff�[4��h2�69��-h�u�u��K[::����e��wݿ�7���.;CDq,�J�$_�䷞.g�b��`0g1D"��:��ԾRi���6~1q���:M`�z�ա��yTO�J�/�ܒ`�D�u>���(X��ס��� f�J��-�@�ш�vkN��f����8��������� �LI����0�n�Lof0���|����ۻ�����A|��0Qr?�{Ϫ�؍��7vņQ�%�ʹ6>��VAA�dee( ''����)HZt9�sV���ѹ��j�0�<^�r����{ ��� O$�0����@�Hh�d�o�,k��ڸ��0;�|s�[/lll(�ߪ��R@-�^�����$���F��:sa�К{O�~����ٸ�Q�%�jdCf����7�:tU;#��Ք��2D�"�� ��HXV�5��Z�Y1���/u�#�� -��ߩ�w� 7�ɣ����]3��6� G�/H7'm �H$��:M��mq�qa ���j����� �‚Ӧ���aS�3W}c�ʢ�*l��4\����� ��k���~��D"n��@�R��E2�v*�guZ��T���l�W������hhh`�Hp�e%ȱM�$ف�^�C������:���,��8�*��b=�I�C^YI���26ɈF�3{ �I��+K���^�ݛ$0�����r�uD �E[�v������d;U��[��.�LL_����6���x҉�Ƙ��$���]�9;�_�VFmmu���h�w��x�殓>��ۄ��y2k�F �#�l�u+ p���� �߭�*ANl�8(ꚛ V�?z� �Q�qëݐV�R�J�hh(i�c�R}](M6_J�ilnj�Ȏ ���y�2vӝ����,��ϗ}�� ,��MU%%�6���R��ǀ����Α�6�E�����~�^ӕ��HyBb3�|�Ʃ����>�,2�~�n���av.�xV� �z�)I��ah�BC"� �9�dJ�1�?��ȡ|������А�5���["mb� %��3!-6�f:�l���wd���5*�9����<�% =OЈ�S[juݽ+Oc(兔�����O�n"�"�鶬� �LL�[e2��xT���+�?g|��;�p8xD ƒI2:8Z=��Za���/%���ui�>��{���nu���䣄T���v�Nfb��"Cճ�0���N����#�7�LL�3[8���$���.-�.�w!RSvg^s�<�U��[�\aҐ��e�b�=�5��D"�<�s������[��2p���|v���������@yE׆A}�A�����DKljU7�=_���tk��-B���!b��^9�m=�u�^Z+�_/da��k�:�{�ۣ�T���Ё���%9���t�~����� E ���9��@{�h�!{`����u�����]���|��NSI�����p���ɵ��OF�� �=�Ǖ�=xt� ���\������e�Ck���+�t�Hnf��;�F���n3ᡅOp&�`]�I���wZ�?{g����Z�%q�5c��̥V���{�5��s@ i%��_t,�NNeJ�4ws3O;� mF!���/��� ���@jn*����_� �X�?�9�j�ӞS3[4i�'��>��.Jc����o�ϲmK�5�&�;����?��0����Q�%�7j��p�Y���fpw�V^�(#=w*O���n$���!�:ވ��\�2����F13�+�5�%��/ڷ����e��X�1�)� $0�l�������|�s� �q�����$��k��p�z����kv�k*Otv���m�q,�ף��>%1�����8 �&�'�o��z^l]������l�T���ǜv{�%�[���i�Mn&�u�Q�b;�MskL�S�{�l�[@F���1�E�G 8ny��n�6N��! *������Ey�^�g�n�;����s^��I`9�����9s1�F����ں�!�ϭhɵ���%�֔��ST��# �CT���Ի<ą�=,矝h��5O�>�E�)����;�;�8黻�8�巸��go:?���k+�� �l�8������6���;�Ϫ}��W��$o�Y����5�ݾa�a#�������;��B�<�_�����I��c�/8�����w�=�8��Q9.9�Iq���N&����*��:m��OQ���������Lyq�TW������[< �^u,oD@ ?��r���J�W<����`��=#�q8ٱ��@ zJc�M ��}��@ ~��ey?�򈿐_�K>�@ ◦��? m,�;��!�[��7��w$�z�|�m�r�/��m���Z��cn�$��G��~7T��F�ڻg�m˹Jmr�7{�%�_N��]@ �@ ����@ �S�X?����+J�1v�ي�T�.-?#)�{��,��ѡ�����;� ��E:Rmn���-�ˎ ������1ye��j��� p.���SK��~INcAp�_[ɍ?���u*�$p��ϩ#��}�@r�յ��Y����7s �~�:�G ��^��(;����:���H�"�7�WB ٢�Z�w�35�ur8_��r�q��%#)��6��Ca�z�TJv��|�nEP������<�w7�����>�b˿��r��υ���R2���3����е��&&����|� ^��C1)J�{�q�+�aD��������$:@y�����[��`�ɢ������Z�'�8�)������6�Az翜ւ�Ȼ�n���fAUU��9�"*((2�,��%���<2�� y�y?7��Ȼ�n'��-���b�:�w�-�F�er6<37?��RE���?gL��T���m �ձ�S��DCiV�[��!��?9+3P�E�il�HMLjVTmwbBXCo*9�Qhq�������2����ɡdg��� %���ԏ{�� �<�CM80s �N��m��e�C�hX�2��mv>��k����\P���t�D~���B��)i�� 5��u��~�N��e���4R�U�/�DŽ��� @�L2p���&��,?��"j���D^6�Xh�y�&�U�m^����@|�5�׏>�eu�m6"�>��p�5�gd�7~WF���t���'j��VW  �l�Ԝ��x�$� �'�=�Y�dx�ݼ�W{R9����6ͦ��|��/'0��oKMYY~�����c&6Y�M������������D"K����,`4�,.z��.]t5��uQz���ݎY��zb��CWo����ύ/ ��Ζ�ys�+�)��om���x�\6�������Y���Xɢ��"5��9�;�v��r���ڠ{q݊�r�~�=�)�/q�z}��P�d},T o���rr��~����r�{>oB�G9L�6^[�T��0(�s���[R��͔��яAz��^�K����E���;~=@��9_���_�yL���.�����-F��U2V� ��̕�ϋ� $�_Ny�ti���B�Hf����A�Sq� ��k������*9�?���uc�IJ����ar�@`0<�R�Ҽ���&BK�?K����N�ˊ@��(ce��bj IDAT��Z�Pq���#X�j��YC-1��l���?q���F��B��� ���c`}��&��ʛ�.!~ �[?��ˋӋ +��{i4���T�i� f���#^g >m��0�ܻ�O��������?��� �O]�'�ٹ�j�!����9X���W�n�6X�D���0�X�t���r���4iws}� g �Qu���>�~�顁� ]�v����&����~����-��9�|� $$D"�No�\[#�! X�l\c�ţ�ve����wl�+s_n�W�R�+:�I�� @g��� O��h�C����+-?-"� w?o�K�u�+�TY2���Pp�x�7���ct0�7�MMt��=�~���D���Y�x5y��Z��w��SǍJ��6����^��ot�����5��(*H�]O�}� 3�����ht��i��G�J�*��Ӂ@�h���- ��Y��1�&4�c�`�,�;���@����VH)�OHoj��l7���N����OKt��{"��'++@99y���|��>�F�\at���Ò��+���w���wI�V<���� ����꬐�v��?�TP��hjj��<�M$���F��:sa�К{O�*���(ɜ�<�8Iɶ��i���N��Sf���N5��>O H؞�֪}��|�����xx�2����Sc#@��V=�H�|#�1�d@ |wQ�'D� ��@XXd!�����`��ґՏ�����:_TX�ga�~�э����yL8���0�YIO ���|� }��y-׸~ZD����z'�����Yt -��AscMe#@K���������ڎ����� �4���`����(O|.k:sd�ݘ�I�1d�R?!���Q5�]������e��h�\t: ���`ٌ�W�ʯY9�=<����X6I�1F0L�ځ>n�-��ѣԇ VJ���^���A�h��A����Q�V��<_�H�ӟ�Gc�P>HlH ��fc���>����X����S�O�-���悕�a: �g�u���&�����~fD��%ZӦ��ӲػHவ�SJ^&��z�:Gvڨv�4"�P���X�0h@l�2+����;���W������p1㙼��&�9 5Y:����N���q!z����f��.�,�DD ��_�������+(�J)�-���ET��>��Ka8�Ckʌ��j0��� }�㰡ddN3Z:;������� ,���*1����l��[o(}�!�󐗓 {���#�XY&3.� ϲrHJ^:� &� fe� �Qȹ�BYg��33���M�J�� �&Nk��*�!�IMm}tL�d��]�ؼ\}�AGG�Q�b-�-`>CWUV_W���G� ��O�f���W��:[8��J��U�Eu��^x���b���s���Nt�?��0�O����߰�b�޻�o`�B{�h��t����V+t�.���< ���]�3c磦1 �$�$���1��2��폿o����_��l۩+��+�V9�bN� aa_�ks�Ddt+�I����O������\i��vr�y��N\��a����NF�����e�U�_u_;�$���:���5�XPsƐd��y�ӈ8B}������h^iKGGCY�ؚ9=�(��l�,��e���4�i-]:���O0��nr��V�m���ӜǤ�|MI.LMJb� �ej�g��u��`,�t���P�j��z�:})␩[�WYN�����J�7[�h�O�����nV�O}��4q�*�;�@���|_��r���e���t,��a�<��5����r�bc2b#?����X��J��6�G0���}jj�yy���D�6bZm\��q�Gz��Y0w�D� ����ڊ��5۰�v凂���h���v������~]0�T/f����'.b��Kګcj�����{��np{��Pn��w �6�Ѷ����&�{s+�Y���￵�} f�ui�WI�#D�e e2���s��^D�@��7�ߊ@ zN��p�c_;��oV��k'z�?/"�@ ؂�? �@ NA��౫�ʍGu�leŧ����ʪ"ε~�$�*?�f7�~h#@W=�GD�=z�J���o���o������@ �@ 8��@ ��� *ʋ��? >iyi�������vxbaqvR�M�Ej$�ч?Q��(�[�^�Ly]Pnʵ%�^5����]>!)y�����bSȹ:���в�B��l��5W_}�K�������$��.�%�e�2�/�>wa�cU�uDߣ��z� ����1W�K�l��t]3K��(�_r2c�#�]@L��Zv/��7���Oa�KjkD�o���� ��'?dR��^^�gd�A��t�{�̚'������x��N/��7h����9�~:����)Yiw�go����<������/?��WG�{�h���+tv]6+=4c��Y���mݿX �������k�{|�z��kjo�m�죞3��L:f������xV���3�X�A(��m���Gd�G(�^�x䰙 �<�i������������\�Y�UE\E� Q��f��du���c�%:j�JH�=�贍.w�(��{���Ba~���:"�� ��RR��m?1A��b���(�=wP��|���Q� d�c�x�&N�Y=?,Y�t��[���v��N_ׁ� �� ���]i��mī���&�|�~q�4V�8o�68��G��g�覇 ˔��~@�$EE�!���UY!�-��o�^3�g9?���KO�f5�̺p�K���S{�'�e�^^��o),���<��}ʷe�7���p/ u�)>y�D|jfv)%�c��+�Z�O4��|�TH���t��w��h�*����j?��N��ν�����Ӿ�N� R�!>��+�Jc���)� ��w.�"���h~���U��jX�6h_^���S���e O���-uo?���As�*��W�nB���}�g%_�i���NvΙ�J���k���7�?�շ�RRZ~OL`%�9~bA���}=�Z�P��Q_~����-��=?UL�I߻���&37�+?��rfcKf�� 'W��Z:�K��H�*�Wys�t��9��uL��rP넧�,�e���Y{+o_7Ǚ[�A�DQ��ɫ���\6�L��&�_�Y���qԀ!�j-/mͲ�LM�'� U3�e*DتI���;�O�� ����6�ʡmF�0`���_u�T�L�95s�*."���"J�X[�3+���Ϣ$�G)�����F�jև�F:{��]m���ĕ׋pbC�ʔ���׃��J��II�z|~�&˼����*�AX�;����F��g�[���qL�'I��T�U8U���E!�xnX�a�ܭ�_٨H-��O�i{���uT�S�3�w��c����k�s�@[g��D��v��9�������;W�q��Dc��ݤ[G})]~�y�����%yi>:/v]O�* ��yq�������v�� ���y�2�"���瞛w��欜�'�� ����G��?��@�����oO��e��"����j<9Ks����]�L�X�3,za��2]\�7��?V�&����&'�:��"�w��n2n���w�F) 8�=�Ρ3�ҋ���c��H2 ;ς�ƞ��"����� �~@� ��ܶ�3|��A{}Me��D�u>�"#�EF�TC��*���#��`�잚j/������y��и�o.M����e8� ��J%���DbcC�B&���>~o��ة�&�٫��bv��:���c�C�f��Z莞�\�XQ�����������{qÆp�:fE7K/��uͱ Y�@�����䥥�ˎ:.�~o�:Wa��E�%�sO�s��>���ޥ-9�_$�'��vZ��zd��t�Mt:�A��x������f��ќ�q�Y@�ש;���asss�����j�^]����=�m:à��'~��� �������0���,������&dQ9����<��Y�co?&�Mx:ς���X^^+))���( � <��h��r:�GM�U�����'hkO���:p�V��!�4Z#�=Vș9M}j�<\SKw�<[�t:w�����c�##+[XP��������"���ԇL���Y�Z�rl���5���T������p���}c�Z�VX�qw�����TǬ����U�ʭ/�c;���k��]����� _�I�����ȿ����t�� 9�w�4_y$�`�SR ��Nj��%T*���T�ݻ�������꿒�mHB�B O>�$� 9�A���c��ԀuR��K���V�,\ʺ}4eŇ����²��X߭:�܄T�`�Ʒ�\B��m%�]u"����,->�Z����N�%�q8���/�ۻt��� ��4�s{ ��*=7'%)�����YG.�� �#�k�iV�ƕ���˫ � ���f� a^ ��U�"��/v�Hu�?J���4����N6�-k��-/��MӅy��.<�0iL�5#��!ϲ%��oΞih�f��Ƥu�#�@ �_��@�����oO��ep����Iy�����6/�a(�0Mifyڭc���u �ڝnO�ܰ|�ƹ[}��b?����_��˺�9b��3�`�ތE;��]�7�e���jEA���ۢ��4�py�^ M1�7����Z�r�:�*�(�i�;���$��s���x^����"����~�-CRSSd��y� �^A�Q��+ˡT��_ �@ �?��/���5�}FӍ^�����v����9��ԳM�gTx����S�D"�No9�L�шĖ�hss3��A [ũɏ}���g#))Y^^ѥXcEA^�T��{q5��T�0!�$�-=�剛�ڏuSǿx;���/ǧ��f[W[�7��m�ܹ��.mq����F�����u�~���6��嵒��]����?TP�bb� 淣#"���70!�@�I��������صlht:O��I<����:�H���슨�,��޾"""]I),�yD�?�Sy�a�M��@3�����А� C8D>�z/(���o�N�ձ�7�1������d�K�����sVO;X���B�@�����Nn�GBC��6�[�@ �����_��ffb������$~��ƺ��Ė7����O�e��ѭ��-n�V[���Ó��z��GAN���J�.��h�����e�yI��+�k�D����<�v ���*F�ճ������m���uaUI^�r�@)"���R���Ά��JY~n}�uu�����`�J��Rs��W�W�<��ߛ\^�@ �@��|�ͫ��g�m���謤����;�27%O>�$� 9�A���c�['�ei������^r�'R����q��ۯ| �өԒ�N:�^TjI��� ��m��ܔkK�Tu]3K��(�_r2c�#ǵ��7����?q'Sb��籥lF ~,#�J�M7T�kOX�S��u~�J��Qק5�۽Θ�p!��`�Z��y�f,3����\M�~Č����� �=����z�� @���BX�K+G�j�rMiWX�䘥���_Tg���rM�@ �rx������~b�,�cVy-���$�Q[V\\V��M�k��;�i�ǖ~?�W훗稧,�8�ȋoۖ������F�����P�M��g ��Ĥ�W�`+�A�ǘ?SvrYݶ.�{|�z��kj;�DGmY Ɂc��������.��w��Nn;�[ |Ç��8�[0�� ɲӦ m�cI�Z]{�C�N��?�d/��}洞g6��M�|y���G)�6�����obr(��nfCI��%��=�LΆg��G]\�2�<�RKZH(X����5d^ ��7���9_���� �E��r���]� Iz��Hp.��q�������O�*�L.YZ�����C�t��B�����Kn]?8�R��q�o=�%s��q (Z���PKSc޾��^��hUb��MO����t;6�g#��v\JJB���i���(��̢d�Ex��bI-��WCvc�ZB��f^7��f�F��D��1`�M���f&��O�soˬ*+k���nhf�W}m�*/k��.���j}}I�O@���& IL����p�#����4�ʡ�s�����Ҙ'׶O�C���m����;�9�'��F y���@�� �f,�;cdrR*������/d��ř�!k=.X�q � ��6��T�N4'@2l�*�����0�\�#:/3%����E[j* ��GN�"����:I]\B��$&b� U����!�ǃ� �VM�L6��}�� 1y�ԸO��y���� $�_Ny�ti���B�l#�%�mޔ�[�F�}[���D�<��ϛ����0l�� @C�ϙ�hz{�5<�H ��������vy�����X���GmO�u H�ׯ$��������?~�XzسW��r��I�[��������� z�,)�htf7�������n�o�,:������� jڸ���9s�u3����&�pl4��[=_r}n�ҸV�t �$=��u�ezS'с�>.ȍ��^�����8�Ju����f������ry�JUS����ci}m^��P�a��,�v��s~_Z�5���4Vr-�xnX�a�ܭ��ux��ǜ�ZL5�>�6��c�/@�K��&\�T����e`Y6�p,$1���Cx������/��v#X;0t���Ⓖ4���'q�}ׅ�7����.��1�l.�#�_��W5��=�X�///���k����'BB�,T��h4:��4��k�J�����x������q��q2C�'��?�x�z���a�g]��H��Pw��?H[�\�kqB\^�^\XIc-�#;���O[�>�>�n�D�S�u6���l0��BRWO��{����~���Yʙx�@��΄d0g*?�=z�ܕzg:�ɿm��&E��񬳿G������+R�7�����:ߥd��G4co�잝^l�ޢ*jN�8�l��^��p��H��[>aL���ܪ"4z�YW�DZ#^D�te����'�[o~'� Mg'��_Xj@�����e�|f��lԹk#��TS'�6�z|3+I,��-w�Vy���� ΟN�Y{���8�L��,�g��-�sᦽ���P�ߞe&&���:n˓R.�"� /o�%K��;o��1Ǧ��F�r���g��b������ԵKK�/R��$����ddoE��"�d��/�[2���4Ei�q:��v����k������}��y���yޟ9l��0}���-��a-//�P����jf��ˋ~�(,�(���6�bj�/|��D�1u��u��J]n'R333��� �����Q��/<某�/�o6hr�����I����ק�\?��Ɔ� 7Y�iN[�v��x��g̘=c��W�Y��g��[ �;� � ��w�IN�AG�$�Kp���򁪯�w�!�8ʽ��夏�����lrP�d��U?4����Y{܌�b��uv2{�q^]�<�PO���a�g,�an5�D�Ͻ|I@@��dV����V��eˊJ��22y���b�������$23i�Ճ]���&�/��M����EI��Ͽ4)G�ڀ�9���d����%�}�3�ƌ�*.�[�m��-;�DŽI�"� `�[����YF������GC�HCc���x�EJM0y�⍓MI0 �� Nu�zt?~��ڣ;��T˹JeAGWɑ8�����UF3������o%0�L���Ԝ ��A��_Yz�OzտLK&@Qj�O$ ��w��z����$'Ԡ#���0}�t��|ԁ�ll�R��W�Ӛ`��Pu����%����#��̏G�,/LkFʤ�(�y�t/�na\u�[��� ��X#Ÿd1vrr6??E�{72[H^�HŢnj�₩?�^{YEc�i�m��W�ӯ6s�:��訜��Ӕ_ye ��>q�ק� l����S�}5]>S��'���1����߷�V/��+Kk�ҡ!�=��'�2�L�{�k�n��w:�.�v�-P}OA����v�*�|������BK���xo���$��b���ұ���]>p.'*0 d{��d�x��6��% �{iqڛn��V~v���Z���m�Ž�_}�����wO>斖d>���ŝ�o%�o�~���g��Ó��xk�)5��tt��FE}璒�A�t��Q�U�� �7��]2�z�)7n��랕��W�f�hQB��i�Q��[�Lφ%G��S�Zv�]�3��؞2�ڇȏ���WH������O�Q���N�uȘ��D 3��������'5@n��4F^��dN���B���*��i\fb�MK�Ӧ i�~�~[ˆ�)_^8)y-���'���2ϯ��l��۸�A'�}X��Z6T?��h���0:���V�*��0:#?5��C�kk�7����gAlW�:�~��M��ӦN����B�.��nb�/G�3^�y6�u������tK[����ԃ�]��:�A�n`�o���;�x�?̨���Ro���>W�&ꮿ���x��o^���:��!�B�c���j?n.Q��ѕ@!������B!����B] ^��'�I��<��ywtП�? �B!�x���B!��8�̏g3���vͪ����1Zs�'4!+-������pފB!�5�~j{�y욮�xy�ĭD�ug\��vt�B!�Ps���=��#$ �ʖU{\ל������}�B����Pۓ��H��H�Xl(^���uB!�B́�Ծ،�����B!�j&��6��HB� *�.+R��J+��� ��T�<�~��y�$�=�� ))�ls#,$�e�y�B!�q>�蟿z�L� e�b�f$v� �+�� �� N��ϭ�U���AP��7���+�B!����Q�;z�,n��jDz8,?��_B��x�q��)������-|ub庫Y]'�B!�������\�C�V����u��kG�!�B�^��B!���B!�B���B!�B�W��8�B�A"*�����m�Z�����>��Ka9��y�Yq���N��<�����=y��Փ{5���� �S5�s4�m �/f˪�P����B!��p��B!���H�*J]��"(�$'���8@m�Ǫ� ���:��m z����j3�Ź����8ߪ��>�e�i��fR[1O G����ͬ3B�F�U��x��feg�ǽ��Ťv N����I�r[?A_�\z��:�]��y����I�LR�^�&o��MFV��'�k�fՅ����}�>�����ŠAB�v7X��%��rk�y0<G�˥�V�%�1��kR�'��'(����oꏛ�GX�P��|���:��%��j'ǎ��;�gG��)ՙ3{޿�����Ow�9��2Z3O�Bͥ6XG��(}l�Lw6Q�W������)�6�䃐��Y �K�q^�-=�������ezn�3?�޸��'����Os���ӌ��3���ܣp�FW��΢�}vn�*�)e��7P.N�P����س��W��HAJJAJJAJ}�_�5�0?zzܛ5�����8n6*���!K§_u��oNr�?���b�MU3�?�c�'S��-w�f��3IaҿA����K�����0rŸ]�h�먇�8ߍf3��d�][җ�Iy�s e��o�TX����3Շd�zZy�LK���l"U���d��s{�!�@x���Wh��F*��-+)(,c�J ~���@��;,g9�߯�y[�{�Χ�V����>I** �ͺ���J����C?�Bⴝ'�Lpy���p�ְ�9��Ǝn��<�Ҳ��ߞ�lޓ� �vY��5�ʫ> ��x\�a���;W�s#�SRR��~Wτbf���W��^�dyk��3Q�9yT�򂝁E�M��`����y�m\����'��'jQ_b���9yܠ�踎� j;�g��s�c��ל=��a��_k�����!K�Z���K��<�n���԰|��w��@S�>�O�5�Es��Re�TS�$���U������.����C�7��V��c�kX<�k��(��k �����!���~�(�X�6kl KO��xc�r���b(�xp�ylA��d ���C���X~����E~.(x�,P��L@��L����lN��Y.��CV��3=X����n�,;X_y�R��ᴽ!�#s�j�b>sb�݇��) ))&e����������Z��|IT��� Q��L� ""s���lx�����驥�"\�B`��˛�w.<S}�Ӹ�p��1�˲�"�>�=S� ��}�����mu0���W��uAmF�zF��;Q�Ro���u·��OY��2\��]q��QY�Z��Z�Ms�쥭M{q�CNiq��C�����_?x#��U�%�c3� !���b��֐�:u�b5.�t��d�(ӱc�� 8F���kE鱝w�x(�����lzz���ϖ������L$G��>��u���^��ߞ� +`U��}#=HG��w��d2Y�*/'Nʏ~yf�ֻ�w��CM�gLL�S $I�X���m-��u]�[�qN ns����&�6}WP��m�o0�t�ɸ�4�-R�Zs땭B�ܡ5z��h�p���qq� =�8�����P���{]�fٷ���g���ʠ�A6����i^��ɬ�����p���]sa��"�k�l4?O �R�YQA�4,�{���_����l!ޫT��w��[��e��ϫ�o�oКu#άK|Π�h�1W�U��{mx;�h���D1���o��Ǣ�)\w��|�7��5�$�c�ۋ�f���,�牎# �>���}<���R(�e��3*�"Z�����B�ǎ�s�N��]|�+U$z���u'��c�222yy�u�lv�ߕ�������8?}-���1��+Vԫj�Y'��!MZx�^���^�_��ۑ���p��+j��[c�\y{ʩ�J�ep �q\��"ϭ�]��F�`ӧ����g���T��g�QF̴L�}�x��O�TTp�Zs�{�,�D��A�`2���/O���gVԿ���UB�?H�K�����M^<��m��l&��T@ee���{���RT]�"����*b}���H5إY>o���(����w�Q�F� ����Lm��g �����߿��s5wk7; #.��0�:p���zǎ,�v�p~~���x݀�<6����;� FC�S����]�����=Z@y����k��ѻ@�q��:n��8���g��-;���H^/'�~���>�ɯ�� � ��yè��k���c��L�s��h��_<���QL����"?n�ϑ���pЄD~|��0<�:ƙ� K��ۧ����ԑ{�%dƼu����`0> !�xzd�U�O�2#nZҜ6]H}<����o b}����7kb��������ݯ�=\��\f�iܓ�Eu�m緦[�����5_��ݗ�1�`젇�L��3(>&���ܝ[�r;xT������u���ϭݑiy�Cb��K_��[��̲ꏆE��nO4������������1�O�9~�=�&1=6����}�-��_g�?�_�I��MN�a�1�۲�[L�z=x�hu��P��r�Du���!�؁�A�!����C��!�3M��^��n#�������!��5�ث�ib�P}�f��:̄{v�����K=?���!����搕ѡz�>�����d��҃[�����)lA����J�~,,�v~|��<���f��s�~x�����p�z����Jcoۙ�n0�4 +��/v�^���W��^��{��Ѱ�o�����r��MN�a�1��U�YYy|B ��,���P�IL�2|��]���D!Թu�r95%��Ҽ�[��lF��;J�v��G��W�����ڥ��}�dQ��%����Om�P{ʿ<���.�g�!�:����n� }��1W������� 5a�+J��r���f.�B!��]if��cuQ%���������n��jOscn��ݒ��y����o�Gj3]���>w�*!���z**W�G��m�Z����}ۼ�I-�.��������5����:vT���ܒ<Ռ�����k�W�� ���B!���B!��ITEI��+�V��Z�>.�?��g�椯 IDAT~<�Ag0茜����;�*�m7!�P"6�#7���K�g��ri����Fvt��Ya�~�����{,$����,��\���n��\Zn��� 1d͕�i���`�m�r$N�����'��O��M����Mm�wZ쥙�:�ګ7��v�zs��X��������v�\��n��ڹ���B!�ڙ�`I� �͑�R���r�嬯 %����M�ԭ�in����c��v&�ڼ�B��*ge�8v�����������F?�-W��Xi���&h�q� \^+�a:���4��~��?�m����������.�$|�Uw�f����N�Co��1�K`��\�'�B�v#�� )�xp�ylo��lx�����驥�"���^:��L� �4jD_)iiΩ���)i�C��8�ջ��3�8j�R�g���������#�V�k�_?�zNְ�X_y�R��ᴽ!�#י��"�>�=S��� ��}��l2 W<�B����5��N]�X���{ik�^���SZ����_x��\Ux���7b Y%_?�z����{f圕�&;�i�{��O5��11��J�����P�a&�o�p>�H���!��C/}�L� <�;7H\���_��f6�r�_�b�'Ro���u·��OY��2U� [�L& P���I��/Ϭ�z��iH\\�BO5�&/'�ơ�E"�����z �Bd���S�Ak֍h�#y( �Y� cfE�R�'�fW��,��B��Έy�y�/��ŵnS222y���K[��������������H������@E�w��z��F��N�'�>v�ȯ|�)���+���Fn�����R����$���?C��By^^�� ��!���+�����Y]�B�Y�d������S��F]_���W}y??���^~ ����6�0��n�ڹ/_���|qqq����X`m�V3�R��~k������҃�f˖�0ded�r��� � ���H���)<ޘ�{#7,����¸����;?�;��� ����"yy��T��j'���6m �<���̎�B!������ѳ�O}�ͦ�J&EE)���+%$�8�¸"*�[U�x�~=�������"#��ck,?�y�����\�?� d��J��w�%�_+ݯ;v�e�H��� ����#�����O� � ��ˏ��1�U�|����O\3e�hs&���Ŕ{��)��&+�Y�� Z����������T�e��+�K@z���f��򲬿��j'�#V��2����KN'��K!�PW����gz6,9�o��ײ�慎w��=�2c�:�^^x0�f�ύ���ȋ��\�a�E���C,�֝�>��`п�7���`�ӎ�U��Ą%��|�H�^��'�?�{��p�������~�~[ˆ�)_^8)y-������_7G��kx(��`���L�ͥ�3�9j��Z��7z�a;V!�a���]t�]�Q�wejG�!�y����ͭ�_����rsiI������*�}��r_�\z��تO�S]��c��3�����bR��*�{��'�h��ѯ.�$�97~���f��Fy����k���ޯ�k=/���=5)���I�M�vSp"*l�M�T�Zٵaa�]�����hϮ��_��t����/��s�6-)�)��SI��F��J���x�VS��j��;yI��t���ڼ�P�� ֑����)����(g}))��oZ\,�I�q^�-=��c��-ӝM��U�2�&��~�(/=�Gᎍ�Zo�Eo���4U�Sn=��j��5���`�j�-������(g}i�ކ�̏�7nb�[k� ���T�R���3�whڄ��q����+�S`��4:#��N%�e|<;K@z���7ᩴ�ĈGn��Wͫ�����:,�������"-.�-|_���&��'8�� ���>�~�_N��K�ĸ&��ʠ�ߦ����Ag0|���*\�$�'�\�5����-���n3���q����NWjR=�q�ic�Ko�Si) ���#����Թ$??Eyyj�g�I������C7$(� �O�I��,93^yi��FUG �2��od?])_�HsWX�>19t�n��<�Ҳ��ߞ�l�S�SA���� K',�̯~Pvn���Xs;�杁�5~���B�n�_�N�U$\���@��2�A�\�8Gf����ǃ���B��z���[Bԛ�+��H-xR{��Ag0hg&��� ��i��o���9LJ����(X�WS'�@u�ћo_�ٜ�����ȓ�dZr|��f)��1;���h��^�3�i$[�ɮI��;���� �y[�{�Χ��斕��Y�?� �r�� LtB<.�0J�r���+͹��!;A#�!ﯸ�ыKs>^ػ�7����V|��IRQ�i�٭4P�f���aGq���KM^b�s�Nx���v�Ê��%z���|!��\;���{}�e�ċ{>��es��m��{=vNUJ����[�VGO��lJ�*#G��T�˨,~.�vR<��B5d�T���Ns��Se �E��-�TY*��M~�\�뇬�Q�gz�x�9{ݚ���&"�S�j�G���ի)�D�a�{�И};,���l��ߤ~K�O��S�^�!DR�'c4���2#�V����X{ w.�<���3aA%џ����֙��]��癿���8��H3��>p�Y�g�Υ�����Ӗ�} �� Q1X �%� q',�� A+ 3����2.���\%�״ҁ$-����?�>��7&Y��pz7�"����:g�۬��),=)6�������$��������Ҿz�kՇ�YjI)鲂�U���N���~��G����iuo�y��p�n��I@֐��M�� y����I�z�XEE���ُ�8��T6}��D��'���;���V0lމ�z���գB�%�]�oI���=S���O�W/m�o�w������7��t�!,�$�gl@xPX�H'p�?�~�襫'ywo{�y'��Ә1F����@�.����:Y�����RN� ��a�~����Y"b�$>����(O�ҋ��D%eq7**�A�Lap�2?����m6L��I�Q�*/��8� �\d2Y�*/'NJ�~yf�˪�9&o��$�%P��A/((�{+��C�0�-7|hY��o�**�ET'�*4\�Z�\�|/;�hrb`L�jwk���**�e�ϯ���|rH���G�HAy�`��x.3̐���5�!��kQ��⯖���IMd3�:�����VA1\gk�@��n�'Ǔ�����6�Ů9����7k�A �&�������g�o`�1�F��{f�4���?�T�.Ev����������0�i]�=Y2�~�@��n��#v�'�H��z��&h�5�r��~k�W��r$��N!�͹�j dr��x}�H�������1�f[G7������f�����+o|w��`�o�]k����l`�*�L�9�Q^^��-T=He���B��� Lf ��`m ;�c���Ω�u��(��2��@-J�X�:��SS����{cvu��%m�z�g��! 9�R�&�@�n5G��u�!s�͚Q�$�xWg� @�����U{fu�ѯ�E�g? �ҫ�M�q?��w�S��?}�y�镼����~L�1��\���z;���W�H �rݵ�N\9�䭱��-�� >[&3gȢ��u.�t6?� ��$��.�VQ�Ӗ��*%t�::��KJ�_D ��T�@�3�_s�uy΢�I���,_0�`�|?��T�{��F�&�Ȃ���K��:����yUW�� Z�nę�o�r��B�0��{}̊ ��ů�t��p��O�('�+���2f�<��iBE��a�ۦ�ha ���T���c�, ��Hu���v����qlv�ߕ�������8?}- �?��7���<`���L.�i��b�D�1���� 3L5����xS�7��������jvW~a�U�b)//�Fᯍ�dV@YYYM (N�O���1������l���b�~�+��D�#�$4!�6�Ҡ.�����w����y9�8�V}U���zm�y�Bu��E� �� ��0]@0�,�#a�"̳�қ��8t�,o�ow�t�䇄>_U�-&�ˆ�k-.�U�d��+G�[���Hr^*ߠ��D� `���<�ả�JOݜ��? ��K C61���8L"��u���.��l~~>��LcW7 d�����>�yw[|���rM����'��t|]s ^��8L�1�b��W|�s�Xp���A�mv�[�#��� =���`�Vqq1�M^o�.N(1M���m�� nb�t��EC2"?1�#%E���[����-5� �I� 1�v��e{N\8�䂾M� �U��3�Fc�������@RT���ѽ���-q����Nʺ�� -�9���[�Lφ%G��S�Zv�]M��QM������O�Q���N�uȘ��D��>Xn��4F^����خV葕W�7>��L��iIs�t! �ϭݑiy�Cb��K_��[�p��e�_e�����q_�N��vݵl�� �������ݯ�=�u�h�m��Ÿo��P'��VEֶA��G��������c-)=��da݀G ��}|��Ov+a���s6��� `&ܳ���X�g��hI-�U���A'��:�{,�.C�{i��o���D��8O�қ ����{݄] b�@��Fct.6#����s�B9Ļ���k�d��eǷ��*�O~���=��b�u)��ֱ���k���9�X�9���0���щ��2�� #������{��7�&]��t����eq�!�5�8j����L�ggN����Q�{�mR�m5����}�����J����� ��!+�C�"��޶3���(S���Ӟ��0½�{uY�fնʟ�\]�Bm����n�ʾEx������ �j'm6w֢:�U�ui�;Pk��u���%�7;�p�B�m�@!�B�I�y��cKJXz'|Rj'��(]ze�*=�P�V�K7]�i��yeA���_.�Jj�4�N<�=�fԤ�$m�g3R��xla�-O�m�k�:y��÷��Uk�U�o��!�B!^u��Y^�ʕ6&�xC7B!�}'B�N�}��dzt��`dfľ��<^��|�);O��vȺỎ��.3�'�e[� Ԋd�֜� M�JK��ws�8�j��!�ϐ���ꕶ��Ύ� z�!�6*�՚��x6��}�h׬���z�z�`��T=�|�=��E��n��3�c�x8��QE[�%�]�|�۸���Л+��4+ �,����,�&�������k�(� �3��\��z���d) ?j��~Us�K�̝1��p�JC�Ft��ځ��Ԗ��g������y{j��#7���؞98�ZH;7_g�h� ���@‚P��x�c�t ��S'n%Rǭ;�:{x�>=�c�ӎ+a�پ'w�p����x:�) ;Z@c���J����j�=�������~�[�VҲ�n0u�F�F˳%�f��@���F��LI�p����.m�n�Ļk�1_0�@���N ��#�r�_�p�nX����r��K�M����{�/�F�5�����n���i]�v:`��z��� ��d���VoPY��Ag�ą��\]^{���2i��X-6x琺��Z~'��yf�LS �������M�:������,顶�߄��R#���/@�;��ŧxz>����ˣ3��%N.�������o��ޜ_�� ��2��]��N���/��xe��V� �>BүlY���qͩ1ڈ��= �C+�'T�7t�WtVr�� ���U֐N������'�?�f�x?~��Ͱ��_RG�|����k�@A�&�^z�JKI��uxf����t2�n|Π%F�M�1�<;!19���0!��P\Ȕ5�8LS���P��h�7|2ړ X~Ͼ���?Qyy���P+f��F�x���A �Q����F�u�����tE5��rYYYP��ʵ+�*�FR� y�N�;s����:_��]u{��w���HhD���d?���� �G1ݻwu]= �z����3�@R3Гf���?��$�~/<�T���E�<���|ʬ5�θ� ��R}ش,����L�����@�4��] ����$lO h~�@ �����y�^7����ed����te���-ݶ�TEN��J�z�b/]=q�{{��ͫ�^����(��I�t�Dw~Qq��/�\��?S�E ړ0O�z.Q KoW�w~�f[ ?��U v��x���=�L�QY%9I���J>�� �������–�P����Mk@oI ��ʐ�����jݻ����ј�#�����(I�~�Z q$ ��dV6�&��>��+H���2�[�z�� ��� @E�� Ry~Rf�Z�/�%�4�-g�j3������\G�1I �7rʇ��w5���"%�����ɻJ N��,�`TV2�D"���U�|�)�]�* �d�9���0AP�u����I�t������k��s#��KS|\�؜�X�c{�k/۩@���A= �x.�� ���.Z����w�3WpYL"7�^��Y9�p�r�6Xt���u'Q�����g�*�L�pL�Oa����5��`�~���M���w.[�� ;��y��R���OVK}s�ݳ�����d�����G����*+�W���GIj����x�3���h�ͦ ��\�v�үo�!)���O�݃Ja^�:�N�*�F ��W�gп|Mj4f������f���)_?%�39Db�X ?����~˘:��+~�b*��i-n�ˋ~�T�t��?T����lY.}�N�P���BS�_0��a�4�n�o?sPnd�y�|��`HJJ$��͍�����BԞ<��=[c ���&�y9�8�V}S������=���"�cݨ���������-/Y{�홛� )%I�����!��3A=�����;��@�ն�E>c��ϡ��1}I���/���� ������ڣ�MB��]}_����˫v%���H22����u�~R��\�}%v�g�ߘ{��c�� �C�t�����,,*P"�D�֜p`�E= R�?(�V8��� B��J֗��/Q��#���k��k#@�hwK�bσT5|y\'�󇢤`��_~}�7a�`�~���'����]���΂a3&)�ѩ����u�5$[T{\�����f} �^Z��&�un2,��6��Iv��N[-�c=�|����k�������gΝ���C��¤�GGw>O�\}���ng'����r�T=����z�;�������N���۷�Չ��f�'�ۓ��+���t�/�7�ɫ`���Ǘ��x� -!nO¦cFzy�h�����-��^N �^W��=�^�\x�I����A����g6q�D��oW�5���/��zRC���mtsݳR�<���춯p��w I�/q�e���h犣aY��G� 4U �y8�:yA���ϷN����I���{qmSӞ����,.K�7��n��Q��������-�>S�/����.V*�{��sب^�yG)B® 7��ݎ�9MV�A6nnG�OR"�=h� �:R����fw�Ձ��$�l|�]����?����Wl�+��(j<)B�g����k+xv��c@+�,�s���L�G����F"�Zq䪽E��704��{�o��-J�=O�J�c��{��jFӵP[����v�����v��K�_��w'o�8`-@�ʒ�'[����B�����)] �B�p�@�<���W;�!Թ�;kQ�;�������Np�B!�B����B� 8���C�����|�AoH��V����? �"ToK��B!�B���B!�B�W͙?��z;|R���r $�Nu�����H�{wg� {O=��}-==�Յ���� �Q��%�Đ5W�F�ђb�=��ʑ8�P[�p��oغy�# �u�ϥ׆ta��D��Ғ?{�Y��ZO�'�w��kx�`�+L�/ 6�;�Z��u�V*��"j�s9fХ��P��u�#����s�E@^vW�Ε:k�)��^:� ,�.Jg�R�Y ^��{,y����_��ꮯ��tţX�ۯ�-6%|O(څm�I�P�9_ �B]WS���6��?vf��3 �`�e����W�ڲ�!�SN��������3u�'���uw��;snd_���Q��):���������*����wS4�]��u�\9�N�&4����ڳ}�M>���U��k� 99�����;�#��Z����ބ���o�EV(�������&������lnJ'GH��4����">��}����d[��?bn5�/�CA�� O�ݞ���Ow��������u�si��k��E�!�x����_�{찜��h,� 7�������*-�YV��[ d`��q9�QZ��<\i΍\�ʢ��*4�i��^>� ��%r�F,������Q��pmy5���фl<�n�"2��]؂y�����ǟm�%A�~��L��J&��o�*�&6������~���b�.����O�`x(�w�ٌ3A1������"����OW�W%���Ϡʗ��+�S\RJ�Ӈ�W�Ye��Ð�􄘀K���'��zZy�LK���l"Ź�D��9�2��i*�z�`� _{u�����m&��2.3����J 6����+���=���!���v�������|j�g�.ʲb�<��/-ˉx�.]M]���Y��K�>�덏��'�9~� )Aז���-�G0R��;�G������[E޷��o"ez�����w�R�c��"��0��/�W_�J_}>5����:5���%��{'�g3?���΀�� B�6So���󇂈7�����n��Ǧ���،7/��?*���bR�^ �OJ����U��vM�V^t�.�����Aff�d�Q#�JIKsȓ��ط���j�̤� �M%@j�4�ǔ��gǩ���P�$�7\@��^�Ġ�&6�Y_1�~�+��k(GWy�'�� �V��c�kX<�k��(>�"�g�Z�f�*#��^<����U�Y���XC�������Ͽ^ >��~�*�~��W������U������.����CI�*O�<��>U�`_�݂J��RM]k3 ���O�i=�vV/�����ͪS��L����l�! +%��ߝ��� Y�n��P����c�.��y����H������涼=+����'V6��ep.L��πUsE9&'�9�y6����a�P}�s��M�&4�������^j��+R�Jd� [� ���5<�! 6a��܏�o� >�u /�eP�9�ݎ�n����Q� �/ � �TNo�0 �_Q]�������=�}�e���s��ȵ�EwPZZ&&&�z�!�����hq�o����Zz�A�~O��2;�1����@�D" ����e�����~k�_ �M�k�|��W�|u����K�3S���M�C��>$�W�}[TRTN��R+��ؗ�"v������ ������ >���o�gV�5������������م�E��U;N��ވ)d�| ����K~x? 56& 5�T���`N�L��M� ����L&��D"K� V�^��ߞ� +`U��}#=HG�*�����t�����8U�09G%�=c�X���|�g��f&��LU�{��[ 3V����K�dg�ZQzl�ݼ_A����ɼ�'�|u����Ro?X�ݙ�qb��ɟ�)�E}����?�]q��QY�Z��* �q�麊�N��<1f����΅ ��M�ħ(�-˾���|��)��\��ڀ������Kh|�|L�3�L��-K�䪧�W]p���V�U�.N:�p�e��6�JW�6Ƣ��F�5&e����<�� B�摔3m�R7���?�m��Ę+��*Rݽ6��m��}�]�w��<&�>{;�O_ �dW�d�8��'�j<�J�\epk��`eQI������|۴z����Y,>>~������{ %K� }���,j"vM#�X,~ ���y���W�fZ�o�q�D&�հ{ug�%9�PJ©A_��YP��a�;�P(��<gTE�(��`U �Y]$���B�8�$Lި�SS�W����<�q�!�Gv�����I�/R"&4��4<-L�5�fv1���Ǥ\=uqɞ���9g�B�BZYaտ��� � o�`����@&���{c�ʫ�����UV�@N�i�߭K��׏O�o*F{��S'(���9�����\笝;�^υY%%���ZcV��?{gE��tw�"���]vca �X( �X�����"�( ��t�tw , ��]e�P��o?�=sϹ3g�ܜ[R[��Z�!YOY�������j0Zk�Ա\\��-��������Қ�Y��Q8`�<���RY��4�H$�TW3��Ϸ��@�Ą|�}�訅�����@\L����C����Q)P�Q�@o�������8��X�BaVnK޽+��k$i�~#���k��2�\&�7W\^���B�f{�3;�����0�c�X*���<���t:�'����ˌ�O���~>�񺳮��D���W�?5�I[P\PP\PP\mOxӣe�F�2��e��ɥ��x�j:����1��C ��0Tk���c;�?�fp �����#DG�5�|)١�`��`��`{���E�5�� ţ"֔�ӕ�5x.�����������[�� qR�FM�(H���a��G\��Qgu��й�����%��#�������1��H��&�g=_���C��E�l�g6�wwy�q��Z���V���z�V��(�8����U)��Z�)��'b^�~`�ū�k���[�ͧbإ�+���/}�o�+����K[�n��6����{O��qG}�n�6�~�X�-��"�����-�k�?o��}t"�?�lP��Ϯ[q6��x�>}�')E� ���}m��}��/^��&B-���vK(��lOh|y��̫�Ů%�}:0q���.߽۶��ͬ�(��Kl�2��c���F��>'-lWz�B|����VO�qѷ���Q8�����~�(d�sE�Z��P��d����. �I/��:�~IM.m�>T��U�6�|vsa�A0��e�~��o�OڞX�lR����=-����~z�+ -�E���j� e�W�4}�a�M�wv��������{�������:��ݸ�����f�����X9�?�ȿ����%S���h� X^�]�>�a���{|��i�X�݀����X������Sc����:����K�"�i]�/A"Ut �3���)�����@@HZc_?�z$>s/��`0�NJp��߼�gu7�ͤ*�ޮ��W��;o���5�����0XA�yH! ����SD@@@@@@@@@@��K��fj?l3���>Ԁ�����ׂ�? �����������08@K�^�a���2���?�A��7�"�s��oۛ��z'D��r�H�������p���魻����%���IR?8�j��(/���~q��K�&K�w��HX���j����?��*v{B� ��i�Ó)�7����݀���D� o��!����{����!6 �"��u�7�P��z��\3�3%�mqQ�T�ꉧ��5X%-�H� O��Ǩ�z)ki�E�p�_TW���������L�%�m�x*\��cis��(=��m��*�%W˭˓��O$tŸ��3�V~�>n桄ա�'�^8�X��s�=!U�ޭ��-"�]`���]}�g`˴~)�G��jC��B_cԤmQgM��Pu�����5�GX>��m��!�\���ꨌ0ߝ>�Ү�vs" ��u�E��E~���/>Q��� �6��npc��9����Q;�&�����f�k�+1V����@��`�A��V�bZh@����U~lR��m��3�C��eqJ��p��L'�f�#�:<�@Gk�!Z�Gu��(�G�Kk3�y�1�3�}��}�de��ӊ��%K���izB�度�����iO�R�9G���6�v�����&��iFmkKe�s��1c�z#���jrs]#�Ao�k �WW�����yN��-*(�>T����e�s��+�]o=͵8Pq��jO��C7, 0��[rS�l��i/ٙ�Y-�4ߢ�C�D�����?�UO>��<�� ����^<����$������x�Z�Y� �~�EHjN��;��&�ɾn����'�Ƴ��F��3 h�)�ς�3�$\�8Z� C¦��D}NI)̍ ������9���l����io�P�r6����ᱼ���F�y��?<�Q�w����������;& a6�1�3Nx%g��ż85G�)�l~L�NM ;>����˼�[�}�V\�tU�g���������ʨOnH+���r<��n�`UR��Cn�1��rx Q�֝�|���@/�������D�c�[�Zu_jJy�� ��֐G `�bE ��f��p�Nh ��Dj�����b��P���゚"!n��x,� �ᤒ��=�H���t�Ov��%5����_���uz� ��&B!�5�Gzu���(��)�H�o ��� IDAT!��ob�;�})*�N�z��\懚Z��c5)��b��4��N�l��������b,μ��-�͌zho"�/��#vH%�-�Ǚ �p2�U�EDz#���6;�v|�HI�|?=`���&�{{�Nd= '5"f���pÕw�YC]���Z�#���u��jF5{�.�@ �e�h 5�N��1(!'\��l@�x�y��[ ��B *��5㜔���'(PK�j%j����R<�J>fs��1��3L��GI���!mٜ�&5F�Jbf����!.����:�Դ��Z����P�[������Z�� ����=t�� �_��b�����M*4�`f�1PJ�D���*.�b_Rچ��>���a��C er���iBq�k6��7B��cA.>���0J��}�˻�D�(�U|Y���zǞ@���6���ъ��.]|�~ �,�G��tvo��謴ؠ�J���B�F"�ǜ��m�>u֬9�������_z��$3�����Ǣ(b��۴z8���[�O��:hMm�iŋ�^N��ŷ���^\�N$ȉA^��ŷ���h�i���S��Ԩ_޵4�$��4!��~�N�*#�[5?�J�.(xz�_Fi��oD���8(ji�~���ji*�{N�Ԓ�E��6556�U466��xE-��/����2�W�"�:"� ��ף�h��a]]�6���.�}��5} �k���d����{oh6 <�D. �h4' !.5i��wzY ���Y��,����:�����(Ny��]��E|5�R��^��:vyװ �N���y�L���%b 0����[q�'��y����v ^���]���z뷡"� @@� '7�[R�A��pz��f����aʇ����NFQ��КV���)�2����Q4,N^��M<�Ϛ�����Ҵ��%��+C�Rh��ak��1�@ y�Q���F� @u��A׽��e4����� ¿ND �͉���]����Է�����C�'(����n���u���i�?�y'�;�+�}��\F���2JÇ��y�~ki*|���Kkx,�闙��g[M<�����|+�o4`�F�k�`j����Y4����v���Ć�=��z�P��v�5g��z�={���_�Г�+F[G�h��8���� �,�1�va;(,7��P}*����\de'У��&=��� ��Xe�FC�����څ*������pr��Φ���0����l�^��s�C�����}{������Π3���y6T����i:$1N+�E��Ξ�C9�����Dy_tv�ʢ��RY�Ԑ��ߖ��y�a���.�u�z�w��us �����=����&�O�k��5�Wv�5��c0��Y���[��yiXUC�S0(tC��:��A%�{��A��ڂwS�} O�&�����r��j~+��A�뮘��I�42�s�ރ�b�WWS ໯�wܾh�j����Ə-�d�^r'NJ ���a�ن��=v�;���2z0 I~w|�#��s��0��h�����R�<}���qGn'Q8j��Y A;x�X��סrB�Pp�������rvNQHX�����/�ݹ��O�#�@TL����7BϠQY�h4�@ �kZL�y]Ơ�f��}s� /�M�I�˾����kP�s�dܹnj�Qݶ��eШL��Bh��Ш�M���}�.���Ξ��5���(@�R��X �J�XۥP�9זL��ӝ!�EG�?Lհ��U�٤Ʉ_}��vC�wH^[��_�*3} �8��-LY��;�=�����s7\�E̿]�1�^Qatme�mީT�wͶ/l�N*�%u����>\Ny',�>SZםf܎� q�xt��&�єېV-�� 1�T+� �X! JM9`g��j3*�/�6 �T��� ��&�ɬ��Z* ��h��83��KНBl��K-dt��g Fk �=~�WW�ص�OOJ���?nʧ��42� P����)�% }��эW�=��_�ݸ����S|�p(4`��*BI{�u�#{IMC��gOX�eyg�KH�{�d�։kl�n�he����� ��H*�aUt1X,��c������3i���h����va��r�9�^_��-?e�l�����֤�V����%�1��VS5�R�h�s]W� `ͣ8�D-/7 �u���������΁���k�z�x g⴦y h!>jkQ%P* p�����[D�x�5�jc�8��Ъs"C��~���)ϼ�� 䥦�L��&pIO�fDMM�xBnj�� �D��� �7��s0��D%$,�A��T>�Ϋ�9w���Gγ:Le.��k�m�qr@`��W�r\2f��\SVF��Yٜ4__���SZt���œ�^��+g6]K\\e��Mx��{'�[0�dJM����1h�� ��ic�y^ %rE!�)1�h����->IXӐ�h�%�����hQsa}�����W��>��8�+`4%M:d31����� ��������;��r�a��6~����Zқ4A{ؘUg��\Y;�F`h��B\���]�o�r��1�z��e ���Lk�ef (�w7���m���PWQ��為,��n �5�놢�+M����d��sF��d&[S��{��XW������Q�/�E�������� �ц=���Ɲ�{t�ȋ�����̠c��ۓ��/��(�j��=g#��~�"N� =*�C/m�[��j��j��ǖ����<_�M�|�9��t%�vi��z'�o�{¼ ��Tu�Gz�ԹK�´����v�q��}�ph�۽�=˜���K{Xo��l(�ٙL�м�@mȏt߲�Bl?8_���[-��9�����wl(vph �����u��ؚ�wN�V0��O����)���쏧�>*��o�N\���$rm�����v]� l��-g�ms� 27��ٳ��"�����o��ٖ~�=���~;/M��N�>�4YZ��i�����R"�$y8K-hx��[>(�G+�J[�n-n�]���J��Ʌd�/z�k��Q�C�XjA��]�l��4W��-)dJw�}�����G��_���"G����]+Bs�g��/b���� �2]�To�M�e/��)� b��#��R��\��k�K��~���C��Ҽ�:Ҡm}#���+}7n=2��r_v��R�ef�e5Hor�J��g����v�_��M�Z}g��޿�������&9("��*����! ���S_��i���3/�.�]��Px��� 9�:D�%M�_���[T�~��}2b���ۇT����g�0Eh�/�Ͽ�:�/�����9�߼����?*����5�"ǿ��|0��N ��`���n���i"�2}���������ۦw#���)*�黊�l� A;H����ӑ�����؀��d�k9d� ��#�?�h� >)_N�����N���0��&��+oC>'�F��n?^�)�[}�;0�kL��+;Ɗ�8�$V+:o��nD����e=A��Ⱥ�*�C�\��[�E���^�#;F:Fym�� � �n_�$����{lh �`�;@�Y�P�L�ډ'�VH$���-���x�%Xy�EJ���}W- �@K�9Jm��]�Ʈ��?��/��~f��@5�{2fj]=Pz����$�H?|���9�+��TA��6��Dyy��vov?{��AS��� R�kwp�MA?��dCg�\@X���؜��ܯ�w� ��%�]>q�©�J������j� ӂ�0���@ѳ��'@���TUQ�1�y���qhzaVr��:�r=d�뻄���Œ��{M��r>n \#�F$ܲ�Y �#1n��𤂲����v�p���v/8>��� 5����0�4[$�c!.G u缏���W+�T���G��O��g���^l.x��a{W<��FSԫ�&2��s��yas?��:}IC�ʴV ��p����~cm#�¿*�����w���4����ew�T*@u�cw���O��D��� J�/��N|}a�&Ɲ* E��X= U�HYn����JpjvYYVr�� z��܏?|�X�ɜں��yI׬�~_�Qx4�G�]�;�D��Ʒ��Ȉ _��_�Uv�F�4u�O��l�]6��}߷/��������:���u��޿��2`�BM� *H1��/��SPw}�<��P�E|j$W>JJO���Ğ��6��������7��0�bf��s�e��Y���ҧ�uUU��u � zK]}k]u��%o}��л+�7��<����y_�;}��ǁ���ZZ���M̈́ ����U�����N=��}�/�����j�or��K���}x�+���l�Y���At '4�pX���*��Ғ-��Bh�������pw�~�`0 �g��S��vQ 4@C����@�G������J'�T��-���[ R����N7ZL�| ���F����q��]Z6��ir橋T}g1eT��%:`}���ub[E�q@N�V���B��ml)�kO�_��+��<�e��7���fj� ml"��?��&)iN>�^~g�������+�a��UJ��V�wG��4|��4��'��>Y>��}�EV�����"�����8�æk�fY|^&����S�]����������~S� �7��^ֶd�<�]hU;�Y1�'#ۯ��� �������R���)ii(��R�'�0'�(�����m��⵶��C>��RZ����B�����c��$SM:�T�^(",�Q�~��W����qb4�����~��{E��>l*<��N-�|�ލ&��k�YIa�Ů�:C��^<�0�b���P_G��B@��1� r�MRi�3���~S���feCn �!�ȧ���އH����K.�[h}&',xUJ���Vzuh]&�(��%�{��9�)��i�岔���t���<���9��d?w��l�7�F'�FH�_�M�p���r����P�y�# �� �/�,-+ ���_'V�4��$�k�35���y�RKoN�Lh��k�y�6]2b��/��mO���>�7756���V665��xM͊����ө�>a�Z�œ �ԣ�(�P��ڴ�䈝!��{���[Q��C4}�B�c/�����(u���[˳8^����? PD�77�L�fy{Ifq���F�5,��Ӛ�������Q4Vv�?�FA�}��m �'5o�=.�(E}=a(�~|�;���t�{��E��x�M�Z���5�Ӟ�C�9��z�� ��B<�?K�]Y������kV�X�b��3�UF{.�&��S�=�l||T||T�a#hL}{�{Y�N��[�$ݜ��xd�> �>Gw��t�u�P�y|r�\���h 9w9�Ye_tx}��C����\D ���>�PU�B&�D�s�U�͚ �'��Z�C��<���>��K?��� �O����9�����'_6��P��A�ڶ�1��6���l�~c$�������C=m� :�(a�ƛ���+�N���:��8���\=N����|��z��ʁ�@mj�]�`�hF׆:�V�0t @��P��W ��gHL}�����tZ� (,FEapl ��;h~U���-/�� jcQ\�A����cq8����y[ƌB���h{Ev���h��/h4p8\��J���mKI;bj� Φ�#�fվ\��k�;���d�_cA,wsqR{e�gC��� �c>A���Kc�hO�m�~�y֕ �_l�FqXvR6p�����?���g-�4h������ ��E��n���spBݥ�7AfP0(Lcݍ�u,�J��o�@ P(T�R)@ �k҄F.ݽc����ЄB��cQ�wl�_����Fsv�+VO髚���/WT���������ҭ援�S-��W8R�:NCӺzv=���_���钫�G������]�=ˌ��˛@&����Ő���а`�=����#^���H�8��ʔ���=a����T�Z��}�skK+���Z�� �Gnm���xFڽUa4�|������D@�EO'������J �ʫ���j������(O��Wn�J�e`�� Hy���4!p���� �g �I�o��M��#+�~�y�T�M��d�'ٰ�Ggk_�<�R6���a]����4�M�{[Π�f �:d�>�:Vf�p�� �����P�0X�Y�7|�������n����Uʠ��� �FE�XPh �Ʃ/���k��y�T�`4�ק�Hj���n��`�8 �y� ?T]3�':2�î�u:����*S�T4�u�1,��i�_}:����ߘY� �-�^5�s�@�R�n����۝!�yM?Z���е�.���W���#�4Eg3#9�>�Fr�H�l������������4\�'2j��p엩��b�x+(F!���x #&r��֦1���S��d^0,���h4������W�|�1m�;���|w�u�����3vzM�]�_�\�Ǝ�� IDATI���kY���X^+4@f��\��E<^)MIv�`|&�+�NT�T � �ߤY{䖔v�Cs���𯑨0�kF�V���]���������An�%p��g��+U����#���Ơa>Af��_���cH#N��\�����I)���b<���RY��4�HlkdQ3��8���1�DR�_y��]6��T�:vxx��L7Z*�����_P��"秧K͟���Z&�h�5��JUɒM�p?�jb�� ��X�Y�V3/=]b��­��Y��U衹��Ku�P�q|��^F�;c���=# NڂN̯�^&�^�������m�����d� �c߬H��&�e9G.���1w�V����D�lw��r3��7�m����诶e-�jH��-�N��)�v�咃�B%N�CExD�4c$�O�õ4r2�Y��������W� ���_v�����z:Ț��0���A�^�|������\��qiv[}�0���Z�ع��:�ր��d�>�54�X]�~B!-ʭT���ZYsء� Nu��z��|�'�'�Ck59�viP�^�~㽏c��4�Gݶu�m� _>��_��woSզ���'�����P}l����҃�NGt]�n���?ھ/��Ef6�g5��ˣ��!�u�{��{�ڧ����Ыid� ^\�z���F�5F{l��H�Αn��zu1|��i�{vc���\�s�����Df$�*��)�����j�f1ܸ/΀f����B��%��ڀ�W4G;����t� ��̘�z™Y�}op�����m�Br�+I��T2�;�?F��]���W;��*������D��:m�:�h�����޽>{轚��+���9�ӝ���D�Kl�pv��.Xg�N|�H� ��4�9(��"������s�c��c79����v��Ɩݪ����H���:r���QS�&�JE�%؟���,N����w�#��K�u������}����� �#@jڞ ��{���F�)�.L�4V��߱�~�� �>{��@������k�+��ڗN}J��d�[q&�1g6�wwy�q��Z����W��˭��݂'��j~����vN��-��#�v$;a����S8�%���U�>;���a�o�d���ۍ �=����������/Sb���'���$���E � �#����L� �c�'9^�8�ۿ���ou1p��-�=���!��3q��Ƭ~Q(�ʖ�� ��9ڋ���6��B߳��-*#�|�L��ϡ����!�=��Af�2�'� ���J�������R�i?]�4 �闢�V}��/i<�N�� �o��׿�"'���>0ڎBe0@��reWr�� �s6 �j����N3-k��ֲSF�5� f�,k�^7��O8���+��)C�~�g����4�B��M�A����z��:������O��� �@@@@@@@@@@@�9H����������‹�Q�!!�.�0o����o}�l��5���?��e������&}~�® ���k�1%g?M��ㆶ eD�������mƻJAl�� ��� �=M����|y�^�G�E�#�Lo�������O�U��ĄG\_��)�^�6��2�~��n�9���Or��G��r�Q���������$�k��qąw�k�w��2@ pO?�t�_��mY35�F�}4/|�8���J��0 �p��F("��`͝Kp.3���{������Q��zB����� YS���ue��q����-)�. ��=d�뻄���Œ��{M{�IP�}�MtNiaaj���#�O����/�ҋ���]��$�����]A���햍�r*��J�U��$�:1S�r cNg�VU�֐*��J����*~w>�$'=�������~lJnj��d����������'��� ���g%\:�o^�c|8�.7��a�Brb�}ׄ-w-�)-�R�4�vRɅk��`�]z�zʃ�g�l�]b~��L�����Qh\�vqeu�OR� �w?��4�1]��B4�{�_J��)��`ā�N/�)�x�pEsLݯ�I4_�M�����7�}?�^�����%짘��r�q��ؚN?�Y��S�.[�2w������FY^�7+N�n�/�u�]���ZճJR"��+����]vXN�I����g����th}�4��O{���j\ф��U��m&>0� �Ɍ�G}�z�P@k���-:�Ԃ7��tD,wIy!�M9B7��8hY�db�� ���I�v���w:�[5�l.�z4��\�{/�=��/yT��t��n����,K�klz�}je����MN ��+i�Dꠜ�4��-'6���m�}v��5��T�v����%S��X; ��\vQx9���ޮ�w�G�M��Z�k�z܆���<)�%$D��A�"��v�rC.���o�Q���?3䇈@Mz��)��n ?We�l��;���Ka�Dnih"3�� �zR �������2��A>�p������1�y/����jwDL��.�����tv uz���A��Ŋ��sN嘯���r�Z�iZ����~����2kX���;�Ph�}^��x{y��"o^'�~u(��Ji��K/���� |��L�ٵ#��Z��I��G�>1M�c�lq (�k⛻gl�����������C�K~��u1Ì���>W�c�l�DK����������1M@�Np��*,&$���M����}9���" ���;�i_?��c2��\p��y�X� �1�}ߧ3����gy3�Z���!!/�1Q!���_���&�����;g�� �uc�������B% �9Ɯ�����������}�E{��ŁNo���*(� �Da����"��1k ��X�H��PC��Q�Bzs�hI}����U��DԼږ��s��J�᦭aki�Uq ~m���_�����0<��<75���Tf�4Z~��wTvaVZ�[V�3Z~��wdvI~N쩩�s�Yn�9����A��RWU��\��ʠ��շ�UWq���$��F=��Fji��d*˩�@027���_���-���808�QA���{g�x6�������2r] j����^ԃ�_��KBoy�5�����0 �������c��G@�޶ ?\|��� i�iԧ�V@C��OHN���Њ�vMH:w-��ka����^G�F=����C3'!C���r3M>p��X��4y�i��2hzn���4�S���<�gy��������V��EN���ܥ�;$&�1M�([i�����g�PGSB5��c���(�d�P���e'��Ae�L���/]�%J.ػ��p�D���/$Jj�?�z���7��ij=sH��L<6NOKۦ��`��Y�m ��Ũ�Ym�q�Z�4�.��3q���������^~���4;��7s��N��i�^i�v]��1M����3�NY�V1��z=T�t��X��J\z�>��3nA���g�hN�����iK:����#��I�>lRx�c|= +8RM�.?���'�!3o�ª ��L�;�S|kն�̠W�3�����l>���@�H�=��e���W�I� �������O�� �dPHd�).҆�R%N���"L��~�O�����9DyZa)%�cR�XA���=�YƀyAD޻n�Y}b���0�9�Qrf������ڨ;D��dӦ�G���GFn�WP�]z3��@��������%�?���"�-�{� sҋ�,��n�qotv�B""T����̜��w�p�(,"�ZWKf�B��~�Q�U�-��Ċ������WǙ�AHD����5�WW[+"* y/<��݌=*sӳ~۳�+�Z9��}����I�|sݿ~��pD�ֆsq����Xl]J�sƗԝPx�>{�@�ŋ�/sɳ8�F�I8PPkc����T/�BI hna0j�j3��8N��˨PS>45��k��DFaՋ��熌�U����i=�gMk}�ѕ ����j3?=rp�m���ľ��i�ץ�m��N{�&'�_�� ϯ, �ǐ"�/iv�S^]�2�]r�Z��.RXcǥ���!o?״6�}�!���0��xIo�龊z�ěZ�}�/ϟ�����W?7v����������3�c,�5��h��h��Z���s�"��[������S)�Qh��� �-�?�������4NV�[��Ae]�? �� JJ�jR��m��Y�4|x�{��::���g��]QP��)�{[E�Ԧ��w���_۰d��Y;��s���7D�t�x�f���ɻ�z���XZ��D�P\�z�Ӈko���X���(�ǿ�~yyQyeI��g�4D�Wf>����nj_��m.u��4nԨ�O�o��tх�_�h���g~eе��V��_a���c�U�}�v���lQ|�kw�h�Bc��ٞ��r�����y2k䅤��Q��l���dN����ǿ��v�m�ӥK�[���ir�Jc���Ŷx��l��O'���s:�\�ş9V�p8\�KT �c�DMz�Y�rc��W������CTݸ[�����"?�R��}�#,����[kPs���d{>�8!K��w[�❜��� �?�N�wz�S�Ԍy�C*Xm�V�ƺS�0c� M�V�iiu\���" �8�Q��HÝ��?�,�̠`P���[3j0Ƭ �o�n\��RT\��W/o �qfX������a�,%'������d��pC�>�GOc~pX,�ʶ�LJ{�8��h�,���xJ-��voUX ��kg�"�#���Ty'���`0h!����Bu��g!���ހ�=�aH���a�뗳�.4嘡�[�(=��߳��L�T�3�����v䶽�M�f|��(z�c�S0���H(���9�zO�P��B�7�˛�9_�� w���.�� �l?�Nϛ�*��A�� ���k� �A�4���%e���X�:�u�5��6�U��@�~�d�������Z�wg��D�j�$��@[[��D�ܪ�DD4�۷�5%�7` �O.|;�� :��A���0����O�5���W�_�|���X�G�W�vJ�]�a)��G~?���J-��a����h~� j!�ѫ�>�Y�H>�^A[����=Fm�����k�e�c�8�7s-��r%=ͬdP벒b�-3���;]��~LȢ�;��z]BTѥe���g��x���[�kӋu�Z ����7Dw��]��I"���M����0�u�n�� xAU�M��Y���z�J���gv&���T* �a��hL�a{թS�#߆�7C/���#lM`P��ep4�Hl��ϯa1{DCȋ���x<͚�j���/�J�p��b�~<����B�ɥl�~��R�!(��L�']��_���TW���T��篮�����H�fy��&`W��A܆��N{v���~���h�3v-��G�[��P���S ;�}��������޸��ͯ�k;��VH�ʨ֝~je�ŲF��D�T��1c�SG).9�{��!"8*������N�����R��84N�t������~I�3���&����V�p�*�Ȕ4�:L�@�4��G�̨���:`s���� �Y�=���g�I�)�q���Q�'�l~zy��OMj���u�р�V��W�,��^��"bb �A���Q�Hp+�4�g�2����r�s���E�0�I�$QO�`4�C��U�Okz��0�; �dV�ٰU���`4~�D����#:Nt���o-�sbc��-#B �ϛmRG@��;|�Xeq�����Ƭh�$'K���D j��xh;��9��3�KH��:�uR����������ٹ��;2�թ�� -����asgh�$��R��q��yO�9�]h�D�&��^�-��-;~�|�Ȉ� �D|�6\i�'��-n��fL��{6��?�ᖟ6~xe~��,@h� O4\b3L��-e�r�|x���`?u�{\-��hjkk+� �zX�/��Uۦ�S�\���@5U�E^s�/`쑠+s���WK�agt8�lj~������V�QZMn��˓N�>��Rq,sv��a3�������b�K�8�`����%%[���Žr�b��M�G�3(���[YY-Լ�5�N!ũW} f��Z�${�t��_������u�e�O? �ZU���M�ݷ+�bI�g��� �m��{n/c�5�k �f,�Q0�@Ѝ�̊���m�zz��;%9>W���y"��Z�`�Q�bT6i��m�l5�O��8z1`� ��8��S:DZ�:��G8�����&=�{8���]~p^��1��I.�s��L>m?�3��Y������@ã�f;���5�{�9z��r!h�,�>��#N�2 __ι�:v=���n��u=�. v0D�����=��X��^o����@e!�����E�J.b���w�qQ5]?wXz�n�l��PT�nTDEE�FE lD��%����~ ^�]�����=s�ܹ5qf�Y��|��]1�@O���ޢ�Һ�g^��8`dos���,FY�>��<ȍ9���Ma�};�6dwi�.�Z����'#3�X�oϯ>P�9�����^-YbE\��^�@�ݶ���v�N*�6;�亸(�9pf╇1vI�KN/��b�<�kM��kf�Z6��y|������3"���н���4�P��Q.S��Бf�e�]:��~�%����k�t���5����ʉ�����ѷ��,��)�+?=�%{��.���9��'�dʬ)��r����Os�[ƃ%�-��3�p�Ⱦ`�[����=TVNĭ�N���޸j^�c�,��E�w����H@ �΂�G������?"�Y<��Y��|�}�����g{H�������q- $���/��Y�������2ꞌ�b����)�˅�73u���l��?�����߼i����ߍ�؉}��n���ݞb�w�S��36$p�S�k;EQ�V�_ޞ���������-`������Q���6=�O^����O{�������� ����M�� ����y�������k��k=S⏃�?```````````t��������������Y�@�ѷ��j�� I�r��)�^= IDAT��W�B�/�ѫq�i��,�[�_� �uu"ݨ)�w���wC^�YiF�7���Iox�f*�������"ݺ�� ��7���h�����ahxX�ז���Q�~���CcE��7�xe�R���aF8�7�� �(%���d�y7-��+ jR����H�u�9V����T�\y�d�;s�F��� ��:� җ^஻���� jc�Е��7� �-zl�0��f�!zRK.� ��wUm�9ߍ6����s왾k�q_A��|��ה������#��0PX��VBku\� ��l�O ���.c$����$��2^:i����L=wT�Z3{ﰸ���Ԉ;��)4 %�W�x�S����{��,؃�3�T��N.(��My{o�Pq���'� Aeܡ�����/���W}EpN�-I�e�T���fg|~td�bWO���?(Nܵy�RRlq+��ͮ�R����'�.9}jɨ�[h 36-$LST��2s�����P�tח'���&L)�U"��vN�=0t�2����NS.��V�S�#1��<5�z��?�7t~����Ǯ�C�/�@n�5u�Zo����-�(=������lz��$���@K}t��m���p�fɠ��'+3k�_/.�DQ��wW��28�����.W�B8KS[2�v`V  !�U��I/x�{�*4�ZQ�u��:��K� 73>�p�S7��"p���O�?�a����:U>,�i�dFx��C�J���|Iyq��-/�"��k��n)������O}�l \Wb��zm}j����V!���o�3e��̏.]�zW���8��bk�汊�oN��󼈷M�l t����s6o�[?��v�l-C{�s��VZ۔�x���/�K�g�t�y��;3��m ��oܹrto Nї{�G.Gр���Kl�֒��/ç{�����+#f����wW/���_5�~��Y%���~7$Jm�sF �:��*%�����y���C�����bU��Y�~Φ��p����[On��jd�O����$���z �\W*�� �l�Ժ�~²@�/T���j�%�3�709������HKBR����p�e���{���s�� ��x"������ ̃V�������8¦vO9Zh ҒB�>p*8��bu���~TVλ��׹GРI���D)�o��k� 9�-���k�F���o���M�cC]xH$w�� ���7��7�WT���2-��%�����'�!�䗹oN~����"��m��WS�NK<�]_ᛁ5:Bs�8��������9w�N����|���~��&`l,��z�kƠ�c��d3��j�s�{�Vg�&�T|�m�ܽ�:����٬xr�:��ZJn��l�sok@x���^��3�N]|�����~�wH;?�8N��X8~���kY7V����|��ӞU6GϬ�|��W��2����Ύ(@D�r�lzUG���y����f���y!������{x�5D�ᓑ���Pä5��' x-�� F�Mf �H�u R�tp���0c��g� E��Hg��:P&�:���a�=�5�N�;���7���d''F�_n�&��l�f%��tp@�}��#�|گxůf�]�E�;�`��ߎ��#�8&�k�v0ByxQ��.�v�T{[����d�$���_�O��伐�J5TW5�y�����,�ؤ##.>�R �4�Cz�|���� �O#�鳼VN�>�9No�:��Q+�IG#Ÿ�o����\ �q�5������7�T�t��a� Z>�X\Q��HR�b'���6p+ë����!|���O9\�����2p* 9� ����w|��V��F5=O�H�!DQ)�R�~���:}���,�&)&�Z�v�&? ���D�������*J��h��q9�����7N/�Y��t��[��d�- }%ǮW�tIA(�0"�#�v���وI ��Ñ��dŐ������h=���� ���2�'�}�=����ɪJN�n�I��j�*�I���|/3���i����NO�������8�Zl~V|��Vy � � Rӎ��X6�b̘Mi�<֛�� ;����Y��U\�W\Z��/��v|�+.�M�5{��zbO�/������ݔ*TE�=��� ��jo�OQ���n����� <8+�� �è�؜�k�QWNk��hB��ti�'��,@��4��r����~̷[2-�kPZ��}����w�;{|{8�15A+�;T*�����te� ;�ˋ��<�f�U��ƾ�6��i���@h��y�d���/��4�#�9n�@$�$g��D·wH��h�� �m���k�c��Fw�<���9R�q�s�>8����2��:v��L��˽���Ut�k��y����s��@�����ĩ��� �#��ـxDZ�Y^U+�_��'�N�y�Y�A%����� 9�yG�u�̦.����T)5�"��?�̞;텂�f��eV��69�s��;��M.a�X��������<�H\9pk��'qG�|�/�>������]Ǔư�o�ͽ�W�ˋuJ���n{��Ka�HT]�f�"��E"��f�l�Ӓ}�:�AՍY�^Dq�go^D&,�+��ڙ�YG!s� ���k���A8�1G�&�GͱN���}  ����׳���K�s���yj6�J�� d�a�K� 6��[ ��n�����gw7� u�����_0�PUU�����p8"Z#��Jʪ��Ta>H$�Ǎ3�d2�9��U4��-^Kzڐ�G�s���'O'#(� ����G9��ʤ%��T����8�����y=+��[!�������E�r���B��ﯺ��W/;j����>�6N�jo��?���b77Sx�$ϟL���`�RS?0��nq���y#�������>e����'���?��}F����ǝ\��B��9*�/ʨ; � �f��z�Ӎ���K��N���w����ٮ���b���h4aᦸ^aaJee%@m�u���5U�N�kr��"9`���6�LM����i�\�6���7v�_�b:�fM��a��X�)s�ʢ��)5���Ϛ=X���`�HKW���~����_�DF���# �G؈h�X��;JΓʊ ��X�脀��D~~���C� ^���կ/?��� ���بD��3���L��5&��:n����A�A��y�@�7s��9}%Ȃ Cm�J}�J�c! [+I�V�Xǎ8_��%g,��L��A '>@T�]_X�'9G'������_ q����A��f�(� ӦJi�q\4���mk&+KX�%e՜������9e "�(5x�qCjr9_�x�y�GsdU�@? c"���-�W���Cቿ�r��9sF� �dML��������LL˿�/����U8�����d�a���d|�$:~� *Y@�f�м�(�c{�Ђ!Z2DVEAae�w3#>^n�(M���<�M�����b1�PV�פ�kG��߮��� �OL�3�uf�p^�_8�Ƹ���Y 8�����R��3�߽���A��$�\&����pQ���a�=����.E9�\6����pQ.��i{pѿPȳ@*���'OS��E��[�I�O�#�^�<�N��s�&�Ar�ԇ��h���DNHHf���A��~w�/�2�Ұ4;�k���4p{��I�����P�x��C�<��}�ݕܒ����Ϫ���SC��3OaT�D^s�����G��v�?��(���u���"�q�#I��A,h\�����%±'j?��Wۨ�m6�[R~8/�_-���Y��@@ �!�sB�/��Ep�ՠ�������� �w�oVփCw�L���)�뎮V���_�9��_ˍ�M='�s����je��<-�/�{e)����*� ���~ݥ`Y����;;�Ơ|l" �7Mο�8�Qw"hґ�_��t;a�sϽ�✢؇{G�C�.g]��f p��c���y=��>#�k��xRи��׾U�/E�lF� �,H�E��9�ֻΧ�Y�| �z�Ԉ].w��k?�\���on�f�:�����\b��*;)o��g�#���7ρk���^�.��:/:w�"�Pِz+�ms�6�QVE�Omh:���`wa��Z������d~�_��.�y���S�����:��l��C46ꓚ�2�_Oo�Ԥ?����KYTz�i��i�S00:�>h����OFfJ��ߞ_}6��s,q�!߽Z�Ċ�������m���턝TBmv��uq P�s���+c�ܗ�^�����S����k�fv�������n}v�@襩��9y$@�E��g.Ĭ�gG�\��I �xx�Tş��o/v��k/���k{�ҏ_� sr� _�}B^D_��~80��<9t��9��eI��251 %�I�;'�'_;)��o;��Y ��_�.�_v�v��=�%{PfMqF��ö�;�f�֣ �v3�=x��� S>0�v���z@��+E ���9��w"��������/����$���&~��X Qc��bg'���m�"�= ;���(���;��G���+�~ �a`��r�M�4��c���=�o^����vb��Y����r�(�Z�q遫��vDG��vo�/� �6��ͷ����nM��}�ݘ�k?���jl]��R�p���M�ů-}}�[iCwe����������� �Oc``````````��� ����l�������Jž��wd�����������������,X����H��]~�/h�Y�BD~���M����<\5niBT��v�QЃ�;�wO�&��D� ;��{r���-Ӵ�vO�)�UǛz�L{֚�= �Y����4�Խ�����y�-/7�1j]�7� �I���{F�|_���xj�\�*B�f�?{?�A�ݣ34�d����� ���s T~��6TE�\�<�^�-H}�l"!�7Ħ��n�}�Zs'6�Q�:����{��/k�'�*� �=��]�]�K~�c=�,���`��n~�~Q���:�n�o9�2P��J�510�[�?�XRY^X�|xN��4�ZSO|�(��M ��Ҩ�k����z�U�1��_��^�2C]�Hv�{�6�2���{���f�F��7N@a� Z ��qu2_��q��O��Ύ>�P��������k3ě��QRQ^XV����ё �]������o^7۔�_�=���ҡ�W�׿��&�5�~̓�)[WH=�9K!^g��˼�{�V��$q�b��j�&h��؞�q ���<��[@ 8WOO�X ���{u�5��{��I�E>�b���:;/�_|!��E�ᗎ�1����y��b��<,B�][8�ܜ��@���_�q�^Y�'9�����k�H���@�)�uy�#��S �t�ۀӔ]�O��MVT5�t��Hx�ѭ������&*I&k��#y�m�T��O>�q}D4�;��p��Tusrκ1H��n��Y]���u�yM �� i.Cᷩ��Ey����>3��g��<��<��\�r���N��$�|�k�S��T�� ݨU)�,v>�c��������t� �)�ٰ�6�}��B��N����������r_|@�LViӱW��>SU���<�?�@���,�~0~�b-�6´;�4*����<14~�0����������l�m z���̦��x|g�;5���7g��7u,Q� ^�Ϧ�R7�g��O������uq���Ɲ1s��)�{�����-�(=������lz�Y���~�N�x�q�C���!Z �U�,q:���l:�E��b����$9fנq�l'�(�G ����� ����;�j^II�)��'�tw��F��?]]]\ b,7k9UYhI��'�Ҫ�\�J�K ���g���yib|�����F�ƿ3/-�Ȭ�4[�s�x=*�$.��O4��'D��x��Wx�#^x.��f�A�UI�N=0L�B|�Mݾަ�2�6+���5��B�鮧�.ͽ�Ҩ��%`�;���5~G�H4z�ڔ��Z?���~�v���j��8�{���?��XM !Qr]a9.���`�l!r6-ٛ���2���c}��v�v|-HO>w۶7�� ��i�箽]ij@���ٕ�q������Z{�wl�L�W���� ���0@Q>B>�*%5�9p}ИBw���ώ��.����3�'O & ihѣ��3P��"�Y��D��¨c�Ug�R�d*9��*�W�S�o=�VW�WX�����:���+���������4f���Za~�Ojb``��>�������fh�7O[��S�:|f�M?*+������#h�G���BO����l��0�/Y���"n�K�q>��X1+�{��TP����&EE�D"�. Ek�K��v������i��(�����c�Cm-,��H��%�ZX�x���+�Z�_�:g:FO��0�.$7`B��¬��a����Z 3�~%5�6 �fz!�za�< I >�Vdž��H�vMx^H/+h�u ��ؚ��R�������r��n���M� Gl�L_{�v��Y:�ȰMSS ��� �cX"������f���0��`ˬi+6_I�3֥�f�Pde�![�[� �d� rrQ�?5���r���oL�XY �Y7o��w�vs@n��Dڕ�Ӧ�\v+��g��e���n��E�fΌ�s] IDAT��$��"\��:o��U^ 6;g�@�#{K�)n1ܗ�-,�-,��.���u���lDq����N�-�&�� yï�ڗ'�����.Ej/�A�= �(u��6D"?Uu���ޫZ�-�x���k�?V "dY 6�8��+�r9�Z��Ma �H�u�4����>y�(ʪbR,�(�WdU����5t^���C�<���;%�q�� b3]�M#�����8Zg��� �u��IR�iv�-A���}�}H��I>3K�P�����6ae���8�ʧ��W�j���Z��s ��Fg�Q����.�� D��P��6�}�Ś�d���u�LJR�����Aho/ ���M:2��/��LC�1�wʗ�.^���*n�h���:��y����' �� z�|�̙��5A��n�$M2��� T��}TDXl�L�#�<(��cFh��`�%4�H6��p?�Ռ��BF"�Q5Y(?M�N�ƺ/�r=�V_W��K������dhҗ fj,�1�� �9W��Z.��k!�� L�Fj2?>:z�e%����H��ҕP1�%&+C��)�9WSk���_��r�PSXHGp�����?���Vه��*6�6;���V�Ҭ��BG�e�_E�k���{E�] uV���3T�əS�yï�ڗ'p㢣������ �A$��Y d�2�����S�te;c��$ $ǬU��@ .���M̔�x��Z��Ԟ�5&!D�%�)��(������&��M����rΎm�2���M�si�ã ���EO������G~����I�$_\5w�ݤ��: �EDp� 󄕡�`���n������}h?��ywԝ֊��7�t4���oBl�mZe~�i������ w��79����)�q���\����҂�]}�k����W\���k�b���F��������!��cs��^�;7��j|�ܘ�������8$眞���Lg1�x|ݛݓ�O&��L&/a�)Y)O%�g��_�����%��U�#����\���@Pw����jD6 ���&ie؇�E�}�OT�O!1��<�y�mū�u����@�#��ʫV��#�Ώ}�}�|h.�$7[�TME���AMmY������e�Ct�(����[��k�y��u��ؓ'��OJ ��o;��D��� #�@`%�6u�@~(���v=���Y��}/a��|K�]y�s��rk#u��\������x핚s�3?=.��Q�_��Q���Z��R�wR���-�B�8Ǡ�ZH���l~s�:����_$�ux�r�OD"Qu�o� �zv��hI��I��EQΛ��V��"��ݔ7�p���*Ai�>�-W���Iܑ<����Ʀ��z�n��"�k�<{�"2a�_Ӹa�X����R�M��j���0�%����r����["�`u��� 6C]�w��淵D"��4W�\"�P]]���K��p�i���%�Bu@��*+-�#�B�tPJ�<5�6��r9d���X� �"k;aH��I'�F2������@ �O`QT�UU������`��XZZ�M ���b��=l�O���tƍ3�|���k����������&1�Ϣ�u�wT-��f���U +Fy�u�J��L���^��h)�o�\F�_p�o}�����o�TVT�E�HLPR�ȏ/�^�h}��W�� @RF�[`uV��p Y2��h������L��l`=US�, c2i�B��T>��wa�g���(�:�6�����GFP��PC"S�L� 8fb$W{U#�:�ѱ&���� �B�J���_�A�W&����LL�Qױf�@�⺓Y�޿I@��nXee�$AdU���p߉��9TS㺴��4�l 77�Ko;�$!)E���xҦ��:m�� �\�7�vW��/k2DSRRe���֞��Ȥ P$��'n;`��/Z�w�����)IU�j�@ ��?�.9Ah�l�N�\�T�.-���'�K�߇Y��F1� (DƉ����ee�X���4�Пm����n��ڄH�)A(�����T�[�fgw-|���f�X5�b�� ����E��<�����&!NUN䥳������%� ۽��qJ��:R ��4�_����p��$;?�g�O �O�1�CQ.�T�x*:�|k=�#󑅚�v8����(�Zh� �J~S ��&/�8��X�E/�>���CE���{���:� ���/��YhS|�l�P�N���+`YCUARإ��-9 ��n����:���� @s�AM/;�QL������_۴��W����xP��z������SW��|�VB=вS�$�)ͣ���W� ��r�&���{��@��3���Y"�gE��J��z�S �� ��rkZ���G��M]�;ǧ7F�^ X ��4.��3�^�+�ۥ���-a|�UY�O��R�I�z ��Ӆ2*���u�ny15R�H,},Ѣ��%��=�8�-�8 ]�%�?��� �����]ΑwTr�L�ּq-hY��6����А�dO���|�m3s����J��=�.����<�kM��kf�+�^vإs��]R��O��N�*F���[ 7is��k��ch��=�|�R��u��;8�<��[|{�}q�g6�h�_�^xhnt{� �� ��o/, ��C��7;�B�?�s��[�%zi��cN��vDc�>� �߉�Ͽb�r��k'%Bq�m�57����K�%{��.���9��'�dʬ)��r���k�#��x��n��ǝ��KAĔ�H-G���{$`ANBO^�o� �����R�.8��xn�˻���÷<��f�3: D�����f���f�/��R7������ڐ�o��?ϏTka��}�;�����s�L�4����� �����Qo��8}<����d�x�=H Y}ȶ�@Cq�3g���h!�߇�^~��6EQ��${I��N�u`����������_m?0��&�������4���v�S��ݻcڋ���000000�3`��10000000000:˿:������OѴF���c````�>�� �΂�0000000000�Ypr�sW�Z8T�W�u�� �;i��K~����\jFm�#�:�Nܼ���7����3�w�������~�x����W�wFd�1�N�����m�Ûƫ��8���ϒ1��HN����o]��y��r�:w����]�[< ����/D�~�o����q�/����#��\o�����p���������'f+�Ց�:v�sۈ��qt�o�Δﴟ���w������?�]��ͮ� ~�C@Wjљ������P�2k����ޭ��޶S*�5���ը3�m�n��]�f�����Ш;�D[dm�.�;�l9�1Ƙ���ѧ�T#�,>�F_� �^l+�N�7"��zm��g�!Us�?q/�-J˺`��ū�"8'�� �����c �� +io7�t�r�k�K'�o��O����5�D�nj���Đ�+���)�|A+��:�Nn�7��"��cL�T���>9?;;>��B��߿���2J*� �J�3>?:2A����?��\�T����7_�������Yi1����Wmn����|�K����)�0;3���u%��Sv�;�������ǹ7Z���Mz�~�XO��5>ى�6����Jt��;��3��rc����K�鋍^6Q����$��n�o^{��h��Hb��B���K7��T&�:�dL��'<���1Eĉ�K�JE��v��4���ԏg��se%��R���"�g��ȍ&��f�/]µ���KKf]]�[��*�Dx�.o���6���I6��D���� @j�_��6����.� ~��4�N�~0�Iҕ[�G6}v^2�g����{��d��b�L�m��W;��*�|Ls ��)I�٣h���F6^�<�/R��z�Ҁ����T�&Q[~�f���9���5 � ���-�F��?u?��� ��"U��l�3 R?��k�r� ��^i)�:`�9.�͏�%� ܷ���]�f��; �w�ה[x�'��GP^~n��� ���-�6O�7ׇ�R|s��SӐ2�X�XP���Kr�Gu��(,�p�6o��no�[�]�X_hܔ����L-�2��#=����ɦ�?}��$'80NE;�0Te��ˌ�]���Z�x�jE쀝Eܨ�W�իON�\x�a��3��^g�������Y��`m( //����KLk�^tt_`�`�]�v[4�%� ���N $��ϝЂz��9 �W���ȗW�����*C6��@��Հ���m��3#i Jl��&�*-�K���,okUeLa �g��3��� h��H�Y���z��&��:�����ؔ�}v]֝eA�{]�5�ڨ���n]N��h�� p2bv��v�`�1u �������pC ���;.��-�e�5>}����ߧ�~��A^.u!�߁������D�������tYA� ��^~����Ԇ�f��oy����5����ލ ��J��]�[w�w�fc,��)�u�<�>�m�b۫�ʦ��[��Mq��.��~tg�8*_�<�Dd�Vr��{��M�{S��M�ə�>r��}/����6�ъ���yj�"�ל}�k��/��')�,~����Ak�krP��P �Gܫ��㔽)����Q�\�h�����>7�\�t���B�7�l�a��]��}j��2�V��f3v�QO�q�×�]>����ўQX�6�5��B�ՙ�$I`}.>��,��J)�.z����A�Iչ\�Tc�fF]���4���PEF�9���i�DXϴ�����<�� *�[�;�k�r�f�>��a#���>Ł��^��{��8�Ȏ���9��09��v����הZ��k-�7��+9"?�Lxra��k �;���T�\G��%���8���$'��d$��=迵所��~�דh� e S��x����B�i�&Ϗ]���޻&��N㓬�@ �7<�K��ˢ���2�߻���7_%�����Fz�z���y���<6X(��Ӯ��>m�kV>���HKϿNL/*J�ue��0@�]����iVG�S ӿ�]�G�Z� ����N��7k:T�7�K���..�:T�Æ�6����~��*聯�è������%��v8y��O�K��5�j��(広Kp"��&QS]��Kv�#N$* J0@N�$,A�*e��.VVN�9�,��}�@G��qGr�q�8��3gk��j�̈������.��+�W�x�E�� ٧m�/x���Ԛj�����\�i��e{r�N��r��:(m��/�礼-�.u2�߁�0K�ۗ)�%JY����߳h��N�D#��J/�����=�{d�N�P�ͤs�fXY�z��wAa�D�7����i�N3i}5[�, p��1�l,��q+�V�[��;���O��J��S�f.]�[?e��_� [;͸Ӷ�����eVh�/=@�-%)=q�ȼ��#��ϟ�w�<�A(�(�tF~�Q eU�(#w(�(��ʈ�T~�e�/O��v�E��s���p~��BP3V�����+��@��J���1w��� t�iO�{�53��d�9u5�)��L���Vݐp�,�� BZ�򌺂�Q��4�����VofZB7;���$! PD����75�ߘ~$�2vG��k$����?dE|��İW޴nj�{�[�r�Fǭ���+-[1^��&���2�#:��tq�h���|>y�1iDi5���x5A1q��@�Se���գhuDe���bS�3�vIZ!��sUJ�� CZwfs�\ d9UVJX�ɥEWe��:��n��Qffm.�$!���:�����ȡ �o:��BpADB�5ٟO^|�R�m�{�[�֦ŧ4@� %��ɏ����+�"?�r�Z�O�l識�FE��4:�)�.FLC��m#��Q��UJ��$"�+IMC�8�\z���9�οl[�3~�$�c�\��lw$��]�� �l�K (PdDP!� �)*�Cp8���i���|�Yz-�>=.�)#+�M������ώ��d0��� ח�Jc� E�� ;R����m�q����Ɗ7�L���!�A�I�Y����#rP.�(�G�F9l�{鷀���94�S��EݨQ�󨪂�"[!PGZ�<�� � �j6��CY]M�˰T99>c����<���3�iEYO¸���k=���� ���2���%�x���:7[��g��D�������p��^'�V�u�����@\=�>ݽh٢E�-s:Z.;p�ι2�sj�� M:�v�@�'޸y#$�}O������/Wf@�6�Ԯ�ԏ��ҟ:[=#+sڵ����g'(�ς��/�����Y5��M����W�4T*yj��H�x��m&EO=;r=:����`V��� Bj�m)�\�E��@2ۤk�����k�����`X.��ṃm:�<�%9�����o�QA�E�u�s��ݑ�kC7�k�5R�䌗��n3��� o�^��:�mó���]�����p8B� �S6[h�@$�L�sj8��%�|+C"��.�ل��2'����i� �����5~� ��Y[�!���3v����/L.��ꪼfW���(��3��gk;�]]TG/M8s.�EM�2���p��l��b�F QA�w}� h� ����"(/1e�*�?��� ��Jm��}�L'���ٰ�l<�4��4���{�Gp����G^~q�_<~m0z����9����GJ��^P�4i�3$D�� ��6���n ��,&NL ^u�~���W^�@{�D�� �0)�쨖^ZR�oR���Iû�YO�A$�r�ܸ��� ��15�<�p �ac-S�s�k�,��M��j���0�%���)= ��n�����gw7� M��e�����>x|h�����.߆�g�pY��lTFf 3��B��VY򐑑  �y�֏�E ����"��(p���p��! IDAT����G�8TO��A��@de@����,o:��JTvqAU�+��|~��C-ujC~�ʶ��P@����Q����J㕖 ��U�N�1�As����E{�'���q:��Y�ܫP}ց�.<��sy4��y�ڻ�~�� 5JI(Gٵy���V����4U�����9�3���@��+�ʹ�x��Q�T3橹�Z��bL&Y�]�{��w��rY4����m.�ΐ5�cǖ��4�I~÷w��~#*� /@h���ke�!��W�P.�5?�8��p$EiS���K'����)z���:����`8|����g'�=����D�������9��O �Y�u�_d��]�p���߯�s�����-����XrR����B��������NC04�g�ЫQ��W�NS�_"��x��@Ũ��2>ɥG���i�l�vQ��Ȣ棘�+3�����7�弡נ(��:�JI[b;TRi_�H��Ld�o����3j��L/FjY�8�� �"̪_:O���N����M��_�t6n��䥖������E~��ʙG>��P�{���@��UYۇ_M������D�oՔ�f�{� ?���1�q� ��f3�m��_F@������ �{�T��7�_f���;t(��ŌL�.:� �� � JJ����*��/^�{N�+�z�;��u�I�kG�l��3���đ��7N�6�mV&�;V��UO�� F���3�&�w_�����ӂ��� Z���M<�L&�r3�d��56���}�n�I����e=�>�X��2r��x���qj�� ��񈑄0@Ni���i�c���|�p8��d��C�WHJJpr?$-��,��Nf��}����?�h���֒�K-�4�t�6�Q�pXb�C�"(ob�R�ױ�[��gXYϰ��1�|B}�+�;��l��#�$���ji�|4yf$,,ʪ(��z3LZ���.����$(��hU�P�CT7"��R�6�(7u���x�'��d�)gҳ2�M����8Ae�iNN �Ѧ�@!!"N�H\��(��ȭ�2�`/QU*AD�,����N&��M,�2B߷j ����KH�_fc���(Nt\:�@A���.����t�f���(��t�!33���lOAV����< ��:nî)�|/\aV���P-QY�t�''��1��4�cǩ��d[˖(�_�g���[�0P� ɋh�2ˋ����iA��������Zo�Q��~uy^Zo��J*�3��']�x�Ъ�}����WT��$�–�խ����Є" ��8�P�6��8��<�-�w����C���^�`�y}����28��0�ŋ�/�^�H(�0��/K�n�C @��i�3�!m7�m��-���\�D��7�Ĕ|���"﵋��IZT���F���j@�u�э����F�>�����3g�P�3{�́�Ku序�=w����� ��kg�N�`G\:m�f�ɉ��V�x=�^@����7�� �����ɾ ���`�|škJ�ʜp�O�-!� ��y?Ԣ�v��}�D��Ӫ� f����pi(.�.6Z3���ps�����t��4�t�*���[H[��F+��[�B�189w��-6�W�'��1�y�N^�F����O?�Jh`�n��T�t����S��z �v�����g���^�����'�E85n�]�M��.�7�(��`T~^���l}�u��I߄�nj��}~�KO�7������rl]{$�3�c�v�?��6�`�y��(s_mw;��g�D���Ҕ˫6��-[g��PϝN܊�;;�m 3�O�0c;�{����qg���I����mo�wNs�?�F����o��#��cV}��zݥ�U#���c�ݧ|m�������n���q��b�G���%�~�ׇ%�����?�{�܅Y�:���} ��ّ��L�5�|Iao.���q��#�-ɯ�K�v1�Μ���|V����������b���w���)6��"�eF��8'��4�EQ@97�tr+8 �?������C����Gm��?EQ������������������������00000000000��`����k��U"v "�t��h ���?```````````t��������������Q��������xe�M�BD�a�.��W����g��ƭ��}�8x�rХS;=GJ��7/�j���#6����%�c�VNo�7"����A�� J�M���k�]]�Z�{&�߁�Ӯ 7��{��'�� ��]4D��u�Ě~���[�Ԟ�8ϴ�@�KC�t����.]9u�g��J_K�������?/�?E�ygl�Z}&���+���bM���Cf�J�H{���V����S��FH�R�;��̀���Vl5��o���q͟ �l��ꊒ��_e{y\��RT��uc�� F�.Ť奇�ޱ����9}(�<�����L=_��-!�f������̒�¬�[�+`��!e5��넂҂����y�I�5�,�@��ҋo J)�W7Vog2+A�y�����Tjj����-?. -���?��Kd ���,:��xn��9*�~����,��fzg�Y쒬9�����@JQQX[�;� �/糌`6�k|�w��w��� �Gy��T���g)��V�m�Jg��B��ȵ=�Ǎ2�Qh-��m=��Bn��rd���jk!��Kg��*K���� �� ��E����}�5��v�ě�_~�{�qAe"�DA��ι wM� �JX.s�?3Mh�q����/G�j����w�(ix����To��>���=�W=xعSE:�~�Ϗ}{�nl�͚^� Yt:_���CQ���k����&݌�¼��(@��u�Qv}u���ޤ�&񷏖� .:"���}tA*S�M�97(w�qP)�i�*�볢k�4hw��)�4�wj(�z9+lcƇ DQa�2=KE^nH���l!���;�t���� e�b�h+M fa��7��V��77���^�O�s��7�J�MD���:7G�����G�JQ0]��Y �,���7j�.�U��Dg����̤�~G� ��٤�D���{�U*����x��5�3�w)`�9�������[��k��O.%\�o��n?�c�����2���7R�b\B�cC2ޔr�IO�N�R��h� ���h�9H��� ��:���Z���7H_^JV�U^�+ ���+]��c�Ag�=&*�=�Jk�4��m�ٿ�I�� j�Z���T��K�T��Ľl6 �Srz) ������S��%�&��:�C�̖��Ng|�H��aW��҂��S��~��� �f�$+toDpN"^F 7�A6��D<Bڣw�^��5j˟w�#Ɵ���{�����R����{�}C��8�Q{��M�U��;�z�_ ��['��DJ�92������uf��?h�~;1������z�����j�����M�����������zka=�e1��N�6]� փr���Y�A�F2ZѼ�� ���c�٦�B��¯�n?�Ʌ_I�e$< /�o� �� �zγ�u�Z&M���c�<� *�d��}>^t���ĞݵG&B���Sw�=J��, �2�m��t]@g ��"�(��b�YV=<�0��'.﷏�u6� ++�'�[q4��œ�<h��HB�6n���x���#ɪ/�~O�у4�iF8V}v���%@IΈ\��P\0?>���"k���]����H�'��j�4M ��>]O#��2��M^�ŚzMH$���})>�j�h���q���� �F�����N%򟆞�b�ۜv����'|�gɂvg�ZK7� ai)�p��%g lG�lǦƠ�j�mZ},�`�X[<�d-�3i��к���2�t�;?j�ߓЎM�A𷽖/��=w� �!1:���Z@���LBt& �wVL��2�����I��L���x�2F�����t���I���f�vj�ۊ Wj��`��s�<���4B�5�0jȣ|~_M�/c�1 ��S�n����S6sX�� ����.������|*�v�L�+�&NK��� �c�ٮ�?�\ߡH\hd�D��p��պC]��%5����\���"ɨ+���[��w 9�������[kp�DY���3����5.z���O/��{�>��r��V� �U�;��31;�τ�Wݼ4���X�㇣��o���xK��vE��! ?e��}������ A�vMB_��e� �غ�Io�PP5�5PR�fc,�~T"2BQ��eu��R2�^�}>��A�� 1��f]h�y��Ш�;�,����B�͐!J8 ��͔UTĄVRV���5M�� ���u�j cOW� CP��<+1�����MB�st����Æm�ϔ\:Δ� ��� ����+�d/�=��+D�~`��a�wv��J6� %���<���z��x�nr �u����I!e�%��DZ_B^$�uy�� \a]b-�(��4��p����Q�|I���9�c� �s�>�]�jkL���@mOA���BV�u��M��;� >����Z |s��UD��췹�$=ɰ\j`�f���b:��mxI�JUO�WX��x���5��i}��z��vK�X�M��)�B��h��vQ!�)����Z��ful|�Uw3D��Z?!:��Z}k�#"�-B��O �s���Ф)��r\������$"�(��H� r�L ����;�"��h��㾻W�SN�Kk����+�긺�3 Bz��WX�Z�RJ��m��<��쬊��~���O��!8V���/s����O��o�fӫ�O��K�ũ ��fs�&^������t|�}Ey�Ô�{[��' -�d믅A�۩������xm�$S "���0�Ct���}�:�jZ�����n�1��%����@D�檃PH$� : ���OUx�n� �����F4f�ʺ�z9#C�.���O~�(t�j#�ɦP\�RZ��AFP�]Z�O�76�f�w������4(� ���Tµ��X��;6��Y��2�d�<'�N�l /��윟bl�'��u���զkftҧhP��"��[��÷T񿀬�wPW%@�����:k;�ov�G�%g�$�g�͖s��3e��F[vi�5U8�&~���+7��y�]�_=�� � ��y��sV�ZBS���R���D���b��x�l����"����)%e6@�H �u�_�����˞�h���_�E�3�����}5�ѲB�V99ف☣���6����^`�vA�e���G�0~64MF�i�� �����pa�XGc}�q[�{���<>?7`��������E�IA����V��[W��M��N����%�ABB��jh��D"a�_ 5|�[���^�%����˙��3}�a�2lQE�J����8L@MUU���ښI9���]���bqq�לC�%/^�v��ngS(�����Zߵ�������k�_TP��J��:t��������~Yiy���]�*Pr�� �9�J�D��X)�sʚ:�Y���XU����Vw�Q�%���)d5$e�& ��H¸��4'g��'`U��( H�g��0�#j�Z����:��@�؃�6�UM���Bͪ����n�Y���Xj!Z#�j�)OЫk��mȎ�iUM9BP����R�ĥ|�l�5���AѮ�;��d�$&Fh=i�en\|�5P5�U2f6�ʲJZ� bG?� �m�d�*v=-�Tq5$�ր�3Gt!�!i�Z閗�^GՎ�?���c����{ϋ���ཧx{�~��ABNQ�������(�X��:r %-e���/c3TJJ'o��M�Qв�X�x}���0�oJ�J��u��!�{�u��2�/V�I�����_��e�{wWPSPPSPP��χ�k3���N=�{A<��F΃������z�i~�u�������)���Pbb�FNuP�$�Mr�_K@L��կ��WSRZ+h|oRRS5�9�H���.����<���1V��]�y�&�ɮ�S����(#.f�j�S�����G IDAT��K���,'��ޙ�� �|~��@��B�����$d���(*` ����@B�gB�E�|����W E&�����TTե뒀K��!�'4� UH9.:�i_Y�ɚ�“��Mvī�}�.�!-���c�C���_�0��F���R;��ӫ l�6i�L�[��!���d����s��K �%�W�?���''�i-Yvl���:�߹w͓��]�� ��:|�E�O񆓻�^��V0>6��҄:�H��s���ܘ�v��v�X��s�D7�I� �� =F�5��@j��J0�����������[��{T��tI���7g[ρ� ���~Ŧ㣊��|=x�����Y㪥@�|�t�e;ϳ��oo�̘�}v�$�<��3�(�����.�B�E�m�ŵ�D���̭gW�8ei��mY�J�����5�T�Ď�}����c�%�/l:�\tD�7�Λz,�w�Te�� L�����/�X�ϑq2��4���GE�J�ߏ���;|����U�q�ر�Y�ة_�@Z��U�X�Ɯ+V�k��B�2�O�2�Z����z�0�j������DAy}D@Y˖� % 5 "���M����`���SW�+"���7�<2�ٸEt��s��B��T����g-T���a?ٹ��ɣ�y*�����Y����̰���-�Nd��ԓ�R��~��p�+ua���_ ����0}�^�R���z�6�Ep{���=���8J�=��t�DA������O%,�eR�.��z(vEK�wO�#G�x���/[q�Z��W� �X �+�mq�P.����Ҳ����O�D"}�X�>�/�F� ����}t���l���'AI�y�b�޼�n�!����KG}Ǎ�����̶�'���c���1^~���#�C��q~H��=o!�N��"{mѹ�_��_�~���[ì1FFV��2j��}�D����7�_�˸�w���^``�[>+iܾ��R�����ә�W����@����Ѐ�Z���6��� r����� �}��h9{�9�,7��{���s���b�#���z�?x�������u%��i��������h)/n�t�����:QU�m���h]�a{-��v�� �J�Wv[~�v����Adɯ��eg �I]�݃�@l�u����#>�4�~�������i��Q�u���>��ߍg�n��a?I��o�;u������8��D�������.j�v[n�Z���ɦ9��� Zm��Twϝ� ���H�O�l����-&��I|�A�A]������!��3���×��o �t��qI��� ��S�k�(*��t\�?H��~��U�{��?���O����k<g휉7s��d��'�^�s3�3�,vI֜�^�Bx ��(���������6���Q�>�s�v�����qH_g�6º��H��z�����S��t�TS�!Cg�V�߾E�6Un��ˮN/��#̪�""�3�L���� N�Լ6�nb�f���\n͸&��c-��g��g� �=��?8���S�P�xNJ��w���M���C!����s���J�E�j�CR-� 1�ړ��nvzm�%,�LЎ��Bka{�"���t�,��GQ��g1|Ym=��g�K�(%"���B�DQU_�%���rD��D�s2���e���:zA5=�z�GJsMAq�B=s~���l�/5"YO����d �+�Rt�v��.��8�U�\�(���������W�q�L�E�D����r/�%��Z��q ���A�z�#-�R�K��{��� q>0��;�v�އ`2�oB���O��d��D`=+�_�e��x�Ao5�L0N>��6�6=:5)%E�L�������^™uh���?���F���6�V�W����U~Q4#�q>aG�������n\_��&|%�� ��$�p��>�@Q<����A�A{���k��Fm� ��")��ti3HQŎ��u�e��ZX����Y9vm3���>�d�f&AqÛ��p ���†�Ѹ�c���������h�i�й��?K(�� "=Al�� H���F]qΠ "�蠨���d��}>^t���ĞݵG&B��Sw�=J��, �2�m��t]@g�?���Ps�u& ��u�gP����X�Ł[�ƨ���7g�ZK5�m=p��ᄉ���J���5O�_l�}����m�����p���\���d�������,��_���Z��lTMW��@����-'hQ�N�K�*�9W�����>P2#(����D #qIB&H���zN^p�W\��D}�����/��u����4��d倏>���W�8A� �����ؠ�,�����b�/k���s���tz9�?P��KT2c������Br�- �����U��ѕk�Y �ۺ`����K+�Ιw����J���T��wo:��?�٪��lm����yK�]�~ �3o�y��T�c�K?�\gw�9�n����9#�8��)�w��~����7�Ist����k�`�~ �N��7B�����NzH%�� ��2� ��z���y�+�l4���DY���*�� ���\�|�����LJ��5�h��$��ݸ�`����6��RՅ�d��΄��whO+uqF�8�+ �"e ��b��@P_�[�E�!���Xr���u�H���� H�]�yYT�������r��7|��#��� T�l ����K����5a9�����'XI�x��u� Q��Ш�������٩}&����9�^��x������CQY�O��|d6� -�� Q\P%eN}]��6-<�Ph>D�3USP{�Bd�ʠ~�Y�ɝ���2�Yz�� g��̓|�v��~C9G�a�g�Q��"��ޱmÖ�[�8x%Kk���b��v���c�]W*��B�޻D��'�����J��j�urDe])FT5^WZN���@R����29(J���ʐ5�����ey"�$0��*{W/�� y�bc�"N��d��q�o�;J�g�}/������������y��rI��3�N܊��V:��|@�]�A=z��0�\)�uڱ��م���Ez�F��@Dʱ'��(���>���.�� A+�r3.���W�Do����Ȣ����^/6\���oys7�=>'O��=��/0R�$a:�E#< ��U�Ϭ�f6�[�:�:TO @d?:ɲ�]ɛ��R!@勨1^��wr�в��7|�B" �\�����s��[/#c��/�@g� � ��@�I�Ŗ@�\nIseH(l�� ���˖<�Up��"EQA�6�ĺԱ���C�{���~y�Ɣi[G) ʳ?>�}=��m��١C��)�P���r7���Z��� �N+��^�S�+�b��>�$� MO� �Ż�1�"�tC|?����o����UȞ���#8V� �Z|O<�� �Vf���rh"��&�¥�i�(4�� Q��`�a����ԔG-6��t��k�l�1��3�4r�_*����������7�� ��]s��-�{B:����_$���v�?�t D"Qa��I<� ���XIqB�e<��Z����¦U��o&�[�P�=7,���s�w>O(k�� ��qn���+7?L�Wtm��7�vLc4#2=E"�v$������I5|� ;}3�}w�X.*t�̦���ԯ����#�v�J��g�!i�:���I�~�aiE'��:�lIY�sh��Y��^?��"Dij�wSRQ�|ld�w� �7�T��-���y>���OD���P��@$��Q_K��� ���3���Bn��l�ɉ(a2ٚ���@�v̉��#8���@�$A��E�K�Ʈ6}�Ү�F�h��#8*lw"7��m/��.��׃��e_��S#E�8\S��p�޲��������¥3ey!�����7��� ��w�;�lA T<=��������%A�8�@���F�'�u5H=�y�*���g�������c�Q�]Z�W���R��xyY)������*9�vKھ����HI�Y�" e�Өt=cHO��)g�()�֮W�w� �����ڴB f2l���&��S�i�5+!+ϥ��k))S;infm~��+�����Lx8�B�7uv�Ό|N_6�N8�~r�"������n%^]f\j�O��6's���u ^�}��w쒴�C�� ������lB�|�� ���Wy1�����4���WS��������IGG�8�T�j (�����sc�I�щ9L���h8̞<�HI��R��\\�7�ޚyK��[:g����9��x=*eH�}�Y(H��Ǝ�t�q�1J �]z�R�@pR��v:%E� a���:�������� Y�b�?���Ț��2!�����ͭ�����gA"4�F/��jj=��T�x��T��5����1 dm���8���mwAQ�SY"adG�"�d-t����ҏQ�%)�(d�%ɸv\�`�_�����Cl�QSY�ji�+���g�(��I����������F-��&t�f��RV�% xk;3^aA�w��%E��f��$$�.Z1�X썫(*T��m K�P��1��z#f[g^:x� 2l�C����g����j�� uy#mNM�Ȍ��1JF��W�W뎯K7��@ �)(qx���q4B��4];< ��`�ɩ��+(X�oi쾥�~7�Ȝ}�J�F����Gsc�Z��n���dik'2 �h�n��e7��<��e���Ɋįib``tJj�F?'c�|~��������N� �db{��W��L�>HSJ��n?���q� JJ��Ҷ���띧�����s8.�������Q������|��6�E�\�͇+D�B����#D�|����' E&���l�뒀K��!�'H�s;�Q���uW����p�adD���Ɏx�����=5���z{,p����� ����!V�Tj�@tr��l�h��Q2��,���g%��Z;����~��w?�&*x�����n�W$r��/\~U#6�����X��&%���� ���o�s;4�ĩ�}p9Vl��__#d60,jJ�֣ H�U����c ���=ϯ�+�I�����q�*z�Yj�ت-'�R��4���D�MyJ��?�V��L��� �F…��vW?r�J¬ 'lUó�e'Ԉt����S�Hvs����0����v�WV��ܫ�~NP�W�w��t���Qw��vZY"l�Y;\��E7��}XѲ��㓛6&*�p?c��~ʒ����'�d��l�D�M�� �����g� �]���r�����ڵ.nnF� jr_���� *�g����+�CϹ1`���b/&����M{uM�e�e_�ձ)� ��@�v���Pg�1�����_���[+"�8��ʬ��������Ԇ�(�Yd՛ �zv~h~L�������s]6�·l�+b:'Z����Ɨ0�f��L}�]DAe]dPi˖� e�Z�[��M��Ђ7n��w=�K����]��'��N*�i2��D��Lã���}��Aj(����\1��HO�E�ڢu{���=f�������dͩ��S���ԋ>�_�O�H�R�VD]��3[�̈�R�mL̗²G"z�_�,��� P�G�V�'P�����A˶����٢"(� ^�yKl������ޑ�oC��}�_�����#�w�A����c�+��R�?�?��/!�t;�?}�O ���5��CV^��4 ~*�"v,�R��ַ����HUU��(�/E�K������;��!�������x���_� ƿ���o���A��`�v��Vv��?�?�O�)�&���(ʤ>��j�0000000~X��a�>������O�S5�gwƟ��^```````�~�E���������^�,:�H�;�w�e�9Ə������������(X����a?cɒ��u� $�?6?������Z}����.ټ��wׁ� ]�ˋ�DTz��ݱ�豽>��.m"�S�5����{b��G��o�� ���� ��9�`��D��ф���r��S�.@�5g���$��]t�v�@T������ 㴻Ǻ�vM������eY,=`���N����~/H&�<��.��<Zb'۹нf��4�l��>����: C8���+J����(;l�,�I}�غ��4�^W?���eG����Np�����3����Г�->eBÅ���'+4w��T�T�VUR)������ԅh�?��*^7>L֛h�g�~5i���Ѣ� �A�[O��y��t�vC�Zw�CbA5/���5�ʝr�;���y/:���� �ݽ}.�j�z�i�O�Խ}�l�q*,)����(;�ёI�Dѡ��M�� ^A{������q�+oT�-*�x}uu�ξ�n=���MIMW-i:u�cA(��DxwlCx����U#������pk]s���8^���֡v���1qsn� IDAT�@ �M0����1o��ꔻW�Y ���F��4$jE� �m�AOS\9��5a#�1m��뙒!��3���C�����z�7-���j8���ƥy.6HX�N��Y�]����[����t�)i|�����)�|*����Kd �?�\j�����&� �s��ڨ����!�az�J��|�Ʀw˞�^���c�̵��4��Ǖ��}�1���;V�4�k}�o���` Qu�火<\����c=�I�'P~��@��%}�4h��=|Qz{'�x��|���Tj��[ΔG��{����� ���d ;���0�q�\��|vge�Xua��egK(vf.������~�Õ\<]��z�����I}|xK� ���2ۮ�� �� ��l|��|lʟ���q�׭��� Xl>��䉍 QUt��m�O�1X�ŰQDY��U�\�(�������K�ޜ�<��rUO"���ɻ���JvڭǼT��k,ϧ��}�FA�iwW;Y`����3��Y��:�7�ʭ��6?�G%�oN�j��H;}y�$���kѕB����Y�z��k��?�bB��G�T��u)���u���i�|��M���� o4&���g��>6��i�<�@��m�M�,�l�L��X91���E�l��c �h;�W�z'�ў���p�)��eI2�J�$t`��[�Аq���eB��7�C���Uo_�*��t�j_@0�vP�~�^jDKz1��r���4%ӊ�?�񟊬�5;���`ĕ��66�**k�B�!�;�E^W�H=���ՎڐP�>lKЁ�=5�E��Y��U%�h܁c��g�I�N��s�꛹�O'�9���ቚ�/v��;������m��2����ի��h�$�:��&RȒa�hvAi�O�Qg����v~���:������no4 �hG���1�����!�ol:?�r{B2��7"8�� /������y��В}��x�%�� {v���N�M�a�(��0�ʰ�IJ�uI�˵B������ahs P�q���n��*�J����g��l. zc��{O��-� �y�N�n���ݗ�ݎ���U��x�v��h���S��:��D�;�޹[7 x'��1~<򬤋��YO�J��f�Z#5���Ѫ���vmYY-Gd�haԭ[�����@M��`i�E�p'����j����2�=6���W/�|T��ڽ��>@g��h��t�`b��4@U����l/c`��**��Ӭ ;}�a�&��;|6X��ߌ�%������O=�)1�l��ds)�[L�W�� ژx�>�r��.�H�]/��ѶǗ>�����r���#�GO��*�h���bs��q��aR@��V$܉�������o�T�ɓ��n�Z�u�� �ic{J�T�ɓu��m_�sߝ�>n#L��B��i���//D���T@�Oo|��}�4& ��@^��u�'�Է�������:w��'?���&���K���*�>*)�J�G��K?�����m�-�~���F�pp�|qd��$ՉNV�ß��<��R!�!��X��mz2��y���$#5��� ���f�~k�-f��K�T KȢ\_����j<:�(� N����̮�kz_�/<-��a�����}�M��s=��������t46��������r���g.��p�`�%�-��)�S���G���>���i�B_��e� �غ�Iou�U�l ����K��������5.z����O�T�Ԇ�RN�u��]MJJJ4�� ����t��ܳ�U}�m����*��'�x(4�֙�)(�=]!2 AeP?���N7�SS2FL7�&#= H�v_�2^6|���������Һ7��W�TL�ۙ�E>6�Id9Mk3Mfgu�j�k�$�^��?�|�H9.8�o���s��9q�2=��h%^ڿ�ء��g5;|BR���~�3�BVA�ӋUU�Ե������>���(�&�R�\������8<vrhux��R����ٲ��zÍ�ܮ�/M�P�֮K���q� 껫�JP�ѩK��2xܚ�, -9anV��ᔦ��s8\���UD<�.e�ܢ�|TE]�+���L��%�ҭ̿���7D���-��M�W;L�UUlA@��@�Y^��~Da��S���SRn�a�O �CזW�6�mz"��L�����^�t���C�g���ߟq�]i����I�D�(@x �.2Jd���#�mj�i���n� �6��?���^��C���:u�V���ũ�;���rz�K�zm��Ќ���ﹺzj`leU�4$�^�+��Z��V���˞݊����23������%3���[} ��u �i��}���|E�$E��xD-�~}Ly\�$���������c�&n�7g�� ��q������$z����,6G�Wf�z��Bgzl) [8d��ޱo�6� ��z�C͛���_�� �n}��`h�Mj����zbSPf�㋗/��i�3Q{g����,=p($@_�i� Io�*��I/�Э��w�.�Ӟb|W��os���P�ފ3�s��J�O�Ι?g��9�=�U����k��zo��3��s�B�7�An&b��D�c]V>..H<3^n\�ݹ��%on\��]���.X��?��{�^� >b�4If}��ޟ�-T��u^���%Sd�� ��� *Si�B@���@��;��E��)�8| 9�|���� /4=�������I(��V���[E�_Kd+��zqg�d`���Q�љ�z1���U�:�To�Z��lV-%�ZK9��#�Δx!DY����"ҳ"��4_��e��g�Ơ�ZnS���H/RW�s|������-募}� ,w���OQ���w����:� �2v ��̶ �8yx��#�H��|����6��}>��5j�/ �0�D2�+ D�E�-������ ���mW����3��ͦW���Po_�����Yw�����q�ũ �� &S�_D�����-OH��Y�W�a�~;M���}�P�֨c�n������exW��̬fw���FB,@����R�H�|X[h��"�� ��\�{H F��{��M6�3ߏ �B����ݳg�=Wf��s-�QU����/�z�û����z�3�F��N<�9\t��,�R� E3�v*u|&�\��I�A���F����~yUZQD����쿘TA���ݨ� �aW3નӂ��s�:�����I�3�S�V�>�@e�3 x���07�)H|�RBRx�~���^�-��R���m�`%��b���/D���M�L�;�Dez��wo6���x����B���>��Ob�L���P���2eFpEijB�P�,%�~�{���ml��d&&���ɘA�8L>���8]u�f&&w�c�`���}|�r�2-�{9 ]�u�_��=�w�����m��φ��چ�چ�چN߆U���]�yp���Ȏ!�G���M<�v�m���FlM�a �P�^IP8����l_m P�mpO第l5I��{�i���� gw��t�\L�r@/ϲ����Mh44�Α��Etz�6�ё�ӱoo�.3�^��g� ��p������]ء�R�����������O�:��5�P((дͬ���ת�p:�^d������x��� /^8#Ф�v�����"����k�|��ہ����#/_S ���]�g��EB6C�����̛�q�""� !6V��������+0�2*��ͷ^GU���G�c����|�xVV^������yqѫ���K!�����B�����g��ф���"��^�y2�*I�p�ʁrE�\���36R1�$�ZN��Vh6�vn_ ίz�_vnS+1�a΋�����s� �W�/�����|�����h1 a��_��K��gB�'�[�E �&]9VQ+��2��,������Ԧ2�� Av�����e��*�no\~�X]���?���T�j=JU���K�Pvb�_C\�]��sƟ�3W�ks��r&UqY�j�P���5��ͬ�O���x���q��<���i����V�{,f�"*K{�������+8�`������SJ�O-Zr��]�^���3��E��#d�%�aG��R�uk3h4Hn�o��� ���7�..�����s1H�o�6����.�&�m8h���o���H�d���K�N>��u� ����{j���g��~DG����[���̌��Q��/��G��c������_wey�� ?��Y��,xt5���*yp+��*��_��q����~�#+M=�Ӻ5��G�,p���!3��_ݼ~�Ֆlp��ڈ���g?���vd��#-�`!�/��Q�/v�_,��'����!�36�7 �����ɟ>���������PL|�5���g���t�`a�F���w��ʗ��"��1�9q��3�'��� �B��o�ϛ�J� Dy����~ �'�PI��UI�m�gO��ﷵ� $�?��渣�m I�N�Ǒ����������|���$$$$�b~��!!!!!!����$$$$$$$$$$$ͅ�?�����������4�w���0-̙ҽ���'Sk%,�~�v��Tr���@�"!��o��@g#&^U��ΕS�E�G> F�W��}�&. ��c�8�e�܈��BS+[uq�^?Xv'F����_������p)Ui9r������)�E���f ��s�����>��ma���r�)��y��`�Z��Qw�I����ݲf��A�\<�ҹ��y�V��u �0B")�Ƚ~[(U�ii1{�AΡ�[)Pu���c݌;���9$@�0��Ú��VD_�zQ��.j�f[�����ϥ��t��I���\r0^@��q��}L���[�W,�+����n���_�����p��|ft�=5d��F(�$�ܱڪ8���"7����o�[��U�䣡��݀qÂ�(y� B���Z���"���S{dm��O4_� �W3�����P��3� H:���(b����t~}\��t&�^ç�L��������{�3F��S7�vڇo|��������X���hI�kw�8lkBDi���� ~�=�Y��L4<�� o&���Q]���L���*5�ҁ)U�������doS�q⌈�h5b�i���R�N��k�FS7�h|y�Wp ����_&_���b���MN���E���|ȷ#�N :������ӂV� �SG���wIk����7�%uSapжړ7�g��h}a���LF�oNZ�='���$ -�?T���t?��q��Y���ӽ���YB @lXt�8�����jsY�ϋ��)�|}]!�!(�(��� ��26��>�,�1��f���[N��D!E��V6����iן�qDG��H 3 .������D[�� Gs"�)��X�WB3*��\Ί�U����:����d�j h���>���(����OKqT�u�ؾޖ,���������:|SG�y�s_͘�� [&���#�.����1�P��\��-Q�!h�p�E�r�h�흇��\7Px"�hh���8�����Jq5�5�5��~�O���#!�~"vb��[u�4���U\������I<��6rLo/ **~q����� �.����Ԅ� ]��N�.퍍R���({Y��>������]�o���lP��q�D�$�(����j�Hd�� U VE���ll4�\�� ER����v�y����m�f�aa����8� ����Y�V��ǂ�8@����A�5A`T*�a�@1��?+d� S{���?���������� ɻ� dU$�hh��I~\lRI㺪���r˾�F�M-��!����BD��X�Z$Ġ�ל��3�u�+rS'' �vp0b��:����E�9p��lf��4�� +��ƘS7��c��0�A�F��G���x ���9 �5�����S���cL�Z�M_&��������z� ���r"�tXw >Æ�e�۴��mW�'�!��/�F�Y����� /����V�!���m�-y�I=,�F��y����֭ݴ�N)���C�k��a@���[��I��� S�:��@���a���еsb�&��V�a���������:�L�ﰡ�9�������4�Q�;0ԥ��;|�eօMk6�z�Yqm�k2�P�{�,�/�,}��� X���O�~��Y����V*�O��W> �v��¥��\��͒��Z����E����e�4�*r�VZ +ivF;��[�� �*�o�����JHek��f���۔��]WWc� ������/>������8*@����z����@H��3G��N��H>4:zzaEm�GXQ���OVE����ؿ�J�*�J����%]CY��Ш-Pt�=;��{�V==�� �ӱo�����j�Z�v�\ެ)+6�⊬�L.Л2K�x��L )�4� Y��*� �W0�L��LCSY��*��L,���2 LdٷD2d�ܼQ��,(�BV}�X�zʣ���_}�X P�����虙 ���U���ҩ=M9�@d���d.Ғ�J�� ����L+_^+� ��O��͂y"���\�1� �ae�|( ���@ P��������H��o"IL��h�=�p��M�$ALC��@x��᧒k4�LM�IW��r�����KT�]�on&L��'R��֍�J�f�ow�o`M���U��!���� a2ۉ IDAT �M��LI�R=�u���D����(�f`�w��GJR4��8�J/1�d� 36�3ƴdg^�R�& ��T,�W�.�x,7�j�Ĵ JQ8F3����@�b�^)��lS��c�M>��s�_J0Ef׎��=�bu������>�waa� L�I��~]�a��[E��x�G� � ȪH����p�B���$�КFL!W�D ���:�#=?r=5_����7x~���*&�,2dS�E:���]�w�m�0������J�J�A�za=(�1<'{:*�ʤ%ū���� ����n�� ( �� �8�Q��'�a�]g,�F��s�=ޯGD�J,F�j�T"�9W?��U�DM�-2^��)���l�tM'���,@�$���AK{i)˳c�޼S� Ô�ں$-LJ�KћiGQ�^�d�K��߰}-�� T��! $i�s�_�\`lh������BH*�R���@����8�D%����X�e��(K�L7���(��W2��DTʽ�+��Ju隯�vh��-�`��#{���Vl� � ���������ϙԇ~p��b>ৃ��X�Ǫ+ ��O,����'�P�䓃 ���ܪ8bh�6�������Wn�vque��bH@SKK(�DHu �,���XD�y��v��::�����m�����ߟ3|��B`s8u3�� ��RׂAP��"����� �?�&B������o��q�.oQŕj[�8�s��}��&��i� wJٶ��� ݪ6�a��e*I�O��5p*R�N�V����������S{"OaLC�.����ca�d"t6 WI�*��HX�Ee���r�U��������k�O���(�Om��é1�^��`^��'�P�h֐�O.�W'K��6����U�T@ T�����2�v�ly&7���E��`��7�p���# [_|�h���B:������tت��w�y8; j~Ҝޛ��� ������x ����&��%�"�GDk����D�N=�8t��gg_�e|QK�,���6R������������ٲ����_ T�nCGt�bSi�n�|4�� Zd����f��bRP���^].i�n���`3���Z�_i�90(#��M����`ξ΅Q ok p���\��X�������P��EE���zT����ݬ(j"�0 ��IAQE�5j��x����� �7܃�J�OLT8��s(LyY��b�m̀;}EY]!��mpp����|�4���w�wc;�ԥ�_^���a��xws�7��7P�@D�� �h eY8�T���� ���RM�� \�i հ4p0�*.���8�t �Ѝ�lM��%j4k�+��K{QҞ�x'*3�5ܻq4蘖����(��C��ݠa6��Qߦ�nh��ʊ�^s�J"�t�:�C��a�k���q���]���Q���B*��d�z�$$���Ng��04L�Ni�$���$-n;��~�?&n��gG�w:�Ņsf��\�Q���=�0�Y��4ﹿ{�G{���q*#<�n9v��nt77�����y;�׳MF�O ��� g2��/oٍq��Y}�(�ϴN3�d����T&�y�U��C�%4��.��: $~~�ո1�륁 �;����+y~����k�Y���r�b�Q oFč�Y2��MA�K�ٷ����� �W���ؒ|n�2/JL��ە�ju�V^���LT�JxeM2/[���gM��<�ƥ����"C�xN��*����'I]�7�v���}��3ҿf���r_�>K��,?�V�Qn 4QE�(�\v��)�_�.2�ӋZ�G��㠊 Q��� �zv���`�9�0B$� ͉��*M���?���2�j��H�+i8Wu��~KVq�HPM�Jo�l7�wV0�^pn��̋y��q��o�}eA�ɹ����v�;����!����,�Y�NV�|�tݖy~�.D���ğ|��e��]��~�������-�$�*�|< ����cw�>ݎ֐|Z0}���=a����z3"��� �?���5�u� -h����_�_$oE_O�m"*�V�]��P��"�\$3#��hѴ�֊��c$� h�����%�吼3L���/��|������I�A���c/�� ��;'��E�a��3�]$$$$$$$� d������-��"$�ޑ�.�63���}������������O������������C@�?����|��muT���!!!�@��� �/ r�������������������N��i߹�֎��PM:���`��嫖O�ш�^4,zM�����W��Ʉ�D�t �I_}�f������iBS��e>:*����1�G�$��Üo��00���tt}��o�xO����1L�ӿ`��6�4�fn2`�Ϝ�;Θ��ف�� H���u���k?�l���r��:�!T���F���̖�`��3T�-j�~�<���8u���1�&���|tݖyo����-�[�-[v �s�����E�Y��fx0����EܚO�����G"��^���O�뜤��t�����ܢ���㫂�j����/<��_��q����C������G)y����b7&�2��sOR rrC�Lu}�:����rhL�����R���,'3���f-5���t|Gw���5<���;�''��a\԰��Y�}S�GT�Ԥ��Tz���t�>��u��q��P���ipg,����T��3'fm�����$�H��t�I���lRI�z�b�,��6+L�V��l�E'��R�-���(�=#�ݏ���?���3�eCF%j�e���3�>J.Cl�퐲|��4Q�~�Ve�g.����CF���-#� I�c4uӏƗ�z�`� �^�e����� ec��-���l��t�4�ӬQ#W\p/ r6�l$̿���1o�{��,�6q�k�G�p_��'!L��iX����Fy������o��Ns�VY��}�`ǃ9,�U�N����[J�M���\�cN�߯}��c��q�3wos�9)pr��إ-�� �[y�~ZRX���&q�_жL�A�_o�[z���'͵���������iE��]LꅚFNlL�XP��UᣫP�R��ե����J)T�?{�k�����b��HYʣ�X� YNf����T��n�X�<�v��X1a`>q��6��B��;>���n�`K{S QQ���<[� \f]}�H���5[�s;�� ��k!:�^���� �t11ؓ#J�q�T4��!�N `@�������@���O�����9�;N>+Ǜ�aץ���L�й&�Cy��8 ���L�G\�v7��qD�)������"~~Z~Q�D����B![SS]������R�4̭L%�E��T �ُ�~&���~?SK�,������Eϒvm�ص!>��c?[���D��#saV;VLg$�`ԡ�<�~fH˲��ܼ�I/ ��v��ߝ!�&:;�����V�=Q�ڕ�>�����|(E�g�%a�>پ��wJ�O��^��굇���50�$���M�Y�=��u]D������`��N�R H2Ja�iHEe"u��~�|D��oڴc��r���'bj�S��Zh .�K7��{C�9�Mb>��3:�Z�;u�[o_�F&��UjYp�V���O��,{Y�SތA&�Eȫ��c��dUB��FJB�f37-U���0rC�E_M���w�E,�`��[����|j�;|��[�w�t�e����sk]=wo;fSE��6�bD��՘ǭ uXq7=7'�eԵ=�=5���~��@��fB*��92�`�p���f�/ȓx�ꥋ��{�p�����˿��@�z=��/�tM̠�H���_� MLMՄ���/VԞ�+x����l�X�h��=�R��P�{vsI}�²l��[)�6��]<����_}�n�? ��ĕ��ڂ�ĹJ ��T� �1���(JB��n�i꽢<�_H�k�T�M��F���Ub@��b�ρ�J�|TƓ�K�t������U���!�����f׎&���u;�H ��SX�*�3L]c�ʔ�"9@JJ�� �+�}?�T P�����h��g �R���9�U�v�@��K��ia�Q5��o�&���!�9���ҫ�r �˙ _��`l,MϠ�(׌��H�21_/=��"\f�y�ݡ���1����$*�(�ɇ? ���4mc#-$��}�n��<=�o�-�Ax1���%�!���˫��H� %9�A+0e����nU����~�[��6a���Υ�~u(b~ �ۉ�v��ב-3n��;��ž�Γv���`ä�ԿH���Ζ�ώ�/P ����:W���S9I�N.��S9�ɐ��TS�n��:� ��n�(�Ԅ�9�Hڶ @��?���F�uUx���ш�=�'�l�������2�As�vFa����B!GQT���Ɨ T�P?���3��0���ȉC�/Ľ�n�� ��& �bj4������$�@�;xHb4�G� 2Śr�Q���Vx�01 V���J�ތ�i��h�1ɻb��~�1ȑ�4�C/��tج}�Ҋ�K�s��K� �� ����i%���b�� �q��' ̰= �p(p% ���;���M?�ߙ�/�>H�$$-�Ws�Y�P��l�3o����o���\�v~ۺugSe@�R�� -*K�E*��P}C ���L~[욽~ =�7�Ȟ��~�[\㻖� ��5���s��O�����~�s`����$l�?�|���Ԋ�� <����KYt�H̞}yI�jPqx�����ؿ��CO�J� �����ڳ�2���8uUIx|��q�9~�B�ހ�_:m�D���yf���-o�, h�Fվ�_���gC�S��<�@u�ek�.6akjVVT��d�{[p����*;�/ �AQ��� �ƍW���Ty9��0 \}=�uuD1[77~b_�(��ʖ�g��|���T�(���q��>�w4��a��aR� �Z�Rݘ��� ���w����_�n�qI��*��{�31��I P_O xi���t���Ţk�v0�Щ{�T�E(�U��829�GBR�@ `�k�ѳ�,>�P�ߢ!]��������i� W(2v����������~��P(�X�_��/L�1xܨ@�&�/1�͛Y�:h��W�:cv�^�U���M�3x�����[�5���쀟����M�#�����w5��� C� ��>|Bgc ��Ї�}���� 1c��9��&&�j���xtM�ڽ��:ou������:x5{'Lh������6k�_��C�nl:]��� MMR�~���;���Bӵ�7�x-5 ��RQa��)Deu�w� �B�D���ch� ��-]� ʶ�5UVsk5)Z�4 A4�uM�.'y �N�'0m�K��=1o��ؗ�󌮭�����d#/)jq~� L�@ȴ�������Q���p�M4(T-G'k�������3�P���h#+.$��Mp��@kwS @�Ѷ0�T��`��֤�(���M �թ&hVN64 �j��V��?��gGS��Ӻ�E��.x����zu� aV��kg� �r1q@���g⒐|�dFFj�E�ΰ="0?:J�8����n��T9���������hܭ���2k���~t��ʴ �id�4t��}�,r�����ݗ��jj�Om]]YQ�k�\�f� z�0i #�)��b������;�*EQ�T*��U�� p�B��� �*�?�BI���P*>a ʝ�u���_u�g���c��Q��q��_f�jc��l�{:gee��]w����[�v؂1��W�)yz�Y��;kh,��%�ҍ�a�zy���lD��/9 �z�o�i�o�D��pAh��~v�׉?�۩DU���^1�o�7l7�ѩ�BBM�Sn�p=q~7&"q3^+S����Lq꣊N}�gja �0�\f}�K�2���݀�F�D��`JR�"�f���I]�DEe⅌�Nf��m�L���$G��!*-�V����Wc�4;o��ث� ��cd�0�-�������lx����o�Aq��Ï���� K||�u��%�i��}g� $1�nZ���:��̲�UO��H�sBE ��� o W܋{SXx5�M�OD�l��-[�����9QN�љK�T�� ��=�X��=�}��d]�n���['�3�l�����[����e�[�?XfN)�>�h��h��@t�:x�Ƴ��\p[]���U�d�Y�CxˬG Va,^0v���-ς�N�2kѡ� �HZ�k�r痿�Jnb��G���o�T�٠��}�� ��O�oGj�o� {N��qw������Ԫ�v,*��x�T�� ��$ ��F �q�҃�5����y���Z�/����t�2O}v�;&L��D���-h�w�J%A��T�NBBBBBB��C�TR�h�ʓ9Hފ8����O ��˿j� �d*R.�M���V��������䦕$$$$$$$$$$$ͅ !!!� �����v�%�����#�� Is!�$$$$$$$$$$$ͥm��i�-���g���}����W�]:�Po} ���}ʼ��|3o���㺙��2��:O��t��� ��5lz��v��Ğ��㡶�Я�z;�㼯b���}� �֭M��4�hlgU:ڞS���Joy�-C���E�΋PoR�y��9}Ŋ9_�d���>����<=��:�~�qp����"��#t��VI/O�� �F�ۤ$���Z�!�5�6F��v2��`8���F� �Z=P� G����DT끃�K攷�r電u���-cR�� IDAT$yl&�ھ�=�Ys�I��9pKjC����Fy������o��Ns�V���t��mn7'NN�]��e��A{kN�ͻ�Ӓ��F��&�� ږI5���}K/_Y��]�׀���%Gǻ^��|g��=tVl������Й���8G�O���f��::8����g�v�b�j(�*x��v 2k�-܏F:[4V��G� �l�j��>Fz���j(��\����b�HX�}.�?�^��0��Uʠ9΍����.Q��wk�*M�D���{!DS�s?+;c*^Q'#�PLo�����F]]Ҍ���ʫl�g�J”�X���]4��E���wwը �W^�o�t�oS}�H���[^�$�΋j�ic�+�Ȑ�’'�s �՛��ץ����&�ɈΓ�6�CI���殑x��0q�~�+��~���%]�������א`]��<7�QxxF���3|�I�e�[W-I�Ó�S������=]9�{�����[4—���eמLm�oQ`��X��nI����1<\��5��q�����i���=�"+@�ǜ���nK������Cǚ�jRWo�$�a��h����ŘI �n�}�+Vg7#"/Q �A��[�l�x˙]o�����W��i�FO��Ԙ�����jИT�� - ;v.^OE��z}�!�����J��۳�I��3 ۿK�P8&F�����@a���@�D$��ֆJ�GX"ig#[���U�ǵv�6lZS�ƾ:yoE� �0����~NyY����b:��/���[��oG� �@-n�k��z���/_�3Bj��;t����U�f��9��*}� 7���q=�����-�Z���(bωu�r���p5L�&�sP�g�GD������ʢB�S{�����k�ew��N�`|�����RT^Xs�4���܎�6��T�HF�b8�A���B�a��0�g�9{�7j��K"3PwG���RID2���ɠ��H�$��ӹ����A,���ը�0���s4`�{�=��o�Ѻ�6m(�]{D�>�ϼ�0���Z��. ��c"sk�F]�JYF4W���`a����8� ����Y�V*� ��ǂ�8@����A@s�H �&����2���-(~p�ZlM��g���P���i�)˗�\1�.���9��T����s�Y�p� w�֗������(:៭O���B�^��Ei��~~!B�>Ь��R̵(щ����ۘ�� &������h��D�Ɔ P�d���&$U����w:��Y�fsK ����]{do\��0�#�)������O�P�8��X�I/N�XjbS���}��Q��y���"Mk���:�œya��{ev�&��0�=}�^^8��J�ao[�n��k���Q������E?��� �^��&���pCÎ�y"C���- �I�3���hZ�0�� ʞ�ۼkߣ����7�ڸ����^~�i�N�Z`����{� �����_����C�j�av�(�:�ӣ�g>�6Nh0�Ҹ�ޟ�����2E��,���u.h6}G��x�p�aNq��f���}q��KT�x�y����Ay/���8���y�̌�E q �� ����(����^���2�X��R͗��f��衁�8B�CN�&xmۑ��(�z?�Τ����E�p�ߤRe�0ݠ�S;qp~�˧O��7�XV>?�d���\��̥��j����0jֆY����bi��l 2�l�74���1�^��x}�X�I�W6�@zN�F�EN�&51ѬL�P4;va�^I�x����s��',�.�V޸YP/�Ѱ8>pi��v[X�Qj��P @RbER�9E������_P���/Udl�����=#�J��s2l��,QN]���N&ׇ2bh�VII �/=h���_�W�����̋�.9x�������J��=��΄�2:���5.<>��8t��U!SW�/���e" Ӂ�<�bt`����{[��&�t��+��/y�?U�'�|�O��9��X�UW6�X>m��� I^���Ѓ}���98��[���kAʇ����)�w��3��<�p�S��2z^��[�YYj�i53Z����4;���@���]uw�� �N0�Bxm�' FK�D� �d��x�S��WJ�Ͻ����0�a'_��cr���mB��y�LB�Z��x�)�A�������|OZ��Wi�'^;�]��{���y��/�x#�F��Rٌ��� ;M4���Dì ��h����q�Uڛ*M���-?�� p 7;���� $��F4;�[=ms�=�S��c�9F�g��S�����>���ȺM���� k&� QH?������K�L ���~�֎ly^y��D(�E�M�#���~���M����� E���=�H����=D��刡e�]��C�e�慎��eI,����h�ؿ^4p������xp�I1�\8�DU1 xtM����07�)x�lQBRx�~���^�-��*�V�U�W�l��@��}uYU��3x��i)K����}盇���'���A��:hښ0�͛Y��~�7_���d>���5�h�ji\F�ƫ� �-����8�f�Ң�� SYU���bni��� �� tGnY9��(����W�I�j�x�i��4��Z(���s�: & ^9�ԆA���f���D��Q���8Y��,�&�����$���AAY6z&x5��^(����MibZ�++*4m�Yl=נ��^��@/Km���D�F�Fs������l;;+EyI�sIu�:�l ���l-�eŵ����q�.���ٙ �U� s+ ����R{�J��v.�L E���疪k!:������@h:���~S�ff��$��֧�l}��֧G� I����<��RXl ���4Ƞ1N�0t��Q0�ibd�_UV��h9u`�)(���^KX\�ąQg���͈����з�݀ �:�0'C��O�I�4M�^��k�>2����c0\f�>�؏�N�8w�ɽ�/mռ=�IZ �������y�F�o�\��� =M�4��ߔ�n1����:w��:�3XV�1y�(NMp����u�������a���]".�x�[Ӱ�˳,'�-�|��i��o]��������.x�Ψ @QT!�Je2P��'p�\����R&S�}�5�F�� p�T��#� �J�>R5B��u�D��J�X&i��( �R�'p�R������m]]YQ��:�zM�D<��2u��.Süל16�O�+�ke�j�cMn����Ј�-}��E��������BJq�դ��F-@����b*�2�����yݙDeq���IM���y��}gcRa����BE��,�~��PP�4�yFsV�5�S������ ���r���42N7p�g�0�V�7�a��©�J�&e�w�O�+���� [dQ�C�r�-M�հD/��8 ����"գT���z �������hb���0y�ay=z��Z��F^����_���'��ݣ~"a�&h��C�r~�����w,J�fu�(�~����,��Ǿ#�zR�w_�U=�S�p�ـ��;1paq��;jg��2޵2rjd"A����M������ �q���+�� î\Z�>g伨{:��xMf��ʪ�;�ɕ M�����ql*^U�������S�}����^�q�� �������[%Se%⺧�2�^�^�Qsi����w|TU���{�g�I&��{'!�4��IQA�OXQl�v��uEQ��(J�Ez(I����d�L�����2 ����3��r�}o�;�Vi���ۻy���|���ͻ���SUMg6�/�[�k��en��4�v������G���APl[�� tU�׋����=5�9��36}~�Ε���q�Oh���7b����i[u��_�X�ꨗ��5/z�wS拞Ԏ�]�=�k�۵ ��(z+j��f�x'��Ҡ������9��r��OZ��Ț�מ��Tw����Ըco�jў߷<G\��ge��߿ga>���X��>}�p��_���(w���ك�/�Z&z6��`a���³�Z�0�����������dh�ṷ�?�_�[�fA��g^��w�����%O2�d^;�bݚ7F �����lP�W�k�p��v�� �>p �\�9�k~;^9>,�[Q!c%d΋Q-��T�(���d]�|��ou7��ɽ= [��H�/)��B�g�-NG�w׵��{gĸ��V�rL��;�&#h�s�}4��'O����T��cn�+K�����e$��#�ȝ���@ ĭ���FW���'F��_��W��i�g>ZnE���u�~�;v��@ q�C��!�@ � @ � 9�6wF �� @ �@ ���@ �5�g�}4� M A �1lF��5r�/;�I!*�t�b����i��1�̯N 8Zs�~����_�jp�xr~�w�o}��g��5qV�$6!��*��ĸA ���l��^�Vz��e��mrܧ�Gu/�ݴ��c�|���K�p�S�+*�vt@?(�����>�t\�i-��.V�tW���s� �/������~ ᄮX����R�N����S�c bl��Y����U��+'���q���Ap�x2A�������uzҝ�̞6śK�we8�/������H� z���2}��'�Jj4-9 �Ej3�m�_F��'t����3���ec����5%�ӝG%�A~ݥ2���Ꞛ��f��������Ft�!ӽ}��^ۚ_w�Dev�]q���ȕKM$Pg<̺�w�p�T3�;y��;��KK��U�����M|,2�Z��y�u�a_�~꛿�����5'z$�i�}����n��3_<�ҷE*��/��N��~���NH�N��5��?�/|/q�g��Fa� ^<���б������K�\�]'�,}�� Pɽ������2K������@�垰�/[ �2��M�z8���,���w^��R�;�>��3�oܜ���!r�_�6@T�A��/�?6�6w�|��A�Q{����7{��5F�?�N�M)=�}���:�{��~w���F�J��M�>��AW��˲h50=�Or~� 1�7����m�r;I�!�'%�*�����va��.�X:/O�Գ8t�^�Cg)գ>ٙ6ӟ[_~ਆ�:�- �$��G{T7$�[��2����):�������d����͗Nk���[��I���¬���rF��?�4��r�#�6�9Z� vuَ\-�w��oHmY����W](:Ri����=��'���g�N �A)>��ҽ�Z��}�2����J 3,͋RV��\Gu��G�c��d���eW��=�Ý�����WSQ $��e M ���'GԂ�ip��OI��Sj����9^���V���,,�Z�z��{��M��`^i�'d-���܊5�O�������\��|������=[�:��{�����t��x�qF��Y.�}g7g�/�Ȏ����dySZ+j�\3�-���ƍ5�_����0�O&����������X֗��ɺ��'����rث5�������U72*��~�V� -~��X�ٯ�<� �9ݍ��Ǧ�ؿ�;�H~�Uo���c�W��L#�0Ic��Rn$���*$cylhT�D�5�E޳����P�Yl?�a�4]�e%�� ��.�L���i�.7ju�`4I�f�Nk埧V�Yt����_�̤�J��u�����D#�������[�q����8�֬�� ������YQ�O�%�핍>�� �c\~� ?g�TT��-��44���}�8���U�J5��ײ�^v��E�:﷢�E�F}|� aU�i'���|:N��P��sgL��$�����F��5�q��?�!3B����}�+-�i��'�G�@r闦���3���^8-�F�p���ry���i���xW���7@|��Cy �iZ��z�Ϝ��$��s��+i��͘5%؅I(:�3/��X�,�ݑ+ǝb����o�����st0X yu�Zo萴)]���f��`��f�`6�:��:�W��� G6�I5�ո���+xO&�O�9�������-��) S�3�$��O��''�4�8��>��3Xty]�ZoI�JW[.����Z&�TDz۱A��:+k�i $@{����@��z�ۃ��e�M,����OS��\c��Ň���C�>������Ϗ��ؾ(�O�rϢʟB/�+�~���[E��+IRh4 � T��~���oeM�[�7��Y����'{�O������!7V( ���dn�.�'���#m������l�����{Zܠ\�g[��W�~�����RVZ9m�����++��B�9���o-�ڹ������-߶��Զ��IU���Ӵyk�{��g����1�O��k�]��?��N|�v��c�?��%�mj�CeC s��bi���|G��M[�� @w��@�dJ��z~��3��\��hL�-:� ��꺑�z3�(����0�kO�X�7d��ŘKvT��Z�NW���y8`t^��I���*A�����A� �j%����ȯ;��VM�͚ݱ+Wh�CT�W��vNMU'ˑ�Q�T"=���К�2�`����pdA�tuWm2�������l�/�D�LG}k�Rgh�S�8СmMN�D �����l��L+* 3���5��Tyj�>G �p������M�.u#@W[����aF��PV�6�d��ᱠ��n�"��zr��4 Y]z���-��\X�ay���i�$Қ@���J����@V~�޷�#� =8����Ÿ#�A����5ziK�&���,��>6���N����ޥ�ʸ鬂C��ݲn{B�Q�l��F�� �;8$N��q��P�m�^E�x:��*�����ؠ� t� ��6���fk=Kz��J���WFBdW�b� �YE�5_Š^�;7Ti��w�3 HQ��5;�$I �q��Ռ����*�0<"f/�)8Vdq��r�7������1J�� \��#��Bp'��(��!�v�Ol�}]i_2c�簡�"'r����?-���$y�G�V�q6A��-;�?m��z�C����?U��������R:� R�P��� -&=9�'����:��"��I�W�Q��kpvO�Mgs ���2:�'��(�j��N�i��#�� ��[K֋�����j �W7�6�x�6�X]�~��N�r����g˟��1s�H��C�e���׼ @���v]��T�U`0$�^J�p�;�A�A@�Q�J� �8��7��>���{��<���K^rD����(.\*�&c�ޔ��1wc��3�?-��U��p:w<|W�Zb펙��"n�d g8����:��:���hä�� ���J=ݍ�bCc�3Y�* 3����-�l�Wh�B���w`sx!ɓ���B�� vl�Ъ5:r�`� �t[{�9���&�H=&iF�%f{�p�T~�܅�ܬ�8E���7ȑE����x��]j�)*�Wxv��3�k[zl��p'-x��'�za����y�2��cS�E�� �OabF���� ��̇��w��3ׇ������ѳ�y̜���8�����k2�;͚���,B.�z�J'i-d畓ճS>=�FjeMY��V�i�j%�ӫ4�N5�֫L��2�V$�0��-�VjM]�lJr�J[�Y.�8Qg}ɮ��t7=x�:�� �K:�Ӭs��7�J���'k�-��Q����_p�Cn�����j�E��}��n4�0߮����NMYV�����G�JΔׇG��S�'��N�g�:Iݥ�R�sެ�����x��i ������=�},�gc"i�նi���m朧�Q՜w�����8��6k�cS�����ą���C�����5 ���]h4� =� ��i��N}���9���G;�gD<<�Jh5��ʭ��kr$�<��# ���'�^��p׀Мg�u�4���Y'��rH]0%�&�V�WW.}�F��!���H���T]���/��hV���B�Ì�%���2i韭}���%J��f�n�e��O�>y%7����uU�`M׬͵�?��_e�b�J�ug��f�W�\�t5֝޴��B@��v���Ըco�jў��+�!�&����Nﶛt'���]�Om�y)C�^|��\Ղ~��ϖ��&jn��U_9/�z>?��_�l��6��_̇�O��<�߷� ym�7��zc��=��c�T�Mg���*�~�cbB�ee�7\8�' �e�����0p����9=!�[�~����w���tHY�!E���3�6�->6j���|1Ǩ�fm{��mCmY3��A�ukVl޲{D�e!3�o���]y��4oE��Pӟ o��`� ?~��̫ߟYc�Ww��ɨ�m�K���K ���e���l"�]�u--:�q�0�B��3��؝(i� &��0�7U��=�TL��R/�rr|NOA 1Z����i��v��EӼL=-�j<���ԝ��@ �m`\,�E �@ 4��@ �~�-�F �] @ �@ ���@ b����%?nn�$y��2�z$L�)i�a�lB�^|�ji�i�B��wRJ�� �+Z��2�$&�l�c2�z;r��A�QQp&�CoYś�.�A?�Šq�1���x/o�Uᘼ*V}�D�-��ZF�;����H�|���;~�0l'ύ�W�Ȕ�@���m���Pyծ�j �����Ƕ�|�E 7 f� ��3;j۝��-t���i%���`(� ����2n`�E%��I��<��Jl���D �ZL�O�����S(��LB��Sg���e}���GSsζ����v��/��N��~���N�q'��`��I����7)�[���Y)�+vገ�=E]�(����ɜ��]�U�c��y�u�uܰ)^���G��7h��a�ec�@ n�ۆ�[oߊ�n���f`ZP�'&��["���;��?΃��/���/��>wu��V��s���{��p��wYձ�j�����ޢ?$�O�~H�F�+�n�@�'���e|V�-�|��|�/����9���[7N~�l������=[�:��{������ψ;�H����!�X �L��� ��|��;5F����)�~E]�� e��Cr= �Q���:=�4��@b�٠�Y����=�� ���yrL��*5$f�����H#Ԋ���v#`6�)ɾ�N ���4s%@���בJ���5�����_ �� f��5c��>{j[ߒ�u�BN`���iQNLB%*�t%O���'�TYf�VCf57~�c�S��f둔�� T�ŗ�w�e�􈘑��g��R�K ����K^�9W�K���6r�NU� +YU�:h�s�:]������C9�@s�H �����E�*3��JN�����u���W.�)I�e�l=�R��٠֘i��^���T�R��(m��+K=ý�C -3F�c"b��v�H��^.P�|��Dy��$�!�t�<;P�=l�b��Tu̱�����k��m4Ƅy�$�{E��@0R�^�ma��p�{[N�N�R���h � ?��e� �ʚ8㕈����0v546��p�`s@�6;�Ί�Ӫ�,{�B&�I��I��W��؃�҃lqMɩ+�؅�=���-�s�������cW����6���_| �����+�s�����T�� ~g����O��{��_B�cgՁ헏�C�nh;��q� �4�\;��64��x���3;���>8Ђ���/����+ڠ�n�9���Z����s5��e @ J�w��ٹ���Ӥ�p'�q��t�Ƿm��{�BY|�du�ciJ->|p۱nB�7n-#k��(l�{z�l]<�m�"`�'���g��v�X��֝O�%Mu�����w�����N J�w��};O�H{��!�>������S 3Ch�1����S �a�8Ǯ�fр�cE.J\�P��FO ����I���nl���N�>���t6iИ���vz���f�:$���S�{�-�\�wt��?�\��c��?�U�߳m��ͥ�y@�!�b�V*�J���9����P��Tgg�ܡ]��.��f��fVjI����� j�CPZz�h_Q�ՎKMm�Pj˺��6,5��`�*�fзtuP}xl��� �����s0�F����O&��� �Aަ����U�W˛d��6�$[6�ʖ��4_�L�-BJ$� B��]`2ye-�:c��¢����� ��fAz�D:� # ���N�P�y�պ.=������eX�Ț�165��<\��V���mKM;ٝ)�`�蠖��d�t���;h�.�4&Qͅs��ʮ�� �B���Y*;;��š�~�s������eln��3�7��r��a}2U��r �f璘�ZT� (�A�4�����z��(8� ����U�I��X{� ?$� î��_;}?+t��߾ �`�ʓ� =t��ЌEn6�q 76��� @� �y�B ��,��AM�l�3*;܂}�g:e$���.z^�kQG� ��� �I��w�$ ǯ���8#x�_0�I'�;-��s �7��?g�$z�4���q�&$H�Z�8��D̙@F3�;�B^���;��p���]��18-�s���6�Ic\\A����u{�겋Ev�K�9�����(�NA��Do1��fAo���'����4�%4� zK��Y��v�MP�c���*T�kR ��LJS %<�@*�qgy� ��Dr� Í���EԠ��{t!G�ϧ��%�"#d��/G�aB�@����O��~��[��K7��xi��L������*w�_�}3�x,��V���4#�8�Z=z�AG\���$ �Sp�$�> N�YOD�G��I@�5a�� ��' �&�J�;���l�{����<��L��!�%��,�_���8��<��m�hu��0��<�������ܪ�5pԂ&�tO''�KWSf���U�y�p��{���SÄg�4�Ic10��@X,;I�Uv�Ja���rEE����w<���Y��;�`�ʱ��)]D"��T�����c��F1Sע� �c� ���i��l�A��D�x�ژ�"���AH1�D´�����˕���[�i���Kސ?u���O%�=[��̍�{�7L �k������f��('6��� � �Q �]m]N��L*��#(�+v�����?��at_�Ă�=Z����kˠ�lOGgB-��N�`�y۰Xl�XOڵ�.�, ��4���?X� ��6��vUJ$l/&�b���N�%VM�D�r�Py��g�:S�dD�)L&�����Q��)o�0;%n~�w?�Z��l���.ik�i��)1�n�, �Sk{}]�D�� rbSq������1��]-Wp<}yl�oj�7}��b�w�1�w]���^�m��߶^���T[���f�������ө8�rr��)�}3�Hy���5h�yk '0ҎE���z��]-Ҟ va�iӂ2��7 �@ ,���U���S<&�-��{��.����k�VnΓ��&�^o0�Z\ĝa��^���t[�)������ � Y9��S�{�Eȅ��˺H0�N�.;_h�:m�T&�ל�Z�������ę�Q ���j^�ȶ�7�_�uL YE#U���5���Wڤ�ᚊ����ސu���bh�I',�� ҿ T� oIM� 7�3��乤%��fꮊ�W�O:3��令�=4��U�E���� y��+�Ҩ�,8{��s ���$ �Х��%MFL�*;�7�N$��&���1q���J^�����)q�?̢�-��Uke���U�ed�����l �����hqOM����p cU�� R�B �G;&2�ɉA�mi��@0֔��d��L��^´��X�I�lή�Q \F<�Ls��*^J��tB!-?�ҷ%�N�T��F��|���_�����=޽{[~�;P�^l�g�M߮};p������͗��*@���Vw��{�W����>�E�0&���cݚ��쾃� &���>��O����mgD�KZ��� �3c!����!�Q�q���f��qC�v�'�.����/��B��1N�[��lq����� h��&�A���E[` n��cKEέ��-dd�l����rU�� ������|۔�K0�ہ@ b€��Mc�<~��Ne�n=���ئ��iF{;�@L�d�4�@ ��K�����k4���t��+��+.5���@ �.�@ �@ ��N�t���Lt����xG�]<����Wޛ>s�c�iZ '��y3W��{�¸ɮ �ѭc�>끤d�� ۳�g��М�k'� IDAT˃\�Nw����3/����x$����/��~sI�\�=�( �TwJ�Bq���?i`�v{Vi���������r[nyCř���� �-`p}Z�Y��񂪶�֖� ��#�~$ѹoマRY�=��4����Ǜ��.�� ��Y}�D,�5�ظ�c�%��F''01*� �t�?��&(�M]t�T����X�S�Uc�E���E��h����i)�^G Z��[G%.�1�:F�E'��٦���fP�7^Sp�ZGu������]%$- G��ȕ�b"�`�����R� �D �#&�M^y2GEu H���u�^J���h^� c��L�nm��8g������Uh0;��9����5V�gM顼2���2l�l ��#�����R?��/�}�?/�~��S'��y�����O�[��l��7O�5��#�RKo�{F��M�Vp�����j��y���[w �^o~�����a'��BS���i;�����`�������o������B}��|Dl��7��lH]��������/.���V�p�+~}��+$|R��m^�g����}��6�EY?Qن����iN3�u����zɢFV����^�֒W�.u�������z�a0��� &�h� .�)�lPHqk�&͕-��[�;��� &��tIu=RfH�"~�e��?����ܥN �&'��931�V,h+�o�]3�Y�~��9 �)��z��S�����e�PcQhM�@��V�)��lSGa��j IuN]�ֱ��Z ��%�x���e�1?&��Ǒ=A3W QLw�iq�|�E��K��: � ��(�U�e���e'.uh�Dx'�r�����j��->1�ǁN�%U�E��(� ^�0� ��H( ](���{OOM�������aW/�֘��v���ʦL��L���Ne0H�w��8 �@�ĭ���u,Y噭m��x��^�ї���76_����/ˠG���Sݰ6��F�uo �?;�i�j����a#V}��익h�O_%�� 5$I��( $P=~��ˆ��e��`�':���tٍX����G���O� ������g��D�jwwa yaf���d�}6A��F��x�� �^��:��Z�,��I��p �X�P�IW(� �X?��I������P�^쑢��Eg�;<����x�{wL��V���X[q��8i���欜�&8[�l0h�f{wW:�s����L���Q��~a�E5���lO�,>�G������>q!.��{����n��J���/��QܣgkQ���ўgTJuք�`�R*O\>p��f��`�:l\ݩ�+M,貦<�'.�/�>�;�Hf���^L�.2ɾ++w�ނr�K\��0� ���I��!�?���H���}�����h~S�: �=u�P��V���ۏ,Vh���m?�m�]�<��,�k ���?[�V�`��_���v �l�8�(>RV��008v,�~��*V����V$-Y�l�&\"C������o�D%���e��)\�o���&�',�ߚ�?��#�<6�x���U?V�k��Bc|���X7�+��3��MUyG�y*� �p�_?d)0jj���� ��re����{��W�~϶Ղ7�Zt�P�Vh���s���W�����}/Ҍ(�E.��lo����R���U���^��6��35¾5�X���MJ ������)3W�F���STll23uv6��*���R���7�ʴf�F3����w67���Fޛ�3�:.��V�����y�wIEyW3k@S_(�$2�ٗ�P��Z1n�x]͝�i���}b� m� = W���0Hy��b0� 0�wj�{�� �SGk�� 딘��8�R�@ l��XС�(�Ӫ�(8� �n�lG��*��,�L�� �� %Ü�3n�9.��N^�l]uU�U�U%Gs+1��kBZ`@[a�jp0*�à� 8���pH�Nc�Hn1zp�ۻ��a�'�{�d�0 *�����(�=���1����~�\������X�ݳ5G�r��!S𯌸�����r�'����U�ݣ����Е�\{�+�F���k��g������ZyRH �,�z��O�8���Î<9s+=��/��T����𣏈�7rZ�:Y���+Fy�4�OU�E��P�7F��;W��IEC��F�J!M&j���1YTp ]��B�p�$,� 0�����Ā�H��ҝ���?=N�7�, m珈���u=�� I�v�t�E��#HXn6�2��p�$�U ����@N��#�B �m�,�q�${Z� p�&�k@�aFQ�>5#�=6���X^� (,ǩ������ﬢÇ�7y����R�](�h�0'�Fg���nk�z�� �p��v��1�g�t�K ^R������Ǻ5+��� :n� ���I����� ��������}��������h>O�̺�4��)�4*�d�8N,�<���F���i������� h����6�}Њ�~�[���N����~z������8\��u�K�7dʆJяA�i)�ͬV����j3@Ӗ}/g�Lz�J氣���3>�ǘ� �8����S?���ҏq�?�8�^˘$I ���3���C &�0��h I�{70��(������� G�xyR���Z q�.���;- [M尧j��$W��Y!���K�`����kL���`��@2C�;Z�@�Z������aM@�0ԃ}�7hq:�`��� \+e�J:d��8�'H��!8X_����0����cc��+ �sb<��l�����&�y��������I���ʗ�v`�ݣ(q Y�8�FAd2��MϤ�T*P���=?�>8u�W�|���=߷M��-��Z�?��d��f��=2v���MR���d}��k��O]�Y�e�5O�.r�ۜ���QV}�|�dzb� uӎ�U뗼!��+�J�{���3��MW�ݍ���{�a�,��:���=�� M��7��lf2�CFH]۩se?-�fB��0���?�R�s��aQ0�f��e��������Pm<��X�v�-�^�T2�|mY,��d/wZ�w����E��s�7�?�O���|;�RiE8B���$7g�X8ԿP�T2]�l���9 èT*��ߕad�l���m�!�+j����mϠP8�.�R��&Ш5t'g6�����GV&����1�T/L,0΀Q9|W�A�� ��i �^;�y����$�Ou��ғTW?W:Ǚ�n�<�Xb%M�ٗV�s��!%�v=�������>7�;��i|���e���y2,�����HJ�3�(iJ�����\Sf0�aOnپ.�� ����\\B����~k���v�[��>k9���M{���n,:�%�%�����SS�)�s��Mmhh���ܜ'�Mz��`�J�IL�3A���l�����$�:¤��1� �� �BC~�$Lf��A�6�� �T�݄<�e�����ޞ�p�����%�z1q 7⾅��eCE (l��3�DMM#[q����� ��4�0�]�yYT��2-6yy��+� K�����R�O�YL5�������V�[ʧoc"�%�Ѡ*�WP��������+eҢ uŅVAP������1��Eo�*��'N���Q��(����E�Ȑ����4���oa���Z�R�� SW^��bȎ�~��i�Zy��\�����ĉV˥G ��5nZ��?.r�/�K�]�+o��+qL�]A'Ւꬢv�BSsu�W��{|)Fq�Wj��G�ܚ_i4w �PJ+��=�N�´( �ZmWCU����i�.�_�R�����f�\��Ӎm�-SW�U^\b�2ŬQ6_����O���G>�k��G�?<����Fw���S��t����t᛿}U �YPB�ǿv��B��y��m �����w��ɧ���lZ_�ю _�����5�����/��+�)n�����r�5G>|uƦ��չ25���/��I�>xs�����ajQM�^�R ��V���O�;�V��y�}K��ov� x�t���Ń�O\),\ZY0X�֒7XX{�y����Z@m�>�*��������{t��g�m��h���&qՙw���f�r;�O��K���@�[Q�77@�;���eG}ֶ�^�Q��1�̾�֬�k��M]�:ZP��_�B/ѡ�"t��8��FvgQg�xX~A L���ν�{����˿��e���̼�Z �庖v�_�м���z1r�N`��< b�0�O�#�{�Gnju�s��2�@ ĸ�? �@ ��rc��o_�����e�(z��;[� ]�EO�H��G����/�;�,�'qw���r�@�D�? �@ ��r��Ð'���`L�����#�/X��R�;��D�%�@ ������05ޓ16*pV�uʺ?�,��$�^��)�p8a��5^O���n*#`��O� ���:�i,����Iq �.����=�����6͇?�8������ s��\-0����p�����R<���\�'�u���eݟ8gB8���q��D F 3`�gմ�Udos�庫 �n�]x5�O������Sv��0�^{����u�de%Z"b�s�/�a�Q�l��,�����T��/�>��?��z�8���`4���hJO���V��QH��� '����NB��Xt6���o>��1���Y���,�-�j���"��}�, oE���@� ,��_�y�.���yK_x��/[&��s���^�r�M����z~;ܳa�<.IB������s?����eI�@ �qψ��{HB �mx|�<��݊m���=���V6��۽��� pL^������ �o��?��L g�7���3� !�=��OLs���~�� ?��Ҽ5`�o������x�&��F��2f����*�t���n�����sj�-&k��i��Ns���C���Dک20�^�ζTR�j��)nV�o����(ɍ�����Ԑ}�P}�:����D�!�;?�GߜS��tbŅ�� ���rzH���@�3���/�;��f��7$6��������Nj�J77dʌVG��l��=Img�ش��&�E�H`8��D�;qp�F-jm.��hY������1���l*@����U�f���i!w򦊁@ �����aW���{_ �qΩ��/r���޳��>0����M�?m����������&�jrr�u��v��oK�!A��p]�;`��N��r9CD�m�b���a�L��ic�E�R�����������?��N�%��?���� �=���aOm�vm���,�d��`���<~y�_�[����#*�����������_�5�c���ARYT]Poa�����I�r��� r�@�Q\T]'! ªꂢ�.��q�,MCE��h�;9"䆇�b7��Tv5���������E ��'��{Ф�W�k��ذ���5lg?��I��S� �b�g�,���Hut�� ��L��I�tyki���u����܄J#��`CJ��[ Cܣ��>|��MQ�WY֤��sh��'�F���3KT&Ymɉ��n�qXU7���[���'�y����������w�iي�K;� ���ƿWqN����iP�~��������� 졄�r9�~���o.�@��������ƴ�܂��v���l!��P���Negi�����fPP�=��ıc�3��x�7z��ةv ٻg� ��wg�N��l�Q[��bHZ�T{�n��-�X��X��Ha@�������yc�kӹ_~=b��8�P�Ǩ�F�8ܩE&��I ��I���Fa}n�����w�34�)Z�F����Mب.ׁ����z)�d�3���G��z~t��I>�l�0��E'on2���ܘ��&��[ȵ��� �lI�LE�3�ϣ@� ����Y�"<��tB�\�d:i���~�^���΂�jL-S�4/�p6� ��J#��(Ρ�.MUq���Gc N�SH �b [� ��;���Թ��Z�7Sy^� ��0̪~��-�A�a23��0��=���@�����"Z��Ϟ�,�x�Y�c&@a;��3��|{u �ܨU��<��o>���, �|��;+#���q���q�Xl~����&�E.���bY^���v���B�8i}}�Us�p�_/��x��H��5����G�ʣ��m�_jll8�m$�! ��h��ٻ︦���OBa��,A��ĭH��R��X���۪U�h�Z[�Z*?[QP���"ZT,*".P2d��@B���m����~����9� vvv���[� B��A~O�/3��Q��7�� !��>�j ����IM�?�vЪ��Z��ڦ��5����� �N{*��[>t�Y!�Lqm����B*���$z�Û �555d*����*���f�Lʿ�ʈ�a��<�;xFK]?�T @!��ߛ�64�0����D�װ�������\�A��dQ׺��Ս��tD"�#�R�X?c��:�q2}��Q�[=��}� UM�����[�J`�f�ޕY������h����;?�fF��ܹ��K���I��v> �>��ŵ�Y�FF8��:�Zo�=�M@���(;;{��7od�t�л��˵� `]�vr��:�� ������l��������pӠ � �L&�DbڤÙ�> �kP�=Y���B5� �_R}�oq����_����[R"���� ���S���_��dtf���l}��3�`����3�+�\<�BQ��G90u�Wa/�H��.�68>���(z� z [�s�M>��5OQJ��奉.�C����tٕ�"UΖ��ڙ������x�E��W�Ur�`o��^i�o�@�����4�ľw�����5 d�[T!aee ��u��@�^A~qU%[ � �����Ѿ��^��'����P~�I$�� if�f�Ԛ*ݹ�yefy��)�8���Ywq�f�u;��0�jCk�v�TS}0l��IO\QZPAU�H�m�j�o��0���R   ���RMM �,�E|��_Y�(�����j����c*h�f���،�_�߮ �;�&� ��uQ��F�����o�.�-(�O��/��L��r��?���,��?x���񣍁s�^� SAP;K�BHz��C=S�NL#�eAU���R�@�=zr@pȔ!�7Wv-]�'�d�s��0x—s�>멟dׯ�X�~?^߳hxg:��=گ{ٹ#7��f�Ku��0i�����ck�FdTH3S_һ��7f��SQ\D��II�o������ 3x��kO���əA#PL���0)�1����y�Q" �Yu�5◼���������,��L6L ��9`bnng�4%x/^>/���O�)�l��s��s��DJ��U��������h���R~u[jĴtq�ioF��̩�����j*^�漻(�fa�l.z�-bv2�W3m��U���r˞�JB7����2�~y�U���#SR�[!T6%���d��faR���,d�[wh�0�*.[*�F|f��@ IDAT��;YS�fjkä K�9f �eJ�f�L���κCkK��8���7��{K������Z�oo��dמ\�]e��{C���<˅ ZWe�@HeDɽ[�V��L�Q�|x�}�����K;\�f�ռ��gNc���%E�SV�4����@� �?�Jy}u�ҵ'�� �ZX6�B�!�h�}WcȆ���n��s2t���WX��=�B�Ԉ��!�a&n��v��{�8�-�q���;�^��T��!�D�3����#zlHn�� B5M��_�V��zW �!�7^J�� nU�Z~Q�[��}��D����ɋR<��uh�D���bp��BmJ��? �B!�ڤn!�B!�B���B!�BHY8~@!�B) �!�B!e��!�B!�,? �B!�����B!���p��B!�R�B!�Bʢ����7h@�.�;�S��B!�BH���7�I$5�$�������,����r�<�[�th� ��K�����ڹ%7�-n�ٖ-��H �����6O�K���:bv�cOz,�|����B!���s\���M� }����_��s��?H�K㗒�����yeII����l�JU/~� �����C�y3 ��5 6?�J�'��G ��8/iƵ� ѫ�?\���7 {:��E*��_��{�!6��'�c�g�OFX@�/���!�|^�ܾo���w�f6��`i\;�`�\��9��f͙ ۹��]&? �B�<��s-�Nݹ@�J�O�.���������}���5o��q椟����^�QQus �U��s�^�FCK�y{s�ڛ.��<�U){'�~�R_Q���~2��`������'Ӝ ��*'�X;����}��[}:̍z2W�d�ݽ������u+F023s4�L8~@!��y�����a��v�� ����'��L۳|������a[n��mH>(f=�֮�����#?;Z����y�*�^*���~�����X_��e��M+#~����,�e�=��k�h�›��/ @��ܺ��#�oYR����R| ��@�KE�߮�Ʌ�_F� ���x��׷�vZU�\��s ,�B!�Z��ٽ����5���װs�#�g��!�_<����0�L��g��\θu>K��<�c�'��Ύ% �+�gu�����0�q�2�f�qk���ލg���`���^ʂK� �Θ��ߧ�Ӟ)y[X!�<������0�w��B��Q��̝��R��?�l���4�\#[�P�y�ҥg )�+Mj?y߉�� ��EDv��l>�F"�����ɳ̚)4�!�B-�k��&�7����K*���o���N|"{��*�v�>(C�t8s�ȇ�M8\d2 @$+��(��:��07g����)a�/�k?�ܻo�J ~>F��6)"�� }G( ��$R���O��sjV{����z�����v�}�����?�->xS�>R�.07g��߿�b�A�ׅE�%C�2j�x��V������؈�ѧK����e7��8~@!�j9�vV�IO<|ȸ�I�];���5n�̾��N&�Щ__��G�5��<~�C����I4�݋��;xF�%@!�B��|���'�(_R�����Z�]a� ���9�!�B!e��!�B!�,? �B!�����B!]�*Ρ�O�N^M�eٛ�'�B!�B���B!�BHY8~@!��ˁ�"�?�,��M�u:�Ϟ 0j�[N �S���yy;f�h���w����4R�S�m/�"v��K`dr���;F�k;��#�O������'s�gc���� �y'2�3��w�;�} 4�I�.&e��<�;:��T�v��q!�BZB�3j�����C�Wy�Yr���5� �,������|�������Qz�4fW7��|D�J���|�R�k�P�����d/:�u;7�����B|�_;+CC�fk���C�qiY�+v���I��~3�z���~�7���-����}b7�8�9���i��$���� _��9U��q��B!�%=�y3 ��5 6?�J�'��G ��`?8�o�3��wu^������w�5��T����51~�h7�Sy� �y�A�Q�zzz %�b7v����l�+P��C�1u��ퟮ8nr��͒�O�8eL�G���Y0�O�+�h�-�[м{$�R"x�k�_�.l��7��/!�Bi�9��b��G����ۚ�^�X @��k%���6v-#�ǂ��Dr�8xxD�f����Kc"C �������C<;q&U�������ꟍM�.��ȥ������#��`0�nEmE��2�qU<��B!�t��~��(�L��v�G��(,,�rn����OX}QRʏ]8��3��%�A�{S��K� ̇� ��|��o���-���W�R|u�~P\Z��a����H$��_$U�u< !�BH۸XU�r�y����ՙ'8���~i����t�R�[K2K�uQ���c�[Nz���l����![���D������s�����y��{?��]@�,<�'\�����L&�� p��B!�%l�ܜ�fF��u�0�}@��,?�UY����5[�*/0g�� -, ����;WzO[�3}�Ծ6=ѣp끵�C^.���bv��[��?��6�w{�Y�V3U�C��ֶۢgԾ��1f��39��Wݿ\Te6�M3������˫%O�GR�&? �Biɓ�;�Y�fl�ˏ�� � „���� 𲓮����d��;�S��O�d6��u�n��yRIM�D>R#%h�A�˩��o����M҃���^��j�V����Հ�, �"��;�G�e��l�I�$stXl� C�=�}�­g���� V�����W�. [_Xh��੶Smń�{JH$Ӟ�*��,�����Ȉ���Dl�\�us����x�rHvA��E-yl�R.j�Ŷ߂�R�����ʮ�ʍ\�:�0\Y,��p+D�*��e�7D|���B!�� 8ُR���b1�}�!L�,��u�0���:�j&~Y~84� ?v��X�.A—|W$�v�*1�� � M��Q�bY��,:I����s���.�ս[&�K[%~ua]h �D���D���p��B!��m\���Y�B��B�T� �p�ݗT�P���Z?����1$cg��;��^'�Q�G�[͈�r�{��g��D/ْ��v����>w�ݥ�; �uQ1�UʕM�^��3���@�,<�'\�:A�?�D&R�FOx��U��n�i�0m�B56�`n�p��r��_ryq���M�=qllm ��c�gf�o�I; ^vE�޳'0��-^3aar��^�f�+�;Ǘ��L���k�z�w�Igb.�v3�^��S���o�N�\[� ��2���f�����$�_^]���?��Ųww����!�j6O�pg���u/?��/�7n����^�x`��ύ}L�\ y��<[5 mP��cf�Oj������y�~�z����d�P(��\�n]�u�?�l�9*���|�?�A��}�����^e�<��1�ZN=�S��Z�q;�*�4f�f�v�T����>k��x��/`e�8r����9� �q�u�U�������J!�+��&wI�W �<���� Z�e�~��~�����!�P+��x�s�� ����|kn��M��2��ֹ�MM�Ӽ* �n�5yO�J%u%��N!�UQX���ɸ�L������ � �+l���� 6����˿��#p~?��؇�f ����c���*��o��T}$"B!���ӇL4�}�yh�t G� �t�lB��q�v�(�^ǀ�s��gW��� �+l��t��s���}��`ڡ�l����@��ddmaF��$�N!�Ҙ8�@1��3��"�@��'2ՀF%D�")E�FQ�HBԕ�P�VQX]nFd�-�T)�p �A��6�pJ�[���������#2bXe>�,A]������*���Tg�\"�B���+.�~���|� Gb_���rUV������?W �VW�P#)� 1��Hv��];�<���_B!�B) �!�B!e���*��v��z>?!�BH����*��c���w;m�B5#ˁ�"�?�,��M�u:���߯f�v}7\�)<8R��}$ �X-�����^�\�4Շ $������7v�4�vvMG��y*��"O��H��S�k�"���2p�w"!3?3-~��C�#�h��v]L�(��ywt���7��맑�����wW����<B�fC�3j�����C�Wy�Yr���5��{b�z�����8��dC9��h�A��k��O�[9>��ܔ.� �Y��  )�-�v�*�� �̨T�1Y�GV,?V�^!��� &��u�d��|ln�� )�sn�xa���4���?×%ymNU�a<��tU ����m%>!��ǫ�0o�_�`�U�������`=�+jÄ�M�p���G��fџ�Ba �M�fJ l-� =*UOO�P���8{v�'��9�Z��s�o�V�p13 &?�Ive����4��I���������b�`;����HW1��f�4�>l���N!�j� @.� ?*��.�� 7��ih�����X����H�=M;T�Y������ɟ���R�4&���J��)��h�삂<�Z��t�\���m�I�n��?��] �e��tu0Ja�:�X,�)�V��n������H�;����*ћ�řfUj;�B�E��G��D�Ta���V3���áy/%�� ��v :��໠��"�yZ�R̽g�cC+aԻX��5�N��ld�n��Gk�K@|u�����V�_]X�@"��f%���-? ]U65^�I �B-����ʨ��[�œw5�&kf ���|�����Ie��a�V3"���^w���7��C�$�����ϝjwi��f]T�e��>y���q�%�g��>��� B�Q�$2���6z����2����{��B!�l���9�aftʽ{;|�˙����h���]�Ƣ�� �q{�C��LX��k�׭��Ê���j;Se9�����]tҙ�K�� ��$��d9�۵:ז ⽃ �a��43�����WW�����o��{��?���!�j6O�pg���u/?��/�7n�k;����6(��13�'5�NtwW��<`�Y=� �Wnd�D(�D@�� ���:�pR6��{� >��� ��>c{��M�2v��y-������f-��&v �bTŽ��*�����X��[��D�y �B͆s~e�Kͦ�/�pr���_Y#�e�l'8Ӏ��� �fڊ�9g���;�} e���e�Y��D�}R�l�H�y�Ix�pD�5�~����2o9p�U_ќ��߸�:��*[ �U�O�v��U�D��ݫ���iz�i��e?N5����KE�N!�Ҙ��{���ЬM0G���[s;�m:_A�x����#�q��녿lj m�����=ͫ�p�f[��4�T�x� ��o���<�U�������>�/�rDl^�����#b �%� ���;��hGL�:�]�y �B���;}�D3[�A����.�zN4���t G� �t�l��y6\R�����&�]f���z�q��i�~��f �x��*���=�TQ\\�'�"��x������)T�RA� ��w�L��RH�b� S hTBT-�R�iTU�$��y6\R���� ���U���FҊ2�ȈaiDT�q�D�u�2������Uo󪴝B!��H��2n�AE�TZQP{��T,��~�����T���pI�*�K^�ļ�"���!��Nj>vg��In��C��d��[rx�t+��7��9����W�U�m[g�h;�V������ftN��7�9@��n�tY�<0ć `�`��-c�B��qiY�A��� &�Fv�|�s��>�8�ඎ�v��15��u��ު5����j�"VYe���@}L�h�4���4�W�a� �?�f���JC�)�`ev���'l��,���|g'm���!B�J���)��;Ξ]�ٺ��Ц�`� IDAT�O�cw{\I�A3 &?�Ive����4��I���������b�`;�����U澇�"O/��v��v,Hט3,V9@~T��H����[��V @2��ͦ���n�C�s���x���}A��@���H�lq�riLdH�z� wu���!�M�<��q#A.��ȥ������#K�'1�L���n���e����8>��*q���)�����!����2���(��C��L��ܯK�����ͼZ?��?��$�����.� O/��.k�%�@�����t�iuJ1��9E���J�HP|u�����V�_]X�@"����������*��H�I �>.ر �fl�beT��-���4'�б/7ǥ���Xk'�*�>��M��4['7�7��a�V3"���^w���7��C�$p������� ���gg!�� �����GB�Q�$2���6z�󗐮2��:�۰Kp��0"&�[ջ ���:�t��07g8̌N�wo�/�p����>�ׇ_����Y.8����WA"0��-^3aar��^�f�+�;Ǘ��,Ua߫?�zږ軧c��������?8) *��f�ift}� ��/���W��<��t��mh�=;w0�s��|�B�J�cAH'nT�����S�ᵮ;�i ���΄�-/���U�� ��E�9a��������.$4k3}�QY(�蛛��b��.(�*[R>H�Ш��Z$��Ө �I��9O���[I+�8"#��QQ���� ���x�C�W�Th;�VDZ]�_{�v\u!͐�XԄ��e��TvJʻ ���%�R��/{*�X��\]�yj��W^$�Z�Ǯ�h�`k��/!�B!�����B!���p���O�.�ֳ{S��f������nu��U'��! ������K!��T@��ilP���`K��m�iώ�VW[[u�ˎ� ~��Z������E�d���:�gO0��0��7E�3� �^�9~$H��o{����\#��^���1R7t����ߢc�z64p�w"!3?3-~��C�#�h��v]L�(��ywt�������zۑ��K�?���� �Ԭ�ּ��ʻ���V���#�4H����/��B�3j�$7Nܡ�g���-9�{�@��?���wsp�4m�o>��v��5ִ��g�u�vnJ�e�C|�� ��)V5�1����5��-�`rjd����=7���sn�xm�`��S��_�/�Z�8~P�����XP��M�HT��1E���۲����V]��,�����5aSs�������K���{K u�=�y3 ����w�Zt( �G �����w���Kĥ��?�v�h��y|���M�T~*J({I�����R(vcw�=�ܳuP�u�:��������fL~Ɠ�ʪ��-,,h^�=��J)� ʟ��Ő�v*5���,��6f�*����o�*M�ޖ��U'������B�&�ɄT�P���ۣ�7�I޲ ���7Ԅ��l�%��<�5����M��b*����P��%�ZlOn����S�͡�Lw�ב�7q��FK*l�����]��)5as�as8�� ���)����%ӻ�Oh����ꭲ#<�j�+�����3}Odx����`���v]��-^3aar��^�f�+�;Ǘ��L�e߫?�zږ軧c��������?8) *��f�ift}� ��/���������M����`�h-�P?�|CMHIa�[" γY� �`��� /��{�� 5m_R����&,��yjp1�����t'y jp7�[k����ۚ ��U��R6G�'�w��8c�޵+��;�7o�Kܦ��:۳���]F ���uNc�A x�f���f�>X��R�Gƌ1��W� ����d�D(�D@~���}r��)��N4u�g�Ҫ�Zy&WaPau����A�yX�]��Uq�~�J�h��kͿZ�������F&�A*!�w��o� )),�bK��y6k���;yjp7��j�`�^4��l����F-V��?��o���t�c�����-�|�Ŷf�97��T3%7����]Hx���{َM3�v��pr���}��K�����W�pe�x� �.>�\����&�w�ս���u�)�u�y2z���?�MZ~�T��5 sT�� �6�G�2eǮ��z�Rد��Y�?����2��(��K �{��O~���|\��O��׋T��%���?�%/��Ƨ߂�V���bP78���V���O�-\���� K*_]�%��<�5(�BZu��o�S�L�;���M� 4G�jn���ܟ�&�`�����cOV�[k���>�Q]�� �u�kH�k�/^��.\�����ڽ{��372*� -}���~�����| ���BU��f���9׸�n�d�]�<��U��`�«��L?�ή���]�|��� ��n]q��>)�p���,�ǿ����˱�2��ղ�7}ل�UO_H�.��T��E��Y�MP����E��I�Ү�<����{?��P(�����c<�1��N�<���vw�t����t� �� 1�A b�T2�bL�C'�m ��k�|P1Þ-<��T�������[�f���x�q��i�~��f �x�Rc�TF{��cq�3c��-�Mj'���A b�� 1�LPF��!�E1�g��Eb� ��*��i]P��^;d=�-�\)bs �7TX]>�p�����������#2bXe>�,A]���K8~@!�j9-0~@�ɔ?��K!�B!e��!�B!�,��Rc�l&���eO_�->��=ۂ�OIͰ>s�X��))1�A b�Ġ2A���AHG���4���Ż��{u��DӞ.� b�� 1�A%� Y\q�Afa^nڭ�a~�r_��]��a�Yoe��YIO�pB����@r �LN{�~c�Hsm��td�I��bn.��.+���=u��/b^_Y!�y'2�3��w�;�>"��:i�Ť��ܜgqG�{���.^?�=}�Fd6��\J57�a�9UB��-�(ϩ��1�A b�Ġ2A���O���5������׫��� ����ה%`1#��JW��?��/���/A �YI.��ˮ 9/�v�xٰ��_��)�  )�-�&:���ڟg��6q�g�C�.+��emZ~��B���CS�G2V\>����ǯ�Ǎ�0m��4���?>��9���2�OS5�FT�U��Ieu�D5 �wB����2��M�]�]�FQI���X"���٬A�Ҫ�W~7����!j6Դ}�  ��MX"5?q��6��݄L�;��| ��S�b�Z�%5�Ah��A�� �u�oH��ü��˚��c�דM�#RN��z�^��5���Vu�TA�Q�zzz %�b7v����l�+h������:���*ff��g<ɮ�����n@��t|LJ����}�|��44����K*pY���4�Q���d��o� )),�bK��y6kP!�S�����T~Q����K �؞܄%R3O .���CS=��$�#A n�&tk��T>�b[S!5�J5Sj��c�`�X��Q�>#��&��7����Z�����\��)^��w_dl������#�7�E��\R�޿U �d<�Yԙ��=����m�]?v���[7���Un�������Ց�b0�L����q��2�qU<�P /��� Q���E�o�KD*�PRRX�ŖH��l֠B:��7qË���fCMۗj�=� K�f�\L57��z0�I^G���M��-�|�Ŷ�Bjv�j�Ԅ͡��~T{�U��y��?9[sU�R����.���b5w��o����� ��v :��໠��"�yZ�R̽g�cC+aԻX��5�N��ld�n��Gk�K@|u�����V�_]X�@"��f%�Um�@!�j9�_>�0�7�԰��w�0�q�2�f�{��pw����[ύ}��^��9�ѧ=����A�vl5#����Vz���^�%�������}�������}%a� ������/�.p����[*�n;7�a����$2��֍���qf;e�����MT�b=i�*M�ޖ��U'������c{��M�2v��y-������f-��&v �bTŽ��*���/��L�#�TBM�҄�mY[^u����� �(�٩�L�-0+�Ltgoy���x/۱i��.�N��?���x)WRW��@r��q�B��5YXTuow��� z�g��^;���e��_.�f�M"w���'��L�����2o�ߕXTSO-Z�);v��ۖ�~`������R��%?��j�W���>~��B�����w�H�lu��U'��! ������KH�~?�, ?�ɾ5�6v�TzkSA_�`#��hqyg�D W����<�˦��9}��#b�z��'��P�,A]��?h�i��N��7�N��ƴ�ӻ���V���#�4H����/�����|��v� ��k���:��&Z��Ji�z�))?O�2s�?ֻ�L;��M4S����*��3ͤ����&��K��m �̈iF�VW[[u�ˎ� ~��Z��4��?P��fDe�Xl�onFT�Ru�u�z��SH\�K4\]�����.��������#2bXe>�,A]�ϟ�0 ����x�f���H��w����:�eGi�?\m�_B���+*���&�֑�p��(U������v�y�E�3y�"^3[ < !�B!�,? �B!���㇖c�7���zi;��¨K����\u!M��XԄ�B����C�a�0ӳ#���f�3�wT/�U����EM�/!M��(����¼ܴ[������竒rVK����0m'���wc.����'�nv�hH �F&��N��c����k:����S17y@��Gb�:]�1������� ���i��j�Gs���bRFAnγ���=LUl��n9هw|����B�y�w�I#���:����u,j�~ i}�Ψ��z���^�4g�ar�ה����Cw��vz ��:����dW�%'m��gg�u;7�����B|�_;+CC�f ���J�c�?3*-���Y��X�{��~�7���-����}b7�8�9���i��$���� _��9U����C�����,���I��5��r���TV�-��q�!��$ױ� �t�=�y3 ����w�Zt( �G �w5M�nZu��j���|�M/2�v� ��T===�@�����垭�"��Թ���_k�3 &?�Ive����4��I���������b�`;�����U�>�Y�N/����g��Ԋ0"�t�\ǂ�N0g0X�r���P��~[�uō̼ܗ�/��/�Q�������YJ*�!珃��G$o��8[�4&2�`������h�삂<�:�X,��b�o׏���֍~.��e��tu02tsud�X &S��ɪח��;X��!.�U���L���23��u^���:!� ��!�Cp��N"�n��ڧz&nA�D��"�o�v�k�H����>�����s v��X�.A—|W��ԩ��{f�864�F��e^��$�Fv��V���6��W�n��/.m��Յu�)$InV_��q��tUe�������w�f��(�u,�c+�jVn�]�ϖ���<^г+��N��� %��:�SeN��9���a�V3"���^w���7��C�$p������ϝjwi��f]T�e�������rƹ:������W'�G]��dB��� �_B���cU̺�Km���`ǂt ��07g8̌N�wo�/�a��3�׫�����P�LGNGO�9��w��q{�C��LX��k�׭��Ê���j7O�9�����]tҙ�K�� ��$��d9�۵:ז ⽃ �a��43�����WW�v�@��j�>�{�{��Z&��nÎ�'�w����غ����� 7�Y�̆M�6�쫻l�^����>�v���b"������W����Հ�, �"���­k�N���M2G�������`0ȸ����sӫ��G�:f^˩���Ab�Y��}�BB�6�i3ѷ�NXi� �ɟJ����|eK6�cd4KP(�??#��HW� ������@!�Zcw�!����q�� ���% �10��9ó����T��v�9���lj ���&�)�Z�����4 ;S2����4@!��h��3j;S��H"6�2L��"�@ZH�-�h��L���*�.��<�]Tcs #iEGdİ4"*�8|�Y��@��x��URAY�n�C!�Z W\&�\�݄|P����H�"��Sa��%�ɮ��k'�'�Z��K!�B!e��!�B!�,? ]e4`��_���v!�B����2�<拐�{��v!�P3��(����¼ܴ[������>�u�~vQ~~z�����G���ak��i��%������:�Ǝ���ί����+��6 IDAT~���_��P��}މ���̴�����ȣ�N�u1)� 7�Y�������~�5 N�~��di;�B������8ɍwh���v~K�n�0��f��gz8w��E��_��v��Zi��w��>}�̮|�Ƈ����e���*�!��K��U }L�gƥe �~�7��٭w�m��s��㜃�:^[8ص���(����z��0�������ě�"��x��̀��klޱjѡT0�1�B�7�Ͻ��^p²�-��G�� a���n��U,d ��ڻ���W.�G���達���g�.�l]�yhݧα��?��᠙���$���y�k ��`���RJ����F�e1d��JM���*f�ق�7��i;�B�٘3,V9@~T��H����`2%��_������v�������b:L���rܑ2!@���H�lq�riLdH�z� w[�m�IvӃ<�:�D�H��*7r��`d����b�L��[Q{�]��2�q Tj�HW����+.1�R�y �B-��d?J}�Q&!�H����v���c�������4km��Q0�������_@~��ឞAg��-� ܛ�cϜh����)��_�V6_ݻ���zrX�C)$I��D����>? ]U65he�jb�B��2�qqv�����3*�� �ݾ��"�+*M@�����%��F�G�D�11��{o��.�AD�HU���R��~?�"�������Νw�{����;M�$��NI�f5<8r9���Rڥ} ��T�C**�ɺ#�t������7S���}>�l�Z,��s����6��I94ӽ�a_��� E"Q�W]�n�@=����ׯ읢'�:B�.S�d��(�ͺ��˃XS]-x{����V�D�|?9�%^P�����|�� �o�h���҅ <>���t8�jL�z!��7�1�q��{��Ġ��kjj� �T��{Ɲ������;�P�jY���D3�]B!�e�"��=c�ަ�F���� �c�"�m���2�d������I�v�_-ES��i�K5��}�46 ��H�s8.��\�ӣe�?�������K���@bPvld�9��FJ�L�Ƨ6���'-> ��SU��v��� B�/��ڙƂM3F����yan\s��.�7��x����(���UW��]��d%o�ݐ���bvc#d�Ƚp5cv��U[�R����Z��q@`�:-rMF�o�Dmo�^��z*��߾=��%�:B�.T�g��@c-}��._�p+��~y����Xۨ��D�����Լ���j`.+9���vm��o�*���� d���諓AF��Ck�%n�1�?��^ڌ����]������}]W߮��h8L۸t�-����?tQ�#T�����$[b���b���������?�:z�8�����xN�<�RQ�u �B�9su��*�4�A��ڛ���E���ioF������(����e����d�#Ǒn6�7t���@���w�/��/��A�-����2�������`�B�31n�[Ppx�� +ДD �\�PB�+GSy������$%m ��SS'"Rht���� �T:�,._$9���?&�4P*j���J&WVY]VT[�luI�'�����@=���,�A�E �B�~��_��� �X���[B�P����i���6����D-6�����k�.�-�X���k�� �~ !�B!�^�? �B!�� ��SѬ�]��;;5iׁB!�����T4���nj3��v!�PR�����W��yi����K�^�,g��9�+�*?s#�y��$;���%G O9����`�piW��N]��t���4�Eg�_�J �3V��y�>n>�,��M 9�ض�[�?���!l�ߌ)w �]B!�eG�z�� �̐�^�R�^qxϴ^Pvv������~�����di��y���X�F�J��~L�����p�\Ӡ��V�N��N�QV�O��ő3�bTT~8H���8��zf��- m@A���K�����|^�C��;���S Y�UeM��i�B_.+W7e(8�aɖ]�=�2n��ɂ��b��� �Bv͖v��5���eݣ��9º��� H}T"��D��H$���3j�ի�~�;ܤ�n1y�Nğ!�*��6e&e�7��稩���m��>�P�ĮN=y��g�����T �����p����@!�����2@UU5@����ý�G�]Ks�[D;��n����2(Q�y��f��8{l�p�, ����C��m�9v�~��3��6���bK�� �L�9(���$^���jY��z�2�}�����UU�u�\�zQ�*�сEJ��@=��i|�|1��D!�� bf?Kl�5�7�c�� �R� �؛��y�K�@��M\'?,��t�5�~�ZQ�m���i���cT�fM�]�U>myw�n�z_H�:^F�sB����k���S��lޱ~mD���@!��C���XK�ԼHv��y�N�Tk��@$`><���T>.�̖��Ⱥ#�t������7S���)I��v�Z,��s����6��I94ӽ�a_��� E"Q�W]�n��B!����0�**�9�7�B�f��Eڳ�\\���ևO��5�<^�Pʣ�0��J�j燭}4�1~q���ï�Z��G�ਪ������e�(��SP$�^����555tE*��3V$��8؁K��@!������usF�ؾ�)��a�5p��4���;�J܇O^�t���c�Yr�Y����u��P�^�s��Q�D"���p�@|窞-������U}6_2�8��c#w���6�P�`�7>�1G�?i�a�? �BI ��ڙƂM3F����yan\s��H�bkm���ʕn}_����:;��YE��=Z����F� >�{�j��˫��g~ٹ��~o�N�\��ۢ�Q��@���>�j��I�/uv�!�B�ٸ1nA��]�B��p���Ѧ�g��^�G� R�>&���Ɯ2ZFf�����5#3-A~r~�Ӳ� J��ôvM��_+���Ȟ}���v�{��>����i�B�/ �\�u�� �U�>.��TE5}=e9"PU�:1{ˠt)9�t�1������C?x�!�B��t���UYꋹ<9���s� ��m�I�������t pY\��Ӳ� J���&+��dre��eE���&Q�{�����B!��(�:nE���q����8M�۽y�&އF~bP�x��%�%k�?tM�s��/!�B!�� ��B!�P{a��B!�j/�B!��Fcᵲ�#:c&�=�!��?8Ds�=fT��s�竿^�o���Y�g�ߑ/���R��e֥@"(������0Z�q��f���_dM ��u����‚��+\���$��ӆ�/ ^��^4@��:?�I�$�^�,g��9� ��|TJaINf̥�>ڝQ�!�B� �Ô3����j�����ɊW��� ����1_�ҧ��Y��v�:G���1�q�z̓mzŅm�ԛ`�֕Y�F�m� ���w�T��썾[]�4������Y5V�;K���a��������-?�֚�Z��Hb"I��N1�6�د�]��� � w���k�g�2m���H�^�!�B= ���n���dƜ_��|����YfI��ؠ��_�5 ���$�8/;�W�ֿ��0/��́i���@YX�K��$����C�y@�>������&ve��m��~5�ʘ=���t��wV��;��;iS4���t���^0ٜ�'[]u�]����*���#���9u�U�n, �|5�ʼn�#J�k_]��p�h����D�I$h�,+Q��.d��l d�ݹ��&>�":,Vhb���K��!�B�gQ��s���%�F��~*�zl���~�{��&�^��N�}��x�]�>Y�`��f��t�g%9yYG�Hn�tߜsg��Fg�Ŭ)Jݫ�w�OѼַl7�B!�z ���7�L��x �l��Ob\\lԝ��oF��oF�������e�O7���PQlX���P�>C��BC�D"�{�������w�J�o>��/^}����l7�H$xt�HR5������v��r�SG�8�?2#//�N`P�)���$�C&��f����B�p9�V��DBv��y�NA�P���J�:���L8{x^��B!�����$R�}�$2���hOۺ�a�����ӈ� �G���7#���xy5n������9����0�B�1s���*�ƺ�������]>]WW����yES��\ :��P�����F���TS]-�Y����T����#�����YRui1ISS^����U\T�J��Hb"�%5��� �n^R�;u�&�x̌��*==m��a��B!ԣd���x��U��� �ʙ��Z @&S�rD]�~�P�FM#cE �s���G[ih��q��|�Sjxx��>�a|L������|�Ð�!k�5 {/Ɏ~�tМ�v������w� ��|3���CLh�>�O�wq��?���k|��1Ϝf-�T����`�ѓ�$�����A����D����Qi���X����;�s�k�)�.�H�u3��:?��DKӱw蕘��z�o:9`���J$ 2�}������䒰@!��.ڤS����p�10/�o]������G� ��!ȿ���椬ԛ�HN_]83��<]���u�p��Ĉ=�ޭm5����u\������A���aa��ǡQ�_�Cѱ%����H�>0$nي�e�+�2����I9��#�����,O�� ;�,�Y��o�8^�"!��291�u������|��e�>��/t�+����3�koge%��[�����YR���K����E����?g��(l��O$1�Ē(���i��7[�ض1��ܳ����9�ݫ_|zI@hy�g��I�/u¬!�BH�qc܂�å]B�I���^���B!�B��B!�B���@!�B��!�B����!�B!�^�? �B!�ڋܽ�z �?�J��{�8�WG���z{X��D����萔�w�֧�Ўy�f|]+��h �d�#+d�=�J,絖H"I� �}}� ���"N}q��;1%�N�}�B!�>o��?3������ W;F��㗙U�1_;���}��� ɽ]݌�"�ݫ�:L1��t\�Hb"�$fW�lX}�J����w�U��%��@ �B��������w��|#�Z��5l�c��Tc;��;iu�6gzK�A+IO�b � ��+)4AA�������F>����暽M�I�J�И��>��D-�������Nӆ�qS�9U&l5;���rx �\��t`B!��,m��Jf����� Q0�k+��ǹ�6����x���Ę��*TD�м����`������Y�8���*���ɽ[�L����~/�Q� Q� � � ��dU��t�H�2.H�����c��_� ^����x��;B!��ry Yzc^؀z�,���9�����ԧ����e�"me�6HVu��8"��}�F �̽�P$]c��F} ��'3@A]�)�qKPͬ����d2Y(��t5�tA��D& T?\��-�o��wv����j�?2Ij�<���.Ɨ�)�B}���RK�����5��ى������_P�����D"ћDb�Ou�������f�uT��� �S_ގ*,k�ID�P؎��@$rsn��Z�Ak����z�l����T]sf��j@]j����v|Ik�_#�B�[����� 9X�hiׂ�[\.���<%-�͑�Z���룈$�P��W��&��2ςSʛ�"�um,� KἓG(�p��XM D� �r����V����Ty��u�V��$�H��#"�H��B!�n�0%5;%���4�z�������N^�X��P�;d��M���*K&�:���֞���t{��ɒI$�fS��� :�.hj�7��Y+�o�ʐU�3�Ґ*q:���l+[ ���ۼ1/���D�b��;��k�׵K��fV�z��ʑ ����ZMeu~G!�B}�:z��)52����kfRXZ����8UȨE>^mɳ;QE�m�ˏ �����A��Wf<�Ln�#(&��Lތzy���W������s���w��-�^?3Iˇ�"�B!�����~ !�B!���)�_*p�Fg̃B!�����B!�B��>�X�dR���E�>�:B�{|�`�6;B����w�? �B!�� ��B!�P{u^�@49���@E��&D!��z��9��"'+-��?'��qE�QE��Q?�ps���+I/�Y�I�%w�[z�š�w!�z ���.D=�/��I =��Y�&�vߌ�,�J�>��S���`�I��ꎦ���s&C!��.�����9����%�6^�D�^CW� ��?��oksB���2*��Gh����{�h4�>;���Pv�B�׍G׍��9��翋 ���0��~k��k\x��=��מ�?C:�9k����I�uV� �>V��E�;15�e'$����=�%l��������݌����Q���>��Y~ka�Ω�]���j�<ˏ���B���;����9/?�ϳ���W�A�'������iCPzqN��5��W'Bumc��ܴ�[��|� ������wXwx��ɼ������ٯ���&^�?fl_B¡5;���s%�!cG4�U���y��޵�?���]B!��6�U��rv�ƃ�?�P�����b��ڼ�� ��._�Vk�rc�x��W2ҎMq]x3����&���BdraIVz���5�:>�'�����F�����y�3��QP`|̬��+�&Q��s�����޲�R���C+_�W3ϧ�ڕg��~��{f��;���L6�˕�Cd�d�^�����G��:ov������y]�����L�k9�Y�C��:B�䟚���-(ZÜ�kk 7p���c)��&�;Q���2ttt@TTk�[���EE����5$��QQ��i��V��v�!��坜l�0��@��r52����� ��Z�}��֪���u �.��*9�_mZ�]R�<�s�,�e�� #������������" F��2�����^�:��=K/-����D:�L�A �DB����Ԝ��S`8!�N8�0�D�����DzC�: ��Q��O٣]�/�T��-o=�[;E��z��? ��M^^������ܺp�?2�8z��+A^7։B݃��9o����j��cv�hh}�0����J6�Ы���J�@HSTS�>�F�B彭 ��$o1e�������M� '�|��� >m_1�yT0B�s�����H@6_t��Բ�����ɛ�u" ��(�9'��2��"�<��u���u.���ț�w<�d��u�nh��x� C2��E}H�� -)�x���bݝ?�PKb�n�p����ZQ�J2��L� ИwWhP"��+.��4�G��'b��7��x�MYw����xu��:�S[�m��ٜ������ߙ���/��~�ވv�'8�'��p8r2���[�����-֓Hd�r��~�L&���ߛx_��!\.�:h�������J)�:B���O�?�Qqi���!����f�ҁ��_�}����b hij����6@~Q�70�7���.�N��H����Ƒ�.����p���v�t��؆Q~a�ݒ�o��AKK�ttt� ;�|�-����k� �!��~\�{r�EI��œ�õ���Mk|�f�>|%�=��d?�g���7�0%�X��F;=�o|5��ˬ��ʹ'(|�Ą�r��+~�̳e�U��&+!�&�yyX6����0A�����#�n�!��TTTJT�g-�-4$���{-ћhҗ�h=q����'� �Cf��J��sG��@�͛Y~���@�T=M��d��r�Lj>�wм�+����P{;��Tw!�����*@�������&���q-s��e���J��u9�7ˡ�����)~}*dJŅ�/��/�+/��Mk]���v���e�͞��O������� ��_"����4J�)�Ək��/�� p7ؽt7��cDW��J��O�D�6멱4Vi�̀�cY`&id�T�D�NG��X���(=&Re�F_�-���;�]xq"�@��$��Æ���$AJ��J����ΞW�o�w�J����l[K���{;=��B�`"]����w�i�嫓��E![�<�#1���Z ��*|] _��7����Y�99���={Zݒ�|� �!�Bh�|֦��P2�����X���_Q��F"�H�H"�QbCQ>go�߳��������=iK"�EF���g��R�d t8� @`��H��e����=c,�fc�(��B@*�G<�>�q���Ʌ��@p�������U�E8���u�]7��Gy$U=I�L�!�Bd����|ȿ���m8#7)Vf��u:�,��r�D$�q!�+�bI� �N�x�(��DB B���Y��0۬(�$ɂ����l�Z8�ݹs猟d�ʒ�Hĭ['�k��q���L`tt:+w`� �㬫�[x ��`A� ��t,�&����~.�����2��` ��̉W2T��(����J˜����=3"a�t�BU��ru�iwt�{�Q�eY� w�n7e X�K$�_�a����!����;�$ ��f����-�izdd����e�Y����f�D���/0�xP{���}C�R8��� �)��̬��N��3r0.�&�σq��6 ƳDc���V��>�~:.Y5sl�2���'��B(�� c8:���Fj��H������HD""�( '�(�o��;,- AIU����~�w�!�ܴ��h�� ��s$�����fs__߁��̡����� a� Ě�,!I�9�*�'f�D&"���J��@8��4r�P�]��Y�% DJ�� e��k�1� �����GI�(*Q�2"�'B(�P�E"s#^��,'O)$Zc612H(��4��(G)�=�`�Y[��B�P��8: �B&�/�p8��ե��g t�"�( &Til���"/)�T#"�g�✜6�T뷖 ���P�e 2�oӔ�ےtX�Fr�ԁ��٫(][m�&�ub�\��~"�BŃR_Yw �sw��aܽ]����".�u��O��� Sae�THD#}��޲��s��.��]���=-��h���f|��~`������h��Q����C��N��e����:޻�ij�۳�yE��B!�h��};�xңcֶF��cQ>GO�#��͌���S�B!�2�2���Ir �B!�M8�B!�2!�x�n]]>x����h�3�C|˕V��K/������Ŀ+�z���s�[�c��g�����J�.!�gN��s�!�B(�`�B!�2F�!�B(�`�B!�2F�!�B(�`�B!�2� ��!4��K/]d���[\��J�q�����*ɭ'u�'ZIV������y�a�B��(��Y�5�~9�~ސh������DIl=�{~��o���8�m�Wv !4�bJ��\)�iK�,l��'��$IZ�I�� I���R�:�4�Bh�"�b�^/�iK�,l��'�ŤHJ�I�󋐒3d��u^i�%��<��.�B!�y0�E!�B��X�B!�y0�E!�B��X�B!�y�%�������^���'����.�����X�}>���K�0��9�g��Z�}X�a�v> ��Za8�B!�2F�!�B(����B%H�[������D��Յ��ww���-�U��*�⸉�g�n������N���4��ؤ��:������u�(�e%yJ Ɇ}�����H���;�!��d+�� X,���5E�}M������(!�B ��["�wj�qt���MLl T�U���<��֦������1�<�8� �E�����'ї�+�o���<��F�[l"�� �����f��n+��;���PZ"�7�@f�X[���o�/�bB!����U�B���G�c����O�ɨ�X;�{�/w�d�R1>����hA�R �p�C[��+�r��{|�Y"Xb�I*UY��V_��9�VB@��*ȩ�-QO��:�vu{��8`�B�D����� YE[�y~I�����e���i���<�c�w������[|n�A�)J���Դ��g�����CTh�j�R(���'s�c4E ��=O{��+d��vPڲ���{|Qc��~2*A��s�9'�]@i-Cϐ9�~�WRՓiiإ4!���B�Ɖ��e���Kf�����6�hn"�H�%�Ͼ�0_q�:��87k��6��Q6��n����`�c4�Ԋ����* ��m_�d�� &��gj���<]M��,\�(�U��h~�x���s��iإE I��� ;;��v��G��R� ��O�`��j���T�22� ��p���iإE0������9^` i܁�\�d��S�W9::����b���6q�D�⼉��i�&)1SiJk���3o2�/_�f8�L��Ɲ�ptp�-V+�=:�+�N�x�c!`�c4M����'E"a8�[ �K�d��./�<��c$�����fs__���(�U(���hd�2�۴ �ӰK����Z[[ a �R}C�? � �z����y�N�sM��->'��8���� F���$z��w��}�C�]l�[|4)Ѩd!��GinY�Y���da�c4;����CNn4(�Ξ����K����N� >��pWW׆ 0�E!��H .�,��L?�`s]���'M �,���>;2Ы..�X#$��o��=<p����_��5� �����poW�' �⚢����F �W*f$�;vv��J2Ⲵ�z[��F��7�%��]ݣ@e�媤&<�����EHYnYY�J��}�w���KF�!�J�$#mMmN�/[W�7�`�@����R�.�*������]�Hc�W g�D<N0dn��ḣ��#:�^�|��@U\���D�+u�����9�>������|�UZ���W#d�ʍ����&d���Eڦ�u�Y�l���� w�/�Y/�bB�C��T���E9���1Z��Ìx��zF}d�����XJ�3�3S�Q�(dp��X��F&�e&��c� �8� � ���<����/����A�L&���.+��P&�۝A|Α�Q)�/��� ��*!@��.�W"�X�B�GQB�f�^�����2�@0�C�����6���C㪊�"��Ϋ\��kͨ@�W����O�%�GX�ZM!V��B!�DiR"��T*��Q�$�u8�Pj�zꩋ,�駋kb�G�4��3d��׷��υ�JV=)�R�!f���s�(R��(��p�.�L'M�.�l @����&�9�e�k{�'�@�4#��r��nr��8�@�����8:2��A0��e�9��Y��X�BtYZ\�Yiޞ�M��R�'�bZm���YcL��� �ž�_�4�R�i���d\�)���7�G"  �D�Hx�j��K��i{G��Bw�ǟs�X_R��$T$��٥�"{�m��%��%9���^:wC�Xg��XmP��2cVZ�V�����'V�)�C�cp��5�g]��c��*��'��.M�b'��=�4�iإ�����"�Q�8�ޠ��ft�Ę���*c61ґ�XR�P��#qܴ�iqV�ER,� �z����y�N�s���{[F�)Dz 4"����Ma�-�]ݣ�1QN��� �ru�-�c�Ϻ`�B����WR\��$:86�9����%+-�X-�B[�`��� X����Sq��y��@���YI������3���ed�W]\��FH2߈�{8��Trh�Z�vkN�e�O�1�)��Tl6S\��첸b���=��Q,B!�� �,-.˜�蘵�Ѻ�:�Z�IC;{m!�٬a��6/bm_b�9�Mq�LZb�<�/w�ݛ��?̟� :��:ڟi7�iQ{ˮ�m6��?�\����-�I�B��!�k�z��J�������:D�?��E!�в�Z�9�v�����t�'��!2��a�B�e�1��������Z��0�Q,B���555�w��w�������]&�3 ���f�:��h�.!�Be�bB!�1DSq�1 ��+ B�*�v���_uj�Y������?�^�?#�]s������XK�mM;~���_��ZgF#�م�&�\D�A�PO��7�H�R�+�����GS�� �Bg0D֡q6�]I)���u A=6K���J��J2Ⲵ�z2�֪���7�%�����g�@�r���Ub.��봸��u���2!�V ��J*���ɜ|g]�0�EhY��Ԥ� +! ���]�)�Lc�E�� �:�h��_�&�.�����@4�tz��1ֺ�>�W����.y�3���2����qי�f��\���Jb�^�� g�\,@*\���nA�i͚"��u8��nv�ҜҲ�������a*m ����`�����4�aF�� Z�˪�M\�����9�"�:�bJ��<�t��0ӰK�2����c��fc���)u��~ �Nng���~�m���4k��dv�<;[4><:��]/����,0F|_y𽭥CCC�9�sUɘ�0��is����76l���cvwp�B�B�),7Q��\U]v�tX�2d��T��RgG{@x �w�l���d�U~�gF�%�!2ǖ��L�.�ʔ~����A��5�x������Y� ��ݰA�w�F�~��ߞ_$~��~��Ȫ:��'���|�=���RWk��7g�:W��IJ@L����<�~{ �����l���7ʀD_Z�MOlO�N h��+���G�y�+�q@iK*r�=-�t����F��ڠs-1���K�'U�Db��Ì�?+��͡���o�gF�%�!2ǖ��L�.�ʔ~f��+ ǜz�����]��-8��.ۛu����K IDAT|;��̇]$�vr�g$�����c��@q�IZ��ǿ���Y�*����"�Q�8�ޠ����j[ �R��#��K��Ӧ� ����c���E9�r�#(���I�6?�lo�(�p ��X�c���w/%���ag�Ħ0w��Ю�Q�����N@QY��40�*�(A!��p�����U'���r����-�9���l֍|�ܽ��?qM���;�������b0L�ðv��mGn���|�?����9c֙�f_�i�xDa,*.2�j�A[w�H�P��n^S`T� y��d2�|���|�.Y�;<8蚸�i���̹`�+� �G��J��L9Y�HO�P����dhP�K�t���hh����K�J��E����0��ux��9��Dr��"uuu;w�L�B!��V�/��4���R����k�2+�x�@�W��Z�#��ՙ )�u��{~�I̬G�!�B(c��^-%��i'6V2�B���2*�u�B v]zùX�B�P�}B Q��S� &� �)��D.yu�@*v]��3�ww!�BhYpL$<Mo�`� Lt*5yu�@*v]Z�!�С�}E��X�B!�y0�]�e,.�׈R��B!t��])� ¨cpt�[ ���:>vb��+�.{{���B�)���u A=6K���J��J2Ⲵ�z2�ų��o�h���wu��ȸ��P1��#�,��,_%��N�; @J� �MZ��������/����.�qu7z!��y>��x�����{�]��S��Bh�� ��"W�޶!7UV�u��qm���Z�3V��<.H��N�[K�ShD�&�������v T�U����7 ����T~U�A���� �E�����'ї�+�o��z�\Q���F"Qf�/4>Ԩ�����]_�r����ڱ�������?�f��ޏ^}��w�Fg��t�.���3N������/^�?g!�Z�,�b���,�o���IA@�H[��2O�Y��2���>��|�D#�(�Q����@H�A�a��P(��!�C�(���c�R*ʼn5�ܑ�BTNem�|Y���I�'�|�y�N ��-Wn�@|���Ԭ����'{*/|��K�+�=������ld �����+�k�Bh9Q��#ey����V�/�K ��{h\U��@�p�y�kr"}��ތ�����|��O��jc.ᰍN ��ҤD&&I�T��%d��yBOϞ��pBmc�.��x��L{�ZJ�v���+��ѳ��z �l�V���o�����[=PU����)>���7=��/^� 6�iV��!��r"�T*��� �M����"� ��nn�����SC�m�����P_�� ��yV� 49������� Zٜ��� �x���^Ʊl�_|��� a<�m�Tw"D$y~A����2j���� �\>1�A  4g?��4D ���1W�p �I���F]�bG�B(�iz���z{#lFM/.��a�������r�bMa��rX���ꢰ���:�!�y�J�Y��h���PjT�����l���d��g��51�]�@SX�+pY,��f�&їg�����L��u�ٜ'����<^`� ��H`��m��Ʉ1ׂ�(D�� q&>�!�2G�X|MY�9f���Rݗ4@ӳ�S��ҖT�{Zz�� �c��>c�A=0�Zb|7r�%%��r�R�J$�?�8���N1��8���̘}ޛ�i�&)1�jJk����� < �؅"�J%O��LR�P��#��9��Q:ݽ�� ��q�4�{���[V_t����t�C�r����y��Z0y�r���Ց�_s�Z㙇 4�;'�Bhu������ ���c���\��d��$^�h��e�a8��q,˱��8a:����1���7�����"��=u϶(K!� ������� �=�I� =�H쩦�.�v�~1 \�Q�6}1���V�N$�SW�_�\�S���~� qph����;�m�?�б6���C�u?���B���ۿ� v���[~�79]@!���2��i�����WZR��Lqa�������$ �8Bk�n͉�,�K��M_ � � rY0X�ݐ��WR\��$:86�9�K�<�"P��Q�ud�o=k�& ��y3aE�"5޷-ノ���1�<��W��Ĭ��W��{un�Mg��o��,���B�I�-���Tf����,fJ��A�e����+.�h��Hޮ3O%�Vf�Q{ˮ����5�p)6貴��x�3 BH�z�V��p_ ���ji��(@!����Ր�i�/����Z��0�GH$�����v��3s �b��#�%����DG��1�F]]��Rşs�V�!�BI4���Ր�qY̔��:D�9�7(���+ �D��9�IRM!�P�:p5�qY̔��:D�?\Q��j��Gq"!�B�0�E!�B�'âX��T\l�J��"M~�E�X|vU w��Djξ��s�4/nM��#�B�qQ,�� Y"���ىIb�YU%�y�����l�R�m���~}�"՝Z!���l6����������e sN���{��}g/����l�'����!���u�U�k�m�V�uS�IE�D_�ykM��"u&���o<�n[������6��D9����Vl�Z[[��D'�,GJ���m�Z��fˆ�\E���ʰ]jktA$���A{[�;�"I,>�":��(�� L���g�N� ʙ���ӏFs�E��ᩑ���t�r=����G�, ����%G��$�1����Vw$��M�Z��W�+u�����9�>�������Tw5!œB� 2��AkS���W'�|���\?L�W��~��PZ$ikj p}ٺ�������m �)������\��F"Q6�K3�`��M%�*>o�����%�E������=�k�D?���������,]͟���o�  ��f���l�;l��_?����W-];�Fv �X�=�=��=���?������o��}�u������^��_���<@Ww���j鶴~��o�_/8�Wm6�Ƿ�t�o�������2���a���[?��ߟ��t��Mw���;���k�n���ek)��l�}v�:����l����Q@Ww��;v�Y��}��C笕�s{ݍ��wu6�q����f�1B�:ʲ �� �2Q�8� � ��hme�"���%U&���g͟M �ؠ?�0�@X(�YJ���/ʲt����J����mzѝ��o���̡d����\��Z\�uN'.8Lޜ�h(���_Gz����~�ץ ��� ���?wǩY�y��O�T^��������,յ5���*�￟2dՑG�%��c�J�o&���l^���;v ����O��?x�5?�S�b��,@|�=�����ޗx௶�3x⪵SՙN����շ������o�����馛��u�촧\������l�q�_q�:^���w�ؽ��t�M7��z���8��������w���z���Su����S����1~��O��!�Iᡎn:����f�z���2�B�=4���\ r���59���~oF��J� t����Y�t�����55՛�� �X��ҤD&&I�T��%d����{z�� �j{� �z�Y���g����+.Q����*J��N9��u��}�)â���u��:����hû�������g������Q�i����X�6���']}gG9�x�G�_:����׆|�I�oѭ)��O>����O_�TG�ͅk�g0м���l8����0 @��O�s��xoc��8��;:֪�U`klr�ef#��"̌C2D�:��!d�Y`4t��e�a8��q,˱�D}i��߰�bS��n�|hW�(�:�R�W��^Z ���|�X_�>���`Tx�N�7h�qGb *�D2�C]]�N��|1�u�mL\M�s�QW�yo|��H��c}t���y�'�]��x��7$=�����uqph���x�+���_���j���N���ީ:�\��kwl �өW�5O$�v�?�������;w������ �=x�²Ӯ����,�p�������}��>�����Qz�x�?������_���]���`�tC�+v|q��-�wE�e�����*�k�)�Q�?|���=�F��?�'���5��`�3}�����t�Q�?p��G������z�۟���tǮ�?��Mw|&>�ߞ����|n2�!t�J�%��*�U��œ, �E[���^ JH kLY�����3Me/�@ �,��8_#�L�7b���C��)�.*6i"��cC=�!��W~�A����X����������l�0�^����՟8!#�ظ�EG���@�q� �!;~����Q��q��+��3炒��D/��r� sB�裏?y��ٹ��zb��?ݮ��Μ�<��;�Xl�6�������]x��o�pc<��aˏ�{��ƥ���m�{)��!�-�H�Se i���궕j$���[k�7��zU��9"R�+^��f۶�� �������Vl�Z[[��D7��q ����6o��V�eCY�"ѷ�ͷ�BCm�.�0����a0�H� %��f��5v���#T�U��� ����g�y��7^�# ��]���yM�y���o�l����n����� �Tt�����2��(�s ����K�$�\����g��Q�y\�4��״%�5"���P�j��"��J���椁P����a*��ܠp��Ć�"�H[S[����֕�7Xc���|Q,K��/3g�X�����8]��Ƃ9��P;�&� ՙI�jjD��M�Je�兹����yv8�<�!Oho���+�^�J�f�Q�2��"�z� �7�l/z\Je�e�����}6��+�^H7)�w;�%U��>K6ц-���^�:�~믟]��-hw�e�x�;�K ]O��a�g2�4}��[~p\�^0�����{�֙D����[����>�U�s��߫-����|��O����y�Hd{��o>^?���n���>6��� �W^��l��{W\z��ҋ_����r�D�.|Qė8d�W�����+5�}�����7�s��g/^}�Qz����M  �S[�?���*�h~��{��rb�I����+��Ӄk8" �%��y['��\{��+մ������y��BN��/�!,4��Guԕ�����ko�����}��>/��f�:���������3~�}����<���nʭ�R��-���������O�ˮ=��X�Y�p�QG}�.�kWu�QGu�1Aq�o�h���SN�� ��~|���t�r�앫N������G �'���[����r�%�z�w�N���:'^w�����=��g��F�|�x[W�x�U�~򝯟z�����s�ژ�ys�#���1�=x�K��N�^���N��E�\�m�"�\#y��3������h�����;�:�;_��;-�c� '�+���Ƨ���{h\U��@�p�y�kr"}��<"�(!G��*6m���^_��|��I�LL�R�8JG's�43U�ӳ�e(�柋�Ƅ���������7�Jb��$q�]��:3Gd�Wp�9��9�A�� Q�S���84&�UǗ��((��%�,'� �f���v@�UN�����ؘD�;O�^��̐e1�}+L8�`�M�e�O��h}���Z��p�Uߴ��/�5�5I��,�NA Zv�v�oư�x�ϻ����LZgb�:����������R?�dؔ�D_Z�M�;�F�-����l&�"I,>�":��EP~�o-��'\����$����U�ԏj�� �Y�ݷ��� IDAT:{4��#L%k ��s���h�q��&��j�ɯ<2���+��Q ����:��k�q��i�L�G�Q� �ϟ�p��.?��{?���h��k�������v�i{���—��&v'�r��)�7\:(qf?M��So?sN����3����՞��U�a����:M����?Y�+�9c��wݢ��Mb^��wD�{�wD�1�Xu���ү_���/Z�����n�4t�T�����z���N1��*.� ���ҹ��:}�j�z`̕��|#jl���<{�e&��IJ@LF����<�~{�7eΣ���(T*��X8�4�8+�"I,>�":��E ���agk�N�Ր���&�\ㅆ,�H�? ��@�6�Ң��r�� �oڴ����bp@�FX�wҐ�Po���J�]W~�"�� ���t��LP���_W�c�\)�}{۷|��uZ�XY�3�oڗЗ���'m҉��o����N:��h����kW�g�|ݩ[ �Tt���2�?B�k� Ia�_���p�}Ȗ_st�VWz�U9c������xĦuv�I+��8�m1��V%��~�f��;V�?%�KI�6�Z�ЙL Q�?40h�=�B�-:������:V��n�~K�Y .9����Ws�)oΘ�h�^J�-Q��8GD u��9������o�#Z�aƮ���,<���n��W�m�,�e4-���4i���I{z���}g�����n�1@�q,˱�Aq߈����_��+�HR���I��;����,�Q!$IJf0h�q_b3l.6`m�bb��E��L�H�Ϫ*�Σy���X��&6���:���IYl4�aO�k>p�Ş}M�b�x�A��%O���V��7-��h����8�s�}da��+�El�gd�_���옂�#'��P�� ����c��IO����{8���_�@/��⅟���T��ͧΚ����'�M�[=}k6�+�����K^��x���n��O����/�}��H���_|���Wמ����ѶN��k~u�Y'�v}��/ޝ{cд��?������ ��`��w������'�|�=���������'�;�;������{~��Y"�o/��;o�wǣ�\�����f�o��g�1�����C����cn~��?��ڃ?z����\z�~��#;�~�+?~�/߱�r��?=��Xm�h}|ǣ�^ۯ�z�Z�}����Q�q�xs�g���K����WR\��$:86�9�{+Kl�Dr�3d]]�Ν��}��l�0�^�w��8��& ���V�uug�ɀ����!Ӝ ���0�:p�]��ʼ"�`�j�,����j�`ץoP:'1�V��� _zW��_3�wG}�����$6���{w���9&1�uH��Rwk}O ;GM��q��0��(�L���g�@�������������Y$�t5�ٽ�}�2����ND>��V�F#�(���h�t8���4��jm�3���M�tM�to)��,�(/�+*�(� �, }Q.���rQp��"��,E�\� ]h)ݗ�iӤm���̼��eJ+-������f�yN2�<9s2��5u!b�w�L���H$o��=>�_q��� � ޚ��]�H��$$��'@* |�����@�w��K�w��+�[��[��{���c\�~".�t���_�)�#?���pK��=]�=]c6�܌���� �g^���Yʯ���Ko���F,ٴ'�ĩc?o]���� /���Ċ�]�ݡ�w��D�W<`Ē�������/�Q�� ����]��>�JNNNN�m�8��Q���i�-��)����C0Nt�΃�=,�kC����M#�����w'�8��{�C��:�/�[��!����Q��XjyHH�{H�&��JѴ�Tz��u- 0��`\yhϘ���L�4(H�+��7�����! �f��\V��$ɦ-�*�N���M-!���:b�z�:�3xp�@�ݷDZ�Rl���5Pl-���e����rm�T�(���� �_�$S��� �����@$.{):x(��]N�!�pTD�8A�v���~R����?<,�٦�������o��{=��oM���#5�b�+�.��P� M3����ϙ�z����K^�'�� �����g��iO����ˣSWM3.q�v�������~�Π�?a� K���+f����C�VO�����˦�l���1�{�1����?�a�r>9�G|}j�/9�g&�W@��߯���H9���S+f���J��CX����X�"6s大����6���=�6t/�ӧ� 6��[h�=!��O6l�7���� 6lح nE�z����lX�tg��/v0S��VLX4N����5�"w ~b��=���:��������Sw�K����u�=�X�����tuA2�0 �������`�� �4�0WSM���+�.5��~�@{�K�LMghw�����B� <'�lؒ��F��E��U�n-w��� �0��F;���2�u���1fCf�[�/�"�\��YQ�J#���e8#<8G�q�T�}�[��G&��A�{�0QO�96�woh}GE�wťI5�X��Y����pE� @��"������֜�^���_�,�� ("R{��4��ΐ���U��;dO;v��F��gdہʨ(����z�����T^TT�&��Nzxy�1ca����`�fN�m�6����vK�ŴRoo���(>��@����^ɪS��p�lv���H��������ݶ~����#��ov]T���Τ�� � ʨ(�����Ҟ>qY���;���h�k��c� ���}��j��I��_l�B����Bw ��Q�s'2 N����������K����u�}�Y�����ty�1S��z%��$ �!�WS�rt��@�"��ܹ�'ğ)/��y6��n0�r�;`@��TRin��&��/����<��������p�A�P�W�f/����0@�,,L�B�W�� ��^Z�/�,W��a��O�^ `�spw'���h��T}o�i{����y�R�� �ji������O�߽)��^��|��uH����'�Rp��;�����\ I��jؒ�(� [�vŁ�_�c��/�Qei�ޱ髓%N�[ c�{w��rbb?����i; ȃK�CF>9В��(+(�{��~^��L;����@:h���Ex��|�Z�)�>yE��m��:��9��Uye�'kw_5�0v�˦ 曊R}�u�9���Zq��u�gzY{$�ľW���%Ox����zњ��}���K�д*U���gr����]|hq���!� �1����w����Ґ����y�����I�����]q�/� �98�.����=$b�6�J����%0��`\yHT��Vj�Di,. �+���˶3.g]ÉY��UyvI�6���­RJ4}zذa�~�}1۰1�{�1����?�a���r|+�D���<8ƷC��dpa@t�����#��&it�`��� ���[W�ݩRXA@�����t��\���4�����p\ �9)'A�4�j�Q_t�ZE�.��,��j�K�����]�[v���q\%�e�V��/�"�\��QQ�]qiREM%��Þ6��0WsU[�����s C�=w2S�W�=�ʋ���Zm�q  �Hc{*� ��ԝ?�m�)���e112�1����c�”�k7�q{�y�Ջ��6���…j��F�$�i����j��Rq1���ۻ�N�v �D�s�d�)�i�}�A���e3��fG���D̔g�^�(0��B}HGu��Դ? ��ȹ�n���G���3�%�nf�r<}��Z���OF_��}c ���J*�p�Ba �����q� w�� k�7��)�z{����5���r�yNP4����)I.W���(� �Qg�X�k�\�E��Ɇ�� �� xn�O#) �vu*��2�K�~я*K���M_�,q�"Na�s�.ARNL��4�4��h��[���m��X'� ��CWt]�Q�3��*-�����O,�*=�� � "4�*�2v@�C[��2t��y��R���q�q �xJm��7WikenF�-��� ��"] ����-�z<��<�y/�Z ���c��И�yu �|���J�1:}�k�6��(�Ӑ�q8��|�-��&w��WY��?�r����x�aэ���ޚeomX�8�]"D�n���JE\ 狛����:�u�d�H|�E���^|�����Z��� 0��i���j` IDAT��m7۞�45���b#��IiHa�b�li~h�6�~ 1����ϓ2�[7:��b�NL"U̐6<��4�a������ ��8m�J v��*n����`�ˑ^Q�W_�p'� �9芌�6������/�\��W��������]�� .�:uǪ�vd�- _x`�Dؕ��['��Yf:����o}�k��cS_ڹ�� ��^�#^~mëJ/�1�ϯ>>����;U������_X����OF�s��0g^֔�{�I~r��x�w p�{�#[w {��IE�����S��C_|�� ���H,��#kYƅ� =VUƅ��{ڱѦ�:�u���X�_I0�6�PG@ô/{��ޣ�@_�����q��� ��6��.��+ ��a����@� �y��V����PHHHHII��"]�/ ��� ��gl]�Y����D�Xyt���o$Y#�fm�L�ib�sw�ߘ���"����“yR�b�]�Tz���j���v�n��zn��� ь���A<*Y]խRXpf���彇;p�������Ѫ�_w[�ё"�5qD�>>2�P^��v�n�͖Cc��{�`,A�n�@�8\.�P'����y ;V7�f���Ţy�� ��?���Q�(5=�<���t��ЌAA��AY,� � ���,AA�|мX�"���/X��#1>���žO���n�j�����u�/`xɷӦ�X�vaN���K� ��=al�J�?|.��ٍ� ]�+,R�%���a��(�OtL���f�;�³w�����r.�x���'�Q��f�Uh\�(�1�꒼�j.� ���e�WU�[55e��5(&��z���\Z� ��+_̘�-��_������w�mW噭�l��/�EikB_��C��]��"�_���`�� ����|e%z8AE�j��G��(8u7/cSe��ߺ�& Tr�W�T��Q~��R3�/"�_s=㺕��D�� 0��Z3�f ݒ(xkB�w��񡽿��%Fܩ���O\L����5v���_�y����h�'��ڰ��'�tpa_ �K6�I:q���[�=�l�,�+�/ڸ'����?~4���v��ם�:ѻ���W����.>��|��/?|)^�\��������#V���Q���.>����'�۞t����4/���Ċ�]�ݡ�w���{����k<|�����C�\�-�_�)9yWb��į�����x1�uwA��qQN�v�h��]N� ��0�<�gL��s%g�4(H�+��7��$h���rY��$p��TUav�4e�hj ��׺��v���I��:��43�2�xY'Oc�R��ljXO���ɸ��i�r>9�G|} �/9�g&�1j��1Y��9��=�䵑"�J�O,Z��r�Sc��`���̞l��'_�\ߐ">^|��5����aÆ�����h��YU\$���E#��i�̞���.)f��$��q�,�O�k3��a����{�C�=�����3�_�O�’�3�NJٺY���aæ}���?oذaÆ��Yƶ;� H 9*r ��� ��-�g��ਮ0I��s5�T@Lߺ��Rc��{�K�L�,6+�=x�A��F�����.'��<xN� @$M�w�]�V�hU�(�E�/S�jKy�n� ��v��5vs�r؝4Ν��?x p��t�""�gO��� �?�_u���4���ҝ?�m�)���e112�-�g�3��$������f�����Y\R���ҫ�<4.F���]ZR��Ւ��J*�����k�R��PjO;v��F��gdہ�<�ᤇ��3��_���u���� -Dz�� ks3�^�,�yG�1Gu��Դ? ��ȹ�n���G���3�%�7�赔]MM��ȸ�y��� ��0�r�;`@��TRi�[Ə��%n�N�ɍ ��~�y����C��07��1gh�ΞU͊���H9�� �$ �j8MZ ���^)Iϭ�i$߮�b��^s6�����X�W|��������*.�x(,Ŀ��)Ad���^|��\W� M���*��>�=��� �ǒ�_������c�W'K�����AZ�#���U�m ���:�����l�x�!QA�FU%Q�uh�rU�N�3/\�T ��9�F)M�9:ਬ�(�Bm��ͨ�e��f��CY,��q0 �V|��F�؃p6�ͣ/�͘�� ��gk7�����IM^]�qQ�s�_q�� 3�X��bE��[2s��T%��M�����7�ܚf. ��������HQ���~����ˮ����A4\�jy�֜��.� HIȀ�o�^>.mޯ:�n� �c��voI����OD�7U�[R�΃�m����4fn 08�!���]+�����͊~�2��s|& dR.��{���oI��,��= �[y]]�3-�G�(�� ֐�zF ��gUֱn4��DR������y8 ���/GfZN��/���y���?l���@��dW�� q��4̼/+(�{��~^����w뒪 v�m w3ؕ��['��Yf:����o}�k��cS_ڹ������ɒ��i6nh��V�Ň�zN{�_��/'��]�N���z��*j�<����z ����B{ٕ���3�u��]CX��<���6���������#5,[����������\˕M��������WVUƅ2`���2�TE��� �U_Z�q��~��^����9�ש+,��l蚲bYXx�A$�3�T����ʂb~Xd� .P6Cy^y+?�1>���GBBBJJ���J~IH�ЅQ��>d���]�>�I2\�G^�豳��8ݚ��=��.>��j^��n�@�Ƀ�<)m��.U*=]�b���i ;V7�f=�I�m�hF�t]��V;y`��m�u�A���#��� 0 ������cu�n��E���c�� ��r� ��r �r8����Sر�I7�d,͋EA��a\u��D��A�)�Xݤ�-�f � � ��bAA��e�� � H���"ݗH�q/?����Ң���Ƭ�}��i�Yӑ7�||��j�5�筓|�K��6�ǒV�� ~|�җ��!�%�|�~��&m�A�SE��M~y��&-��[���� �i A��?v`�#��Z8>1�|�W�U�߬YԷYr�Ȁ�<�Ã��<�e՗VY�q�B��饰�],�mf+����s1ʦWTZn�$��W���4_C���$("�O�e�zuaa��\E�!�6��Mɻ��[�ِ[n[7�KH(�E�%R61$���s�Z�K���I��I޵��� }Z��vWLx����,����8��/V��1i[�=u��2��_��{3ύ�4�M�E����d��ƕy@�\�Zs�L�W�h �R�Am��E� �99V*�{���[�:i��}#�R�bnf��z<����z�u;& ��Qz�kV~$}C������!���(O[��| . �hJ+�8�r�T7�2�# ���4��b �k��n[o��Ќ�{����#��E]%�e��X�y�ѓ'�\��Y}�t���v�v(�ęS���{x�[��:�mܓt���?��ǃ�mn����#��k�C�o�����g��s���ik;�y?����'��������1�~;=�D'�<������D�>�e2����*�5�/�z�M"��߿T*�Fp���\UavҴӬQ� ��[���A�*%mtoS��V[��]j��R万Dl�j�M;M�W/5���K����J{�D��@"�[5��:��^�ց\.`\κ��B�/k���5����%$��"ݓ�❴�$K;^�z0��X�<:u��1��hG}0�?��{���iO�5c{�z��I�B�:���\9驱s~�MzfO�ƥR��ljX͕��ɸ��i�l��/����Z1cƇW"L�a�f��/v0S��VLX4N��泝~�a�*0�Ll��z�T&�/r��N�T�D*1��.� ��p����e��㒤@�#H���FI��R���Zp�)� \�o���zG�4- �2����ld��!�PW�xFG����\�M�����F]��v�7����0$��"H����Ҟ;��w�+ϞN�EEy�A�6�8��s��=�l�lu�Ο̶Д��˲�ˆv�0��aw�r��H�!C{�JJ ����7�.�t�sg�ie�����������ņ)Կ>���g�!�F�2���Pz-����,z=.���R�M���?�􈏏�2�����M��S��Pw�oo�.3�Y�W2 L��P�� �g�K��:n�pg�$�ah�)��x�zٵڶ�v�|Cn�m�-CB�b�K#I��j8�SE$0���v�k�h�>��[![�ϭ�i$߮�b�:�07�J4�� "q���@;L��~_�& ��=o��#��E[7�����fʜ�mI���"��/��eD���^� ��5������6�\ڜ�Z��k:5P�ڶʃZ��PUi�� �ն~bT%J�@��� �D4Mc�������h����xJm��w�Z{� ���6 e�ҥQ�s�.s8��|�-��TW\.�\.���F�(�J\�����LC���\�m�Q�tW�A �3 � ď(OIyR{(+(�Kx������hWA��$����\�����k�n �S��%(y�� יִ�6���Lˉ{��^r>O����M�Z�8�]=�D)�S�||@�k�f��I��~hD�#/������鋇^�l�������M��L|oͲ�6,z��l?i�LF�L ��d��~�E�fI`_�o��N��f�1�I���XSېC ��zDF� ��s��������^xcH���_D�8O���7�,��Ԕ����6'��R�;Ccm��7@Br8|����i��z�I���-���!����!��X��y���IHƅH�U�� mu���a<�q}�W�}Q��\=�r����������lpYթ;V��#�ma���&����D��:y��2ӱ���~��_e���εN���^�Y�����1�\رrG6��'G����OG=]��}�S>k����pi�k��ԕ�����t���X��%Ϫ���j������5�άN�苯����E���#��u�i��dr(e���mQz�-BR�o������#��0�Y[X�m<�8��uY�m5+ �[��H�W��K�zp��v�tY�'/���X�_I0�6�P�nSa[���8_�w����y�M)"& mVk������;Bbm��C�Ͽ1�������fu#��/ ����#Vsq�I�ȰY[>�l���ܝ��7�wt��t���&����X�^�Y�99u��ÉN�a`L�;�\w��vt�� ���"H7Suz]��u���-DA��u� � ���,AA�|P� � �t>(�EAA:����.�Ё��Ӵ�\�_�F\�(�ӪWj,��N6(�~�j��< IPD���������J���!�8bEdx�����������&��X�Ka˻XP{��F<2iЫ!���M�25%�ʍ-Z.�A%����Cঅ^MG����{������N� /�v��KZ�w����]\:z�y�[��J��'��n��I��y�x��zw�J��-+�U�w��U�n[� A���= l����[� }CB�5Y�6L��� ���Ұ�G�N�<4�Ӗw5߂��zF��J-�r���i2/W�9���1J�_z�����s׻ >�tjd� �x������2���׷�9��$-�m��]������w��Z0(>�gp����Ѝk��=��cٶDAV��Q�:�o@�: ��A}���@�wd�A����i���<�0h�������װOڳ����A��<�[cN"�[5��:��^�ց\.l�1B7h`_��i�M�^���h�q��fF�'�i�Ֆdg���mQ�cq�2������ʊ*�D����1� <`Ē�����5�s�zP|(@��ز�Ҷ��~���GO���ñ!8k7�c��vz��N�y���׊ �t2m5/V�フg�u�Z� 4P��2��ރ4�l��0�2r��/�B����� ���.]J��ؚY���q����������q�\��H��G�B1���^��4�#���lq��R���\��@p�GiiKJ��qH�`quɗ[����ѩ�����E;���1xf��_O{z̨ۋԻ�H���ԹhEl��IO���m��3{6�~� u��}C���]��� G��'����C���-���O��1��+� ��u���;�) G{+&,��r�Ysk�9A���x<������jF�M[����3�'ܯPn)��Z����G���3+��$޾>^^�B�&_c�P�-5S ��ٕ�qg�$���8�7��4�9uB�����I�o��pm�\/2���� � �z��;��M�}�]2�UFEi�}��w�=�ʛ�i:�Zm�1 0�#����Cj��lu��oͶ�`9}��cd��g���xA4s�c"�m��J�N�c΃�-�R�f�E��L:�$к�&0���'=��� .ݿ^���UO� �QADD�N���m6/����X�bi���p��QYmQ��4�w�̡����-����0�iIBI�4�a��ܿ�?�������j���᪺�R����H��[݊Y�H� ����"�kL��J*�U[�;9�$\���E� �:��Dz]��-��O6��V�Vg�s�~I��������w�R��ɵ?���o>�o��#��E[7�����fʜ�mI���F�~IHH���EQ:�����)n}�@c��6Y�0�f�>y�a���jKcM��¯�����[�2wk�UW\.�\.�����P=���S�2�4G�%'LZc0���� ���ݓ����#��9���;:��DQ�i�=��p(���pH���oI����Y�o���-��y�D���\96���q+��� '�����M��*��jެ�e�S� H��X�[��3"}SR�^ �_��gk��::�{`IZ:< �:ɻ���ᛡ��CK�n Fg�Ä�NZo.��z�m�G�� H�f ��.�VR��U�eqPfWG��>��K6�;z����_аR�t���v�v(�ęS���{x�[��:�mܓt���?��ǣ����I��?�����[ۏ��}ׇcC�Oa�)����C0Nt�΃�=��Q � �,��(��Q� ����(.>� ����������R�?�pytꪩc�%nю�`v ���|��Ӟ3j��"���+�,,�,u.Z��r�Sc��`���̞�@��L��ȭ d�+{��x9�՝R�~>�Ԋ3>��`�[7k�~����p��b¢q�/7��/1� Hw����[=�%��j����b1�@��ښ�u�?�y�DF>ο����2*J{�d��a�<{:���ڌ�Α��T��թ;2�BS��'.�bbd�E�d��3d�#қ��N�`����m �c�캨ҩϝI��Ar�n���y�b��P�����V�� �<0ATT�N����y�*�J�T��у$���H�NK];�Ƌv�H{���}�[x��z�}:�$\���E� �:��Dz]��-��O6��V�Vg�s�~I�����͆�\;�_ŜG<�ڦG��#��E�t���j��)ߖ�i���' �)Q���JJn��%��i����-��!��wFz旦��p`�utL킢(��pŅ��P�;n��9���2c�m!k�����ܮjiY'���LjRm낿+� ���w�7m��UP� ���7���pp�1yw[螪��'.A���Oxg��ػ^��~�?�����-: ���8��Ј8G^n5��&'j�⡗?[�r76u��͇L|oͲ�6,ꢳHA� t�-�[���2����z*HJ;m�U%;�����|��6������/�\��W��������]�� .�:uǪ�vd�- _x`�Dؕ��['��Yf:����o}�k��cS_ڹ����|��S���8����W�$���ǩw����=*:�å��}�OPW���{k��nb��<��nz��&��c��K8�:� �/�Vf�[sTh$A�S��|4���KB�tݧ+"G�<:���7�,��a��|&�41�; �oL��`� � �N�X,�t/ά���:��D'�0 0��k�;�n ;:RAi�E�C_�A�6�>P�v�~݅ � �t>(�EAA:��"� � ��bAA�Χ��Q���ýppgUA����}�x���{`+=]U���� ј��/�34 �#o������k��['���|;m���^�/niҦq4�0Ud����o2.�A��ˆU?���T�\�AuEiy:�-�����s����r[[T�y� ���P߹�Os/�$lP���� ��nW#�]��Ǖ��h,V$��+˼�u]G��ڦNig��D���eIZ:|��������z���Ç�s �6?__�߮�>��g|^1|�̸� y���]/�>!�Š��|w�g�|Z��� ��@1�׃ί�9n��eGijV���;� ȃ�QSZX�6�I �� .\����,�;m�r܆� y�����X�Iu���=�e����c/��dU�V�aȿ�23����{�I�a�(*�0Q�["H��H��zCu�%�o|G��~������c1��ʴ�������f�h\��Hʷ�u���W$Y���S1|�����Q�W�|�v�U�ݢ`���e &�H!�F)m���jټ ?����8:?�@\9p��Q��k}�bҏ�#�� P�ۯ��͈� [���o}��1���_�����}��c��|6���%xt��[��:kn�ӊ �=����R>N� Ue��Z; �c�I����X�NB�+$ �u��<-W+ ��W BB=��A����2�,8*�W��IS��2�g��Z��0�<<:ܛ�ԫ��4V���hH�<�P�9t�ͅ7�u�Q�Œ^�������*G���bs~꥿2�hEd��uKiWxOe��r�?W�5���O,\��j�q�[��>����g�=_����nj���H�k�$ K!K��V�f�����9?�&�?�g�ù��)�W ���T�07��Lf�L&��†�'s�q��cMa���<�bƌ�D.�>������_�`�,����h����(�E�����T^�r9���ȕ�9���)))Y�����������]�(��ՙ�Z|}9�._ή�zb �� ���|UM��+ĭl����(�yFa������������i�.��4Me���b92o�!/5#;����j,5� ��vY z��va8 ���:� �����H�-�qD�s�x�t ���$���ځ2*J{�d��a�<{:���ڌ�Α��T��թ;2�BS��'.�bbdw #�� �m+)1@D�ӧO�����L`�|v�0��<��m�.���܀���7�.�t�sg�ie�����������ņ)Կ>���O�@���0�K@Y����:�aS��hL)0B,n�U�4��-3��q�X�~���]��Fr�=�����á--����kk�L���@(r���øl��l���. ��s��Z�8�{{{��g�ܴ��Yp��A@�K��Yv�0���ϋ�㲛&$$�5� �t��Ud��@����l��X5P����Ӯ���ِ$�r5t��(� �Qg�X�k�\�E��Ɇ�� �� xn�O#) �vuVs��;N��a�����5i���L���{��U�/?�����6��a�[ �~�Ƣ��.�����@e�|P3eN���f�vi7Ma)?$�w��k�%%:֟�;LVqx��`��a,.24�37ԧ�d���i x`�����}R�[?�ζ �4��a��~�ne^�����(̺��CK�y��jjj����> n�V�J%�Ͽz���q�_����ɾآ�a���7��n?�&yr?kJV��~������n[aEz�EQ�i����p(���pH���o�1ඐ���}KfnW�$��o���u�3m玢�/?���r0 <����Hl0��F#O�A8����f��_u� �pRNp�w^ܴ����&�wWY�Y��c1��'.�׵�c��m.���#REDT��1K��m�� ��^�+��� \��g��㛪����{s�7I�wo҅�"��ւ}]~��(�(� �""8�0�#"��𢲨���� ���8:hղu���6M�tI��ٗ{s�-���B[8�O�H���yν���<�85]_T�A3�ztF�Y�е_ .Dž:� 0�=G�3Wȯ !�O��:9C��t���?�ly����S[{fǜ�" d2Ymmm�.�E�r:�" ���Q�B�_-b(�m�fs��\h��3���l7]�K �u���S�l�r��tuu�b���l� �'z'�00��:EFN �����kJ��������*�u-�]Z\1��{E�"}���E��Ew�?Z�刴wN��Zr��4�:ZJ�|�M����Al �Y2����܉=��6iO����^�����½0kD᩵�J�����܈�3�F��8��tt.��18�s|$�K{���vĹ�].�8\@�nc}�T���6��k�Ƥ@i�5b��?�i\N 8�J ���#�!��p{��i��GS��C�.��|CE%{tdxsE녴���>'��r� =����s,��)/��V�v��LG-%B޴r��#Ӟ�g�����w��%��/���x��E W֡�ҤLe���V�E�����K���U�r ����^��9H��"����?>�����y)�a���ھ��k jM�U�����>!���0��Pݏ�}�p�b�b���֟���y��ҀB�:<&� �"hu�@ b�q�^�e���"T�@ 9W��1 ͼ`��X,�@ b䁼X�@ ��c`��eJ�F �������tA�z�E�M%k��C���f��ꋋ/�~�#�0&et���Hutm���^�GO�9��)��jc�BF;� :]�ո�/)�ybx���+�#x�@��u�/�z��j����7�\\���k�}J���z��ھ3'�} ��� �fl�𱶷g�|0ؽ ��oӎ������b*@�j�Le�-ܽe�n_� ܛ�|�R�u�;�/��85����?/_��-`ʦ@��]�gI����!��&3�UZ�t�`:�� �JV�o�/.5����12!ɸ��z]}���I������]'#�d�V ��(������:�3�(3A�e/>���Qr��&c�% C� ̋�[��@X�����П���V[x���'h���W����v�9�`g}I?��~�d��|sEI��ɩ�����>2��{��}0����w���d� �R��m^��,<'r�k��2}���4���H�N'|�'�Vm}���,%��H,5�ל��pT ��TQ� F�$�� +M�|S�\�i���1r��\8G�x�Fm*�cre&��&�]g��I�c�|/A���#Ռ���Κ0.%ZD���䌋��i99999c#��$vtzfvv��q_W��ڌ� ccD}=w��wkO���R��\$��6ټ>���R_�龚Z)�_���Yv�ذ����G���;_����w���3^��3����o��;x�?�����S���ˌ��� �����o?~��kB�q��v�;�㾝/L��ec����;���{,��Y����k>��ǟ�����&E��.Gp��|�ҵ¾S��w�ڟ7ϐ��$��|��1Ak?�"�}��Z�z&�M+��1��2`�c���hV���|���w�~���L�������*�B$@JL~㋟�����#ίy��A:e������y�~��u!�G �4>5=3+k���0�Y����tMx�̐yx�(���l�|�������z(r� ����W����bs��L#��鷙��M��%_��F����O �������������uER� �����OsY~~~~���Ek����c�K �R���� 9,�/�^eѻ��d4;ϟ��E����������l���d�H����#)KsCǐ�U]6�D���]]���+8�B���˒ W=8e�M��V�M� ��vl}��)�=�I�aǓ/��)�ٗ�N����w<���Wg�I �ӳ�SKW?x����뮚�����w���.���] U�?�۵p��?��D��v֣��>�������a[_){��#� 9��WFdg ��d��XԪ��ո��m�� ��P�r�,4S��?zꝋ�Z8��/��{���q�� G z~���?��b���P)s��Q�y��G�V���k r3����v�ŷ�#�?;���w~й�ą@(����£�N4�"��]B��VUt�haE��׶�C� �X��LIS$�{���P�mm��^p�8��vwMk�7��f��n�����&��.�a��Sx|������t�w��|6XOL[��'1����N�0�0�gKU��O[L�1��rco(-l�#x m�Fe>$f��)�ޚŨ 1`��p����8�#����Ѵ�����w���G,1II���;av��s!gn� ��: ��0�pB��{ ���l�c�)��?<���)8e�269���{':����P�*8��a2�k����Wȴ9�g^3������`�-��3��������?�, ���"}m�Z-���J�)�B����1De���e�i+���̓)h �k>rX0�����[\Ӳ��U�g�8e@ ��q���P�o^���f����s���M��s�h�y�e��x�u6�6�u&F H�yy|����F1N��ׯu�<�P�B��g,w��c�eG�3������+�`$�1�6��v�$O ���@�q�{�c}�/�0�{1�08�M�:Q���>�8tUX7�����+�U��������> �o���= �*�A?^3��� o0���|{I�E�]���H ��D7j�/���[��z�@0a�2#�Y��d X\��,�+�u���4�^�n���m}XE5��}�{?��c�x���^��cξR���<���1X�,;����� dQ��6l�&N�����S�R�~�@���^>Ƈc!�(*�]7������i� �wʞ��i��bA����}����[�s��A�0�*e��8A�l��H�͐y!:�0��2���|u��4��3����Fk�>ܘ~��q{H�D@�[:� a"ܦ�Cg�x� �@��z֍�s���Vĩ�����!գ3� �"x���j����9����'h����xӻU �T&�-����)ρ�(�E`�{g�I���Y��0,V𷮑EQ8��?AQ�r��k��}�Y���Aˬ��Y��������q<���f͢o�ō����eS�|��<�r�i��'�g�_m!S�5ﷶ�)鲱'~_"\&�E�z�=Y�����Us'�qJ�C�0����0�ވ��n��3�X,/��7'�i�2}�C3����ӣ n�9�q���ƫ籀�<0 �j>U�x�qz;��3T�EQ8��E���^���2��伇 c14:�E�;��m�nL��dT�;c����J֜g�~*FFX�~}�ͽ��3ݥ[��۾|a�#ou�Ly�yy��j��v�C)P�M-b�����r6u4���u��b�J�s�5����R�2����;V/�9����7�O6tJ�h$1�PF�^��:>���n������� M��h�4t��{R_O@����;D�9�]~��������b�Vc��+��($vcM�cmlt�G��M�˥|��H3�n��C�=���x<=C�Ch&��y�������"��]99���p%B޴r��#Ӟ�g�����w��%��/���x��E WWR�B�GeH� N���R1l�<�S��X1b����~��>�g�+8���~�u��%{��.��i�P+w6q�>��d��JΒF����cmo�|��y}D(�\,Qt�F%b3.�A�k���H됄�OHS����O�Y�o�[�^>.���i,���!�U�]��)�l��S�V  ����U�M��]l{�3�Ð����da�㫓��%����W���ZNou��Ԕ˱j3C*��ئ��&'ƋHN�W��Z��lU��o�(�p?"9U�4�5_[����LF�g����&Fgb�=uy��1��c\�n�5sW�ѱ���1�=����K��<`��|h��Vg�xmD_�pi|R����ʎK4�IQ֢�~���'����Fg���{*��5I�U'z��r��t���a����� #%�c#M���~^d{�3ɋ����8��lm�3t�|���kc�B���l��5Y)��������nXR�5�p�������������f����� ��R;���6����lcb�$��C�:�F;���,n� �׈��a��S6/`k��Lj~�>���kj:��#��.����f �ݚ�g�e޺H�D�z,�E{�Gk>lu GW���6�R���@c�����9������KoV�o��W���x�MY���)�ts��������mzW�3��j6�������[W���6��e�r�5�{>ؼ���`��_&��%{����3n������}�>��>� �^� ����z����<��is���UX�m}���:��o=�p�N?`�%�J-�-����,���C�&}���߄��Q&j�-�NZh���`uE&��U0^s���d��־`����H1sp�b9��(��d���z [,$E|��VUx�؉_Db��K�ڪ��-�hq�rWI���"�B. ���� $`��G�A�5\��f K(�6�l�%]�β�<6E�G`�H����ein�2�;0B��(9%����������,��Nj�`�2'�Kf'�Nd;��?J &k�� .����0�H���/̘� Á���^1S���ٳ^+HX�X. �?-^�\���)S�m2޶bn:���Z� nZ���Y��P� �z��-~Էk��;�nk�:+M��e@�m���ϟzע��?3+�m{07�����_-������G;���377w�צ����2����S�\�S���ב��@ ����\,<&,*9A��xC?\���� ��{��d6f���>���+Lb����iS'�ߜ %d���;��uϲnj3�і�/T������������~������d��%&)���{'�n��~.��M�A���Q���IS���I�J^W� �p2L&b����ք:?2P�mP����jU�'�'bd�o�E����e�i+���̓)h���'������8�0 ��D��|8>]����& 0���&kT�M�@��J��d������!~̸�h�p��TQ>H��ў#��s�؜�����O�-�;M�]7N3&��sYL���6'�qT)�d>� �e��0� 1@9:�g, �ƕM~~��XUl�8C���HQ��tky~+��)�ɉp�t��ǏI����-�uf��A�3�@�U���D��5���H�2�е6x��oZ��dm����@�c`~:�����a����%����go��sc�������Bô����z�i�p IV���(�E4�k�&i�����/1E-u��z�v�{7���>���~ھ�k��P*���1>k`o��)�oQ��D Ã�;}�=�|> ������X*���E�<�qws�=��p�=p��䨯0J�u��fWh���%�l�6-5����� ���sĘy���z�OQ�56H8EQ��Ew�E��x∄$��R��a��|�����F���0 ^x����,n_?Ը�!�r �i�x�$I��3�G�2mi��c|��e5Z<�P��W#B{gx��Sw����pa�����"0���f��a�9`�)��L\l�r��0+���8��Z�H�/��i���` ��c@`Ѓ���8���g�o�����q�p8`J��p��'��+�����JTܯ�;1��PZ��f͢o�ō����eS�|���2{�b��=�t=�gH�,� A�$�ps�����(P�V�������6����f{<�Ƒ'h����p㟓 X{��gw�T�q6UՋ�$E[���zp����L� pp^�t�@�s��9�X��F��E,��e"��FO��W�x$�P~���t�E.��� �"�8�].�8\@������q� �P�,��a8Q~ѰHM��qWD�]u�D�|�K�/!~�.[5 ��ȇ��Ua���"Շ�{�o{����alR7�� �e�&��u���S�l�r��tuu���ʯ�tTU�>�M���k�X����ޑ+ey;�F "?`��Q�qR6��tWEE{W�新���)%��hi��|�2�#��q3^Y��ŷ������e��N?p�e���+#E$Ap�r�d��Ih/C� 1�pR���m6{�~�nw�*�[��.ER��� �s��|��}��lϑj���b}u��Dmz&ɸ,M�M�͎Eǥ��H��0��^��z�0!u| ��fC��^c�A�4:#��Ti�PE���u���>+V����\�h�Մ�mm���� y�6E���!{���6<19#��������f'\����)��t~e���-U:�6�H�u��a� 2I䣒�Ϧf��c�L��4|�<]ώU���:�迲]�L�� ���Z��8e����e�3�ذn��U_<,�[J�]�Z��4ctUΦ��0�������5癷�����_�{soЭ�� a� ��]�w5|��%�9�`�����s�^����4��Q�y�|�xw�ܝM��<��z��':���z4�@ +����\t�����;�͸̆��AX��35�%��L�=6������<�ۅ P�ۮ��M�XJ�L�����9�`�-��ϏMω��8���Z���9���f�����ɹ���gؕ�3� ��f\s�G�TYs{߉�0=s�@\f��q�8�S��T�K ΋�Py�V��"1Agw!�V|m�� �D %��=�: ���"�@ FȋE �@�<��@ �y /�@ 1�/��4��3����_��t�E�7!�/#���� �㯉��Ue�K�p���]9��R��"ͻ99��c5-R�9'����� ���~������x�ӓ�8c������rq�>ڽxl/A�ڣfl:��o� j��̌�}�@�`��@ ��ɠx�UB����܅ �SRbdm�F ��'�;+K��D��e-���j^��[�x������bE��� m����un��F��qQ���;������5sW�ѱ���1�=����K�=�`�i>�ym���2��D �0f0�b�0��jlqP>��ZWz��H�H*u�4Z<4�j7��T� ��0�4>5�0-1���55}��39}o��ګk��(/�56f���Y[R#����D���' �]{c����u� ��o|��?~���iZ�ـx�MϽ���~��9�%��o�W R{ �oZypō8?m暏���烻����IQ�`�k�|���c^�b�{yyyyyg�`ϫ}�=yy��~�o�e ��ϊ���̱K�|4+��W>����;_������ݰs����|a���~7�@ ���Xf�H�G&����5~L������� �JNP�<��w{�U���ni�"SF)=���,h$1�`���Qr8J�W��U�_ԍ&����q�tbrq�]l�T܅yGR�a�$M������L�?��Wf�z� a�c�$��xYr��L���xۊ����k�j5.�i�g�g��B�2��}����Q߮������%�4a��u���}��*�W rssss{��:����w���.���q��VDπe�f�T��OO�s�OQ g_���婥������uWM�!��o�@ #ep\$d� J��M���q�a�-�x��pp�W�U�q#�XM�=�#g�R<���)#cS�6k�N����*��f NϨ��=�[}�nіovmZvw��Kn�~�G��[�o�G!���$��?�0�]Ϳ�\�IJ��k�jy��Ti|F�D����6�N��dB̢��j͆�p~��wE�� ���-�O[}��e��H)�&'?x�����<�d�o�@ #ŋe��lm�S>�����  |>�at��c�u6 ��CC'<~t��\�ʊI�>:F<<�H�2�8}z���kO7��XX����`X�x�����g�k�[q��Zx�aMw�,�4�c8�$�GHQ�"Z��ajM\l���KLQ�]�Z/@��u�6e<����~����q�u:�������z���>�篝�:c{�o�@ #Ë�(�� �P���H4`���XRm�ʣ?Ye��:+��j��E�d�)���t�d =v(P$o��ڞ�z+�2�v)�q���q6���ǿ�q�ARR�]?}� �?�Z�M��(�:x�5vb�����Q�͚EM��E��l�Ty( z\� ��ֳ��4�c{w� �A 7�9%+x�0�@ .������v�R-`�8G��q-V;X::��HI\i�3�@��'+ 60���c|�wX q��͌��+B���7DD�Y��F�|�K�/��p0Pݳ~��w��c�¸ɷN��(3I�P�S�ܜ*fs�oL�������V~m�����il�$F_���/}���X)��i4Zh����m�-ac'�SJ��Rb ���@z���ƈ�듥���=2�+�� q3^Y��ŷ���;��1� ʄ���Z��&�ǰ��X�k��n�W�4cdz��P�h_׬�����:A�m��]��!����q��ߗX��q"G���N7�c�L�!�p0hٻ�3�S�6>'���|��ò`�-ˁ ��,_������ە�0��kA3FW�l�hSK��:�+Ys�y��a����7���v�����_}}� ��`���i�j�=�����T�;c����WP�@e6�n:���V���}��_��۴�l��dC��QQ� ����`\����������ilt8e�\☘pڨ7X.�j��!�P ���ə��f�<�q��Se��C� �@\�\ �2q��*���+,�����"$*��΋�Py�V��"1 5�l6���^_��K�1V���p��~Ы3�@ ԡ �s<�Pq� �q�������!�P �@ �?�HE�@ ��y��@ ��G(/���D�����@«A�@ 1� 嶰�2�*��K �@«A8r��;6g׵I١S��srv���e�G�!A�1k�'{�|��>=9�0z�~��_~��>+n���d����"���Y�^<�_I�fl:��o��^��%{>z8z���Q޷��K�.<��1�-�@ �����d';L�1&�,��?!'��n2�A¸�9Y ��PqYrvΘ���(�괬�$y� (�&�_fvf��x�pje��]����6���k./n��W��J�g�S]�ǒ�'S�'=�Nr�NK���r����uOL=l�����OO.X��t�{��.���P��8͇6�muZ�Zq��ʸ��okEA{�F��X���;�_��%ō�:��I�`�b"�W��m��y|�WJG]q������1��&S�H���b}��À���^ �a�H9/V5�O��Q`���b��5�SU|ٲ�é�[:� �Ro�4�m�</UP[OU��v]�a���^,){rt\{Ց�m��[e�Vej��|g~9}xC�s�.9�H���f� v�xlw��b���u�-)������,��]�gI�k;�.�N��ǻ/��W���)����"��޻��m�{{��Z�ț�����S�����Wo+0�8s�g�&� �\����}2�}��٥9�W�eZ���R���Wm=�0饃n��~�l����Y9���T@Ed�|��rl�K/���] ��-�����;� ڜm�dϒ��?m���-lx|�Nޜ�>� �^� ��<ӟ `���Ȫ6������{�n���P� +G~���S����_���}�ou�M:�&]c��q��t܅yGR�a�$M�/�+��OϾ�vb�}�����:+5��o���}�Ի�7��Y١�Sr�3�_,�v����)�Z�,�pՃS���d�m��t "�Zpo�և�rۣ��v<��>{��x���^[��S���펥t�I����m<�4&����̍��O���2����S�\�S���ב�Y�Z�����|�_w�v����\t���}��*�W rssss���P������_��jt������ި����+H\�ȵD0��n[�ה�7fM���/��}�ɂ^ep��?����8l�\��C�!O IDAT�8���p�+��5X�9B�K"�X���۱�E����������z�Rf�O,a��"W��_�U �� vp�I,�u�75}����dj�p�X��WS������ֶ�o�}�wM�zA �"����s��r�8y�����A���xk돭mu��*�W�r\��O�e��>�]�h�7�6-�;U4eLRR�?���(���KRR$��P����j>WU�I&&&T\q����j�>ky�)p�����j���BNR� : �c`8!NK��)��쾢 -�V��7)�����dt��.��Y}�p���$�`.pv�w[v���\� �<�R�MN2�~�D��k��5��H+]$�� Á�w�o3�~��- f{tB����\��S�Z�껚3}�6����k6�{���F�/q�-P�#�R�fk���*F�+e.���7�7������(�[�qU�(Vw��+db��هcʏ��}m��Qaf}��w\M��7w[My�|@«@8��p��1��[���J�c(p��z�c��ݪ�G)�X�����|�4��b�<&%dʦ���dw�4�5{FQ�"�1��F-���6{K�[o;�����{^~ajIy1� �O����V�p`����'�o���|=�ѣ��ә,���0L�g ���6'�� ���e��@��Z��6�/ɉ����= N@<5>rJddf�����TN� E�OV*' .z� �������(�r�R�6�;���Y����G��Ia��['�O��$���)2rb8���]�PLa1%'eoLwUT��Р�)�u���S�l�r��tuu�b���l� y,W�Á#��L�C-d�%@���ƈ�듥���=21x|������?�RY����W��新���)%��h�@^�@-%qR>� w���`�7T�T�n'㐂�;W}�ڭg���ܶ�Pڒg& r�^�� rA[>n�+�������\�hw��cv|��o�� �8�����~��NL�&����z��Ä�����e�B!f�N �2��� ��ԟ�h���*�s��|��=�]X=�/9� �Pr��k� �x��g��t=;N996����Mu_���2G���q7(b���Z �ζ�aS��t�g��)���h��~qkFp^$891��ӭe��z.-{7|�~j�Ƨ�D��●�}X��-޽e�v���Zo=�a���=OB8 G?]S���B�\�e� �������( u��3����uc����a �R���� �������i.�C��U/n?�yܴ��o�_�տ���Z��[����Mx��~�R�� �%5��� +���>����m���o�q�������}5߾�寷?ؓ�������3����O<��9`�={|�7*ޝ1wgS�̈́�t��g�}��y ��ʚb&��;lX7z��O�)H{��������.��f��� �y�h��Q�K�A�#h˛�':���z4;�����7�N��"i��wVL(�;���Ԡ�h�c3I���L������Xרm��9�`�-,mr?6='���k�V~��q�g^ksrr���{�r����Qop�cb�i��`�����ٕ�3��̀�*�;�`� y���S�L{~�0R3{��E�m(�������}�0¯b�9�C�ߠ�����9�j��8B�PHx��R�$���e�[���s���ݻw��˷nl��}�P+�8 t���0��P�9B 5�l6���^_� ��4�@ �A�ev|��o".�x�!7Ρ=n������W��@ �K�0��P�9B��� �@ ��b�@ #��"�@ F��;�N��8V�qA��r�i�D{j�*��{v �2��l�0W}q�����'h�˵����`�߃`?vɞ%���[��:y�ᄌj_�@:��/R~X��k�-�ּ��������/˟�9%�n.ڽ~��3�3�xvjB�@̵��'3_�g�]�3�_���|-���}�֣�^:��� ��g���٫�?o쑕s?8yqdz!b�3�XL$Z���-�����$b�#6Ek����c�K �R!��x~~~YsߞV���U����K��,��(IP��P�'mU�G��h�E$F��'yB�� ��7"��"��� �e�II9:��~�;$���lm�S P����qB���%��c�$ncsKe�����F>���Lu7��#�|��`f~����6V1�(~��� c�������޺�O���P�ny�h+� ij�nU��@,QO�{[{�U�a�m����M�׽��s[VQ E?m��ޏ���Qz*�1>��GK�WyH�E�]/�E�,C�n��_>i�������5���O����&��������j8������Q�DB�1�@�0A-!Z�h���3Z,�`�Y;�}lE���/*�R=:#�Ld�Ύa�/x?�0���TI�����pm5Y�>��ޡ�����=!�R����w�|xx��Sw���w��X]ƞ��5Б�ΚG�k��fF_q�AUl�V+G(dP& ��m��������h|���J��f͢o�ō����eS�|�֧*,�K�v)��Q� ���S_������v�S��x����|����J�+� ᆛS� Ћ@ ���CI���Z�|��.��������'�R�f�C�aA��aJ1�Gr�>�Π� ��cKdb�#�2���I�8�W'��v�S'�JL��d����v�EJ�����ZƵX��v�:1Y��/벆�b1�9�X� !R(�l�I�RƷق�>�����q� �P�,���^����O�jEz�'�/�XZ ��UQ �|D�~T������]A��' �9%223X��MW*'˄"��'+��]�Tl\'����|0=R�����Ŗ����&CT��$Ke ��~�:Ae�5����4N)��FK ,n��g�Ȉ����F�� �Q�qR6��tWEE�m��u���S�l�r��tuu�b���l� <�s�`���5wd*��h!;�S,n�+�������\��g�@ %� I������V�;F"�����`EGz�5�s����6#+�kmҕ�(F�I��2[D��9�`�-,mr �ǏQ�_��Ā����� �����wMf2�sY�+���SF�^��:>���n���g���ewSl�����[���J�N�W�7ſ��?�*9�߼���{7��}��/����/��A�٣���P�;��?���W_�9�m/���s{Z:�+Ys�y��a����7���V��`��|WC�/�Q�Jˁ ��,_������ە�0����?���\�����^�~"Хn���7�/��ߋME_�}�����&<�iP�����3��������̑�1��& $a�,�O\@EPQ�@DPXq�`aQVV�CED�PDA��#������$�$sd������@�C�B��?����^���~]]]U�[i���+�H,�@�~`\��A �V{+�aG����ɽ�X�~;��rJϾQ�<�8h��􅜚>��M'��[bwL~���e{��Kz� �޷�;5�����Ÿ��_�ם�aD/��7�m�U�j�_�"7���i�u(��&���^������������K{۝.����ȴ��~|�M�$ d��/W���S���Ac�jУs�%Q��.}u���� �� z 4�@��M�%׵;4�@ }�[w+�@ ���"�@ �(�E �@�=z4����^^�)V�<49yȠ����I�4dP���E n�lH;��o,��%������ �O�xߒ$&�$q��m�=����/�����`������غg~�O��&]׉�>�����G\�Hf���C����?b��o��-��<���U_�x��{?��SN��}� ���ԧO�p����_�ZD߀��!�@64>�r�n@\rR��˹Dt�㇄���gD/уY,�_�p�-.��¢��%���d`t��+ �5\�(�)���d��`DO��#��P�D�vG�&�/�ܝ�U�豁Gf0h��� �<7a��ם���Q����&��t�W_� ��m'�����#�?�9������p:a/�.�;>1[|�Ň����?���K�5l\�������qc�(���zS���8ˋ��M]ݕ�K:}��Z���W_V�h�e2[m����8��A&� $�a�a[�?��ְD��??`�c�;�g�S�!m�Q4DۯU��|yݎ�������~g�V�c��<�NP���BF��e������K4•îW��a�{^�v���_�{������Ҿ~6J9�㴴�����d��~��{}������v��v��ȁ��}.��u��w�;����w�҉N* �'�4YM�C�Y��Wg뭖�#;~�I#���?5~ٖo?�4d��ͻ�xf�qSW}�㑣��l���#��t�i�ă�]���G��՚�C����dsZڑe���~��уk'(hCG���y*([3~���3RƼ�m��_�5.���D�m(���#_^�s���?|��яxQ��`_Z����S��%i�Ii�2t�[�Bɪ������e�I)I���y ����\�J^64>X���OJNJ�Q�1�t�Ճ���!|v@�V��j[k1�,|@bRJ����j1�����J��u/�Swz^P��R^��������"E�1�J���b���l�5IbBٵ DPl?W��r�-�,ѧ���Χ�=}�.E�,�~yi�������Kv�nM)l%r��/�.��si�bg�}uʈp����@F������O>�yO co���:��B��sRSSSS/���MH��;q�;�ç�V� 3� �Y�ظ�fm��_�X���$6�xt�Ɉ�/�t�����?�(�^!�(��z�+~��5.T_�W*�4BF�J���Sѳ����<@�3\��8�I��?�psV@r���2��)=q̹���Mxv�~�[���i�G���RSǽw�������Ԗ-�)BG���y�;���� ��=�)8Pwʆ���˯�]x���?���ț3������������=���Ik�C��$|�������� �6\�:_hh��4��MOOϩ�z9l��?C�{����&��E���|z�� ��&'=====�� EX��\p��� �.e��u. O�ĪrΜ�m�5���5z&�e)5dUYC��!��$Ibl�X�c���qgCQ����znP0S��Wm��y���񰰙j�@����ė�<�쨨�����ח�%`����3����Zm��D�O�`r�-eź��>�������M���� ��?����4~��%�OoS�d�����Kzq�Z�����>j�d�Z����w�5K ��l��'�,�Vw�uRb�� �� J���NO#TR+���]5o/�Ě!S��X]���p�bĽ�΂K�Z�kjE�#�K�j��O1���dr<8�A��mr�Z�ơ��X5b�`9�%}p��cľ褄��3-�i 2�@}+�R�i&/zy|b���6��f@���;�YYT����_����'�STԒw�����"t�) �g�,��{�� @�m����E��Dm�1�_���u:f|�M�!͔7V.z����G��dxQ1������\�����|���pY`l�\�Y}~��A���d��"6���0p�m�\��q�T&&m��� .��ƒ����.!z�������$�2d@0�+�����!��y����:���&��yl���F�� �IZmLNv^˿�Y�5ô�4ܼ�;i�7[�D��}��c}J!��1�s�f�����u� ��}����o�Lr}���@��Ưa��][�f������C[O�����_~���7>=��ö���j�v�ٱ��T�N��t���o}��I|׫��>����*0\��p��m����!�g�����N�aK���}?o�w���.`�������󋽻��g粭�^�Rb�+`����_�ۿs�Ə������~��[S��|��?~�R�oo�A�D�htv��QҜM?���ٲ}˶d�@�m����M׭��w�����r2�u:���� ����}�RC�\tt�†��r�1@�We�w����;���i�u(��G�c�OJCW��<L�Rd�zt���qk��b��^c���5� �S��X�@ D�e��@ ���b�@ }�βX��:<��@ �t��C�w�\���o� �%D�j�M��f����/������ZG�f�=ް� 5��}n���2��^�?w�?F����^�~���qu�����%�*����@ �IgY���v��%�l=@���8x=^����� ��j 7A���<��rU���G�-�U�CN�WQ~��8?�bq�s��x�㶞�*��Ξ���_�JfE9$G�,�.�D�sP�&�}"� X��ͫ*��5 9A��c5Te�~��=͛��#�-�s������ުٴ�P����������U2L�mZ��� o����f�|�6 7N�[?~���'ɚ��q��&\аb�f�T����ח�)�yʻ\�.���G�-�_��M^�+����ܯnJ{�ۿ��A�����b�<5�{֮ܒa�v�������MO�6����t��'�\4�.CYw*�>��@ W�٫n�zPrr�?��-Hx'�b�j���O �/ �(ŮO�����l��Ońg���8MFE�L�5'�� \�T\�C����i��P���YI�X���uZ�1���N��^���"Ho��p�˯�]x���?���ț3�ӞOYR4vޒ؜wfLx��e'#�4JP�eZj��O ���IMMMM�$��Z�`jj��7���� ��-x�Swu��}��1�/gOxh��a/�Hi�\q����N��N���� =q̹���Mxv�~�[�0穫��8�I��?�psV@r��V�u(�N�Ӈx"� :�b=v��hq��q� � �C45Vl����7�r�u��$ �c\a4,��t��k��~B����-K�I���26XN X�?������I���P�o��+��i�� ��/���?y��K�>+���ҝNYR�?�sf��e��ݚ�?��� ��7����u\��q�:)Yv���%6���\."o�:2,�{��.:����đ F�����s��h9����1�%�˅��8��U�~i:a7�:�Υ�[���$�����rtȭ�d�� ���P kV��,�KA���q����0?`�\��� 5�<^��4;��C�n������z��K_on����X̠I���"��uT��N�,�b1 ��}���ğ=�(�ڂ^ҋc�e��K2;<)�}��V�=�? �`1Y@���c��6�B�C��E!R���08�a)��/����T"W�� .G�Wr܅ �K[N�㖜x���v˲���El�P3j�P�=@EQ�2Q��DL�ת�q��P)KV�F�,��.߾bL�Q�5�������P���R& �g�,��{�� t�*��U���K�\���$x���霧�&������2�ۤכ=^a7��IO͔7V.z�����v�2�@ܖ`\��+�V�MOOo�W �$� � ح�N��3�&~�s��q<��m=[]�i��!�8(���4�,�ב�+�������2G���B�6 }����������t��d����J��U �1�n����Oj-v�M���ݗ���c��~�S��2꟯=?2JʰW��j��o�7Ϧ)ʶ[>��* ��Q ?{O��e-����+��ky4`E>��� a[3>|n�J�ھ�o&��)�v���[P7����W�ϭ|f�����e�����ʌ]��u� Z�(�~���2BF�s����H=��?|�b�F�q����8n�s3' � �3̅~��}�.J!u�)�IU�z�T�ܳxӫ��=�?�iV�.��@t�[ꆂ��\��v��rd�j?B_Z퐄��y���f���fn����ry��L4�U�BN ���o�>�E }�[����;\��v6��!�S*�< �|Y�� ¾ �Ss���:��"q{��X,�`��$�t{[7s��@ �g@Y,�@ �X�@ D���,�)�$ MNIJ �q�sQ��� ����' ��zV߇?L��w�bLa�����Q ;�q�4�MNI20ʟ��i�"wj�����I���4����âSn�7I����>zx��_���/ط�q�������� 쬄f��=�㻤,xʆ��}�� 0`�wǎ;�gڗ34=�RC��L[�ŏG~;�����]��g���u?��ͪQ��5�����B:� /8~Hg����&qذaô�������w:��� �*2�ۘ��g#�ʨ�AM�*�7ij;��&���|�I�dD��Z��R�VEF���Y�6����7�����.�&�^cK5��[s����Yo�7�yn�_M�c���⨌E�{�)���c��:����s��c�z�_���l��ߞ�->��C�t�s�R���:�W�֚�mC�dj�7oKٹ��@64���y��FG�n��c���¦������B���:Y���0!�M���&7ƕ�E�ȅlp[+�J�[6��ز���m�((������E�*�,�Ӥ+)�5�&����2�m��0e�"�<���[r'О��ռ��~��Rn�A_V�h����� )m�%"K�E����VT`��`�X��t��^��ݺ?B��D�+A�T��WU ���� _��x~�xz� ��g5�yL��r����z;�9���sU���<&S�� ���m/� �U˨q��*c�[O�i��S���ݧ4���_o�-��A�����b�<5�{֮ܒa�d�G��M��b�)��o��蘷~�����#�-y��J��s���\ι?VJ�d�|oՎ�&���}��P��Ӧ@�&a2��^�'��f����ͧ �n��S��d쬢�h\���P��} V��̝��4�����=��G6?o�߶�ݺ�E�e;�_V�Zp��)��o�R;���T�s��!�i�O᳟�?���Os ��SG�: T֩���z7kDP~��e��'�r�J��}���U.�6�5��������U2L�mZ��� /M_�vgh �] �ɏ^[���KSw�(Q�IS#�(Q ��~CU���A~hB,V�Qf��X���*\�% %y��N�00*"H�� ��������M"�E����j@�6l�Y�j�e,�g��+SG����z�2T��(lh����� �c��e�z�(lh�+'����$�#;[�˝�*�c��&GH[Kx�y��� el���\Kk� �eg�R���nFX� E]I�������w�L&�KxZ�K���bu��������ՄD����",B`)�:s&��� ��[&p��s��,�fa��R�y����Z{��xB��r��������-�M�hg��Qo�{� ���d�m�I�k* �`r�;��� ��7$Fo��"V��`ƿ��L�~�{����\`���xCq�v\�tL�p���K����Q�^�pc����8W������y.�T�쵯N.�z[�NȸGÎ��Ԍ��Ne�p���1�O7�� ��o�J������ �]�}���T���Ji���_^�?{崿?���%D���� o?���g��ysF(�2-5u�'��o礦���>�U%�0sɰ���{h�6��E�����������ڃ�T��]���P�� ��/Nxp�o�s���P��s����;��uYjjjjj�6��k�����5w�w��O�`ĩtk><={*k���=�5�u����t�;8OI�kD�j��'���N����Y�qB�6����h�%�9�̘����NF,|i��.J�� 6v �����{�K3RZo*�N%*?�]������c0�R �#�0  �d�X���=Wl�)��Q��5�g3�*�lI��F�ӻ���|z�� ��&'====�9���N��t�:`,qP̠X��˾Tk���ˬxJ%V�s�ln#/,X�R�y��./=====�̥z���� �[S�ښ ��H��J�+/f8�q#�>NH���T��ش�)ͥ�s���^���dg�����]��������:[˩N}y���r�$��_�2�[<@��M,���,t�-Iz��������������xyS�R@V�5\�Ü/�4 C�/%%%eذ�!�l�f��P��ҥ՗.��T���s���TTUg�$L&����k("HgV]ݑ��<Ẅ́&S�&�� ���&~��.��Q�X�c�Џ���۷��`w�۴w����om��7n=^ZWu��LW@� B���'�\0:5Ǐ��DG�J˪��ea��R�JQ^VEc(4&Z����m)+ֵ �DGןwK��a՝�,W(>V���K>Q��=����K9�� Y'�;���ٽMyY��d�:���E��`��Y,VOԝ�z��n���1�%�˅��8��U�~il�ٵ�@]R�?�sf��e��ݚ�?��ަ���|����u��%CBh�N%J?)]�����c0XD ��J8FcM&�5��� ,f��%g�0&���f�).�wwzz7�`�.c�u�*v`(�X�}�����v��ʮ���=൙,$��u���Z`���E��2��0,"�`J��N�X���%9�쒨AQ2_�Rq��V�I��R*1C��ǽ^`r��,�0�$[��<6���p��$I��$G;X���qX��N��f�ۺ�p_$�TnHO)� �C?C�(���G�J�!���c8�S����/Ix�+H���aL�2f���\F���K�}�tF�褞ĭ;��ݓ;>T�x|���ͭ���/�xZ�<���b1ۄA��,]i�hD�&���_yQ�2G�OtӲ��˧��b1�&��>�&�Q�æ:�;i٫"Y�������4D�O�u}/�m�����ݷ�<��<��u���E�}��Fk����Y�Q� 7?�"*3��Ï���}� �%Y,&A��d-:�g��w�3��y�����Q����%�(Q ���]-��-��M��e�L�=Κ��j�˹���A���X]VVo';=�.OH�a;�6�tKw��$Ib8�]{ �.���AW�\ʼX��paCA���W�2j��,�����TO �q�}������^�Qq�3XK��"����se�OEf��C�$����$ ���,&nu�H�t�\̪r\!�v�_�" ������hvz��p_D*as8��~Y+� +ϟ���/� <��������+��5q6���)�����l��@�@SC�?+Z&��U����}���� ��?����4~�eI� �����`e��I�Q���T���q+��� y<���qo�Y����*�.}ub�?nO�>���+��~w��դ4D�ҍ�2t]���]K?�g�����]5o/�Ě!S��X}O�u5\$B[�d(j��Qf�x��Ź���' ����7�Ժ�qzǛ`Ǵ��~��r)ʌ�{֝uyla����;� ����aޖ4�.�� l%U^,ED������^�4ܱR��%47^#9a T�� ^S�l�U3���]�p>^��E� �p��W���&� 0 c0��D�����2p v�O!b��B)� IDAT��=8FA;t���b)������88��O�b�d!A�v�py�����+n�׺=���\z gK�^}~zs � �����&�۴��h���lg�Ubs��F�a��ʇ��-�pU�=� aAも�8��DBi��_�|@�߅}g��j��-���YBͨ1C�r�4E+��U���K�\���$x������L1,�V��6bYJ?.��� L#������[&.T+�!N�����:�W_S+�1�_�U� &�+������o���B�/Q�4D�ҍ�2t]���WG�FX�:1��E/�O �1�&����B'���%+��U#� �sX���o_1�u��Q�~g����q�|�= �����D�'�K�Q��f�+�����ߒ�{ ������6��%���(�D���y,�$\.��!�~:-n��)���,6�ˢ��( u�:a�)̾X�U��/P@{:]f����8`,�L�Z]�t:��(�"4��ׄ�:��2"�W_Tn�2W� �D �6�:Kb����"Ŷ� J�Na�_g%8j�J��Q��l 즪�* �+je��a�&]q^����X����K�����a7V��s������CB���i�.�y�����EH �� � ���V'���zv�����nq,�����%�H��o���J���.6R ��9k �9���8�ۢ/.�o���X���帱�� ].����,��ʐǽ�����8��� 'cl����*��wzY�O��0��4bB��ş�н�1\�f����zj�x{E di�,.�� ��Y9�P,4ܼ����H��7�>>�)h:�n����~���a�>�ժ�־d?��#��ώ)lkƇ�-ܧ;��ޑ��=4�1��կ���w6� ���y��|��i�[>����g�%|��l�g锆(]��������d��u���u�R ��ݳ~#j���̗�!D�0���?5Mg�zk��[3`��m��,k�_���ߚ\v�R7;���l��-��2cײw�h�N%J?�\¨�D)cin�If˯�}GblS�*m��2��m�bjMl(���m�e��E�O���PY&���y�e��?w�4���t+� 6��SM딙S:ph��0� ��\u��~��źF� z�°!�|kCZ�g����$r?&�RZ�(��� �v��2n]���G��{�yO��ކ/���n�v2� �%~��us��;@�Xz��B��ܴ���[o�����0�9���!�R����v= W��/��@ w y����ZWZp�)lw@Y,�@ �@��>�To��@t��ҳY�f�S��f�_7}���@ ���"��m��pyӾ�]�}���b�@ }��"�@ �=���U��!�))I��T-���\y�������!��8p�1 C�� ����> �:hȗ))_$ƽ(����zTB7j�����]�V$���i�����7��g�^)�O�xߒ$�~��~w�رc�}9Cӹ𦢙�u���v����>��-�s�@�;8M�Z��W��*�ca2%a�|���F/��lܚ��z��/��g�X�a�����4�ء�;�.���G�-�_��ig����8��6{��o>m��e�K�*�g6��lO�9o� �PB}��o�� ��1ce��9������������U2L�mZ��� /t�+K_�/��S��g��-���W�S?�׈7u٢�ɡܦ��}�n��D����9��J�����ڑ�Dm&b��m3C>N�в�����,�Oi�kӿ����.��K4%)�L�<�靵f{h�����bY�~h��ꦴ���K-MSw*�(�D)��y۳S��d����=���N]M�xv�5y��>0�̔���@��k�+^��y ���l�H�)_l)p�ۇ�>:����)C$���TWY^mpx�# �UY^�IWR�k"�0 QP_H���\�P�WX�|�f�"E�yj �+�>�g��%R41%"���"�h�/2E�(�ʂYuEz~�Zd*̮��i!�F���������Up�X�T�cq���ZCh��Vv��pwa5O��v�� �+7b�'i�ٍ>d�/ �_�QH�hׅKz'M��ȌKEV~]���� � �d�H�3xhr򐁑J�l�5IbBٵ DPl?W�E��"���^��"|q��`.��v�^!@,W u7�i!��!���� W��/*�|������Oń��8�TT��� �z��K�� �0}�i��?62j�E�Ptn�q`*�Љ��pc����8W�����i@��i-|9S�x�_�����"p��*>Z��r6v �����{�K3RpR��4i��Q0����O���y�������K�%)�����[���A��v߾�|���ML�:�D%J�Ot���G�jR6GW;X��ҙ)�tyJ̩�g��Jg]i�hD�&���_yQ�2G�O>�����a����\M�� ��an�.+����aG;X���qX�&t�\�p�_�͠���j4�b�U�n\pm���U�ϪvΖE���;_e�poA;ς�|�a���jHz���$��k\�z"���U��yu�!�+]#I���{In)0(�Tp�8D%�4��<qG���8D��Sc�o+��m`��s�'� �K�d!/� 2J.|j`��8���u�w9�T��b, I�����-��܄x]�y^�-�N��8}"'�4y����+���1�L7��7�Q�'S���M^�;���o��q�]6�:���CO��A\.���b�F�����`\}������F�������X3d���'d���� ��o��V�%k]�w|��=�(KR��y��i[�S.��ώML�(�N%j� ���K�K;^?%%6A���N��S�,+�LJ�>��5<�[�]��A������>M7s��C������\C<�����b�ɓFFG��sj]$I:j.fUu�c+��O�ij4;�cTKc���68��5�u�5�x]F�=F&��~덌�3XK���d=�SӾ�aޖ�EZ�ٖ�ߠ �'f0�L���V�m2Y��&�s$r��� ��47��� 0��zI/ܠ%��L�zU����O�C^ Sʀ�`n�*R QMR<�8�m�a�B6W-��cx� �� ��a)$@��D@��1��D��8�  � |~U�����b���:��4:{/�ˆ~b������lڼ�m��B���8K>��G~~��� x8p��'���j��Msu�UV&������y���/�,협���4\.YYT�1f����>�|��1�����6��= ��"�rZ?;��L^����P�m��͞�%*�����'b�VM��t$���V?b��T�������DY�2Ȕ�S�Nך�t25�ML�'�K�Q�ݍ���S�NKs��xxHaZzg#��:k��Òl���.a#F��mCӚ)o�\���/�+Lտ18,��B��q�B.vY,�"���<N�� ��-�rq��/H�i�� ��5 \q���HsEn~��1T߬�s�$|��z����b��T�B�3�*��di~Rbp�l0�T&�X�.p:�\�����+B��p�2��Q����^�.�p)���Y[Tʋ�Ia�N��������aGc��_������r4���\�Q�|X!'��N��Ҳ�=�O�S8&�O�u���|o��j���H`� V��� jb� %Օ[/U�5��BC�y]�.# `�<� �<�`{]%�Ui/`�_Ws�.��C#s�����~g��R'�W�J��i�[����7�����Ϟ8�h�����+�h�X�nQҜM?��wTf�Z�N �;��ޑ��=4�1��կ���w6� ��ɡ��xp����Z��#�;����ħZ�ܻ� �=�]I��uk,^�m��e-����Z��.����S����+2H���gӔ�K��i϶|N)��C�0C^s�K�"g� ���ݟ��ີ_[���R����W��:} k?��#��ώ)lkƇ�-�WCY��:��e�)KR��y��iZ��A����)��r���[�����v�͆����ڡ�+LM7�ݷV��&~zz���[�U�t�R'YZ�� �:C�(@V�6k,ͭ4�l���H,��P^$��HHb���Hgp[��Z�can[cY�� ���T�H�8��E�5�vX��cst3��Z�3���C��@z\�&}Q٭y�GMQ)7�m�X@z�MG�Kv���^)�|�>`x�Ǿ/��u0��g��7�_y�F���)>{�����߮�� ����G���>���e����kfl�@���uY7�QyxT�\��I�������u�U�0$v@���T�@�2�ߔw��H.�I�fW����d;�^�*�;v��5!r!#����k�ww@Y,�&a6����_����Y��w�}�x�Vt�l��5C���~�M�/�xK�2uj�ؑ� ���so� ���K� c�g��0�E�W���ݮ),������`߫W����;�����ȝ�/6��;8XVc�#�����j�*Ie��B06ab��[�fB��t5�G�a��e�90�:66D^���v"��X�M�b��Pm�&永�p�!��ԲH� @`���yu]����zP� ���̕��u�n�M�,�U�CN�WQ~��8?�bq�s��x�㶞�*��Ξ���_�JfE��:�Q)KD��/��Ī��|%H��w� nȎ��W�O|u���gf���U�\#g�Z�S��g�O�=��� �-hX�C3w�] �ɏ^[����#C���}}�p�{�����:e��o�21N������O$I��zyB��@µV�3��M}}�9oɜ�c�DM���V�Ȧ�ЦmǣS��d��z��|f����ӌ���9y���_V�Zp��)��o�R ���������d�Y�rK�p���,~��b� S�o�V�w�� @�����*���P֝Jg����f�|�6��<���'aJ��a�|��Nf�ʼ�� wV�4a~l�Tq���F�E�(�^Y0��H�U�L�����a��p{Y�<��Mx�m5�˪m�X�]Y��-��)9,v����45�. ��96�ʳO��Oh^,��B���{$�?�U�Vv�!���*�Ţ_ߠ�媡�?-��4d��z�d�K�� g��>:�m����4!3Y@�8��f+p�Sq�  ��y?K�B=3�e%eb��~=��t�aĩtk><={*k���=�56v �����{�K3Rh� ���?�(�v�T�x��%�rV<6�Y�,�=���������䶒ꯟ}�@8����.�����j���i�d�}055u��W�J>n���[�ܧ��lG{�s����N��N���� =q̹���Mxv�~�[�0���$6�xt�Ɉ�/������;y�� 7g$� i�]���T:��LKM��I���9�����(�E�Q8��w���gNgU��.雟Oy�� ]�ٳ����k���,.3 B��"=Ȥ���Sw������2Pf�X����Qo�wx�&�F�D��I�����پB���}��03�0�]D�uk���2M����235ݴl���U3��i^���eV�����Vh�@QA��00\�~}/�?���0(�����x8�9�y�y�y���zH$�@�(k�������f�@V�tʑ�%wIG�d�9]ޫ�m-���l� �Ί�'������f���f{�Z�� IDAT������V�Ig��sTd��G��&M�p�����:m�' �CBB���YQAAY���H�LHh���y�~9�/MJ�v5w�[v�YHgYA�[.늜�,���2��@�v{W&�Q�C$�����w�+mh U�������y:���[_~�*@��j��PV�����N�`��{��iOS9n����=����M��] ('����K�\���x�7�fl��YI���;��b�p�*Kk��C/��t��y{�-�Θ���% �|�D�M|�Io� ��|O�=���.��e`�)p�1���S�}�X� ( T�eM��u#`mi�q=�N�y�>K � s��Ix��KPTO,��7��<�D"� ��y0��C`/�r�O�%Vg��z�to�R1*$dT�,C���hsXJp�D/��]��"�,1�YBI�а'C�\{� ��,���\�~�@$R<�8R�P֣�.pZ+�?�z:4�]n�۩'Q�S�l*C82p�;{g�SE�şǧ���G&��+>k}�."�O�2y�藞�S�?���X%e�Gޕ�,-m���I��a�a7�hR>������d>��Q�u��Z^�r�RAx��Tj���&,"�Ǫ+���6T����Z��.�%���D���]i�~'�~^VÉ Dz�VjwY��wpl�N��J� v5�z�X���qE��_���L�#[���0�ۼ=� ;�V����x�oA�s��{[�-���"ߍa�k֎��Az7�~��[4v��@Ӭ��ɞQ�w��R�k���=�j˻�ܜ��i?���L ��ۖ��������������,���++|�H;��|�7J?��Y���|`ݚ�K��|BJ4����-pВ�[sl[��OW�6��H녋س/�}1R�2�����}->�I��{�lϛ�v�]��>�t����Qo��)[�������jM2{i �e�8 u�!C��@.��bY��& E����1>:eX�^c� ����ل��s�j�����"1�e5�kz�M�ǻ4�fgg_~S-W�� Z�SL�:3����^��Ξ����!�@�����7�Ɩ�<�0tSz��Ԅ�d��M=`/�|5��5^�|xo�������<���=�w����o޻�q�.�l��"��� �H��������$s� =13�O��A�K ��?����EXF�.���`o�@/��e````�M`����}`�����]>��'�/֟�M�C�:~0��A C��}���L���7f````````��9��=swC���b�]]Q ��ƾt�hK����7s�- &�L�r\Fy�F]�����#z�b���a��a8Js�=]>sT�3�E�=�\v�;:c��t�T��T�����9}��wny�>�(@��K1�:��:j����(ⶄ���SIP���F��b���m�469!�RX�~�[�b���� ��K�J� P%&�*�%z��s:̦�=�6�8l}�si��ʱ�VB���so�$�������CO<��p;ԩ�u��F��lH���Ȩ ��p�7[��h�����[��}nh|4��B�'"T'%Eʛ.p�2:��Rr�ށ�U�)1���������3u4w�\9{K �ێ�bIbS�lv�!�KE`� b���z�#mn�� ���.vؠtaS9+�᭕ʛ\����E��ؤ�T_�����+�� � &.טo{׮��j�ҵإI2���b��ސovͺ��D���f@%j5�I� �*�Y�[=����a��C���(��Y!bq���a�|���N�U~�h������Y5gR8���|O�j��]���gE� �c��z����&GWo q8L��F�]��;J��W…`ս{��" JY�KQ! 0�ĕ$=�������;����_žq���u�Q3��V=+�IJ����p���w���;�ΐ�?>|}yn �#$��[��ؘ7��)@��~e��$�������H/�r�G���gC�=[P�o��kY����v&������{Ֆ�� ��� H�����ãx��c{?ټ�h�ۇH���I�Q�Ȳg����9�P��_�?:� �]9Si��6#I�̷L�Jx6]K�u��6T5j�ks�M������[�U���Z�_�=Ga>��o���ط�CN:}�jU��ʒ���`�.��e�{�jHZ�i��#0`�[]7C�Ab��Pb��R]|��ec&������+���a�buB�R��0w�{]a�A3,�S��G�spSM��;��pjIY��� �R�ʋ}���+\=S����2 �*���@`�z$R>X0I���go�����-��cv�[��%��s��5ixX��x�����SgkIՀ� `�E\�-񘅺���`tp����ME$�+�n����x����[�k-��V cSx��p�Y_�ڇ���aI���7�˹���ҧ�Fr?�Ԝą��' ��$��Ñ=���X�T�E��$F�d�>--����0�����oJ��nH�C�c�q%� F�%�1 l0j������OO��RB�׬?�0{�����FF@��1ض������gd�z5�=��3��rî999999��\t��%���?>n¬M��o�L��E����99��;E��͜���ﲇ����ə��5����2y;�N��J3r�}j�8�)򻹓�?�裢��)"�"��S�k2 4���F���ظ�fn��_�X2@�����(��9��~4��qc��Z�����6�} �H9�l�����1���>s���q_�4���?G�}�N6��>�}�j>h�גJV͘p��o�����B�!<�>����ݯ8���06� ��>� ��nW�(��2��c��8����u�ϟA��IC�$�,�iE|no��>��qkӅ��H�D�h.;� ��"$I���H������@�� �@��AJO@�K��O@p:M'Z�@J�^pe�$8E��I� @�"� 9 x,�k�Km�_ AR�U� ������"=J�yL��h����^���a�P,�B!��)����w,���V�U��(s͹R���م�D��ө6�#��Xz�޻�7h����H !\F]����q�\8�������� ORz�Ɂ� /����:q6as�{�fm� >65�C9���u]\��j(�p�⇄s�ՠ�0���3���NT蘨 �c��R�� a��1���V��aO%�pHweK]����P5��:�k��KTOI�~��?�"y�vօ,T � ZV�[��i��5�n\��d�?*0��Ȗe;* �6o�yk�Ω�?������DP�-��8k v�������/����?��±�~�^����5��.����h(�a�;][�б[���m��l�p{��/F�Y���7���}��5"�>�M9S���2E��f��U��ɞQ�w��R�k���=�j˻��K�ݓh���.�9�?�~���@�u��-}�Yˁu�~���gIY��/WV�|��|�r�C�y�uk-Y�5W��U�tun3� ���;m =�GWv}��Q{��$���0�خ�j�����"1�e5�k�p�")[�����E� u�C�fy�`R�ˬ�XVg�1���l��Jc�R3�(ᶶh*�6D$8�v/ r��C����x-�����X|���w�2;;���g��]v��[�1�J2ޭ}�D���x�p��\ 7�@��}����NL�k� v�ӛ�%^?qݙ!#�l�T���4�_h$P�:%�tv�-W�� Z�SL�:3�+�}��,����20�mP����i����)�������q��( (��m+.�l�z����6L��R�UWѧτ�YX�`��c�������w� �/����������p#`��aq8��<$� a뿎��p�'� ~2>� ����ήit�IM{�߼���]�<8��mz{p���v��PKˢ����u�L��3��Q������fj���� ���$}��W&gD�m���m��p�����v�T% h�'ӟ�w���=���?���;_?S6}�L��io�魴�I?O�lҪS=�?�0-�g�{Z�h` � �H5 .\�CI��P]Q�������P1�ru��F&��Š��1y@�1Xi�p��H*O�L�Ԝ>[��I� ��ݘ�g��$��4�4��˒Ħ��������XUJi����Ǚ�����؇$X��2�V{���`6��1���AE� s� - �/Y��ˮ�O3h�גJV͘p��o�����B�g���L��ܰkNNNNN��{�bƎ��͞�м�ż<#����e�vΝ8i�f����>rw��W�8�d����DP�s��j����&nhT���L���Eu��l�����W*Y�����7�#��MQ�ui���(R[a���;�;[j�fL$V��r����"�|����pp��J� \���f{}���HJ��D�4�{���-h��͘]�׭XV�R�4�涫���tai/<�/���2_� �� J��bj��d�O�a���o��g��kZ76�;Hp[~ml��(WQc��Ʀ ]��<4,iSzڪh)�ݲ����Dc�a���-�^��rn��i&Y ��Cx;����r�&� fc="R`4�]�̊_�;�m��ݦ%' "��8|�F�_�K��������`8��&��t��5���r�Q����J;�,?}������: �r�� E������H�ٴ�alIVV�G�|~�F&$�>kt9�G~9�MH����"(;H.!fͱ]+��t��7h�}�+.hܲ��B:� Jܪp�/9����A���[���?�/�� �H>Kt��ĵ%2�tVE@P�$%9�����!p��C��w:���Ǜ���!'�-� "5� ��l�8l p�Q��6�^"�;;5E0���0u4�4�p����$�뵐,FI���d�$��]��� ,eRv���8��B��@Q��(�#��,�"Q�������aY�Æ��=�־�LF�D!�FS������1�Bo�z���%�����B��� j���Q���2T�՘n�5h ��`A��/� ,�P���ji�������CiY�O���:����-���e��֗�����8�޻{�ä�S�ǎw��j���'����\�����l,|���q�xN]��o_ژl6��m��U���2Q�^�"1����~�+/��Z��i����g%�8����l� ����8�齫߽�è�}�D(^[���W� �h����s.ߋt��(���/����Ǟ�ے�ЩJ��u��K\["JW��x�7/Xm ��=��Y����)'�-�������ޑ��T���;8�K:�-���&�/���b� M�"�Y[yi�u�� �|�� ����K�ʚI�D�h.;� ��"mdNC����R� .n�f4�T��bzㅿ~|�[1�Bo[�B��0��V*c��D���a�xƪ��֚������CQ8��Y�ך�5���F.��C.������1��_�?�w��i�����Aa��S�JoNJ�_ ���?��H���AQ�$I�Q{���6���`8��x�7�fl���qژ8���6Kk��p=��a~�͇��yG��d%��S�]��.���b�8I]���^�g�=�GgL[�Β �s�o����Kw�z���On������SԿm��� F'm�|r���r��y�=�$�=��!p9髣k��|O�=��ɺޚ�`�P��I�P[��\���U|B��\�@[�e����Ti��e �2�b0����fO�Tͭn7p8,�˅���.`�B���`����=m�@���d�zZ��� �� N[L` dr!an6yW8��� z�#�$b[m�$nԞ+�Y @�(��ț����� S�R�R�����"A"i�@��|P�"?��]� $b�Dž�g�O��"����xms�~+% � �%�R*GK�(�P(�T��� xC��Q!!�Bd"���=�"�0�����͇3�A�(z��a��%�� �"=;� �������S|��hc�VhB�3T�e �\��1�~�&}CP�C�Ґ(���!�A��Jʖ��+�YZ�ܥ�@���ʚ�pFy�1�j+4���$K8<�Ȼ҈��&���"2��(�Ǐ~�;��DO^�`|z� � 3�6y��3���a�������‘�����+��yc/��%z�hK䓀���'8$��b�Xh'����!p9骣�DO���ů�]p/�z�f�����b�b>�p����(��9A��X����P��x����sk�@.f�X<�*ii�*��Q��(�� a��_����\�����QL~؀ĸ��9�Y��л�XD$8����H�M=9[���)=M�j��p �QQѣ@Wg��b��� �{*1�C�+[��~� Q'k�s��VD>A:�Yt�\����!]K`]��`}����*�O��G���(��_ �c ŭ�M�g"�2�3��+��s=$�H=Mþu;�^����h1n(���K>-�,ֽ?�����%e9t'�\Y������LQ���Ym��ic��[3h�ҭ� ������sۭ<�/����?��±�~�^�/��2�l����Y[���UE>�v��*����LoX��������_�͆������|`ݚ�K��|BJ4��� �6o�yk�Ω�?������ �g_^�b��e.�}����ƻs��s?h�L�tr"S=�����Ζ���bN���xm���D+m�|rMF�Z�{�n�g�O��<�����o;K���6Z9imut ��\�If/�a<��"� QG'E�و��R�1���q�C�f��"\f�Ų:�����*x@b� CH��TW�wѬ-�Ǧfp(�Qw����Wj�q��X���X�i�ƥ��3�m1<�g6'�Y���x�>k����;��2�{��Ξ|�4�S�Cƻ�/��;s�DxĐ����]<��J*�4p�h�� ��ꐿ��+�iDcV��9<����n5Ⱦ{��q'&�5�;��M������͖��V�T���4�_h$P�:%�h}�!x���E��q�V�DF��L�X������U�jo��e`��|5��6�� �- y2��C�B(��h����v3�n!$����o߆5�)�������q��( (��m+.�l��AZ��£ӆ��{)ܪ���^��% V(<�*.�y�{.��_��}_,=��/������� (=��p0 wy��D��W,�e```````�P����܎=�a�c````````�0V,C���b���p !�ڜ��i���"�����=�ˡ=�^���h߷+ ���o�����y�fD_g^�3��=?�:�>S6���{{���6�}-��� �z�U��k�?��'�e~ 4#�G����B�%�bғ���!�Uu~r�潰S��k���O��)*1�p��Y��c��Ի��ݬ8�x�e�߈BBHC��R��P�39�.c�x<���pg��&u��ƚN�6���r����h" �����$��;&@�"���tAQ�E�h+��ddIr a4�|_�$(�R�p�b1�EQ$��&l�ŧ����5�cC{b�o?��$) �(@��e$E�� oz��%<��x���֫�xb����M\}����'��1��ԕ��J���fc8�6^�*���u��v�I��5��^y�w��r$O�l�`�<+�ġ|��r��A���q6�s��߽�è�}�D(^[���Wy�ASǎ6�S�CxA}� ��|�C�c��m�m�T%4��54j��k�����dN�>O ��<��޷6�[���;��a����wm ��2�k�BBpC�华j(�B���.�]74=� \fm����~�پ��Ԩ���&}�c�H�8��h�'� ��c$@Y�,>�ۯM�EQ�$(G푏���䧣��8����,������ic�8���>�QA����<��Y[�a��t)w�Ƽ#MS����g���Sm���b�p��. �����Y9o���Ӗ��dB���ac��|��)|铛>}"�D;|��o�k��I��ϊ�&�*�u����C�Cg�L��W����qh���Y+��Ӿ��\PA\������� ��|O�=���:���0��B�2ѷAHʗ1�Q�HZ�O���ۦ�~; w�-M6��� >���$��  ���vw�)K � s��IpC�c9� :�OO}i0+ n5�b��а'C�\��C- X,07�vk�������͇3�A�(z��a��%�� �"=;� �������S|:)ic�VhB�3T�e �\��1�'�4��R����D�e~NV���X%e�Gޕ�,-m�R����se�x8�<��׳mrfߓ,��#�J#**�@_����S�L?��g�=y���Q2�c2�@��;{̨�} �WNV“ G��k�����獕u�XK�+��4��BFd��K�ʐ;U_ ���g�MY��H�{����N5|T�Ls׬'G ��م�����,{����X�����z�1�~�RE���|�-��c#�p�r i���TA�����]�W!-&�X&�P�+ ��̖�U<���\����0�� ��b6�œ�B����W�6 1.>9F�fhz(�X��pPe��r���gS�0�X�[g�v���h��c�_��۶�U�9�C����EHþu;�^����h1n(���K>-�,ֽ?�����%e9t'�\Y������LQ���YP�y��_���4X�fВ�[sl[��OW�[y�_>Y?�~5�c+X����z_be�ٲ�m���`盫�|�4��P��'~fzú��ۘS��8�k(~�7J?�2�z�uk/]�� )�P�òw (0�ۼ=� ;�V����xZ/\Ğ}y틑r��������b��9f乃�v�e:9��)��}��ig����_1'��w��[�Z�B�I��VA�`M����6(LV] ୸k�W�w�-�;��U'��Ζ����������ۏL|ڿ��W�5 �g�F��Z��^Z�xb�=�T!�*/7bM����!��,�i�_���z�i�s ��ݜH.��bY��I���4nx����:0[DㅓcC�����Q.��\�t�< �w�C�B4k���i�]��0M=�g6g[�C��j��q��l�p[[4�=�&#<ޥ�����cǎu��+�R���)�� & Z��`o�@/�egO��1�s�O��־X�����Ѓ�.ܻ�q����}ј�;sO~���F�~�U +d`������:62���L�)�B#���)ɘ�@���Ÿ��@�*K�ߊ�0X����2�&�v�A�j.��kdLX:$����<Ƅe`�!`rE���z}{�Iks�6,######-I��zbf���XW����8��]�����^n-_,�M�Pz�l �A��T����wۡl?��� ���������XW��Q�����������`�X��c�2ܾ ����T��ܮ���������`�X�ۗ`Y�ܘ�c��-I��[��o����o���y�.��v���~�Msی�n&��ju(:bʦ��q���ʩ��qG�� ,����bv:�g|�{~�e� �~�:��|Ǽ�Z�O�%b�ϰDቩò��g��큼��� !��${�jp�$x�F���C� �1$!Lx����:";+>@��=<^���Ĭ��*�.B7�D���ڊ㓠�a��#�Ɍ����������% u�u7[��c�}uT.����6<2j�.��j�$w ���W7:N�;��_2� -1ܺ���즢|� P���-WK��M��ޘ��4�4��OŒĦ�����b���m�469!�RX�~$[�b�/?��%���hA�1 ���?�2>N%Am�@.�t�����ˇ+�ᶄ�z7=:jj����%�_�������I &��_�Y�$�3�^0!>X(��tM,��io��h��T���ڜ{�������V~U��qT5j�k/�;HM�n�����p*�<��2c[LAʴ7OųT�����G�.���#^߾]�Ԋ��Nb^}F� ��7�_��=j�|��}��g��X6�s8��t� TKʩ�> ��)Ϸ�w�<�� IDAT���e��- �>��[��ؘ7�����$�����������}���&����|���}U�-�hc�&oؙ�� �C �U[��.\�S�,{�ۯLL�� �{�������:Z���W�s����LJ�/ϭ!���R��w�>G58#Zc��2y;�N��J3r�}j4���F���ظ�fn��_�X�>bƎ��͞�м�ż<# �U��띡��?{�ةJ�\v�رcNJ�]`��;v�D�y�� � �Ԝ�?u����ԝ-3x-H�Rɪ?�����}�E\���(�R!��I��Y0T� Ct�$`\��TPDb���v�9�7?�~��Iw��3d��g���Ϙ�����B�y'p��u��~V��՟(� i�X����J;�,?}�����*Q7��Vwvj�`"Q�a�h�i��i3YI.�k2Z�&� ���!HA{�Z*V�R�4�s{(�R�p�b1�EQ$��lEtUW�|ժ ��Ȓ(��h�e�%[m��3EEE�g/hͼ��ОX�{������H���r��^喂������q�����i.��� V[C�{kO� ��f���;F������v)w���^�a�K�>z"�-�y��������om@+�L=��,f`�*����3`-5j��k�����dN����t�N��sM\�|.( �1t�~�+/� iқ�N�g�D �"R�~'�";D��Dݬw�[ ��.��E.����N]�qS.QE��Gku��P�$!��N5`�IR�82�o(+u\��،&~��SW�ACo��7w�ڌw��٦YL뗫�1ƈa`���qe��5, �q��#�{`��Ĵ�>Ӭ�fь�5��$�#�6?�/�{V��lqtƴ��,�P8��&ǡe�[f�x�O���n�30��h�-f�Z��Z'  ,?�?t��^mq���$E�7T�0�� �1t!渹��?����VR6y�w)]�O� ��|O�=��If��mG#i->U��.�JĄI߾5 w���a��p�n_*�p��G�d"�՞��-M6��� �'��,�L.$��&' � ����/��EO}i0+ nKX�,�r������J��v�I`�VhB��I�pxʑw�Ml��a�X,�c~�6��� �"=;� �������S|�3�k�T����3��������%ݝ�tg�IHK�$&2�S����(* �""(( <@\\`�瀠�( ���0 �����;Kg�}���,,�7t�����hN�N�s����u�V�MT*c���h �J,zʲW& �Rr�F��D\y�澴c�)�_-�QIO` Ho�3��y����F��ʊKJ�1c�ʞ�����QEE(���X��ἠ1� w������|0x^��� %"�!�46UD���D�j�8O5��TGq1�I��=��u��x�q�=G�9����q ð�2�� ?@ʳX���3���5a2�#T�a��6k���r+M��8�Bmǃ&�Ts�������QȀĸ��UG��92�Z��1�'ը���&7�Q��+���ױG�20��@�)�8�kM�'��n�4xŚ�O)�Ƃ�^{��;����?? �Mw~ך7v]d�-ڿm�vg��x)�|t����x�۹ �]w���YW���{��j��Ӵ_���Ԥ�p��_eσ��>�eC[Q)w������N~��wW/{tl{'{׊�Oo8c��505T��^Ɠ�MϣDWVA�`m����6 DY]�j<����O��}��_N�[�my~��ύ����3/���P��Uw�_o��@�4��a�;���B����۾[%vԞۻrC>kw�����R�Qi+�A3�~N���Q0t���C�e�o)L�N�����r� e�J�v���&[*���CG�i�AWZ�aΆݞ�7�".=I���z`�Ȧ�3Z���#����P����ظ�i<�tYZ��M���bB�_����hE��o23���p'»o���Lz��0^��?�m��?��p�� ��X�m�q�0�K������PpeB�Ƙ[�D࢈�dn�J����0ʨ�@B_�s�##I}��D����r]���b�� w��?�`n��i�͗w�+r���R��q���$�+(KKsXt�Ȉ�i¢+�œi?�# T�ݖ*!V�0���_@s�f�\,�@ |��� ���si��:?�}#췠�X�@ ��&]��v}�����(@ �@�(�E �@�(�E �@�(�E �$�7�8q�ĉ'���?^��k����]�Y�7�"z��� �]I��x�&�=������|���3��ج[���>��i{s����/=���7.w=�S?>z��ɼ���E�‡�� ��6���3�!A � K2"=#}İ�H9@="3=^��Č����s ���pe��LO1$!D���-�*}��@�^����= �ހ��ֿ�� C\�u�����{��';���{�1���g�#�# �~���~ޏv+B���s-p�)!VD$��5�η81qHBB�2���#SH�`�dr���7��dW�$�K ʬ�"69!ܜW��=�P��+��I���,w�D��YO��c��^]���I�dC�����8gyڳ�^�(� ��f�v�7[��:C�.|}��$�p�w�Y���xܜ=;�D|�=���/&�XJ*3�zuR��j,8����g�X���X�lfz��\�s��Ov��c;F9e�ޤ׹_<.œ����?6�xĨ��$�� h�m�v� �{��0:O�b�#F;��#�W������c���ֽ{��������>����:=������2z��,����7W�ג���X��x�8����w�G�;\�o���U��C'������g���r�:v��/����&�����v��m<2���y��`���6q���֋]g��}2��C}����N�+�H�шy\.N8]��.�D�Ż�A�%�etp�JH�U�5;0�2&>Z%��NscEy�� �Bqİ�"����U����"m�I���)qD��PS����|s��N�E�� �I���X�r��\y���W��2�ɌL��5�\$@��92Q)�fOy=�(@ܕP�k�k�k�λhG�\�n?�-O<�����~�xճ��=>�/m�g>6��gvV�v���a+��E�+o�\\=� �}n����d�Ƶ;��ʚ��2���YYYYY�� �I�%��9��*\���ǟ�i��� �v�'-z��f�� ӗl�IO��aj�p�I�7hG�|0��#F�L%��d���糲ƿ{��ieVVVVV����}�h'#/|=�pì��L_�[ܒ��x������_�4�E?�/��'�7�3V�8�M��\rߊ=��Jup������� S罖vz������_Y�\���G���7D�����߲�%�gHB32��O]�����ʚ��5?������� 8*�]s!���:�Cwѫ�\&��_�=��+‚�� ����J/�ͽX�R'DȀEh����s���j(�������[�!X�����$ 0�B.���� ���+�"��a4��Y�W��W���O�W�\.���E�>Ё@��=���xSs�@1�G\�,��׿�%� ���/���S��$$����Yp��9��H6!���ߎ_�R���c���$E�Mb���ꋱ�78�6iܰ�Q$�4UV{����E�0��a4M��&��`�@����+_u��.��&)N𠰮w��()�]W�ƃo����z7�( �0���l 7�(_L:�,q�—D,�S �ի* w�!�A���l������hT�s�.��kF!��ꯗ��Y���&�Kj�/�n�nj�'-�r��o�Z��[�� O=bƊ��'�����#�z��I'��7��u�����@fi��i��"�~£�]샆�鬪�LN );v$���)�ڂj�6t�c���]��=߭9ɺ�H��:;��O5O�HJU �xz]�o�>�.�w|M����l�OO��i:�Ԯ�Q@ pkRZ�\F�V-�A ܨ7�����A�����*p�9���T��:7�#V�$����>MD�\��sH���.�/^oE+ w%�l���x�y�@ Tk�hR�gco�-�gޟ,� 5��M%�˛x\~`P���pp��:�(d��\��)�M����)���� �C� �(��"��Kr�\�D��@5dB�Ʀ����/XX��e�L�亍z���nj��#f���ws�sX�y�1 S x�����Y�� �u�i�$*U����?��R��^v�꦳��*hT�����3���r���s_ڱ�ה�/��a�t}m]h��D�2�޹O���l�.;ۙ1�F�e���$���� ��a<>�0̇s��M�PI�8�W(e���b��Nn�"��㋄�>�f�R��zez���ń�x8G�3���D�j.7�՛]W��MQȀĸ��U�u���&ք�x�P����b!��Eܕ�0>2#�2�%M�w�G���7 ^�f�S ���߫מ����l���iӝߵ�]�q��o�����s;�@7����7��v��cם�b}y����|�e���r*�zn��K60��X��ȧ�.��âּ}����m��s��u7�����;���^�TqLe'?z�;ﶛ`�c���{77=o�5 �W�|���j�����6n�w���z{��i�����G��Jcn2� �=�']Y���e���ڀeuu��ޅ�Y���]+�?�� �����=^���iگ��}j���,�Ζ�uf���:w��ڣ��y�P0��wA��p���C�e��vG�N������˙YB_Y!�OH ���XZfb�-�U�SC0�Tu����.��T"��lWF����R7 5�C9�Me��n~c�h�ؗts�m�8iut�ɖ�2q|��|�aЕ���)(& ��������� �����)h0܉��[}d��^;l�;��d[��O�.�����6�@� \}C�� icnQ ��"R����*�z�@H�+uydd ��ԙ�>�[��T�\,qw�.���'�=4�M�4 ���uEn��v[�@ �@(KKsXt�Ȉ�U�4aѕ߹�&��$P�v[�t�X����7B��"�As��� ��+0�ϥ ����@���߂�b�@ ��tul����o��ڣ�@ ��,�@ ��,�@ ��,�����t�ĉ'N���n�pxYF��Z�v��fE��Ȟ�����EC���� ����#�=N�\��zr�?��؁g��Fe�� ]|��"|����{�f�����C��pKC�� i��Q�F���.�ݶx.T�JM��H1$!DҞZ���!#�32҆�.�F��L�W`�*1#sp�_�ÕE 62���>���D ���X/{�.>��i��/j}���ֿ�� C\�u�v7~�dc���/�����<ٱ��[��w�A��a�:�{Č��ݖ����h~sQ^��D$%E����O�o-<_o�D��)1���F7��#SH�`�dr��ן��1 ��҂2+��MN7�U�l��yIo����c�l��UF��!�㥾�Q����[���#Ǐ�bӜ�v�<���8p��_:���C��K؄�:CǾ����?��?��Đ�ZWf��߽G:~d�ϧ�ˮ�����gO���ٓ��{��ԏ�����; 0ψ8e��:�˱�;���c���vFܷd�W���t�_�,��������������k��j��2zk��������a�'�i۳����6o���r���A�n*�l=��c�.���v��`0��,�,��7v9���u�:�����d��Ժf����'w���[}lս�M�)�Ɓo��~^,c�u� �v78�Ū�]���c`��% f�а�M>e�iC��y��#�����1*cDj��D5�]g�����9t9~z̉�f�Z{.~�_�x�E�1��T����� qH.�oŞOf%�:8XWUI݄���y�����?�[،d���:Y�=�ᇸ��M||�b^������q�!n��wܳͅg�����}��P"��S)7�r�0:<�}�INm�A�Ֆ�A��� \.���a��F����a����&W{��On6!a0Pr_$�9�&����p|p����x���r��l?�~��t4��� !AF�΂�Α�$G� �t6�v���"���U$%�M�Ry�g.�Q�����W� ��1��RI1�6g���?�D�П�>���2^�צ5�*�ޛ����/1S��s���0%x:��t�=Ze��E����29���|~������\!�J�����zeU]HHP��de��$EppPuU��n�R漖���-��ȑ5���d���#�w��F9��_�##Ul�c`�������J�]������JД�h��� �l0R$Eڌ7��Bb IDATI��7s��.��u���嗛%�1j^��4��ɩ�1�ƪFGB�����Ur�`����>�q��1�D&qh��q����ހ��"�Jh�M��(� ���v���$�q�'������\���,�Ƽw�; �&d�6y�� �B�����+�N��nL =���xF��o�0�%۟ &j�~޵��Un���Q�Z~��/L�s���)����1rC7������vv�$I��N�;����zSeU���萖�~ H Q:*�s{�h��[��m����l��������W���v����q�!nN�M7lxI:M��.9}��-���@�� ����>L*�&G38A��74�V����Q`5EI��7κ��?BQ�adK��n0FQlSɞ����"�Fx�ȗ4�s?m�<�4x�_�� A���߻� ��E���{t�5s\�BV��_/����F5�L��c���J9e�7)�R���L��xW�ԓ�,؊�_xx��3V�]>1o���WW�Ł ��j d4�wx:F�p��n�ckȳ��z�֫*-��Hʎ ~vt�����u�~l��ֹ랿�5'Yxy�x5\.�M�g�L $��?ɖ{�L��V �@֑gb^�|M����lq?:d���L�4��-j��o�B ,��V������%��|>�>��ru���+U��btP7(� Њ���a�R�0B��!���a �����-�gޟ,� 5��M%�˛x\~`P���p��k�Bfjʵ�ᙑAܔ�����6E��r�Ր i�*"B�ǡ�^�vO�R��K��U�A574 3L���PrX�g���� ã�\�Q�7�TG�1 S x�����Y���ͤ��E���Mv����;����Zo�� �f++.)�ƌ�+��7��Ҏ���,~y4�T�#�����>�S��7�Q\��R�y�DO}kݲ7�{e��go��t:��@ �'� ���Z�x|>�a��pA��V�&D��q�9F�ߨdo@s���gk�N�xZ����/]<�8M%�� w�r7��͛�X��)�X���k��uGvT~���g�����Z�Ʈ��¸E��Mm_2�;{.�}2c��棛������Up�3_�/g���?�遱�����5o�ƥ�>�a�;���/��dw��[�N�����O>�dWq�/�n��߿�ʷ������ L�3�VTʝ��{/F�8�����]k���yXͳV�����-�hR�47�.>����_6_eσ������ �xz~/��MV������� k�n�ӕU;X[f�o� QVWߜ�΂m�d�Z� �� g�v�G�y(�����*����ޕ�`��K�F�����z���Z�0hx��Q[ߪ ï�!��T�eF��:/_Ǹ�C_g2,��M@�t�t�%u�3��gcy�(.15�K;-�2m3��W'e^y碥$���$�v�`~���l�,����]i]׳��� x��Aߨdo���+�!333srr|���|��9 �;�}����c�k����bg��l����݅�6_������D���:��\�>���ʄ4�1����E)���s�f�(���Q���R�GF��J�����ԏVi�r]���b�� w��?�`n��i�͗w�+r���R��1��ۨ�������:2���<����}2��p$�j��R�#���&� }y�˭��"�As��� ��+0�ϥ ����@�N�S�h.�@ ��IW�n�]|(�C��@ �e��@ �e��@ �e�ĝ�d��'N�8q�dvv����2z�uЂ���5+�F��/=���}��= �S?>z�����aϸY�Ń�\��C�>v���7�g�g}��P*�L��؛c|���.>��S��q��# K:2##}DJ��S( IIOK�7vpIp�i��t�V\Y��a#��G I�pXKJ�Gd��+0\���98��Γ�J#gd�ިC@z۲O� �ۋ��ұ���[`^����[a��K}���aHï�ll���ǝj@x���dǞz|o=&��LH���ᑼ���'�X�Yh�l�ֺ(���0�fx��h~k��z;& ML�Q�6�qeLB����̊+b���y�Vƒ�B 3&��p`<���"��Dž�q���ƀ���"�FC}#+��]��A�;ãC�E�� ԍ��x�}��x���@�!o���v�3�<��U�L��ȅV]3G�sƛ���Bf��c�>\��h8�ջ�,`�o\�2c岙�QBsE��O?�}��%y��Ó~�:o�����@�a���!�.nY�e�Yj���o�ܯ%���^]���KRs��?o[����u�L����A���atQ�ؐr�ֽI?�s?�x\�9��ūld Sov7)nΞ�s�>ʞ���?���à�����v]�}���/��xo�d�����Y�;��N�����i0\q�OAm�}�ƚ�5�,��7���~���m{뀖duw/���#����ң�U� �1#SBx`��k��x�W���\�p�0[]^�^32�]�E�� cMIi����P;*)e8��\/��0��X�?��x\�^o%(k��,�eJ��1��"Zt͑�Jq���T��X�r��\y���_�к�m�*]�M���\�1 �m��A�6��@xO�ɤH ��d�X�.Lw^ }p����k�?q����W=��@����Ҷ}�c�~fg�n� o��Yt��f���������io�Jfm=xҢg�oL�0}�����)X����!�Ȑ�:y���;~����&>������������T�a��G���-n��H�Z�>�ʊ�uO>���׿��i��$Ɔ��9��*\���ǟ�i��� v/!��Dz���{����=�<��I �ߴ叄y3x��;B�;:��7}�����~>+k��g��Vfeeee������05M�w�����g>��s��3����dV����������ʚ�E-4UV�CBp�}+�|2+�����J�&L��{-���aKa{��u������7����yyVF��4r���o͞��\�¿f�e��Ÿ�/�䜭0�-%99999�N0W����6��`dApT���B��3�uv��b��}�(�Fé���{�E�>B���� � �j���T���%KM~qS�O�X�'7W���O�W�\.��g) ��@�|�\�0��"��;Hk��`�`�.���k�X�^#���_1ĝ��TH� @��Ӧ�;p"���_48 �~9/HHP�Q���8��s�)ɑlB6�Ϳ�l��/�rII ��8��T*)f���[���V��S�S��x�Qa�N^�|�m�K̔��\�+4L �����kv�����i͡ �������c�n��J[��4�IL Qy�g.�Q�����W�M��<�<�@��������b��y<Ko2��y1���#���*;e.ʿ쀞f<���I�Uu!!Aу��1Ó��A�Uuޛ�K��Z������K��^'�`�:��+l����%:2��$���|~������\!�J`u���pt�n�q�Ү���T�h%h�j�PA{�d6)�"mF���H ǘ�\ �D�'�����8��4��%2��C���,%�FG�V�I��A�׬(������8p ���n�r��f)4��I|q��K� ��v����$��A<.h]�v��_�`�6���Y6!�ΰ��<@W������߿�è��l*����yז��W��N����1�M�10燳]ow�?P4�cx{C��gk���s�W��F�'M^�tb<�pc�`�!�t��� 3�؛��{�G�7t5��^}�G ���IM�Ucb�CZ~�I4 )D�����I�qoo�˷M;���vG�N��p��\n����N�$�}g�" n��&�6<�$��� c�����UF8�� ������`uSEaF���m�cE����(J u����[k���9 ��,��������*(F �5T��Ji�R����`�q� ���{������hT�s�.�f��QȪ���%�v�ܸ�������'�1c������ ��>��^FR�r���=�ͯ6*0K����:I�WJ�����$���/�n�nj�'-�r��oRn���"Ȍ0�&��^��� �V����N�*-��Hʎ ~vt�����k���V/j����{�[s�uA��ݡ��`�r�n�},3@����l����� e�������-�G3x`h��:����aI�\��sH���.���$��f�����!p�J��4�K@z �i q��j256(,d8���P/�-�gޟ,� 5��M%�˛x\~`P���p��k�Bfjʵ�ᙑAܔ����������� ã�\�Q�7��U��Ɍ�S�_>��S�k˵�c��$Q��ٳ�![���u��c�ʘ{�>=Z®��$��8\�P"�A�2!McSEDH���\zdF�z��w��ȋ�z �I� �C� �(��"�h�� �f++.)�ƌ�+��7a��Ҏ���,~y4�9ϻ�u0D�j�8O5��TGqq Ku�/DO}kݲ7�{e��goW�c���1 �n�++\.�v��OLMmmbM������AXk���$Ц�K� ��fW��B$��'Ǩ:��L�5h��݊�TH���烳��/�K���͛�X��)�X���k��uGvT~���g�����Z�Ʈ��¸E��MU���P�Ɍ�_Ԛ�n~��;W����|���u ����;���^�TqLe'?z����ŧN)��R�~m�Wl��͛-_��g������[���֣���y�֯�i�zk��I��u2���БO�]��E�y�6.}�� �ށ���OcH�_e��|͟��{~�b�Mf�=�#��%�&��t�ط���T��ܖ�l�+� v���^�V����9�����޵bA���0~�=�z��P�6�w�Ď�s{Wn�g5���`��TkTڊk�L,@���Q0t���C�e���G�N�����u��ր�N�Tw���$���l�,����]i�����:]�%9�E\z��}�ׁ�j ���h �[��::���-�P�~"�&3sʝ�F���0��p5��_���~���}����c�k����bg��l����݅�6_���<�����ԋo��˘���� 2����;|�7��o(�2!Mc�-j"pQDJ2��\%�~weTD ���9䑑���Rg"�D�o��̼�4��K��ȣ]�퇺�(�w��?�`n��i�͗w�+r�}Ҽ���_n�|����X"���{A��P����ԑ���фEW~]J8�@��m��be�S��4�`�Ξ�E �-�P|���4�tS�Ⱦ�[�\,�@ ��A����r�>��_@{ �@ ���"�@ ���"�@ ����$��8�c֚m��{߉‡&�*n~� �42iP����A@X\L�\�!�f}ey�� �$8>.\!��n�AW�m��t^q7��P���1�n�i���@; R%��4�47V��{:S��N�Jz^�?����{b�ȭ���ɏ7m������Q��8MQ`������G�E��������>�� ����O�G -�?[��W�>������ތ������_�L��W}:��^ur" 2�·�2TR{Nk�bFƺ �uw�4���#��>u��$���)��F��1�-7Ѐ���5�/2o���8� ����<���_>���f>�b���.��E14>HЪ���j��B��ru� �tͥ�-NL����/m%y��h~k��z;& ML�Q�62oΨS�o.�+r`����HUs��k"UΚ �[� M�l0v;Y������:�S��b�s�*��b��ͭ���= h�~���Ɏ=���zL,���6����&���������.>���X�@�>AjAK���j�?�M��Z:0��cSB�6`N$82� fL&���W����k�/�vve��ʼ�k2MST�x ��.Ӊ�c�������F�@$�QNc}���L�8b��@Jfت��5涶�t�6E�R�)��|s��N�E�� �I��$�q�z�����&g�P�k&�x�Lj��0W�i�����$$I�n�uv�I�%=���Y��B``H��(�4\��w"�v߫+^�?)�l������ �%C�.|}��$�p�w�Y`nω[�~�`a��tv��+�kɸ9{vΉ�({*@��U��A9e�ޤ׹_<.œ����?6���̜���I)*����k��a}�pŤ?����k�P, 1��G�����_��c,�yۺw��P̾�8e��e3ӣ�抜��~��t��EȀf��o�g���@��S��>��k kW�M��~�0H�k�j>�+���nCMiG��W���\�p�0[]^�^̐r�g���2��T�GE� j,�*e�I���qD��PS�`K$,�\!3W����gV}���ŊCS�$)������H���_�ͽ�"�������Z�Ο9{�� .[템� 56WCaNNNN��Hk��`�vs��$ 0�B.��`��/�xh����h&�\.���a��F����a���r"|DzZZ�`�Ჶ�5�e��EIϫ#<�޼C�=b��gk�k��6ޑ��>�hy��5O��8�c�ë�Me=�P��+o�\\=� �}n�����y����^��آ����@��ɬ���(������>��V��i½ &Mޠ=������9��*\���ǟ�i���d�r��<�w׼��/�O�˳2:�a�b�=�ᅯ'n�5��+�[��6�'-z��f�� ӗl�IO�� �h������~Z������~&m���eee�����Z'}d��!V����+�� ա�����r��#g`D⮹�{�L~�ݡ�X�o�zwO9���� � �j���T���%&pEh֨k��-� J����2���_SӞgV ����6"5e@��' �o�X\�i)),(h�G�:����F+ASV��� K\�f ����ȓHx>i������02#m����Cx\ �D�'������K�1�eR������r�$6F�^Pl����bA��J{P|���@�[q[N45]p�mm:�Ԕk�i������?}����h8��yAB����Ϳ�l��/�rII�vy�m�K̔��\�+4L�mup�=Ze��E�� `�M�m��`GA��Z�G^uPPP�NU���6�Qv���Q��}���?�}^��e���MkU�l��� P���I��o��[�Mx��]��~�4(��7ۮ���6����j��sFGצ�W*�JL��f��")�f4�I����p��jT���O�D�FG�V�I����EfV�ڂ���� .U��ѱ���X]���񨨨�� .��+ �>;�����5�s��+c���}�`&N���ˍFTff� [gġ/���rp��8���dy���S��XZm���)4�Ʀ+Aalh��J�ɬ �7���4���%|�ZVm1z��װE�&�a`~��%Ɏ >A<.��F�6y�� �Ž[H�J|�h �X��U�~߫/��)N��r��x�Ƥ�p�g��6�����!F�y<.At��O�_�ӇQ/-��T0Q���-�r3 o� 2ѯ "�W?=�;��4M��8�6iܰ�Q$�4UV\��vK9��,Pno��LcJ$��(J u�����h��x�YQ����ސ���*��M�k����B�����鼁���&����ރ�h�v4\ί떪�@˰�Wy���A ܨ7����n vU�\��� IDAT1�}�+U��bt�wA\[��i ��m�p��K��ޖde�&��9�'�ù~_[���%�v�x��[J�]��ь_0����OZ(唭ߤxX���ٟ^1�~�*0K���l�������'�1c�������,�#zdI���O��;òv���`r�ʩϿ�$������-��E`��46t&=����f�����'f��3+AP|,��Hg��ҸfjE�RUUU�0����/Sq\?0L�پ���(�<�H��k�,$.&T��9��� ��d�r����t� H��O�Q����2�2M����y�Jh2[���T p�8�@��f�F��%/�-�gޟ,� 5��M%��YS��r�zxf�@7�o�g���ڧ��1`�aEPT���u���p�B��jȄ4�M!�"c5|��}o�����������1 S x�����Y����x,zʲW& �Rr�F��DP,�>��A���ֺeo���8aڈ@��Bhӷ�̣ �x|>�a�f\Y�Hy��󿌉D;���Rq����dVn�#S��|�yR�Jl�Xjy�������v{����WVJ�GDr1�iЕ�:�dKm�r����4U],j�&�Vĥ'i800S dS�����R7 5�C9�Me�V���N�TwUl߼ �v����Vݣ���JQ\bj$�vZ�e�f�u�M��)#㹴�f��h��C���d��@�c:�y��k�>�  ��z�9���G7�?��������ug�X_�����˧[ƾ��/���<��`�wկ��ȧ�.��âּ}����m��s�g.�6�w�Ď�s{Wn�g���w��͛-_��g������[X|�ڊJ�s^~��H�Tv�w�kezA�_e��ظ e��mS�/K���vnG����R�Qi+�A3��~�P+����Z����ه �h��&�&]iI���n�T"�ۮ�m�ɔH\[�-���3+���R74���.K���'[�cB�ꙙ�>���d/al薵�/�E@��̜����w� q�� 'h�pe󹒖�x��+�4�ܢ&E�$s+o��$C���$��:�<22��W�Ldo�W���bԜ����8��Vq]ƒb#��epU�������P��fnx��#F�1"5I���}�d�O�H�j��X�����+`"�Z���$�[�?ي@ �z��l����@����٦���j�^��{��'���h����y=���X/�W �K�0��N�ve��@ ~M�:v����k�U�n&i�&Wܲe�� �E�ׁ�@ �n��E �@���b�����l�������@�����/h�7��kBX���Wff~��/񆇢�24�Q �6����ږ/;��7����,��_'N�8q2{׬��m_=���������K�Dh�Eă�\��C�>v�����=���d��g펾4��p�a�CGfd��H w �!)�i A�w'�HC���>rXr���A\i�������+�‡��쐳dV~W1p����CB$ߔ��q�?�4�������vL���n-l��R0�1�\�C��j��� ��b[L6�_0��۱�ޗ�eC�������˳��i�*����/ ��W#��d�R-����]�T��mŗ��e�V�����m����Ɏ=���zL,�:����O66�ϛ:����� ��5��68Ǻ��r�Vk]�������0$6k�����H���"Mg� �P*ǭ���8�4ѡ��[0dV~��I���YqElrB�9��e�3�KzAY���5��V������B! `��� ������/�t�h��ѡ)����g/J��!T�}�o�(c^� J���+�L67:d��K�,�k+���NЎ z��\��2����J��g��/��fd*y�]����I�{�r�������?3<���c�>\��h8�ջ�,0�2sުW'���Ƃ��~� @9e�ޤ׹_<.œ����?2kd�>t���-k��^�0Km:��͕�����wO�}�}z�����I�Y�b��Igܜ=;�D|�=���+f7��ʛ)WO{d�s�ۧ�=+��9��*\���ǟ�i�������4���&oЎ��`�J���'��zi�c�~_0�O<��o�y32���S'/��T��dԩ��dV�����������j?ً�zw�KJ|eEr��'}d���T��å��糲ƿ{��ieVVVVֳ_�@���eee�����Z��x��p�_��9[a�[Jrrrrr �`�����)l�񩴂�wܳͅg�����}�CF�Fé���{�Eؾ��T��V$Q�Xm���>�|;ZkL$`\�LBZ�n ��z���PQX��R]k���ǔY�\\.: <1^-r�\|>��5������2Md|rjj ����c��i4p�j��4;��n2,N�y>��`09<؄�F%{���>�'$18���lh��up�0 � fc�F��-�$�R��7�%]�_�Z� ڙ��t������� �]} �t�YƉLHh���e+E�9��HJRPy�g.�Q�����W�Uڑw�h��2�_v�b-�ꕇ��/1S��s���0%O���������;u�Wv2���zw�KF%&�O�ht�-U��[� ���#w��kOS�+�v%����F+ASV���3$��H�i3�$Eb8Ƥ�7p4I���F��uE�f�D�����Z��e̐Y�8��4��%2��C����~�qIo�aEG38A��74�V�W���()�]W�ƃ�%�抢fvM�����'j^��eC��MW�w`����\�u��*098Sj�%o/�5��p��خ�<7l��=�:t�|'M^�tb<�pc�`8۽V��W_`o��z�UM��t�T��!�oʌ�9?�e%���:����#ƒ\.�$o[?{n<q��4ۤqÆG���TYa��W>�a���T�ӄqE��p���qR�EF��%�N���G�Y�EaF���m�c��D�Kz{����s���������*p�9��o�:>6�h(�jc��s�C8�Z���g�J��!T�}�_�i.��k�� s���s��M�<�b-IS4�q��+��:o/&�I ������J�����G� ��^2kg�U2���m��1���RN��M���{U]�}�����T���k{&���tKi=��X�$I�ӡ�7s=� �@����l������ё������� �����X���&Є���UH�����H!� �Guny"˔�^(���? \.��9�s;|>���J"8b�JB�Z��%{������.�j0�Ts����ǸP*�K�l?~0�D.x��F%{���>�'�\zi`�ܨ؅����\J@�T�*'ǭ��L���<���@ @�-�2�p��I�Ę��aai���ż��M� dq�M��9����hM�V=<3R ����3Sx.W(� P �����""�|/���zթl2c���O���..���474 3L���Pr���X���.4}l�Rs�ܧGK����^=��u��x�q¾5������q �v�mE,�ba�\�p�]٬��s:ȭ4Q�� ��T���O0���5a2�#T�a���/l�B$��'Ǩ��� =�(�W'e����R�S꺮D�����^ 4��0�x��&�?{Q�� ��>�~��yo]��P�Hq��zKǮ{�������g����g��㛨և��d��I��i��Z(��R����.���\\@-�\.�xݸp���� (� ��p�" �b�d+-K[�/钴MҤYg����:�&4t�|?��y��<���3gΜc+m��6R��M��JvY ^� PWOV�i8�Te���R�>MY�oV��2i�5��Y�a���ܖ�d5����ζ�N����6Nq�oϞ���{� ~�ogIYf���V�j~�̒=?�o�ٳz�{���������>*ӛ_fR/8~\���U+�^���d�|���Ƽ���S8���mсZ��i5m�q���~�dכۏO��U�D���g�.\@�� @Wv�J/k)�D#��~K���a� �)Z4��!C�\�6:I�A}����s��@6T���� "0�n�W��QiTj|�kl�t%���gJ������t�n@6� �#�R8N�N}��m�,��hq�I��ٕfw�x�������S�N�B)\YX��CS�6п��P��*+���v��MG��s���o�d@ �B��N��W�u��_?����������bG���ד8?$1�(;_����>m�r�$4ԟt��o���rS��w�,��R)�3���K�J����8���#d�>B �������[�W��Q �@ ��26h����))))))��2�Z�'����� ���~;��ߌ�b,�p:�v�������f#�|a݅f7!s���X,�@ |�����[9��~;�}��2Uߌ�9I��]�I��Þkv�2�es�@ �K����=�v� }�kk�@ �-(�E �@�?<�bq����`�-o9�!��A~�ێua�c�����@ ��a+�W�B�I��H�R� 3�.�{�2�A!�$��k�;v�ر߳�]?���u��;�~�*s[f��D�QwN]��wG~9���ѽ �O'(�u��?�ऑ�7ԗ�Nk���S�S��.�KK��8oBr��ᩩ)Cb�n�N�\�s�i����3n�c�ɿ�Ӥ��{�2�A!�$���c� i၅�sZ���6W��u�:HZx`�O�C�Mx���l���]� ��e j��b���q�DGIp��4�X*]3&��q�Wwb\�o��Wd¥� ���9 +�y��{�����f�3��E�v��N1�ʼ�!s��@A,�h�/�Ҿ6x�J8P�R���Y���G�՚)R�P2b�_�?�u����������B&!}�Ac�ݕ���}�����1;OZx`Kf��7�f�x�LJ���������K68����P��Q�=�>ڕu��C�lXr��2�I[����:��Q��[�vm$�gm~*��HzMA⓫�������>��s��]��,}�w�����-��� myQ�έ�����#o�>t���=��D���;�&}#�u}��O� �B��}�4*%%Z����"�G���$���b#$! CS��H����<��p����5���y���|���Vmi����{�2�e�����������l6A��|���&��T�ܱd��/Mu9��I�T��V��Ϣ���y�y���rRAxb^����.y�H���I�&����O��\M�2��M父Fݤfߚ�a/-����Q��˶�>>RnA�co,��v�1� Z{�������V��u��ȝѶ'm� B+�����1wb-��m )�qU�C��,�bdN8��-�����H�j(+շɝ�?��&��84��),�x�f����A��<;�fFU߃�( �Ȇ³ � �'.z�� �]�Y��q�,mI��~�?O�p��7ю�ue�c����h`��|�s9�/CH�u�l��=�G8�����b�@���#��h� �;���̊�en��*� ��7�vC]���{[�p��36��t��n�hk䤜�nG�5[ �������'��X:1gη���O�|���)��u{���n�F�[�K���#��� ��A��B/���w��r��j zJ[t�*�/j$�N���jnu�_6q"$Myg ���C�T��r��>O^�.��x��a�+�F��ko����� � 8 �fkK"X�\H�� �n��x.�J$~\�ep�H"r�~�2�1G��}40�� ��L`�Qq����70��V����M�px��N&���l��PpX, o{�F+����D9,=� �����U�ݍ3��Fpp�|��ɖ��o��k4z�P9�- {x��c� ��n�hkT[��q2y�}/=�Ə�4���KL&#�z��@P,�� �8p�C&�h����88}yW#�Z���u��m{�O� �B�� |ʛ+������y��q[p�JE��vY�-�������;�_Lc���1 ����+3�� �Z9Wf�4�SXp*����/� MM��Ab6�œ)��Ɩ�������9ޕfw�l,�Qw�t}�ۤN�T枮b>ޕy�9B�>裁��RX� �/,�EZ/�T�� Ⱥ�]3x���OKɺ���������e���2���m�_�v�V5��)J؞= �6<9����Ck?���Β���3_�*v���oĜ�߿-�T���ƻ�N�ʜ�Fw.]�5K�6��޼:�����x��m�4�o؞�ֺݏ���ݯh*s�M�׈/��b��e(����?�?fɞ�7��Y�������ox~myW#�Z���u��m{���5��ssЕ]���Z *�Hl_�j�,iJ����I���L��J`�U�.na�j�T�� Ms}�$����jc�E�M�Q������t%���g�oP���t/ ʊёI)�E��V����n6Zl�dqv��0���4==�ԩS4Z,�%������ϟ+ �wh�����]���#d�����ɴ'��þ睃�����,`���|(�hJ�c����^�+�.^����v\���s^o"z�PpY����z�$&e�˚}Rxߧ�Vn������{���Yn�T=���R��m�aʐXB�?w" IDAT��n,Ww���y�9B�>�#D?�~��#S���n���t:��|u��|��F�ۑ"n���z;(���� �A���C\����x�~�ۙ�[�C k���a���X`����V��X�tX� �{�=��{n��b�� �W��ʩ���!���X,�v��J9I���]���#d~���@ z��[y�{����J��@ ��b�@ �ϲX�/(22؟qO�Hdd���n]�w('�]9�v�̻�G�@ }�X��J�2N�%Dr��_��!ua�^�Pᮜn;B���#D_e���cǎ;��џl�w�PQoGt��ܲo~����)�:���ŽQ�gm~*�k=��5�#$-<���ގ�p! ���ߵ��I#�[����h)�����q{$b_� �~�2feBr��ᩩ)Cb���eɳ���_4��qc8KM�E-ؘ&weކ�6�bs9�v�̻�G�>LѦ�ӿ��4��ͯL�u���RR�ۆ��� �h���x5B &��� n2Z��`��l׵d��"�5cb���t'���ohݧ�%�L 41�ȅ�"b����L�42!6�9���k�y6��6��y�,���lv��xW��,�8ݗ�mG����h�!����whh�"��i_%ǎ�?��]BYj��U�T*���,X�+��C���_O ��߿��) �n��]��zM��u�_��%��q�[�@���/�;r�������`�4ZsZ��ݳh�����53R��ޣf����>+F9������l��\���ٿ}���ϥ��@'-<�%3m�[�~�a��r=�KF������������[9�q�XOCj��ά�G�v.}}+c�ۓ/j�`ު������� ���x�=�>ڕu��C�lXr�9m�h{��3�V� Lq�k[�a�?'����Ư9��3�+n�W�{�/��ğB�04e����i)����,���I�EL҈��q*��iq�1C�%�Ċ���I��۴-��Ԥ)�z���ѕ������U��.��D?��_�B�$��Vy�HWU˘��e���j��$- j-�d���ݳ,��OM��P2$55>�i`�csA��r|��{k>0�*Ɗ̿hM8O��b�l���R�BkjkD,x=��;�?8��-����L����q���((-Mt����^��{�dԴB@5i���޹�'<�hSn`j�ܙw��|�Ҹ ˧��8�͸�g&_�������>-�왓������J*���322�|�x�����^����_��N� =2�M��=<~ܳ[K��_x=�i,��@���e y+�>����-u\7��=i�FLD�Kl�=�y�F���v�JO���?*���]�BCd�}��󟬠���S�/��HD��ai[�#D����\_Ygr8)��Hq�� �Y��H�l���$Eb�m���2<�Y]�p��U�cI�r ��3��}��ܢ�0N'�q��tb�X�g9���b�,���*�un�[���Z_��/LJ�������k�[g�1g��r�@��L߭X�{9��_�Y��&=�z�} x�e@���i��S�?�#�Q�5{^y��cߚ�a/-����Q��˶�>>Rn�ڼ�s�l�196q�(c�w�p^j�����T�ܱd��/Mu9������]�������y�I7_�ۼ�V��&�V������5��M��ZM&��$I�U#�>r\��uO=_�1��M !�-��Q��aa$i5����������҃�CC���+�MW�NϏ�W��q�F}L�/17Ut��EQ�� �gF��>�9�e�,��@���DC!O�p��7ю�yl�"��R�����2��|@C �1h{�W�Jw�xt���G�׋2�VިT�}\;%->Y�t��JW�3h��R�ռ����<�l�҉9s��v�g��d,��y"� t��10q����Z��'��D�d�f�� r�!��`� i��Q� �����d��]ozq�К{\#�>��6�{�,uڔ�c۫�����o9w�L���TD�!i�;[�//�|����y}!q���b1``lԚ��& ���WJĤ��)�,�L.$ z �ـ�a���pl6_��� 0�P"��2�r�y"�D�az��؜��sW��!so�����05s$*�K���C�ܨ��X5-���_��mM�|4�(�T� &�N`ᓗ,�0,LF������o^U\�J�7A����;�,.v��hk���F �*�Bd^��l��PpX, ��ݢ�!�TU�����"��̨֯��"|ʛ+��������?'8��9�0����2c��p��seJSp�bU��\NC啂�~�eW;?�h�qx��!��h����l�' R`��n�x�gc��������Pu��2�t�q�ͫrOW�Q��#d�9�a���֒�3&}yzW��� ~�ogIYf���V_�+��?7�n��חqjf��DS�5b���*g�~����7v��ph��˖�~ZJ�����ݞ�棟}4���1���o��&-<��c�teW�l(X?e��:�ꃟ�m���L [��-m�%����!5ڴ㮷�}�xɮ7��4�����1�7b����X���~��\��i�i8�v͝K�m�R�M�7��j`�Fכ�B���)�q˙^��;�V}�7W]t2�OY��z�3,���sp��9鿭p=��ʮT�e-�h$�c�T�� Ms}�$��������O��z��#] d}����ˢ�>;�L$�[Zn����F��M�,��dCY� :2)����ת���`<^�sizz��S�h�X�AJVSee#��?W��Д� �o�=5�HBC�I�r|��wi�7=}2�ɀ@�[���sp����e�9���MZ{����9I ,���Z���}|xC�e�#����I���@��/k�I�}�|�v�,7e��(�K�J��q��%�W*�|Ʒ՞���r|��{k�@ �="���������v����]���� �@xel����SRRRRR��eV��'�z��|�v� �����%0��ư*>��p��jgH�=5��(�g��y��h,�@ >�P|m�t;�}��2U��H��]�����q�ͻ(�w������@ z�|�v� �Xs�@ ��YP�@ ��x���~A�������p�C"#��� �؜���9B�ޚ#�@�)<�b�*�B�8���U*c��9!T�+�w�����>�p��cǎ;v���l׏�%i�.�ι߸�ܖ� �[��O�5��S>9t���{-� �oPܐ�ԴԔ���8�'�LO��w��% �#ixjZ�� a��#QxJzj���qi郃�=� �!w ���2$6P�v�5=w��-�h��鸥&��lL��=6�j�/60��;G��[sDǔ�xL�z��+��:f$-<��'�!|@�oVכ/��D =�_Hl���ʅ+&�����^kl�۲ƒX��u�y��!Xݥs��(,!>�p�X�KE�k��1��N��"b����L�42!6�9��a�3�5���,�I�m6���H���|�cs��r|��{k>��� �'H��DU�Z���C����yeً�����9�>X��yHF�|{��h��gRkY%[�|=�D+�/3h̼W��/uԞ��ު�yL�'-<��a������h:����Y��l���?��?���������SC�x�=�,}���+Y�k�l\���J��� ��7�LK �5��:�ن�'�m B��i���c�0����@ц'�U�P#:G�6���'��2{�bf�ZC�xtݥ� ��6<�[��=�:���'������V�{���c������Do��D ��p�Y__U�n�0���$$6"@�&�a�a-�9�A��H{����q�+ �յ8��Ӕ�2J̮/��B��Ey���p�c ��Z��FM�-H,�F. �k�j1�V]���Yk��@5��P�k��h�K�|h&$~c�څV,��ԝ3�H��64N&�0�o-빦x6���OM,`:.����{l.v[��!so������Q,�����蘉��� z`�Ҹ ˧��8�͸�g&c0�9m�4�����Z�����Y&!C� ^O����Nx~���2�1n,�m��G���rf��� /yo��I��[2j�!Lq����j��w3'>��'��|��ɻj��g��s'OxbѦ���D��ss:J>���1��"͞9�c�45�q�qәOf��KM���N��<���1���i�)���T� �Y�cCf(U*uyJa}�*"�Y{�����JG"b~��U��+/�;{&��lQ_*Ը�=���+��]m������q�%�:aXVU����\�V%�J ��R ��n����ɍU�홳����@F��B�hr�M���(��×�-zC�N"��ٜ~�q�J��f�p����\�<�b�V�Ng�0��'���he��Ԝ��-�w����� �_,�z�oz� F�� n������X͉#�tVK�����rЫ�F�0�p�$1!�I�T��䑫&ʡ9z��4>^�&��_d��P�� W����V�%�Сr3՜�{�\�8C�c4���Zl��߬Y�])���p��\.� %���Z�S#0 =7��uv�y��g_JN�����<�˘�ҕYV^��3A1,^�R)*ʫ��q{'��@|��G����Lkg�wX�5���-15�W֙Nʤ7R\�+Cj��)�"[�:;I�~{��r�J��b���>4�o������@guy����X���#S�8���� �U�cI�r ����'NǝN'���|��I�8��7kz���bu�:7ǭ��|�/�ݗ�CG��K��~ʸ-r'`,�p���ij�I�V��p� 68չ%w,��� FS]�{�`2�9��;�s���/�{�v^n��A�|����� �q�ل��*4����{;5��^Z��i��*�m}|��N/�����X�Ύ�h����e3�c��iq>�|jҕY_V�7:2<����1�2K���Z!��� r:�����+���Gĥ,�Fuy���4�bmnE F�VCY��M�l��ӛ�Z4E5%,�IR,՝����CC���+��_{Y��#�ʨ��R�&��d�γ��[P�a�Px��Pa��D�5���,���Җ�h���y��H�������Z���V�M�"��R���x����|��t:�J�^�:1����y�Á�Z�wY,����8d��-�a����̊�en��*� ܴ1]�7q��36����[ �������'��X:1gηZZ��LPN ǺC�u�M��g�NI�O�']:���_%m��e��Rc�E��f�J�U�U\?"������s��0L�E n;N��B�i�+�RW�|IPtlT��r�I� ��4�-�K�l�B��5;��l����J8\���A�:�tQ��K�Ѭ1���07�R4�c��ĵ7Y@��Q��a���r�q8���r���B�Рw�pv�� <��8B�ď����$!��ᧃ9�f����sW�7���o���k�I��U��;c �@��KT��&H8��Qw'���Z6��W(8,����_��SY\����FM�Ǫi�l7�~���-uw������8���D5z�P9�- {x��c� ޱ��KL&#�z��@P B�͙����%� U����bh[ɫ�Sgg[�2M)�>���2���#G�b�G;��Ɩç��r�k�/��箊D�����ٸ�a�9����M���pp ð�qeFE��8���`� &SŅS��+3P��S�� PD��D���KK�zNC啂���e���I0H�f�x� ��x�z�����N���]iv��buWO׷��DKe��*���i5ۅU�������2���@��}QP��>��P����lc����!�Ck� ^�|��R�.��8��>�y������E}a��׶]�F�߷q��g�j�$����������,���W��ݍb�����������x7����� �֮�s鲭YJ������Y @�kʿF�x��C�,C�����F���̘�~�ј���s �t���-:PK�E�J^5gg���V����j��Q�+{6��2sg m�βr�\Rd�i�� �U� ��ʮT�e-�h$�ǰMXHx|���[�K4LM�y�дp�V��Za�����Z[Z&��IdQ�����F��b����?&nX�Qv����� p���X�O��dCY� :2)����ת�^���F��M�,ή4���?�����:u�F�%�d5UV6�_������Lm�[�nN��&�HBC�I�r�q�̻i�7=}2�ɀ���y���?&�=�;r�'�?���Xgᤵ��ʷ��"���o(�,vD��\~= ��C���eL�� 4h��!�ܔ�z8��/U*eƁ[��_����V���j� ��]9�8B�5G �="���������v����]��|ZaoG�@ 7C�Dp�𔔔����x�U��ɠ^��6_����gc��bs �a���o1�C8V;C��nN��&��(� Gȼ��h,�@ >�P|m�t;�}��2U��H��]������vsZ�va�x�����@ D�B�/�aa@~��@ ��,�@ ���(���GF�1�r�C�(t4��l��2��9�@ D�£��*T*�.!��Q�hN��&��#d�[�ہT�xHʶ��/�%�$�3}�R������/��v5��5)}���4� ؊;���/t�*}c���cx뮞q����e��>>���s�7ǎ;�{���p��%�������#�3"�գ8Oyg򈴴Ԕ!��BD�)��R �ǥ���f��B�C�:<�U!7{'�7Hw�{�d�Ϳ�6�9�����ZF��洚mB�w���o�}K63.4�i��Vc������7�h׺��g����=`���h�n6T���k�6M���Y�t���4L��ʺ��YI ,�J�'��\w_P�ۆ��� ��5� �:x/�*�܆ ���o�\�{��������p�6?'߂ C��C��| K,��K�8X�K�ಈX�".�L� nΩ`^��s�t��X'i�9�b>�(� �i5ۄ>t��}k�{��8��+�W�`+�Ͷ�Ńf����x��� ���\�X�K��l����}qֶr����1i၅ +v�ϝ�E����-Ϫ�d��~eR��������Mg���m�K3Ci8���7���xИy��x��J����o�2v���]-�������_������ƕ����w�u IDATA�����{���ڜ}����λ*���c��O��dZj���ԁ�6l?Qmk ~���RG��]�ڙǰXzԌ[g�|�=�u�2Lq�k�Zr�Rwz�?���� ��͐4i�!xzsw����f���?��?���������SCӟ t!Ѷ��!N�gE���Pws��d��������Ao��_}p��)��h f��5ĊG�]� ��̀�?Y����*��Ώw���}�J�O�dkK\��_��H��\�đ#�-yy5Vz3B `�ڰ��B� bx��H����8�����Z���iJK% f�ka!~���Jc��̸�XԬ����押3��F�]"�C3!���.�b�����F4���q2A��[�z�G���CRS��3^A�;��洚mB:B�5�=Vs~�ȥ�Cy,�n7.}..lK�����E0.:f"���V�N� ͵������������()����73�9K�87~WQu���n1�we��mF8@���ns>5�!E��+ׯ;޺Ocĸ�Ķ���k�˙i8�<�Ց�W<5���[��<�p�����^����_��N� D,X���r�C>���қ���qc9?�x�u��7�����fN|��7NF-z�>!���4����'��D3���^�Ld��S�@5i���޹�'<�hSn`j�\���x�������oe&09*�|jFƴO�4{�ddddd� r��"�؛�3W����\ۛ2��&]#�Ok�7o�s#�G�vϝ�ػ%��= ]�p2ЄD�J�BZr?x8##cη7o#��L�����Iߞ����d����4@PZ����+L�ӔY_V* ą�,۱!3�*�����]�J%��z�y,Wh��x���j�E}�P�z$��j��;w���ﺰ��֒r�0,�*րL�tG�M����������@l'.7txjj��h��:%�r��Eo�WC��6��/8.Zɷ�lǍv��6BZ :���ܰ�ٝBGsZ�6�!sߚ��v�5�E;'-8�����F�<�X�������� D �lh5y�X�M�m55��*�jk1lͿ�7;�����#��|�9W�CsS������7��ɟ���"S�+�fDD<"�f-_9;&f~�S�}2�hÓ�<�y98+��'+���������vo,?�EVi e)�p�*�r�N��y^��T�GN�B���Y���}�͔���e[� ���jN���ۍ�%57��9���[��9�C��b�_�f���Jq��՜8rIg��?z���Tg�8;�p g���"�PrjϪ��ʇ��jO�j�����I���51��� [���W�5�$��n�D�I�Ȟ����NtndKΡC�f�9?������L'C�h[�V���df��=�M���K�i��������s�P�2�ʫ�w&�"��KU*EEy��U�mD ��z?l簴-j�"Q[bj���39��Io��\W.լ�S$E��uv�"1�'g����.\���ͻ�_f��G���.9�/_8�[�,��P�^��zK��KH��=��8�t:1�P,泜N �/A� �]<|�jK󵷮��(�f��w���o�oNMS���@�쁐�Gd/��^5`��2n��  x,���F���l����s7�(�9� ���\��@�,�H�������xz,G��B�APf���t�f�:.󿺧��ޘU�.l�$��A�co,��v�1� ��j�k0� I�ױxҸ� ��_�?�M8�����_��;6�]�I����[�>�E��V9�r~����G���f�[��><����aZڂ'I�� ���͐h5i�ss�ޤ�s#�P�=��p�Q�.f::�D�J�B��|&��I���`�dz�f� �N����8|���ʬ/+��������@�����2=�c� ���=�6���� #I���T�&w��� ߋQ��������$�����ךNp�k�CEB�w�tz~|��:ώ�z3jo�( �0���l��(橉t �0i�s<�b�ʨ(Y[X���w�SFG*L �i5ۄ-2�9B�5�=gס����� �� Rr��t:�J�^�:���`�4�j�(;������uF�5��I90���_�h��N'�c@`n/���gN�7���n�+T�m�����U����>]�=wشI��e�Ӧ��^u��� ��0~�-�>���FJ6y��D7�$��Z�������V��\M���p�k �����d�(d�X�W߁u����_5o?���)O.[�tbΜo�����E�[+=��Y��E�� �V���i��5g�M��72C�����d��;]+� o��woN�����)i���K'V���ӖY^f|,5FXt��j�D^U^��#���o9w� ���&Qʭ�܎�v�����/' BҔw���o2�UDGrj�ծ����� �����F��ko������[8l6�pX��&�c���)K � IC��B04H������I$B�G�'r��ќV�M�CG�ܷ�>����J�"6�З"�2p\2���|�~"i�@���Z~g�C"0^r@�}r����F zM���"�A�>�J\�}���*3 �1h��A#�@on�iD����"� o�^!���C��n?b�V�3 G��p�;;���Ƶ�F� � ��l����- ,�� �8p�C&�h����8 W�����1q2Y�ݳ���N���c�~<�ЮYU\�=v����=�|NJ��Va�� /`���dq�W�c��j��O^�`°0a�k4������P.7j�?VMKt;����K=4@� �1. �q�� �V���i��5g�MZ:52=�]L']H��D�t��n��W'�:;ۚ��hJQ�)w��iˬ+/W��RTPX���,k�����%����~�-Լ���J�MC�G!��ʓ� �l�",���zM8��9�0�� ����+���lQ�\`4��f�I($p�+ �� �m� ���+����.CS� `���b�dA ����������N����Jh��x4�R�{�ܼhm��=]Ũ�ќV�]�;G�ܷ�>�aPo�!U���p��t����F@�EA9�l��C�J����~���]f€���Ɠ�t��nKa%'<ྰ0i�XS�[�:�z��(�~�2�i��}�����\��Z�0H8\и�Ƙ��}��>�zX��ע�ٻ�g_���od��k�E��7?s��x�?'����ۊS-�7b����X���~��\'@�����Y�����9{V/~�w7���s��K�M;�z{�׏��zs��I�[ż��u���4u�4Z��Υ˶f)٦�ӛWg5� /[��i)Y���wV�w@��}�(`{����i�Lqv�֔�����/��Y���?�����|h��_���YR�Y}�U�n_Ú�~�ј���s �t���-:PK��y���D[wZM�F� �֜�7������v1m�t!�v}o����?����P�~�̝5L��t�߽;������M�[���U�h��-�YV��K��5MU~�����X]ٕ*�����O���R�Ԥ)��:�� ����u%5��m-�j�i�u���ՠ�VX��'b����L�4���6ccIq� �u�e����P�i5j�J��^Fa}b:�� eE��Ȥ�ӢS_�nKM�f���&M��K}�t��k`KOO?u�T������Lm������2��D/t�7=}r����g� �`+{�r-�@U����9>^YV4v��#����7V:�-5B�jdĭs� ���c�L{�����qY����z�$&e��ק`�p&��)Su7��%�W*�| ��� � Bĭ��C��lu}Nao��76����j�n�+r��N�tk�B(c��N�������/���/)3�@��M���X�tX���$� �.�X,�@ |������ 7e����:I[�lm?��O D �A��M�d��@ �GAY,�@ ���.����DF����v�@�?��@ ���.m!Dr��_�!T�~ �AػH�����lKK�rX��A9�ǒ,���{]��nm��_�����M�؀��coz��@7�{]���_s�رcǎ��������GQO�����/�Z����-��'�&F������2�o����8k�SA��@��Z)i�-O�xT�dX��=����/��H^t��I�yZ0+��^�`���G}���ٌ����Y��u��]�A��џl�w�P@��}�?�6���w���M>�9�o��6>��� �!��%�}�1p����>�:#�� OIO������ǥ���r�^A�C�:<55eHl���~tu�s7�,5��`#��Ϳ�6 ��ބ%���4�R�1s�RCC��Y� #S���� ���򀞎�/b�Z<& nˢ���mX]o�`�Z�׸��c�A���{;����}��w&4����������6����/�j�y��1��|�Lz}i���ӗ�P�O����9��7���0��MS;���B�4��ͯL�u�Y�?"-N沒ӒY�g;�'d��W������(/���3_���b�b�̽X}�8,�T�fL,�Я�,�e���kyE&\�ܜS���mݻ��,�"�6'PNp^�ѣB����ӢW��*��5; i��޼�޻j�ބ/�#���r}����l;�XAڌ'�J�КN�E��ă7f�4�.a�*I�{�yu�'u&�$r[�J _�. �zf���<@�R�"��N���C�� 4fޫs:j��zo�μf�M^�;����G�Ҝ���w~��������dʿ_�}��YI�3�+w^�I�hÓ��\E&-<��a����2����^c_ K���+��T]���o:�5c��agOq2��*��h$>�ƒi�a���S>۰�D���F���略/��x%K헍+�;\Iy'4fޫ/����6��kƆoo��(�N�myV%E����{^Y����dmξV~~^G'C�h[�Vؙ��?Y������=��x�ѱo7.��� ��������^���������Y�;(PV}�|��������>�-d�CӒ��j��귟n��m1Ie�9�W5'DP��0"-r��� *�2�����Y�+������<����؈� p�Ն�T�j�#�Ej~x�?ǡ�,�V���NSZ�(Y0��X# ���U{�>G��h�H��LH�,��� �X&k�;g�� jmh�LPar����q� Y2$55>�Ap돞����}�#v���-+:�����s��y�����^����_��N� O�����+���̭� K�J(�|jFƴO�4{�ddddd��Ɛ:��4�Yj����X�)705Q�F���oܼW�/��9��'�8�����^�)z`�����Sz��W������qc�m�'>2�׈�3Ӯ_k;����K�.,�:~�O4�ޞ��1�Im+� i�/+��{��ؐ�J�J]^F��;}+@��'"��9=s���y�e0M��^��#~��������I1?2K�R���uk���{�8�v��1�we��m�M�Ip^PjRhMm-@��ӶԴ���?��䭓���'�;�:�g~z�С��wn�ǣq<CD7���ϝ=�[m��/j\�`�\9w�j/<��5Mĵ���aAXU�dR��GO���:bDJrb�J�zap�t�D��K���O��L\�lN��h%�f�q87�tu�7�H�A�#�N -�?zR�Fox�U��I�c�nzﲑ{�v�5���i�Qi�5��Ֆ��b hn�����8Ƨ��k���>D���b 0֫���1I)����������4�5��������$�����fg���<*a��-�� ��՞�p�D����s�?/��:KΡC�f��ܫ�����<�\|�t��>3[�f�o�w�64��lK$��Y;m.�Lv�?r*�&*n!�N�����EXuɩ=�NykN��9�>Gk��͚�%8�u��<,.Vs��Kz;@yIM����"�������B�pJ@�򡱱�_�Y����+�-m��!Ѷ�������@E�,A/��RT�U��U'�?l�r����� A2�:Z��K��Ly�yg/.�i����J���\����/N ��񷩛 �� w zֶ�3�E���Ԯ��U@V��ia�C� ��7Z&�2�&z��� � ����E���;q�����\6�Օ�'�����ck�G8,V�5����V0�W֙���p]��f��"�d�^g'$���m�LUyj0�X|eT\�Jw���ױ��r���T�^�pw:�G(�XN �3_T��n��wY�U[����=(� ��C����*��Q_z晴{���bySu�X�@H�#��TM�0�O�E��<@��bt��pPNp��?w�U!�9� �����l61��;�s���/ߜ���y��WŶ5�p A�co,��v�1� �v'�����Y�ҢMO�U9�l���#�v/�i5�l��h=wL�'~�2N� H�Ӂ���D7_k��<���e:6�f��6$�V��Q_V�7:2<����1�2K���̴O���d`�^srǿO��(d���^o�z���t����f:�������'���D��L߭X�{9��_�]�M^;}&l͓M_>��Lb4��v�sG:>�Y���d7�״N%��s�ړ��(��5��Q��aa$i5���w���G�g�LP������6��;�I���٫��w��^��( �Ȇ³ � s󞅮�5��)�#����YT������y|e��?3��w�$���֖RJ[ �u���(��� ,����z����c�>Q@tD�(�,X��\miK��H�4M�s2�?� �L&i�˝��?�'��|���|�g����� Zc�`��fp F��|"�����]�w�C� ��6��d�T-�cz����rt�T���k��Es�EJ �N!���b��l��(7�a�}�C� ) ��1 0�+c�}3.�����37�coh�ο���{����VMk{Z�/=u�\�,ٹz�N��b��yvղi��}��:R��r�.wp�R��[-N��$I�W���� ��=g/w���\.:?ѱ���nDQUi�3'Q\�o�n��4A��CF�e�wpw���������>+F G��&S;_"�zn�|�N�X�c�y���.m�}Ǧ_�����W��sv����X�m�7�}qȗK6�EA�5C��?�t��z�2����3�J��k��I��5�=�)}�m ̭�����tg�p9��q<=K<���)L9"�ZL�Z�mn/����.���b�Գ�FFC= ���h��O$��h�1��!�\�1vUR܃�QO�jT�:k���� �E�H���_yu��0A�V;Y-�_>Y��(&В6s� $��CC�O~:9q��c�Qk%��bç��g���p$ʈ��q ��L���0SS^�����O����Ӽ A�B��1�dk;Ց�������(͘4V���Tq�q �����[�E�g��`"�~E���-��M�q���Gߺr˪��z����ں��k�U��k�>8��t�F�iy8W=��L[II �Xmy�.�ϩr�@;��L�����O�K�,�S����*dBvgYIi)6iUI�gK�%��ݹv��wdEJy\I���[Ξ3�%��~;�q��!�j�=w�-:x��>�4�ް[{�� =CS�S�_��Ҁv�#F�x��7ek\�*m���_8�뗘/����7���)(8�qy<�0�~�����49�p�D���=�)S��������_Lmm"m����Ta!Xkk��]�������XuW��%����YSt�( ���h]�뱠52��u� F#C>�����u�$#NF[ IDAT.���z��Tn�[TV}�J?)��cBJ��Z� �n�����3=jb���Z}�����۸������!��뫷��^�)+���I��۶�C̎To�V�(L<^Ժ�ޜ���A�}vμӱw���g�~=W����|u���3��(���1(y{Ɯ��ף�{>�y�ү�_�z�5K޸���_����Z`=���k^���<ˉ��,���Km���O��x��c*���v��E��p��34��pn�XI��i�ׯ^�� �Ru��5�ťo~���`˟^z�˻*�xa���gy͞4{���_�jOl{��"�?.��u��?�r� ���7+V����D�����lDCUVA\zE����V����r��e�k�Ҹ{ݖ����0c,$FWT��Fp�J�F!Ā�<Ald4,�|7�0�;�$�����u�a�mni&"2�geeeeee���zC0�L��0�����X������two��k�[�#%���!,xazw)��W�b�]݋u�/�����%(�7�`1��c!1��R�6.�"vO(=Ald24�|6D/L���5�֙bgaaaaaa� na6 +��,�����������2��U, ���[�SF�ŅIq�)#<Ald4,���4ɐ���E(y����yF����YXXXXXXXFުXB���"q�g#������R�&"�N"&ӻ����wu߭ YĒ1Y���~:.��0���cI�������[�D𗌼��r}V��\�=/oe(�<�xȳyy����&`�-)���g E���6}���D�xw�������C����1�1@��Ϙ�w,��Gcܒ��� ��Q��G���E��O&��f�ٴk߁};?]���>@��]�Wx�СC�>�?���'�n޵o�ޯ?���.�Y�VWM�� ��:�1@d�������?|���ssh/!,� G��1>77'+-L��(M��N �;���b]Ҙ�����q�:��ˑ�]�1>'7g�����N"\���:3;77'kLR�ILV^N�³��:97/=l����By���9�����"���7���x��ƽ�f�/>� � ŧ[�A���P�\B��!��O��i DpTs���(� +O����^���ݱ����P�����#��4��ʹ�'�o8�ޚ&�ɞu5Ͽ��kނ�E����B6�`���+�f����▶��v�C�>呅OL>����ԛ�^��S�jonY�/Kf=[Ꮋg���v����ݻ4l߳��>d�����Å3�� Y�jA��/��ɬ�2��ʈ(ns��;�X��r��� ���N�W�k=w�ފ Ò�b5����иH����&G��e:Vn����^s�b&�LI�R782���L.�a���~��b��֋g�,�".5)��T5��g֚��uA]��[�&� �P�Ald4,���h(�����`�ޝg�`쾫�n}�J� �h�y��6q�\'�L>7&t�� �k/}�luQ�����.�b���h]�� ���K�6Z��Ru"��<5�Å��oG�kU�OD�$����5:2cm$�x����� ,l��#�Y��)+@�E��޻�`�186Di�<����hAǥ#�>zo��u<���]��p5����[��NB���#�{z٣����_���W��W㎟�e��h�w gxB��y-�z�5 �?~��hnr��_����hע�U[c�/�CH�/o?���� ���ֶ�^q޶��Ȏ�7������g�s��l8�c�+N�~�D����?ڻ�};�_3޹Е��V|��7���T��I�%�B�}�K��1}��/�@?���CUu�N4�Pwb�K�]��;67���/�:.|��{����q�Y7�(U���ݥ7���6�;>~:5�^����#P�͉�T��Y���*y���ҋ���2!Wc�t�"�M�Qt����L�y0ns|.�n0X\nK�ɮ�`5�t4[��;�f*J�pIe�ùNtT���{f�S�B!�����g�2�����A�蛣�U�j�>7zQ �����%@ѵ�FFC�r ���Ц�䌉�w�����["��Z7HC�Ei� 8��i\�pr�DN��%��l�) �ӄ4�HI\1+9z߶���'�����;D��*j~u�����w+.�ҨsT3C�q�յ?[iW�� ��0������.a����˳�P����.Z{k~~�������/��>��>�-w/��(4'M ����ή��[���z׋3SiՑ��) ���{u洛�~����ONTl�/?��� _�������gHu� O=�z��n�����/1V��!>,�8��9r�R;�Rz�ȑ#G��������#G�50_5���Pg����~+����gK �g4�V˩?���AL��3�D·WT��aXm�T ��G��k�J��S%DB���[kM�����Ĥ�� .��“ǎ���JO�t�0�2�rO(���M�ݝ��%�HN�����aDzNNvvVfZϸ���j2�v H[�F �%�:�n6M62�0�;�h=��}W����l~������B���ɡq8�@�D@G{��v�w-f�ĩ��7HI�$�s������+� �[0�Z�]����iSs��F�/�š��~kC�6�V���EE��X��l�}�� �8g�\�����"�c8W�VK0Ső�V��� *)����,n����㊔��)��h8�ݩf���¿__��%�+R=:9����N�����am�=�\�t��N������N��[euw]��c�����F��������$5��H��YB6���� ��:U;.E�ӅTW�y������x�����O9B�TtbM��=��A� �߹��ew���1�s�߼����{p�#W��u �>�woުDK��l|��ؗ���]�E��c���p�z&5����0�6�4Z\���nv���Z����&�dg��I�I ���˴Q �����ƪ��1mJ^ބ�x����� p���;w�DQy�8.V���io7r���4���[2R�q��(�'�Ʉ�r�8���R{��颢�3g�+M��8]0F�zQ`o�T� =Ald24���HHcu�1(a28�d�A=@�HI&�Ceh�^�V*S�}�*�Q]�rFH5��`ppT���$1� �rS@Y�6x)D����|�CK��K���,C�<]�Ჽ�/�����j�BX������X��:W��?[���*'p�D��k�Lv!����>�#%�\���:������T'�$}}�9�n�MW^�z��nC=�t�\\�K�'�%d���(�*����bB[��abJ��V���~��I��1/���_��������x��7��o_se��ʛeϲ��@�S����t��YW��҇���P���ӈ�k������Bi�����cGU��/�;:%�c�E���Ty��L�z7��م#�MOR� ���g��T|� #����D8_�P�M ����X��\c�0%�YwƉ����p����-��Z�兎��w���7�X�D"{���U�MB\�����SB6�V��Akl# ��R|������(c�C9�{�azw��z��c�c�>D`�p�Ko#L�Mբ?��i�|�(@GK��j��Z:]4wt����z���|1�h6^tP���0��!Յ@����t6�t�ܮ��*m��1���dնd�r��G>,�� �%;W/� \YL�=ϮZ6�Լ��].W���gn�a�FJ�\.��Ui�"�3w �sS��K0�:I����=W@��t�K��r�����%t#��J�9��}{ts&� j�T{��_�|�q�� @Yk���b�p� !h2��%R.��Z���� @Cs�9M��>~ЦL�q"�؞S-�T���{�� �sJ��}��G#��x�Xyۙc%����2L�>^��wP G�V�(����SH���u����C����l�;�l0�Iw� ��<�ӳ�����"�#R�Ť������$�������`=ix����\.�a��K=Ald4�K=�n ���R>'�0�;�h��؃�:F�C!�\�1vUR܃�QO�jT�:k���� �E�H���_yu��0A�V;Y-�_>Y��(&В6s� $��CC�O~:9qr��_G���O� ������a�(#�F�-�}�� i�]YWN�Ą�j��P�߾����O��1�X���O�2.ZE8�  ���� ͸�(>?~��WߟF7-Y[^��t�X5�+��u�U7vO����(͘4V���Tq���k��r�IV�b����D��$����p�zⵙ���:��� ]ޟS�<�vⵙdyy3��(��YB�IcUUȄ�β��Rl�$���ϖ.K>��s���Ȋ�򸒘�7���=g@K�O�v6��{�C՘{�[t�p�|����`��eOݓ�� ���>�ĉ�]?��xᕥϼ����a��%Pp ��x8�a#f�A��q�pQH\�NB`�R.��l�v�L*&p�/U L=�)S������e���M� �q9�*,km���K������*4�G���y8�s%Z��l�e���b;k���E���z�F&C������/m��`� �3Y�=�`������2�߫'�QOU�V��@e�'�$��*<&�����q�����\:->>ӣ&�>��י�AI��Kkx1�����~��z��������n̟4Q�m�;���H��mu!����E�k�͹ 4���@�>iԭ �x0���������Wr6�}�5�W�ꞣ���Ǡ��s�֧-��� l.���U;������'�|����9r��|Ut��e����QQJ�P�7�Ak4� ��D�]����z�Yx���VS��0L��3Z0�����=/oz�����w�pMb���?Mo(�*)[�~������i�D�Jک�~g ja�Xƌ��T��(����B�!Ry6���h�w�z��L��hT""�0�;�h=����h������e�q�[�����YYYYYY�)*�ާ�c~' ja�XH�@���b��\v��{� ^c�B)�v׫$�!��s�|s9$`�ޝg�`�P�o��eaaaa � %X ja�Xƌ��T���Q��kR��� 62��%į��А�� ��y&� � ��O�,,,,,,,���fL��$(K'���������� )l���������2��V��qqaRx��F ��R�h�aqqJ�!�d ��w���`����������(�U��D��)E8��F ��R�hDJ�.DL0�IB}`azw��z�������E,��Yn��Ҟ ���>��h�������<��N���>!)�gn�U���V��N�?����\�i׾�v~���1�+T_=�߇:�S�g3ch+f�� 3�<8 �K3�ݻ���e̒>��������{üI� ?YX�B����S\�1!��];>/oB7��2��d��$(�0�;�h=��C}���$G�Q� V�4'**���9��cWyy!��+F�j/G&c欸���G��P�Oyd��O,-@O����\�d,ڵd�]���p�5M֓>.��{8XXF;mB|��������Ƅq}oc֚��uW��ő)$`��dr�}'� \���^�]��U�n���Mս�F���o����>���� �v:�V7J��]}`azw��z��3����!�$��T�vu;l�r�N�,|nL�X!A:�?�^����l� 6�7]^�"$=�Ѻ ��'���m�8�q���D�eyj� ��ߎVתb��I⁑i.�,��X]��c�[���[�̓�����CUu�N4�Pwb�K��n��]�`���S��_��z�ڹ���x�uO/{��R4���?����j��l� �N� ��~���>��%�pj��W6�0�j�[�R~x�yۢ�#; �\��F?\�X�kQ˪�1��kL�>x��$�KȈ|�.J������D :.���{��s���U��=K�]���9/=5-A)� ,�fNŦ{�+H@� ��{쥧oOS������~k�zL��.LT�}���$wI>~��hnr��_���������Ϭ,�q�8�>'-��L��e�H�����emo��ַ��Vh&�I�Z� p�݁u֝*5�b��9��˜X%��^Sz���R&�jl�nU��� �������1�m�ii3T�[;)��Wa�呑���Q��ՙ�f�\!�B.��G�*�2�����A�蛣�U�jKg��~�mD�(rLNN��QD�F���a�d�'�M��!�+�TG�Rb��[0���>Dح�n���-�ҎpH�� ����艜��KJw�DS� iԑ��bVr�$�mM�O�5q�w���U����w�V\:h�Q�f&����o�k��.{�{��r�֋e��B����A�~��ה��.�1)N���<�Hnx깴�+�閿n�����TZ}��tʂ�)�^�9�����%~����Ͽ��2�W�����󽬃%�a��+�:m)/���"��l����VL���H�\����D_<1�օ?F̟�.�K���f]w�‡���O������I��ޚ��?���:��o�����uꔇ6]�o~�� �Oևg�{����܈�2ǯO���$:ڛ��k1&N���!%�$�m����?��.�om�pptlj)wP�����M��u�8����� ۼ��R�sȪ���J�k#Eom�O IDAT�4�Z��+�?,x��w�ݑ*�JJj�e���e8��"%EA����LH4��T���~�߯������D%%~��h�5>p����=��vj��*����� h��9_���;J;ܶ��a�*�}��c8W�VK0Ső�V��=:�]�7�8��s�i�Q����t�Zw�� g�l��_OU������h��[D�'9:9����N�������I����=�\�t��N����hO�>�'-2LdB|?�,E��{)Z.�<.�NcCEe��V�e��#$�����T�hqQnK����{*�c��t���F'�&1|H���jbB������|��3'O�9[\i���.A�v#G�Q�Ic��ޒ���Ea<�L&�P��i?��Y��u�ڛ/{^��l��;�$�>Icu��ˮ��T^��[gPg�}0����ze[]�LuCd�m��Gum�M �$oTS�q@��P7���p.��Mei��E�c���!�j�� �Vߝx���n4���Tq(�G��_��������x��7��o_s��%��\�e� �M���)��.WW�-�?��C\.A�]�.��K\�]\�WO?�U�|��pSn��2���z���ߎ~b��\��~�l�;��hn����⪥��|�li<�ƛ�z���)J���%��.'&��1����1��#�=��khP���:A\y��9p�}"OZd�Ȅ�~�Y������o9�v��ƊjAL\z8�m3�ꫪ��t�]{G�$~�h���*/���S�#`U\%4������n���U��Z,a"��bl��9��8q�p�;P�n7�adK�B��iG&�.�ުX�&!.��PZթ��!J���@���0H2쓣�I�4WT�=�}���Ճ����}0�/������aS���a>(���R񷚮1�N]9����B�#8_�/&�Ƌ �rSF`�?�����~e�j �� ��"���٪迨W��{�q�� @Yk���b�p��rU�x�&�na�����9]e".R*0s�� �T?��9���4���h�����,ٹz�N��b��yvղi��}�|�N[8��7/c�LA;u�ݝ�s�Of�j�[���*L_�����,�$�{20v��g���s��'�E��<Ĵ�]��?�t��;P6@(�݆8�����|cF�a I�ZӹFd�y�Xyۙc%��� �B����'tO�!˓Ԟ.��������E�jsk���l���&�.\�xO���s8z��H����v�g/���R� $r����/�l��FI�}b<�\.�s�J"�Ѡԃ����}0� ������]��V@>-6|jxx6���@���� L��{N��Ʀ� I�s�W�c{buw����Y�RW3���� 5��qyQ|~�����?�� )Y[^��t�X5�+��u�U7v�.���(͘4V���Tў5����?��y��k3��r�>v��y�K��_ 3}�S���V�v��D�L.�S���8����C��z�-��Nud����+�~a��dtD�g���.,�d�*�ڹN�����Ҩ8-�'^�i+)i�C�yҢ�D&�����xᕥϼ�����Y�04>V+rq��p��O������p ���K��#]�4� %GN�Z�G���y8�s%Z��l�y��L5�KFח]��6�6\��p�������-ahbr|Bj�g� o}��5EGk��j���u�� ��;�L� �t5^8��i�D�#A�/L߭�`X\&�{��!�*�j������0~RR�DŽ>��s;.���݀K���gz������:�/5(I�qci /F;9:�C�O�Wo3vu��VSV����&��mw����޼�.dQ�x��uM�1`/��[7k"��'(������ۇ0����m }|���cd.CɡO�}|��ػnm�3k����X��}��� i w�?C� �v}B��4�]���˞�T��Z��~�������h�5/�c� ����G�j@�dڻ���gWn{@A6��fŪ���-�\�O�m���O��x��c*���v���Q�E�cP���9[��l��x�s��ԟ�l�3��E��~�G;�Y��� [O}�f�7���k��yEw!��a��ddD�g�u�[���[_�U�� ��>�{����������V{b���J"��̤H�I����y�t]`��1G��t:(pS@uo��� �v:�ZQ0I�nȍ@6@ݏ�}�΄���: �H�z�8qs��S \m��˚�_�������Ry�� �FQ�،H!@Z^(tV�*�ۆ�w�J��x�� Z��Q�*Q��w!V�il�ZN������%� �� `i5�u� %���ۢ�199)ZD]~5�BhSrr�D���a���P�$R�Ѻwu?b��:�;?�,,,,,,#\&�ԟ?~�ª'$6Al�x����MR� h;kO9r����p�ȑ#G� e @�y�pP҈����p�x�}��q�r���9jJX0��4y�$DB��孄F���dgge�y{��J*�j2I;��kï�^(��h��|���I�wC=�HuF������w�L���`��������ܦf��0�,nB���Vmv��Z��HLd����8EQO,�q8�͍�]��(jln$`8e�/)����Η�h5j�R�l,k�}*�Ԟ9Y��j��tƳ��@m{�b�͗���gß�^Hcu��'w�$}7dG ��{�[g�w�C������e�ao�p0 ���n��p �kV�n7�adK�B�����u֜.�����R#�<:�p��I ����b����ҍ�v9�.Ϧ���&\�z��hRSc��k�=~5��QƤ��k|��I����#�D��u&�7v�� EQ�]����F (��(i]�x]7b��p\^ƹ�v�P���C� �9��W5�^Y�rD*�F.莅��.��� R��e H�r1_����'�˥|�7&�Cë� ��֙��YXXXXXF*6k'_��8�S�dTg����i�R���� �!�fMmm"m����Ta!Xk�e�0�����v��K�p��C��Rc�]�����49�p�D��͖ ��6��a@QT� �;bv�A����RG 2F�{���G��(,,,,,����P��W���Z�ַ��%D��\�w4V�մ;�0�.)1J!�HS��⦀�k��<*!V+�Q6�����B�ⲯ�@�k�����8�_�/,=+Fҧ�����VB��$K��tP�H�sq�an���l� ��c�-�**R�2T�m��(%i�ԛH��J���m���# ��p�jjZ��U3I�2!?C*ud�}2�L o�,,,,,,#g��_�5R��s�>4P���E���w��5ŧk.k2]:v�o�|Utwէ ~��8���G��j�8�ڷ��l*?���}�ۈ�X��(�"�g�/}�K&Th4*�SL1I�^uƄ �:�; ����C�q��mD����ew��7�V�X�F�.��\�U �z�C�Θ�Yg`�cgG�������,�u�`4�X�Q@��'�� �L��Պ�A�B��ՙ2 � o�,,,,,,,� ������́������������eaaaaaaaa}x�by�ȸ�0)�7l��$<���o��a O�����Ӻ�~��$��y��!�J��MP�4`|eL���9��Y��� �!��j�����1I�b�k'�.�q/���O7��wC��p\1�l.?m��/I�${ �ՙ^�YF՟̺objD��i8�ޚ&�I�p�1����׫��"vh?�� ��9�X��@�&�-� -�t �"cIQI'�’S��s ��W�&)�ϔYpE\jRDǩj�5�|��Ǽ��ܤ��p�)��7.�r;'I]&�[��+�z�#������C���u�e���_���/��������RxU����ܭ�.�x׾�7�x�����k�ٴg�w�_�%�����SM�=矟��U���vn���+S�t;DZ�îyj�������;F ݆f���¦���|���(ܯ��go),�<7Q3�����B���v�����]m����m���.?"�{�_���g��-�|$G�m�x�5O��Z�o��%�D^����:DB���,,,,,���{l�m ����\ܟ�*6ܗ���e�������������ޚ��?���+<��:M���n]�c��Y���9{��s��zۜM�[�ޛJ�O� O=�z��n�����/�V�C��iR�H����������O~�޳Cd��S,O9���i7���/񋟜,�K�_�\�ؑ�C[G:��}�C����r���Bs�$�����Rx"9�S����J~>|h��!�$}����rE�U�` �.:�Ys���ߊ�6��R��%�P��ԟ?~�B� &B�2H���*�8: �-7�J!N�HK��h���(Ap)Ww'���P�6�+����AI#�4B�����=M�.�ުX�j2�v H[��ePv��h��}%���d�I2@C#Z���u�e45���>�OKR����g�v[��'�II�.Q۩�{���� 6�{٧~�i��|�;*RE'֮כq��9��(��������� ��p`�qEJJWk՞O .u�me'�SQQ�D�����w�v�m�'�9��U�D�>����δ�,���� ��gtr���}g۝NsUE=����ӥ��~ ���h8�ݩf���¿__��������<*v����<��\�Z-�LG�Z��+�M0.<��;� �� ��p��N2@CU�W<�j��7~���<.[Ϥ�!���֦�F��r[��n>�S!u�ݤ��l7:I7��#����+������ �FѾ�q�8NQ��dBE�q����%��[Ǡ��Rq3�l�4V��D�G�&� �hu&��y��@��9W���r ���\..��B�������u�$ ���A�*�Z���G͖�So�y�7�{�s�D��k�Lv!���u=�Sݏ]n���xDh���1ܯ�D)w>�dZ���$:��O��u�/��g�o�'�d��\���R���������<2v����|���ߎ~b��\��~�l�;����x�z��rvn:vD������G&PC?�e�{G�$~�h���*/��n�z7Ff�JG�㤡�W�b���3���vcF��k t��v���୊h�B\ �U����������_9G��i��0�{$ې��>� �0IhhD�31�γ�N\.��z��p8.�[l/�t9�rS=��~��N[8��7/h?����r��M5������~��#�N�w�����٭����4/�$I�K3=�#�=!�$�U�EJfn�8|M�d@;���>u���ϐΒ����,&�gW-�vj�מgu^��í�{����������3rS2�g~�ۥ�� t�$1���l+��D=�m`��3�J~?�].Fp0O5��x\{��� \�xx<�������b���ns3H���.���b�ԳqO,�K����h�H2�$������:�2:�-����9U�h'^�I����6@���ܐI׍�_,m��z}D��U��O<�ϋ/.�S���8�;��� ͸�(>?~��Wߟ�ա(����p�zⵙ����#jnh�fL�U�DG��:�}��C��z�-��Nud��Gsa��� ˹&Y���v������ A&���B7�Ʊj>W}��-�n�3ʷԡN����S��:�y,f�ҧn�"������x�#�gO�Z �s ��B{��;�� �t�Ky1�����+^{��u���� Pp ��x8�a���q���a4Ku��s�a:���m�� C���M� �q9�*,km��S�&&�'�ƪq&�@���YSt�( ���h\���j�p����+���$L���L ��,���u��?�r� ���7+V���_�~�o�>��[��Qw��/�>M�a�{��_|k�]��y�˟n��nφʏ7�8�N���V>��Y�φ:��[���گ�*8V�o��.��z�f�{�K"[�mϿZD����G�y�[g�,'�?�xWCƢ]�����E�cP���9[�Q��GT�磝�,�������Z�䍛_}�5��s�����`˟^z�˻*�xa���gy�I�ؑxO�s�TWɅL�i�ׯ^�� �Ru��5��r��!��N���ѩ�Z���rk+�H�~��ǣ�S�OV�{��⪫��u�N3vו���qݛ�se�ΐ�!�s �:cuI}���b���d�� u�1cs=�R�ݤ�XZgf�|G����<�\������ ccY?>aL8s� ��� #dKe�(!.#�Gٌ��u=ﯜV���%-6�I20����ɼ��#G�������T� �z�<*JI*���F��c5����VG�� ���W��&� �hu&����yy��� ,,^�^�b��_o�[�0nܬw�)[��Ӂ�5cѮEM���|��|'�عڸh��!7������OCzS��a��/��q�C���Bo(�*)[�~������i�D�ʎ��|�,̂�8��d�������IDATR�6��#Vj4 !�H�ٸ L��hT"��$�>� 0IhhD�31�γ�x�y��峷}�sǎ_o��k�>��x�� �Q�暅�ڼ����������ԯ"R��vl.dK��%nsK3�9>++++++3Ee���&~@f�j�x��8<A��Nw���e:��'0��ARZ!���d��F�:C�<�������J�@f�j ]�WV����(��5)[��e���V -��d�A2@C#[���u�������exAfAk�g�k����bYXXXXXXXXFCR��Ұ���+�2I�qqaR���F�:�k��������eD�u�I�U�srsƏM��.�p�.iLVNnn���D���eg�{>�%�YI���@�EJ�.D����L��D��)E���hVgbx���x2���@$⇘�w,��18��|g��l‡�+�����=/_/����O�0��d��%L$�ؑ � C� ���d��C3n„ ���F����Ǝ�˛�Mv��/U/!�J��MPv�W������purn^z�CBy���99Yc�B�^W��]@���U3e���V�5�=�d�H�SS�L�ʍW�k=w�ފ Ò�b5��{�q!�qI����-���B6��6�ӇiO�$m�ŧ��A7 yT�31��YX|$�)a�9�bn�����i��4y��&��;��'��s�ɣU �?ܞ kM����EA�KmB|����X}�#SH�؁��2F�$q�*6Ii�x�̂+�R�":NU��|滤�H.'�-! �/�j��7[���0�)�� |.�n0X\n���j�����|mb�����߼����p8���b�t�N����}T�31��YFXȵ�lڳ��-������[ 7�M��x�����p��4���h�ƙ�7�����=��45�si�ݳ��o�طc��O���"�v���7>���i:��)�}{O����s����]��g��m߾2U ��hWa����~��\I��OT����[R��aWHn~��/;<���(�����~o��]����-~��=��}��볳�����[������3k���}�׫�v\�*�m����{����>����=w�K?޵���/ޠ�r�_����$�'MD(�(?�1Dw� O�+����'��D;���-������H�#S�f��Ν����9>Y���3B��������a�L�M��&�����ĥgfDI�rNTd�䴴�.\�����lv�B�\j3����H@�Ru6֙$ik�7�JE�Ȳ�~��R`k�i0����4[�`�)*i��D��<����E$GP����u�M��ჿL���199)Z��Q����Zg DM�;�� �f�:����|.@ņ��������ռ�����Y���4�N����i�-�o�3sq�ݾ�!����o�{�E�9i=U�"65\�H�*Zp� Sn������1��yi���[�Nyh�%��G�+���5??�׭}�h��&}Bn�K��{街O$.xp��+��Sν:s�Mw?�K��''�@r��e�'W�7u��w S^�����8v�昌=�#;��v���#'�d��HK�  �8č=��$H�(������v�{���?޾}K@��~�.;��۲f�����S^�������������s��4��_=���$��t����� ��;���i�A~�ԙt���ɓ���)ƸD4S|毾�D�������|���ѣ����ŴRvJ����gH�ER��׳��Jճ�3Tx:$ ��YⰠk�����(Ak�*,ݝO�s �[� z�R��]x�\��x3O0[4��>;KA�,m�[��� ��K�2 Q��b���W�鷦�[�$IQ V��Q��HR�靊snD�(����������9J���4d����h"��S�� m����(P�S#ъ�S.g&ti$t�n^�Ζ�����Hb��ʿ� 4M���O>���o��l����^|��w=�w_]Ǐ����������<%Eߐ����^�7��|�����F��6�R�$1 �q�9�<���ߜ�8�.5�[�Lu���� �#�6�h���x���䏼D��)�"���ֳtA���� ���#_�?�u*��Զ�������B>]\�a�ߦ*p�����?��W�2r�DtA�]��Α������ >֖chR6^�B@|>�P�"i0maM7���R<��,���cJm4i�Xx!-��Y(��3��0�j-� ��H��Pr^���h�ii�R����t��i1��9%���;mq6��O?#X�^_�(��B���R��kX�^_՛����������޼�j077��5v��%�M��M��������s���tn!��+_P[>�ă=�O������u�ػ�‹��5�Y��(�,�%+_�?�k����FS��_��-�|����Ȑ���O�ˌ��T�������{�[�^��;=��|`�I�h����_�� �&������ڸ���x2�z;��r9�ޡ����������Q�J���go}�_^��M <���~�/�X��Џ��'uzz�ȃ��Ddd���7��{���M���V�٣S��������Lx�-n�p��"e'μ�3�O_��=�'}g_|�{/~����`�_��w0��]��<+[�"���㥏?��#q�7��r����K�~������om����_}��s+�?�0�`L�zW*;�̓7~���-L�s�?x;�����#G�d����%�w��9��O޸��W�}s~��|��;����C/K =�J��/{��d=%[$E���$�C$:��騬E �?Q���|���ե�\���ж���-Mf��o�����Or"i:8��Ȟ?YZ�D�31���L|��.M��vm������]���l�dh�h�u)r��� P�3b��C\!>�P�;z�X1������R�4����4Sٜ����(�m��c��y�k�5ke����8Q�9��D�Z-T�띗|�k9��Z.����U����ͥ���p+:�J����}�C�u6L{�#�����.��|��w>{���y;����Wݳ����}�I��z��J�'�Y�xA!���օ3#�T5��E�܋���_�R�������5}�//8�f�"�mY��P,������rR�Z�Š���^͛����#T�����߱���s����+G~��믿���^y����5��U�t�m���A[H��Ct���������v3�`����K9�6�雕X��e,(FA\6[��er��"���|a�������q,!�Ц� �f�_ʅ5���J���������V��2�29E>[��U�y;[:B!�v��|�5}����!�BW�������ujg�|%�c�B!��F�!�B���[�B!�m�-�vױ@i�s3շ��u��5�;l:VLG}.�?Q8������L����{{�����@M덻��e����Ӯ�4���MZ��RQ�kҿ���ej� �B!��H�s��jZol�隠 !�������D�48v9��.r�0[��kK=�]��}�;��{����†FG҄����n �+�F�!��R�,EJi�;��J�K-��|��������ɹ3�,���F�Tb�-�J�� �b��I}S�*���;�R;[�T��.�'9X��`�u*�b9�S(���[�u&�qV�"��!���*�\�\.���Q��sl��Π�0���� �Y���Ӛ�z�YV��X��B��V_�jh6ŧ��5�P5�|�Ay.�u��M3"�n���Y15�tS%�,�P(r�}���`0��ڪ�j������ ���څ�!���jR��s: ��J4���%�~�;T6�Eۍ$IQ V�ө(QHrM�5��`(�2��:q�^;9 1=|�������#�aS�N+Μ?;04��q�Z��U*��� ����X��k�ۻ��F~7蚖%�/�޻���]]z� !�.K����^�x�e�̹��-�������<�P��.��A ����6BV�P���ϯ�x%uv�*86�X@\6��f��D�Z �A\��܂?�ڣ�@ ������q\(����(V���)��е/+/x<|� �BW�O̹.̹Z��ow�Yc��V� :�o��p�,�,�˲��ʔCBo1e�C��*��U(z>V����_;}n$��`�#���ĥ��W�(�(���R�yǧ�B!��Tum6!4Id�l���#�ΈE"m� ��/A��������`�M���@SgOL-���ݰO3{j2���Y,�P*�Q�I%�ŅD��N�KQ5u&e̗�(��bB!�m��}=u,��Crjpȗ��DSKw��!r�y�+�c�:|�=�nw���b:��Y8I�Ő^*w„�i���ֻ�!�l|�5�@fnҭj��k��L<8� md�- �J��!�B]�(s�>ch`,�#kJ�hB!��e�M��h0�Sˢ�X,B!��>8�B!��F�!�B���?dEF�b�~IEND�B`�btop-1.3.0/Img/icon.png000066400000000000000000000020441454653170500146430ustar00rootroot00000000000000�PNG  IHDR00W�� pHYs���EI�tEXtSoftwarewww.inkscape.org��<�IDATh���k$E�?Uݙ�IO61�A��."$� �"xX=��=������'��M=�?��7�Ȃ'o"����f#:$��d����!1�f�Guv�L�/ Së�^���^ x����E||���|R�F� ��~����O�����-�?rY�}��9�F�P���C����+W�`�1��9�$I�֞[��^9���B�s���;aH���chv��Ԛ���O}�6�OS�'�=p.�%��#����e���GZC�4R�IA���ZX\\��&�B��U�Q�����ŸRJ�������� {C#`��Z��0l��@��o�1�4M���{���P;q�ZMVVV����"�s�F7Y��&Ifgg�}�>JO�+��!�B�F��s�F�E�ܿO�)�����!Υ�������S����<'�2���oTB�*��>@՜�B�4�Q��g`]��p���r��E�^���k�Z!ݱ 0??�����C�e�DƂ@�e��������߂��kݱ ���[[[{����H�����Z�Z�>�X�y`��;~�j �iJ$e�x������4��̪�aȑ'���%��o)���=���JB�'0�*�l6��U���vk�� W�� !�R�����W�� ��j�m����x�&�1 �V����||�@E����y��@�ei�255����9Pz^!�����x ������6������ �Ah��J�T�a-J)�^�}^,LJk�Jy�9���%�2�i�E����| !z�{�#�.]�> �F�Î��9Վa�Ƃ�R�8���1?DQ������X�Z�lmm�]T�r$������ǖ�7��(���SJ)�s�2�E��5gf~SJ���\�scL��s�҇P� �B�9�8&�����'z�J�s��>Ax�}��_��$PͫIEND�B`�btop-1.3.0/Img/icon.svg000066400000000000000000000055151454653170500146640ustar00rootroot00000000000000 btop-1.3.0/Img/logo.png000066400000000000000000000017641454653170500146630ustar00rootroot00000000000000�PNG  IHDR]b�HgAMA�� �a cHRMz&�����u0�`:�p��Q<�*PLTE�XXX�NNN�DDD�:::_000&&&ve�vtRNS@��fbKGD�H pHYs``�kB�tIME� 3���k�IDATx��ؽj�@p��+�� �^�-���}�Po8m�� �ˀ_�.Uຨ9���n���vs� ��Wffg�wc0!I�L�2��'=x��y��Ά�ܓ�޸ޏ�|��= �}�A/�$�7�}χ��< �� /�����u�Ϣˡp-��R��_�4M��5ή�!�z���� o�7�ۨ�<�R{���u�77���՞�.j�M��^ᝲ�zŵq��(���j�k�_OJz�S����^F��K&T�gW��]�ޛ���~_jiT�դ ^x��{rG��cy��x�Qš�T���t /����Oދ�(&��դ�(�oE�y�&�v�Io����\p^y����j���}�彉�1��K�s�� �|��M~��@8l�*��gx�_-�e�Ӳ4>�����d�K{\�� /��y�M5��D�X�^���'T����q���W�Ѽ΁����R�k�0�Ys��̽o ��:�Z�'Jծ�뾙9��C�&\�-� ^x�����'��n��x�v1�n��q��i�d���}�̻eS���^x�˪�B��f<�[5!��F�W~���bƃ����W�C�� {���6��J���3K{��PoT������b%��V���i�w��/�^x���L��ꄷ���T|�j�"�}ˎ�>�q���]���o� ��� ��r�/%tEXtdate:create2021-10-15T15:22:25+00:00O� btop-1.3.0/Img/main-menu.png000066400000000000000000003451401454653170500156100ustar00rootroot00000000000000�PNG  IHDR��t sBIT��O�tEXtSoftwaremate-screenshotȖ�J IDATx���YR[�/���j� T����\|��ۀۂ�_o�n�n�n�n�>q���i���6�� � ��R)eq�HHF���̜353�#K�l6@�AWF����߿Y1�������ҿy�o���s�S. �5k���X�������K/��ާ��m�yGh.�w�z�,KU"�����I��U%!?���a��S��Uv>��'�`���i7���Z_f�����4V��{7�.�����VU�onq~ƭ��E;?-��g=��>�`s7�k��Q[%u�$��S���{�l�^tK��f����Tuw����� <�����+pNϛ�e������xt��|tz��2˕RM&��[����sa��y^� Z��LD���EK>#��t�=��ik�Y�35�-,N��L�Ad�D��GÁ ;�΅�z��>�R.T�WO�bu��x�"kjS6O ��yC#F�$9�0T���g��򬏫f�9��ͅ�Ӳ��b�Yʩr�7���R]%�A��q-�]%<�;U�]e�A������̈́�;׬ u���`l��EK�5��~��p�>nT����ڄ������J���8׊[�^����/�Kd���i�����q�6dN��qY�8od�.�����'jp~�~1���㒛_�l��3S��'�C�;���E��b��&)�B�$� � ��7X�����H��66�8�4 ��HD�B"UV�����"T�t� `���Tuw��Iw�j�G�����/߶e���=l;�x��O�Vk�x\n�DB�p�ACp1{��ڹ�M� Dyel�t�*.�v^j* c`�,V[�"��;���Hh��I��2�|.�N��Hz�z<���y����fz?}�Fbz�aUʅ�܂eYM�����8�����!)η�aֲ֥ۇ\� #�:�����ץ��V�3����S5��*u���AMw�J�0���S�VJ�J�%�t#`Yvzzzbb����>~�x�7kpi�g5�/�Ǜ'e"�a4��߆R+��O��a�:����rw#����1��^��D�rJ]����z޹��� �0��9g��Kʦ�{�R���QR�������0�����'���zui�����ax�wvq�6w��g���Q�cW)�w���ǂj��e@z;U�]e�A}R:7�D_N��z�pv|����L~��W��L~:�'˲\(���T����yB86���t���_�WKn����4�.��3�$7�-cF�H0�M��P����z�JӴzjk�����~[=ƍ�"���/ۙ���,n�M�ʒJD$7d4rD ��FC"����-7H��b�u�)�N�U�𻱫�d���^Rw�����>�3y�L]���c��,��׋� g�Yb .�C�VD$I��� ։�)�_�Eu�ft��,k �=����%d���7��F����,��g��/����r�h�M: g�'�B�FD։���3D������x�<�;U�]e�A]��l��XMn-�ݙ M���z�!k�ܨ������E��$���{�� ����hE����'g�b�ٹ�,�NbًS%�s��yN��'�b"�F&~�^x�g@Lǒ�d�*�y=��s�߆yF�Jg��'�[O��c��.��������W ��%_+Gx��%%���X�����$�Z�r7����s�Wo�Z�t�wZ%"%�8v�/���)�����_`���T�v���O����PeB3K�Ӭ���ٿ�$I?�����?nYYY���r�S�4ym|_?��p�}ԟ�C� �^ vg�]%��'����ȿ_�o����=�UW�����.���S���������:���O�}������r2�1������[oq�3y�ോ��)٭ϱ�nqAw�zʼnX��L4�Y,%S�ҿ�>�=8?;�0��$d����L�z6�v>�M˜�ӳ�v��J'�X���#�>"��zM������`DH�x���/_q���|�3�Ϝ3���}c1������t�-�v��'�.b.l�o�4�w���de5���gO�9 1鿿d�}��R����t�;� �� ׸=�0��f�����Y��ϣ����]YI!~c�w���� ����5�ٸ8�o ���^WǛ��wLV׮���d�J|�����-7H��b�u�)_���gܦ���u����rM��/J:V�'kk'�ϳ'�e��Z��h�j���z��lĚ��/�{���L����p8||||{����3>>~|||g���� To�QS�^���2���� ����� �W��0�� ,�[�~�\�@#�:���y��3���z�2)��g�G�/������ _��jv�n�@Dj�$��'�F�5���r��K�x�蝍Xr�򝗗I������z�l�?<��(����[]=����4U�W7Z700v�U��n���H-������X�!b�ˡ�n���멃#st�u�H�x~�w*t߬GO�'���yFm����/�) u٠T�uz��~�4;�Ǥ�i ��A�{�9׸�7��?�Dw?I��N.�C�0�Z�_ҡ�?�3��T����L�� �W�\l3�s�O�VKﭧu� b��|q����g*�� 7/3*~^������ �/@��?@��?@��? ��~��HW�G���{��t �t �o�21 ylFFK��Ô��#�����4"M�*���x�I�������Y���g��1����Z ��q��]\�v��\l����k��2��U؜��tP$"�<>3�Y,��RU��Xk`~~�i����^,/���. �.b.l�o�4�w���de5Q%�Z|m��N��Y��*}>*wYY\|�� yr�����֙0B��erz\��/��}�� g����������k��W��Tlш�@D��N�o���EG�8%\Lyͯ��N8�0(�Fn����4�I����\�����)㗗�0&��B�O'2���ۈ�=�M��H��:�aKvwG"�v��F�y&U�5��Sy��F��ZK���n��� Y�Y�c.Ft��յ�)"�%�~z��,�ǵ>s+�#2�6�C9O]�S�3��7���S�{kB��ur�����rM��/~w��O�6�7{���k�~�k��Z��Q�����TM3{�n��n��&� �p$E��;�Y��A�T���슦i4��6 �q�n����˥�͢�hd!F�TUSo^�3ܪ�Տ��GC�ş�䧃"���l�ȍ���v�T��u]@�0(����9:�:d$Y��D�Z��SN�&��by��]����A1��"����vM3{�_,LVVU�Yp�{�U�}�0U�o�*a���k[�&��K��<��'`�o}�o}��RN#��I�ջg6D �� ׸��h1��v*ޘ�qM����� ?�����B�^�łq����c{%���*���"�p��O-}Zn(J=�#��:�z�6En����D���JSVI#�ab""��<_���ְ�u�B��q�~�d��W�j]Qj5�`0��u]����y�*+W�P��KIU�w���Ʀ}��q�a��j��h���Ӌo?��񭽂J�OV�x�tB�\z6v~�u&��������V1,^N��0�i�,��G�tU%R�2붚X����r��M����A���a�5�cYV�4�hs88N��,;ZƇ�a"�w�ޗk`vnJ؈ R�`#�Z|s�S���v�q�l���;�N7�2�bՓ��$CD g��.F����i������ې&��"��u�@�0(�NLUU�a����<�gTUo*��p�����I���+�#.�3&��B�O'2���ۈ�=�M��ȍԬ#�dww$"Ï�*7��H�|5h�IDj-����Q����|��2{�?�qs����%�2�s����s�F� 2/6L���hH��c��,i�cf�4�e���.�G��[`�|o-� �]�����h ��kee�]��z���YLsK���I4j��^� �x�X���lF�&��� e!��˩�f���r%� R���णxV�� ����z!�j�)ϸ��o0� ��VInmE# 1����z�x{�T�㭏���?m�OEb�9���̉e���ƭB��#��{]�?<]���?OHåSO���CF���ӽS����Ѿu.��Q����N����TN2s3���x�Y+��)�7� �����|�\,>��B�pr�ξzo`��P�d�&��� ��.�'r�٣�2^N0 ���m�b?E�����}�i�L�6��3v+�m\7�瘌x�b"Qh.��u],'��.Ui6Mu�߹ 0��1���I MU�k�t�w8LD�j1{�����q񡧑�0 1 c�D�/M�GkX�:C!K�8U�}2���b��(��d0����.����e ��j�y�y3�Q �@�A����t����DT-d���`��������b9yKW�|�����#���ҳ��í3a��>X&�Dž���a�z�f�DJSf�V+�SSn��u�C��t)b�TR$���ֺ�Ag�'�I����]��K'���F��������R�ι �w&��n�e \�t�IZ�411��6����}��z�u��.)w��t%�4��@���IV)���V"�1�gB|:�q���F���n�|DNŲ�pؒ�ݑ� ?���$Rk���ԍ���Ѻ� ���{�|�� �O�,�,�]v�}XZ���41�4i��M#��x�좿q��_������̀���2��bq9���˿VVV�E�����E���z�u8��t�f���,���L�GG�B���S5�����Jz�.�M�sx�ΜX�9�o�*�$�G�EE��B������2�:����x�!��O[��A���_����^����%��yB.��z����2�,��� DD��K�֙�g+^R2����Z�Q�N�\��W� �� ��L���֓��t���w�f.�}�~3u����!x�L�p�-g���x���b.���� �b��ӟ�&�����U�� ����>瘌x�b"Qht>e��{ �F�e�g��ML�|K�^�w��_�l�6?u�̟������������^�e���@t7�� o��l�����z�|WSv^���`�� a3;ǘ��_VVV>~�8���Cb8���d�����[���UP���9��g�FC�:����=�w�h�٢�? ��%��KSҐ�����ݴ�7|�y�|�΋���Ѣ!lf�p�t �t ���et�����@�p��������f-����� �S�Z&f�!����b)yx�"�柛�rYx�Y+���Ul��g �|;c���~ܫy��l#�:*��[�,S�^�͹�OŶA����r�41��KDmz]�?<]���Z��v��#b��E̅���f�οX���&��̌��}5)2���r�[��n���������x>*�.�52{���W!���:.�4by�dy��4�o&�5��T��n|��S� ~{>.��u],'��.Ui6Mu�߹ 0��1���I MU�k�t�w8LD&��VeUmV e�t�a��=Mi6.��A{�$U'�4�a�a���'�|i�>Z�b� Yrǩ��A���b��(��d0����nݏ��H�����aɇS����U�z�B���fR"�;��d�j1�2N>�� ��YQ%��Ɋs�ʹ1��'����[��H�}�LN� �vGPiʬ�jbY���l�$�^���x��\*)�? ̍�k���59&|��q����O�-]�ܾ�zv�FDDR�`#�Z|s�S���v�qG�!c���Ӎ�L�;�Z�411��6����}�����N!x����vnЕx�t�w�y������^�Tm��a���8�N��<�Θ�3 !>��8��o#R�p7q>"7R��pؒ�ݑ� ��H��v�S7��z����e��E'���q�3;;��v�����!ɲ��s1�s�}���}�8��F��vfDF�#��t(�7��E�x�y$��:�[�o�����h�����F���_���+���}V'�v"�Z\�ץ�8����b�v��Y`H2��>��R�����TM3{�n��n��Z��䡿�cv���|ʐ\:�,�/y IDAT*�Fb4MU5�FhX��~��>/��%[�j� ���u�@��t���Yq.��6�����3_�x+^�����q!~R�q�2��Ç��߾Y���Z�|�)�f��e-SSn��u]� ��R/�J���!aE�(u��O�S^uWmp5�ޚ��n�|��#Xη�aֲ֥ۇ��^�,�ic�9��U�e����F��������҈�ab���Ӎ�L��X�dc5��Y���Q��DZ�411��6����}��n�uB�CD�n�z(u��O�S^u��l��08m3%��1�����,��Yǽ#�&��r����)�� 2/����hH�{f������-0v��o������rM�������8Xﳕ�!�ibni�v9�F�[��뺁��gs:mF���5�[�{ v���UIw�kQ�������������lf�=��ݣ/�z��|��X�~5����P��0�� ,�[�~�\D։���3D������w�" �+�Vߤ��qfOp�)j$��6w��b4MU5����Щ�W?^�rTV�;�NĦ�9�^��eX��7n�v�T��u]`�f��/+++?~�5=b����W_}�1����W%�)�E����޾n�������l������{�%]֓�ע�ٯf�Yy�_�[�e" y�F����a,)(�X���S.3ϨM�<� BG\��|?N�(���Jdp��"��k���X���Bc\3�:,��Ub���?m�OE"�ꛍN�mVi�D�(_o�=��� ���OA��� �NNN��&��<ӑI�R�h�p냤��3=ӷ��*xׂ:��v��֢����#����w4��ֿΠ[�>��Xz��у��-? �4�V̦�NOϒ���hMլ�ɳ��ӳԏ�}w��ߦ�z���8��l��Tˢ�y�ۃ���㔝��N�9+։�T��K'�Β��м9;��O%ϒ�R��m��Z!]|S��i���T���J��T�$�v/�n�k�M~ ��%<���z]�x���AD���}��X\^������W��)������%<�3yM����AD��[`��m����3�xFn4�_mW:�ҝS�������%��-f���~ :��:��/��ݡ�M) 䚚ڕ���DA[��-fx���>����,��D����Z&�/޼�����1��xQ�e��_+��s�- �a���o��������Dd�.�y���g��u���Eޭ��u����5 k ,�z���ۗ�㦋r�����i<�7� ԨK*g2�Q� AD�[n�L��� ����f�ο��n�&.^l�-������ᧃ�v͏�)����md�-��dM�nW|<�6��[���ݜF,ϓ,�}�P����E��67�N�1���~ac7�O-/Pl5.���:�z�S.x,TY�xэ�lh�jDD��g������\P�S^�N�`-��<w��#]�ο�;��c�Wg�-~� �w,������w\y��^�|�Q-�.NO:LT���u�B��Q�:omS:Ď9����LD��ƿ��L�1 C CD�=3 �jb3^����xU����I���^��{�9@?Y����a��YC�{ v���UIw�kQ�������v��ٯ���fv�Cz\�=�����P=�~-걞�j杕���U�:5Q:���l �,���B��r�w� �}9�0DR>Yq.��6�����3_�xk���6=�2��Ç��߾Y���Z�|�)�f��e-SSn���:��0D�z�TR$��H/>��|A����֢~��w����ճ__��켇���{�%�/�z��Z�c=���;+���k�5�bk���Ӎ�L�v�s ����}�� ={�2R�`#�Z|s�S���v�1�JvG��TO6V� 1��;����NJ��N��oC��?���]���x87�[���7��O��S���7s��cA3^�iK����/�t�}�-hDd���)�)VbL�N�;�!''ew��3 w�Cp�O�Y�����.��q0bL����g�]> ��k��_��)�����\�p�,�,�]v�}X��rM�������8Xﳕ�!�@�9�d�fZ�i��E�hs�b ���ś��i3����CLsK���I4j��^� \�C�3�9��B��p�lo���U�){ʫ��u�>��*���?h/�j���w˕t���Տ���q����y5� ��i� ���gU�գ͢�hd!F�TUSoo�Žs�י�2g�[�\�Mq�^� �0Dj'��<%���k�����ݫ�S��Wݏ��Oo��M����9:�:d$Y�Uw��A7YC��ĩb.�����k3����y�<ӿv�ۃug�j'�y��1�r�D�и�<�7�k��~ܠ���w�����o�ۋ����>;v��h����LG�n�uw��0Dx���uY�{���Ogs���\uWmx|t�����;�΃?0��������k����}��p��`�0���k�Լ���?AWkL}z����[�������@��k8��g�FC��1�6��y�}u�ǵt��90x�4�MiH=�A{,��XcOoա��#�۽�^�k��k��e�>���c����Z���j�~ :��:��v,�N��{�Sft����KF�T���p�<"�������b��{"x���߬%��m�����NO k����<6##����aJPh,�n9�_>�W�n}��[���2��U؜��tP$�wqi��6r����|w��t�E�� k ��O9M��?ދ�%"�^����(���25냮�Ȩ'��r�PHMm��1j���>�.b.l�o�4�w���de5Q%"1��v*�v���7�G�̞�%��U����K9�X�'Y�#(7ZDD�݆qM����� ?�����B�^�)���GDS$Q�d���S��l4��F��xP��^�$���ʵt��;�A��qb���%w��8����0 1 c�D�/M�GkX�S��� �*V�R�I������.k�WS��ϛ���B��ϛ�=�0�xޠ�W�7(~)�*���2��ä�)�XN����:0>|,���B�[Ű��]�'+��o��B��n��뺀���2y�!��=:+��%�Q�\l3��j�������nm�ug8�VZ��o ��C8�d���B���w̳7��槛ML�|K�^���go-�����.�փn��8���uYF�=t�j�歞�m���1����]��҃��Q����_VVV>~�8���Cb8���d�����[W��zm���6��`���P�΋�~����0��?q��ӥ) iH�e@��ش�m�7�Oi^����C�_z��9*�?���.}6��p��ֳs�Ң�WOx��:��:����L�DC����R��0%(D�y|f6CD���ȍ� �� �h�d\Sa.����ݲ}�o'�6�� #�� v�a�d�BSU�Z:]�S+�M�dUmV���Ύ���`�Z��|V�U�)d ��Fi ��1FO��Ҥ}��Ŭ3��S�ۃ��W�j]Qj5�`0��u�@> 0 �n�����Q�\l3�5���`�L��[��՝�[������/WL$ ��)�OpG�{Q�齍��41��M�O�>���Y�:�^׹�z�-܁���^��!��i}x����z=V���wV~�����?<*���jF�eR�[�Y�u;�`�?ȹ��#7�Oyg�kki�!xT4�!�.���0��5J�2��MpW��Zj�������^���m�����`��g��&D�������_������u���A�~�[��������ң�!��*������_�21 ylFFK��Ô��/��دM����WX �<>3�Y,��RU��]\�v��\l�4R7/_g�z�*l��|:(�E�-�˗�+٭ϱ2������Ӥ���X^"��u�,�����ssa{}�����/&+��Zf�k��y��3���[�Qg���s�߶�-���mW<K~�|�s�r�5���Z7Bk7O2�p[�����nG*�]�י�n�ޯ%�E_�ޗ5�!`�K�5�U���BY����r����~�\I_�cv����8�O��W#���������|V%Y=�,*�Fb4MU5����Щ�W?�[ �ڒ��Ďs�י�2g�[�\��sK�� ��A�������!#����ީp��n����hrR���2��&�k��ݏ�d"RZo<���g�����X|�W�Z89rEg_�7�JC(�2m�����C�Fs��\엸V��t�wƙ<�!��=:�;�a��=:++��8�d���B����*�b�uV2ibz�[�_����Lm~�lJ-s�=�Q�v��C���[�gs{�. C�����.�cqy�+�U� �if�p��Q϶V3�,���Z�j�ۇu�?ȹ��#7�*�`��z"����GESR�b��m��(��h��,8XO���C�t��q���������z�?{^���f�M/����u�L,����t�_��w4S��CX%��������_C�ş�ԧ��>��G��L}c#)ݶ��w������JD�w齷�u3�$""K�� ���s�䞞�����V:��25���������a�ꥳX,Ums�1����Z ��qO� ��;��E�-x��Jv�s�L���s�S. �5k��-m IDAT��X�ڇU�[�8{p~v�afUI�����^�_��gÏs���ht�Q񜈔RQ���l*����4�������Ykig}�F�����=Շ1�XOd�-�m�WYW���T�[\���������N9gt9P�� >X������کx=b��� �W�"c ..G�����`�dDCL��/�:g�~�.>(���<�Å1y"s3�v^�*�Ã�r�� �酈�n$��>�O���&Odvzb�H I���mse].s)~b���t.Q�T�&W҈s:m�|Y#��2[BS#҉�]������1�V�{�r?^���xj�/�B�?˅=ָ~�)���Awk(h/%��D�|�*�3��l�*�D�BY��D��=V��R��U��JI��fQ�� ����MD�l孵�댼X�����uV�ֶk�����`q5.q�Ȭ]���]����?n}��p�˹��Y�tYH�H*���N���t����4Y���r��j����nf��WB���Ԣ��8n4�v#��#c� 0�͢zg�!�d�z�aR�Y,'�b�JBb}�rVV�Q���<�^�z!�"""��;l����J�`H�ۿ�۠�CmD{�O������A���V ~a��Ÿ�T���s6d5R�Q>Z�dE%*UĨ�x9e�d�H��oA�]c���&�����D���Z*�Q����)�Nd"��k����E��0���k�*�����U)���e5Mc�6��㴺ʲw=ևs���ٵ����_����j�!"��xg����I��X�c��w[���t�D�P%�|Kf]j-{�}X�Ǚ#�0,0��ۍb�^�!I���J� �a���`5Mc��8{`>곲�J�����6������1 Sv�ɴLDB�d�t �Z�k�y}u��Χ,9"o�W �k�l_��DD��*�0J~�s���3�zGC��)������*7����H�|5h�I�3�r�%eS�x����m�V��H�l�0��;�8O����OA �!�� �n�z�U��'��*�/4M#��4�e�`���ķoEE3^�y��!��Oy� �!+�eϼ{H3���Q)��c/��e��\� @Ӵ*�<\?K`����=N"�N���1���B!��]"��懻?[��^*$w���g# �\|�B!�sE�� w��ƎgzvVV��t�5��y���g*�Q�$(����Oȍ�rغoq���v�&V�Gq��V��=1���>~��7��/z΢or)�e�E�̱*_����G�6�K���ON�!�s��:={G3�6������H��K��E���΋,�gf��S��$������sb�y�&�N���}�;ļ? �Bݙ������@�/&V��SaRuw����_��������W$�՝�"6�/|������DVO�@ʻ��]8K*m/�zm˥uj鍥���ʉ��jy���o%Kj+���?I�~\�������\|97�]��;B!�B��B!�B�_8~@!�B� �@AV��m�r�����N�n���_t:�{�4���]���O��JH�Y��� �����~����Ջ�Y>5]v3�d�f !����B!�B���B!�B�_�<i(�⑟V�?���6Q -�X4�0�j�U��$r����E^��++Y�O�Ӷ�X�gcU��I$��^B�4S'���h�me �]�$��z�1B!�B_�����^^�?�� �;>ΖW�m��z��Ws���#]�Ig;���$���ƇTS;!M��|�q���a�',�33!wq�0� "�B!����a(�""�.gx8q[`(�"��ʘ��N�S�݌.�ilC� ���4�u�g4t �ptlx�QP(E�k6���{We�R��r�S͖nl�}uʹ�J���.٬��jK�Fj��e�!�B��נ�?�<bs�m��}t���7g_���,���d"�T�K/oe�lb�f(O8j�6>l4U�o�Gou@XEu(8�ӻ��ZY��fB��j��I����:M3*i� ��.��������B�o�$I�A��e#tg C�s�,�A�څ�B[h�8u����њ{+�Y��NE|ՏYH�m��q���Nn+���l�TR���[|��H�TU�`-6E��B�d�������r�,�X���YH�U][]ܦ�F��Þ�z�S������?����__-�/�D���K��땷���ū�z�(K�F �p8������E���d��b�b�˜{�A��� �X�$ ���f�l({xv�!r�T����P�~��+�B�\���@�EQ��U)��ޤ�� j-ДT�j��S����wB_��u���ٟ\?v��D�s��;W���>Wx�5�I��MK�ӡPhzz�a��� B�I�T,www/�y�� G��aA�n��0����њHg�'��m�O=��^��I�e)X�EA'�.��tZ�F�.(��Kg>���H�o�U��������/�}�]��K^��w��Y�ֳ�n��(��������.;~��tZ�j��߈2�Y��P�Mn�'/tT���؋��DY�n3Wl�4���ٷ 't^�R�Fl�L�����������!3To6�2褮4jͰ�o���Ԑ�m�g�gSE��;�����ݠ/������+\���W[ꖳ�B����A̧2�ɇ���\"[����>6�b�R�Z6�h�-�����H��K��E���΋݇ <3󟟐.}Z��;�t�5��y���g*�Q�,ɥ�9y2Ǫ|5�o�%�)H���� �ԅ�v��z�U�+l%���V�B!��0In쭽�;��m�(X�mt_�ڛ��o��O��ُ og=�P��Z;���R�„@*m/�N�����.&V��^�"�B!��!�:!�B�/�@޿�H�[�zB!�B��@!�B�k`�@}�2}|l���X����V����Я�A��q�A}b��ͼ���v�?����O���_8ޟ�]s'k�枿�]wk4�Q����0K!��B!�B���B!�B�_8~@!�B� �!�B�~��!�B!ԯS�I� �]e!�B!t� ����zk�P�������7��-��~p�Y�U�������������{�f !�u3�L�X�X,� <5~H�ӡPhzz�a���B�N}�x�9����_��-�ķ���������� Y������ ��!�$����ݓ������������~�b�۸�zj�����oa���eiaaa�A!��4B螹��}���ݓ�]_����=��0K�o� !�B!�/? �B!�����B!�P�p��B!���B!�B���/!���8^�|�����o?��V���+/���0K7��ͼ��!��]��!�B�~��!�B!ԯ�H�����=��������E^>��2��z99|�,>6��u�y�9C��3~�dĨ������Э�� ]/����7���G�����ct#�/��������?��?������+���y#;��JU����[{�ͧu��w�}����Ӡ z����97�Ot�t+��%�t7�*lc3�uV?X\nq����F��X�N�n�PN%��t��@! ��گ�ÿ��g����I)������yub�~�������+����n�������_�4���s��J�l>������k���4o"�k��|��r��m4�����^�(��9�0ɜ �����I�d�����Pmk%ͩ`p��c�VFjٝD�!��DhP��n�QP(% 0~���@+���<�v)k`":b7�R���Ke*�rb5�#�4J$����1B}"XWt*:�v*�O�|̣O�����������0�±q��V�Fng{�� ��t�2���Tw7���7�Ɵ���+�������(�_�����`�W����� ��P���+����$R�?�����G��5w�şzf�w������06��ŗ���޵��$�k��G��N�h�����ꋸ�Regc�(h��V�J��1�j�O�\K`c�a����Kn�k�;�Y����v��� ��i��d�kfh���h��T0���.�:�w�+�j:ϵT��Ս��q5����'���F�&.϶�!�[������&��Y���7o?�)���U7&B�By�Q+���͛��\�pd�H�[XXX=}��� Ճ���>l���J��G�6�W��U����~=~c����V�2t������tK��SA�~w�%RG���0U����u��!�,!�ݘ�W5���c�^�/&��F��jM�r�V���2�&�E��8@.k#8� ��l�TR���[\�!�eh�[ՃD��?XG#�jb�&_�k���˻��m���y��ip� �L���u�^��l+)��TJ5r��B]�va�ЖZ5N�_������`|��?a����\ bl�?��1�̺=�J%��3���{�7~�������xp�y��{�� t@� m��7�{���v;��5%��)v ԓKk�,+�F;be�����e���oM�̈́� ��uS��ZM��z��+o��B!�_i��u5d`�h�ݘ˞�ydr���* &��$I��� ���㊅����IR������TSk{u���0�f�� )��.)���_���;Q> �Pվ&� �D�8�1(|����-���ቇD+�x���Ƅ/�О<�����n�=̒�+���Iq�������n�p�,VU�<�y|ީpj�{~.,,��8x��� S�w�(�����T��W��3� � ��;\�� ��|E�n�����?��1U����_���l6���:Ϻ���?\��͓Ǩ�E�"�5���j=�%�C|��������{5g��5����, ����=r�]��5R_���B�ݘ��� ��!�zv��Oa�$�\.'�IE�| ��8! �ƕ�A��'�ֿ�]�PU�?X_�?9I��ǭ���5??�ga8]>UP�c��?��K��m�b�Qo}5'(ŭ�Nh*��o��1���B��\���{���0K�����3B��"B9n UPO��QՓg�vS�� �����>��~�;6�/~��@w$�2���c�o� @=�[����R������Ƣ0�����<+��?~sGz1(��5c�S{'�k�o����*���>?1��Y:������\�z�f�3��WV�n^�=�]w���H}Ѯ:r���\愥��1��S�=)�3'����`0&&&B�����q����^__�p�p |�ź��f$D���<)�a�]NK^R��# ں1M��O)�*MQE N\���K��L�����3��K��}M�p3�a�4�@>)��!x�q��J�pԿ��r �m��T��|�e𸭹L���lj�x�2�Y��P�Mn���Kٽ�?��?D���J�k9������i���~���?��6�����\.GwY���~�/ɏ�V����%'~�׵c�S{'�k�o�[� (�"T��� i0R� +�Me�L�}k�n&H�`X�$x���hM���ꩣ/�f7�2g�\N��Vw��F���ʥ�A���?~�;~`Y����\ �TH&��s!���jf���@7�SHg\��Z�x����_x6?��ŕ������̘�!:��n�p�F��H'*Ob���DM�!ԗvq�66��������v����ޮkb�����7�TH�Xc��F����Y�>6�b�R�Z6�h�$s?��,�!����?��(R����������~�o>�n���_���>�P��ȶG�{��Go�m��g������g~��j��������c�S{'_��֬T�" �t�}�*�id;���XY� ��ґS��f>��Y�i���÷?i���f3��:_�o?~���6��P��?�k^[��u��F>���BiwN��1�:;�Vf3�>ql�RA8�ha4~�vť���ͯ[K���|�����zv �_D�U�.��_=�C|�����N�&_zk�6�2i}�N�O��pώ�r�{� �� �+����C�B!t9 W*��?{1��٩��n�u��W��W���!��D����B�&��w� �.g@ߏC!�B}���B��'�:���m�5�b��gj���B!���B!�B����Ӕw�e��OZ�� 6�&t?�n >y��\�2���G~�O/-����'�q�54�0Ў�]��� �G��˅������������ [ �ܪ�%��W����;�E l��}���* \1��,�܇ /��B��0�#!��%UYh�[{5I'h�h,⳱*_�$M�y>.gx�:6;e�_����[�I�/ :L��iU3;�\S� 4�ǣ!��%�v5��>h�2��K���Фun=S3c6R,&֓Ui�A�����v#%��~j�����kŻ�?�O�C�����wһ�E^��+:߾��_<����Vzi%��u�*4��D�v�������DM���TE��;[����Ξ�kmD^�Kk����|2Eė�n�wyb�B#��JUo�ռ����r~��y������v� C�с�i1zcр�lrg��vz��Z�Ϙ�/5W7�7[`L=�x���s\(��R?ٛi���3<�8³#��ޘ������DU�$Y5{Cn!��^�10�4�:��%�@��t��+[M�y0l|H�x� �L:k[����񎏳���l�0��=��\G3�����ō\߸җ��J�4<��.�;�~�s�cf��"���� ��g�ƛ���Q�a�c(�j�㭣]G��#���_ʽ��a����2�ؼ�˓���d�G�����ع��[ �+w[iUh�v���0�>}2jx4�8�p#�� {�,�\r+]�Y7Ѯ��S��W�u����t���n��r̸�7�i�q�u��p�t��8�=�V�C�y����j�I{Y��=��𹥸��"n�T���* ���2�� �����Y�ÿ�r����,K��edY�;���6���{We�R��r�S���� މ�1��V��kR� ]+���,����� ��l�Fa�%@#��F�w\�{� ��@����%�����B� _� �|� ��.єk�<��|a��&�#v#)�k��T��w ��4�Z�����Hg+c;�Nuw3^�t�ip��c�VFjٝD�!�q� ��PJ�(�;�ƐC��F~�)��\Q��Y���k�0������cF�}���������X LS�#���I��|��ҩV8�o��.i�~5{,Z�d��j�O�\K����fd�@ �c����宑 IDAT�F���N�����[{K {�n��F��F|i�E����@e1����C��j��I���/��,�u� 7g_���,���dw����b�4�J�a���{�H�[H�P�EDk���M�f�O�_i�Sk�R��g�acq��*��(�_ !�)�L wOi>�_�@�~���{5�̥��eE'�6� ��Pp�+�wE���-�� ���L��=\zy��'m6�R��HӌJ�G�B;�����DAg��$�-g�M��mLM=s ��423=T�Y�p8x@P��Z$� B�km�;����������K;��;�����z��y���X�g{oiIo��^?�����o��죠��]U5�Iy�1+���ޤ\�ى`cq���Z��M��z�9N�κ14�(�k0Yb���=��C?�����Q��ݯ>X�[��²��`�������w�E����=�&�����.a�}t��e�3�v6s ���"VR\G��j䨙�����\Z#dY�6�+�{���֦h���/�_����b��2y�S_��Δ��c^��<�/"v !�q)�7��z�zRmg77���z�^,�e��T(t�g����!�3��p���2��>g�#as���-�0��� ���T�@�$UU%X��FQ*����\(�蔹��\��;�4؆���i��r�N Ki��k�������t�S]י�q�%Y�p��yn��WJ�����͍�}?x�~�ˢ?ώ�����n��i|/הk �eh�[ՃD�s���>��e�]�+�e�V�Snj ���O��"VS� ���� \�d�t*)NR�-��`��1D��+��5�q &�jٝ��������"Q�d�t �b1��<�oy�H��*�����챜+`�ΧsM @�q����Oɺ����� ��%UUIB�(SV�D�k&h�>w}DjU ��U��I'q �f�l�+���<~�s����s�^�Ko��sYW�у����W��������A�?�N����N��XXXhe3�@�)� �>1�v���z[����-�qZ�ME!B.}z[�}��͋Moш��v��p/w���{xv�!r�T���ޔV� j-ДT�j��S��3[��>��q��zz������Z�&ap�O�ҹt�z4 ;��5|�]D��D5�kt��b3���DU���%��\"e�̎�^����n�F���y��� ��I��7�ԭI�1�n#��L:5%�t'ZUU�-"��S�{屢�`����s�vE��흵���ŗ���ϱW+�� h�~ PU��Jz���h��p���lL�vƏWHn�k�A���d�[_�uO�[h�/��t[�|����/ѡjn�-m�&I�H��)Z��}��� �����~��o��=ڶ{���TQP�N��� r�m�>ן��E�W�>�D�W����>��-m�@����[��J�$�p���q;�z�1�2���APE�$3��`���(�rzb�ad�D.�Y��yq�B�o'y������4M��(��4jM��o�I�`�����=-ɺ���sS�&�63� ��(�r��*����y<�i��L�a��hV��7���OA�v��a��cA�a b�G�^��!U�{� mo����6��E�V;�jj''�ʥ�9y2Ǫ|5�?ݯ���'�H}e�|_�H陙���b��B�� , ���):�,D�W�Juw[�uG�ܝ�ʗs���N1�›�B>�1���i��,�o�=_�_S�4b��T�9�𹿝Kd���pMbt|f���Vy7Q8�T���x~��|��5z���h��� J�k�x���O��LZc�B4! ��vK�N!�qM>|he㙊o�8O�ҍ�E^>�u{s���7S8��5F���Ѫ�(l%�“��Y�Ѯ����~�٨o���o+󚮹EAPD�)Hͦz���m��)�� ��K��r;�I���?��������'�Zh�d,�� �� �`�juQ���]���J_�eٯo��3��@�/!�B���v{����W������1���!�B}��w�w��[ �����:��m��? �B!������U��q;B�/�B!�B���B!�B�_�}~�y>v�qv���"/������э3�#!��%UYh�[{5���C#Ѱ�n�d�QHn�kG�U������v���J���s,:6l5r���H�^^l�?z<*�|��r�y��G��O�S������-�⁗� @UUh��V2<�F�x4�2���'�F��̘����d���!��W��ca��HI|����+���?�g� ����~{p����om�E|6V嫙D�)���8i�ŢA��V;�jf'�k�z�ϙ&� �΍���p��B�|� �N�z[��D_����N�W�ݯ��P�m >y27{�%�u4o}�n�}|�0��a���Bzi��c`�i�uP�k��C��5��X�r2�Z��e�7 ��&w���bQsusy���ԃ���z��؜PN%D�~2�Vji9��#<;1R.�Ե�ٿ�λ�=� �X�X^��������xs1�r�M���\`��حU i$ _�� �Nz;;�V%�� �LJ������] ��85���HWx�َ�l5IG��d��!���q�;>ΖW�m��z��Ws�^�j";�����/S��#�����ԯ�E���Ȥ�����S�7�j3��%�~�V?��v��Q�?P��Dt�n$�v-���Tx �ptl��(B-���6$8bAJ���}uʹ�J���I���QYV@����Uf�f�qPhK��b�f�r�Ӭv3�c�e�i�q�u��p�t��8���V�C�y��U;�Z���$�Mt��!�P#�֔T�z�(��,��  �u�O�(�T��i02|�&( ����Jz��=��S�C���V�4v����f���T�'cJ���x�����ɰ���4) "����q�,���ʽ��2@)S M�̩fK3@�ˡ��еB�))�r]���ŵ�HU�7���t�r�5S�ݢ�vH���cn}�.�\�M�GGM��y�W_�rG�n��(�̫���/����vU�G @���Tt��T���)s������k��}�H�Y���<ᘕ�Z|����Z�Vn�Û7������gLV͘�F| �f�O�Rp��˗�g]��DY� �Q�84���04��r���*�iF���#+��*4��V�����nj7{���h�Q>gI����mا�����423�w�q���F(�r�z�;L4����5�������o߭�M᠃�����Rٵw��K���o��I/�{�fy��g>^f�@XEu(8�DQdYV'�w9�cr���|�B9m6����Y�wI:~"���7δR�ߢ�v�>�� ��x�cvC��id�ͥ��;��<�w�E�!�7�~*�B����Q��0U����u��)s�4� h���oU�n��l�)N����Ĉ��c2[:�'���8�s[��Y��/Sa��1Ñ�����@���X�[Iq�'�Z��iLO�x�Jb�P�Ҋ���n�g�E�!d>.���1�CO_�A������n�^>K���i��&�bzs���^*BH�B�]$�N��� ���Ae�Ǵ��."�7�E0�#[��������5���]�+�e�V�Snj �n��ΧsM @�q���/Ȧ�?��j��ef��$��*�Zl6�Ry�$I��n�g��1I�m��q���Nn+��,�������UZ�s���[���e�2�������j�ϸ_�_)I���G��h W$2T�Z�'�5��~� �.�Ր���'5Ύ���{�^XX;�� �D�8�1(|����-�U ���y�V��d�#� U�J�Ԫ>���@���f{�����m@Ȗ�O<�Wӎ��� �Te��=��S�-�Ovȅ�� ` �Ez]�j���3<��+��Apc)��&��f�s|r�Υ�У��P����}���]��z�|'��^ꆲ�g�k��.��L���5:Gb��q�}��y�U�)?p��U� z^"=��Ch��ѧ��dY�'wt�'��Q� �ҧ�%�G(���u�ˡ���g'B� OU������6��]I]����z�-:�����f����k|�[g[�K�}�����߱����t�wg��@BsPqY�s����;kI�+���?h�A�6�vS�xz������y�7l���ݼ�I�e)X�EA'��t�C;&� ��Ի �w��Y���&�.����{m�馼GL-j;����N�6V�=_2u�Նv�3~L;k0�~8��6o�[Z�k���{�E� G��R|����k��o1G}���%��а-��(��&r L��O)�*MQE �5��b�c���?"s� �~�٣��.;~P*�m�D��KF����l ��5���1CtZ��D�R!���̅hB����B:�|�<���3���z;|S�X��3h�������1Z�����������x����w�����%:��O)B#���N�tD_�x�7���= �7ޜ��w���J���#��ۅ�x����1h�.v��a{6?�,������7�y��G'�J}X������1:�l�V�F�p��nm—s���N1���')B ��Of ��cFZ�4���{X�s���3�O�C���fS��}l����l<�Я��� ���O_w{�,�3�O�zeh�K�-s,�d�U�j&��� ��rh�$����{��8�����^IX-�v�J���L]��6�1�uJ�m��X���U6�V��濤-��p;i#"�F�����8q�[wU> ��Q�THfx{(� �L]�@ ��P�;�����c���7x�Y�?�o�}j����+�5��[{wx9�4�>z@'�'o�7���Lm��KE�����8L�fW�b��@��5)\�H��������{6�2�+L�A���4Bhg��$��]_,��w` "��w�W_Z,'>�������BPeQ���=���x"!�����%���w<��+ļ��ݩ�g�f̛آkj��"�B7 �!�B�~��!�B!ԯ�<�0~��O}�E.��M����ܸ�D�ҧ�x�353f#�bb=Y����"/���� O��ڪ���W�렬����H*WHm�*"�C#Ѱ�n�d�QHn�k0�puwd"䶰�* �\rk�&����&���� [ �ܪ�%��w�����;�E$ڮ�Ŷ��Ҩrj���f3�8(�%� e1`�@�����}>ө4:�&����QYV@��#)z����I��C\~��\.�&(N|L���Pn��ς"�B7jP�Sp�Ո��R��M&r�ύ2����ZEJ����3��KK#3�C��� ��t� �pP=X}_��!��a�*��'�r��M���6w9�<ᨕ����T���Ǟ�U0&��f�j$����N��>���,2W�� *��.W%�ఛ���:������W@�\j=^V��_\ M3�$���4���0~�f!�B_����{+�Y��NE|Տdz�)����Z ��WJ�����͍�8���A�,Cߪ$�� ��"VS� ���� \�d�t*)NR�-�Dϲ����r�|��)�̫�Ci�7v*T�vӓ/^���(��O��`�#as���-�0��� ���T���׌y4��3�"b�2��7�A���x.��-���|�p�9A!tl �E�ù��A�0����ioWRG� ����s�-�h.,v>�u_D蚺C!�H�#�#���3��Ŷ A|3O� ���s����I�U)��IR�o,� ��NM�ڧR���R!A���P��#6<��r ;��x���R��ǖ�8��ZߋkƄ��Al~_[x.�]2 {�g��Cp܅B�i��p,�ld���ԣ�v`������phWt���YKJ���Z|� ��{��7��[!IEQ��EJ� 7s��\��M�@l2꭯�DUU�����SogRA=|*���2��i�庠?ψ2�]t�PA�ڕz'�B��X�d�P��0RG�����o��J��N`ev�-r�T��N�� I��"���e�u㷉�|�y@�{k㇎J�<{�]�(��m��7��!+�e����ɵ�,�`BUEU@��F�*x��Böl��\n��e$0��>���4EI%���v�u;����H���3�"����%e�?����b&��t� �ě���&�p$`n��qit��<�i�G����^����Z� ����������Ȫ��7Z�V�t� ՒH����V��&��T� U�~���-�IiT��o��ȶTK�g�vn�v����B�g�?(彤#}�!e�+'��G�����n��;���{��?����SL��+��ڶOD��dT���ζ:\��31D�U�M: �Ik��\�&d���n)�)�3�ɇ��l6��E�V;�jj''�t�/1r�W{-�I�m% ����� ��BN� ���4w/���B�+�k�`p��:�B2��C!�\Hft^=���۫y�(o}_� o�6?�z'��س��+ɵJ�T���v6rg#�|1�ZL��{k���x[�����b�´�V.�|.!����� �.p�D@����6��� ���P�+�y�P�]/� � !����=���8=�������!� a �h�C!�BW���C;���W% ���bA�nl��fB��7Z�B!���?��(t����� a �h�C!�BW�k�B�~�k���{���/~����������WH!�Ѝ��B!�B�_���s4 ��:����w�B!��^�3�����fh�p�b���������I�����4�#��|�����I��s�ikh�����O�g�ً�s�ÎA|�u����50��ūׯ^<}0�d����)�.������/^�~97;�=Q��G�^N�C�������� �S��g��Γ�6:��ūn�K].&��_:S��w�'���4h�;����ׯ_�z�tfԮ{�{�g[[�e���峇a�}=_��ש�g7�� ʠl,�@�1�&�2�{+K{��.5_l�-n|�� ���L�]�(HFo,��M��gƌ.����� �y�բ $M�$i}��u�����W߷�_�@�4v2��%r��y�:�`&T�]��7ߗǔ�=����-*�/5W7�7[`L=�x���/c �TBT��j0�l+T��n#����� ]�Ig;���$���ƇT��r�u2���x�Şq4h�7��K�3O���Z^�j�94Z�Vji9��#<;1R.�ԯ���P��"wDԣ��wxM���sKqK�E�F����U�� Gdž��"Բ;�lC�@�}uʹ�J���#r�fmV[4R+o���f���)�3.�aDT� � �5>9���Ru�Ɗ��}>�ɐv��D�%�;��t��VTPUN Q� Iͣk5�� �6��_�:*�K� ��ߟn�>��}��/�u�4h��=�~��t�^{��� 2��ylt�����T�� ���VZ����z4�d�3��[]��͡�3T�}��g� 6���{We�R��r�S:W4b������C�GGM��y��#�f-K��edY�;�ƌ'B�A�TkM�˒_cI�5;�<��ի/ ��� ��; �>�f��k�m�Ȱ(O8f�߼���&�V� `LV͘�ƞ�hF%�#SO_�z57�t�}'7˅j��m��mا�����423�wױ���� ���u�j��ܩʝt�D.S���4ͨ�|�[��{�ߟ^XX=���vHժbw�&���v�u�J�AH�V-cbo�.� ��,����wS�gr�v�ֳu�\�ԭ;`���j�q������(�C����$�"˲���u��42��R{��W�h!�i[ νz�������(�8�'B��`�vS���JKR�ޙܮW�������@ ����0�Q�R��v��ԋ�� �՛ E��l�)N����Ĉ�����mm�f�^�9���fU�V�����鰧��׬V���J�4ycA1��Q�}�]�yu(������օrz�|a��<��YN��;�����֙qB?�����qܥVr�u��[t�8WK��V��7%Wӊ��]@�ZSd�ܪU;�L0D7f%�u�J�F��Y��u�T�pc;Q(Sv���=>�W��$��*�Zl6�Ry�$�F�1�N�b1�q���R���;�f� G��ʧ�[a�GcAn%���:Οz̡��G� �vvs�n�S߼^����Q����wx��^�?�� �o�[��y�� �U)\X ����MI�vPj?�Z _ՌI�㓣t.���ͅ��Χt �����X�������O���as�ە��k��6D.l~_[x.�^<��B���"�6\a�Ƽ�]-�uRG7�Y��f�����^U�YA�G����$q6�q� b�:���8,�‰�J�T���!�>�-�>Bѝ����/i �L�O�sAT���v���z[����-��tWq�D��J/-gx YW�у������}�^��'�>��\��|�i�"c �A� PU�?X_��/ ��tZ�F�.�߉��ӭ����]�)o{g-)�k�%.0�s�Պ�x���n�(�EP�v�މ8�P:�e����A�A%I"h��#H�e���$�v�\s������1�E}���b�FW.6 � �n�VUi�\VUU83�Kh*�Ό�jc���։����W�e)X���������R�W�b^�N��M�7��䰳��w�ÿm�ֽ�����q�j� ���b� *I�ze����X���\�_��^��h��;e�P�b�����b�c���?"s� �h����!3To6���Qk��~K=צ��nc=�3�E�&�*�?{��ж�6 �5���� - Y������}�%�ױ�e�e���lp�M�eK���B��) $��$�0j�W���4 @�:�a�fb�����G���d��#Vq�XP)��e����簳Bi��Hz�b� {��öH�ٮfG]��w��G\b� �?b�ȝ�_nv�p�����xJI�>{�أ�^'��Fu��f'�a�[�]�ƪ~��l&"�f�K�"~���]L>;?e�������4v���g�?9�@7����d�/��J_�Z��� O�j��Lz}&��GV���k��Qp�@ Q&�˪�#���2d6�/���������E謏v��$��'I4�ϛ��I5u���k��2���)��A����rW��/�:��N�7�#>��KLym ��j>�o��N|Z ~��v��'s�T����Z�gv��m�����[������ ][�l�$ �;�)*mn�>S �w:1巛�"T��|C�߿�1�=Z�,�| � ~�1jŇ�ϼ��k��AMh��Ih���lPUz���_�w1yk����ͭ�g9m,ȝJ�к����:�1��U��YI]����/���d,���3�r����xK �V��*��5$'�['?�S��8ʵ���� OЬ+�� :� Vz|1��t���gtFp�?� 1���ة����8�_�mF�L��G�抒kjʣUsŶFI�$�'A��7�B@���y_s{��C[}����$O�Zm3�{h���-�w��$��'I$� ~g�o�ӧ�/�J!��;��g�?9�xVF�@4�1X����FI�S$�'A��Ԋ?�3�����G��w�؇�}������Pr����R�E�|�T�x8]Ü�O΅� +����kd�E<�o��^���˯o%ĺcK��FvXK� �b�3�?j$[Gt.� ;�uY�ss1��AC��1΅����J�̍�F��́ٗs������ � ns���v����9�CKڿ�!�Z�\��o��#X��\,h�.:y1zk/�����hr�y� ?�4����[&o,1�����*e3���ɞ�&^'/hZ�֚��� (b�p�o�ڍ?����r����j�vDb~�����Q�;Mt`�C��ŭ��7˭So����X�K�a3b8��Ǘ3<���d�8 kg-��m�8�#�CL�WE �����#� � �ͺ ��0��,�}���N�- �=�\-!@�%��������ا�d�xWF�Ť�@�c���a���e��m�?���P�͔**��l�Q�x�ek�Z���g�A+������/J �����1Fh��!Sh�O��$�"��kV������/�n���*�U��o�68� �b��=��ĢA�-� ~hս/Up���� ����FQ��&^��L�O�1���Jn��J&o��/M�t��(�D�E�m����:m��X]���� ����U,ٙ��T��d���R�p���)��t��@W��ٳ�r�ލX����O�dC���o&��_��kNÿ3z*å�v��?��J����m$K�ۭ�׾ep%?��t�����K���9:ʹ�f�Zam��a6�����u��!}� c,�w7Nn>�N[<��i�en������3�^t���i�zK�T� �Q�q�Q~14��(�c�����>��6���qk�[��T2���"ɹD��]鋢rY�^��E�vJ�;؟!� ۴�3���'r��g�����7"X��M��mX�U��Oƹr�8���������|�Sz�)?�a}k�1�����/�V�X:�3��J]D2x��&��� ���;�����l�sv�_�t�n��¾�l��ɐ���!�h�F�bA�IgMf�z�ড��&3�qn�K�u�ց���n3@Y�Ʌ ���Z�s ��/�~�n[���;��3�1er�}�v��A Kxv>�|�Q#r���x���s�:"!g��4�N�%�2y\VE�~c�NĂN Ka��WapʔE�s��^���Ğ>*��V�ĺ�N�;<��'�ͯ.�Yɵ�����p3��r�����h�'�g[�.��ig ��(D����*�4� ��B[p�"v��k(�Q;���x����@�=6�v~��:y��|ŵ�l2щ~.{�l@�P�&�}�)�R&� ,,-��9�z �����=Z�,���������7����_�(J��Wkǭ���i]j�����j.gO�x?� M��7�+��֓��3�\I�,���S ���a�v�RDARY�+�Q9�Nn��Ì)�|=aB�Pͤ�W��uy��u���i�Z_�T�G��o�"tQtfq��"��8�T/��`��]MV$�ĉ �O�5��a�֥V� �kD�,7#�����oô.wN3 �9w<��G���B#�>ڔz�H&��"��9s|�M�Ul��O�FA����l����ϟ��ij����p�B�xd��<�D�9�����9�q��6A?ǵ���/AA��������V6�z� � �5r�� � � �q��A���d2�i������f����/}�Uz`N� ��"�� � � �E�AAA��Qߟ�L��ה���%���ML8͔. �|:��90�8�����n��u0&��+g�cL�|������jF�|����&_|v�g�(�ɝJ�𸥒�([(��t[���b6S��Š `�X�e�5�Sͥ -e؂��3����MH��Ǚ���(2����~v��lg����1`Mj�t�q��!��>�~)�J}M�(���9���u�z����Wَ�eZx��ȯ�`�0O��_/������68���1���(�l��J�}���T�kZ�-��oB�}�}��0P �����F�����O.���0G�Lz˭���N���)}�� �?!�iԴg�33\c{�$"Kd�U,�خw � ;�s\�Y������y7���\(���{{=�F�_ă�vy�W�F>��ۗO����FQB�;�4;�hdۆ�$��A;�v�;��rR@������S=��#3�`�'��y���F-�\�:k=K�B�&��/�)3 "`� �8��܄^�ɷI���ס]fJ[���bS���%��vV�[�l��Q�"��A_�i�t>ƛx��h���B{t-z�@�TEg5MM�5E�� 06_(d��"*�&����˴�ծ�tm9d6 ��p� l�r�rUT@�6�� ��}��r�����J��h�Ɵ������� ��2A� ��|��r[�ø� >��?��`k��5⼉���S����SqH �}�+�E�L�é���A��ǟ�5�毨����`�E ��K��� �;�l���\]���TIg��X�?X&�}B���=�F���1v�M� ��R�5�v���ՉŅ`�h�t���M��η��T�͹�4�%����?_������,1a���gu�"^�AY��İV����� ������O?����w3 �!6�N���Sա�TA��}��v3�Ln��e�]Ba���~T��� ������v�x��u�,b�G�%�<��ܜ��Z�\!~e�@��Մ���as}c��m��t#^�Y�A�����[7�Lz�]��;^_^^/�����������M�?���ֿ�l������|A�:����Ӱ��D����� �ͺ �+�tp�S­���T���zz�NY����~a/���̏ B �2 ��r�$Y��>�4�Qk�N�X�զ4�Ğt�(V��V�=�Q�sF�Ǭ���CYÉ䤰�ȁ� ���|>�U�VF^��^��,�}���N�-=tҳ3X�wBrqk����:���( ���T��E?����ɀ����r=��?���׫���Z(�$�ц)3 0�T#�*]@m ����� s�yZ��~3/(:@�ޢ�V�}��UQ�<=r����1��sj�R�ߓث�NS˧��󳰳_W��33e*�S�ԫ�1���/�����2��&W2y�L|i¤K�F��&b@�B�o|:P�& B^�S{��m�B��v�=��A[�r�>�W��Z�@�7�[�s��r� �w�[.�ߨ�@��W34�5���p��,��ޗ*8c��Ƒ1�+�o%�8o�Ջ���ɽ1��M�@O�tb�.߲,F��M� =��?���W�ۗ�������������{��O�c�"���^%�{������L���������~��հz�N����Ͷwۡ��A1��Sï'[�B�}�}ܪ����#QU���.)�4��*�֭dv*�X\��\"�ޮ�1�Ryw����k �k��5m�xlZ�і�7X �m�|^eb�����(O$�ϯ�No��h��g������m�ݨ��M��wS�j[�eUeX�MUU��hp��8��{�_(��|K���(�� ӿ���q� k�ߜ�g���\y�) ��IiJ�{�u!�Z]���� �k!��Q@��0\�x`|�djpaD<����W��l��;[�K� �:���ǂJ�=.�$H�ʹ���a��Xױ��I<&I�)��$ ���� E,�DH�U�ݾ��0hJb��ͥ��p|��]�$��c;UuGx�M��UKxna� |����G� p��I��������X{MTe�c]ׯ4E5�1��`�a<؋�Y³�SV��K��X�7� �N����q�rE�l+?�$�� �Є�S�a[$�lW��� B���*�Nq�9D IDAT&A< �.��rkN�ٻQ��xz����h��E�ʺ}.�W��Bw��"ˌ���D���$)X{���^)�(�׉{������Q�B��N�{�U"��G��2�^8��ο�0HW��I�,�6h{I�����CP�e��I<��O�fo?�Xj�ҥ�"tQtfq��"��8�TP���=����4�/�{:(�B�;��]�W:(6Cы�*RWV9��;cꜤO�3�>$���|�"��d�����?$�*��9p�����A@Ie��t���a$��9[b�m�����af�-r�0cJ$_O��"T3���^���4t�V#�X��~����N5}D��NHw��`FƝ'�V?>��.� #�}��:��j.kOν�`A�TϿ�ĸ��>�Һ�*dHM�K{���R��r��*�lX�� �A��ۗ'���7�bݱ�ىF#�6�%A<�^~}��g���ⴼ���E� �����1����H�$����w��!�}f��M�d0yc�i����V)�)uT��x��r�Yh�q�L,ӪV���m��� <`� �8��܄^�ɷ ��� Y.��J� D�q���I��QN]�YY͈� ��@,iW���u�Gf'�0,���M k��o{�2����Ǐ�߾� �(���w:�n�X-��* �K���i�RW'���]��a��<���;�Ŕub�͇O��/%4lR�a���u�v��)�`�������B�rY�n��K♒�}��z-����j�ib��5�&�� �$�I��2��� ������T�]������4���� @k�Z�6�0@����Z�1�q����j �-��|<�o�d�LN0��y�J�"@=�Y�,���d�����w��?���4d�;0�i�;۫i�]X����!���?t`�C��ŭ�BwȲ�So����X�K=��sA�S ��|�ϟ?///?���cħ=�>�������_������%���§˪�H'����a��V���zg-~I7iWli�-W˧�:�U����33e*��s*��jv��2z �}�W��=��0�'$�_ys�ay��|wt�K��/� ���oL�/�h .���v�%=��3�>�=�����F�����[E (Λx5%���tq��H6N�����w3qtNÿs��Ɯ�p�d�Z�{|С������Y;� ~�j�Q�́dܯ���z�D¯����I$�O��`����Ɖtk"��Ǧumyx���Oƹr�8�F��)O$�ϯ�N/�ob>(fwrj��d�`]����[�����_�Qy���^�Mk�[�0dw����0V說"�F(�c���]I�Ϸ�y����?q3~k{t������']��2~h�v+���}r�� ��87e��\6mr ~�D��$�?�$�8��LP�pra�N K���fg_���Y*�v.�Bk����`��W�*���+  @�:�a�fb�_�a��$�Qy����D�E�G��z��u�6��L����� {"I���#4a�(�uDB�v�y�ve򸬊<��I��~p�6��C��� ��`��_B .�]� �$�I ���_d�ǓS^+�4�/��&�K��{�������/!k0���XJ� �B&W�0Yz?c�������d �/D�R��f �6D\3�<ob)��*�[�0���KLym ��j>�o���Ӊ)�݄��O�2��������fIv�?� 1���ة��~��$O����Wk4��K/C ��HB�${T%�?qw�j�Q��w:�Q���䚚�h�\���D�����I�(��am�$�X"��Vیz~��y�c�~�D��$�A���am�$A<�Q��q VeE?���D�����I�(��am�$�X"����K��$~$���Bb� ����/AAA\F�AAA���� � �ר� Q�L<�qH�R6[�2��#�!���(��wg�㌴�Y��vbl�ɿ��2��� �p�&�!'�%��ɔ����lb�i�tY������!L��3����MH��Ǚ�i��c�����~v��6����2Dc X��Z>�kGaM�Tr��-��L?�]p�s�Z5�5��)����ϼ{�!���~"~��e�l�[��t�F�O��C+�_�]��P2fn�6R=l̾���� �J<;lp&B��6�����<���a�r�_�Mv��]0��QT�Z9�h��ũ��4o<J&����^���� �],Pn�3}�}���˯o%ĺcK��F���H;�v�;��rRp��* [ϛ��� ��^-��� 4�+d���a�P��q�R��|ra}���9��f�[n��j�4��`|��'E�@8Z��#p�>$�zM���Ѷ`�m�o��1�� ��X������9���N{�t[P0@�RiNO8MЕY��\,h�@�Tr����̾Xb�g�@�6 �lM:^��&�~N� ��7����Y]n���RG��D}Y����{��r�Y10a�rE��Z�l������z{��v_�kS�^k���/tj��A���2�����r�����J��h�}��^~�ѽ~pb�ou� G<<�Aq�-�a\I8o9�`��i�&�iU�]U�6�r�l ���b�P4����j���k�z������DzF������^~m�(�l��;[���>��̦k��qG�C\9,ZfbN����C̰��L�Xr�gg�ܩd��me�< ORcw���C��6��g�~��� w����_��R���q�ؔ�������������hbڣ�jC��b�X�|��>��59��⧄�<�^M}I�t`�c�_=ۛSo�̰[8�B�_�O��R��X-�;���0��j� �+;%�M�:���+�E5���Y���M�l|��v�[�3>z0�9�466�m�̤�%����?_������ �p���?�{�����a�v3yu�,�>!�;���~;&�K���8�F���1v�Mn��.&gX|!j�|ܔ��[Y^^�.O�X��"v{���Ry^w�9��)��:����z��P��;4[��SU�y�I�E��ҧO?��j6d���~Z�|���ǿ���n�q���������//�z���������4lxPN]�YY͈� �y�| �%@'�_Wv�ؤ{h;`�3l���X��>X������Ρ����5O��l��.��v�ͦp�m7�b����me-Uhs.; ^y��}�Rzp�!�91�z1�K������{X��f,=�a�C;M-/////ݯ��Z���i?ߛ.�7�>����w7���WK���~�J����+e��AI�s�;H�t�#�����~����r��y>�\͟4E���S&@�Xm}>/hZ�֚��� (�Mi�����\���^ߪ�wy�60�'�u�#�Q�1F���i,�u�Q��^5���f:��!�������GܬSo����X�K��U�OO|���� �nv�axer����cU*���<)E��x��=�\-!@�%����������1ks�PF�p"9)l�G��#"����(�۵����N��J�X��qU�z-O�Y���f��ki�r?��[M���<���� �Ь�����v�h���{|��Sk6�� U��e���t�� !�c�z|9���+��-z��͡���`�wK�rX��f,�{��59Xo<��7x @m6�i� U��m�K�_�z��6� �f_; [���ܧ��z�����#r/�%���lĵ#����a�C�����?� `6j�\>�`�)44hG-}��RG�2O���.��֪��mK�:O��ɛg�K&]j7�GG5?���E\:�# ��57 k�ތ�2lr�������yW��lJQ�x�m��<ҏE��s޻���e�R~�bhtV`�䧉��v�;� kkM �����a��(�2�*���a�����ɕ+�.M~e���ǦumY�}��۴�3���'r��g��������i�zkp^����h 8���e���2�j�X�m%�)yʯ���8��{�w��>��6�ֽyK� �Q뚔��A��.`ޔ'��WR�_�%��3�b�y��+�l�'�\9U��ƒ�E�����0E���qcF��z̆���������|Ĝ7 s��������6<�oAIb`x !�c w0����+�� �+�#�Xݲ����=p��ij��%���B�P�?�pk��"�`�օ!�&�OĬ�����%r��,��N��n���,c �$&,���ͪx�f˘U�w�۽������(� yԎ��M�S�#�2��LS$�g��,�hKp�ͼ�R���n3@Y�Ʌ ;�$�]�Z�S�KOkY�s ��/��Gz����ͯ.�Yɵ�����` ��'�/b��Ph7������i�7�G�F���L�� ��qY%iXE�wx���s�:"!g�Ѽ�&�L�U��Gzl� ;{��_ݹ[��X;��f����G���P�� �������ڃ>� t�^Oqx}& m�{���c~2�#���2�p;8���YC�b���l�(@���Ժ�><8� <��3�}v��8�׉{�/����6O���ݓ!g��kw]�%��������g�o��o�×� ����=��z!b:��6��X�eyк���'=wm���� $b�Z:߾zv�M슆��Fk�i�qM�|�t�r[[�띇{���R9�3�g�D9P������Bśx�)�tJ�T6����ۥj.cK$�|�*�Ǚ��'��j.gO�x?� M��J�P�ν|���P�"�"ue��F?�N�MIe��t�R=whM��z�a�/�t@��<���" ��u�.muɕÌ)�|=aB�Pͤ� \�j �����=Z|��:���4`�/v�����3:��1~���QxP��ρ�e���������x=���q�O�������ȤO��9I�&g^}H2X���l�n��y�H�}�c�ƒ�{�|�����V?>��.� #�}��:� �b���5��a�֥V� �r��j��Q���=9�v��S98�Y��C��k6��D?�Uo�y�"tQtfq��"��8��̇����}�-z���2_Hm��~���<�] F��?�=s/߅�J��N _�ahآ>u�<�^�8��t�Mv"����0�R��j>�-d6�����/�l��$~��|�D�9�R]���Ʊ}2������Ӯ��_���B(�7>�kn���{Wa������OAA�dh����S����yx� � ��ɭl<�:��'�%���e�pw?y� � � �q��A���d2�nN�W���#�O�?�/ �+��l�Ӯ�/]t?ͽ ��� � ��?AA1��y�����I���J�/f3��@�}3�)��C��3�rW7���T�����d�-��9�^@�z��͢t�,�;��L���A��(�&��8��|)�- O� p�?�H���P~Utp�c�pq��������9���1yk�����3���4������ �[w(Pg����1`Mj�t��L��A���<�g2�U��y���gf���jID����X��]QL�� WK��$d�..N�j��7l��~"��#���bPU2�X�ٕ��^�$�)����k)��O.��tWz$ ����Bɘ���H��90�rn��Z�>�J���������;�t��1�N��r��ܽ��˯o%ĺcK��Fv�0O�Aǻ�n �1�87i�n��{2b<�G�?�X�U�vU��h�!�@s8��vO�N~�`� �8��܄^ع>7A<*��ttNw�*hWj��]�� �7����,w*��q[����,�P��G�����Ɔ_���q(�3��l�&���X�΁ܩ� -���; �t�${��Z�����fA��x��r�Yh�����N{�t[P0@�RiNO8MЕ �Ӱ@؄a)�'8b��a�2�pj��P�a0yc�i������z�|�~�B�y� ?��������Y��Y]n���RG��㢣��Ą�L�b��8_lJ���C��x���i�E�����@�q9$A_���p���i�E\�O���rs�Sj�us�l搚�rY����O��xK �N����4,�I72�z��M���.n,��ċ�{�}��?�29�����*�Ê�!��v�����х�X��=����:e &g'�������F� E�xz���� �Ь�����v_�d��Ď���gO$��ZU��vW�)h��w���|G�۹��v�����^�W4��س@����Z��D� <�+�����!b�8�O��4ܢ{/� t��e1��l*T��az�����M�z1�Z?Gd~*C�|l?��m�`]�4���k�Ȏ�c�(O$�ϯ�N/���^]5�10��|P����������yr�j���:�7��*E�hp�14�** E�Y����s3í]�g c ���v����_�n���f�Zam��a6��������i�F[~��(܅��s^��'�i���]6*��ݡ<1\^���N�|c���qr��]��4.:�[��T2���"ɹD��]\#���W4@�0�u�>ZB�I�g de(�s�|�v��"A< ��3�}v��8�׉{�>��qB#�� �h�F�bA�IgMf�1�%<�0;�2��e�B[p�"v��k(�Q;B߸<�w��%����X�❚p_*�ߪ��@{��m�(k8�0a����a�Y‰X�ia)�S�-���S��w2e���}AP���h=��e�&nv�����m3Q&�˪�ϳ�d|�m�r ��uj�ndY��?=��G5x��%T`�s�����僆\I�,���S ���a������Q�^|*�L�\�%�3��eh�o?OC/��Q��r�ȜXx;�`�S=�44 �HπZ�e�ɹ�,ȝ��a������Q���.�~�\�*�ĻO1�Sʤ����E�,]�"ue�Ӯ<�����9>�&ʁ*�NN0.����`�U��޹��"��A��~��oU��S���=����4�/�{���,�"tQtfq��"��8�T����W�z3�v�&�~d��.�K���4Z��~������w�L����Ӏ��ة��:?gM���x�5��a�֥V� ��拞����b%Sj'�;7x0���%2����������}7� ~���O�w:�Q���䚚�h�\���D�xK���l�T��a�/��8�<Z��(���`k%u�P��L�[� � ����oxݵ3׳�*A<���-�w��$��[��хz��|������߿�蕋U2.A��B�?����ODs�UY��h$�$ޖ8��@A�Z���k���ma�/ڃ?H"I�-� � ~W��@��vvv�s�����$� ���ϟo&{�@AAĸH�� � � �q�痈߉3�1&o >gv���f5#mn��;LC�B�Ĥ��`����JWG�ë0s�%e���5�6���T�����c�w�8&���Bkr��KZ ���lb�i�tY����f�qF���_�d�ݡ�+ �g:1������3���o��ï^G�ٵ��`�9�_�h�k�P˧s�� A#Y&�z�f���}j�eD<��n^_�_S��� �2�fS>;�T�/f��n\���U2:w<ʂ~+#K����"K�g.�^�_>�ϼ_ �R_�<�7�q�+�n����G�ا3��1_��@�� ��p��Ւ�,��W�@c���X�X?�>4&��aK}��yt�5 À���8Ot��^N���U� �'M���Epag�.#kxn.��8hh�p<�*[+�m�~�8����1��yă��.县����|� %V~oc�����x��.F���L_o_�����E �����D��%�y�x���d"⢺��f"�����Q�M�� WK��$d�..N�j��:����t��AVJW��r���~�mm���M`���AN����5��]F����1��@��ס]fJ[���bS���%��vV�[�l��Q�"��A_�i�t>ƛx��h���B{���&�iU�]U�6�r�l0:�`�!@qޙ� ���ot �/�\N�r��������u�UQ���G�6h�A� ���c�;����,@����*+��P/֦��|�g4O��r�����J��hg׺X��������e�����h�‡Pkm�1�N�]D�ߎ �;&��$�H9�;ɞ���騣u�Y�q�h��y8�?�;�J?��Wt.�� C�r�N����a��L�Xr�gg�ܩd��me��c�ɭ�7E-�>���_�(J��_���q(�3��l�&ӁŏA~�l3��,ҙaw,�n�zTl�܋^�?P�h�R˕���t��w��=:���ƭ��b�*��hwX/��*�TzxX�����M�)�����h��$;� (.�:��! ϶�fuc��`�H����B�I\��VW9�/��MI:Kڅ���.�M.�NvV����]H�������k���f F�,,6��~2V ���/-�K�&0�T�]�e*]�^��Ͽ�ʕ�:���hew�ipޟ*�u���4x��. �3 5 e@��iӄ���8���cr>�/����0�p�ŪvvbU��c��V�s��}�M�X��"v{d_�Ik6� ��.W50�]t�t��n�׎�� ��Z��b�m)` ���׌ij�դ���H!�B�a�����-��3Jf����J�K�ڻ�劽���W�m㕗 &��/>�D9]tjg%�;�7�N�f���m������u�I�ڹ�ԩ�mT�s_�(�ĴOȯu����a1e�����8,6 �LU�C���І�ҵsǐ��pw�%��wV2��ҫI��A K޸���0,�{�厄Qe�yV�*�#����N��2�~�(��?� �!���ñ H=���I���� @k�Z�6�b�)ͼ�b�']�����^ߪ��}ܟ29�����*�Ê����D[��x��*���f�������^���2Wb4�g; s��j�Sm�@���.~J��^5��v0EQc�ٜN�ƒNQC?!q~�;��!�����za�@�֩7GQX,��~���O�5�Œ˅� ��2��G}��w��[���z-^��b+V����k x����.d�ֶ4j������0D��n�Syx��o�Eh�[T��A�x� '��z�V5���i �fS�v�P�A��f�����Q�<�� }ߌ ̄��f]��E�i�;۫i�]X���S������a��pw�xZ�tU�%����y6��t��6��� ������h���|4���1j����Y`�>/�; D�%�{<��r�̙��3&z����%\m�C�^�_�r�R�FO���V����:��q�wg��?^1��c��ʘc���&]lTr�ǥ�!Spn��Ek��!d�w�j���;,����3.���3��ҝ�,�wYR�� [�2�c3��-:��q�?���ɇԿ����)�24��w\ȵ��r1rv��ʺ�#�����2D�������x����_L�-�K;�����<���;��e�����~�;������F'6lB��j�q�A�s�����H�g1�~���A��m��!8%5�����IM��:��N�0 ��b�)����K�Vňk j��V��$�W)G4j��v%�kb`ԋ��j�Zϗ; vkX?�`�|P\ut p���z�Ӓ���.��vv���l�ꖹ�r��P�?���Y��٣�o�`�O%|j~��I&}Z~︪!>�p`TU����g��TU�Z��V!��3<5� 46 �ab~{���ґ\to7�9��v۴f�!��-(w8(gVv��;,�o*��wr��0��l�s��VC&��kBx1�:�����wa�>U� �,�**m�z�&ߐ�P;Ն�p١\�e�8@��d���d��"�F���8Vj���H�k�ά�FAg�QE��C`���p�ʕ���i�rc��!��5BB���}@%�G�8!�;��wo�f�S5�;�^ 4=���A��R��̹��ި�����qӵ ���m�����3���'|��c�~��q��a���������������v��9Z=���RˤTE��Ѽ�����m�xmZ�\ѩ��?Pf�өTH���"$�'�(t��8���됅� �P2�� Ֆ�ʲ ���is^��,/�5��R����K�h��mEU ��h�\D��f�D�PK��S���1� \C1h���,u*m x�B���ުj�@���޳k0 ]�o8�0 �+�08�#��Y��� ��z�V_"l�l�*ev;�� @�ZM���\�v�}���뭒ެ �฽y�6lᠣ��;^@����*R�I&�6R��OM�v��o���l�(Q�]����缣V2��q��A5�p�b�m�{�\�rxF�$ذ�bP$��Ƹ�Dӆ(*�_�T�F2bZ�t� v�;륁�/�2�˙�O6�����US��l�B� y͍\��� p}|u�`�$ck�1;+��Ҥ��n5�������,��٨j���z#d6_�l\ZZ�yO5B�k��?���D��O�;>��YCl��*cF#���"�]9M�:2�SQ��A�T�v���"of�v�>��1�����ԇ�[+�mdz���=^����db�mc)M*�T�,^ƀ,��7�1Z)���?��p����i]j�Sٚ ����� ��A�ҩ�Rg��3:� r��g2��MH��a�"W�/ui�n�I���wA M�4��a�ֿ.������r������pO���o_�}�K�6+��wl�g���sk�ѺX?;J�#�+��L��u7������ ֩� m,H�B� [Wzd��}Y�3�Q�i��_;E�Π���|�����+�m.p��hŝ/>���#N��'�cH�Ie�R?�e��R�O�qluX�_���mH1qc�̊��Cs����a���y��Eč����A{l1���S�Z�5���v������Gw�x��n���+��j���_���tWx�[����L�Ɉ[��9���5>�khDH�O ��'��B!�LxƮ �3�5P_9KY"�o���w�P&Ob�[��+�Mﲞeu�B����Ij���km����]����A�D�$B�@ <t�\b&>}Y\\\\\�4�r�S�a���o�߆�l���<����ܢ��Dsc���_�Ј��B��O�B,�@ ^x��$ �����ӆ&Kݢ\� B"| !�@ �SA<� �?��C^J� ������@ �� �?�@ �Av��=��>�^��_9��~�ﺮ��أs�}̱�W�ẛ��*������Z&>~��K�}b@&�dr�g7!�];I����3�͡����~�{2�#��]�6 04I(eӕ������?��O�vn�Aɥ�v��."zU\\��J��;JZ��ǡ��X2�sH��r��|K��v:0�5�k��h���T��X�0c��x�i�5�ɧ�ue(�ɛ��zmehR��>8���=<�w�)]��a�z�Ҁ��oqqD��;{����?�N~���#��z���s������u3xg�8"S�����_g�-��w�� ���_g���s���� �zo,�����������I�K[ �s`*vR-a���ɮ��v���@,L����SIkmw}� ����D�vqa�Tɤd�qݼۙ����XW���x�r���9Og�Jq�G���5ڙ��γq[�fO�R��!���Z��a@Uq͙sG&\�u�\;�!�7O�7걁X��l��u�%<;�W6 ���L��W���#"[dn.�-��=��6Zq�E����,y@�"3a#��Z��543���W����@�+e׶� ��s �|���C�*�Z)��}��\����v>�� �(&��T�����c$��2���vЃ������<�wg�E�og&�?3-��:��C��N�|u�o�����>�� �t9���л϶ҁLx�j�h�$��ON��.�ώRg݋0�BƓ��tk���l��} ��Ҫ�ǹJ�5��f�3���y�t�(�sL(n � �YD#��[{ۙ���mh(�z� p�㬮�!�44E>?@� �k����! ��׳[���� Z�K:J� �?0�L��[�Ъ4��� ��S�1���o�Uhf6��J��<�%c`�V���;*|E;lP� ,lh��������ҝ�vj�f���7k�5�2��N��_�A���9����/� d�ħb^;cH����IC�hqcȒN�g�z4C��ϖ��$F�'9��qJ-��S���bZ�L��C�:�ld���o$�8#3�eJ�d�>���[1��+��� �{�%X��]��N~�C?���%g��R;��I&Wud�ƓQ���U���G�:l��A��FV/��rx<��JC�ʹRt�cʹ�x_��8]h2�1Q���>�ңDw���ed�?P'}������}f���)�p����_'zxz�����nbX��L>�x�V��u<�2��۷�_?�Om5b�� ��fW�0��j�a�F��*@3��������>�:��N���C�?j��+B�\��@��)�Ϛ��O�\���Ͻ �������]�-v����S�^ r ��u|v�˷o���7o�]G���|U�u���2���e��t�w�N,~�������v���X�� ��i��Li0'` 賭����96�F@��S������_�?q��x�.������B�<ڞ͐����S��p����T����~�����q�6F'��(S�����ݩ�� CA�����u[��A�� ��nlm��c�7o���v��YG�1,y0���Q��̗ Un� 衄��qku�ׁ����Ԅ���.Gҁ�oI���w�����t��BKP��4q��j��A���:�rА-V�R���i_���l����}>��nr�9�v:����yh���������4Ģ�����*J���1v���mw��P���E�V��Ӊ� �r�j��y���X�v-��uEf�U�7d@�8A�D�ou�����k�i�Ww����}�h���r�YQe�lM�NQ�}�T��~/�ղz���E�����z�����{��%�˿:����K��_��"d �-xu�hMP/!��*i�l�e�3}uU��_�J�r+l�(�h����J������Hwh���xp�F� };�����<���;kх�����Ͼ ��٩f.v)��)!�;6a ٢#:�����l��ס���3.���3���g���^̷T�z��Y�۠x��ߪ��sےq�="�Ƨh��t:�n�1��v�ܝ�~�cHg剏~GF�hŝ�"b,���4l�5��q��ۊBƅ30 �B���͐p�1�O�7�[�u%��<�>�����lۓ �'5Mj���W�_�����f�R�v"�1�qN[���PB*�2�X���I���q�c�(�֮V{�}`��v��׋�+*��K�1�׍�:^0�����!���� ���=|�Ъ�-sa�tC��O]�a����Ч7�}n��h�&�0 1��~*�+��v۴f�!�d�0:h��k��zw��Jp��\����ӱ������?��gK����e��|*bh��[DZR���u]��;�տ�G:�|�}���th��E8}2��l���I� IDATs��VC&��kBx1�:������g�����+�[���7�\1ܬ��qi���s@�}.��7`YVU�a�����e`P��^��2j��P.;�e�X;x�d\�\/p\^��� 7AN�W���c5�+$^��qgu���C� �3��\����*7֬� �V!�UH!�� O�$�͂|��4ˀ�h��N�D̲.�(�}|�-FQ/����2p ��q�,��u�J�eR�"x���C� ��>�����is������7�v����y3=�.��VB�XBӳɩ�q�yU(�����(��Z��ʬ.���n���r�q�ެ c�q;GQ�X8�hT��:?D��N�"�?4!�f�ܘ�Z�;�p�Tk�ݜ�d�n�=׆ C��f���a Y���mK֛��#�1er���F�Rn���xK��d<�`)����z�5�Pm��1��D��>�����՗�� ��n�U�a���6��v��8��a��2H�hv�m,k�D�]�eH|3$܄r��m�|�6��{��j�NBB,�Q��/3~+�[1�T�ꮉ��]�i�����R��u�y1ݾ1�B�%0�0�cz���V�M����n3��x���4�Uk`��Ҵ���J�������n����ӽ�]�!z�0��p�|:m�z�e�&�r�m��@[��i퇟c@��J~� t=�%?hŝS5P:���ZK<��z�$�J$?~e)M*���p++R� eJN}7!E�S���N���4 ����y���OK�`hr��7GW��y,�Dv���n_�(x}j�~P��7o��R*��:��;�+�K�8P��%��ߗ8ܶd� �iKr�S�1$�?H�.z��u4�В��Qږ���u�Y}d���4΂�,�4>��̼�n�����EH|3$܀r�]-���]�X�� ���݄D���a�n}������� z���i��j����飋�-��MZX��+�)^�f>eKN-|�ک�\ Gnu�� ��>���n���x�hXg���֩��E�k������܋���./���� 2���ZZZ"��b���֒�y������)��+?���nB�g�k���S�(Kd�-���b���2�7��� ��3q�|:':�Q�Ƨs �J�����q?]�f+26$6�g˭N���?�@x ������7&!](��c��D�� U���e�����A�����8�Z=��kB�k=dq���t���ؐ�8_ d�@ ��B-n/>UBr%� ���q~��Va :��բ����m��F���K!���ZC��+$6Η�?�@ =14Y�n.��q]�GS.��K�lA �@ ���@  ���@ �@��}��أs���V/$��T"�� ��K��- ��ٹI%�R��ڋ�N��"����;�kP�ٯ3\v���=��8_c���y@sh�CD>��?�� �� �_�ٯ z��@قS� ��1�v-w�*���{���@�&���^֩�;�Su���H|}�  MJ��t�^�{w2?\1o ��s��pX&>�e�Fx�$��d�����f�%Y�lp����G�>‹̮��>χ8@Ḫ��^� �vC�Iț�?yq�Ͳ�l������X2�sH��r��|�G�`���1j.�^��T�o�� w��9x����J��TK��t��qw�7Z�+�vf��3�yB���!�p�JP �JZa���jM�p:(���L�dR�� ��g�R��Q>��v&�C�v��l �*��gd �����͂�uV�����a,��Y[ω�u��O�W*G�s6�'��s������0���rf���q ǫ�=������@��U>Fٟl�3�b\i�玈l������Ó~i�@,L˗7��r�3<�av��{9#�?(�*���]s���� + Y(�J�Y�5S!���͌�٭L�L #C��M�9& ke&O<9鳳�T?;J�5�+�������ۅۙ����؈uM��v�f!}���1�bh�|�pb�����~Oob�:ϷT�UiHA�@�:���[�e�Z��8 �Q�6�'��s��pٴF>F,�K!hg~��D`C�>�JF0�5�գ���ԣq!�7��z�(�J��t�6bڕ\H���aM�7mlBx0�����`ss㴃lяoL�����J�CK�c���R�;c�>ݽz�J����q��R;��I&W�{�t=N,=�<�٤�S����bg%��;�p-�Omu��1���o�Uhf6���<���V�a(U�Q���o�I(9K,���zvo��6�S��Ŵ�`���u22V?�� /~���rF"�R:o�>Wi�3� 0�� j����|���*|�s�mc�@�����)�E�e��@*�5���&�BY�{�����0Z�ZMw�8��!�]�H��Sv�`���N����\�� ?��wu��9��������f�ƨ�I:��k�W6rj ��9@��!T�U{;!��[�=1V �� ���`-��:��N��XN ����ٷ�7�9xB8�'k��kٶ��\^^^^�S'}������}f�Ѹ_���>Bn�Ww�&��b>] �y;g('��{�6>�D�����}&�ñ ��Z>U��a��#��\]+ ��Y�Ga�� �Ou��YݨA@9�����!=y�&�m� �����c�[��}��)f -@� ���-h�V�5�֮�ͧ!vt���`���q�QV!toػc�v������h�]�BZy�{� "]7�ܱ�S���Ÿ��e�dCaP�������3h�ꖹ�r��PA@��s ^(Z��@k �=4�X)]����Ax<���9��N5��#�?��|a?Sk)=��ڼHh@�ٵ���Iο��Y�.�1 ��}�>@�o���y�q�l�Z�z��*�~������"�i�B����������qC(������7K�`�|>����B*�2�X���I���q�s��]f~�8{qYL�0:��*�^G}Ku���Yݨ0���-���/w�6(��A�f۞\�<�iR#}T����9O�C9�Q ��+��3fx!��� 9 �6Pe8����8Y���$g�����0Q�_‹A�I������{Fu��Rj���ޮ�0 1��~zc����K�� 珅��ϟU�`C�>���ѱ9Z=s��z�6�Q�w_'Q�pPά��[�am�r�ޙ�ب�q�r�9p1�����2��{�,����^�M�e@U4@/l)�٨�xP��C�m��ܨ�x7߽�� %t\�!s�jW�c�h�8{��~�į_���ܚ�*�� )�X�ᩙd��Y����oe !�0`%�u/�a�����M����������ݗv�aq99�����;��'kk'=�w� /�0��[�a�����hT������i�'�C�J�Zzk7'h����_5%&�!�Fvk7�*�N�s��e M��S ���鶱��wѽcC�4� � 8M:k2�1�'���B������lr�m�{���1d����D����*����I1q�|`B�$1c�1��,�[$��K�Mn�K!��Y��]-s�I�b���[,�i�qd�H�������W˗�Q���� ���|�ږI��n�ꛜp��5K(8,,e�� �bw7Ρ�Mf�\^��n�0���!{��ϗ`u�7�-G dc(�� y͍f�J!�r�����ʬ.���n���r���3�0��.�{��!�h�?����ݦ�f�Zq��T��>�N%>.r�X�ퟶ@׺�c�R߼�PJ� y�@x$���T��i����(�4��;l���ٜg���p�l?W F�ڡ"��&�u��q&�ق'��[\i��v��o����� : ���6k�ݾ�;�� ��ֺ<5�[�_��l�uV����N~Z�C�;M��x�7����!�٫�w�9xB���'Ǟ�7�BHk��)bL��ŧS����W���I��>Hԛ�T��T̹��kئ=8��͡DP�:��Y%0��B��ܤ�EJ�r|S���i�/�u��/,E��5�6�N�>��u���F~��9���!U��0�X�Olux�m�p��$g?EC��T��D���a�n/fhR#��w��������7����a���� {�|�l���lii�l� <[�}^XK&�M ��泧�c�<·]��c�R��g�<3_����@Y"�o��h/:$��3q�|:':�Q�Ƨs �Q�ϖ[����_"��0^�X��s~�3��1x)��C�B��L|��������i�#����/n@��~�˂��z�?I�Rx�� �@ < jq�{��`O�c�R����+�_��FD'��Z4T���U��~��—�?�@ =14Y�n.���8—ٿD �@ ���@  ���@ �@���5�H|y`!�a@;����2{cɨ��R��Ne�2���s�J.��ӵ�����2��c�\���a���Ř��޸��zH��N�;̔. |�0S��O�CN �IM>}��+��F���ѵ�&��_��z�w��Ŗ�/�Y(� ����HՍ��>pB��#g�Ēc�ν w�/=��H�Cj��K�[�=��>P��~X3���~�Ძ�^��N�#2�:8C��R�|��'c�/�!��s����j<<��@ <G+�=��5��S se��H�'�fc����'d)o�‹�q�d�0���<@� � �´|1�P��?��'���|���̡D~�E�>�v.��~X3�"3a#��Z��543���W4���l��:S���Q���7�3������X�A,��1��a'���L��W���#"[dn.�-����e�Z9� V8B(O|����8hQ��ۙ���L�{;���ӑޱM���5�k�Z��(�����@B���f���V�A&���D,�t�:mCS���5�ײ�b���Z�Y���͚`D�,�a�r�<�Q@�+r�a�J�8�����r����nN����"�������f^kta�N�Hk��� ��R��nc�y��I�Բ�����L��T�kg �Y8:Y[^^˶���������;C�?l�6�� 7���5�׾��������"�@�>�ZY�.��C�J�:yQJ���T�$\�=p�v��:��&�����@��Sv�`���N���gB��dHɮ�|�w��#�~��Z�a�������vа�&\�u���JQ1_Z���:77�0 kP��م/߾-���_�զ�j���Y���xQS)�ā,c�S~�,��� m�x���ׯ��槃�� �������yw�|���s�d�`�vwr�K;y�@8���B��q��xE�o���--�g1��v2M���5�f�����BܢH�<��ß� �v]0,f�jUs9�t�k�f��%>sZ��b��0L&,V�\- ��K�r��Z�{�N1[h��ު z7$�D����d�ϧ�kk��ެ�uM�������P7d�$h`ȕR����^ �������/�ʸa��l�.�R����Z�#g0%������n�n��X?l�q�y�I���{�Z���)�2 q6��B�NQ=G����յ����_;�9��F�>ٿDx�`�.2�c3��-:��q�?���ɇԄ��F-�ޮpg�ng���� �w�������Ӱ�WV@���M�Nߍ;�I�q�u� �ժq�A�u�j|��>��C?�0����u!�.�=��S�W��Q�ϧ��7� ��B��܂W��D�*�턤f۞\�<�iR#}T�JW���|�|���<�b�z 0��|K5@��˝� �*@�V�̅�� � >u&�A�u��V��^`�H�{6x]����/��V+���'��kGUU��Qו24�**0��l�s��VC&��kBx1�:��^�J%�bq99�����;��'kk'�ӡ��b���*V��2j��P.;������|C�eUE�PB��`K�V�9��������> �K�����;�V/�D�E��y�JFN�W���� �:�!��O�|�z;!.wV7��>��r��_���\ɣ(��GUo.^�Rj����'����2p ��q�|i����i�r]�L�����u���d���������^){�kj��@5�[UM3��0t���� �E�ʬ.g�?�л϶��cU�1;+�����}�����}"��������#��Y��� ��z���Nm�r���.�Ck��}v�U# 1�R��>E��k��H4m���������rm��q�Rϯu�>L�^%/Eɔ��n���^�R�� �y]泼�P"J�s��K�B��8 �Ƶ��p`3O��,U��u�m����X�#(�_�ެ�⁐�Q��c!���k��hd��ҾiT��𸣚k�ΰU�.��YBӳQ+��;��A;�~g��Pi[�kJ��i2 �&���]���4y~҈�?<6'�|�d ���*hݥ�R߼�PJ� q����۬�v��Yk��{z�s�A�ҩ��; �Ҷ����K��y� �9���4�������.�V�ʎ�ک���i�c���O!�5��� �*�>�O�|gAj�z^�/ѫ�(�r�]-���=d�*�Nۧ�.F�I��a[ȟv>,�C����S���Nꓱ_gi]l���~d�W�Ë��p%��hx�����o�V8L[�����! �A�tg�2za�Z9}`�J|\� ���?��(ATY�%���r�v%����& ��aq�^d6�/�XZZZ^^���䙌�U>��Ѩ[�ӹ�F�D�B�}�1��B^�� �1���l�"?�|>n��2�G{�B(�'1�n��N���b�L��|��~���Ի Q������NQ�,���L��%z��3���$ B���?^�������D��~�˂��z�?���D���Bbvm����k{�l�|>[ ����2��T"�� ��K����m����/������ �/Ƹ5{l�}�����f��:�eW ��?-�-8��pYCi�rG�B��Ya�`Kd�@ ��Nv�f �P"� �V�"m�|;m|?=!Ky��^ ��k%(�U�5|��p��%r턇�� <��n��賆6YQ��]�.+`�-Lx���:��Zq�E���J&%���vfm='"�?=^�����!`3oL%�N�%����@,L�r_!VKx��N垈������4m���_���7�3��<܈S8^��1�ſ$o�6o���Z�#�s�Ky�3����A�r%��L4fȱ��Q��?�秞���|�u>i�����p١�D���u[=�Ÿ���YY³�qe�����Ql�����L��z�$���:�<�����R��(u�T�R8Ɓ,�~v�I~H����F�1l7ݩe���n�ެ F��B � �8Olf\�ne����y�Aˍ�|� !~���'�_!h��������ҝ� �8����� ���J�v� �Vo1�x��-.�J���*mל�z#0�D,�t�:m�#�j +��m�V� �&Zǫg^ul��g[��&�f�z�sP��6�q2y�S1��1�f�������`ss㴃lяoL����k^�5��l)՝�^��^�A�:@��1qb���I�&}�R���o�����Y[�o�s`o���]Xi�@9W��z��V�7*�32XY��TIF�ӟ{�5�%��,���S�ٽ�B�pO��Ӻg�-����X�`#+�t���14E>�k��~�H��:>�f�~���r�``���l�prv��4 M�l�W����L�,�a,�%��_�:��N��Xu�ͼ֪���n��Oz���&;�W��V�+�;�g��Ϙ��/���+Ҟ��Nzgk%��4�3�NE\���I��S����N�r���D+G P�������O1�@'���'V��*� }B` F��٫6����ho��<�vf��\�ܻ�s���s0n���Y6�&fr�X�9;�󙂓!%��R�-s1%��w�d 轭��)�~~�]ܯ��$�<�-� �~�og]���*6R�p�./���c��Z�!��+��^79���#d�w�2V ����aKC@�����e@l��ZWd���ZF��J�>=ncAP,V�R���i��F�����l���C�����D[���D�v����}K��6�s�4���F����'���Nm�p��'֗�[�{�$d %�&��Lw�m�LJ�]�'�2:g�;���y� �eB��X-�T�c�7J|G-���G��>j���jFPt�j�NE�4d1�.߼�3�������/ �ϧ����`4?L�x$>���b�7^�= �?j!��C��M�� �@���iC�)��y7�(i��oc�[��}��)f -@� ���@�V�5�֮�ͧ!�E�x������y�a�b�[��5z�掠ZV���P&�/��z�V�pP���e[��󇥥��J < �C��ʘc���&]lTr�ǥ�!Spn��Ek��!d�q�ڮ���)�*K��a�|��Z$���\D�ş�������L��L�)d����b\���u�!����'.��;��F�������P���hg��s"P�'9�vb�־�Q2P�)G4j��v%���%���)�� �6�\o��aP�<�! �xT��/�C��d��S���ֆu�7\h~�8{q�:�����y�����sx�mS�u��V��^`�H�{��f۞\�<�iR#}t�V���d���p;;��Em��b��4�V�n� +� |����3�~�%���~��Rz��Ɩ����\�Jx� 0�UU����o��TU�Z��V!��3<5� 46 �ab~{���|�.:t����ۦ5+ �w5��\~'�:� �V��i�  �Sm( ��(9�m��Ї����^ �N꥗� �O��g�z�_�Mk���7G�����? 0( �}|�r�ޙ��(�<���3oq99�����;��'kF��`��Uݟ�6{���`�F��#���k er;���g�� �|+��|�J����k'��%���ض�+���3Ź<�ݖ�u"ᮧ��s0�~�P.���_%IR׃Y}��so�u���9���"@�����-y$q��,d��lۄF�j �;X�6{�>T��zN!�r�B��-CO�1;+�.O���}ܚ��n��_ַ��0��mҷ��nKC�?�8��^�:�������8;�խ-��MZX��+�)^�O��So� ҤZ��gs��w�����\5��W[��i7����x�$�J$?~e)M*�â ��{z�s�A�ҩ��;�u��JA|��K@)�2�>�s��ӻ�D�A��@���j-�B�����Tl��c(�Z� A���ˣW>-M^��`���4 �&w���qs�8�G�]�os��P�͒��ο�7��VKX�ꥺ�`�f��G���O�,H���A�Jœ����b`v�U9��ʅY��w�����]��ɹg�}u ��J`z8����߇�[������\ω���Nꓱ_gi]l���=����2�|��i��u*�q�3�Zn��灛"����O��24����;����k�m�N�}ى��b�[����^�./�n�ꠗ��r�;�;����4T�f��򏥥%���l!�Ix`-��7a(hߛϞҏ���v��8���ϻP������NQ�,���L�G���1�^L�Ɉ[��9���5>�khW��'3�y���r��"���@xY0^�X���t��R�| ^J>1�B��L|��������i�#�xr���mn��eA�X=�ׅ���W�R ���@xY����ſ4�����\I�����0:��բ����m��F�t�K��!�����@ �@艡�Rws�����C�'|)��K�@ aP���@ �@ �?�@ �A!�?�_c�ν w��wx~s5e�ƒQ��Cj��K�[:mO'�fJ�>s������'�!��֤&�>��{��o��8?v���+��b 3Lz����,`��m'?R��`�=�y>�Bbvm���})�����|�s����s,�%!o�����1��?!��6E��JN�,���k��T��x�CY&>�e�^ɩ�\��b�~Mн���������Ú�w�� �]�5�uO��2�2b.ne����ƃS'��@�0��a'������T�+����-27��vx�JDP��JQ��o碍�5c,26�[�e YC33q��~;뜥ˁ��\�p��ɬ���K���ʙ�ʯ�)�����_��I�LJ�����'��m�l �*��gd �������\��Q��?��G����|����.;Ԛ��tP�k��,�B:�����C���7����q��v�y�2j�ao�m����ŝZ�Y���͚`D�,�a�r�<�Q@�+r�a� ~ Kod3§ظ�#E��鯒�L��T�kg �Y8:�&k$l�e�E��tAP�. 4�(�t|�� a!����TU5�L.q�@��0�L��$��Z���:7G? ��u|v�˷o�������J6��1v�MZ �*ɺ��b�\N ��Y}R˙S5�f>�� �q)�O��k�W~ed�L�q�r8鳭��T�5�3�)8R�k+��]?툹_d����O�JB��`|��o�X���mpN;}�w4?x�������f��!��!syo}��a�M��_�u#N��>5�q?g ���qU��Yȭ̿`S��E��Sվn�N��� �'k��kٶ��\^^^^~ᓇ�P�prUz{����y>��t �l�J��J�%11�����7^�ƄXAXz۾�~��2 �`,w�t�3����;;#���E[���|��c�d�b��ml|����Šm*�>�����b����������X,�d2Y.��ڐ0�v���� 1]Y���J"X�H��.s�:m�P??m�,}�K�����.W.w�X��^���M�eۢP�4𨕆��4� +����@�x�rei�[��b�#�y�>�¤��#aIS$p�z!]� ��8i��\��p�&̙)A#M��)Wެ���A���JȠ�/�(�&�/��z�V�x\:�0�Mͼ�Jw��1��Ҡj�`|�ND�^B�甠��}:KH�|������`} _yܙ?�r��������&M������|j �$I�r���� �A�Q*t$�F�®�mP�ȥ�V #-���"�<���1ǻL��UY!�ogÒ��Y��"³3�LK �����TU�1�_����VמX�4/�|3sژv�_3>�� �t��Y�B|m֤p�j����]e����4���X�#LSm����c��1S)!��^nQ$���%��G�zG������l���ks��l-{3N�j�:��e5,^�x�i,} �K�" �ՇJ|�� [�ӝ?(�rvv���6�GC��~���*a�z��@��ZS���P�Qv� o0���%����b�H������� ��<�K�z��?��Ĝ��o��MK#��~/������|&w���4FZ���R"�<(j/9#�|�i���!%��z�6�Yip �ɗ�ӅT���q���������8!��&g�kn�:`���v �n���8��D,�p����F����9��ٺ,�2��삏��\^;����P�]�!,�aM�����)����.S�������Q��7q_�ϰ����B�$ ��=��X&3�F��N��4�Ĭ�����y���o���%dP�K.�$I���0���̻���k��h��z���S��m3�݂����߅���4 +!���r"�&��*����4��=൶ۚ��8����������Ǖ�X ��+�~�K����IƒX�8G�|�9N�%���܋˟�$��l���_8���C�·J�i��t 6�]�>���9窦�L�Ԟ\�8K�*k��1�������|3tx�6�F ����s�?,Jټ{���[L_V� �;Xtau�Bab�z�f�Li�c��B4�o�]�ss����y���_�l��1����2�p���IK3Ms(��w���Δ˽V�IKȀ�^1�������{���OM'˕�3����&7�~�^�7G��fe������ {ao`4K�ȶ9��;�U��y�O|�J�Ю�OJ���3�ͣc<&���[[[Om�Ӄ{��۩� �[��ސ�Wr��T!|+�<�+S�S�E��UB���)%o��0y�n���9�ܜ[f2���(�ϖ{���������๠�+�م�_���٪�ΟL�]�k���gꅣ�^H�2��(!L��������Y^�zz4'�`�0000xz�����iR�xQ��C~��g�������������@/�,������R0�_20000000000Ћ100000000000Ћ100000000000�˔��lᕄ������O��D>��N~2i�[}f��>�]��&b!�����9�5D�m�d"Ⲑ�ح�O��ΰ����ޅĜ�Nc[ϧO ��/�ym4��|��9>o ��e ��b�7�O2i=z^�ľą��<7Ř�#�������t������k���-�K����.�>�Iצz��A?O�dG��� ���ķ��gev|��л�Q���Q��w�i�����_�Ā��&a��:穃ˮ��� �ޅh�0.��{1�K�Pus&��]���!Zf~}K���y��fMs�w���/|^ 4R�N�*���Ktn�ǰr����&?B�7��Ì?(��RS�C�g�����́d"��;�~�3ѥ����S�1khi)��;��T`a���\��%��.��7� �4� t9�=�a���ꜷ�b$k`���vUD0�W�#�BC�yd��c�70x�������w(�'��f���;�+�f)����DF�7l���ӌ��� �vI ������ʙtWj����ɜ�������O���󻙱M�ٴ�4�>y���Q��86��������L�Kbz� �&����MQ^)H�!{Z�(��C��9���A=���v|h�4hf���Ū�(���L�K\<�[bnZj���]L�Xb�g��qy��lI`���Z�m����ԯ[�Ԙ�|��Z�X��(��nV�6S�T�&�l0LGR:�&4��cT�����b������BeIT(YV@�Y�4["T�c��/n0e{x11�4��(�g�5N!��_����ֹ�U"�o��.��K�y�4��j��̩#U�A��b; |��9�H�_n�^i#��3yb���T�V��伩5*'� �� ����� @��~����`�k�j���2� 7{��y�tyT� �hOb9��Z��4�#������t��MA���s�k��^zD>MQ$b��}���eS�9N�-�]�CzI����R7��֕�%��| 6�_գ�����gmd�7���p�"���Rh�cʹڈ�� �{G��d۽�gi�[��H������^�\�F���3� X)��%^������^c5C��+�r��߂��� v���<\]����}��n�{�>+���O�[T�D�n�H�����)K����u �$˵Z3ṪG.'Q;kk�4���q2/��dS)tY"`”\ q'eͱ,�����L�K�nR�5�������b��.�i���X��N}OuTsp���:p�.l]��7_��U��]�%��1����6/3�;���4�O����g��+����Ͳ˒kO<�|BЮC�4QR���\t�p���o IDATp������dC�|��c�����=D��@߬G�#��+v$��V�&��XmB=ۖ�j��8k���kKj�������/UZL���R���{�n�X<.��� �aW�3ѕ�����$R�x�Z;�q�c�P"i�g_�d���4E׭��^�T���]N��N��~y=`,�f�U��5�]8=v6��ff�'&� @�������[�6��m� @����V�C?O�<��L�x�._�#+��,3� �nv������o����~�{gx�3�|��M�3S�i�c޷�qUU1��p��)8>���� w�Ӄ�#[|���8�>�����%�-�K�ndI�k���Ӊ1U��4� -͘zx'[#�"���63;��F����e9M[(;e�mT�D��!��`��8^�\%N��(i��[�6��mK*۽^��?�x�R�������K 0��O,ǃu���Z^�'�� Ev��F]�}2F��!=?���q{|�ND�^B���K�?�o�'m��ܙ?�8>??���Hr����:E%� +E� ����Ԩ���(�a���W���������9R;�9�e��� |;� ���%��G�zGw�� j�T�H*H�B�]�۠�r��l�ɪ�e%���ȶc&<1Z^2x0}�/����ڬI����Y�U�Z���f�N�lu��W�o��)���p�ڝ�uo�Z����i���V�vUUq����k��Hy�q{�h�!߈��|�׏�idSUU�1�~��i��?浝��`&W�U� v��R+��?a8 �K멆�$U��L&�(��a�@�K�����2��mB�d�Vc����N[��P�c�����U�K�"j͘QM�����j1 � a��(�e����Ƿ�����yY曙�!��7A��:�O[�Pu��H�k�P鄭֫%�A���݂���o�ש7,�a�b_ă��頿M���Fsg�077g6����y~���=%��`t�SU�+�ڻ� ���F��*��)�υ7��EI����A!��B|�LX=^�ܬ4�|)Iw�TU�p�g�U&p�&z�7�6#'T��W��N1����H�3�\J�E����U��Aٛ��!NUU��bE�$�}UwD�� !9��{MV���O��To��6�������vʗ�Y+G�M�O]a�gs���l_J��b�5_#��Us�0L S�i@��a��̤-���������f����d2-..��͝����X?�vI ��҄��*�B�&�u�k�L�v� �i0��p�*���Wl4M ��n*YV :�D�Ҡ�.;ε�z�Ob����߈MK��M�*�n��li� �n�|�8]H�;׆h��ҫ�!�=���I�q�}�!m��1��o�;�0�^�������pl�v��8n %Wf���E�'g\34E[��x��;B�X�A���Q�f�$IUP��Z\N$�ļ�^�(�F��H79C^s����]q��5�V������9fL���J� ��R��\ ��ZMuFC�N�1l�DZ]��7C�a ,�/���3�aA��S3�I�Lfǀ�y��m�(�o>�&n��#��\^;����P�]�=E�?��O�;�hVXd6u*�@j��](���+aە"�d�0�h�שt;����Y�Y�� ̞��V��J:�޾O:��?2�'z�y�������-9�vi� ��\�.���j�+ttk�=s�1 F�睌S���dSɳ�r��N� n7�ݱV�p �hǰ�w��&�q�V�♛u]���[�1[�)����J8�~'�c8ex���։9�^z� ]�=�C�6s?^ַ�C���1aLJ��X��i�}TJL&cO��۩ը�P7}P�$&sjO.}���o����i&\^7i�w�n�_Ҭ��l�T4 ���R���&�|ޘ_x�u�P�f��D�t�1�J�ؚ��L�\=t1�v$!^��Q�'�|�� �H�� �v��݂!���a��� ���tk52:+dN��jh�4@�TN��ܜWD�]ͥ�-��J����ȼ�&���w�7�O@B�1�������|3txі�o�L.�Yz�)ܽ<�ׂ=�-�-�=�y-���`}sn�#��Qu�z�q��R�,��铒ֲ�K��R@��F�M��/y���K�M�v|h0���˨��M��`�ǜ��?���`8d���'�a��<�eo������O[��Z<]&l?_�C0�b�$�pέ$���Ƒ��?�dܳ�5��N�d�}��̼��1���?��3uKL&�9���2��7��MY�x�%l>��IM��V���w�K�!vJ��O ^)�'�vށ+|�9>y���g���J�R�]��%���I��������* /�����gy�������-�o7��#��]���_�����F�v�N�������^�#��_;%U�@���è������MTY�{� n��_���� �k��������q��2� 50000000000�����p<q�@���xx�-�@��~EH&T4B|z��f�kq�s񧁁�������a�?�`2qYHU����bG�/|^ 4R�N�*���Ktn����ƭ�`��5��{�A���l��͌ D��W��}BE#ħ�hj&��<N�#�u���8�| � �ޅh�0.��{1�=.�2�`���bb�a���dO�7%��ϭ� �G���X">̙˿�>�]�O^��-3�����hE�e�3�5���Y�������흣��L�K\8�u|>n�-ģ�Il�����w۰%�� u��s-'D����Ӎ)��t��v�b�{N��{��z���$��D�eƥ�y�ಋLsL�i���sD��k��o���ʠt�D:��x�A�\=�N:2�f�Bb�k�1����'���i��m2�!2d�@����%�Y���b��A�p��Poa���ߚ"�Ov� r�]�v� ��2)�_� �������Z�\��\h���� fb_Om��#aţX��v�#��oV��N�9�L��x�=��Q��0!�ϊ��rny/&R�G@]��������5yR;'U�Z�x�je����ܑv�#�ѥX�J�$.�ֽ�~�X%ٝ���eO�*�0���L�x?�~ѷ� �%���-n7��/�-{��7㰷������?� LkL��m�P�x::dOw;����t�j�%�g�T�+Nmq:�Fs�bGV76�G�`����X ܝ� ���!�P���)��I��!�ş����������]d���%mͣ�o�?��)��,a2�M���؁6��k�,�q�s{�Wżqc���pD�������H���&<+�j�Д#���� w�L�|;f������;��Y�������w�A��H�G@�y��q��$��f�h��y�K���;�|�q��#�3����r��{ܴ-D\Z%�$)E��-��n���5�7 jG�|wkk7� [[[[[���I:şV�/��Cb����Z�����T�I;�����I\���I��Y��Obt�������A�~�~��i �?����6�������Vo��V��v�:Md K� 5�ӦP,�f�j�t윀�� w�CX1_�~�b ·������.X.���e �M�M|��n�c�' x\�)f�)@��4� �Ld9��@�4IR*n�]^����y-�\�i�i��m2�!3|L������u[��q��ߨ����9%�|�f�o��'��6�u������Hq���L�h���Mͤ����χ`���Z�-�l�Sn�Z�-*�J�Zih�,g�i e�,��j�h�ի�l)W�HR��8M4z�*M�����ɲPo�q;�m�����n$\J�9I����$�_�� B7a����K 0��O,ǃ��<2�������e��D��l6O �f� �l[����⬍��<��78�ڄދd�w&��+��� c��I:şv�OaR#V1��)�n����+�2���fG!��u��F�iN�栝Zn��2��ʛUU�\G㸪�ms8B���aW�3ѕ�����0�1�Ӡ�MƑ��!��[[r�L�x��w��E�ް��ŋ}>\�\Ϧ�Z2�|����ׯɄ�F�OO��Lz-y��q|~~������}'c����������,�ZLB�BXm&Ja�_ �H�0�@� �=�XqE��!&]���92w��$�Z�f2E��lL.��Ji�'���a9l�ss��7@݆*��_�� �N�j�1��4{���@9\6�Sl��� |U�0�\]�*�2׾*����4�2�h"���أj�$��ρ�Ob�o����y!�6kR�f5vV��~�/��1f�Zh=�IҼ��N�7�V Q��"?;�嘻sé���T.��v����9,�����e�ofN7�/�$?��E�0L�~��ALQTPAm� I�Q���v�$�i�i��m2�!��=���᠐�N�� �A�Z��� 4��QN���O�}R���kDd R\�"��*!>=ES3�8�9�snn�l6�����-w��*�pݓݎy����n�e���Jt+ :��\{���4i�BH�}�^�U*���}�I�W����dZ\\���;;;�N����![LSUbkM1�C���iq9i�i���W�;6��)n6NR��gsW� d�U렢�V�0�*��m�.ضI�x�b�UU�¯� ��a��5�I�p���D���lg����2�v�z�=�H���?=���噽��U��N1����H�3�\J�E�C�i>ȴ��9�4o���J��6� ����Ѧm�n4�[`s:�FahV�@�Y�������� ]' �4 Mӂ�H�]���)�i�>����K��/�$@��N+�i *:ٝ�+�3M����{Ί*����4��=൶���HECz��� v;��R�M�Xy^��������ʬ���!Lf �vy�J��5�U���L0l�p���n��4��&"ϓ3���-f b�N�'w��]����Zl��G�W��J� ��R��e �9ȧ9a���p��Y#qw#��(� ��oS�S7C*=c�ڝ�g��F�4�aC^�VЮk�j����"�'�ê�.��jt����q�3�57[7^�ʘ�ϣ]l,���D�M�{]3P�\��O�����ίr�u$܋1AY����WU�nn��po��ׯɄ�F�OO��Lz-y��i�e��L.�Yz�)ܽ<�ׂўL�Ԟ\�8K�*�N?aY��َ̋a�Y�e({��Z���u}s��T�<�+z�6bb�2�:�������%�$���y^��6�ȕܙ{q�S���m\��:/�NJ�R&#�|������W=|�1�V�>7#�� �"c� |)<�� (�I� �AӤ*�b�� �ׯ��F�OM��Lz%y�4�? �x�````� � (}C���Wd̑�ϖ{��4��Y���?�3d R\�"$*%>5E�3�8�����������5s;���"c� |)<��%��/zi�Eo``````0]��������������^�n��τ������3wmA"��+B2����S45�^�C��? tA�LO�[�q�)e�� Oף�Vw0H�ŋ�@ڽ����]���>@"��+B�>����S45�^�C��?a/&ff\��L�$�m$n &��T�n=�.v�1��1��^����k˦�����H�л�Q�����!؎�׷ABUA��v9{���=Ҝ ��`;�7�x����;�w��wϚ*:G3�/�B��2��[Z�,�7�8�Ѹ*�b����q�����ľą���xw{�B8�����Q���;XI����0{��ImH �K�ٻ����iLb���I����� ���{'�k:�}2,�o�Ӿ�&'~�+�+a��9:M��q�=��Ϣ��q�#a�|�0g.��b�{�h4k�о�y-�H};���{��.ѹ�_��� �d<�U��O� �HL��'O����&�p���2w�� D��W�dBE#ħ�hj&��<ނѷ �*��q��9�b��%��ϿY�k~;��cR���z�s�b��򻘿zP���@��K����U�j6-(��������s劭-�V���#x��o�d2@���Մ�x�[��e�����݋�w�Ys^>���"�9�����=y��r��Ͻ]Y�S�G���D؉w���@��L��]N}Oq�-��:�-������ՙ��3�.��j�#=CP;^6���9f=z ;�CJ��O„�����ݬ�@��C��9��جp��ؒ�=�?�����H�{V��^�1�����" (*(�(��?oA"��+B2����S45�^�C��?o��+���8�գ+���k�YE�Uo�sf @��:�l0LGR:�&4�D��ש��⯟��in�O�f�W;��[U�z�Ch��}����ׯz�wN3.���y6_ㆼ��ݳ!��z�#�Ȓ�P���,+�(�z)�3��I,'|�X�����x��,�ܴX?�}�pC�.�sif}1h+���u�Sc��ծk�c��>㰷������?�W#� IDATW1�뙱5��sG��8Z�����@}� �un}�H�������w�!�����G=wtT���K.x��ʷ��'�M�"��;���v�p��f�Ҹ#�u��߿�х� ��d+����,�NS�e�&�v �#��в�E�M��h$pg4j)g �š��tF�b+E��� X���!cE�ݝ���eO�*�0���L�x?�~�)ݔQQ��h�E��-�9õG�`='O���d�J�<��f;� c���m�%��#V�F�ol���e��Hq���L�h���Mͤ�����[�b�r��/�&\5Wh���v�Mn �oh��~�z}i�В$�%�[#�5{�g���Vf{kk렀��(���v���r�ߏ����?�`,�~���=�k�N;1L9��y:�j�*d��Y�������w�A�v��_�H��_�����JW��t����+�{��M�B�u5��������UK�8,�r����xȝ*Sge�(/�$������/�ג��W�p+�{�g!��T�ŀ��Z�iw9 ��I֫-������n�+�����n����aK�ho�i]��1 |���y��m�GV�/E׊��������*�x���s�n"�,���I\���I��Y��O�~���C� >�4_T t�}폄ev��Ξ�F��M������������2�z�zv�>������ ���z��5�P�����8\����R��APg"�I�E����S̱�O!�����z��d��f�.�w2)�_� �������Z�\����/���@i�/G�C�Ս�K�2'�ӡ�nr�~��m��En\qkt�ʞ���Wc�[�+ ����S�kv�Oa�B0��)�n���O�6�d���?�s��s�FX���x������c���c���H{?��|�?�<��78�ڄ��H�9gX��h��W�C�β,�5c� ��P^ p�]�y�sB�DWVb������!�/��v����Ԡ�Z�=�rbL�p�����0q��^�X��T�L4o�ڄZ�-*�J�Zih ��rŎ 5ڊ�D�cԎ����D��*�2���fG��y9�&�v A?T�/�� r_���_�� B�#J/_�0�n�@�g�@��Uo(�K�6��1�E�x<&w�5T�7�D��%�zN :���1�q\UU��9�r �k'�;�8<���l�%�˧���ߑ�Hq���L�h���Mͤ�����;t/�p�-1̨5-���*a�şX^���t|�[[r�L�x��wDeLq��~3�D=ES3�8���j���QqD��� A;�f���q� �%���H��y�j&I�� ��j�k��N2�iީ������<��q���e���,�D,�P�*�L�[ ���>J�R&#�|������W=|�y�[h��܌H��fH� �5�C��D������$A�U��iR�x���@"��+B�<��Q�Q��&�<�<��T��5�G�g,���7��r�+"���������k�f$�� ��} �uH��2eʽN��Y�<��?�n���!�!>5E�0��p ���)e�� O�y�Vw0H�ŋ�@ڽ����]���9@"��+B�>���R4<&i� ���9z �<����X�wB��BUUd&�-ݘN�/�[��Zǻg�wu���շa���\�1O^_�!3�����=���u�q�o3ٓ���/|^ 4R�N�*���Ktn�G�zs����p�����1�j�p̯�ţ�|�q��j���뮱D>|�3��}R��'R��/�ym4��|��9>oH��l"rZ�o1��\}(�3�5���Y�������!����ŷ�zl4&������ؾ�D>��N|���|��v�o�1�{�oӴ/|z�ø���E�S�ݳ���&a��:穃�.2�1A�9.�N�ᨪM:��x�A�\=�N:/v��c2Q�8��x�-!ڍ�$�'N����&�p���2w3� D��W�dBE#��hxL��ڭ ���9z �<���݂ѷ �*��<�I.��W�ɇ�/�]M�����7�@2v����������9�b��%��ϿY�k~;�k�����p:p�u3_ͦ�9��(���?�veI�O��)d޵\T`!L�!����|n�WEsxu=�)4J�Lt)��~�Tx�ZZ�y����J��?U�ZL�_�pĿ.p���<��R���l�c5����i�̣�D���Ҥ�k�����y����&����N٨R���`�`���lsVL���<�������[�n 2@%_�[�X��7*�3� X)��%^���+�$������P��:�i���/��ä�"��x)�QB��۴KV76�G�`����X ܝ� ���!�P��)���qs�y �)��/�+7�Q\�b�[�_,ik�~����KQ�U����.�m��Zb����M$e��_��{���t�վ�W�T�:;�/Kdmc�����-m8W��2`��a����o�^W�.��tp��IV+����uP�/e��̕ý��m��Ƀ�7c������\�vډ�$:�*����w�n�y�t�켷�=o� �)�_�H��_�����JW���Efr9-�Q#�Wh�ZM2�l&��x� ����}��Ϸ�Jx1r�(�� IJ�}�W?��y��2�q�s{�Wżqc��ݭ��\W(lmmmm�F�Z&�X�~�\n��Yhq�������f]�>s���4ǪGi �?����6���������%?$�A;Q�&����̅��iS(`�g5y:vN�j�&A��,'�AhZ�=Sp>$�v����w�r��L/K%�&>}V�͇��<.���L�*"���%P������ȃP�v�Np2�l�^����ׯɄ�F�?H��27B����)��SS���/���@i�/�]��XmB-��Z��G�44`�s�����:���� V���B�̡�&�eGv�����K 0��O,ǃ����D`u#�R��I�5���:�{ ��S��a�x&�op\� 7�4P��0��H��B�~7 �ei��G]�әwʿR/�+�n�4�9(�Ǭ���y�����S8�1ħ��.R�����ރ�� ��[�w�a�m aq�mr���t,ԟC�$��\����K��B*�{�s��V��l1MT��5Ÿ���V���I�q��i�]'ʝb�g1��g8��4�7��$=󢇢?���6���/|��c�~���f���qP��*�8�e����a� Px��pl�$G�f�����\��ޅ���篑$ ' �j@�Nn�vv #��]�@��c�I�ş�����^����a�VO�2��iN)��?8��;�A�ͺfC���f�i۩t��i@��A�0:s����~��'f�V��M<$�BX=^�ܬ4z�!;Ӊy���ms:gL�f��i����ׯɄ�F�?H��if�����S8�1ħ��j���Q�!=�vM.���q��q���UO��4��8�N�㷄�V��}:r��x�2[F.����w�8�S����nw��/�$@��N+� C����߅�뉄�La��.�S�v4=o %b���UI$��,n2�E�1gs�����l]��i*���s�OR�+�x�&0��s[�]p���w�i,]?[��wT�M3�7��'�s�&jL�*��l?�u�PM��I�9sΜ黳3�D,�p����zCq��r6�n�B�E����������P�Ռ�z�Az�R�Ѳ�6 �I&t ���d��,K�]v��-f S1I����]~w�8���eY��m�(�7q_�0�J���P Ks�4����5c"qw��G�f����'n�~�M�Q�2�EfO؇U*J�q �h�0�x,������� �b -,%��c�떡�����?�)�,@'����{t� D��W�dLE�#)R��9���\M���hy �)zώ��J(�ے�f(`������'�sn��!�ꗩ����|�� ��齸�R�R�w��b����+����w^}�X8�7S9;q���)\�Z�L��@9w�^X�&1�����:;}������)��]��-����߮/R�q�J�8����V��/�Y(��TN3����Y>U��tLDt�Q�C�Ǔ��D��� ���OIR�;��q����ĚX�"$�Y8�(yó�� m@h���bB��Ė|�6Kb"[�Hw$P��CzW�s|�}��[?O��@��(���Գ��C�� ,�$��ʞ��w��ǃ�]���p/����3��� �WZi�bk������_f�Ϟ�!�D�LS�!k�9��v�:)��\�tM| ;u�n�b��I�߭�r�v�:W�����ݷ�?G@��E���{��Ę��]�g��Q ��w[=��7'*t�c��Ϳ�]�������R�ᘉ��j.W�L���[(�\4$d R\�"��c*�I��Cz��Y����qs4 �<��D=~��C����I�x/]{��>c2��M�׫����˻�5D������GO���� ��4��b�Cp��z��}PpKt�5y�/:|� �`c�F��ez��������= �����,w~�@��~EH�T�!>�"u���G]���hy �)2��=8'boWfl�_)W�ݛ`7sx��-� �/��o���쾔4��b'�U.���������>,{؋�q���A��� ���˳az���L$&p�(cM����1d R\�"��c*�E��C$-����)8�1�'��xf<8m�@Sq���7��b��#��������93p�3��qo���ZG��k��"�>��!���!S���(�4���s4�<������5���dR��BO�50000�r6f��g,υxw�������������0�z����vG������{ ")�_�B������H�!���T��Rd```````�W1��H�/�;�˦��{����@��~E��)RM��Cĩ�h*y �I)"��w�a �2�X<��ԕ�["�^S�Z����?��h��^ng���]�3&o|a�m[ IDATk�qYd������@�g���B�l�x���y��H0�{.1糙0�S;�d 7�̛C+o���T�/ꈯ� � �ȶJ��Ie�W��ëk󶁀��f��-���q�q�m��l�S���u��}�<����Ȼw��ү����*����7�nꎋ��pן����@�`+]��.�/ҹ��ǽ��ɰ�>��ț����ϭ��8�c���ݫ��2p"@��`�t��-�@��~EH�T�.>�"u�HS��T��R4NP��[ Y�Q b���L�n����N����Hr/ &0�es;?�<����#��zA�G�r���2�1��Řg7U�1�i��d������&��:��_�O�b+� '5�:ٝ݋F�b� 3����]��� ��+_�H8�+�v̡x��.�������V�����u�����p�� ̇ ��R�h��D؉�[�V`���$.Ԛ����������|\�?�^��~�E��A����oA"��+B2�"u���;d�9��CC|R����>���g VR���9P3yb�y����f�8}�������| \_� �kn1���6�'G�느��ۄ[̧�r��{2�X�/Q�(�(J"/H��ͫbW�V�…V�4P1����U���e�V>�� ���d�U���.�z� �8�3.�dd�v'?�{'�'B�Ef.j���Z�ا8ta���i�v�+U�)x�,o$\7Z������w��)N���Ѩ�tr�,0j�Hgt1`(����:����@ ��a*ߑѕ�E |�Z<��t\�F=��V�w�,�$��^�/{q?S���D�nl,H&����P�Hq����S�.>�"u�L7GSq�c�OJ�l��|�Ԯ�?j�@�bIk#����=�����ln��:�������f�e�#�p6�;[�{B ���KYl&�bl�?� ��0-D�6��?�zj?3 @`9��r���\N E� 1��$%߾>WgU�'ۛ���W�F9��n�� ��p�_����UrW 0�氊�;��;1u�H_,amev����j����t���֬͜sa�,]���;����Q��". �+ R�(�X�z��6� �};�B.��zKr���2�(���׈��K���tN˸Qh��}��#,��Rw��jte��y�wd[u��v��E���q(�Dq��ٯ��[��*+�Nng��8�I���<���1��٭f��p�Y�H�?��?�<*����b�Z}�^�n� �(o�"u�L7GSq�c�OJ�=��y�׺��=�,�p3��@{�?s�߾��쟷�&,n��a�s�/a8�w� 2�c@�|~%�� @Q�� J1Q������8MS��O%�V�Zl�y9�HX��^��J�`�~ �j�w�l 1���nM&(���VoU0 �TcR�D�)����mbk8�O��rҦ���}���Ś�_}yEo6�1guo뿯�vv�?�1x��?1hUJ�F��Ҿ�6���3֛��, ��;o�,�����s���tZi 7�n���ׯɘ���GS����h*y �I)���:��ʏ���u;&��F�8��8�N�f�ʳ,iw�i���) �0� 0���I�LfBy.` -�ZXx��[�@�N��{�&0��N� �#���N��aUo��b�����=8c�q�����F��y" ���N�g�g�m�Q���}X�/>��av;�^��S�����>;�c�%��~�G�J�FA��ryb����'b�R:�x�$ '�鴳_7��>iH�_�;g�6�cE�8�i�F��Q�����u�|_+�˄��w�8�S���i�n�kKha)�|��Z1�aj��:g���C��G'����{�� D��W��0�"u��i8d�9��CC|R�³���'Ƕ�� �f>ut{�X>;�,��������[��=��1�y�98��Z]���fxm5��������IM��ڬ@��ޟ;�7�Ӆ��ʧ$)�Z�8�{u|bM,|�,e*�RL$l�(cJ$�Θ0�Ṳ�< P����O��]���}�2��u����3���Y�n�s[��r�Խ��1Lb߭��o��1�p�P<�X���4&tkg�"*��[��@H��e*�P�<��I3�|�mGN6��W<�}�9 ��6.R�z�L��ˁ�ñW_� ��Ԑ��Ia/k��T9;q���)\�Z�L�p�̱�� �ؾy�s0��|�ϗ/_677o�5y�n�xr�s�κ���EC4�@#���5��&c`pd ��W2�{Q �N�s�=����AA�-ѕ���}�C�ij�gȽAJm�au��. $���a�F��E=�00000���Z���immmmm�ò��(Nb{��]���=��?`M�������h�,/*4�{� ��xv� �7H�}� �����F�h�M��{<�s ��������������@/j�����vhw���h�vc�m``````��6"m�`���@Z}�?�@#�d����!m���?'ݷ�5��vm������ ������}�������Ő�PI���_����y����snZ%& {�ӻ3�K��Z̮;�c@W>%���C+�>��@�H�(� �� F������ݰ�p�m~��F�տ�׻���j�4e3�B�K�*�c�v�N�Lp=V"Lf �+�F�h���n2����K�@2v�����KW� �������b��Ҋ��u?�#c➅�.�뼍��g��o�6:Ms��[{��a�G��^/�٭tMF�D�x��%��5ul�L��«+��' ��0��I�J��X�FOd3��Q/{�S���s>xϴm~m5,_�=ib�ħ�@������n�}z�]:Tއg��$�� p��P�"�� � #c��z'&2PS\�$͘HEH�FȦ�45�>��f��C����Pp̑nEO߮O/*ײ�� 4Qd�Xl @��`�f3����x:��'�/J�K&�� cB��k��� R�֒g����F{K �W���B���wQ �ʗ�����K�{m��6���ߟ��G�����k��RE㒳a1��T)����������N����a��B=w���?���Qē� �1Igt1`(����:��� �4����މ�P�t�����G{���=��Z��e�&��Z�ͯ�d��t�q+}���PX�0�߿��Dj�k���i�~q���45�>��fL����h�@u;'��X�30x�v�X��;䯕��U��*H�B ��4��q�=���[8��iZ)�^%w�#m��j+����2�ww���� ��ln��:�������f��5�%�������,�_�޼U����������%q��;���ߏ�J���4O�777���y�����e�|č ��Q�� ���s!>������y�w����o��Ҵ���i�:���E�,O��g�%�������a��VO�V��.��t����Bw�J��>��I$�F�6j5�U(����ۘ�@Mq 3�b"!M�/���f�G׌�_\��n�2B�uOnr�~�������ғ\�eY�h��ArO�q�1�,o$\R��>8n]��b���U�����X�j��K�r�2448�ϊ]�So�s*�] ��|>�x0� Rgq@��˷�ޒ�&�f+ǨiE<����c��uF�l(��Ai@�V�D�ة�x�'b�߳tk��}��#,��R�.�G\?��ヒ�_�� >�b"# M��%�G2Iӟ�Q��)P�J&!���hES�p�V]l�*���ڼ�Q�$ ����V� b��N<�p�Y�H�?��?����� ����8E�0l0&~��4T� ��}>��?�Cgq���$�4�x,t6C�ٱ%��E�qr\� W(ͿI���]��U�f�]�[������i� ѥ��>����/���ׯ�� _�����_�1����S]�h�#����I��Ș��)3P�N����#����`���p��~?8���-@�8���jL�4�)���;hY�V��e�> ä��#� Ýy�,�p3w�h�� �C0���i�3�cN��-�Ѕ;�?��i���� �@�Y����뷝ݟǥ��M&_ry�z���� �V��n��/�#�.�^Ϡ���x��n�9�VZ�N�d��S��:�1յ�&>BL�A��)���.>��1��D�k�9��~; � I�2� ��*�qPa��}X������m$@��N��z`%Lf �vy�R�}�5�gY���m1S����k#q�vyr�s�034��8�v��٢�%���H��yr��ww���S��C7C�i���� q �h�0�E� �L8�~'�c8e x�V���"������e}; �ҥ��T�>j緎�8��ç �_�1���c�����G���!���uH�����ס�A\WR����L��Vp%6��_�����,�k��%ˇ�� *f��s6 �i�W��d��":�L� .,D\f��n��8s��1k(3I[pn.䲚�׸:I�7n�7\\�u�1�q����f�œ�+l3r����Yv�"IR�~y��h�Z�����j�-���n��㞥�@��A������=�O����%;x*�#�>��ۻd�� FO � QP���K��� ��6.R��-Q�L���;�1�~߯�V�P'�g~�i`L ���.r�J.sR�ɶ��h��A��ꖉ�O�/��V@v��Py^۽A��&�\�-O.�*O{fg�b�WdL���h�T��s�">BL��$�C�ڑ�F+��(b�v� ���0��~0Pg�뇿�� � |�>zJ��U��M=M��' �Y\Է "n���&O�+8&rΠ?�7�c&�'��\��?yܿ#��4V���(�N#���Ș���ь��}4�b�wȘ&!ő������E������i```�< �~{�X����q�4�$R�\"#>������}X��ſ�“��3�� fq���Ԏ��y��AӤ,�BL��$Mo�+������9��NK�g��� ��s������e�����O��,r��'E��/>���G!��$Mo�+������9��PI�� � ���P��g�#�_20000000000��0�zy�����a�����#nZ)�~q �b��HC|$E���u�����ĥ�N����L�� �!L�G�-9]p�D��������Gt�� �N<�g�� ��ϫ2�~q ;�b��HC|$E��>u�����ĥ�N����vL������.� wS�KW�#["��͚K����^��N�\H!neh1G|=�~߽�ඹ�%��^� �9��6�K����o��,�,��R6}R�{6\yg=�/S��h�[���G;� Y%������Y��Ƅn�"��j+����{�$�[�#�ԅ���䡗HG4:��;�����B�|�vq����N��>����Bd�œt��߷m,.0��m��E�x�4��9պ�M[?�7����_��Zi\�f���. c���V���tMܻ��H羾������1�+? %z�;%���K��=����5Њ9�" ��;D�:�)�i%G(�hEcܘv��5��`rE��l� ���}H�@2v���~� ̇ npy����q_&�/��G�o�e+� '5��dwv/z劭.�T*ǃc���7�����]N���;���5ȼ�w�)���K�z�5��<�-5�ғ���˩]v�ͫEn��7�"��{b��nj嗀��#�o���T`~�����b���J�_��_��^��G�r���2�1��Řg7Uyi�����6���'3�y������<�������e�����U� c�p٠��N/�Jd�>f�!x���$�]�Z�x�II�9���8*)��V�1i���H�!���Qr�ҎV4f��i'J\�N &W��+�j��s笣�oW����k���H��ZJ'Ŵ��HL���9��G�j�۫g;�o�����2_�����~m������/�^H�8͸Эβ՞ʋ�=�n��w���[�������wby�hOb)��j�0U��_J�G�����k��RŞJ��V.S|���r�w�:�K����np"@��4��a���@E֋Ŷ �+ 6h6�k�0t���U�pa�*�ǡ����T�#`&O,9ﵑ2����<���K���4p�DH����6Jb�ǙK�rb5�M�ɵ\J����g�D�D�B���E����\KV��E�3� 0I��a��o�EQ�J����{�)X���3�a;�ﴅn���K�zm4��J.}\�=R����p#�C&T ��K�(J ��� *%�j�N�����k����K3�Lo�.X��xa�����X�]� ���!S���H���D44��#�v��1 nL;Q�vj0�"S �,��KlW���·���9o+{ּ��["���kV�V�f�3����M]t�Sh�lonn�_���`��i�;�.���R���)��W?���v�k�N�jN1���.UT!��!$I�83�������jүqߎ�!s�pw�a��������������%�T�{�T��>�vF�%�D����R�o�8���a����U�c  -מyP����. ���P�Z������e�|č�%�������,�_�:,ak}��߯��7eD�cI[���[�Ϥ�B�1]���6��[����t�Q�<���fNkֹ0v�.��e����N`.��v����=��.����a�#)��ZmX]N��r�j �!�%�����ַT���Jy�� ��D����O�8^*��^��������UO�g�")�j5��-NG��xQK)t�>^̡�O �ѐ�V�F�D��ZMd�2)�_�1i���H�!bOC�(9BiG+��ƴ%�i��+b��33v ��Fg��I� ���!�|�,@�6�}������K�`Me�&]b�g�:��0��?G���寃�g6�O*�`IS$�:��LM=M�l�� n��w���_ӄ=��U�_�YPL^��b���U0k�8�ϊ]�So�sׁ*y�v��׌��>��q\�e��:!�$LJ �M_����>�� k�\;;n�Z��Y�f���괩[����PoIN �Z+WͶx �Z��Q��ga�|5�d�n��)���r�lK+��Œ���d?�����6�-fϫ]�n�!�*z���$��N�Ƌ>�0u��U$�X�z≑6� ��A��)��Zm�;�X�B����U�Z��fhf�z��$����0��h�ZGEP�� IDATޭF��4N����A??��x� �D��1�z���ŘP"i�e[2*&[���k9)�nn�B�K#�0Lo� ֲ�-�-���� D��W�dLE�#)�p���Qr�ԎLĝ�N����L��)���1kxƙ���}��;fg-��_,�;T8���:{Un�@q����*��P��UO}b����^��=��ב��}�v�O(�߾�e�y>�:c�z����i���.EQ?��'2���U[�A�_���mV((�����7_�ɲ�a7Cꭌ �@ռ˼ R���㩐$ �0�|�U ��$��ጭ.���U>���y @��A�x�S��,JD�͌CծA��a�N�1�^�-��������k���#r�m½� �G������fǖx�qN���q����h�C���j7�C�vZ����f8�M�S�*�]w�����!���" ��;��I$|���Qr�ҎV4f��i'J\�N ;&VĖ@���_3���'[/ ;u&��*6���c1��I�L�������v�sЛ��W�����ܽ<�9W�����YE�H\��]�Xq�J�9�^��;������g0�� '��~^q�,A����C�G���iH�_�;g]^&~���1���L����.[H����sN=��Mn'ól��]~w�X�?b %b���e��xƅ�cY�l}q�!R��vBV�Mΐ��hN&��La��.�S괯g���q�(��!��h��d6ߺ��hT�L`�A���a�Jg�@�$�~N@�:��D,�p����zc��{ݎ�嵑8N�<�������N���,��q�v��8΄��fl��h�M$H�+�Dz��"�(��1 S~�1����;[�J�H�ѩ�ěX�f��vLn���1�X|��#��>f�������ł�����v�ׄF0>7��tU�)7r?~]��o��yD;R�9�{� ��SY�Nn��3��P�ׯɘ�4�GR�ᐳ���4��#�v��1 nL;��Zvj0�"֏+���\���A,����m�Jl�*g'�x��:��\��I��~��L��.o�U�7g|�2�ӯ��ϙ�_�@�n��>�o4�]~W�x<8��6�_��Pߩ�f�j��Z�ͻ�D�t�l �w�a��Kb��,)���QF�"M3���Y}n���!�W���k �s���W�Le�Zy7{�&>��m�2C�*O�m��3��|��s��7Ý��E5��ybK�^�%1��]�;O�${! �&��b�<�PQ�x�}��s��d�m\�χ�� �#;�N�JFg��㛶�l�B�$cM$߯ӘЭ��N�� ��մu�����=6�Ӆ��ʧ$)�Z�8�*��ψ��� ٥ ڑb�q����_}��esss��p���D5��p&�\�-O.2)�_��1i���H�!=��[T�8J�P�ъ�,�1�D�kکa�E��Mf�W=��ˣO�pG�}�8�K�^�)�C^�e �^ �����hYC�(1��9�"ܳ��oD�]yM��w�TNC;M���8 �r�" �hi)G(��t�,�1�D�k٩�Ċ�@������"�Z�����������r�ԟ!�;�w5�vNן����7�n�骲�=�i%D�\�!ne�}& 9-��6�'�\]��u���j�~���ɀ{������,�9��6�K]_1�Q� s�sD>��h=��txum�6п������B�|�vq�ɷ%�7�0�Ҹ,�����Y]����Ĭ�FcB�v�I_���m��{MO���7�b�s� �������O����i*��a�cT;�� �^H�8̸Ķ��tVs���q�N,�w�fͥ_���� �у� /�MƃZ��.2�����?�~��'1"b)����˃�pw�� D��W�dLE�#)Rw�tu�SV�8J�P�ъ�,�1�D�kک�䊸��fZ-�U,�S��G���D����N���9�L��x������vw��\ j�.��܏�ecB��1�nJ�"3��A��9�~���d3�Ԙ�}|9��ξy������S|����� g|%�����+�_/��%���W��<������e�����U� ���y�t����Y��˳��A���t���|~S9;�y��4�,�ǰs$̡x��.�������V��e���a�{��ʳ��؁�����-�����6^�4�e�)�s��~�%��@�@yN���d R\�"$c*�I��Cd-����]��áâ�N�8�!OVC���{?wΆ?�3yb�y����f�8}���k ���2s�|��W�xݿ���ۄ[̧�r�����pv�x�]-�^T:�e3|r��ͫbW�V�…V�(]��j�N�����k�G���ӝ�J{��F{K �W���BW���'�N3.t녳�E��/�r�������{��L�"�f�a[-����"��b[�ڕ4�xQ�%J%EI� �;l��~G�fv�_eEL����`�K:�o�=�'����(��_g.�P�7��#9������Q�u'?�{'�'B�Ef.j���Z6T� ��P����r�-�6�f��(W�MB�8�I�S ���S�L� >�p���{{{�,�Ҫfs0Mt��[Jv�o\�y=P���3�~���w"*ԥ�j�T_�V��ۤn-�,u%�f�%Ϛ)����� ��ZJ'ŴjoI:���C�$.��9�vXdyG7��<�L� 1L�O'���D��Eiv��d�艇��C0�M�d`yc�m�&�vcc9pw-� D��W�dLE�#)Rw��8J����`�&��<�!OVC�b D��%4�!tE��Œ�Fjgk�{��/F���;����Q��"���e(��DR����7�cn��]� L��v�X��|�c��nl���}XYZqXN��\$`&��BQ*�"�j��E[��^�z��<����ܿ������ˇ�;G ����z��E��m;�5h�m��ۥ ����ك��!,ѿ�����U�O�H�B ��aZ��m��^��~f*IR2��,��������+�t�9�����u���������L��ǒ�������I�ȭ�p������5�u�����Ll�f� cg�"x\傳����e�|č�#�p6�;[�{B ������P&=[�/�Z*1+�b6���u�/�44.�Zm�\N��t��JS����[����t��V��>0�W�]5D�H��*�� [ �q�#a���gM��)8�s;�[��w{���U���G�`�P���� �4��q�=���[8��i��8��J�� �m�jDO�ۨ�D�n�!���!S���H��"�44��#-�#ةɤ<�vȓՐA0�̌ ���Ye�ۈ-���f[�P-��(CC��n��:����z�FX���x������7_-~�, \��`Au���kD��%�ZN :Ucs�@�Ҁ��(�cIS$�:��L�n�n���1x��w��+��~�������u3|�(���1���G,Ƅ�Hk/� p�M���5Mأ�^�����! ��X�Z�%��R}a�JA���bWh5��_ 7kuIt��z�}"F�\��-��m@��$��`';?0Q�j�nܦ2N*�8�I���'4�$*TZ�l>H�:�<,�46.�Zm͹�X�B8]�ڥ�w*l1{^�t+ y�D���'�$"���pI�b��Xkv��ɏ���{eB��+^�0�f�@���y����5vȨ `�a♁�,�mu8B�I8�x���0��jك람-���� D��W�dLE�#)�p���Qr��};�������g��L}�/�1 �o>��e�n:���M�6�N���o-�(J�Gܯ. {-�^��a�`�W<�)f\%"�fơ�D�V�,���=�F�<��y6�ɚ��3&�ר\������2/���b�`��[����glu����l��K����R�� �^�#���l�+�\/\���U���f����׋a���{�8!�Z��-�������3XF��B ��K�&P;�@���7��b������ �J � ��D�$�C�·�W���.;�(��VT|�$���ʋ���FZ����qXV[ �q�#�;fg-��_,��mvl���D�m���� ��ǃ;ڨLb�xfH��a�X>�*�ALR�e�?�0L�� ��:�7�ٟ|�z�}�A"2)�_�1i���H�!&B]�(9��>���L��h��"u�&���Qr��};5����y����޿��e�א�L����k#q�vyr�s=�"� �F�<�ݾ�uYB����}�h�p,K�-�l�����1�u��˄��w�8�S���i���;B�X�A���Q�����r#��ו��C�d�0�h��)uڊ������B��q <���̳��},h��j�o�F�����B���=^���L������#��8nr���FS��<˒v���h����������P�Ռ� ���d���&�2� S4 ��^ ������,kv�����"7��R�ّp0U�9�ۿ$��SY�Nn��3����ׯɘ�4�GR�ᐳ���4��#-��ة��<�tȓՐ�!O�m��3��|�����9��i��z��T�vO0�k�-vz�{�*U+�y��(�n��p%6��Q��?���35໭�@�훧gR���O�[�p�kU2����5��!DHl�p����v������_�}�u����s�oח�׸J�o����|��E��,�w*����������)|c9 ���t;��`�����o�/n�*��t!9��)I�|��=γ���'��҇YRf[ţ���X,��z^}ab���A��''���Y��E�3\�E*"[��=��1�y�98��Z]���Km�Žp���.N˹B�½��c���\V3�^iu��l���&(uk�j�� u2G���A�!��.M��;u/,} ���w��i���^'O�^�����(�"۸H�?��QQ;4{0����'GL2�n��{�������`�s0���� _�|��ܜD�: 31?Q��*��3u œ��@�� D��W��}LE�#)RwH�9;�U4��#-�����i'J�'�!��d^��#�>I�k�}g�]���)�z5P��~�yd �h`��{��S��<�'O�&�qa��_�V����\��p���=����AA�-ѕ���xO�AN9����?[� RSܿdq�������]��D"��+B2�" ��;�d<�Gɑ�v q��Ǵ%�vȓ�u�F�����]����.�\�wo����'n� ���k��D�SM��.ml���g�xx�L�U.���������>,{؋�s���%��r蟭�)L������e��iRX~��@"��+B�<�"-�Q�;D��8R�4�k���>��q�^�H�7�;����1�@��~E���T�!>�"u��V���Qr��]C\��1�D���d5dx���z� � eY�[��R|K��k�X�<>��Ǖ ���윿��p&�%��ݬ����*���Y���e�m�O���n��'f�6���L���T���=����L�ة�e2�� ̡��Q��[���pG|�M��e�E�UʦO*���a /$ff\b[�l:{[cI���p7���o�8���"o.2�?�2 �d<��^�"��j�J1��|�3�i�����o��[�R�ȫ��8$����Q��Ƅn�����5�a}���*���z�_�>�;j~��ܱ�oZ�y�N�6�L�]f\h��_v�i 2�ay;�[��D�e!e�S�8���^]���|���LD��u*]%��m�k����V�&�]Z_�s_�+^e��@��H:�1���¨���N��.vJ���82)�_�1i���H�!���NYM�(9�Ү!�_��v���y����&�Z*��X8����ۡu���S��>%&�� � ̇ �v�`�^6��̃9��>⹪S09O���0ktyy�[:(���&L���0���@m���6[�f8�1(����^�0�[]��T��&2s(��߷ =�6�zy������@2v����1�C��۽���=�Ew7�w��]�׋��l�O��,�R4p�~�)�k�= ��ɘ�r�{Б���7�3ͯ�?����0���rv���;i*w,��0���;2K�v��X���E��i���<�����te��e���Vb��~�/���|}�'ጯ���) ��Cv��������e�Zs88��#��zo$��q���A�x�II�9���o��Hq�����HC|$E���4��#Yd�����k�N�8�!OVC���{?wΆ��1�'����H�m��g ���wQ �ʗt��Zn IDAT��v/z@��c l3r���\( @zon1���5���;�QK��Y`���K�(J ��� nwؚ�����޿*�9��V�g��Z�\#0�v���Vi�w����m2@��sb|��k��� R�֒g�Ƿ��ӋJǵ�a���C�8<�N~�����쒇�*LSP�D�����,}��['$ lE�'����(��_g.��s/��$�>��fS�� �;l��~��:�|un�a�6�h2`�}��G������T�#+�#�IÈ? �>?U�~�8�H�_����]���b�f\�� gًjO�Bo>ZKGr0�5 �ャ�N�bCP.́4?Yw�ߘ����i��|Xp�4Q�*P�������y�ξ{e��U�q�E֋Ŷ �+ 6h64E�� �j��r�#���X��HX�;,2���N~��N$O�*���\�^?�˵^���r��*��b��;]h�N{���^�������&�o# 0ѷˁ�kd R\�"$c*�I��C�������4�.�vȓՐ��/e �x]�!|������������Qt�v67wr�jssss�zfM8�靭�� !���ӥ,6I16���ef��ʞ5���aZ��m��^��~f*IR2��,��������+��C��,��"4�Ϊ,4O�777��Г�r:-�v�q�J�!F�V���@lW���÷c�������ڇ����D����R�o�8��i��H��XV�i�aL"X�&��X� ����u��߭�gRx!rSk����|��s԰�G\J�A��t[P;��qɢ� �% .lo�,��#nL�)��S�y���x��R�a �"�Տ������v�5�'q�c�k���$��Tjʥ9�&w�}ss�.�77777�.U�;Q�NYC��ɹ��iS(�fO��d��Vn�W��L�d,� &���!,�r��)8�s;�[��w{���,=��`3��Ӛu.�����qY����|h[���;���ABd��rKKK/���ާ�QڰB �8{{�� '������E��9::�%ےFX���:lW �^Q�V5���:���z�f�{c�ݥ��� ]lV�tW�S�VU�z�a��+�2��>��R��!j��Ƈ��S8��8�!�!WA��q;0yÁ��O#�r6�rؔ5�J�FMp,��+2��?HU5�j������w�$N��_�6��a�SA�x��@�2��r��߻"��D��q�����l�ڣ�ssQ�o�`2p���sBb����3\d�� J�l%��_�������o�$�!���_'m��gcc��':E麎X��A�zW�(� ���'�I�j�ɂ��lf��Z���I�æ �����qMD!��u��:\>&�ŵ������.�N!�o)J��9�,��)��I�? x�O��B&�1A�]ͥ���Z�(tT�f���W��ǰ5�(�F w���҅��7�|�Y�&9���A�����usr~7��A�ޮ���&�+�g�d�y+NC�V$@�Z�T�ڮUeէ"�e}| ��nw��^�Z����Z�hc�G���P�� �KV���&�z2���,����\�!����>��ak��#�-��"� �?�?���-4�̧jwy����7�N!Î��ӱGi��`����]^����#� �["s�H�|�Na���ēR���q���� ����R˕:�� �ƿXi��?ѥ��c�ά�g�@����7���_W ɯd�����g��6a�"�g� ��R+�q MC����%��N����Tp��ƞ$J��e�[���;t�:B�<6������n�,���<2�y�� /���:��4��s���)�f�h�C�Tlaܬu����A�sݛb���;�i�QkS�v6�-�"Do���x����Fb�=��х�(��;�Ֆ|���ng�r�{�'6�||�㤪�����e�r"����fW�b{E�V�f���25��������Y1]� �?��� ]L���O�|Jn��kDl"V|pE�߇T�G�^�z;���}j�[��pHoq�C-B.��젝=5y����]6��u�ooWo{��~��+� ���Պ�3���|�@[�n��(�Ň��扱���ټ�o��o� ��)S���A�(�(�D7�(��L4:�S,ˈ�~yhR�֙��(�<��i��15���ҩ�嘋�R��dw<����w(g� E��eiX��$��K�Ή(�?�蒨�nk���4�a�E.���z7�w���BH���Es�;�<�Z��^2x�n\G�M�-�� ��+ �W���9OS[�ԟ| ���Pb&�o�cS�L�ښ#*���(B(Gh�jv\�AK��c�Q�90�;4&�H�6$�9j-׳�l �l|�z�o� ���UJ�^q4�ŖY�t��5�?�����xmj�T�j]��<���6��i�@Yx�S._�6+>�",C*�#~/E�"���5>l���!���y���s�����>#��������6��8�v��/���㲳���nWF�4�t���f�2[hJT =X�3s��o�����}=<�/|��vr�]i[{��jIB��͵+�QkEA[=ߡ�A���5�"IkT�ѱq�q��m�1G]��;D����d��i�/�:�� eq;�n�hP�u�~��ة+�-����+�xh�Qɶhgȇ��mJ��T��E��RKW�& 6�2t;m�벜��c*��mj@�- �*����ڂѸVk֛ѱ_ϵu�̭4��ft�`�y�F& (�Kף@���� JE��m+(�3v����cZ1_iI�$)`�.ǰ�;�m�!˼�� ��T��k�k'�ۅ)��%�c���L&��mn��y�y�{�1 !�e)��{=y��]��*;�^����?uxikAp�7X�ӳ�𿤠���҇���J���uhg��;�Q�MĊ�ː����KQ���w�K����)�G�G�����}>1�a����ٽ��D-x��>�Z?��,�B&�\�ʍ�Tr�?�0����B���ŕȕ-b�nKTX��}�o�h�S�>%L�ܮ��E�{ik|�CĤ�Ma7e��H�����?�f$7�Ԟ Õmg>�L����M~X�]�: a���NPK����ǐ ir�v����������܊�B�[ �I�V>J�b���J����^A������K�ޭfw�[�9���"��&)- @i����b��N�7KR�jv��@�xT�����,�u빝=c�us{iKlzq��S;�9nB�K��7�#�I���T�P.��%�_�J�ì{���`'�:)�@n�������Ar�|�z �1e�QLǂ� ZS&���6�76B,��X�h����t!0;�*�UՇ�spP�����G= ��u���w��p��g���X��l�Z������UP��z��\� r��U��= |�>,�b��vaee��ׯ#(uh�x�OW2��d�LN�!��_y:�MĊ��������KQ'q�=4>l���!�ŻN�C%B��!�@�2x"�`���)��.���K)�!x)vކ��|�~��^���ޘ����v�q�qn��fܸI=ݎ�����=� h���w��I��\�!�����9M���Ƈ��S8��8�!�!��ؘ�~{U豧�+.�!x)vbК��)��������҇y���ي�;��87��;�{�<���� )���fY�����y6+>�"��C*�'~E�s����5z������ L�wl��]���\�!������Zr!n��0�<�?~��������bxسm�����#���t���䘘[������L�F�$��xco?|���4�4���ػ��|���iq~�9��s$>� 3��S܉��t~/~XEϻ�;����m�H�����������ۣ�VV�=�s�����r…(�엕�� ���҇� `�ǣ�~��q ��j5���b �&P���B��'��G�������M�،����4��jqo�r�'ɵ"H�׎`��+�2��>�S42�^�C.ĵ\r�t��G����<���أ��O�����ɔ':���l�(W��L��z�6�<��b���d�&��#�bRP�@�+f���d���Þ\���Hn��c��ͥ���;����� ~��K$ܠ����T�����ɬ����r5�c�yw⋿��d�;�� �U��s�n9����L�æ6[�o(.<�w��C��_^�'�7����|��\��\�!������Zr!΅q�<�?E1�G���������?���Ѱ��>�&l����?~J�� �c"�l�}���U��������o�~m��6 #�l6��/c�'��,H�n�&�VI�X�>���7>��iyyi!�?=�H<��S�K˟?Y�T��ʽM�@�>����ߒe*�F`�������������#-4�G��W��S�b��o�?d�쬯�չ^���b�j� ��=<.k�_Sd� ʙ�߿�w�����iX�nw�"#�o�V*u��I�]N�Ri�y,�s~�XMfꬓ�L�h��L����S�Ʀ��Q݇�:��!����&��9^$F^��Oz��G�kw=kxay������>��Z՜.��ttk�u����C漓�{�Ё��Kk {����&f���zQ�-z]lV�tW�S�VU�z�a��+�2��>�S42�^�C.��.��G� �h������q��p$tT�v��O^}�w+g�*�MY��j��B]���� U���N�g�sʕæ�t��?%# ��jM$�b�a�P��:bmM�]�������?���h���\�_�[�_,�U� ���ơ��N!�o)J��9�,�� Zl|Z9�T=l�j�X��1��,�u��|����$Q�+�N��G =�jMS]j�V�U������)]Q=x"�[�p��ȭv�+22�6j�Ҝr:�P�]Ns5�8S�L,c�n��KUO�,'U�����:�AW9p�1�� ��I��_�V��2��xM0���~�QR x��:��u��V|66V�} ֪t���jFs>����{��.�g���_ �d��g���vI�vfKp�c��\w� �Z=L�]ybq?y�&�MĊ�ː����N��Lz-�ǖ�(��d2�Hdnn�a�3`��� dر#�t�,���B@���X��4 Lf��Ή��p(�R,V��i!����`C���:�B����r��"o�B��sw ;�� �������f�Ю�� A��O��yl~ѫE������ϧ�W?���������7��6_�8��b=����N�c�+�΄�U�i�OJ��ԡe*�0nֺ�r���ѯUSmW*�u8�:�����jh���?1�h�W�D����p�Ƭ)�x�Q��+�B ��5�|H>ސ���0���{�r�}�� ��bY3L/�4Кٝt�����zL �.��t*u9��T�;'����Dc3��1'힚 ��TJ-�Ḑ�*Wc��+��>��>�S42�^�C.�۞xܧ�,�Q��i����}ƈ:��űws��f<������B�?T3��Ug�o?��j�]=���RQ$ X�P�eYI�OT����:�(���#:�u� .h���z7�w��E�d|�����>=��F9񞿩� D����[�l*�7��<^�Z/�.ޖJ����WX{��w����?�2Y���L�#�g�񪰺��ټ�o��o� �����\2{�n�ʄ A�\l��J�Oa����ާܸ�z伎X<�{�M{X�gDa�?y������bSc� ����v�\lba/���L:��6��n����N���~7�&b�W�eHE}�G�hd&��\��f;��G��}E��t���M�ݗ�i �R��ǡ�Z���n�mvyyE�.�Co�%�M�H�{�i�������"�'2�Ň��gF�R����-�������F��m&�2;�^K��P�m���)@4�ss��ݖ���N�u�,�s�<9z���B����7ʉ��-EB �R�xKz/����x�M�{���JEs���JU=��V��IR��1{��6�}v�B�50�8�3�}Ȩ�jRF����ᯯg�H�5a���QG�i���d)D1|��5�;��̟���Z; `Х`�#Ü���Ƀ� W���*��K�����|��ښ[�ZH~K�2��ُ!��N�x���Rj��>�o��X�Q��+��@;����x(�MĊ�ː����N��Lz-�?Z���V�G��}� �Y��ۏ�N>uR������ ��i�[;�I5���B����ŕ�W׳]EH��� ����nD!���?.G��I*��[����!��̼�j��d+c#�������Rz�K��/�z���9n��%����5>�!b�Ŧ��**�8�+$��}J�t�]=���mWI\Ђ��OEH��ě�� �b5��&�v�P.��%��]���QN��o+� ǝ����������񝖀/w�]�Q[�>�nW*��q)��.@n�������Ar�|��S�S�xb�3��N��"q�Q��>,�K���9^2�zI+�]���� �J�rj� \_F�^�W^��s�Ġ�O�������.�\��,���A+++��I����J&S�̞� �"��Ww~�&b�W��}HE}�G�hd&��\�w���[�YΣ�sd\�ԕ�������^>�o�s���ӫۊ(���@�G��P։woL���0e����A��!�-7nRO�bY]~��3ms��.���6+>�",C*�#>:E#3�8�B��y0�<�? �1y���Py��7F��,M��������>�{Ĭ��4��$ܛ���0�!�C$����ЌلIRuD��IWD�� ��\��!���љ�Jr!���y4w�� ��v���ϖ7����:"TY��tx9y&0���GZu2�7����[L�&��61?���].2 ��g��6 �73��mA4؝��C��q��R:���a������'}<������I��^�ˉ,�h<��Y�[���~��s��'��V�g磏��p���9UQn��1y7k���Y����ɷu6��4���'Z�6ND@fO41��M������Gqh�m���'|��V���b^�R�O�Ew⋿����fYƌM�v��'�&��w�ML�����}�hX�m�,)��t�t���&���_[�'�0n�:h�Uas�|Ѹ����lj\h�͔��Ul�}=z��un�H���{�S�z�5����H�'ޅ݅��t���i��'G����E�|ф��w-٦�ѷ3����*F�!���N:��ǡk�C�g)oW�Ks����f�e�4��;;k�6�/�C�_�ͻ�t7(�d�Y�[��`�F#�X��ɠ�����Y��Srj[8��c0��A;���,H�n��́$�< p1��~��}���Io�p���^)�^X�uU��Oҩ|K3����g#!'�wʙ����qZ��;׵�� D�Q�燭*�@ na�Zgff�����v�ru�۷o���n���o߾o� w G��2&P��\*]���M��*�R�Xcl6��L\N �I�.i���������N!�o)�֪55��5�f�lR�Ԕ5M��j��<�������#����E���Ҭ����q�Z�TMmת��������u����7dM����������OĜ��A��7�DŽ7�{��>2��<}� ��@E麎X��a�u]��+�w��ӄ��l��O����'K���_k������e*6f��׏7�\�k�b���u��C&��D"sss 3�~�@ g(�R,n�Է��5UPu]�4U�5f�C�Tlaܬu����A��B�<6������n�ph�͉�/�ߵ+�����O9˚az�������c�{ov�_���P���S����웞�M���^v�������|�ro՝�ӱGi��P��I���~�ڙ_��=�ӎ o���6_�8��b=��!\�G;9�0z4MC����%�Ҵ˘��|��y���rD"Va{K�r#�I<�O��R+�q-�Z!�RtPj�Rg��A�z)s5��w�k�M���6�@ <��~�V>�'�B&�3����yI��n���q�� ؜�����ь Y�tС��@,�=�=,�3��}|9y�����wW�e.���EVWg?���w��C��p�����Y]��:|��ʫ�;�4`5���92�v�#�B �޸|l �l|��o������#���E��eiX����]�������^�.'k6/�:�۱��%��16�̞.�>�3+��o_����D��X�@ ���G+C�$)p����i�����`bn�7���9������3�����Y���'YMv��eX��1�G�������8ru�o��}t;m��˛(�uyz��n���3����%W�������r����M�H�{�i���>���aLқG�2���V�/���A!İ,���©��@�J� �;��xB>T.�}�D���P��M[�����#]ׄ��kGY�~�����/�l��F��m&�2;�^K��2Pn��@ ^����9��l����I+��v� %���4�x�1!U�f���ѥ����ދ+���y�9!�����Y�t�G�e�����܇ R�����Z�dk������B��c���u>�L��40����3���ݞ���vvk�};��m�3˹��?g຋B&�\�ʍ�Tr�?�0�'��M:GkdR���)�z��b��6qp����i� ǝ�L�������1v:�w]#����@xP�Rz�K��/�z���9>�S.��%�� A�|�v���?3�*5˩��b~/m��~��t�)��zh �X,�� �@ ����4��<3��ɂ @Y'޽1�x�0��}s=şۥ'��� �d���њ���ԇO�m�+���?� �/&��^��<������@ �@�~�@ �@ �?�@ �A�?j�2��*]IEND�B`�btop-1.3.0/Img/normal.png000066400000000000000000005011171454653170500152100ustar00rootroot00000000000000�PNG  IHDR��t sBIT��O�tEXtSoftwaremate-screenshotȖ�J IDATx���w\��璐 Cd� �P,P\������ nQ�ڡ�vj�*�UT8�D�� d/2 d��m��a>�O��rO�rO����j�dZh4�ښ�~��c^f��3p[z�������ڝ�A������|Bz���s�)�_������S3�7OV������V>��?���bovq�lL��a1��d�L��}��Fm��n�"�|j����B����!��󈽛�m��>�~��F�e��� _�/I�a�.3�J�xy����_ۏeK<[�=��� ����N�:B�s �(�T�p�۪[�/�Ϟy"�Q��>s"�>��m ���v5>-#������3m������v���lӎ�iEB�m�HV7B���u#�^۹�t���΃ �k���������ŀ��|�+3$�U$��O5���)�t�4ڠo �չ�n���L��γz����(7.>��/��w�l!�Jd�>��/m�&��H�l�:8���??��OkR�>} �Z�n5�I333��{�u!� /���\�:B�s �(�T�x�<�0-0� �cZ���r���gU���z�����nj�:�O���fZA%�(@��$B ��,�z����[�C��HGw�"Ӫ��]^����>�ܼML����RP��s���ojP\��bd�AK�^L(;s*��mm��A��h�����mQ�M� _�t��@�?a�!�i�-�^0g���4.x�>�K����ꩤ���R���j��b�JUr�!��i~mƢ� ���:V��K���{$�T)��)7(ލ {d<�/�}f}=ZC�B��e��u5+��������S�u�d�v�v��,�ov=�+���L&ۻv3�b�A�����E�I�dGO�N�c�N��'ٙT@$�,)b}��md2H$R ��7w�[��<��J�Л��3?1P���]��X(��� ����mz�!�iԞ)��άt��{z��ߢ�9��:��[�P$�v����~��B���u�!�.jO�TF�v������'�~�{�{�T<(�(&de��1�x.�Ue]߽`��x���4�c���Y��>�DE��E���*a���gw%I��ma�b�`��s�z%���u}8^U�����&04(f_���ʎ�_�} � "�����P���a�����@�<�K(��]��aM����kْy"�Ч��Y���9��%'�� ��>��\�c�3���U���������@!���d��A׉�J�P��ީ��9�~�B��T�*ʿ�V���R�k��\���l�.����'�t�����r�������s��9YKG�g�^�.��㞾 �W?�Z��]����A!O���?dѺ�.0x񂾴c��ŗ��L�f����+@n��r())�0�m™݇X6�������{ �׭��k��QZ��O ��T�'B5;}}}�����[Wx�QG�н�7̚de���9n��/�G�z3��w�RO����p|$GG�/��!�IwX��̄��)�^r�Y��mD�OF�I���Se���i�b��GOx}���/�@,������Qɭxr�Ǩ~���ښ�2n�&��i���i�׮'s�� �rCR=��w��v��~a˪�@�w����ë�ހ�Ĺ�C�'���8} e�� �F��O/���_>��kY��<B��&�X(<����1�֏��m �>����O��f�4�������dT��<�;+@wW���E����ς�։�B�3 ��@Ω�?���$I8wv��qK�X��^��ݶt�M�܆͢�[A�S��P:������ ^YV��{�\\H�u�c�]{4r�f�� B��P�� O�!�𙜬�ɿ��?�B!�j���[��� �m�tD�B!�P���!�B!E5���B!����@!�B5�!�B�d�2aμI}:|�Xz�!�B꡽ߺ�6�mB��׾���x��{v��^Ä�_��]nPnw�v��F�Kz��������s����oO�Jx�*3���[Fv���S�%�9�����g���Ƅ-t��}���o�����w�-�W�B!�P���/�[��Rj�v~Ϟ�Ջt��;�ٜ�K�]�G"��2��u��vg���z?R�ɟO�zM�� ���}JDq3o���]�ü�����\��Y�iV�������>��LY�Z�\\-��w����b �}�6*��<��@��걗��֜�n��g��as�~@!��t�h߾=��$��m����|��~��kB��@�^#ƌa�y���};/��]s�Dty�Y^�;u�P,���u�3�t�[?��Q'Cͪ79�\ ���}<��?\e潘L��p�sl�,�?B�?������E�G[�������Iv !I��:Td܉�yoImk�dԾ_����s��~Ϭ��o$�H�\nQQ�LVoyS ��B�O��АJ��z�J$5�R�����_R�s����׷Vٙ��� }���=�O�y���H$���v��߽�� ���� ̧�vwC������n% ?mQ�?mdxڏÞlq�G�HQs�@s��ۿO1?�=|�w� �����2==}I�Ø4�>�W�%C��׽~Z�NX{���S��ihh����&x�B!�>&��������C��CF:�ZQt{ �4�W��㷳d`�� p7!AR瘝g���n�7 |�h��ÚY�������O���L����� �I=@p��x���<��~1k�j��ÇiA��Ǚ`��dB w�iG�da-�#��Ͳ��&n�ſ�3�OK�"�R��kI����=hy篕;��� �W�D�͕�V�HTPPЩS'�B!�Z2�,���oIH��/y/���O��Pmޤ��4�=㗥A]�~=`ц���g�o�|���i��������9�%A���_D�d�۰�x�߂� �\���#g����~�y[l�݉y\jm_u�j�������~�b� ߯�H��X��s���A��ʘ0�Y� 9=���D"�"��:�������E}�B!�j;;;'�(޲R��H]�]n�r����@�B!����~@!�B) ��B!����~@!�j��b}}�:�&R�mot�X? �B!���B!�BHQX? �B����o�OD_��9�Ǯ�}�H_]�]���GCz� ���u��w�����c�߼���gV|5� �0���� g~ tg�:��#�y,�:x@�K��_��׽&�}��ѡ�9�c��})�t����5O��Zx/����+W/����q��J��ϏC!�R��� ��Rc"/Wv�3y){��2�����Ǵ��_m |9j5W�uR���t5�F��%`����2%��c�9��C��^�L�N�c`�S/���t��d� �F��x��L���6i�O���c6���}杼����nDeF����������ϔyZg�9�35t���������[b~c������4%q|X�c��B!�"6.�L(�ػ5��Tt;��٭'�"�Y��c/ ��up|�.�X�uR� ��4�F���2P�`S뇪J�X�'��d� ����R2���2�R)��{|�y�(t�OO�0�ʐ;,��?�<�Ʊ]�kg�sN��d��n�U7��խ�Nͭ��f���P���&���Ϝ��`���)>4�!�B*�b2 ����7ΉgT��{m�H���ؚ������[�V�'H��k+��T�F$m�r̫(*�rrHp����=W��kK�a�w�j��h�kH5�����K���]���.�`��fV��d�� ��`�X��&�Ņ�=U)58���B!� �8�)))�e k�oo�������DŹ�7F׀1����e����;�d�P�}��Ikc̦N��k�c�+T��Rh�k:IB���� �����{���s�_��̵ķ��W��E�����Ǔ����K"�I��Y�B��@���@SP�f���P����<�*���Z���ɣe�ã�ɷ�o�7�OY��#:�٨��3YQa��sDń� ��]&*Eq�q�ʽ�u%�NX&����L(��=����!�d�^D͈����=tI&U����!�BHE8.��0���Ʒ�.�� ��SY����ˑ���X�,���G(++kxݨ�L�I�5�e2�� L�5;Gd� �����G�&O8���ˣ+bզ� C ��5�]}��y>�!�B*����������-=L�+T�&ܽ���ef��W����$L���J�r�$��_�L&���}�D&���o��8�����_+'[���*H�Nٞ��|)t$H�P(A">��֡h׵���i�����| ��M��=��I�$�N7e=L��"<}��dĄ��#�ŦCG��&F)7A��B!�^��A2���)d^����!���*�%��O��\��ň��7)B����������y� �u�i^��v��EKVҥ좌�S� ����Q���ώ(���`�~�I�r_]�����{;�=ν�&�ޛ��"�}g�|Ñ�dnVܑMG����:�������E5>m�B!� ;;���Ug���i��ƒ�{=��b��UE���7� �r��j��%�B!��a8��ދA�]h�����!�B�^P;$�1�&qK$T#:M*█e-l ���V�B!�B��TPȯ~����/h�����K!�B!Ea��B!�R�!�B!E��!�B*��8)`�(��n^╰=aw��@�z� Z6��P�wlgpdZ���To�N�ˇ�ٱH��?OD�Α�ߺ{���������U�`#���NY��2'��5�nsOtԔԼ'8�4��nZ?��H�u� �� e@��^�b���!����dr�2����B!ax-ݱ`��~��˹�/'oZ1L����ˌ}�ƌ 8&�j�L[���$��kF2b � �6U�P{�z��xm��]/��p�ЙL���T����l ��N�Eڑ.��r��.��J�)�.~=fL�� ������{����L\͘�i��r��B!�"6.�L(�޻5�����٭'zyyf�}��� ^��㗥��V��S�Q;w��L:WX%W&��eء$6�@F&S�dH�@n��o�Ԯ4Ug�r�%6�gS�n���[���[Q������ @up�K�>�\Z%`��9}W���H��q�B!�����L��r6@���s��E��l/{]"�1}��ס����Pu�ꋩ�)&��8�s����(�б����c#��m9�U^99$���݁Ǟ��Ϩ֖��� *�pt�1�ðq[�L(��>;���w�����+W�/��:M����t���I+�w�Ĵ�~�(zz�n��jTķ�� ��)ʺ����A�Y�DP%�`��B!�h�h ��B!�L��4�*��h�H�N_��>2�I�N��%��ϳ�f֐��l�w�晬��h�"�bBք?�:W�P�mܬr/~] P�����58���fpD/"�fD��.��}�5A"ɤ�UOx�B!��Y��k{k�:Ԇp8\&� `<28"�h�;�SRBi׮�@3lgX\\�����/���,�J��f���6?����h�԰���nj󵺁������T���A�\���}�0tF;����� ���;�á1t4�_�/�^���fG!�B*Fֲ�1fe��:Q�I����� \Uu������&�e�[�WO���ޟ/�\' &�\���<՚03;u���Yֹ �nf�^G�g�m>_  �D$ E@���������W�"��x�C1����/�|���߼�r��D�����t<}��dĄ��#�ŦCG��&F)W��I!�RLŋ�K^�{W�j�=A$�}=��B�<��] 7���%h��gډr�����T�����>�������Ðg%m��9�|ȹ�����+��T�f�.���tx�[�.�&\[�]�l���mߙ-�pd�!��wdӑd�Nk�N��o��s���7B!Ԇь��������Wu*H���٥����LO�>UI�b�������/ܼ�~ײ�e�W_au���uשx����v�;�jiZ�����^��XfkU�{=�E�������@!�Ca�a�i�v�B�M��v������C{�Xk�mI����p�5bt��뎮Z������څ � ���B)��0У|�k>�&A�� �?�,C�/� �NK!h�F����I޵k3u��. �S�`ã��^wt�"ьi4��["��iR�D,k�`k����*vB!��ޔ��5H�c�y��-T >l������j��r��]���B~uʂ"�����/!�B!���B!�BHQX? �B��OX�w�����@!U��B!�P���c�>�-�Rթ��C�qR��Q.� (ܼ�+a{��I��s�|7.k������Q�Yz��Ɖ��gxq���6�u�|'�ח���c�4��#����T;eN��k@���:p���1��e�k�$�a=v���F¬?l�^(������� )������'�+���BH1���s Hl���@m�k��I�1��+�������=~�y-���'�RS��T�_�Qx{z�����f^c:^[2�لs#\�wY t&S��U�a#�{̦p ޾4��DO�v#*�0 t��$mV.(}��Ӻ8k�Y�������������˦�Ȑ� _���)���R��/!�B����_W�V��YDm���3 ��n ;�w�_�@wv�I�������xIhb�FM$�L!�I ���G�=S��T��R����MI|[�� ���}�&����n�����խ�Nͭ�L������:8�%D�L.���Ϝ����d���x�!�R �6�D��Sӎ��:�V��L��r6@���s��E��/@{Wg׆����B*�g�_  �D$ E@�����u(�um���E����F�b._0S��C�no�2ɦ�MYӋ��.x�$uɈ ]G��M����M�*Qj|< "�B��$�����j�ڞ�����_M!� D��.��1{|���0�E/�3N������[�솬X�M; Qqvꞈ'���@΍����gG�^�}P��m�}ue+c�O^���8�Қ�zo�΋����� G���YqG6IV�g�:�������E5>m�B� �4���F�޿��*��%��cgg���ҢC0=}=����f���\�{�T�+7XK��-� �����b� 6q���Z��+m,9��C+,��ZU�^}#j�`k ����F�)v!��b4t]��xXRU�BA�q�>�ހ*?H��}Wn������]��� 6q���Z������څ � ���B)���oO'�*^��&��� �!�q�29A�6K���r�����6�c�x��&�S��� i��<���"ssSU����@F&S�dH�@n��o�Ԯ4Ug�r�%6�gS�n���[���[Q������ @up�K�>�\Z%`��9}W���H����B!����S��?~[��kU��� � PP�(<�qN<���,|ƪ�� ���Ayr�*sl���v|!��ʋ�N��t&7?6"iۖc^EQᕓC��?�x�:��*am�1��ΠR�u�V]&&X�$b~ƛ��I��$l6��ʘ�̴0a��,K�����,.�J���~@!�#⼈���U�H}�8�)��/�ƽ�� 8��eٙ-�2/��}k��$ Q-\�m�3��g��;��]?�8|��%�ua�f���$�NZ8��%�E�� �Dћ��w[�W�28 �}4|PPX�LQ֍7> �Ϊ$�* (��BH1��ǃ2U�j�4 � 4e�%���f���Q߆�M}�O-l"qUqi���<�Ϩ@٨��3YQa��sDń� �Ui� ��۸Y�^���Μ+���[s�p~�/��4��^D͈��]&{��$�L�\���? �B�Ѳ��{�_  �D$ E@���������W�"��x�C1����/�|���߼�r��D����n�<}��dĄ��#�ŦCG��&F�(5>�!��b� [�$�T �~�u� Uv�0B�^��A2���)d^����!��`@������U�����0K5W�xk�ݐ+�i�!*�N���|ȹ�����+����ѥ���{k�%܄�k���-A�"�}g�|Ñ�dnVܑMG�e�5������^��}�PT��F!�V��������U��Zд�M7��[���C�fgg���ҢC��-���%��X:�IJ^�s�ֺ��n�_Po�������ч��/��e�g_AҾ�l>� �]�ܠ����g�Ҵ^ic�ɽZa��֪"�z�Q�[���5���B�/F�.^�;�RU�����9��ۊ��P�F��34��$���_��j{ˡ��Xk�ơ�P{*Эk� �]�ܠ�����ji6��bPjZ(�.��B}�( �C�+��+w��sEPu�4 ��'�]��\ �T*E&��oޛjGд�� �Ǔ�,C�/⊵Y: )��+��ܠ�u� *�N�A�y����(͘F���%��&qKIJ ��\P�b!�P��x%sX? ��Ӷ���ggLSM�ύ��û������ێ����o�OD_��9�Ǯ�}�H�ݿ����˱W��;�K� �@���� ���h�<&��v��Mk~�5ĝ���m��]8�k�;���v��"��C�~I���>�����!��99:����c��})�t����5?�E��^���sW�^<���쵕��Rcő�����ϩmb��MIԑw��s�uu�5'��� Yp�G����r���������{ш�ç��p�8� ?�)��y����|u������ ���=�6�ې��kL�kKF�z9t�+��d���1�{̦p ޾4��DO�ߍО�/�f�Yb� @�3e��ůnj z�u��=���[b~o�t?��+�36M�Un`<BH�I*x�J�T�.E���Ajl�ϙ�����v���lo��-�qqfBa�ޭa����+��n=�@d�=t�Rv�DT�pCU�6* �����KI�=ٱ���.�%����Y;}���L���$�J���#pߞ�]������)��o_;���4M$�w�:0+����[���[Q������ @up�K�>�\Z%`��9}W���H����?@�� �L_���4We.�M���K#��>�]Ww�U���y� �.g��8g��C��7G>� 4X]�mx)ie��SmT��|��U�~���_ �Z�V�y���{˱FQW+'��(�>�'��3����ǰ�;�J��>����T����ܤ!��z�[U�U�`��fV�tz' 6� �b� ��O$���}>�!��J����r]�c�����y���v�j�{^���@SP�_R!��[�7ZC�b��훈o�^-Uuvj�����.�5;8��:�8�XF6�h�LVTX����E1!k���->w7�܋_Wԝs%���Ix&�d��_zQ�r�D/"�fD�{��{�7�$�*W=��%�RcC���3�^ ���^hzP���ܖ�l��q�-���ٌ�7S�#��5�X�K�2��b� ��8�Nbt�?�g;���Y������;�8�I���u@&�g'���u��皝�^� ���ֿ�� S�^��������:��S}2�s%�������d����*�.�Cc�hT� �W_80N�����!���̢K/S] ���,4=��@�HIn�O�E͸� �߱�/�f�7���!M�qǒ�����d���y`��j��ū�ۂ���D������uH@�4���9/7�ށ��I��\��j�I�jfo��Mi>p��,X�g2HI" �" H����:������~���-�ވ�$�9t?O��b�=�Q)Z��MYK���.x�$�iĄ��t�rĨ>�ħ%J�O����;�ܡ�&l B�O� �H �He��T|�F�$��'ۢf\g�ޱ�'�f�7��M<���`hx����.%%�]C���}{u�'� �]=r�f��b5z����PY����w�=��o ��.+6N���p[u�׭�ӍG�;ͮ��%�gϜ�~w�4��ȝ�s�Jcw��R�Yb4�����\�$�������[kR2��;>i��,��ekH�fŝػ+�������A�@�Pj���:ۧ=��B��EӲ��v��2[���=b�)�Q��u�ȯ������������̪eI���d^�<-��T�{��9�ْ��v�Z'������l�֜����C�֮]�ׯ_���/H�~��?�8q��,� �e)��D���#�N����X���Y�C|�2��nP�6�wRͻ�h�x�ש�һ7�������R�>8q�Ƒ�"<{ή{����z%�؟ǣ�f��[����n.��e��u��(���/m�`#H�N�LϬ�~J���2�H�z]�н���;"����_�x�����Y��/!���������Z�l�� �Ҟ ��5 � [m�����i�m;����u�w�6����f\�ji6��bPjZ(�.p�B���c�E�8���`2��"�X[�ɐU�2� 1�:����i^d�ɐUq29A�v���h�x�שZ$�1�&qK$T#:M*█e-l ����B!�Ч� ��M���/!�B!���B!�BHQ��K!�n�<{u���\!��>�L��s�����7���)1����&��mj%���B�-�������V ��{����@�֡z��`� ʥ�8����WbcN��k~�:�H������+A_��)���i��������Z6jL a>|��s����Ruv�G�/�X�1t�p�67c��5��o�Au# ����s:|u�G�Q-���p�ܕ�O���8{me����BH͐��:$vi)[Ba�鱤�\�PGO�%���R� 1�:��޻?���Ķ��Ԙ�{��|��b��1~��꧘����n��K��vW%'��B���-bB�c^�l�N�m�p¡R���Z;g>�p����b�3�RG��T�b�a�Uk�JZ�����\���&���F�~�^�2+�������~z`�U�Ϯ7�m>�!1����^,�Z�^������fB���<��zQR�c A,�ۅ���6�[hr�wA���r�-�ED�E�uw�Z'������T�i�@�;��� ���3 #�n {&�N.tv�I>M@w�3�ӕ�OY����/R�sG��ą�U2��� �� LAF&S�dH�@n����i��E?=||u������l�5�L[W�*;5������� @up�K�^�\*H?s��iNF�Z���8 !�Ԙ��[.L��FS�W/4=��@�HIn�O�E͸� �� �l�?qÛ���āw,ɥ�?� �.g��8g��C���_-��,����B�ubjk���'Μ{f������I��I��[`u�rrH����ժx���cX��}�u� V]&& �����={t#@�M7�2��;Y���l�%�qk:-� �������RkU�)���DP���r_P&j���5"%�-?�5�:[4(Ƕ�<��O��f*~�4q��K��^ ���%��p���.+<:�*��FA�68:��aظ��&�n�K��v������w��u�ٯ�$ ��V��b�i�2 Q�&�����ը �o 5S�u�Ǎ����*��J���B!�>�����t{���Љ���h�h ��9�ˏ���0�ǧ"}���;��?4I;�i'- �-E��V�Z}�٨��3YQᏜ��p�.� Y����\Cqw��C|�;�@Ds<���P��k�0�<��_��Ly� Dž���{[$�LZ[=���B��3:f�a�ZJt�<�]�Ft��}λ�V[����b� ��8�N����M'�^�}���%=5���}dVGUg��8|���k�TL�5;G�������G�����wS�i9�:��S}2�s%������8�o'���z�s8CG����q�_mvB����YX��&i(���ºWEu�Ft��}λ�8�6�����y�=}WU��w��ᣇ�┫c��V�����03;u���Yֹ �nf�^G�g�m>_  �D$ E@���������W�b�� _��Xs��yy�É& y�=eD��I��>�L�Շ�U���8 !��A"�@&��>�T^�Ft��}λ��lo�ɤ�>�b�<=p�o�N�d^����B�,�3�fA���b�m��8+��_�;~HG� ��U�;0�V�*�l�:�4t�ms�b S�.�&� z��Y�?Z�!�gz���Yq'��xZ��-E�/a��BjL�c��>U�����WA�� �}�ջ�s�uu�5���g͋���٧*i_l��0��¤}�Y��`_іu��4��{So_�y��āh��z�W�U��$%��9���� ��+m,9��C+,��ZU�^}#j�`k��? �P�e��yHC�j�n��kw����n;j�4m���S�n]�P7�x˺�Z���C{�Xk6} ������&-�ꅏ�� ������څ � ���Bj��`2��"��Q�9���sCf�0��������ێ��\ 3X ��_�k3u2~W(� e����Eд�� �Ǔ4q �L�Rdb�H�vAROK�"ьi4��["��iR�D,k�`k��B!�Z�OP? �h8 !�B!Ԝ�~@!�B) ���|�9;�Ŏ���n><�{�p�!�>cX? ���K��n���9M�y� ������ pס��8����WbcN��k~#�Xz��?�_��$՝�C�q�֭��u����0�0���� g~ tg}�{�E�/�X�1t���$=��c�{/L2�����:�a=v��їbN���o\�<�������r�⩟�g���j�cQ!��U��S˯�ʹ��C]pS��!8l�]�� �k��I�1��+�������=~�y��y��߳T�^���[O�����d��c7���q��5��%#�M87���{��@g2��Pթ*���c6�S���y'� z�QY�Q��%&i�r�@�3e���Yc��L ��o���&�떘�X6}E��l���7MI����x�!�>_"6;?�S)Uu�B*��+� ��,}])�]����ř ��{��޻�T�;��$�:��F��H?�YLQ�PT��0�غS���L���$�J���#pߞ�]��"����)��o_;���4M$�w�:0+����[���[Q������ @up�K�>�\Z%`��9}W���H���~@!��rXu.`�$��:��s���x�jXL&�� Px~�9��@��bbb.�9�n� �h�$�r���Uom�ldש���.��F$��rl�Q����!�#����@ՙ*����V~g_��mDS_C���u�knҐ�Q=쭪�*U��t3+c:��� ��`�X��qײ��oN)58�_B!�#⼈���@eNN|\U�H�)��D��M��� ��@Ҳ�]�mŨ�s# ��ud IDAT'M�g� �֯�Tr���) �0v��Xzgߵ���\u�D��&���t���I+�� AqӕN���2����~�̳��T�����AAaQ3EY7~��� �:���$��B!�TfFeV/�\����j�Am�������,���S\P]I@��+/&v� ��C���\:v�� *M*�����o!�Q�E�g��¢��� (� Y�HMni��۸Y�^����+��NN�3� ���ҋz��� z4#�k����I$�T�� �/!�B�Ѳ��{�\o������`���#�#"�������=��m� ���)�a6إ��XX%`0�*�l`z��9������l��?�05쵿���|�n�a�ca9>�' cP?W��a�) ~�HP[Hޫ��p84��F� �}����+5���(�BH�4��,t�4T�jC���y�=}WU��w��ᣇ��rm���\.g'p�l�X&_y��<՛F�1��J���Gu���.�� ���,���K�#A���B��ڔiE����U�Hs<���P��k�o��w���MR&�t�)�azq=�O��.1����t���Q}��Q%J���B!�v¶!I��~�½�'��d���WSȼ��C��A��Ὦ+V�v�MP�|=d���}D ){��o�U��� ^=�t"��|ȹ�����+��� M���le ��˽��^Z�_U_˼�mߙ-�pd�!��wdӑ��.U�G������}�PT��F!��0M��t�߹u�Oթ 5fgg���ҢC�<����O�w����} ������+�G�W-M�6�����l�*r����H�5�{|~P#��!��b�z����X�oi��NӦ��P;*hZ�,���G�W- ����^ J�B �^@!�CPu�4 ���S�P�}��dK�!�,⊵�L����+���P���U�D3��$"n��jD�IE���E���"��~@!��t>A��P���%�B!�Ps��!�B!�(�B!�Ѝ',�;�UK�y ��*����!�� Q���c�>�-�Rթ��C�qR��Q.� (ܼ�+a{��IA�à�Us��R�����k{d�@�y�5M�~���ZZ�E���?���/�0�u�|'�ח���c�:�F"����T;eN��k.���)�yOp".,� hX�ݴ~���0������j�x�,/;C '+."d��� e���!��bx�[�F�:��5Pk��Z�c� ����s�_N޴b�>���7����8|� -�7{K�y��N^�z�N��)lg���vZ`�5��%#w�:•@g2[�/�*���c6�SP'�"�H� �w��}� ���ϔyZ�3&�q���`�n������|&��f��4�V���~@!�#���(�l?���g&F��vxR���֓Lu�e�x�\W(,O �5x�E,Z�B��H?�YLQ�PT��0�غS���L���$�J���#pߞ�]i��T)�Kl�Ϧ$f7�L[W�*;5��2=3OWW���d�}2��J�N?s������RC��%�BH1Lې}XGOM;Z��TP[�b2 ����7ΉgTkKL��j�܉.�DY7÷���:S5�)�;X��NyPA2���Q[� ��I۶�*� �������c��i�am�1��ΠR�u�V]&&X�$b~ƛ��I��$l6��ʘ�̴0a��,K���<�Z��PT���X? �B��>����:�F�8�)��Aw�*Z�p��swm_2�A�RU����)��}5a��ՒJN��ٻ�@��?����ط�Y**ZJ�_�ҾhѢ~�奢T�+�U�{�H��Z��R�#�-�"�X cf���R�0�����9s�=�3s�=��e�@#��ٶ����z��y~kܢ���S!���:�}#� �ח��� �RI@�*O3���O��^�Y�a��q����-�D��*~e$���BH<�o���A�������te!S( �_I.�Cq�尌��;CГ��� ~�u���KRt���g�`=!P4��y�S 8l��sn��:��%-�x���Xd�����5WnIf�� �If�U����\�ڋ ����$��B�d�'��!���޲�݆ɷt�'�b�((*h��p�sr1�X�u���Kz|}C��o}�Ux� ���r�l��_����M�I=�o�}�`�$�6sX]�FM^��Ԥ1Ω���3�YN~B/����i/ �\��b���iU/H���84E]�����B�0�l��ڊ���DM'�ŋ� �cV�U6=ڥ��oϒ6[�$2���p�@"�q�2����U�/����GBo��Ug��^`iVUm��j\V���+_�LZ9nZ�X�����J��%*w�!��xX �c�@��է��w]�b;��(��1x���m��zn�� �u薝���K�R�'P�m��tNv��͗�������;\�9l�O۾��{+��mϡ!�e����n"��������u�G5JI��3��$H��r$����؅�����B����֬%]�?;%ѣ�����Qbbb��h;z�v��{���b]��^���4v�%m0`E���{���*z:ʼ�4f����2??���K���q�,i�5]:�2����t5(˼����,��a��n���? �B�)��٦S�{���Hw��k���HV��`b��%�n8����4Pd��Ԕ�I@�Q��G��ŏ�e��~�1(G��O3%�x�!����� ����%L���(r��r���������<��#l �#l`�Ht9 R)���O�HIQ��J����$��g�"�5�t>�$�/��� �%������W|�N��1�\��~��;��@Jo�����QY�O.xワ яR��!�;}��\ri븣���ھd09)��vyw��37�3��� Z3�~�ϖ2������ϟnMS�^�Gv��WJֶ�vzh�+�rNԿ���ʹ�q�>��������t�QձY@ee׼��0ܝ�0�~@:IcE��+���g��:`�"���'^����9���?o�&mX�s��qu*��h��6ϊ�z8I����%�BH<naQ�����#���Х�����z������anٛ"`�Uɗ:����W3[:ζ�����-�� ���J~YY9� �P� ��۬ؿgv7zK*���.*��3j^��j<�|���Wr������UR��H�,+O����� ���(.�r����kW��MM5$*�? �B�5ܿ�����m�j��(*(d����B�<��4����GT�Tx?��� C���� ��wW�M��s�זss��gz���t��so��Ϩ� ;ٌ*��Y�Pu�� M@S0��jf��dG��JH�3�h2�����+KK��Z��{�S�dM �? �B�ᗽz��"���q���������QX������ҒA��9OT{t���'��\7L��sgۂ)�C�Ϟ-q�۹�������:�}� k'���J���O�{�Li�f^�Y� ��W���9x�-�D�����+�#1��B!$� �!_fK�~bҪ:�ҕ����'�S̭,?>:���a�y2�&6�/7�|d?x;˵�Ip�s���2�y�����w� �^�����c�K�̛��Ծ�J(����#�8��|SY >�p������o�}�@p2Y(�l��B!�Z�U����i��…���kgFf�%Ϟ��F�P�A��Y(ШR�`�n����Ξo�N��|����&Y����6j�z��&�qN6����Y�r�B���̀/u��Ţ��Ӫ^����qh��D巙 !�B�g���E��1+�*�{�� ��O㫯�S��]5���������+��x�J��"J'�.���U�gI�-}���p8\ �I ��u��u�������8z�.�Χ<���?��@�v�V|��'b���/�V���-�?��=r�����|����B!�P )���]����v�,Jiv̅��Ճ>��q���n���sH����Dz�k�����Wbs�]�����;\�9l�O��3�¶� �g`�vP�ykS�M�Y�^�ڻn<�F)Irf��~V��`0���pBБ��6B!�����Qbbb��h;z�����w������lͩz�0�+iC�}�"n�Tܲ�lY҆k�tbe��-�s�jP�y���Y[�����@!���0��4�UU�8�a��˻��_I�����P���ٲhj����~���� <��B!�����9Ey9Ayn GH�ȓUP�V�K���.�!K*-.)��:[��I��%�|) ]�-�� �%�5��C��� �B���K��JE'����K�����4��5��e *s�U!W�+�1����B!�B���B!�BH\8@!�B� �!�B-Fe��{m�bM��C��Ъ7��d��0��'ˍ�u��d�7;�?�jN�h������a�W�6�5�5Ep�H����:s�V���'w�i0?���ɇa�V`��z��/B֘��!�,�$�c�_XM�M�F!��%�Y��O��iً���4:��j s�x���s>^���� ���>U�q���\�,��$�Faج�J�<s�t����{5�$A=��G-�.�S;��f�>��!�S�Θ�k�I%��m˜��B!�P�B��r�ҍ𰠳��)U%�X�����;�7��[Է�Y�vŁ�!a�!�W[5p�\��R����3ˮU ���?���M��ӷsl�3.�zY�� ��𹢲(��ߘ욣͊��^ >��ޔ����@����� �J?���-��5�/7��ɩC�O�i �IC��������/i˜p��B!Ԫ�����內Ø� }�GnZЛ@�=m�7[g��_p��n� ��+���r=j��+x���lj�5.��Ә< �UI����}�t�i_���6���ReiI���Kb����+u0�VT2�� X���ԅ��m����嫩�����e������N�w<z��y� �4ATm=$��˒�݌J/k| ���K!�B��n���Q�^UD�{A_�Y^�<0s��qb^f�uoz]:�Gz]�HO��ԷRR�^�ѻřO*6Yj�H��w��4�>:�Z��yF�b �H ;zg�j ���-r�K��+�����?l��(�N��x4�.��d��\):]d^��K's�. /�I_��:M;O����Z���^���Cj��E��B!�P�B�Q�|~��<�F����D��c h<.IN�U�K�~�ـΖ�Z�߾��B��T�p�@�::Z}v_�{�}*�lb�U�A.��6��^�ʯ9�Q��(4��jY��P(��p�Q���\��Ǩ�͜�:����P���e�e���;�nz��.�鐚�t��%�B�V���)�c4 ������,�V~d��KN%�����_r��� �--پ��0�w�"#�3x�o�S��џ��kͺ=+�W�T}'[W��%�����Ӌx��G�Qc��*�����ݯRs�.^��B!Ԓh�m����������d���c���YJ��W���� �o�f���-��//�\�=z��]��|�߹��^��za㿑��*B�Ҳ˛ۉկ��_�,�4!E<�DGg�3�{��GAs���t]{|��SB��m����(�H�.Q+�Y�}�c�������Եv���=N~�YҢ����*�I�+���ѽ�V�� jG��M��=� ~d�-�$��~kC������QP�2rǓF�Db0����pBБ�F�!�B�bdd����p>�Za��n���/!�B!�ą��B!���p��B!��B!�B���B!�BH\8@!�B��?�A�|�PC���'�~��\��a��ݴ�Š��g1� �}�z� �Ko�N,�V�z�~�j2���Ę��B����.��!�B�:~���_߼��U;E����t杠;,�bW��f���c��B����v��[� �Zf��(y�YHX!Q���8B!�B�I�j�����CJ��i5�����DESSm����(6���d�ܴ�>��ܲ�r�l ��Z��W�v���K����N���\6 #1������υ"s�u-��i�K���']:B!�B���:��б)"�Z�\��C�k�Eg��@(t>�H(�U�r��?{Wȃ���G�o��+?W�����j��> � �~�(�d�� ��|����q�l���4@!aAt9:T䩐���E.�B!�|>�F�q�ܖ���h4>��`���?�>��P�(��$4�g@6�!�O�n'��DU��Ϻ��vRPd�� :��j+V��N)yee63��R�*.��" E ����ըtA �B��S��=~T��+Ȭ���-]��!�B�Q\\������'6/x@��N���*..n0g��� ����"�I�)/�T�[��^h��PF�4n�U����q<�3[d2Y(�Q0��'��܌��R�d�/� �g���\K�8B!�P#��竩����T�D�����,+//������B!�D����?���d��q�lKs餇 ��� �Ҿ�!�e��TN���� �Q�f���i\���.g�ETEJA[[����W�Qz=�#�B5�P(���g��P�$������4u��J��{��}I��W�����Z:��BQ��*T��5�)d C�@O�ӧB)):����.kYI����2���k�M�F��*�YYJFj *MN�H���Y$� P�lek�H��a�G!�B�W&��vj\B��C캰Rb�2;դ�4{ ߟ�/�M�z�/ji^��Z}-FN����?e<�y_ Cjǁӿ�!�y!�cEګ��C�v-N�J�2�.:$����J������f'D��,QT� �8�ܢ��s$$��E.�B!�Я��`0���pBБ�WR�G]B!�B?����^��B!��u5��/�?���A!�B�jx�!�B!$.�? �B!�ą��B!���p��B!��B!�B���B!�BH\8@!�B�����##/�R� �B!�Zy�Jve� ���rti�Ng����2�� !�B!Ԋ�+˛ꓛ�����%��`0���P(]��t֣K�["B�B!�Pk���d�||_;��B!�B��F!�B� �!�B!q��!�B!$.�? �B!�ą��B!���p��B!��B!�B���B!�BH\*���1 �2�}�ΰ�%���%h�`B��k+;Ֆ���|J�����4�Ht�e=��ZX��m<]'$�����z���S�V�R}�}�����u�g���L&3p����. M��}\ڵ�}��mQYLf�{��u�Swb?��}v��r+�9����?�ON��{�m�&EdN���M�ŽK������-��T��W/�&3�˪�V�3�}FJ�B$�d�+�:[4�J�ک����;�oNi� IDAT�zK�+ݵ���}����1k��z�B�>�:�-NԼD��k!�I'�L�y���io0�1���Wk�~QMA�]E�Ǜ<=C���U�X�eM�^��S�IG�h=rVbjKG�Z���gS9�,^K�!������;˔֎�j�v�e8鱯�mi���k���t?� '�����9 �=�d����_��S���1r�ߋ�+��sOv��� v- \�@�����N��8+���\�2h����L���Qz#5[���4�vDetS��n�j���C^~�WZ�����,YB��������y���M�������N�����g���_E�o�`H������as�>�,�Г�N�]�d23�n�:6��K�vV� ������僴��>��.���SS5ʉ~�N�W��m��Ӌ�5��o����)���q��r�Ր1�5g���ŭ���I�$�텽�Go> �ҽ�qN�q㻒b�l�=�f��t����T`�>�w������(]bʃ7�|���Լ.T���̨5�(�ǙL&3q� ���R��g���_?��=ݘ_�ލ���}v�qk?Q�j(v|H|��d& �{'���1��N�F'/��ŋ�� k/C�( E��kM��Z�=ҫ��ځ����uڞ�'��YL&3+3��<� +�G'"N��%�uWc�'?������B��y9�mJ�����}Y������i��r��L6hiV��eT�|����)�Բsw��e)Y �'C�鄻��� ��|?�=��@D�& !��8j� �edF�k�$�|����N휤n~k~S�ݹ��-�c�L��k_x�6y���x���y9����gPr�y���77�+L����x�M�^���L>�jIj��j��L�r<���ČSs���m��֐F���R��۷aV�ɞG7�U��ttt�s��?�q�i� O�#���th���/E�.!�Kf�>{�F��x��7�ne^�puuu��� @��qw;��3���f�p�sly���U��^'��~�J�E�삣�c8Pz35�'��6��t���_����q��:�ڄ;UP�_=�z��[�F���N��۶�Wz��-����s��"�w�!I��6GK�W�y"�K��o 3��������tn����4��z��V�a�sl�H���K�βrb��!����k�龉N%��u[2�J�Bd�l��i����[��cW'���� ����?tQQU�����-)�![X'����l�G^��$�F�v25S��GW��= ������l���l2�f��ɹ�_sa]Y­s���O�� ���UVI�,���N>I_�"� ^�f��;��G҄��D?3��ݳ�\{���<3,�1�G�V{[ Co���A1�G��~~�koP)q6� |]���<�t)�z֚�y�B���K|��ٱiz���;wۼ�H����2�>�?_ Lt�ܹs�Os:��)Aѭ���l<�H��U��Qxc��>�]b�Z��M�ϏS� �S @X���W���A@n�v�� N��� � w����l��m��P۩*Aa����9+��8�/0 @OO@��.*$ �MuuM)������o$�<�D����?e�J��(�t^ƒ;�%��i�lө�T�K�F�b}t���j#*b�.X��XMMM����w�.��}v�8��_�(��A�4�^��T�3P�P���;kII5<�?z��׵�H����\����2�x))��co��@Jde�89 m0����>I$ _(lxn��� ��&��uV��۽d�ϋ�����}�/��y����6ڶ��n��F����<.�V{�-��^Q�MK�{�8����` �BԵk���鴆�B�q�����W\[�K*����N'�D5� d ���q �� �p������Z�����IF���ɼv�hq��sy.�d��CZRt).�59���^P(@��Y{qQ���h6�t�\.�'��'U�鯐�\�+���@"�@��{���!]T4iy�r�ș(qHՇ��l` ��L�4#�L�^@l �.,������:Ͱ�4�e�Kf�#< @�}`����5��c�эG�j���]��n-��YQPP @���Ѩ5��z��:(��W(qOe ����͊��NRnn�۷<����'��wRT� �))a�Y����1�c&��&�qp8\��뫇�xZ�P\��Gq7ԣ�_���P1÷�S(��IP5ѭ/��1��k����9z� �ӎ� �̡�%��-�w��I%q��_�[l�m��G�T_#C�R�FU_5����K��ܼSL���޲��YUV�DddQyy�+ixw�����l�%G�a �������@h�����"�H��K>8��K{�,�Lh`c����T p�U'�|>�F�T�V@�F���'zq���|֎-f5�|�B��D�����D4@�ZKp�XMp�}�۞�&�֎�&;�L�_��uB�J�V�{��n���8���%MyOC� ?槬���,#o��i���d����|���R�ł=���6pRD�GWW�ԯ�u�B�q�&j.͡}y�BC[�7�5j���z�;��S�7l J22cLLl:w����%������͛/�<�w�/bY0�l���l�yk��\uu��\�!N>@w�� �TT�j����7U�j@P2��`�y>�p�_�K��� ��(�˫�������y���t��4�I"s��YjBB���g�IdX���K��+��%%������;覭}1&���C��o�!٠+ @���ŋ-���SQ�V�;g�aU����3� ����)����Zr���C{N�ߡy�댉|η���m-���Q2P�<�q�%����%��:��d��39�z�,�Z�� �>aiqq,?b�{���DKf\|~��f�1�XkR?��W��$��~e�L6d�v�V���O�gD�w���#ܩe$S�d�+i�u��k�XZ)o9w�w��ϩ���$��_��ճ��H}���9�qfu4���ro��� �z}#��2Ab��m��ε�Zq��7l�W�Jl6t�0�8�+�We����$�Q�?���Fu�L��T�D�B�33`5rŶ�1��{W�h��Z��H��‡�t!���$A�����;ZY��?��ҋ���W+��t�B�8o��tv������l��@��[p1��*-Ys��;�K- �T���0����!d���CLY5QOYX�t�k��>�\+(L=��Ԝ�?6؟w #ʉ~*�N��GU]I��r��~�*����[�}�Q�TyYO�.u������6�Ap��<�QP*�.��M��a_uJDy�"���'�h ]�QsB%���3�*9��;�Yi׊Y��r3���`Ϳ�"���瘟������FP�.x��ם ���R�l?�7�͊M�99o.��p���^��ˎjl�aoor���s�l�>��7��=��� ��;���N�������~�.�ӏ�Ch��tg *�K��J:h �G�SM#�Ⱦ�kxו�펿�y������U���C�7.�/U��9���U���vy����,�X��=�*��,o�Y)�Sz$�?���OJ��tl�T!���r�X�D��]:�`���{�W/�}����D�V�?��q�N�m"܎��=8�Щ簮A󏨏�7�xD-r�Š[�I�݌M�R/gW�����˥��;��`0������s��+�~��}������/���S� Q�ĵ�q6e��cn.����˝� y[����k6�k���J7p{���������x������̺�|Gs���V��'O�)���������#�B���z2p���N�����K���u|/jzv�>�M�^�:V��?�jeY�I/�O�a��T�l��O�����È0w+щ��CNΪz�)�ے�W7V��q�C���ԝ��)o��:��JEt����#�bR?$��s��FY�:[�%�;�o���{���`M�$9U�{ފKMKz|z�q= "�5��Go?K��!�����m���S"�^����_6���-2��O:�d2��S�1����[whg���͘�)�^E]�v�&��B�'1��\{�� 1A��ui�C#������Lf�s����♉{~ܓƾ�����Y��:�x��%G,�5��[��dˁ��Z�‡���C^tc�Y��w��@�A�<�EOEP�Z��<��L)��w/N���zh;9��u��Sn���M(/���ϟ�~���t�.�t���#g%�^4/�{{(��|���v- �݃��61���<��K>���]�!�Q˦���}��0�l�z��ާ:o�T�C.�I�}�nKۯt\����{�5A��G׎.��g�}�5S\��6]Yg���n�$#���(<<�����r��eZN���Y�D9 ��6|�f��צ �:�����a?��3V�B?9�Q[��͉�p�J���o�׌���hvKG%�O~��Uo'��P��K�.���$Qk �>?���^��� ��� T��a���$�-Ͽ��dFL%���;���'���O������-�(�FՈ��U]k�PTR&��ck�)��н"� �lM0��ߢ�g�lZ�y����'$� P������ϕ%��K�B�%������tc��LdF��@�?�d2��;m@���C�b�>|H|��d&�K{x������:�u�w1.�}��q횢��4c[s����W���~z��I��[�._�����u��������y��e�Ng�Mg��ʑR�>}��u�ֱ������u��уA����`o�'��|�vĤ��IM���� @�>%h�mZ;�׮q~�e��%0̝�:��|�S%L i��p� �p��y����I�$�텽�Go> �ҽ�qb%xwy�����5�nw��x�-ے�Ǎ�J�=���К��fӭǏ�$�7�h���_�~\d8�Е�&��������bhn����Vm��|�u߹�%�� s�r�a2㼬�����8�"95)����i׌D�闾{\��jT���Q��q����}v�1Dũ����g���_E�o�`H ���6%���u�j�#�1���|;0������*A���kvz-��%� ���u�ѓ�3b�2j��_���{����@��I��� 5b2������(���c���H��̬[���}|������ �[��K�V�>�[��Ǿ���JSF}#�Sͦ8�B��qw;��3���f�p�sly�d� ��C���'\]]]7�'h�ܶm��+?�m���v�;�w�7����2z���eCbH�`�x�uE�w(ü��?�>6`e���K�SEE����$9 ���>�}9����suu=é��Dc��k�� �w��=�!{G����!w���N��S�F۶e_;{����c��U%"��X6�ﱸ�_ a"�pΖ��Cϥ�o2Nͱ��5hZC��K�UTT(��NF�y�/ׁj<�m��۷aV�ɞG7�U��ttt�ϙ���q/��=�>y��Y��Nq��QO�j||���'o?�n�m'yާO% IW.���4��o�oʱ;���t����|u�ll��?�̓j�DuR��!*c�/ �� Y�x�8N��M'���mp\���h��E�c6��4@���-{���>��r�e%E��"�~.PQ�z�f�q�����*�*h��u4��PTT����FL&����kW3%E���U�5�r�4)��F�ߏX��د�C��-_���� ����~P5��2�N�fJPt��#�XV�� �c������י�n�F��s�B�rJ��'R>��m�SNֽvE����2cvG���3�\��:���=~�D�%A�@�� ˏ�4Q�rC�����}���a� [���i����{�J��t4��[�(�i߆1�׎�6� �u=-ے�R4�t�v*���Х�$�)��tf��XJ=8g�D�}���E��[��c��?�&W쮜0�&QATe%9���tY����*k�hl���i}�!��W�Z}��qH፝��"e�,����Lg'S3(�v��Q��v���a�����[w(����#:k�ҁZMU��1~���KP����y2���w��3l����F��BR�.�*���N],T� +���Ï�E���v��}��2��0I��nK`��Z���4�y}��SU�-�V�)�Rt).�\�t:qN�R��.ˇtQaФ��I$�|���l����h>�����#��Ef��젯 P5+���W��f�x ��V� �"��E^��#�|~=!d]^��|v�I��n��?���A \#hddTϻ�?���r�yb��yRe��O�m�%�r��� L�t6jچ��ӷ>��ɩ�͍�L�/Y �q ���e��e�? �U~ ��)+���%���ꎍ~'�XBjw�D!����W&���� �ҵk#��� �q-y�;�q��u{q���r�La_w2�y�ΗK��6 sR4�|z���.1#�=Z�����5�3�-����a^��t�3{��c_d�8N))��co��@Jded�F��x���8�ћ8�/����Nr��\Tqq��wޢ���^Zc��������}�ކ�i[�ֺ��ըÂ���S�ﻐ�N"7�:#�<WP��H�ns?��M1�p�r4*P����|2�F��G��iro��a�s��!���l]�/1g��v;���^xݖ1�}�� �e3�D6�ɤ�f =dWĩYZ���GۗP_�: ?(+��3��&���e�w�]�uL����3癛@���cn�IIj_�r�X�S�F�<��8�t�\��s���YG umM�{ӫ��at|��A���O��ٯ��炸EG��������K6�������/�} ?P(d S($��Jq�TՒ�Z򗂜��6P#&� $-M ��n� �Q}���m�0g�?�����|���%Q���8�b���{�� �9Q� t>����E^���:!�wm�tI���sV ɩT IM���ؼ����\Z�a�o����� +�N;^.���78��8�q��p ����iU~NqP5���aU� c��Y @UT��)�><�y�$��н���%�,�ន:�̛>o؞a-��M��r�fg�S�1#d��������T�@���H 8P!2g�<(�7~��]�H��ce��Bo����{SծT%��f��#@��(�Yz#F�� 2�y���O�m��f ��9�r���7�w��oտ*�^4:7�+ �M@�䵷����.����GG/�lվsV%���Q"J���dͳ��~��H�I�� /����Z�%'�,���kɑ�v�9��V���~�$̙\:k���\6���P��� 2��+���5��M��;�R UM���5/ IDAT��k�U��������Sw�����;�/μ#:U��0�/xZ����w������U�W��+�OY�ض�����3O��]�! >@q��?�kM����uq��/bY0�l���l�yk��\uu�N�����ۊ�h�]+�2���p������w������]��*�kΘi��*��G��A֣GU�:�ɓ��l�[��.����^�q��d�ΰ��?*��'+�@NN-6�ebQ6c�~r��X��'a�_O���7�sڄ �� #����j6���}{��nƟ�g����_�/�� ��ˎjl�a7�o �rѡ��6O�q�u���I�E�ރ��0���=+�@\p|� !:�`�)�QLS�X� 3���þj�<`�����.�W�w����e�r��]߶�3�jp���и�Q���+;RE嬣�Ǽ-�?������}q�y���|�����4��z��ŗ"�ԇ���-��}�u�9�ߧl4��)v�� ���;g�vz�=�a������RZK#h ]�QsX?���31D��! ��6Θ��???1`�;".^h���w��Ү�V��f>�{�����:�&q�ܪ^_=r��#�4?dK��?Bո�W�#�l�x��Ԓ��=�l�Qu=�x]�?�s��|����3M��u>@ �=�t}�)�&�) ��{��zP5�jl��j��ú�����ϼ�H0��O|I��q�(Evʍ-n��%�3�O�-ԍ�6Ogg���?�8���d��sXנ�G�G�Q��t�w��Zu�������r��ŧ�� v��ٓ��ps�\p����$��;�_[���02N��p����fg�r񠳭F���]�?|��ᣈ��>|xlf{��0׃C�n_?�{�E; ��:t�ډ���\�jKMw��v/�ک�K����-���q�o�¾��7 �NJ��KTN�|�E~aa�V����2�����;wn��m��R���3���~�NX�ٽ���%��:_�:j��ݖ���y�j�;��k�;8�|Q�Gڸo�Gר����ޘ�v���������=z�P�%�is�ܓ���9]x�e���^�Z��Z6+<�R�ϟ8��wƖy]E6���nϷ�;f�{d���_��9|w�<�U+�{?ہ�F�ڛ6�mvo��I��q����>��s���]�ohNr_����a�����\n+ �'��]i����q�� �&(!�ڀ� 6�Y4v���b�g/�oN��6ui;�&G�I��s�����ٳ�5�|"����%��N5��=B��1��~Ҫ���e�~=gwj�?YJ6�"\g#kT?�.���y���:�Yzm�Q˦���՛������/�i�2ݧo?~/,���yV��bd-�.�� <�mF����d-�·����_mUk��8h�������Mi����ʊ�9��\��SZ�-+.��]P24T��s�C ��s�����]�l�mj���e�������X�����U���E W���dS�d����W��2�B��2�˜�� ������L̺�߸�\\�΋ �13� BR(T � P�mV��3�[3��B� ][S%�ulN�,+�ʦyko��3��ʿK4Yu���ň��Cn�8�i�.�:����k��7�o�Щ��W�`��k�C�ܹv�b��YI�D�I��� 9s�����%�Vgq-��[7�YNQң�\m �G9{+���-�{�F��� � \��}�9����z��n8�� �|�6��ɩC�O��\�}�-[�F��'�0�~ bD �v�֝�~���N�a��$����sW�M�����ٷ���o+ܻ����qۆ1z�y�jjj"WRR�,-�V�(��r"� �{�Y[[/�J�EQ���uJOz_��JSTT�,-�nl%�%JJJ��s�U�-�h�����9.���l��B�u�|c����S�:ʓA(�~�����n"t9�z������w��т �w�nj���t�8���@m�%� �f�3r�����R&A�;)�=��C�eI�nF��Qg���o�����A'բ�"�|p��e���ͼKibr�"^��}��9�f8g�\�Ҫ������3� z�{,N��z�o�5jv���������u� r1��1�:<�8�qk���yִzV��4����$2M^UU���}y{tU�n���}�Pv/��,#%H(���9?���b.@zjv��~e�������0�����t��hâ��4��n ��eD���zǖ��|V~��x&0Ht:����Ի���Q�fr����$R����w��9��"�$� ���(TH����CT���j%��ٶ����z��y~kܢ��T:B�:y����O�=m���W��>�����/aWN��7N�|(x��p��*D� -�p@r @I���� @n1�YډL"�LQ�n� ��?D�-�NJt����C�>�pq)M�cG2�S�-��S��� u��I���;�G��z�Y���qJV#�[ ?�p �o�1΍�UF.��9�0�&՛O�o�k�$���6��<�I��50o���LH����?-���kf�����V��U7wb��ۯB(@v���������e��{��C��\�Ѩ�w��*���F �T*��' �$�Qh�WFFF��N��ČN�lS�7�Hd_�;��H�C���| �<��vi)>�Bv�_�z *9 �R�>*@~�˩$��?U���n�o@����zv�)Gf�=�I�R�]�o���'�f�ޅ�5Z ��a��s�b��`���sC���=��$5B���ُ��z|�o�Y�ݽ�1��|BxH��+'L��+�@(�R�;>Y;'�D!3>��/���,����g�U���"N��퐣����[d-V�� ���pTҧ��di��u0M^o��m�I�����u��d5z�-��Z�)��]�X����{�S⏸�fNNnntg�ԟS�o��j�$��q�~��9�˫^��������Wm2-������;��7(a��T߷ ##�*a�']۾���ͦ���6�咫</㒋�鏵���dJu������ӷХ"�Qlv$&&6�V�{�]��|^��/�KI}��� jT�<�iV�� e����n���**��E��|j�v�e��N-//�}Gt�b��< � tu �ܔ�o�!'��/�.�S�����㬒�*���R� '+W\\ ��v�����@����7�N�vu����aB���L& !;3�ȩ����+��}5aWN�X�J���#���u��4��?^�@�I'V�v�Q_NB�-ΰ�<>�����Ǡ�:��}u�e��[������#Ů�:��\���/n���� nё䆿���6|�����ښ���W��at|����b� k�TF�q���3��%�hD�#��S�̷oe��[�F�6�,��������w�q1u}��մO��$�( !ѓ5Y�ǚG���T��Eɾ�=-I�m����iӾ���1���"<���?���s��˹��{mM5�H�i�u &���ԕ��n��c�:(�%�� T$$�N���ةs����������z��j��j�N���b�g�+��װ�w�;������$j�9�.K���[b$����J��W�g1VBPh�ᒙ���<.#jM}�Fc�QRD��� Ǥ�$|�>�(���RUJ�1mkFZ���J���c�O�}��u�}6:^�l,ˠQ�T`��/�� ���Yx���Z�E�� 3��߼�v.��P�1"�ä��ɉSǶdg�R$G<�����a�ag�� ���������8��EDŨݎu c{�j"X� �7���C��8��c��ʿr�X�P��E&n��{q�MG�,�Ezm�Im~�Ǯ<�r��9�n�&�6C���~�����W���Z�O���.Π$�<� P���_���Z^W�w�`X�G;<���]+����G �"���9qsq��]���(��c6�~@SN1�N5ȷʸ�/�y�_�� ��९�=J�5�k%���ڗ<��Q5�=7̈́Z��a�=b��鑽ʮ���Iъ�]�y1���,h��@{��+dp�2#<�U�ƶ�S �7,��o���k)���z����(-��X��Ϧ������Q���UW�ɷ��'��q��4=|���FhfW�������̭�<��U�A~Wea�Zo����(�";��ӹ�,u�����>�������� 2n��=�-�)7vz����ο�����=Y �&��+{]��i攔#�)�G���SNp��1e�_=?��fy>��������15Q;�vG?=s�`��] Qh���|��VA��k�������G���^��/�p0X�+���ڽ���i�zG`��I����������s�gԿ" ����G��M�R�%�7����Ұ�_b�`qzE�EL^^�QQ@�c� ~!��=����gx��#���+r��-d[��UW��%3��-�����7�0l�����?���ӈ ȷ�v���` ȯ '$>`IxA � ���������bkn�� �{����+~�z� ���o����ap||x���l`� ~)������_��� �n�>y����X j+�|�cQ�KAA�S��K� � ���? � � �[��� � � Ho�I�Ac[H|l���� ��?� 7C� 6q �w�v�X_�A��t�q�����VԹe�_�Gh�2�K!��"C���$��jX�?7��ે��Kbm�+;��������!W}�h�p �>;g8Y�͇��D>���c�"��9s߈�}F���5������<}|�� ���M��`����������#9t�A�e�U���,-/v T�:.|��&���k����,Tx�u��%�s'�HzD��(���2�3șm[E��L�ϱ��_����9z�ޥ�36�d�⢽���Y������֖��5$���ˑ�;�51�8�.gí���3���QZ��QE�H��ً+@�W �Tsz�߰�V�J�-�<���-:xu����:�A��d�Rz���b�ê���aK=���{n}�Jc��ʛ_wΖ�o��j1^|���]�1�ީ��=Q� ;�`�o��۠e�z�6w����Y*� ����%fsM9�͑���Փκ��p8<�&p�����M��t2���.��T_��q��!���B��]K,�`e �8o4R%�KS�{{f�C[��h��,� 6�l/Al�����kO�r��0�L�Ï- hIKz�Z// �hJJi�|�gd>�)[��y��p���]+�7 |��%;�i�k��dIw6Qc����Dih��4I��t�^Z �\�s�����Jjh�����FZcm-�[��^�$����ۚYEȼ{�+��N/���[�[z�����&2�߹S��O�b��6) ߠ�|���.�z��JEA�>�W7�V������c� ��/�e����[�Q�3�� �(��i�����㶨��p2�m�f��df���?}�xuaᙶ��o��6]w�y��jm��j�&��8����d�4Tm�Ii�"�Q�ǜ����!���Vi�z_ PWV֪�3^ @���J"�І�=Jo��oX}������ ��yƴp �>;'$�����S�r�B������x��ci�������_���$���*��� �g�=��݅"� H����g�- �Vp������gV�)m� �N- ���Ҩk���L��,�wtzV���#OX � "))�)�v��;(��\���Ȅ���d��$Ȭ��\�x�M- �0����t�7�R�����/�Lx�O��j^��ݡ4:<����s_�#F]Ezx:��!|�i[���X�������ue��Soh����)!�~����W��`������\�J��J�Z��!�����>�������w:A����Z]9�B�P(%y�oE�()�� �=I�(.������ͱZ����֝�xb=���X�n_Y@ :t��i�|��f��@�Z��M��|��� �����"%��^���j��o8oW��n3$�Y�|��9 ,s �jbO"�������a�� )����OZ�����}v�Xm���p'CCí�j� ����XN�������0� ����СC����TA�V}Qh���r��o,�]�P�Ҭ����E���s~�Q��oG��J�ey���L��;��u����aAA���:���{[��5k�S�G:9͑:��񦝅�����Ⅶ�A��`0���m���q+L26Ғ��|IX�p�X)`�� 㓫'������Xqjs @\B���m߁@�c1�m�D�����%�&�8e�_���xe種��_X��O7���hY��/���I�򆩪p+�תkj��%[^LL��7 �L� �s�E���.�m2{�"�_B}δ��r���.��������F�k� ��`4*�J ��S����c���3��J߽��(�9ښj���j+*�L(����+��?�l��ruP�Kd��HH �je9Q�s� fnw�>fo$�c� c{�j"X� �7�����fN�Kǒ�d��I���|Ն��1��.�Ţ1�]?,�Ie0�~�,�����a�X,f7 ֯��FD�9jM}�Fc�QRD��� Ǥ�$��X��%���T�R��ě��:�_���~���: h}�u�FA~}qѳ%��� NC��[�2��=�ۯ���Ԕ ��:��6��T�4��u,dnU�!_έ��[�Ɵ>���% \�AI�y �:+�f����$�.7����*��8vx���V$\3��U�<TE�L�s����뻮%�_�Qn��lJ����b^n~z��Nϻ��T�1������>��禙P 9=l�Gl#�zCh� ʬ�>�L�<�P�3��8�g��g0�� r�qy_���`gAFm�K_�{nA���wŵM�ET^�9* ��5���� ܧ��aU���K��7@�I�P�p=~��XU��~,�w��Cm��u����7��>>=��%��"� �O�!?7�X�n�ٳQ_奴wIѮ��k�Iѯ��pt���8"D�n�:UUլ���D���۞�����3<�_��}��"� ?G����K�" +d�T� .�6��p ����!� � ߀��>��,�U��܂�gU�4����8"D�n�:t� �3��H_A{EA~�n)^����#%�g@�����"� ?�W�_BAA� �AA�-���ZZ�SR>?]FN{��TCY9]V�Nm@CY9���(�A6))��J3E��K�=-���r|N��� �+"H��ʌ[��t�@yfQ���c�R��?��))(�@L�mQ�_���n���i?�A~����?yt�m�j�[�1"���GF�Nj�:��=04��ۉb?s��l�2�Z�q)�QTd���֓����w�fȵ@������B"G���1G�����:� IDAT��oD�>#�����cccc�>�ㄍ�Ľ��2[��ԧWw��n#�A�*�L&Gl0�%�L.�5���ؼ����g�<��d8�ǡ�gJI���� ��.�Q��c�K��R�L&�9��H4i˙�/2�?d���d�/ ���7����‚���w<͆qy)� AzΎ#{�x�/��ޱ�.)�~���f]Q�E��x>�_D��UY���'2��UY�P�BA� [/z �����Y�����.���`���b܈�G����A�࿶;[L����o>e�r��z z�~�$t�KS�Gt ��2��8��NPx�a�Α���<���������1�d�:k˞='LX$'�9XUC0\=����Ch8a�feR�`Y΍�`b�,�9X�sͷRX�D���W�L�K�{�rI @����5¬vSF�s� �����@�$%Ҷ<����e��&��c��f'��'9콓����n�r���7c���5��y_�N��p߆�Ϫ��x� ��w����SyN��O-���>��Tt��+u�m�\u����������e����Ƴ^�ҜV��q��HF�zy�7�o�Qu|�E4�ԙ8���������6e����}��gpGg��� ����~�l �B��T��y�, &��4}/�ۃ�,�����?�9�\���|d�%sM�7�ofz����NjϵY�� \�b�ꙛ׆��:[���>d-���&��#�n�ץ�E>� |��gt�?����tZsZY�j@A��w�0;qC��;m�6����>���`e �8o4R%�KS�{{f�� �Mu>���c��T�/Q����~c~= �o�L�չI�O^�͝୯ܖ�,��a��������6�Lm�P��@q�ΑFY@As`� @-+��2yH�s}J����F�R��E-I�����"������������ưG`�\[�s�}c�fI�.��fZi5�}�+�2�0�L�Ï- hIKz�Z// �*�k����� _m��t֍s��0FG##lkf ��?�:�:�oiG����E�{Q~���$���} ��g[��+���>(A���9�P,�4]�վC����ݫ���h��Po��A�*Nq�V);�e�l�ٷ��������s����z�Ym�B����8��zf ��d�XVq|��AN{M��9/�X�� �ښ`��w�ޠa�K50�5<�9zl���wj@��4�N���wo�}9`�R�C����C7�n�+�^��x�B~�>�=��(�/��G;�xc������� �3m]�߸-�m��b���+Հ[�4Tm�Ii�"�1�����J�\ }q���XИ� ���sBr�����6�=nZ��5���-���[2@q��۩���Hm����՝~$�,[��­H���P�V��O�s!� �����m�[�1�4Nkxavn߮K�@���rJ�!޽{?qƂ9�5��r�ƞ ��"q;V�������zE��\�*k�nPYiҴ ���w�w5�ͻ���n��Ϲ-��KzU���V�:�;=$��m���=�F��R�;���Ni��g�9 w��O@gB����H�=|���ª3� <_�(�džP�􈽽��=`D!���G fNN�4���x�j�q%e&4�S�(������E�E�L�FD63��3[�䕕+�g62�ё�$UU� @�7��{m�5re C�I�����U�j�[gKpIYu`����9KK��N�x�|�9>�q�ANRv'����SK���qω�`@��+:::�iL���S+Z]����=8�ٱ{�{F+���젡�����)}T*�|-JB|�[����w�5�D�:����'CS�>a�5���`$�8���@���"A�Ó�g|w�O��qZ��Ų���O� { ,"YII� 8~�H��L�����'��i�j���a�V�n۔Ex��'��׻��5���D�o?��ټ�q�}��$ݢ�ӥ�z�nGs4P�Ҭ����A]]-��H�ߏ_ZF����Wz�<�U�0U��iuG ޱ�o 3�I�S�}�"���e�����y����צRi�!3f̘a�������� T* �@������g,jc]]C+�%)�5���9S'���'%J؝�p|��pG&�#;P`�� ����v01�erZ�V5�)U6_9:&zݼmE[Ю;�]«��f�X�Uu�0`�a�{��Oܖ�9� �r�i�gL pX��U�8�8��� <���öU���!p�B~��Y�ͻI5 ���g��x�Ed& �����p� �`������������vx,W'p (��ܹ���� �"��)Y���TĈDs�A�i\��_��g����b� �J����)�Š3�~X,�Nct�Й,&�Fet�И,&��J��2XLFk3�˧��b2Z�h��?� ���D��if�X,f7 � ~�������5,`�VR\����(u���\��[S_�ј�l��(1z��1�1 _�A�%���T�R��DS����O�R jx��@���[�4�֋��6A��Sꀤ5}���K�;wN���|� -�Hƛ\���{�.9-���hJ �0�z��G=)hc�������E[�5xLcfXXh������c���Yp��/3ZS�?r�*ה�ϭ0\���,4��� 8��A� ��$ `H�@�{����W�N��� _F��2��z�HL�����Y{��$@�����.=�JKw�ظ��l���Gc��������TE<�I����BO��H.�>�b�j���,(�3od�z~+`08&���@A� |��[%�N�P h�g�� {� �H�f�˫Z�@��嬣^S���~�y���)ou^k�$άxq��7�� 0�9����œ�0�Y�m��� �<��F VE�����'� N 9Yq����&*�BS���G�n�a�3�O����ʿ��Y&~����z�Q2�O����+e~~�[�I�M����'��5V����8�wO�^>��蘑���^/��<�U���' @�=��߉���$&X��Z=u� 3�̓�v.����EZ���Iޔ��h���5Y�଺�2Qo��n�IJ$f��Ǿ;�_Lmh{�R�Gmb�}��XF(9m2ޭ�!�#�ݺ��no��=��e�mg��������`�@gtq�ZKܞE_)���0r���NIQ�V�s-�?݅� ��y�߃�t�SqX�2�v���MTgTd==�{��W��W�����1�̪��@w����yC8 ���%���C��� .-���$��q��ٜ������V^�Y���!�� ��<��*�%Q��l?�H� ?Ǘ��;�^;T�\[+=i��ŘӍ����)�_b�`qzE�EL^^�QQ@�c��A�,5� :sW�bg2��rXM�D�W����!�����Q��D�~ "� 0a������o ��>��V'$>`IxA ��uY��4�`d�@��_ ��>�fmSs+AP���mjnd� �C�폹҆�ǡ�H_A{ş���ó�4f��O �(#�b�[A�}���A�_}E�%���#%�g@�����"� ?�W�_BAA� �AA�-T@� X�qK֭��,�^�� ��7}S�Ar�o|�N�o}3���oD�>#���#7ݎ�������R�wN�m!W ��}��4�� �7�?~�0��"U3�����q���_ �|q��������]��~|lll����o��1���yD�3,��E&��qN�\����߈y�����zd���[G�;K۫�5����������{�2������q�9;������d����va%�ٯ_ج+ʭ��3:Z@&�9���v #�ד�`����������#9t�A���-;a� "�G��ƽPi���ו�u��ߝXd``�)�_�����#d�\7KE�,5��d��!���&�U){�]z���b��Us�Z� ��~�t�/��;��[L�:k���N�c�fN�?����N#�/��Z~���'�����Y4d�Ǚ��m7 ��/lm�3(�Kv�{/�Y0�S����O�渞�>��.\zq夙�z �u~�xy��V�}�+�]Zq�� ��&j�~a�<��'�|������X�˹Ax��*����s��<-�쀀�W�����҆�A�FH�n8~#"�qx����ۮ�il ����{r�jaNew�);Fj�������3U�1�XY�c��?��t`�h����T���.�3���^��Z��B��Ԛ �53�~M��g'������Y��Z�y��� �����/�ߋ������&�^|��}~vJ��c[����������<�G~�{,��}�aJ��Y�"��i �q}A&���7v�����쪕j�� 6ع>�<��Lm�h<����9v߉�� �7y�֧��ϟ�>�w�F��J.�GJB���v^^6v{�>,�h�}�13���sk;'���F���9 C��b6�O���'Aq�v�C����A@�P���N__�j�H{���E���PhN�OQ�>1���NLx���y��������r���2��[��zzz�~�^�� o�H.�����(m���� <��U����٦�.6/޽�#?i�� 1�҈!DnY�Hbbbt�ҲWCE��w6V�z������I$RkC=���>�΅2|i��H㴆f�~�,`&;�;�O�޼�r�����QPP����3�ܻ�~����PPX ������ ��"j�L�z��^��_k�*��ҘC�m���ߪf��'8z.�ڳ+��wš�Y��C�$F�S���d���ម���.7%h�8A.�%$$���0�2 �I���߭�:�zz����� j��QHd���������|��$���*��� �g�=���ӄ �o���Q�c���2k�=o�� �o��h�tt&%�3��ǖo:�Q��Hy��QJJ��F�5;9�̵E��Ę4��` n�啕+�g62�ё�$UUR��w�\���~���s�[�`0D͑�����[噡f�u6�E�1�We!�����1�Gp�,E�+���ѡG?;v��w�!��I�x!�@cfȡ��|�>�������t���ju�5��v�����s�̑�l�!C:��T�{��?x��� q^�C~:��-^���N�e�������)髫�K��ᙘ��1���oV>ܷ~�����[���$=�މ[[��2�:�������h�.4f> x�G�|��М���tז�y}5�ҧX5iiiy�=��� _��u�u릳��Kz����R�Օ�2�Q�..MW���Z�����5:�0�$uT^D&3U�t��H��0�2��k'�[v��1��s� N �-� �A<�����������ϗUU�M��>�X�Waw��2��ŭȏ�Օ!�9��,N)�9sj9,��Om��Ý �a�m�=�ǡ*�媫�>ig�#�����9����H��WVV����A. �NرZ �m��}]� ԧ��TUsV� |�PL�إv[��H "M��SP� ���򻨝���#�CX��X�IUުlq��%�$�e�:�?�������C%�%9�N��cY,4�'��m�a5Zk�,� ��ʡ6��޹�%��������]G%���Hj����;G+&��3���\o�սsG��|!��Z>����7#�|I��/�z��n��R� V�%x�x�{����*�uT�Jj�Ito��kӒ�3K��50%�N���g�|9;���i�����7�V^.��¤�*-�q)��zn�'�S�e|>a|>R�2]�)9�e ���CJNA΋�_��_X�@~iѲ��/M�Z��*�]_����/��/�������]Fu�;�&;lM/�L(,�3�^]�$�r���Ya1��I����s�E �}%ls��z���_���&�ܖ�;�[��>�����_L L;i�,��!�G2@\g��<͆�N�߁��@Qe%q�o��Q���� �b14��*����`��x_w��B�1a-�7/��}�Iڵ|���bVhr�4#�L�UUU���@@JJ���ӗ���T]S ..P�-/&�y�Z�*��' A���Wv���Օ��eF�o߼ߧ�MxO �Ƿn_�@,7�D��x���%G���nj�Xט�Q�^W��ȋ�]���O��9)�g�8�zhS�z�������AX�����S ٍ��o���k)�6A����x+��[��j1��a/��g��Pj��ۻ<�X�1{}ıã\ߵ"��/�z�ߩ���M�ДSܳ��r��q��V�̊7���?@���]q�DSv�WJ��{( ��5���� ܧ��aU����z� ��7�h�UEia��ҿ{.i�!�ךo[8D�U���=�PX�@&-�CZI m�qaA!4���x������t[d���\m�x������Ś���9O��IB~�����*%���ǯ�e��K����d�Jy{����k:��m���7L۴k:�<'���H.���\��{��u��חl�O�c��ԭ�;5@�����[ߌo����{:����Y�������}�}w[L]��^�~����[�~ �&�!�� c�Z̶ބ�����.�@^w�AzC$~~Ѻuӿ�~ A�����mM4��Ń�/,㊞O��@���&&����2=����A��A ��AAA����� IDAT�B��A�vi�:���{"AA~i��� � � ���� � ���? � � �[��� � � Ho�e�;t����H�I�B��y\ yz���$i� 6q �w�v�X�A�i:ܿ�bp��o+��2�o��uC��N��q?2:�a�U�5�"hC�>D�{�ݍ�� ���k� ��=wA �a���݈Ǐ���/��'������w�w�Q$t� g���H���������ؘ����8ac �ݳ� }F�*�L&Gl0�%�L.�5��B~Ʌ�B���@c[�#`�=X����b���7N3�{���/��޴T���%�rf�V���SF�s���׳�MY��d뼷KB�N8��DQQf]��Mn��ۆ0l�մR�-Ojpr�^]ix;9��^X[ZX�s�֐\�/G����T� �D:[+��g*Jw�����)��S���l)���,$G"tRk�+@��%�4�I�t�Fɘ[`�-�8i�W��A��C�a�9z�ޥ�36�d�⢽���Y���9���N�I���3�-�8n?��m�Z-���*o~]�)q��Ū��x� ��wY��z�"���3�K�8+:}���'�qdgΒ�>�����`�]&���g����uC#���}8;�)L<���c ZҒ޲��K�G`�px L&��7�����djk_M�p"��t����C��������XB��lq�h�J���\��̨������PYNl��^��T�3zM!;֞N�}���!4��RI M4���Hk�����N@Q\�k��O}��d�`3�y-��� ���&jLa��B��( ���Ô�;�Z�|�����RQi��V�d?9�d%�S����dǥ�� ����a􌦤$�v���z&@惘�e�*��d�0FG##lkf ��?�@��7���s��Ƽ�閇^�"���� ?ک!�&Ks��Xi� ���O6�x�D�g��;Fj������Nn�V��������@�M[�Խ�w����}���\^3�T�9��UW�;�p�v����Ԡ���Sj:�h�Tu�I�����������Va٦�o�Υ}��Zs�vj#� 6R[�!�}5���g���Q&�q�ro����mQ���d���ͼ���t��������3m]�߸-�m��b���+�ڂ��2�-Lf/q�����P�Ab$�C��GюÆPz�u��;�?�g��((�IcZ ����� �t��z����T�Ae�Y���rE�75� ѯ��*KBj%�_��� ��;�=a��������ǯ�n����M��KC�����]�3�͐���ͱZ����֝�xb��H���[u�9�b��t�$E��?8"���� ����+ `�V ���3�'���E!�I\<;*�����Vc֌��G��B�3����\ܱ#d��XLljᷗI |>���t��sD�' �������#=h�_�Ҷ�c�U�/���/�� ��E�/�O���U�8Ϲ�kXx~e�.��%w�t�'G�n9H���d ���4e���r� ZK��w����n%�N�x�n��.W� ׶��b;W��&MViI�K�p�Bp�6}�c1�m�L�����hC�VD�E��O�:����IHq�tզ�ȗ%Tae���� �j��_��~q �Z�͟��j��E4���-�+璴�Z��*�]_�>�6Lȯ��/㜭]zSt���_N������=k*��j � x<�F�ԟ��ޗٵ�t:��`�����o�$������鵙{$�������B�����5,`�VR\u�}6:^�l,ˠQ�T`�<��� _���;��3NJ�egi��{W�Q0s�5�"���VT�1�P��?@SW���������Ȏ7P��:��r���r����}��H���9n��y5c ���c�B�3����?|Ն��1��.�Ţ1�]?,�Ie0�~�,�����a�X�:�ˇ�d�X�n�~r\"�bԊ����]�.>�Fm}T8���fN�Kǒ�d��I���pY���/�h�]6J�H��t���Nc�K���Q�*����K���< ��������u��t� r>��, ���%X��$C�֜���3��W�YYZ&�1i�4Ij�` ����NW�#JO�:���W�N("?L�K��8ulKv�WO� �aw����9a���(4U}L��y�����i��X�ܪ�C����������v���3(�7�Tg���l�������Ɲ:V���r9|׊�k&���G����){N�\�}׵���:ʭ��M�ДS��θ�/�y�_�� ��९�= |ņ�Z�Y�3|6�gkA8�P�3���CI�з=��/J8L}�9�`0�}�gw�v���)xW\+є]Զ�8�(w���9�i&�BN����GKY�~�����W��>eFx��N�_���O�� ��҆��X�ƪ��0�c齚�Y����>T�t��q���w�VwJ���ŗ�l>*#@-y}{�G ���8�m���g�g��@�9_c���ۅ��E;4j��+H���`��)m)E�m<�G��8��N�t�4���H�\�]�n�ٳQ�85ƒ��jVVVO�|/�{Zg���~������{��{l�3�g�~/Sc[ȶ��4!��n)��,AA�ߔ�4c����}Xy�1e"��AA�7U����ߠ���sW�q�H�A�AA�-T@AA��P�AAA���U��2��ړ@�@�=��(�/AAA���� 9Ju�"ő� 1r{Q�_���n���i?��ƶ����� D�{�ݍ�� ���k� f��{`h�� ��~���!z.O.8��� �7�?~�0��"U�/������B"G���1G��񃜹oD�>#�����cccc�>�ㄍ�L�$����d2�L&|�u�y�zj � ߏ���IbCI�ҏ�͢b�H�ҏ��LD�~���I��6A��v�����E�B>m����5n��N\7|���찥''>�k�H���b� �`�����sі��h�,�v�%5"�� +=�����ʕI~��Lh��Lv]�J���A��;n.�JM鱍�F�yvݒ@`��:�;�fu�|���̚>m���{��� ���(�0��;-����U��]����˓#N����5GҶ�k�O@������_؆r� `02� s� ����?�˸��D��o9���9D���b`�蹋�|/^�����$�N�P 0rO���rlZ ��x�(��۠r��o�X�žw���' �l=�W�$�VXdtb�'v}'��i�j� �dm�U�Be�.����! �4O�k��ʤDC+��헊�ˆ�\���_ʹr�h�3�k����'�\���~���D����b�,ȓ�ܵYQqZ���`Zq3��qy~Q���1?}g�u�� ��<Y�sN9��P9o���q�m�}����@c[ȶ򍫮��v���I8��+���ij��? }������{�����Z�|f���?k�Ct;H�1|�q��)&B�`j�@A��@��?޴������X�Д]O�a�I�FZ�<�/ 4�qh�J�7 0�ޢ��'�9���q�+j��9���޷#�F%�<]if����+��g!�)s�/��ۜ�ꨭ�e|���`p��RWW�/,�֧�_ZF����UI�<�U�0U��{j���eE�JO� �=^�a�A�:2r�6��(�/��(/���fo$ȣ������q�~ �9ӆg���VTt��P��g����b� �J���X&�Š3�~X,�Nct�Й,&�Fet�И,&��J��2XLFk3�˧��b2Z�h��?� �����yA� ���l[G��]|l��{���"��b��[FvJ�Sowt��0���j�`U�![�8�}r�.�/O��N����\םMgp^| �[��(�3+�D���M(���?���~��(ܧ̈SNƕ2??�-����@������`�����Nz�y^�s&P�%������Js���p�~\�}'� �Y������t�]S�W=_�L��fH���"� Q��l��? �o�~ç�h��G>��#��4�ܚr,�B��X��r,&��7Ȇ����_��A\UyŜ�*| >B�=��(�/AA���OJ�XK]IUԵ����@@i${�߃� ����>aYVUic��� VUic=Q��l�J�g@�~~ALC]]',**�l*k� ���󎧲���n۵�g"E(T��+HS�B{XEi�J�.�����"�f*;+DqͲ�]���+���|?��{���s~�9�t~ig¯�@kE��C?�/���V�oJ��h�e�@kE��C?�/���������X((��$�����������PP>+6z��2����n(��%�/��������+��1�o��1G�������[$��857��^ �__(`�l�=���׋ ����.�DE�>�s�r�i�#��7����ЋV���;N|���B�c"om�����7�9���|]�57��={��铘�k��� 0k �x�B�D���)�By0���HVg)ʭ%������?�y������Ôܷ��/��׍��1�������zl��ⷹiO�{�˲k�K����$�K���D<�.,)�ψ���J��w��D����K��b�����Ԙ�k�������U����^�� �F�c��~FG璖ڌ�k����f��$w��ڞ�����e��NJ��Vr�I�����EAA�e����=�r��%��W������ n��Y*��vƴ��x�v.�C���c0]3����W7���Z:k�����K�a@��Ŏpo����/�}�ۂ#j���j�݌i�=�%׹�w�5*���^x���qA����IS(�n3j��c1��P@��P���W�������av�'��p5{{�g߽r�iA���Fd8�n9�L_����� I}�}k��朑zֹ��w���=v��"e���� �x� ��]�Aooo�˩T��g�������u���TE�9�y��(�l��2h��#d��|���mo�$j��zi�����(��{�۱gu]�Sv�HKK[���5�DAAA��9NFa*׷���������1�Y)Ij�y�Q?�#��TI��󱭽����MM1�[q�Z�Ø����� Zj��ѫ��#on4�� #��i�S�p2�CC��Ʈ>�2�� 3��nK%F���FBvaQ��M���X#��rD�^�� Qm񉨔��os_F9h�H(�4g_=�u����Ն�� ʷ�kͺr*��?�^XtF 0�j�{s��P��yҳ��7������뚀Y�|��ݨ̏u�uLD���s��/��JmD.!��Q׮�:�@VFz3�0\�d�)��� �d %����'<�0/颣*&��R(�&VG�.ʏ�% ��:(�enQAV�]��������VF$g�?j3�1^v����]V����su��t|�)�w/�t���$��k,��l��!w) ��F+m��zBV^nj�镣�YnE��*8�hھ��7yώϒ�W:Q�N���5�l2���I����WG�_��ŸYWt 3D���� ��(��0���1G����d�-�-��|Y ߜ��]��K6�ţ���Ì��7)QA.�r$v�6��;bD���ꨳcƜRW6���U�8yYo uQ"���B��X�:���� _B+~v�ڵ���ϤHM�ŷ>� l*�-�M�P�� H���Pr�i�ډC�hhxH �ND?C���ooj��~0���X{����z�޵`���������u*����0��5Q�u�Q�R'�i��m��ݕ��n�>x�q�T��9�t�ùֹ�mU�%ܬ��cmf:���[ڧ$��T%��J�d��JC��.X3�u����G)�ED�5�궻�L�����ҧ�n�5`�õ��r�k�x'�ɟJHcʭ���80S__�폈~p��Z %y�ߝ��dg�5��a���[$�g=���n�]�V��p�2E�iێ:��L;�} �M����'��܂�?Ӑ��ݻ-șA^�#�U�{�]*��]�]��^��:��P�� ���Jα�\�V���r W��}�! J_Z�k��&��l�,3����}l����% b����g�|����E���l2��FL�� =q"ott*��`\�6���gf�9��7Yj���O �;b��&�)*7�~�rc)c���ۘ���]1b�~!��"��܇��!�kE���Alr4%������m8���ZXX�� EZcF�x��A����l�?-a�i�E�D���H��s���g_ ��9�Ooo��^�����i���X]_)E����i5m97�{a;�*�����K���u,��:�&10��͏�_y.R!CN�����Y�T������[;7U(�d����q�1��zuG"�h4ATYS���ZJ%���xf�G��vF���O����EW �6� ۠l��e�Ayl\+:^xl8<����������q\ 78So^�PUM->��{�fl�D��#����3��qA���}gcI �WOhΉ�����{,Ĭ��j��{���Q�w�\U)�b��1�wY�`�-�����@(��yT��\�VJ�f���#����4�P���xG�w_7��}�9W�6�O��pw|(0w���c��,�"OA �XB@aU�UP�d˺S��\�� �q��Q��#9|dmz����u;�U6~����D׼pe��#����K�ɼ����E����}���4���p�� �5�����]��0I K� `p��ߋ��Z��ݩ� h �{x���}hM�u�M3@ZrZ+':���7����ː�0�a�����s�Ki���X�P<4UQ.��c� aR�l\YHa"�޿6NGC͓V:@SN3��6&���厉��k��&I?<��`����X,�_L�S����#V�l���bG��S���ջ����5J�(��=����2�Z�O=�b��uY��-�o����(��\���)d�HóMK��`ka�1���X-�ѓ6����Քl�X5VR�VQ�R/� �e������%.��k׹�=ߴ,��`p��ںa�"�F����K֟�F�|ͅ ��y�ӻ�`1X�K�Y���h��h��&��v�9�E�����TT~�Z�?�ܷ\r��yR��ӷ����5�x���Z�]͆�PW�0�����;1k7��"h���4G�O��QN����Plcw�C5�8h�f�f�ۑz������-���>���t  �N��A"psq���.��� ���n�� ������ӝ�5��/o��t.,���ş�0��M�| �ͺ���Z������� ����U�Z���:+��:����J��� �7�'.��A��Zc�����F�w�n8��R.g����[���z3�k7���X_�af���z\��x��� pJ����y�� �d2�Ng���R�@9;G� ��T��TPi4 �H@$u ��W�f�)�?��;� cw.ւx����_.w|j�������?��'�����u �&X|a2:�3g��yFBv���q� ��3��Y;�d\�a�LG���}�O�k�a�Q�M�:�A���1�G�G>�Kc�����_woŭ{��HR�C������ګ���.�cG��ǐLU4&0K����1�ݗؙ8 �� @o#I�������Alr`�-�Y�J�d��߷t`�JH�.4�#�"���|��Q�7��`0,��,��]�|�����$�/� ����,^�t�y-����61���Rc9��hX\�&�\dL��f�N!�F{w����g[H�t�'�؞O�Gv�x嶌ؔ�6��k�/Ee���Đ���;��S9���L p+N4Tiy������/,�Yw��TUU� �<�;�~Z ��X���UOv�#i�$[����D��* {߮ ̎�ė�>�I�F}�i����'��y��5��q�!+�T�ڐ �{_��u�׀"��N��‘����?��� �{񅰵����X;hpW_��w���ãE�'@2�?f��gT��b1]�+�}q�.�e�73:��a��o��3a��r�b1�W6O��p���D"!77��8�D%+9�u2&q��%�Z�����v�]B��i����T�꾵�) a�������+fGsC@�u��=\Ҡ���K�:��ߥ>I�|���N�7a �z�F�/4<ҟ�a�}�(,ؕ�Oց�����t�L������qIQ8��>7���� �q��s3�*�O|�ű1��ѕ�5�Du^D;�������.s���4~���� -�U~�{_����=GL:�-,'����o�^w:�h���juᩕ�O��,`7��X+���SYb2��?1""���ԗ 798�]����b׼͏�6��%&�����$� �ңv��E����������|���^=��*�g��iΜ7\��ħ0�b|cFV5��xnN,��FN-�"$%�C�Bia��8 !�[f���]&l5|_X$��'M )XmٳP��e�c ��&9ڌ�qL����}[�v3�����xrg�w2�`Z��������m>7�;w��3Sb�̭G rqKM����B����zKU^,`9��G˗�"4T�=�E���#�98GΟ���4�[=b�r�O�Q�XQ>( $�Dl�+7�+HD���Ԕ kNRSӵ�u�ĒQ$(/-ey��nO�#�]�5�UM���')���f�����,�YBf��Tm��v^=�Փ� Є�,^ى�x��f�A�=9���t��ʵ�Φ\P�*���Ml��8�4|� �-��;.=���:z�1��/ ;#� J�nY�n��)'4���g�R a�ëfj�h��*A`��v����6k��=��ff�!;*NOo��O���m�(��P��Zd�5[� >�P��s����d#] !1E9Q<��䈏����������Zğ�"��_Z�k��5ЀG@�fȐ� ���JF\l� �Ǝ ;�)y�6��n|v����]~f����S!Rk+*���A�ͯ��9j+i!��9�D�!k�I(��U��R}:;��MU+Yv����S<�Z�˲T]] `������^���dmm=s� H������NFnr��{�sQ'�=}T�=���z�8)����b �]i�E����|�(_Y�yk�s�~l��V�����9(�킭������r���l���c� � ~f{O��UW"���|�����i�p���#���mG2�����B*|� � >f�u�mk>h������7�مWyg��7�3��pr"����.!'f�N]�[y���_)�W�V0��ߧ���� qtM;��1�m��ۖl � ��g�?t�e+t�=p�J�a�ѰХ��S�Nr�۪b�n~���z\ġ]1Ü��؟q}�l�;[ϸ��: n�fk�8rũW�+%(�Q~�e��� �v'0jބ�z�g�kȳgϞ���={��ٳ� %��b􃐋�u�-�(!Ƈ�),J�Ӟ\�:U�������?�y�_y"Y��P(���JD(����ʀ��̂��W��o1��EJ������B���5���J�ϸ頩��P1��0ٿ���_���= ��F`�D �}��~�ﮬ�J�Rcή�c{��f �.d��^T��x~�*��->+n����?���]�# ��6}�*��sMM�=��׮�&�V�k��7�7�:o� ���S�Ab�,�G��� ����p�񡗈� "i�3 ���Xdm```� �Xy:K�n��a�p����� �Ѣ���!.����b�)+v�"���l��c�oy���e��3�9��\����[EF�}���-�_˻�����ޗS�U���������َ��1��P@��P���WE�9�y��(�l��2�if�g�(=w�{��h�q���B���{J#��uҕ��g�ro��A�?� �DE�7tt��ŦTJIIGj�d�-j��� \�φ���&����`Nt��!�����7��Z�3"n�׷�V�܉����E����W7m�]$55E�^I�P��$<�:�T��F���FBvaQ��M�=�]r-�� ��L��F�s)�X�#�^��Β�[�2�� +��|U°y���sK�(JYi)�rٚ�;Qm񉨔��os_F9h���{,�����鯂f�w���}�^�����?� ��7�߳��%(8'L��#�Q!l���O��7�s��R�&���& J ������K�}q= �Vjc�� �n�俸�j$ؖ䱫OF��-*Ȍ���R���O6��t.&5�(/�����&It5��O�0�҉����a05 '�14Tev]��u6{����]9u,� ���4�h~%���i�&>��yIU��;zLpe<��3���L"�Ab����v��4��Jh�]� @�g�8��?��� �s���+*��������J v_ }y;��D@yx5s���UbwbZ��ά:�t<�}0R���~~���F�GcS#�LF�"�� �J ����A77��䎞�rO�v�a��B���'@�}�5��v_J� ����)�%�_�u�����@�������n�>:�x5�����Qux2���ٜ���! ���1L�t"�h���T���J'np�I�K`���e�f�U�o�R,�ɶu� ]>�H��@m�����}W�H��<1:hRsC��]����niFL��Q�#����8���#gbiC�,���6�u������n��q2!���d2^��ʯ�C}��w�ՆB�s����%�wN�i;����2�oSЫ�o���2��S��@�"�߈���W��EW^-FvD �h4���T=�c׷+���H�s:(g�\��7��t"�J*�$ 0uo)�+v��j�j۩��@��ΐ5�u�eA'/@˗#ߝ�? n19ζ�$}���>iTFW��`0�RB��jj�H�yg�UI&�;�z �<���� }"����ĦY�' \�m%���r Hm�>�qL�0�D�t"��������e��ۇqu���d��Ϋ���Y�8��֡�+B�/]�]�Ng�fJ7䟝�dy�&O=�"T�k�Ɛү�1K�n]O��0p�,II�u=�!�Nc��C�E�1� �n>��<�@}C=�S�����g�i�E͡�^��Y�x���d���zb ʏ�������9���S__�E����{[l[[��Ӟ���G �kl����,� \��^>��9���� M�t��vE�������o%㈖���Б�s��������d��P���������'����@@@@��\B�S�)D}��~�s0J����Krm�####=mm�e�j����:Z�5�i�*�� ��� ;e�����n�����GAA ��0'@M��0�҉������!3O;���z����/3���F�JNzv�vb�kk��k�����]����O��8��H��i[9%���c���o���U\k+d1X:���� l�#F((�=3=o��,��!�$U C�� o���E�������1�?��V51��� ��Y[k���W^ZʀqS�v�O2yT�X��.� 00��ҩ���������0Y㙯�?K���Q �� r�g׿�2��u��RJې|cqx,��2C��h�7���٭�t�md�H�@VbB���/��Gͣ�ա=�Y2��A��} ���7qHN����(JMiK-�Ij-�ZK6Zp�v�>���kH�� �Ws�^қZ����XE�o��KJ�[9�rG@�s>�IfQ��*�0����.�?�i���'W�F��vZ!e�>{��j�֋tdLL�_����o����o��NU�J�43�����M��t,aҹA<����'++[A���wZ���A��2� ���?�;'@���G�&�z�I�����z���V��'w(F�C<�EG��~#t����!<..��,A�W����-��M��5S�\ =�64���f�(����$g???G"��������(��=p,��k�Ѱ��/{�f�$%Դ���M�M��v8쏬R��t�.�ws������'�ro8p���c'�.��?��D�۷F��^eى����f�m�Oך���>��N���>d��oX����5�5=9�zÕrd}��6$} !:�i%�O�=f��wh��m���)�$^����| !���R3|�˾�c��u!>K|��f����h�e��%�I �C�5�'^3��DJ'�p����ѵL��yRC�� �F.~�;�Gu$]q�r���'�� �;`�m7o�#S��H@�̓��?�O�N�:��齱�� �v����N��Aw �( G��S����n('***���??^���������/--@�.�4�Q!*���kZ3��?��!(���u��b�jp�����u���� ((((���L���tv��'�)�� �=QU�������4}�B�EA�8n2'�\���� IDAT�/�~S��}����l���FG��Q[�t�o��Pw 9aA�:Ơ1�yھ)�]�Wjr�<�u:�X�}�C� ���F�٣ex�+���=���{Ă-hKq��gF���P�QK<]-4Dhe�/������.L���UV�#6ŝ�� -�!DrN��%5��F7���3xLFGSe��އ����1�#��)�n��^���m�%Q.FcY�݃;μj H�ww��"�o,N��o���vѹA�� ��í��#�9L�����C���31LD;����QYr�A��^�C��O�xg�Ҵ�1d��oc�y�Ko%��JS#6�����K&����ț9^2�|�w�. �+������oW�v:5���94���>p�9��̥?7 }�+k~h�a�ŵ��, ��$� ���Eqo�$70��%+N�bi�I���>�}�Q^��Ӄ�PP ���V =]=we1V~����ŭ��ޞ�����;ɉ�d9���:S�X�p��1��AxmQΞjӫ:�I2OOaG�����0oOa{�� �$����j�#�e�}��o�R�����s�)��^����l�m��r�#�s�y��s��������JbpLp�W�s��<αN���d.8��|F�����b���E ��{���?_y� *��V��6�p\dmw�/��tr���g~i}My������Z���Y�-��L�)A6���$g�h;�櫐q+ϵ���绔��<`?%z���Ѝ����\�1�Vyo��>��!�DA�� � �5�*��~"�L=�z~ �hm��K�d�~.�<^����J�� v�"h�Wc�1��K�5qWg�t6y9U���\�@`��u ��9\��M� <~�\]|�g%Dn��Df��M>����힩a}1 y@�0�y�z�%��e�qλ� 焕�~8k@�(����oݸp� G�ۤ�S���:����,̦��)L63D����֎��察7�w��X/����/(-o �2Mń ��5#�x��><�Co�PB��� =3�U[������?��Y �����o[ R�;�ܚ����h"�r�� I���NɊv�.��!�8:���9�0��BiR�b0�����T�!�¦R�:�:�DV];@��T��P!HCN<�w��oK��,i���i� @}B|��1� �O�tu$�o�3��޸$�����Z�������q�1���DlM��z�GP�h��x,`I����Z�Nܛ@At��8�8���F�Ɣ�:�l�͟K��%�IX�e��ػP;qO�M�t:"OG7��/='�/� (����P��9a�h���m ?5�����d��mG�-��/ ʀ�a�D �t������'�{����������'���?.��5h��4�х�'bJ�@ �%f�^6�����x<�NG�h,��,�V��:��^zea7��8����ն�6T�w�/��f�Py�r����%�wN�i;����2�oS���a��ܹ��N"������"��r��F��1ټ{'f������i�k��v��+`v�����0����Y��`������G�A7�m�k��AQض�@��G��OU?����d� ��_O�����Ϋ ���,8�qz�cOvM�#�1�W�JV�N��d�px�����ʊ�\~]��(��0p��@����>��/��I�QN�f?Ċ���@l�sP2��m�t}ySse���K�J�@�T��h4�m{��7)�Ἔ��*>����Hl��ΰ���t�6T��m�I��A��6O �`���h2������Z��sJ��qf�����q����.7驥GY��b �MZ&��%���K�Xy}���wz�#+�r�����J4�I�����E^#�m��O�n�t���b����8'�i�����[��`qq���:��� Q�/����...�w..�������{�-�6uֺ����g�F{w�������z��Nw��N�cq�6���4�q&�Z�._�ПmQu�añ�O?�T��lٿP�� �  �l�kQsh���aV#^m�9Yce��v������(���6:���`}}��ɦ���Im,�{U;VO���/,���%",RUU�&Ȇ�zog[�$*�WYU��i7̎�ė��*ʃ1�3"�N�|��t"�P�P�����UV��l|����2$}"����px:�e"U���Æ�* �(�x��b!x<�ڥ���Q:�Y ��W�Q*K?����,��^7���|΂�vN�c޳Jb�J�Ѻ+UG���#z�{�_���2Jgdj� *��ҋ�?㠅 �_yQ�������B�Gq��T�d���]���w�b�k�yC��� ���d�ń���oM:��L��z��N��Z�_���1�L���ˌ� �����c�i�m ^>����:qM�1�%����u8>r狏_@����o�>ЛMd���i�� ���� Q�/����l�����'�č��*��0�V��k����� t�/,�ԓ&����Y�F���2�1ʂ�r�m�r W�j羭��s�9/Gu��u4nm3��"��ڌ) 9�o������r���ҩT�`��[L*�A���d2�T����dt��L&��t�#��s�дrw�?�L�ןg,����.k��R� XN)���e�e̔�8%s�Q�\�R����{���M��i/��g.!��!8r�,����ߜ �r�O�Q�XQ��7���iL6'a�܊�LP*,z Б���9}�2?���c�����#Ԅrr ��#�1���)��O���ǍTn-}׹��Cz,u��q��dg�=J���Jˋ����F���u*�׮ck�U�4(J&����D��~��+���"1=CU~"���I�腅5�E�PSQɫ>NC�,,#%��%Y%�qt;+͜�$�B�w7]m>cw4�Q����;�y0���F}�3%�&�X�����cG�!�����Ozv��F=N�SK��YZʹ}Do���ro�����ǽ�C;˝���P1� M�����"���+���0��ߧ�����]��uM ff{#"zϦ�G���OSrMa�S�>G �^��\]��^_�����ymDYg{%FuV�q߀� �z!�����l�yכ>1L�����vK휻�5��Ҍ׸ ��<�_����%Jj/-x��zdz��U�v��\{`����](}f�g�I����57ח/[kpT��@�K����f^Q��Ҕk�{/et�t؊�V�����~!0a��=�����[(��6]�jE�Tq�Fn��OV&�+3�����M�s�-�ow+MlN9��5��u���/�n��uw� ��p �m���t��8�ɰ�2e�(m>`3��tm!�����i=�N]L�@�*~}����*6 ��P���Uݷ!�)u��"������W���p��KK�'/FEW����5*�{�;/�Nr�p�8�0��g=b��}�q�x�D������~���6�Z?�Ss�5���ݹ�qK��ɑ�)o�]���y���9�jm������ ����s} ~���H���������볾|����k�Sר!g�������9���ZP!*�B}�?����|w��OF~A�e����y�#J_P��d��&�l�� ��]�A����l��O 0�b�wƯ�|���.�O������$3� m ~�*u�Zt$�=�k�!�_H����_"���be,@��/��! �o������B�޹s����~��.���#;܆�"c��]��_�y���q��V9vڰ!$�:��� �z���Ip��[)�tq>F+���@���Y��(�����?���=m�}w]�`�L�ܦ�K�9%������RK���"�� �s�>2�!� ����~��'���:�����&��s=�g����|����������%�1[��K�|(͉����{\>��� �:�t~� m��k��/�J����a� ���)�V]��%��������Swu^V@P�h�a*/�ì-+�p1���_����������$�VQ�x�Yb��q�5�Ɍ��~�R��0���9j����M�e�����k>k� �b��$ph[��s��z���x�`x���6(>����%4��h�����TS|���S�lNU��X?���4jL 4���6¾��ޝ��>��]���#5m���.1/�/-���ml�-�Z.`�f>WE����Zx�+&n��\Đ��爛��7Y>*��V����֧ ���b)^@���6�������!����Y�q�"�;����N�R��g�>r6=/t���4���c44 5��x4x�=%-ME��a8{ k32�SŸ{ �+��tgK��~,{��0y�<�g)A0];��SX���u0s*�SX���U��2T�s��+`������nI�g�wԕV�X�e�T����V =]=we1V~����ŭ��\ۋ[y���<ߥ7����)��}F_��� ���I%����n��8�q�r����m��9�o�P~�҉Ug6<�ʼn��uf��;�����V� +�n��4��7�� L6Y>��rP� C� y��b��:�����ё��ut ��=o��ފ��ɫ�Xy#��F�����-�_����.�7 �Am��=��g���A��^��� ��zs��0+[x��)�n���}�I#Vb�忦ʷ�2�A�-I�X U)���?º[�����g�L������x؈���p��Q���^�X�`��v��38����]Sy�C5w1�j��w���+n��c�� �V�r�oϕ�F`#�I��[B�؟L���wQ[�~�ҳ]� C�3m��#�6+�wD��Q� s��Hȹ���|��� p����/��j�_�󙉑��D(?�|2Z�X��’9j��v��ʼn L��a���脵^���k��!��9DY��������)�9�@55��Cy��gm�����#�� ��oKL�c1B���m��x}km���7�a�`��dOa~�(�l�-�S��|�>�jK.��* &�Y?��ZQ B}"��yR�"�:�bS*��$ߩđZ*᫊��K�a2���gĆ_\��WPȺU��ȍ������%}f4��S��[�L&����\_Ox�t&+�}�2��K�!���ig'���=��r��I�*bv��Gb�f�m�8s�v9+9j֖���<��¸���^5F\��s��?T�Ѹڟ|�����<��8���(�FF��dvO�b�'�y�L�{qf�wh1+n�v��adzeFȑ}���Aoc�?��� ��E�:؍x�{չ\f��jW�����ԛ����nb����5f dn>Rs�\�e���ko���{Cf�ʱB�)gvx���D�.�_�9�����uTT[���&���E�TP1yb �` v��>�̧"b��-��(� �%���0��A�8C|��X��=��}ιg�}2z�G�d�gpk� IDAT�s�d�'M��������Bf�������`k2�/=�6��6����A�Ki܍[ʭ��[�}���c�;��R��*�~��yyS�r�4���ܒ����u�v;�J*Þ�*if@s\b�RP��UU���M�ox��l���Ò���:7��`��*�R��r��r(�A�P��K��{C}ah��q��Wj}�!TJ5���Jg��z*��Ba��9p�����>�Ӭ9�3�,�, ��7�h&���|������j'!��������,����@I z�1������^����{���:[���`�8MH�����R@@������E?�Zq�-���V��+������>�M�_Z?��#<� ����\��onǏ�w�Q�Q`�"�#���7� Pؐ�t��r���(\]ӹ��L������C/�)r�u�t�G=�����ԕ��T���Nl�����!�<��H���Ӈ���7���#� �!W�5 8���2%�kK!#���2N����}sI�����u�S���)�x���h-}�����Ռ�g����慲q7Mv>�-���å�y�\���f.�/���,;Pe7(P03%� Lio�KO�'�o�����6cp�k�Y9���9Vk.V��,�`4ĊO��T^>w��+�8^�5�4�-�9��&u���jIN[1����՜����o��׿��E~�9׽ V�l{/���;[G���a�����zz<�a� 6}�"棍 ��:_I����5[�Y5�c��ٶn��ׯ���)Fk��%Y6k��O�[k]�y����HcqPXFv��'���gc��,%"\���Y�_�㯤���w� �KCM��SZ �/�Ǫ��)��g;L���L�W*�v_���_��غ :Y[o~my�W%e�4�E%�G�e�c���yo#��;�^U��q�q���^:|uD�߸�ή�0�r�P���m\4W�Ѕb��������l����C�-Rj��N#@J\2�D��0�d (AQ.�� ��� ����� q��gG��${�����[v�󁭳�n���5�h7k`n�W#<G�o��֊�^���n-,2�mے�?������x����6-�ؖ盃�ߐ���eS�m{x���7$t�̘j2i�b��}O�8h!B�ڼn��>��Gn4������=�;Q�{3��$�]w�3��^% �&�]���})Aa֦m��Vy%�x-?ޤO�zu��d<@p��ٴ�k�j`V��*� )�H��MS(�R�N:�]��%�h!% �bR��Ig�)��E�a���JMҹ*�o#�v��@.ǖ��;�f&M.&l��x3, �C\�r !�Rie�p���&� {K�U�8fb�j�����J��F� @ZY��ӥ (�o�l�V%Cj [G�EEy�����ե��e�J���g��_c�i�B�qJ��ԇ}LZ���{£�/�0� �+,̋eG@��u F�뫏��<���Y�O���8�i�֡��0����t"�`0q����~zU3G>�u�"!�7�Ub'L�a^��Q! Y�1�z���`�8�ߝ������J2��7U8%���&�-}��~"���[0D��և��y���*��񃽽Iˋ����SR ���.��۸�xܐ9Gn��G�&8 �.��7����?�!v��ص��Ң�tE��Z�(T���˿��R�>ǝ�=J�`�t%Q��O�� O�0�͸h��f>B3v>�f��'b������]��3���B�z�VÀ��{��5U�٧��:ݣ�ӹ&_�u1+?��@w.������Z��!����~�b����/�h��������%�W�l�^d�A �K�ʾڷ���C��T�>��b�t*`�x&��w���c�x�bq��v�X���1]:` �9��)�A2�lR]���"ƷBf  �p�v!�N��9�q8���+[������ΎXE Y��.�X^O)�;}�K����3Y-�{�x6T���,��D> �D�i�.~z�Kzź3�⌂�w�=�������魿6 ���r�c�; ��{��o;6�h5���\�v�]w��3���.������iz��$3j��e��+��L�b0 �OfDpk�� ��q�q{�*�E���wij=*��E�6��<Ԉ�����5G�/ wI/e�,u��4�3[UzCIe�4Т�贉R��?tw��f�-���ܻ�m��u+^9ñ�Ը�ET�]{�o�(�7Qo� �\@���Y��V�4`�AF�"�d�z�v���E6��,�!��y���@�/��z�5�h�a�Ʃ�����kT٧��%�:u��ۦճ+O~��-���?U?�m�n���玾�w�B�5����*�o���?F[�jrMm ��̈�-���Q��&C�/��$�nj@�~W ���555���x��ZJ �@ �*�7�IxW����}�R�~�:U��J����j�;~l�[d����@Fdgmr2!#��ז��2[� ���F�j q�2�\��6�����B ��*BBr���t��`�}���U��dX�n�_ CBc�?�� x�� eՅ���P�� �y��ƛh`c�f��U+�M�!��He����v#�!�=�ds��gRSXT�4�T������T���&I��cc�c��ͺ�E ��o0r$���� 3�V��������;��O���Clc�盇2�9 �sS��D���y�8�{Lo���h�9�?�<��'��NʯjH�k-yj��q��ۯ>!6�$�z����w�<�Db�����؊d�C�WB�]kn���ԳV�}�@y��U�fJe^�����/��3P�������~!��llY���Q�SO-+��g?����O��b�cl��ooa�"��I�Qx�4�G��a!? 7��:*���g#̋`3 2��B6 �e�b�.h?��sM���O�9�� �,K��w$�m&w�{� ���\���Y�-.7fqS�����6�J��s����w�p3jr"�O=+�૞c����Ç4V�~��x���5|>qW�u��^fqf��t�}�|���պ�K`��)m���]V�Yɋm�H��[�k7�k �63H <��Ґ��s'�nq�f-�(Mxq�h ��n}��3C��]J�R�"o�g6spT�=��?[`4��������I)����� 㷙_z�t[[�*5k������6#����ʖl�Pߴ���������%��W��|�������{�n��X�U����{_Qp>i5�e �5�̡���S��c:�]'�u�Sv������{i�zn���#��VY�{�'*��N_s^h{���O�����C�:mY��Ĭ)���-�.��s�/���WZ�Ԑ'���玃�{ì7lts!1��S����vxN}VNy55��u��1�?;����Jsc��~쏍��[�ooo���%�߆��::� e��I�laq��﷤�o������ۅn�z��X?8��>�9�?���SG���?��(?M�oJO�0�|\c�{`z#a٨iӌ�:} \*&[F�����a�����~���� ���槀��o�qԜ������;�o���u�q�﫴>�D�i�|;Pz����4Ĉ��*Z?~ D1�i��T�9ivs�� :���׀�?� ���� ,��ˢ��61�� �O�S_SS�`�����~�n� �_������߄�>fS]�vl5������������������S������ �w`���ۯX8V�ۇ�����������o��7l�W@���7 Y{��O_�?��w�*7 �|��=��a ������#�𤰰��I@kGXaa����^E�{������X�[��'��u?0_a@ӊ�sL?_�=�n�8銍�|�MtJVFR䫋� ����?~t���g�[t'G��N2-f;����- 9�_����Oy��������o 2���wl�A�[}��7�=�w��>�Q"-B��sw��z������]�#�pr�-ޱr�R������~� a��L�k�~���*���n��:�����;/ԩ ��� J�[�b[CJ���,s��q�!���W�F6]6�����]�+�������W����A$���ƽ�h�_BT�=�gI���H��B�Y��.˃�q��w88 od{����zs�c����C-��țy#�����m���� ��C��v���;��%�"�NS�~�/�U�5��u��?�'��=BDs����4���PhĦY���Wv�a���웪��b������9��&�cu{�F����s�U#���S̺z�@��j�n��%�J�|nz��U�a/�����Si�7�|23����z�Ac��/����X 0����mI���٘��H 0Y:&��L4Xm_�1k��*�\���yϣ�f@d���5OWJ�O�Y��i�pH��4�� H�\r��UAVEj���M����`���:U��?�����%����Y�kM5Y�_?G,^,����F9`Rk�[��G��T���^�A �󍤠*���),�!�t��gor�Yi�ae�G(Ax��١dr���Á«�*��gzz����x �<4�^�]�c�:�]�(�v�B7���K�D��hOٻ@M�>����gELDR�d�L5u>fIz̩a1��;jȹ|���"& �a� J���TĜ.(Yl�p������*��2���j"/�?X�����E��-O+@��s�i[/�ϳ ��>���kk����]���k��:�2����j��8U2�4����[q5��\?x�/����Tt��!' �;������6�7)򢍙/��T���Ś��n���1+�-��O/�{|����zN���m]9EA����P\�ɹ��`��qp�m�?_��u~�[b���W𦴙� �EL AA��P����AC}��O�Ǘ�PRl�dT2�5�����c `��<���d�t�j����T *�FE����7�I�sPVzT��W��2����c�;YT�U^Fn{�u�lYi���(��?r�-G�G� �܏X��ހ(�LRR���3L����|=���^q�����v�g���S�W(�L�}�~,W̅}ǟm;��݉-[�\��nDL|��������hLw;�L�g��I��h�K[�A#��CC������4V�YSS��g�^J��s���@�$> -5 `~������9ˍR��J�1Yx�9���?Q9j}��,���P��g�ԕ�5)���#8Q�2d2�;G���4�~Z����/ŽS�1���8y}.1 y���Dd�]1q�r���� '���@l�\��}���*�h��.�5 ��]���ǫZ�u�t�*I- R�Ɲ�[��2W�@�׫��,���%��o�Q�12&��w�,��*�0_@��)QYW�@TG�/"<�9�VM���fV��mӧO�>�-x�ɳdŽ�u:���<V�SLp_��fӕ�I� k-dY�)\��/�q �����զk�'MĿ Jkoi��;FM��w���Y�;�߰ ��x&�ܨ�|�a����ԙ[�U8:��j7����� �;��)���` �C��:�x��׬�Ut�G����S�ӯ��du���R���O�g�}����!1p�s�-�ux�� f��Z����9�jr"�rZ��q?1e��"ap��ӓ#+�o6�)���/���4��{m��T՗��z6�kl�4�H���x1U�����f�P���r��;��ll��l�~+�ҽ!�^Q�?~�Q_B>���:��P����o�>����>� �䆪��^�v��z)%�խ[��e|�S�d�̹K6z\�x�I*���|��m�M_J�������G�'vU��o�ގ�-/��o)E����)54jiDH" I �K�j[~eq�=�6�P���n��ϓk9�����ޞt^po��"������d٘�_�<ȍ���(����9P ��3�Q�a�J�Ӥ��=�5�Wj�z�m���jV�[�UA�I��{�A+�n�����������k Ay�e�S����d�~5�,�`�ŷ L:�����E����K,IfԔ�vȦ�)gAXm�g2Y8�<�S���P䳀�RTPl����� IDAT8��<L��.��8�GG-�l� gW�Љ���n��)�?���ŧ��4��D-Im���Y����t�{ICCy��s�mr�9��ķ�����y��(=r��%ȶ˩�krds��b��� �� �F��m�T� @Yd��ۄ������Y���S�*ZY��%�$&P�N����b�������G����Xw<`��� '"�@Q���2�7�q�2���S�s.�F��I��p���Q��{���U'9��K6�5�X�� P�t����-j��rPb2�%�|����v�EÃ�g,�Yr��Z�2� z��� ���M�5�hȵŒ��c�'�`�B�8j?y8n�I� �a4�h�f@0�p����~�{/��Hh���] �&45 l�<8g�M���|&L�p���i��Ky4�,\�p�@`��… �� ���Y��S���M|�����i��נ��/�۱{U\KG @���r߅����#��n�f�����իWOS����V��/� ��jH�'|�� �9;NfvNw��~���e�[�񌧾q��ަQW���&Cf��Ty1��$ �� ���5c��Y������ �qq�]:b�����hK7斴nQP�Ɣ_<^:5.�ú���*��0)Q^^Q�S�K˳�&�q|:2��2N�uC7��΍��Ғ�/�*����;DN����� �Q��[{��"":�3��~��P����CGj����$9rav����*?�(�?V���]�A�}��^o☬��9�w(���ғ"�or������# �X,�}����s�I ���H#-ZF��n1�5��P�F�&+WVͩ&�C6��e�}Uf)E"�t��%3 �'�22¶_������j��1Cup8<��XU����%�Bsl-7-���6����Qj�|en.c lLzL���g��p4��o�z�ӻn*.[�=i���u5� ���2#=�ݣ�#��ZV;?@�;��+$"���5~h �c���n��Y�Ƣ��'�D6�����*�k��=[vQl�)B6���#n��� ^���wr�������;��Ѯ�[,��Ͼ���e`!��P���qтP��Je ��/-#����Ӯ���b��Bs\w�li? �]�kl�oʕ�g&t �� f��ݤ�RY���V7�����B~vV�û��ޣ7�^�ÇP��c�~� %��z����=��Z�p�TX�;6�dWnY�Bj.L�v�i_�P�m=���z��~���μ6GI{�t.�}�5$��=d�� ���qo�q����%�s��۾����8��'��k�^�e>۸���O�Nj+���y�3O�z��si�V/K<%���=�췙�{{�����Ȍ�d�c��82�j�ҨI#��^�v�u��C�ۋ���ݮ��cK��?����QQ�������8����{�nd���w�1K�O�� ъ�>��"�>���֔={���檒�۷�p*�gs�!��Ь)-��o0��WΟJ�=�Xh���%����d�;��C�����/jl��f�w8 �Ks�N�ĵ�$6f�T��7���=�����&��z�2� ��^��o� ��� {{o�7�`ePWWG'� �>i�-,������7J&���[߾�R X,���6٫���; �i�W�����bk�fJ-�p8A�p�븈�C��B���=��ݡ?����;��km�o�����|�K��b����D� |�,�RO��ҝadԔx�u^��X:�H��/�AAAAAx��f<=��}|�{h�0Pp�{�����<�����h���o? |�����Ԑ��^7�_�v���c����G� }�&J��R�9YC�$��-/H����?��5��(���>�����2��� ��2�%�t2//�ZRKc ����ӏ�@n<�����������è��m9C����~� ��%����(((((((((((=�PPPPPPPPPPPz ��e0������`0,&���} /c�~��D5AFI��G.F�#������*}d�ɰn7&GA�#�R�\�r�0 �4����7�ZQCxT�]vO+8���w�^#�s�zXK�(�^��._��PA��l(I}}���x {aW�إUVw�<]m%���/-�0H���aF�p�e�Om��&���}��<��^��6Ul���Spgæ����wԪ����!-�՗{/�p�����8��ɥb��r�$�!�����s���%lm���O'�'c}�nZ����R��+L8�c*��F�P�r�a��O�����㗩M��#b<��̎'����2Ta� ����V%���{yl5�g,w��wW@$���}mxn�󨻣�(x���rQ��y:�+5~E���� %3�S��ޏ�쇺��(��Kc���Rǥ7[OǕ��qH�ƅ[�C��[�����s��n��8����a��@��g���~o�QP�D��~.��!����p���K��”��f��Bfj���Kfp��w)�5�6,���-�#n�|r����z��.�7j�!��ej"����,��ٚ感�[����{����݌����;�_�9ο�˽WtV*�t˳�)�� �N�$�������/���n��f'���%�N�I�f[�2��♸n,WQ�?r�|�̻��� ��>81��?���E��T~zj�z�:Qm�ѱ��-o������N��E�ё��,�05ik����������Tw��WZ�H>�������Y[M�_��y�'4~@�����sJ��D? ,������bqX,�L���[붤���l �&A��A �|S�61�)��W���|��͎ ��8"G{�(�ﴉZ��K��/�$Ӆ����������B� uu͜�uFx��� ��>���+OG�ʏ��8\�>:&�ն�r[�Z��%��`��HSģ''�� b��9MSU�a���\�����& �Z��NSQ�a�e�y݉��� uݬ�|�΃R���B��fQ�^�,���<�Yߏh����x���e��:}��Y�%������7�D�4L���҇��f�F������P��&[ԗ{�J�l���2k�}��^�u�X����N�-�`��M�i=���OGR���C���~#9g��(��> �4��w垘�b�@�`BI���* @@ȇ G)�g��7�7|�;927/��� ��`�{��r��Ug�I/Y�/\����<�ޚ�J.�F�x{.Hz��z̩�w��k���a65���n#���$����z����G�V�,��\u:����T(�Q�C%��,ST�ZSYitI²tJ@��ԅK�_�f��=��e�C&����Z�q�����7��G��(�(�a��������O��ӝ�I��Oe�BCfV 4d���.��G���dt���Z�²��Q��_�|�Ƒ����j�$���G*>ܛ���g:+�ƙ����>] ������}.2��2���e��z�$�K����[��s�6b��8G�\j˭D|o.�w�z����C�K�Ěe�!$8�~T��g�:x�5���!���D3��̗{Vۯ�;Yt�*w�M-��=�����'�+�)�쭬�v�w�C2�\����ͧ����r�Y�b��ղ��̏VVVVV۟�ua��t�/sRI=�d���>u��y�m�[�Z>���e�;|*�o�?�꠫�X�vE�.3)�q-��?���̷_��8�#:c�f��7߾�d~aVme����s'��T�� �r�)n�ؼ�w��2���J���|Oe&�����wp ���������y]�QX8�� �h]����^M��0�������V��ga� i|��)94U9qY�򜸿k|�Z�1*;���yY5�4����kH�ԗ�y���=?� v�,(~sp���R66|w�m��4��(��{w}/�zr�z2�~C��%��7C���.��������r��x�\U'�@ќ��Oc���7DDj�?��X �ǘ|~i1~N���*�d�i���>��� @aHp�����=08�o�S����G �r%�Ap<��H]���W>��{i��� �,JzrFt8��69Q|�IlQUItD2KB��/6L���|ethz�Qϯ�ȱ�H��WD���Қ�"� ����Wފ.��Ւ~�Cy�5�}�l>Ղ|3�C|N��L���'/�Ϡ7�DNWו�4  ���(�ǂ�o|_gQ�M� i�bb�Ԙ�&*��SE�R�8<'����E��-���7���qk���^���i�s�@�r�I��ڲ����I�? �e0�x�a B�t&��X�z: e��b�: +n��fG~tṞù��K��wxEձ5����@ys��-�g���� Ȟc�l;A ì�K�;q�@�k!���Q�oN$0J�����q3-��0~�sV��������lU��TYL�t �c2[{ �L����(��T7kJ��σ�+����*�R��� I�C�E�EIa���)���ϥ�69�`0�_�p��}��N{:q8�������%6�~������D���jH�ˀrK��[o�[�?��=DE���\o}�ݤћ� %��,�k2�N�@�U������� ��$�����?��� �.`�G�U��h��ө啭�@����%l5ʢ���o��ш�+��hnf`���?�.-���=��e�S[[C���0��������w��:��T��˶Q�m��?�;�rT�[k((� �1#�S�%U�蔂Ȅ�d�)3b��������S���,��pO��d�62�L&�����L&�<��xdaO4L� :�e���R����Jdg�?����2�?���1%�[���f���o�6��1�������x���pܼ�4q�?�U�?��ɤaqtz��l��`Ћ^����L��4������5��9s !-�L ��'�m5����c�G� �^����T���vâ�J,���Dk+8%L�d�v��ݑ�_��?�Ƽ�m�������1{�Z ��B� @J\j�PCD2v��X�Jc�i�1y�t��Z �����O�����"/����3�&3ke�x� �.;�ƅ7]l��Ʀ�݅-�-O޳�l��[��Ap�ޢ֍��>܏]`{��f�$���s��7����6�jR�_�����i͏���>>�ñ�Կ�����l~fyJ���X���Ô�;�jҮ�lY���/��N�h�tu�$�ͽi��������ia��ɻ�t�G�K{����[K��>yk>0K�>���NM����h~ay��j|���$��+������ės�hY���פ�ߐ[�fi�R���NZ� gS�!/�����ўQZ�E_�us^�g�D �����H��7��&��o�ߊL����)hOh���Ef��=� ��a ���)))�P�{ QHVZ�^�]H%��2ʲ k�v#�NO��-,�� `=F\�o;32d���~�8�o�9�-����W&Ů8�����}�������ib(��o���(j�WPՈ)c h)^A����t���j��0� s�����������"��`yEE��q ��@���[! �@�7�X����~m��-6��%�lh��gu���… ����9��Ọߝ�AIi��D5�Z_ ��o���?�?������'�Ϫ+�od�BT��-���K �X��ff� *D�� �@AAA����yx�Բ::7?/�ZVGc ����ӏTW� ���PP�4~@AAAA�����%���� JOA�������2����b}�ʥ7�;��9SN���}�?ⴝᛞ��%жܻ���iG�x�-pݺ@O���(�����Ki���V�p��>��dX�ۍ�|Ǐ��A#9i��Ÿ�u �O�{9��Ǘ�L;�r�  �����[����:ɮ��zW@-��:2���b��KR^��w*�d��? <�s7o�\tn��֣p����(��ƽ���E�R6_ag>T�H+O�p��ݘJ�Q�X��l�nZYj���ٮ�C�'X핏�|5��K�O�~�뙊��2P����>�x9��e�?iSi���d!@0E�w>��<3s�;���ֳaP�9mSu`�sN� �٥�$ K7W��;�?TNe��5�>�ޱ��߁�5��XF��U[���ٻ�EWr��������3(��3紹XA���@T3o3Zz�^��|���:P�b�~���w1L �r������℔? �����e��Y�%���r�!r�.���kk�P��9<.��>[@AAi'뒍͵�������8X>)�����_��獟#�v�����, � {M??������WO������>�7RJ����V��k,'��Y�M�/Kp����� K`g�K uR ��ଵdE: rϥ�qI |w�+�:� �����]��My��?VI��aR��ͺ��X�yGo�N������S^l5~�7=�T��}Z���Hi���t��Ko�� 6\�m�>ؽ�Ǫ�Bč�[h��+:EL���^����m��Q��C��L����]TFT��}�G�8���5S���l /�ʘ�qZ���\4��+?$4t������!c��Jö���":�P��ݤ~mZv�����TmN/��Tu�JUS2�7��kG�����Ư�7�wl��ņ��w�5����d�ϗ|��0҆SvY�G_J�kZ���ꨗ�[g����6(�Y}'Cֽ�>aU��f�����AZKbr0�Cp���?�O�v*w�ś{J12FS�Lӈ������~�r*��?ݣ����[�z׶E#eIuY�O�=}>�0�������ѷ����A�p��PQ(/�q7�m�@��|q�Q�S��bz���|��*��jlX"��:�������Ո�%�]Ne|?���삒={^�Ii��eӆI(����}S� @6�qL!̋>q�h�/׎y�U���U��.�dȽ�-2���'����--Xs�Թ�:�$o:4)m������7������0�#m��1P�g����~�qrpH'���U�'��s�˪1�O������Qs�ûG̐�/�gN}�7����@#�͝����� +��܀, ��u�6�l��F(=���Y�.�&@�m��� ������8��c�c���I���(mbd|�*7"Yt���M%A�!j��d�wm�C��;3�}aS3@fRA�h~1�5d @�?� z�g�_�|�4w���^q#5yx'op�L����t������h�Ԉ?���|��G� �k ! (�ɒػhG�������c_O�٪$�����c(�%� �܎�����E�G,KOo`<���Myr�����z��^���41l����^]Ζ��FFF�+�~���U�IM�C�ec�����[?�|| �����g.�?�g��$�$�a@j#��S*א�S @���)h �Cp�#�J������R�mY1��!���I���E���:zp�Vm��d�){��Jx?��kVj�J���Eco������Һ���+����>fv�i��Ŗ̀����?H�Tj� ��W��o��?b��^�L������@`��Z�qfb����y!Inь�XN6k>�z��DL�/�}�Kp�Y�L.���5��ޭ�z�Z[ �!�����w^�f����nߵ�;%����'�&�]���m�*�'GN^�N��o���@��+��6�����mm��V�>`kkkk�������Kz�BJuMJZ���HI�p�<�j��d�De�+�~��X��i����"!$@鲆��ص��뒓+M&�w��c���A�����y����{��[�2**�a��&P��\� @r���J��s 5�9�E��<ػ�X�!.�ˡ�do���X�p�Nw>�uV���"��� h~6���9�� Ia��]6�^۶����������I7+~p]��4o��m��s �=��W(9�ZXd�۶%�_L��J�#7{�T�l\��(�����[�/�j��p��j*�\������2�CZ)�����R2�2i����&'�B��%G�0�����l��_����y ��ɾ����rrU1w��hP��s��ٲdH�f�����FiA �����6��c�K?��,X���+h����藀�:B�h���xÛI�]���x����A ^_W�$�nKm`~���k�n�rFc}��2��>����I��� 韚F�ta�Oǧ��a<\YW�!�~��;=b0���O�4sh��XN+{��{{{��!!}_\���a�:�e@ѣcge�l�Z,NϏy{�̹��f��qC��eJ�Z�H�`�퀨����?��:,ʬ �睄���)�Q[Q1�\]��ŵ���[�NlEE�[E�a�az��B�B0�{��x��sν�ƍs��lͺ����>(����4SC�"���%}����ز�s�S&^��f�o��0�p�_��]��lqp � _ԧ$!��о�w�D���<�0�����6go'��v!!���?�w�ҩ�JEA���iv�j⟼-�l���j_�B�j����r � -;��� Q���x��0k�T������\���� �'��� 8�X�����r�Χ��ً��p��Y��2:�Կ �����斃�˞����3}�peQIr���W� �������N��h������ :EO^0�z��4�M����B��@�� i�e���ܺk<���|�\b�Γ,� WHK�2��Ņ4a'���N�3�3�����R�6u4:/�����W�mgZ���͊V��D$�|�� 7͆'XYL��2N�.�׏����ѝ1�Ӷ<���'�SZ�B����yqƛ�lW�N�?`�Oc��XXX�&R]]E�P�>S(���*�ڔ����o�b�?#��, ��זLh6�&�p���>�ip�����76�c��P �����\[V����ș�w��=�.C�9�#+�8YB��m��v���{zz䚩Ioz;��|�9C�6���iP��=,j#��/��$T$�C��"��b�N嗾����͌ Y?i ����Ԡ�z"�����^6�u �������0��(��� )14�t���F�V���[��7�R�^�:�ݍ� �X�xO��X,-R@���MҍY�%�'�� ��k�Ұ5���Q�Tɸ� "n��S۞��i9t�3�%o~*}�� �_� �h�t�,� ft�y����o��xN�P(�O��Z�`ߗ�D_�돜�v����['y��n���$��*�.�����!��Rˎ�(��8����ֶ��?n\�CUs5#$D�@�Bo�CHOL�R�D3��]���+�� ���E��Y��_"P��;-n{H���"���?`�J�'&R]�҉d́��ʼn������E#����J�J ���LU;']2��{���VD(�/����LIɠ����Oz����X�v�ROJ �YB�ð�=Ue�d%�����D��������NV�OOÂ��z�{��I5�Cp"����r;��X��EQT 7�CQT�����QT�����QT� ����(*����Db�E�[����T�����5����{�g���� �MM2G5�f����R��'���یY\�E: HM�6w�ԗ#���{:������\�O�0���Q���.))����C��I2�v����r��D�{��Ts�Q�:)�5~�P3:���*�9���rvݵD���V��x�B���_�=��z�8�yפ/P�`�Y���t�|F��-t@�Θ��B�F�TTԈ�vۢ�]P��i��`�˂��[)U'^o�4���ۏ>� ��Z�CDq~�rG#y"Iɦ��(/O�Q^Q����?�D�0������y-��zu�~�� �S }�a5�+; ��R��*+��ٚ+�+h���-��2(�� �SD�A^�C dI$y{gŬ�ƯD��7_��ʭ�T���R��8d���cG�fS�ΡZD�nonM#��^�z��ٝ`�W����������U�^��(*����R:@Era査��*��C������t�w��� xN�� [3�|x����C�&d^Ys1l�o�zY�)Eժ�i�-��rCN�q\���`2�$�Ů��K��C}Wo�9����Ȁm׳�S7����V���wF1��<"y�K^٭$ ;B��� ��0 ��OӿL���e��5I��FHh_�}�D p$�'+;1�R�6%��7� �x������)����Gv�����4�p����1������Mf؅��W�\�o?o��A/N?��6 *�r�c&-�������x�������x�5�`�9���y�_�qn��_{|8�e�]�V2����=���}��tyî�]k#"I�����J�?M��O�W�=~� ����|((�� ֥)��ï�7�/}��'�8���r������ߟ6s���o�Day~�ɛ��յDF�ӎ2�fy`�K?-���?� ��"�I�?lض���??xG����E�!(��3B�~�����O��o�}��C�:q��K�$�Zp�o��� m�U��.�]H�n�:I=FC������3�X֞�=�)g^p�I�O�g/)l��gA��>j�c�"@�&��al3�/���j��H���u �Œ���}w��P�63�x�w4�������{uɅW�n��� � ��$����?`t���_l��k��ШT1��F$[�A�~�ğl����k��k��÷I�*`�/at�����.````````����00000000000� ������������h+X��ˀP�F�8�[��������:�g˿3���K�=Q�N�ɠ�+��;�Ǻ?�,�-o��0|���nGJ�ԁ��aډ �K����t��-�9Ͳs�����p��#G�9zl�0��2����3�w�A�&�;WQ�T7��'�ư��'�t�zE���,��n�+�c֘�����o���3��詅-Wm/�f���V5{nPtz���S��@���Z�H�<��5X�8������9w�e���Z�:G��`$F�@�u��AVĜ f�D��DozԮ�;�pZ�/����e�Dɶ'J�i,�\LZ���|܌�(3#�򩠤jh��XM[?��l�?;Fmy�Ƿ��˭'�7��� sS6��P��'�s��r�#gM�M��#q,|���G�h����<�Xc�vR��� �=~;�̸*�N{}.Ls��I©-w��|�K"Kw�����Zu ����wS�V>M��r�8�F �G�ҩ��c�������ٵ\��o3���<-��d;h��� ��e;�C �����rr>��+�4O� ��_( �jk�kjj�I�=Q�N6�����M (u7ה����fA��ٛ�J��Ν�����O�b�����K��VX�� ��Ӎ��\Xr*�ֶ�������*��n.�u�h��dO�/%�^�Ɇ�g������(���k~�o��w��� R IFb��ԫa��Af �|m+�?ɭ�6%���}h;9#�e�0���w�0�]�KW����da�X�$3 ҳ��� �rlZK��L��l�ܹ;_V}����_��� �O'�Nj����o���V-Z������Uo�=D='8+(���Sr#0�V�$�i�4�������x���q��^ M�, ^3w�����g;�Ν;wn]'JR1��S�e�Y�dٖ���S@��H�c&Y�\M��g�2�G�6�Γ�Ȉ���|&Z1cߜ~�*���UܼT�^�l� ���m;����r�#�d��{#���!� ��/^K�3�p����!Uk�Q�oYz#�XИ�+���+�����|������3?Y���?3r4*Z]+е[0�L��]!OQ�d{h6���Z��l�]Zڥ�p0000� Ծ}���u�V���c��={hW��-�F:��]�X0g�1�"�Mz�ۯT��V�(*�Hh����'�O+�cT�#QRҩ� ̩�d�}�����6j�N��[�u�%e�꼛�|���3]U�Q-ɐ���]hM<)�v�a]r������<���Y��ߵ���uC'GA����D!P�t �(��� ~��"@vz��$"� :����(��$: �N�x���.+�V6�Lj�C��!�ВgW���_�'f�����"QRM[�"�F*�����i�U�F??/&�zu�.�r�P��V<հ.޽Cx����6&r���5�� �� Ԅg�,�I00t�p��sɒ�f�2G�!� 89Cu-���A��jrS2ݔi⌄d�;� 1��׋G���A(��� ‚��€�DV~�ֵ�6�=߾+mO$�Eb1��l�G��*E�Ò��٥���`���CV�sVW``t.�fy�h00�.W��Q��y*e���;�;#�٫�Aq9��o�- ?��]�(��e�-ҁe����g���߫��N$B(tH���#���!)6"|x�!��𭨺@IJvq��5��U݊���Y%�(��Sov�Ζ���.�{O��$*I��0�����WI��}�۩Sbq��H$���@ �U�-��[x�,���!�|��Ÿ�7%Q�@��D�U�͏�速�Ŕ��?sJm�H��*5�FR �{��WpkeR����u6(��3��qE��� ��Cr�dѲ��)�6��p*R/]J��E��bEp��k��!8x)��^ Ж����,���8�Np���ܷND �p7�_��%^$tX�=4��E"qDDZD�ĘV �� R����%�:��R�:� �I�oR+�&O� �� ��H��슶�����˩EeL�1�K�E8�������/� �_��c�y��~�dy���ѭN�95��/R�e'hq d�� �E�z[���%j�N��-����P�54?7'$`O����N银�%��:��5<^$�H$*yv`Ã�+�h6؝�Y�m���G��4I�H��D2�r��#��'ږf���8nК�1�bZ�%[ [1ċ8���k����ѵ�B�:�m��A,��NA����-��ö3�G�HGIQ��_�����2 \"��G�HJϥsb+�.��bW���)2\��*T�+��U3�)HN(`[�����]�U�bub�A�N�ـ����*6��))�-�-�$��j(Q(����38�L&"@��[҄tE���Y@�sң�D ���M7Q�{�FC��e��Y ��]�@����E�}#����t]]������89�}��I�Tݝl�߽o�R^V�ji�K����ѣ����S|\��ix!��U+h)��K��BVY�F@ ���ܼJ()(P0�N j���`�Q}%��N����cd�x���2���J�N�t"AF��� s�-��b�SLz�*�+��Ѥ�Fx[�9U�&\}�:��O��~�ڴ����q����wS�6yR�g �^{���M��P��I��)�U� �پ�-I�E���w��إ�c����x'���J�&�� �p����4��v���K7y�<�vU9����Fdz�o\�|�s�:�&l�ǣn���c^��5����ȹ�b����w�G�_�k������D@ �o�]6����Q�8#�Q@�Q���^vg}*�*�j��\��Qg⹒$�����)���Q�s�����'/�N���y9)׷����b;u�� �i�/��<�!l��X��:�.Ĭ�>�r}@�d?;����s���M����Ο9��p��̉�QQf^�;��f�o��\h$��e)Oy�� ^�b�L_6�Oݺ���\���r@hs�.���g]���۰�;�ť�1GC�d�T�P�9LQk�����5�ذm���h/0� ��l#�=�� e~.�߂�����`?{�k�?�8���/��^��*��ɐ��t���B.]WWQ��.�}�ğ��^R��Fׂ��d��D�6����oAW��;!̊|?x��]�D"@Q@k�����N��੊�����B!E��CշI�*`�?l����HT��>��M�O 6������������VP�W׺o��m� ��Km�?```````````���������������V:g�^Vm���� �ǫ �H�]���4�0X���r��3u�?�*�[\�� �?O�� ���7�=�VW�_�����5�b��ܖ�\7�ш..O X�ρ7�v�U�������T��|waݢݡ@���k����Qe~���KW�Ȓ���:�%�����t�>������"'���ڎ6+#,$�g��M�ZɆ^kw.�CM�qu�]/��V�)B1>o�{��e�'"�v㦌��Q �9eYa7�����Nn�G�sJ�^��+�"�PM�L�b� *Kz~�JH>�$�����=�� ���1$����=������h�d–?]d�b!����z��b~�u���-Ru}���=��ν�e�v=o�O������B���}p���v��?z�"w@p%�l{�I�P�l�.bbB�Ք�� |z�ө��@����/O=��9�~-�j���5ԗ�Ֆ�?~�H@еw�⢭)�V��?|�:���9O�v��ת$(�\:������ ���c�hʝ��O������A�&�bFf���Iy�nC���ͩ �>pb����;��@#ʘ9��lGs��Z�wS˿�+Y��߫�|L)5M�P�3��a[�x�ה!��z�"�uC��?��x"o�n~,���t���W��t��D��C6��V�x��w����_rxy�ݿ�^��lKC�l�8��gڶ?�\��:�^��g�����e]�5ie�ߤ �X��><�rx�e���>��4�b;Z4o����^{�H:�I�X�*ZK�tnWqw���8e�9+پJ}S��6y =��e8ݡ � ��<��(I���ޭ����[L����k���R��eћO�tRw����?T� ϱo.�h�>�9��|$����{����p���f ����]�ko� ܶ'_�J�:]�Pu~��?�-�k Ų�C��9ǭ�NY6&ZZ[ =p���I�n6�ϔ>�z�0R��N��g��0��t�AV���Mq[uvwsS������N�<~u������Uh~DPP���T�HKʯ'Qg�%۞�����{p�¾Ʋ�)/.���ߓl^ueO�訄{|���X�f~<]�{s̖ҿ���]?H��m��s�B���M��i�A`&o��ٞ�5�P�h���.*9�w�2�Ո�����d�v��w������­�f�5S��?���+IRN ���5_��bƦ��(��� �W��Q��_|�C%�͸���ʖ1�����]x��?bӞ�^�*���s+�k�Q��>����հ�U)i|8����P��*���`U�&x�43Nض鿟I��N���80c��?F���̻)?j�9�qݒ-� !B�����CU.�-���~�#e�P�o-*��H.H y$�U6j��9g ��߻QS�~�Yl����-'r�l��+DQ��r�l!��T7�ݾ�Z 3x�?(�J�S��oV�Vr>>�0��Z�� $&J��d��o���Ti���Z�n���TihMfԻs!���n�� �^H�5���p��gI������>u� �7���,GN�j@C+�����fo雺a�J��j.�š�lI����� �;�F�fV6� �O��a�F�'���,�����/ZІ;9u�8���m��������&_�yL~�i�q��U]x�>z�5��r����Eb������Zr�T��W�x��w��a�R���� ��b ex/�&�ɉ�i/�]~�U ���`�r�H����w=gJ��q�Ʊ��xZm���jH��&�I��< ��_t��u�B�i �kI��ZҒP�V�w�.�!�1X>��;��Ì�v���ZS��!�h���b�P��A�@���N[��1h�������ǩ�n�u�h�-�X)@>��vu��u�z�6e�+rj���2����~Q����w��u�S=��U_/b5^�J^˦^>H�;�=ד��ά!�j���Y��?2� 5p�ҭ ��g�.]�tU`j{ g�2�T|� �����ˀ�Խ�%@YYr�Msq�) ��\-ĕ�R�u*))�M�� OO �y`���P �{{�uGiɣ�Όe��:f[T{�l�d۳ct2�S7��N��i�:i{���= D��l�x2ݖ���o��L�;:��vB���E�D��۰���kK�9�,����o�q��,C9vѹ<&��4�PCC������������~\�}��Su��_�49�;<�;���2~YYy2�{�>� �-��W;��"�iY�>��v=�&{,k��vu����ͰM��/uB�SL��ڼ�;��Qf�Ҩ�g �1rJZ��.���7�ޒR�� |��f�=W�O��n�~5(g8j�#����������~�:::-y��3a�c�J4�Q�@����%�L���~[�)ʲ��+e��EG$�pې�|y�gȺ�[��Xj�x�r �B���Z~�wӎm���T�K��*(��,���ߧ8��X,:]AJ�d���m?����\Na7�!����J�_^q6����C������mIP6Ԓ��˖"��9��G�������}�d�!���7�X��1�i�}^b|����,����l||�ɯ��b��tP�3v�8�ຕ����T47�`��()"2��V�=X�Je%%(d������y�P��Y�ŁU���V=�;�]F����eՊ�=)f>�+�� ��{�^օ���O��'d���r�#~�i����r��ߊk��g�����v=gvn��y���2z��s���s`?����f?�Gq���VfH��җ� ��"��$����.F�6�Կe��=T Y�S���cɔ-��9*� "7��E!Q��n ��>��uY�Y 4�VT�6��O�R])�<�f ulf7U��e�Q�-H+�X�h�N� k����w��A���5LfSY;��NUS&j�6�W=����C[.FT���Ξ�7C�� �+ǞT(yx)8���^�t�R���ϰ|�p0�)7pۛ�7[�\Ad�.�~r�.�ݎ=��rA -�w�����o:|��(�{/;�{���?��m{�>��CS���n�����pD��:a&??�x�M��CEM7:@����b6ĥ�^�v.�RT��#OOO �,�=�����cF�Z�祔v�s²��[2����ɪ�$%�GFv� �z���G֜~ �AO{�� Ҕ �ʳ�8�VV%�nGU���wo�*��(׋q�޸��WFGDs@�N��YPd9�6�I�[��Vj�)&(��fh+b쉍Y���n� �e����9RT�S%��Ы~�}�?뗝x@��Ql��{[W8v�n*���<�ID��d���<d��lf� �5�Pg]�[��&:v�cl�MmW1�r���kƞ޳{׾��^��!��ذz��L� �zӤH�D�H�W�61R��D""�(%���y�6^�ɬr+ ә�t9����[��d, ��KPi�mM������>�<%��N�'>.��� @�4WJL�D�IJBk�?;�1�E�/�� x �&����^]�����˔����z��&zr���������:�V��O�(+��]^�EA���R�j::���l�H�))*4$jW&|�ᢢ���rzzҮ��W�7�����9/�V�7�R��� �yX(����j���439���� ���x<���C!� ��:t>_�w�I�OG�3�q��;n�@��g)�-���O$k;wӪ�,�w�����Q����.�"�x�o����nm=sg۹'���1�͕�I��f�O��6X_ώHl�P������s���j�kl�!7���1W���BԵ�I$"���S #�@�*� �ҽ1n��V�K@�zrb�`#%~A��?�n�(��jѭ��6��7��9~�nRէX���������N -��͐d��b�������kDL�}���`���sҴ��gv'�Ugۭ���Z��j�\`y���h�z��?��o����&(��(�Q���5�Q���E�/*T,��p@$����YuғGM��~y�5oYyB���}�7� @ �L�h��"Qy���۴ظ���D��Ά��R�E����� )�_�B��شYޖ��#8"@�%�E�( H�� ��b␆^�@ ��3�-.#<6� ��s�̲� j3n��-���( ��Q�XG��C�H3W�r���� �q�D�o�N��m]��lz���E� ���w�KPT��6$�-vrHd���6��I�,�8���?P���B�@Rb; ���좊��B���TN\k���)k�Q�!�.����nS'8k�E"DVR�S��㋇�"�ts���T�tI ����o� ���bf�۪^�T1ң�ݎ,�JJ(V�U?��t����- � �O���C�3 u}V���ү_o!8�NjE���� �nsV:�O�gKm-��B� (���pE��~���D��Ǝ�Ԓv�����]J-}Y��(��씗�<1�>d�RӅ�������X�/>���^V�ʬ3!���7��i.���x�9E"<�&�X� c�o�"�UT�ϼ�Gf��V�����4���,=��U��8Į������ޔ�ڒ��m�5��w�yn{_�PYy,�pD"���ˮB��i�޿����y�ρD�H�++�^�f�Pצ�Y��y�Ev����h w�W�� <8<���@$x<� <�Hm��>ɖh�C��>��jb����뼽'vN~;�l ����V�� W��B �P(���_�x9e�����M���MT�]�F���?آ�غ�;��QUUi������� P/_ߗ�b��nd�_���SoH(f���q Sz�$���?�Z��Y��3} t�PR�w*�$�y_� k�Z������Q>��PXX���:@1hik�H�o����������iI��?JZ� ��^�,=b��YD�Ʀ��@ Բ�;+��IVV��t.�� ,KJb�Q��k/j��\*�>i�AC:+=�����.Ÿ %I�VQp��ǽ�iSGLs�s�AC:+.�j���1�(+ᢠ%�/�V���ęN�WVV���. ������4��%}heI ����lad��0+#����/K�<�"~��'$-�h���r�>���=k� C6��շ�E"Q�ˣ۟�jTr��(���o@u-m:p"����U��o��O4���Ʌ�Kh��PK��9�+P[ +63��u��II��9���' =��JQ3p�N�$�CS2Njx�-%��8���O�7Ө���QvLL( �c嬹k�;��J PV5�)[v ����8#)I�e�� ��Ō�g�K��LJ��e�D����,LJjg"��q*1fqZ)GA�m�A T��hu����� vK3t4'��_9� 7&VJ�6��� p������&i��o?lWs����v�>��8�Ϙ�+Lnk;�~���}d���C;��Laa������h���***d��8�ա�H�}�33�H�iq�Z.�id�����B)�m�Ñ��4mSsy!]�&K@Xyq�!��ܖ%1Z�Ǔd�J�:�+�h�*�D@y|��b��ia|"�e�������p"�� �n>�N&j���U+�{TV��-̸���`e��k��@ ���D��5o�O��3i�w�3���P6�C�i� ��VB�(*T0�T#5ݦ�h m�Ar�0��U�{��hZ^C�Z��Z�Y��FVõe�$y�>f�Y����ώ^vp������:�)x~�����TK�>���]�~�d�j��X5�$�"KT׶}g/q��=�I���;���Ʃ� ԕ�!��z�SrF���#���oY�׈�f�&�����I�u�&����x�I^ەZ�]�ګn�S�u�jת��g^��2o���)^�,�%\Y�ro��4=�X�Q���d���b�����&��ЧQ�t�[={7q����"F��k���\X�g�u����̌�{6o|XwͶQg^�%�R�c|k1 ���.�4R'T$<ܴ�r�-�YQA����Loqԇ�f��ν�4�U�/v.�Ҟ�5�Y��L�4��f�M��7��,G� �{r���=�u���G�wn��>z�n�N��S���).M\�z�Gi��vʊr2���&@��K��kV��s)r�2����%IR�����s��7( �_X���T�����s7T���Ҡ��e �Ô�����ˬ�@i��7�қ9�mѺa��k����J��g��ŽES���?����{g�ڂ5�ʼn��)^�� ��x)X�n��T�f{���� ?�9Ib�� o}����WF�.N����K��}f�.'fe��p%� Y�$y�7�kO��|#M�Hzz�Q*-�e�AQ���eâ�UyI��:�>��F�Tĥ��:�7L�K�Đ�X��w�ì}�n[����k�g-���?/(��� �y��M%]��h�\����,'&�xp�����3o� �.��s5� В�4(*�ה�*ʗ���� `��� ; I�,�A������W��$�ԓl��0���V�=�����(ddr麺�"Fva����vּ�k�U�}�m���¿� ��᳗T_z���C�+/s0���f�}u��E^�۷�)Q�,�8{�<|z��c� I�̎���V�0;&�c��M�Db@Q@ks�\���N�t`���!*k;v�)�h�Uh-OUTU�� )Ju�Ⱥf&�lƭp����#�q��?|���h?��������Ea%:��[A`����+B~��V����W~�?;X-}g� ��f"���J�&E��B!����h�v���W߈yl���嵺U�������������h(�S��Z��Q�W7O��@̩��[̩���u���_ǯ���W㳗T�?���������������2(�-���odP��_��d�῭k��j���L ���� u�Km7����������������c�n�t2�e%}�H�)�zy�����^o���'�]j�G��f4l`���gنC��ȹq6��:}��C� �ʋ7�%��ј=�����Hv�Pk�;�P��vC_��L���oW�z����+ԉ������|o����?�%�Ά��w�X7ce��"'�~���ʺtDVo��Y����\On*�� �k� 娳k�'x���Di8ě��ԆO[<6��l���4޻��E\S���֍w�7����o]t��ӛTz��� �^%AV������/ķa3��EOog=9�����w���gj}����7������� �w���t��N܅�N����w��c<ٽ�y��'�]���Q��bt�om�ʫ�����N���O�n� �}�TH��'���K��N$�l/���/ �ڻMq�֔E�K�>|Z"R�5r�@�&2u�`|A���8G-uqMY��go�KE@ձ�8��PN\��x�ir��=ǹ����j�/�� +����Ӻ�ԑ7�b ���0L���$=�~Zd5mgy[�޿|5�%1I�AZ�?�����? ~V����<� ��JP�T�"������:��#<����������E��zm������j��(ט��$�AC�e�4C��R� �Hx����m�~�W{a'���(�����;����?d�o�3�_K+�?�݌�����r��Ȭ��%O�6oJ��hH���a���v�� �nS��x,\� �]Q%K�4��hTي��=ts����[���Pe+�yúg���#T���bdt��Mt��۾�x��PE����̶6�?�ح�J��ͯ+�Lh� �S�gH��N���_ g6~%���]e�fo�%�f��*c��H�;3H��Kʰc%@5�W6�ڭ�������~&��R�z^ô�ܻTJ��?p�c{H9J3��N�p#�D%N��c��AtP�D 3MH.@����h��:(�L�� ��i�%.�B:j���U�X��U�0 JئrT���Qנ���\S�u�BNS1�>4C\[UQ B����\_!�AC�e�4C��R� �Dw��=���k@i�SW��n]7�����$���W]It<�h�#}���9�@�Y�a���,$��>�9��|$����{���!W�AWiF���:��@���o�"3E�<%���'?�Hs 㧂��(�#�/~VJ�x���T���?�{�Pd���f3a��� ������[Q���$C��2Q��B���L�������Zք xE������Pъj�h�s������"/����s�i����k ��F0%����i���"����D��F�_�(���যKA+�Sn>�����ip�D�G��йE�Cޖ��^K�h��#j���2�.�#�ρ���\��,�� �ј5�� ����ı�*$NIʻ'_%� �]�,ӎ�&rm��I :u%�%Y�D �V�s����;� ��z�q�������.�g4��D'���G�t[�n@���C*$��'�h5r�0����Ñ�pJ֣� ��+'�� �}�i@�猿��������h���W����c�ee������EL�2@%�[Q?H�8��jB�K =�z�&�>�zi��P�\f��Ů 4�VyU_ Q1����������� �`������Ն 2H�r�I^�>=�&#�����'��(���W����^��1��N��#u5C�K��u 2�+�١�V���%3}:��4��;�X���")>�EF��h]��%%UHaGͷ���,�ahF�~Rd:]�ǫ ���44)4 �����lRa���׍�ǎ �����>4C~���[F����$�AC�e�4C��R� ���5g��F۸�nZÞmd���W���8�u���v����(;�455)���ӝ��! �9���l��D����s=�� I� �>y˖� q�7lyXi9bö��\���(��&��੺�Z��B6p �"�K���"j}�Y�>|��,�Hm��֭]�b� N�$�� �>�.� �h�˳�RZN��*�<���*�C���tjmE�p�`������T`9��r���qzv@@��<�Q�������2���Sp����j��(O��w����x��:R����#1���c���N�x�ⷷ����Qz�����յ������?vv��y-�%*8��/~sl릝�g+��5n�H42!�>�yk`�y_;�v�̾������ۚ��U\�c���{5]sD���fS�������x+]{������`HE :��S�n���+;�m<����g��T�2�#�����ް������TG���4E�Q���%q;��P�90�.���H�p�*'u�Oy�&1\�zs�y�{ӆu�^�0_��H�={�C�n�|2Vy��%��Pq�n�֐>���"��BU�֮AQ���iu�����S��#ж�>�X���R�B��ʈ��#G�]����^����.�iѕ4�X�]�M�+�M,(mC\�� �0-��������jѹ�����..&X��1Bc�N��M�ED�T1��)~S���Y",L�y%[,��֘��$�AC�e�4C��R� ��nV��qdǙPr��BwM#;{`]�o��*��=핎dg������Wo�'�7P��m�z�����d'���s������)I:���%^����)L}��,��t�%����!�k�:o3aq�ӷ�����s�<��ƴ�'w��GV�9n���C�L��� ��z����P� �&�Ŋ*6M������(��FaQj�Ԕ�j�� P�&��V�B9*3~(b0�KQyy�J�J���A@QI�&�^W��VLtV���*`�=�er �B}9y�/c��Kp��� t��϶� AV�& ̒����O_2?~,��g� HM�m�) ��G�����кi�����OU-ͪ�y\�q����P!_roVUK�2�~.[줸L���ߜW��Zͷ���~�C�Tc Ӟ����ܷ��t^$䔌��Q���'DQ�- �.~�o�z#����u/s7'����|�%VHGi��!j8x�h�d����-d����k����ޛ���{OA���n�Vmk�v�j�������[�u�u�uTܠ(�(Nd��7 ����� �@P��<>����:箳��A���nd����P#Z�͘��/�� Y��MV��%�����Q��;"��� ��̑�Bң� ������%�a�(,��J&������X(JP(�@�PZK+x6����!�UNPQQ 0�r�iA�������p���m�d @� �B�$88�`��<�J�jmmmllT��<�T ��=koa4���>���/���K��<����}-Z�fJ���1^�w5�.����P��5`���Zn]��Wra]����������Jn�^�\��C�P�*��|p@IrAS� Ww|[pGQ�=�]�A@��PL���q�V���x8t�d���=4R��]�:�k�N;L��r�5�T��~�L.��sλ�{[m��\M��b�lj�ĉa$���V Vf!o��Y��0�&$�J� IU}�� ~rSʭ.uC��� (n�.�/N�N?^�$о>�� _An��&7uKe���Uk�R~yRR�ԝ��u~%8�����K/�f��h��J�"Ң�O����J�5�եW82d�9�%�P*�U[-*��_J�x�i�7�3���?`n����c����� �TS�cH�E���y?>�8�}��(��-�j�nx-Vtf˦l�a&��K�^J�\�� q3�F=����}tdH�d�L�u ���J����إ��xG�Ȥ�gP.W0�$ �0h/�WVU��ĉV������x��ZUO&�٤L�p�∴�3�;�X���[�C��A�njq��d�D��kx��v�P��pfy@�}"I��k[��_�u����=u�-�f����Q�V��: %����Qi���3���M���p�H���,�oh��F�؋+���q������Í�(���QKed��pfEXݾ�L�kJE(�jJ�Ĩq5ҥ~b0$���hx�LXR�՚:�v~�eu׏���/n��sc*�g�%��f/C�0���j�Ȧ�JՔ���4ã�T*�V����ȾcF��nj�+��L$5u�Fc�zc��b���..���t�1YE����?�a��'�o���۟'�j���"1ʠS���[��mҮ�����*����� OM��j�9�IQZ�nV�Ȑ>��uhaAQ�%�K<���/��½�9F �#�� $'����t���;"��� ��̑�Bңnii��p V�][��u�����-�Dv�����u›���g�F���q�]Q)���ssNd�F�����BG�/�g�E�fF����E�M��&��b$(֮�#��D2ֈ��L��>�P(�l���)ƙ��; �=c� ��.�ߩ�Y�B���߬�������!�ۦ�� �oI��,Ϙp皚z���ht�R 0jjLk���ih�%͵4{�VQ+��l�s� �9G�~!ھぢ0��(��B��]Kr(�k�❩$�sD`��[� ��-]#�)$#8�I��׻x���j���hM�9X�P=!���! c����3^K���+��hi @Y�P��?ڑB&3#}��8�C�.��E��:���*vʘ��'��x23���~_"�|�,�ќ���w�������I�����W�:i���pC]�/_:��,����#C�&sd����cֹ�@OhJ���y�/�O :��N��$�>�[�gK�|< �Y���l���p�ͭȭ�V��PUY@8l���wߍm?�x���/�)�T�MI��_����o�}1��{>�e�uAHf��B�0f`����;��ҏ�i qK/��������9�/l���=�-&R/8V�# �xu}��!�5�'��o%g�>������G2� ��zl���-11��̿7�� lz�X�r�%��8�����ެY�`��Ď���\(I���zk��������7�$��&��$��q��/}4��ʛKҏ�u^8q����/�`,�W���P��={D���������t�P��?�4J��_�5'4[=��.� ����o_༹��I��Z���ޛVݷ� X�N�6T�w�.�)���m��8}=o����z��E�2,L��HW ���J�l��i׸Z��u�� 1���� ōc�icCk]Q��,�fH_A�T�b 0�WG�>6�U3����� ]ڷ��γQ�K�vh�A>k�,����&�Dk� ����3�>:2�n2G� I�zpp��{��|��?^���M�v�ԍg�<��� x�C�� ��x �A 4���@��;��E�+��﷤���ƿ��~�'+w\O�������€Q�a�� �~9����G��5c L��cbc]����~�������^�ՍwDLR7�#Ӆd�#3f̘y$�#�z޹o���@�� �8 PV��2&��dݺu�>Z���pA�m�ފ�����o��% ,\;���@���0` ѝl�*Qs���hK�E�M�(�amg��yb�N���P���>:2�n2G� I������~��f̘1��Ҙt�Z�oSQt*��m u��|by�#5�*;�m��Fn�p=1��}����ߤo'���;"��� ��̑�B2ޑ3f̘1c����D��%m"I?�(��/�1�(���:x3f̘1cƌi1�̘1cƌ3f̘1c,��À���|����d`�,j?�yP���G��T7�1}tdH�d�L������8�n'�' ������0cƌ3�����il�$�9�i?��+`��G������#C�&sd���w�#֠Ww�?��(�b�A�}��sΟ����Q��V�/m�w"%��=_�Գߐէ�x�}�ij�ʽ�~1�������3�7�RK2�ҥK驧���x��-���vb��^e�0��|��O�B����N�������7��O{��':%{k芝7/�� 㡺�_��G���D�C�����֭�pՊEc|�W���¦-{k�G�>|��y1�$����.� ѩ��{߰�fV��� ��� ���A�Gd܊e�>~y��>���xaF��j��i?�lzNY��h��a�⇫����fϰ�{��O��C2���g_�GkW�\<1Ј��� ��a����?��ѹ�XFL�|�B��BP;�a/,�����_0j��f}�|x @���dŤQFN�讃=;���3_�袷�xI�1ϟ04�|��IA��ٮb\��^��S����M5��;"��� ��̑�B2��aˢ<�S%$ĻҹO[�v�p��|�;^��{���Wfg���ӦW�L��N�{wè�/^���6����������X�^���[^I�ܲ�!c�7�� {Kw,za-�f���}�$��w9Z��LNtIۖmh�,P��[둴r�Z����4E6S�\Ho��1i�-��-�嗍�5��&��TV�c9k�(?�F`���񡂋��-hCmc�[z�"[b=+�����-����� ��Wn띿~��� �Ny1�ݨK����e��(���㷄$�� �l��~��4�;��6�R+ �������I����Y��g������޵�6��}����WnJ*5t�<��i> �I��ڙѢ�����:��,<�^����٣i�'O� ��c����?Sj�����oGL�v�=$�)�\9�)G�H�� k�9���N6^�'��j�̣��Z�j���V%(��j�XԤge����#C�&sd���vd?k�?+C;���2���8�xa'^i��.��..@�M���μ�j� ��Y�W=��w����n7���un�������3�2c�*��ᅰ#�x�Ķ��P�}aF1�!a%���b˩N�ٸ'$ڞߘ�����-\�fq�'���ډ]�\�ӳh:5v�\��K��*���g)�F�����-G}���Iu�Ҏ؏��k&8𲶮��T�x��˿��|{�=/k�GN���.����3�?�xnGq�V��s�_)l�[쬆� IDAT��T,V1d2�q�L)��$o���9R5@Mꎍ�r����9�w/M��E�:�#B\�>��˱J�ʒ��%g�᫩AcV����X�o� ��3[=u�0K�� G@s�C�[Kߘ�c�X���+�Z���_Ԭ�n4�__z&�n���#i�Ŕ+7[Ԁ�ops�J�U�M� �&�*>��FD0�OU�<���"���+-�=m����;��`�>b��Ѿ�d)��vƅ��<%3z�[��I����l%�g��/ � ��Bf>3=̲�����w���9e� � h��K!�cy:�)������OJ���_<|��g�d K\r��c9�jJĢ��n�s�ǽ����S�c�x}�� �owמ:MH�� ������MȔ��\���֙��b!!M�i5y� եu�qvL(5Plԕ!���oL�Cq� �����c�&qbPi$)O�r.�r8lj 큳>��%���wN�8L�Q������_�31j�L����aWr#������.��"WT_K���s%�����s�?�9|�qsn)�\'��ͩ������G�`�4`p���ފ/��~���]�%>��زa^ՍwDLR7�#Ӆd�#v�� �f��c�2t� �V�v�j�1���f�:�����B�E��<�+GuW���L��r��L����� �m����=��~fll��[�1�aC}��J�w��KL�8�r����4�����7�MvՎ<��0�^�'���i�"J{�R�z=��؂��s�����{L��v��K�/���%�;Z��H�^�1��t﷖Š�ӎ���� ����52��ܒ&�'�%I���p�굯��8Y����8�<���~���3#컼�1���I��)t�;҅��`���?��,�L�H����(Vδ����3��z�b��Z�ߟ�����+�6u��9�Tg�8� �W�X���ӛ�<���=/����J.����e��풂ڴ|� P������{��n#�I��uz$��%��7��q�/�j�}�5}�$/�?���$�T�����m���)8�}��J�X��nްa�7~�9D�d��y�{���1=6�G`�{6���CB� +)�v��X��ъ�j8[7lؖ��z�� 6l��Qy���Px���I�N �P�f:W����]����z� ��0�F� 0������6�&�!ݼ��Mp�_���\�6C'ƴ]ܶ��o�gr�W��iN .�n�?u��e���� ���0���X��J%�i��8e���ޟ7|�u� ����tw��q��+TU�ƠC�D���x{�DȠ��g�dO0� 2^nY�}� d����.�8u�7j�:�)Ш>:2�n2G� �xG����V��*4ի�9cs��c�\�K��B�(�J�c����� �‚Bѣ����W(gv�r 6����/---���k?%Uh��8Y��R����d���_;��O爫!8���UVj��I�lߘ/߿-՘Q4Ƨ�>y�5M�W3rq���Tՙ�OW�qi�{j;0����J{7�'b"5#l�T��#�w�ړ�1+�@!{��.�����'k\�M�U��� m�s��[�g�*2 2����Ym�b������� ��{0�+�^aE��:n�����d1�`e�,��o�)mEe��M�(e^���T�d�5wHX �����fΠ����"AOq����;A��dR1�����|MiYY���$WK�k��u�v���K�Z���+)�R���Q½s�V�T�`W֪l��n�n6�r2r�r����Nmk�IIq���@��..��w��s/\*� y���T��L�sv�ܭ+��{U$g'����C�����`]=p����=C�y�����ٹw ���xRAA�nn�� A��5� �\�XV&���$�i�B ��ݯ�\9�������L>�`;=λ��!� e�C���5 k�q2 S�8ư�v���*��b/���[�)CP���U���)����fƉ�F�>:2�n2G� �xG�.;��곟��ޛ��X�#D'WŞ"�<��� �u�2�ð�ԏ����r}�¥;?L�vՂso����,۹�����c��_X���?��hD�Da�ʪN1��o�z��j��N�ڜ��~ޖZ��i���V(0X�7>E��/��}�ӏ����h|�U*��D�x/�; 0�o?�7� �@jkk`伌���p'�He���U��`���&P���7�$e��6�pw�;�� �O�S�E�� ����;�Z��(����5�����9����V��x���q��\����I�vVi��KȳO���Z��,��'W�e���$��]�������&M]>� o�*�r.�nS�����{��ĵ.��Lv^�.��0N-�����8?����R�W���Ż�!�� �0�B��΁ w0�}��g���� ��!2D+����>Φ��YՀ��_�q�����R���̙�*�����:z�^pm���\�����g읡\ �+�e-,�|H��>�`{�R�BQTV��M)�S�t�S/������y�����m?����s6&w[6�����#C�&sd���w��{O��}0[w�Z/ �13�E�u:c��ijEkU�m��!B.�do�� �`���p��TU����� ��jW�9Y��|�;�HQ�c�S�kM/%}���i�s��V��3�u� �&���zR�P����8�.ܞ���y�HڔM��^�3��i��P>|��ԗv�ɢ� W� ��`�Y���%�@�UWo/iEE�>�^���1��WY�������Q_W���V��p��qA;m���w�j��B��M��6/�>������D����t��j��L��ٷO���ݦ��6�M�>T����f�1TS��K�:l����\��=� ˻�!F~U�J�dEU:g�Q�C{�TҦ�ʶ��^ߟ8x8[Y����/VΞ�J�����h�Q'�C��v}�����~�w�n�S�����e��od�T�/@��wHMY���X8��X�6 ʠu|�tV�D3ыj��l�����À��:���� ����.`���nV:�kԍwDLR7�#Ӆd�#U���>?a��R�x-���5m~wRG���+�w愰P@i��|�j��ٗ3�g-���3��=;˸T�ߪ�}��k�~�V��Q�����4�ۻ�#�KSR�5�#^�ּ;}��-I!�r�*}_+��������S�p�n����r$g��.�S��.�v���-%ۏ7DVRܑZ����J�96RZT�l(���n��#'�+G�fMB�Sx��� ������L#��������ܥ���̺���=��rd`J �s�sx�Sy�Ej��p�� �V M"h���v���쭨:�H|A#�5̑B"�|�f���n�=-6���B��vr���'�  �n�+К����l|���L�A��:*�����x�10��U(Qk��� k[�`��P/eCC�W�!�I�s�$!3 �K���T\����x��i�!�>�3�Ӓβ�e�CZ9V�ant�2 �K�i�'n>5a���6�DZ����� ��N~���϶��ٶ�3�ʜ3o�I|�c��b�PEV��r�cr�5�5%�S��;ܞB&��½l�\� g��q�������";��.T�3t�Z^�9R�r�����L �� ��KεW��8pcŷ7���7ə�~I�Φ���;"��� ��̑�B2�Q;<�����ɛ����ܔ9D�V%n���{�[qQM�8LI��_��o�w�%�[�o��x�$�?l���?����������K���?>Y���<:� �;�u(ں`�_l�����Պ����S_���� #��������^zk� ;LXzyۦS��g��i7�3��|N3��0��R�p���i�H���ko�9�D���9��׹,ְ�����.���g��<5�/��c�Y��}�����!�H ? �;�9YJx�rR���/��I��ܲ �o����9� �����y�N��\xuuuj�4>xj�ԉ�눔�y]�B�/�R�++׍\Ϋ��:��'Dd�d����k���ڽmqh��s�x����̩޴����O'��k_��,\v!�\y0�����"��k�Mʠk־�$F|1� �<�O��Uݽ��1o�z���{�ݷ� 3s�wPO5$k�� 7g P\||"=-�4'-���1l�i����� ���F�cRpI+OiaǢ��V�\� �1X���Y$#�W�Q��2 �GG��{�8CI�����Aq ����7����!��>���d��3f�<� d���I�8JeШj�@��ì�$Ny�+�YX��J��@@F���#�|����|EX�^��Â��&}u"�?�m�u�N��ޛ��6c�s��~.ʝ&c�ٶ�׫:�d��y�7VO�:K� _���nǂW�b�-�u��M��?/�tԃ�Z���b�k�������]'��5fZB�� Y)��O?�QֹE�5~��Q�'~8�e+A�n䲗�l ��p� �}����;��I���RE��XO��Ȳ�����ԓW��T��� Q^���6�B��J�}������Sd3x��ڞ;D�y9 ys����B}xu��� N��LG��ƛW�oq{�*kԜx���z�sR���E˜���\e�}��t����X� ͗w���^q�:j�Ѣ�;��k��>񍉢�\�u5���%fZb�� I�p����\B�=��fOyqv��9t�!Nvd�]�|!�P@w �76���7W�;v��~ ����!��G'F8ڐT��ʴ����/a��g��7_L:�e)[�~���Q���NW���iK��U��wԻ㩗��x��[$>6hΡ�F��3p~m����F�/E�%��\0������eJ��?gr�� R���.B�MՍwDLR�#� 1]HFg�aˢ<�S%$DU��ӫ�OCߋ������z$�\z�V�>m��E�-��*�U�^���.�K��{���Wfg���ӦW�L��bNYyXdL$��h�7dl��#��k�Ӓ�ْ�W~��Y�KkR���{���I#��}[sd�����j��)WۄOM��&5�wO}иh ����)sw�" ��� \��w�����|d���\�[��h��~����f���D Qy�M(�2���&�*l��ߴ����GZp��������`X���U� ���jV��d�m�6 �'�1�a!aqFr�����Cq�F���߽��,H��km>������3pF4z�бB����KGr�<_��<�'�5��=�%ŏ.���+&������o����S9��[t��a�3Ԗ���|0^]�6���A$�VC�����e ���=�~ ������.�� '�0ߑ�4��#�C�����0�P+�R\���)�C�^-��U��l!�n�#���Ȑzof��B2:��gm�geh�����s?N�I{4�:�u+&ۨr�}�՞l~{��˿��|{�=/k�GN״׬Ʈݹ:V|��嘨_��A�]�HK�庂���z��a��ܲ���%���]��^����.f;L��c�P]&�(�2� ԸL��I$*������&��}�X��%5%BՓ����ce����hj�H�Xy ���LU ��)���:5cz������R�� t|�\*r�*�����`&4�k�ȩ��T����ܥ{�Ҏ>����ㆻ�d��.\��S; Mxi `��a�rwDZBaH=P2� c�O�Qt����X�޽7`�=-a��-I�T���q���` }�U�{�U�'��HK�>uOHl���o,�Υ�ōڵCf��9��̶��c'򴋻Z6YÖ����;� ���! �I'b0!ql�3]%��u.�F�T�M@��&N�LDž�wΟ�R-`��_>����kͨS܋�2v�*��5�>",�ƽ�S⠬�jV�`1����%k%2��;��z8_ia�ӼbgL�p�Shd_�6e�L�w���Ķ�7�Ə�gJ*/'��ӄ�M}o��2`$3�l���8���f�MZ�|䴖�n*(qP�Դ������*��]���&�v}+b^Qave��6�4oņ&���%4�}��&�.n���_�%2����q\n���㍗�������#�u'����.��F�2��ՠ���#C�pD�!� ��c'���i��9�/�g�Y����0�ΆE�f��+7���H�y��Ҿ�g�z;���e1����w�����'U��'��I�ũiZ��mEig�Vu�/�e;����$����9�T�ڌ]Gr��UhT���XO1�w��<:��+&��F� ���g��Ʈ���!Q����.|�t��e���dx�\��9�4�����7�MvՎ<��0� xQj��ܛ 1^qfv�0������Q ����e��F���3��vi�����w�y{�+�O�D]��[Ig��_筷�]Tv�l�@"*�}�if��eO�ш�T D8����1�jk'�I�D���ե'�t��E��H�qK�(˚�ϝb[O�t��E�Q)J����ܐr0���sB�Muzʖ���^3�v �}"������9~�+��N�fw��ɭSG��}��ҿ���T2p ���(V�e䄑����y�r���������E������M~�Cm�4 ۬MݺiӦ��?����l�'���t����>�WS�f�}�6�|�J]x|ӦM�6��!�c�{��� S]�O����ޫ��#�uڤ��Ot�9���{3Z�f��h˿xM3!�i5tBDKzZ��4q�AMj.G���F��Йth�(]-��k/ �4K]�փ�_ڵ��~�j\ߟ�ߞ$���7����"�q��0��Rp.��qL4�u:_�gg�d<�u� �d�R\]�eM���p% IDAT6�� K��ݺG���>-��M�oEqm��͉e��)h0����Ơ��$*��9�޶m�VM�.��K�s�ÀA).�����b.O"y�>Ǜ���h��)�p�L&�T-�J��L��Z�;��j�D�<��嗓�a@bkc+�(V9쎒�����>l��U���,τu��yk]��.�~��ۅ�?_�[���K��*�J���s�}�ۭ�o��񼓲6�⾟��V=�,(���� @�-�;�)�چM�3�;�>a���gw�x���J�*��-�}��h@x,|4��nQn�|i�{z}������{�$\���p����-�mb�����SG��䈃�@Q��7o�(I���QnQ�q���#� �V�(�Q�qE. ��jt�st�d���"-8جWHp�\���IKFX�x5E����7w�(�}hm��|f�8�b���M �81�2��P�B��Y�PT�z^��+���_��R74M��D~���[��CЈ� ��L�B�BDV|��bJ�R�l+Q�k�N��_���ZkΝ���<�j�A��;�o(r���v�掃��5�oE��8�������ױ�ˮ�c��lr�*�����(~� �9��hɞ`�? �/�:�� �얆9H� q�?XDP�D���O��54XހdR�#� yd)���ޓ/X�f�� Z�T�XG� �0���'�D")��L�Q��y���n�J�P�d�?uN�d�������V�A����gs�Ԋ֪�ۼU#B �� �݌��.-W�qF~<�fr��⢤��N���Ѕ��pF��5�1&��7�^�[(�A���5"PI[J�ē|\�~)��������U�].k���:�1�y����)�j5�,c$L�� ��t�0_R��0 ��;�� �w�o-�6��C�$��Щs���p<.���B#�Y�A8�+@GL��J���M�?H�"2y�F��xόt� ���|��-P[[���J�X� �B�jt-8�a$:�IBQ}�j��n�0�ׅ�B��r��t �m�yf�#wٸ��y�2�ܑ]�/ ������~\:��`ח���8S-,�A�<Ѫ�΁���#�b'�� I�s�À���sՠVTq���Њ�n]� ����>:2��G�b���Ϻvx�����?};h݆��V5�������a+;�9]Z�����y�a�ح����$��v��1����4����M�<�}6��) :�*q�]�_��'�)���i�}}��;�_���E� n���w��J�~�����Ԛ����|��.X��"叛����M^w�ȧ_���y�WXBz��+<�0a��m�Ni�����g]�%�4YD���rZ��9���y[sU��[�>��,�h/*�[3dy�J&�0)J2S}_|�IR�E�s[u�g��M����D .i��8�#A�� .�3^j���8[��Γ��*��I c7�[Em�� YvS��Qyk����օ��=Ò��K�_�����bN;i��� ��6��M�8�� +Nf��&*�n���j(&c��M)�d��^g��_�/� U{�(?����^�j�I�Um t��cl��[����g��M� +��j�-|yMp.���O��+k�;&j�w�2~ܲ7g�����'���I�MBIi���n� V��P����Y�=�҂��ܦ�|u��l��:j�~�jE[݅���c|�ϔ��#N��������!4P�x���8��9�b3o���xs彿n�\����y����.��\;u�Z}�B(�+ .x��[DC�m|��K���)Kc[�����M>~V�B��Υ�KͰ�:z�t�W[�tM�$���+�Д��W�Nɾ�P��]����H��&�j���� ��ԕ�[���Օ�m�2~)��w$��X��M�4�-����#C�pd0C�/E�������'��=","�?� ��__}b���YΣ.37�6-k�k����!�oڵS�nROD/�c 3��:b�@�<��d�8ʑ�sL�P��}tdH�� fH���L/��l]�����m�C���?�G���/s�7�?l�d�yDЂ��� JMZ�(6���'�����ѯ��rŊ+V�:?Hxͼ�b?`���5ȍ����1l�i���]�r��D�%i@�����0`@I�L�� T$k*�V�]��R)��2%q�U�npڽ!�>:2�� G3��R���O5�p/�/��� T�Qq ���1�?�1c��SJ�S�j�P����`$�R��;�|2Ւ�H�N(i@� 㡏�y�ÀW�%�X�A�2��uxpb�^H�ё��82�!��"3�E��/~�1�i�����3f̘�?p�X�my �J.k/�k���� z$ �?٘�d�1cƌ3f̘1c�X��3f̘1cƌ3f����0`�`��r�D���~� �IBu��GG�{��`��k�̘1cƌ3f�S��? H��V1����`�&�^u���$����q�K�ёA�^82�!���^��������j��SL�tC��ײ?~��~�Oyz���yd�3���U�/���D� P���}��xG:�Zw7����n��X�����<����S?m�u�Y�C��%n���'�;Y��g���7'�:Ʊ�-�u��M��?߾��է���ո\�Xxn���tI��j&��2r��H^��;6y 9�O��eK�%�U7/���\ ��$�܆O��R�+�/^���uٴp:y�Pw+�RȾ%�J�H�$�/�H�*�6/+z�hڍ�K~���1�9��{.��c_+:|�V����/xn�(m��"��a�&z�Z��K�����KXԄPk�Jȩ�|�����f���r��s��k\��g8'�ɮT�{�kqԬcُa �^Bs ����P��J.^+��^?�xI�1� ��?� p� �}��H�N�>:2�� G3�_S��aˢ<�S%$DZm�WǟS��p���@��'V��܀�g�+�v,y�"s��i��qGn����a�z�; �ד��o����%�]J�t���~Y�_XW��,�z����8�^�m��� GrG[�tǢ�גl���ۧK2.}��/ɴ �41ʓ�akWya񱌲�nF�N�?&��H^�$�/~�Os�_)\���9Sb�{39jBI��cc��v���GΝ9����UĒf�P,��-K���ߨ��������-��i�d�|�E�����H.CG����FSl���_��d��95���*9���=�8U ���97g������GO�h�{�O|�/��}5`�Q��Er5��5�n�����z/̐~M���6��2�s�S[����������֭�l�j�9��W{�������/yl�\�����lG���{�������6���g�j�ڝ�c�'>Y�[�@[��H���H�P�*Q��M �X����9[ъ�?���\T \�!�$�<8&"��{�[��ݹ��@k���� 3��oPɻq��r���2�@�Tq����&�Y����tJm�=�T�)�i���h#�t��k��]�&(�.1��>��%������B�E}U�z� �DĒ:az�>)m�̸U P� ��8� �0;x���V�.)�����G�V��}��]#�4K=\X�!{9�8�}W����'��� �߫1���6��G�`�=`�ۿ14h�=4����$T7�!}tdP�� fH��H v�� ��{ͱ}=�<�0'��a�� ���x�Wn���#��=�bc�,�^���Z4�� �|nڬ�{E��<�߮�w�����'U������_�^<�r�L��qY�o̐e�1�V(�iD�����IB���e�֎>��죿_����g��Ʈ���P�6Է���_* �ޯly����:x�n��F��cH��T&D"�k��I�6"���d�)(��['���� o�uI���s0���ɋ) Vq�Q����-�.d�9)I[�%mi�d�?Ҫ.�Ž�W����:ԭ<���Ç��[ŊwP{*=�� � ��lU|������h/��wmٲ�H��#blC���Gv�>Vb���f��}[���j�ٲe˖-���(A����۱�+���n��B��[�w����6>��|� h��*l�j��l%k���d5(v�$k߮���,�}������j"�,a��j�QC����ͣI̓�U� ���L��Ĩێ�[RߨrudZ9��rV��A�T�4m���X"��t�k�dO0�? T�r�H*W�JV!��]�kO���׾92�� G3�_S��������y# �u�Pa_Eܫ���eW��P��AN� ����7��Mp#���0{�v��~�Q��8�RϪ3 �����ɫ�~�?�xY��mw���|w��?�r�����%IdAڋ4��ߜZ�>��E:�{e_�r�HP~x�zf��=xPH`���8��݇{E:!�H8�cLGw7>U�W�0��Jج�&x)��&]���W��&�����?{��u5�;3� [X��;�"���꽷X.rw���q�DZ��N�;�;�K\$�� Q!@���e��w��c��6������p�޹��i���^H尜��z�E:Y��dhiSPRxl������IcP���ͮ$񋏵���P�_jW(�:!��pϾ��W�&���-ċ08Zm�����4-�R�����2OĆN�]+��kPH��6�����Y+֯�)����:} *��AA�~�|��OL��j]ms����Mg��`4�nzk�=ЈBD�^??��X#�����F5u]�Ĉoq"��p�X� 1�a��0��t�5���ArS0�5�� �� 7t�� �{��t��|<��dJs4 ��������B��/N:n�v�J��Y�V*��L����6FR��� e�N�i.8�<���$X�k������ �~{��/�$X} �8�ڽ��f�l#{���K!�i::'A�+��c/,=�O����&�M{v?�����_��_w�f�o^�����a���U'�Z{t�G��l6E��G?��'aC7�cLW��*Fĭذ����M�(��� N��Q���C�b�?…9�#���S���/�� ����9�PB ֡'tN q�qî����$��X�sT�TaDچEȾs'����W���͚��܎�^�;�Y��?U�J�����9�ZG ��0.�Z�G�h�"����j4�7 EPFX��2lNr���뗭ؼ8vDW%���3����h����1�S�V��8L���B@�Ppâ}��hS(.1���0��=Iw8/x��p?�$�V� M�P��fc(��w|'�s�85(28��a�/:@��@��j��6���ԍ�ni� ,͗A�����v��+�����lA��0̝�D �/���_RA��9p0�#�cs�9b��ܚ�Ǒ��Li�n�_:�������<�׿��o�]9��� ���G��o}���+��O�=$=�����=�T_��?=�ޓ�� IDAT�w>~}��'?~�Ӿ0�ׅ� ����:��G� �p�� ��<��|�eS�^��{� ����ſ��ﷳ�]UG^};_�L�!�����o^��>_�����o��/|[�s��`�#�H ��������:.y��F t��7'��6>�?�@�������c?��H�L[c�)��K�y��+[/��C89�ƒ��UNc�E��q�Le�3M���(%�҄� k��J�|�h�lm���\4��8�,���L��Ԟ_"\�he:�����,����Yk׭�ZU�MNjg�g�fa�) ,s�rxh5<.LV�g��[[ھ ��ǸT�Jr���.^ ��'@O��ߖ;���9,�%��k�ߟJ1K �;X�1���_���t&��V�<5�Z5=8�'���YU#�I���]���qG4�z�����٘Xյ ��v�r>�fUg٩#e�� ��X�k�R�oX�Ƭ�ޮ��-Z��s�i�/kW^!o弥�pegñ+C����:�ң��iN��հc˛��<�'��*�kTt��+��fEw�'����=�qqq����� �ܦ8�C�{��yqݺw��Y��8�~��-�� D���X�$�5��t��������4���C�E�0[���摕�I�9;>��~�Zaq ��&DZ��NPs�r�G���% #���@�H!)$����FABBrg����o�m�Ԣ�T��d2�u7�3�=��#?���?�)ZSv���}�CB���B�O�ЯԜ)��@0/�[-Z��P�j��H!)$���d?����5d� �mJg1�Yc��8�ɠ��� jN[��H���6��^P�iL6RH Iᰐ�������7��7�T1,4�~���L�\������������S�� ��`�������j��ɦ��c��NK���1[dZRH I�E6���H$R(&c!e���w�uoZ;Y�х 7+]$$$$$$cຏ��� jd�Ы�2Q���^}U7A I!)�� S�HHF�����L�AsΞ3-@�M^���E�je��K�uN4nĂ�s#��Tܬ���^��wyq��N6��X7c� O�fmښ�;�ݙF2��D���3�ݐ,�\�� t︵K•���u� ��E;�� ��u�8uŖ��/�@ I �q�Ha�L��P����p�Ц�E���'�9\����\.B�mZ+��B�Mk&���ڴC���/��f���P,��v�������X��Jݶկ�@N��*��~5���:���p�O�s���7���;C��:Z{�K�(�;��&iW�뒌���c�jUouJH!k�E���2���N�� L%��Y.V �0�׮��Y�ݗ��c��g�)���Uk�t�Ψ��<���u����1��d�5ۥL�� :l�;��Bd0�4��D8����m�]k:t4R8���$�6w�a1����w\:�P��u7��8X�;d0�ǂ�CM��hc�-6 ��f6��E��B����e!ƾ΢��uj�.\��� Բ�sE�#�/����Dz˯�3�='��t���0���Y���6v��tMM�8���,��ߡ�%t�ݳC�Z���U$���MG���s#|X����b^a��@�� ϋ�a���k�ϕw!d�C1�"[�lfm~� #ݯ#��K=��-П���� a;JN�֫�[x��&��~7T�ƭ}pQРWk����I�$�d��g� ڪ��f ]�1�,['d���F��W|�^8t�CY�β�g���o�թ�;&u{��Nup���k!�`<�V�R���7�q@A ��)47/�3�i1Z����h]�H�-����:CQr�鹹[\k��>��iz�Irm�P���v JN��T�Yԭ��v�e�Ef���LS[�sΜv���pkx��V�3��ř���{�;}��k� Ђ�3y��g>ٛw^�&e�������̎®�_��0/��!�{������$F����_���f�HGֶ�_�����݅:����w�4ݡGg.������r: �G����-��~��W.�b���D��K�3���s�Dx0��h����>��Ϝ�@������s�ڨ�K��={��ٳ�ӍzmS�3���� �/��s�n87n^���ޯ�����~�僧��}��XZ�᯾:��5/-pz3�\,�����!�9?����Q�4H{l~>l/��F�5�R���v���O�ܿfN��MO��ޙm]f���Sn�uu�-.�0%�����ŵ�[��0���q�$��5IHn��q�ڽ}�Z������/�Ɲi2#d �r6k1�EKf+~� s����y� eF+������_���MV��6%�dž^��-V_KO��cA�M��K�4f����ax�G�#�Hʾ�rZ�� � um�z+��jan���[�^*3Zڛ��9"t2I��l�t�-�V�e�������+�A<t���[���~v���J�d2�Ǥ�[k M0˵�I�6 a�}xPkoGW֖]�5��zlA\�ӛᎀ�f�-l2A�H�N�A�� ���k,Q>�*q㡷���( A�����[�5�'�9�E�Ac,8y��Ԛ O�L<%G�c0w�kM��F �a>>M��0I��k���xЀ� e�őrs��=�(���rr�t���&58&����TIh��SwD�]�9��"N ��Y�-�B��o�����-������c��.u�8,�� ����@<�}�m7q�\� ��u�EY����nh�%�*(��t���B=ݍ*���-ڹk�٬��z,G^bA�0�3�86�Kr����Twts�ƚ*N�Ѩ[��qb3kgc�k%�x�7��Z��c`Z��K��juq����e,^D7��P���4=7wdך����!�� &��?In#D���j��_4�0jw}�p���ː�M�41 #FG0���'�B?Ba2��b)Dt�.�Aq��� f�� ���2ɝ����8��*��� f|�Eѡ��kP��r���¦�\��p3��9斟D�-��S��}���8v\fP��/N�Y5�"���p��wF �-��s�\�#�T�MmZ$���܈����CW�����h��okGk���FsL�1�T�7��þ�+��M���P�ss���t�}����< Ly��>�}}� ��D��pA���(P�4N4�}}F��H.Ah¨Pa_�ӥ<4j�7N̠�A�����Bq���Q�a!"[��Ր$ۛ�"(#,Dd�S9WÌ��$l�t^�f|�m�����Ǣ�4^��+���HFa���}}��$�yB6����p�B�w�ǎ���7��(�Ӫh��圏�=��?����[}�a���P��ba(��wz'� �Ug>���'�����{l�G����.l���D�#N � fa���)��k�rS�2�-�\��ӜӢ��W��g:�q�V&�~������0%G�c0w�kM��F �a>>M�2�$��'�m��#T���͖�� aKVݝLG,eWe��~'� �8W�����ln��,-�q�T��=�D�|����P�JVRҦ W.Z�� 4=�'�\n�Hg�]��jUu7/�����؝�՟kTS�1A4>d?p���dj(.�Y�x�n6fVv\*��ŋ�ߕ��uݵ��\��I�ؼ{)բ�>S� ��/��X(.|�c��B����f��/MK����-;��E#��=]y�< >����Q`ц���ȗ::9���rY�k�R�oX�Ƭ�ޮ��-��KS�Bg`Zz4�;͉�j��i�>o�T��T���,��J��4l��Csg jNБ[�q8r������k���3q�ƽG�U�UIƋ���h�py�c�In9X���c%_��3`�����%_w��t�n0#g�GX��Uk�S"����)N[��HM��K$�@��E3B�аp��H �{��!t��|��dJsDBBBBBr���472����{��{�Z���wٽG2.h␐�.h>���)�������(a��m���Ѧ���ՁС��ʭk� :rk>Gn2u9"�H\C�?������t�N�5��d���1X�)N[ư�4ɴ't�$AB��a� �H���sG���#���q�. S�#��ܤ�ۗz7��)���K$$$$$$$$$$$�B�HHHHHHHHHHH<��?�8^������η� L \���5�ܑc&�ȝ�8� ������/�V'b�� ���[���9�a��d�% ur�%#+6Ih��.u�ܒ��&3�������w�������3�#���� ������s��&�c�󯢞��=����|~�E@ ^�� �-��hZK�~��}�NI�~��?6rq7ke��>����]-�������ֿUy�b�m�'�m})�g�o�f~���������� �3�xxSɗ�s����|�Ó #g^�z5^�C/?�%���y���i_����f?w�)���J�Hx��7|��ث���;���C��w�rھze�3���y���ƻ�=7�{~����]�j��Ɂ&JY� ��c���V���R�e�aR3&J�9K�\�ԇ�v��j���ǒn�g����SǮ:ݚc�M�s�ߌi���k��]G��]��,ܩ@�x��P��tZs˅�.�:��S%ܵ8d8J��)����2'؋E!����˗+{,5}���S��"!��v�Gn2�9����xmM��n�A���6�2g��o���b�%�O��_�buU'��������w=#�b��_Yv���NO���=~%��=���w��W�i���j����x�Q��b�����Qb������y���/Z��]o����_���8���s4�1c�������~}A�k�V��|����Е�?�sS��-|� �^,w�Mw�G�1TL���}9���z�Jx���S�p"72s~�?�+Yء�g(�����/�J�.�#<2#�Ә��Ԫ^��鑒���FDZ��_J���i� ��hO��v� ����? ��9cΣ��������"���Wu��f p壇W��dX�K/�{��Pּwt˅�?�+�����W�;[��}�_<�a�Nh�h׃_I��~���W����߾��7WF�a�^#<��e{�X��^y�޹! MKɡ�uQ��{<��ݦ���%�EM!���z����\�=(�a�7({�%Y$⡝���~Mi���n����|sꑷ�#?�kp ��+�|�J@�3�>�&��:�^9BO��o=�ܧ����^=҆C�3���}��_=�P�_��o_?ځ;ϻ�ڧ:�ի�bN}R?e���;�ʯu��/  }��U�?t,`h�֚��/���\�fP�[���6�>�L��(~�ɼ�Ku�L>�����Ye&z�;����q�N�ɦ��9Ib������^M ����Do:��m/-o��a��e&�����`�Z��ׂ��9�ߛFh���-r���nx���g��c��Ϟ�2J+ �� ��9;T��u=����L�yW�����l*n��Nw�R�;x���a� \�]SZR#7;sD�K^�%`P��F����o���>�PT�6'�e�{w��i⯃�xGl���u�nZ��X��(~��?.Ŭ�j���֩� ܐ��RC�Y�������U�8��1A��Q����]�}�O ������S���=�I�� ����8�ي�MfW��� 怂(��Nƶ�7�M�~����i�<_~����c��=c�w?��-�B���QPfmI|b���g��sG���#w��p�6 S����mܽ��cw6ӕ�$���*u��0'F[[o��л���G�^�r�x<+%�:|�����:ԃT`������F����26#�����u��������ʺwO�|��YYYYY�q;�UO��X��O�nx�s�O^} ~�)#׬��:Yc���ny�~|���o���O���&���B]�2�>'�oXR�Ƀ/R ��o�J��v�w����<1����x�w�C�=r��Q���Aˇ��_�@�I�_6eee=�C�u���v�y����X���y�]�f5�˟o��买'�@]����E׬�s�� `�ko�T�.L�Y,B�����Ό����,k,BP\>��h����<��h����BU򡢅Y��y�������uЍxFQZO���d͉�@�O���s�`��� C��8�nO^^�����f�/���9|yY��Nj�XC�bo�y3�?< mi��{E��: �-���$�@ �3_ ;h�����1 "����K��V5!^���L������N\��-����'jv�������?Z��];��d�-��Q����8�Ν3+u��Y�o����#������������N�Eԝ>��P�e9�OD��l %G��=T���H �:�;-<}�����޽���Uw�˼�¡� bQ���(o�'s�7oY�{���R��S�I�3nԆM+�ٸlے�8>�o�-���Yy�ƕ��eVg�F���+bqE~:�-E7N� a0ټ#�z�z�5aͱ@�?�L���I���$���H5�4�����=w� :rg>Gn2�9 %�޻�1��[��}��J����/�37{��?_���r����rT�}P A��˓���Gf�c��뵥O���;D�c_�>��>��U���_�M�=ǚ�p~�e����VT��A�{������f�d��f���sM�J�z{s��撽o����O`��u�uU�_��k�/[���;\�X��t�mwO�ӭV+U3;��e�Xht� ӨGވj��9r�]]'�|]�Бw,H ��c�9ڢh��6�G�2�m-���T����������b ����E��}ã"BCyƆ�F5#|v���6�:"��/�gm� a��4�5�?Ie�� ЧP��L&���%4����6IW�ń~àP� m�/�A^�o%��.�]�c��8U��"�m-�F<`��+�jU{��a����Ba����]�% ��@ȥ�Vk�U)���V��pBCge��K{kwf���&��LZ���  too.4�nU�� �f�>����a8v�,�7b�Hi��hs5���U;�U�ҘL*�UvՖt�%\�@�Y�c���]8�Dp�w��@h�P�p�r���QޙI�W'�l�t0�ѡ�������f ?�x������A�/���>_������0��y6��Z5j�);��{^��yd������mY��`~G�����Lf3�a�����p�R,fWU��=/��|�ٝ�~���u��f� P(�š�b8�ۅ.�nQ��B��񨞩�f�����m�E#6�m,B����� �6��Vv�p�7%��\��эF���n)�`��J�Y�(v�,b���ђ0 IDAT@E�F�����u�!Pe�,]��Y�*����Ox����� �'���(:$���;EQv̒�a8���w��q�#��_8oÖ�Y/�x�{P<|� {�`�HTI�>���J[� ]Ci�WZƚD��i�Z^Ѫ�EQx�-�N��##�.�;w�ud�lF���T�[t��׋���7Ƌ�df�$\�� n�������%0���;��u��^��2���R�H����a��6W�ш[���`�qA,���%�ǝN��Xs,���O�z9�Xі��[��o�h�k��PĢ�4��ԙ~dzB��[ܽ��hNБ;�q8r����0����� �`��m�>�x��Ǒ�t���JaѴ^�v~<��fd��>��5��Z�ٽ�t��_��b� sOqYӛ�b��b������gĥ �* �.���"#��V����g���ʜ5K�N>$�������z���z�6V>���I�*����0�vl������!dG.^��t���qi�5e��FR���� ��OO��U,lm߽�I�'�?r��{�=��P(����BWy�8\�Ru�';��z�ɤX��b����)A�1��}�M#C��gqث��&�����#�������L�d[���2P�A� ��BdHS�z�l��o�mA�"B�-�܌�&FF�Q�y���6���"�#V���{�&���8�T~p����U:4�@/�4,��3}������$�P��o|f��(٩zèlR 0,�ü�8̻Y�q0 ‘� ��Д��Su�ogU�ɸ3NH�|FkN���V�J 5L���M@z:�z���ͨZ��`B��t&�e0M��z���2I�}�� � @6��h��`�/���(P�/'ğFsl<��sG���#w��p�6 S��a�����a���q�l�����x. (3(+=�S� P�ю�6���p���ݟ����kgo��c0|3v� ���j��@~��2b�������󅶌�Ϯ)(Q�St˸� R�|QH����f�������{��āQ�����O� QFB�?���!B�E%��m��U=�n^p{X����rG�h�;���}�镣�Ջg%z��4�I�Fm�'U�b-�k���t�FBH����u�=1��O�_���RE ��65��.��T��%�ƺ�^wy Tɺ=�7��$���1�J�ą!ʱit�Mo����[q��~(�6���H�0�����b:F�Ņ1e��M��i�,Q���a��!���@�Ӱ���t&�75�g���j� ���#�G�g��� �oisWvU+��Po:Fa��qe�Ӣ�Z�d�xa?6sq�u�E1��!2T������fϛ�tn؈�M�Db���/�( �b�G�z1P�d0���l���J���ڸ(��,�Z���,d2y!)��T�y��ާ#N  `b(F�� ���&�L�嘱q�X�=J>�~�>U�I�1y���0�B|j�҉�B�p��ͳQ� �L� J�S�����K6�N\���i��A�;͉@�?�����8 �b�`$֪���.6�ܑC&�ȝ�x� ���h���g�+��p����/}���Vg����{�o��1.�>��?�jގ����?',����G��ڡ��y�}��~c�ڐ��d���7;i�����Cݚ�ˬ���������WoL�c,\�y����,*��6P~��_{c�Ƃ�=�t>��rK�\��u��@�A��� �i�wue�5�J���Y����G�55 7��������"����W>w�x+����͹����_�\ ��ŸC�;�F�r��?{�þLsgž߿}y�Zs����XFI�w��SE ���8�{��W�&g����H{ygɽ`i�������H0?c�V��Vp����BJ��{�{�� �.lw�\Ww��{~��T�����d����;�*��s͢�^Iay���r�_VVv�����'�>���YVş�`I ��W�5���~B �m)s� dn�T*��hS"����;���|�h�ҭ� Ԫ�^+Q�Ni����nܕ �E+�z>��V.v�x�J�11,���\)�Вue� ��~49m�l/&j��(/m2��{���;X�E-��0(�1����k�Y+6ũj �J��\���O�E[2b�v��h���,�/�K�Z����t}��e�����嘹X�J�f-X����t}�ŗ�u��TК4w鲅¤�_�h��#�ѭJ3��e��]��L]���kd�uCK��U�z�ڧ��iNd�";�����˓pV�)�땕�e��U��,\�e��U*5\'8= ��.,V;��2��+o�ќ�#w��p�6 S�������Z7��P�T����o-?���sǾ�5g���e�l�����R���w��>�v��Z�|l�ʡ����x}��?�~���;����u��9vl��%�à�/��z��m6��#4$kg��\{��%�ZN/��l �~nZ��&~9H<�. X�]F^p��&o�RۦD8m��#E�_�10���0 tf��`� L��t��␹�3AG�����m@�6G���7N�������:��o���ⓅZ��\���_p����{n�q(�O��[��}e�xw�&!#��p���ԗ�8�����M۷mݺu���KC�W�ƴ3�MK���/�G`l�����%�L�p�@�?�0����Yg�8�0�u�-�X4b��l����]l����1�#���M���i]� W�o�&1FP|���A��� !!!� @0�BXM|��65�i�u)r�Ì�f�tl �¬7���[�Cs��ܘ�Ǒ��Lq�H<��s��V�a�0Jj�Ok'!!!!��6�i��1x05™�L�ABBBBBBBBBBrk �$$$$$$$$$$$�B�f <��[S��1��[a?�(e�r?/��;r��3�#����x������DLT���z�ABBBBBr� �3� u^X�&?�~0 �7>l~2��YC�;r��3�#������?��������>�1ig�~�> ����� !��ON�~y�K��g ���9��|���p"�������\o��U$���“������-��n���w��ı?��1&?s����ƟAn�/����{g�ݫ�B�QK��b^ Ə��lݦ-[6�]:7¾W�J]�f��[7�_�� �רּr�gg�ٸe˦u��E \?��E�R���vX��UI!㬫MI�������'�c>|NQ���G:�%�6� �`3���96�q+֥�F�'�3��1�+�o޲yê�$�G6Sd�@���m_�t�����bׯ[�m������=���^�x˚%벒"y(�m_��g_ �?e뺹1���� r����;bav���Y+f�'g�39z������������/�5�m�d����f��tն!s�9f��ܙ�ÑۀLm�n 0>^[S�b���粏�Xw���Q��b�����QbZ�ҋ�̣�]q���0-����߶����_�E�yj��.j���x2k�����ř��P\��f�bxǐ�;�?�*����u�强�������ON�m���E�:�?��ő�*`��$1��N�i����)�]y�F��� }��|� �D.X���bfE�'3� N��!����� �����ٶ����&��u�=�v��{rN�9��������0�$������m�a޳�$��u��N��%��A�O�uw���-��fPz�������Ί�\�� }��ݏ��������v@zr���u{{`��"UŅR5旘6?Zu�f�[ȑ���ͪQ�`%�<a�m�;}��Z�Cs��ܙ�ÑۀLm�����П)}j��Mc~:р��~���������g�J{���oB��BQ��}�h�=��%/�y.K�w�|\9��m`dݻM���?J }���G?�:�q�{���~:~T����-��x���91PP�D���7=# ����:���Ƀ�O7~�+�^9�����������ҫG�p'�g%�z��{�04-%�����E��ғ�ڧ:�ի�bN}R?�;�O&��dXp�+>J(�zQ lU�ު4�����H�h1�p�ŊAX���d�0��@і�6�W�t��+f��h@�hP7�(h���I���q���������� ]Wm!q!lKWuEi��?ei��� g�_k�F' zK ���2���uk�-�� ���������+M�����c�Q�V[Z�gr�$�lz���F��$���f�I��K2)pBB� @��>Ր�S����tg���"�������jY˵+�R� ���Z�Q���s,����v��s#pNfZ0�$�R\ڪ!@��~q$T�';��C��>�XV�MN`Xz��4�,�\�N��?��}��b����.�.;q��^��Qʏ^6'�Z�X�=��Ξ��$u_-�Ь&v`Ꜥ !��+�*�j�&'IB4ҫ�v�����9 70�A�"0ql�Wg]#7���O�8anj�N�c�U՞,i�9Ȼ��P�e[@<����;+Q$+={���W�n�@(����X��� �7@�2�}��O�����&��a�vw4�uk�2|��5�}5�GzM�����t^�Z���=�����ӯ�d. �1O�FA�xh����uk�#�LБ;�q8r����h�6�^�۱;{읠�UO�S��=�7>�/��?<�:04'l�jʗ?߸��saO<�1�����x����⻅P�̮������r��y��}`ω'����m�a�Z&3�e��T��s��|��� �s3ġ���r{%��/�������:��u;ϼ|��,�zr����97F�w�S����}�]�~R�77q� �.']�:γ��JPߘ(��^j轚S�b/ �x^ ���ƒ2K��M7nZ(=_�i���ʋ�\�a�u��r�~<��E��_U��s���WЪ���^o��C�Jkl!�F�a"�PRp�J���@����k���P��j��8}uG���+,� ������KY��>(�1�Gu�\ޑ�Kp| �U�R�����C9�W���bΓ4}ᅄ`�����#aE��Myǎ�,��`���Z )>bJC����j����ټ����(�����=��8_�G��ߟ�t��� �4�=Z a'���.�� A�r�͗x%��"�T!����|}iҮ^��S�����24��߿����p¢��.�.���P�����+.�:|��ChF��i���ך@�B��_��}����짺ҠtS�g�'E��O=|�t�ZW�[�jo�qp9!S_Q�͟�֖�B�w�sqk��/[�d��E�3#�0�ѨʉN�ܰjɺ� ����I������H�+���?N��%�ƃmi ��0<3%�k4���E�?����Z�A��I�\+3^�B������iKِ��3AG�����m@�6G#�$�{w2�]�{˞�o:=0&8:Z^�a��p>���H�7T*������+�? ��9@���~���ʟ� &>���ֽ�k����w}�� ����m)y�[i���W��ǃ�ljyձ�.`�ذ�.��~`�r�����-s]��:���������cAB98�<��T��7�l.��v��s����VR�fz����j[O��X>!�AA~^��-Z����.�v�Q��9�q�3Wz���y�/RD� 3SCe-ch�gsyF������on��&�B"�X��>� y���m���L�`�p�Υ�nӘ� �M�`�{�O�Ŋ��W����_��<����l�J��� ��4m����λ- �� *��ݍ����Vy{�� Ч�a#�y�9umW�eZm��p�Z�n�ڬ4�{�l�l�`�� �Դִ��*y1��0��Ҿ$�m������� We9][u�T��T�X =��7H���lR�K�3@at�$jx֦4_�����\����I��Zh|0�T�a�(׊f���� t��-��� y ze=V��U%��AV���5sQ5�=׆B�'d&�η��7/);~Ťf&�.tze��0�E�h �'H`����)4B���d����Ì�O������?�qļ��D������=w� :rg>G�2�9�`������и]�����ű�$�T��60�j�R)�D���(N���#�i.8�<�����Z5��E�#�� �{�aWt8��8�ڽ��f�l#{���Kq�`�p�bȟw���!%m�K_C���lCA�1����A�/���>_������0�m�[�*�P(�ֻl#b_mW�`��꛺t�������Z�o�(~�� r ���ĭ ]��=-MJ3fYc�f��c�?�� Z����Uח[ �E�������Eq�L��EPb�8����E�4mAD!��<�K%}S�N�쥱,B+��U]�Ќ.0� s]�sd����`X�e: 8�A*���z#� _�����=2IvG(����7�G&��R���qC�d�C�;\tAx�)�L�t]�dp��M�*Aڪ��,�����M?�r����a�ͬo�V�s�����Im!�"k��,�����)X �͵�f4�V�z��qAKWա.j��1����zޞx��|t��8 �w�FA�_��ۃ��G�{��1t��|�M^�#C��m�N�n�w�Xp��u���+:�[x��d�f�2����M9�N�Վ�9%i�@P'f���'$P��1�I0����Z��/�:r�X��0--��;�s�Aܓ�k�<�N*5�� D�ފ.ٰ��뮦���� 1p�F�c��u���a�'/o+t��;�g�zc�sW��q��3<�Oz����'O�Tthg�}<�F v��0[F��G�!�������5w�5T�8��p1 �zg.I5�� .���w_y�o�Y9��ڛC�����¦�;���}�����=g��t�.Lܸ,��Z0fo��]�|:�?뮕����'�U��Ջ�[�:g� �(U�`�lSC�@�o�<����7�R,*�\mY�  Tɺo�Dc��-d����i4��`�n�Je� faB����*5�M��/ ���0 �7*���u9*ͤ�SE�|&��e��iU �?@��Dz��A( �!3m �:�b�(IL� >�~~|\��a�ܠ�����SB�z[�g0x�I���ndZJ����f���ly�9����Qe��ؔ�1O'w|N�CP�_��sj�R�7>J��%�>j��"���r��WԪTL� !Ø~�"\�rv5 n��H! �������\��0�S@mᾣ9����;�_�kk��s��qJQ�3� ���ޘq�OP����M,�TJ[_�00ҋ�a �P?v�r� F�5�_꘴�n=���9)�g S�wy�i +(��OF;9~i��U��K�@@����:����|�߇JGg�{��1t��|�M^� ��w���sM��tCŪ�7��_*��F�.]��j�\� Ș�: �ȫr [;2�]���[K���-����h��Z07sm �FMOmy�����A���Zk��WmIª��^,��`�������'>-+����ʞ��N:�jXs�$� C����� 6�31�j_�sV����kK�Kr0�Uz�֯|�Z{*+��I�70pmO[ɵ�/� �1ܗ�c˛��< g%���kW�˫r�>�W��˫r�F�b)�K��i�����C�M�&�ќ�#w��h���<..��ֳ��d��AK}��������E�}d�h�y����/~�gߏ�wx�8|Ӿ�n�;ǎ�?�$wԐ�5�K$,�2��9r �!��o��۪����{%]�i K�{;{:��$�B)�o�{J�R(�����B~e}i e%�PBg9q�x�{˲$k�qu��َ�dɱL���_�C>:�|�s�չ�9E)��������hk_��U�>𛍥J���r�s�}�1t�5����u�?_�خ������ $E\������+{ 3T@�$k^i����^k_S]�qx'�$��Lױo��Y���s*V����|{� ->ky:kxu^���z3�dy��iR�6v��wۉ(1nr�d!�A=��ƚVS���lm��@m�����E��{:#��/��X�?p�w���@�����$�ݖ��.{����]V�j>�8�w3�|�ӗ����Δ���'��_��q����>z�UnƊUy����t�AZ|V��ྎhws�� qVyY���mmU;��"�*?���$ŋs��L��45�5v�IN�� �E���|Uח�3 T�RP�)峨�������$0IzaY���ym����Q���������I��k�O�F 0UɦRVK屎�s�$K�Q^���)������m�0q����Uz��M�ߢ��� ڪ?�QOڼ�?����m����� �W3y�B���P�� J�I� �����&9�����;!�g;�������{�| !��A$��~W?Ҁμ�������G����׬�^��#yˣw$}s��j��^~����&�R\��C����N2�?�z�E�o��[���ޚчN��u�h��w������}�vF ��(�E{*��b��e�����x��eYr�n����R������ֽc������+�5�5LQ�tA���&;1&?5?�۲��.��2��I�2�Fj;�<>� �8��:�|f�x8�y����UN��)\V�n��[��\M w�ٜ�m[F�ik���&��U2>�W�\� ��m@��S�������E؈/8�<�9�)�3�9�f~�ݿ�ʼn��m(�������|��"l�tЛ�FO.����t� �dE~��h���R���T��b���%9��,C7��\��yGUH&���hCdR1BE;qV�%�ʜ �5TQP�0˱���pu�9�����@�s�o3T��o5��P>����U�H���"3M�X�&�8��`/�������)��Q��{�eC�$���쥧�=f���?z��4��*/��7���-H���{..�����_��[G&}���>���/wÛ���J���xcƮW?�z$+��b�'H�!�;����u;o�t��o\6�Xqf�����4Y�M�~� �ÀQ�W��qŞ��=ф���U�Y�ķ��A\�K�;DA�2h���8 ��c_S��!_����%����Ot ���)S)�=�1�]G�"����8^" CA� $D9@�����p@����v��X���Q��*�,�c�?�7��[���H�XNo��w���"��{�p��s�el���2�����_X�dM-��z�����O#���{�� �%�5���Y�chl�,�E�uI��͛�����ݮ W�&�����@��3��n~�H�hw�d\�1�b�}N� ��ܺ,~@�m�/O�:'9L=���� �^�����B����������25f���"3M�X�&�8���Wogl�zu'䍃�]������.����s��a���W��>�ɭ�~�@�]����?��nx�u���,�<_qF�Z$��OcOoN�������o�s���\��G�����v~��;�����H$"9�|惯����o=�)=j�X,���C� �O���@�KVTT����3�0�Y=-�3�<��[��m!e�eB�n�a�]��~V����f����ܴ��7�]1/]����/$�YX����|#M� ޮ������6���"�XU��⌒^/��P����"����^���Xhm8��O�m���ïo�*�;x��� �8S�D):��$��pY,�{j�| eq�\_���cM~�l�p1UiX߁=8EY2��Q�cWU���u��~�n�G3)���F��k'�T�I+Ρ���맪+'I2�� �%1����:�l>p 4k]A��A�88@�7/�Iq&��S4!����#��q�vv� � ��Z`��Cب��x�G��1�p�-��u7���D;yB���b#( �M�9"�"���B������l���]�}i��.��m���ӱsz�lEJJ�Z��k��,`��)ݽ�'���x � ,����~tg_K�#`7Y�$.@YM!Br� ue���([����R(y��F��{�����LF:u͇�s2���� uU낣jE�Z�*�0w�R$?���EQ��P6_&Ƙ�w������rx� ��,*R�M{���� ��7�n��7�n�����<W���"2M�X�&�8���l��y @ ��j���Lez,�� Ϣ"�Ɉ������� �I�����ٹ���)2���xc�7�Tpr-��sWw��}M 0��~�z)�<���V{�U���}�8�:)��M�Z�5̻���Cі�@��W_��a)V?���W��?ḟ�U��C�|M���p�Z�����5��d(�y�Ho�Α%���� ���{3%�P��E���w��<�9�5�&kD����$R!��k���b |z AP�f�  (�:�^u#S�(�v�b� @��INFJ}~Z8��&ř|�H5�`���'5{{�y�%+�9�ۢ�8Ѭs����]�L1�h������1��1�HR@��G�ll6���8��1Q�dS�°h�6��#�eo��e)y�'�ģ=|�'�(����� �d�$��lm��`MEQ#>2Y�!�dL@ �&O~�Ad�d�v��v0�h?�M���C=�2��������=�k� y��iJ�÷#Ay�@R���jo{�GRԨ ��<��,+ ����3y���E%�θ��i9ޖ��GEK�AK�Ee�� �������k���� �َR W2Z�H�5h�H�`�ɤ{��ʒ��Ϊ�V��� �H��n�t�����8���G�a_�&��Cp� J�������CW�-p�e92 ؒ���1`I�e�����F��/�i �J�0�ę�P�?n�x��~;����e E,�b��y����^$�� ([Q�'��H1��`�8(���)<��>k�_r��'���W��� �9H�[+����Z�7V\�n����V�nC2����W�ttv�5�?k���V.�t���x[�<��G�.�eI�--���=�cֽ(;yՒ<�~`f@P|MIq�����)��O�F���ǝC��hi����� P����$6�b�85Yh����7Ӳ�8��K�T�z� b̀���� A�R�pF�>�O(@N*�1���+�(*H-X�!�Y��c!�+����]���u����LA�Z�[}��-U��(�+�b���Ax� i�����\2�Iq&?����������&��8.P�*����ũ2�R�/���x�LG��H��ûnM3ω��N�L��0AF��lq��v:9 ���bl�JJ:�&!��b���pM'd�� �%�θa1Y!�?�,�Dı�'�4E1��"����$}�q�OY��3@0�\"�z���C;v��c�O;vh����?��r)k�����1kmzX�Ar���`p�ӕ��4\nfIqYqY�j���Ije��(K�":�̚�3t���ҽ@�@����J?P����?�*�$���� Ef�B��'L(q&�/4=߾�B�#���!C�O����k޻��Y��3�w)�}�/7������|���|w�����xq�o>7�Zw�go^*�+oީ l�-N��M���B� ��=���w����ܐ����/~>�~������Mr��ۧ��!��g��ϩ���_)1sӷzf�F���q�o��o�����+Cݖ��;��qP�)C �4��-Z��D���^����mZ�����D_�w�'��ҷ6�KKWmdc!�m�������FX^�z�t;�Oةh1���}eE+�*c�����'ꪀ��K?@�����76 �,�g!!�������͒U�l%#=��c��=n����SZ�8��\���^[8�&ay��l��j&oe�::T�%k�P��QY��F4)�䓊� ` ����8�g��k�T�[�.��S�mH �?�m$�hI������I��mX��]Ys^>8����ك`�yC9�� �*6r!�����5ψD�3b̠��AR�d} y;�Qo\P�X/)_�6�Ey-�����̒tO�^s�omԦ.,��3ag� �H]p��=m]ѱJ/ٴ����G-�D 5D�Hc M3y„g�$� ���c���� �X�>�y�_�s�E3�aj�U�~<�K��s%ϙ`��94y�٩���T��b ��c��Js�0�i%ɘ��K�g�r3TA}C�7)'SE��mD���#�H>�����/��e��h�W. C3�l�R%/r�S�L,�i&O�P�L�_�����g���� ��؝+y�s���V����n� 6lذnq����>[q&A��u�� �\���E�!�3�hb$����s[&�I����2�r:����X�X(@�f�o����7�4�XB�L�0�ę4Irz��fr���3 ��b3��R�T� CBT���#�H>�����T� ��l /G�Y�� R^�=1rO E$��4�'L(q&�/DCCCCCCs&C�<� �}���#b�����g7sj���f�RPPp�M�,4�������f�C�44444444444�B�s���~� qP,�%�a ��kn|�7  �L,�i&O�P�L�_���������g2���8��-�^z���HN��J*۸u�ґ w�~qN!?�F6�� W�rf���^$ٛ/۰.���s����Y��s�D �L,�i&O�P�L�_(��.�H7��M''|�6�N��u �0iN' Q֢5k �N�0řeK+V�^��8E�%$�*�,_�f�ꕋ�S��[��p��5k׮�XZ�)I��9qΪ�8��+eAE�Q^Œ��{����yNI���i��c 3��^Y"�H3�0}�����ἴ��V���+V�\�j�oU��YK֯̕!��p�����4�S�V�h������qLXtv�����cM� �d�3�s IDAT/������8Q�� ������g-]Z�B���'��E���C�����u�@:��� *C&7�����!Ӹ�g�_���#��/�B��%4�� J�I� %��7�� ��{�(5vl�3Nraa�u�G/���y%I��#'��,o^I��`�s��lMa��=X�E���e) ��|M���y��@8�e�2Z�n�-�;#a�Tc�e�m� ����� GUR�"C]6�@�qp��y)R�e�x��ʜ�7:��{�h߸�+���B0��D�Ps���� ����.L�]R��8�堼�c��p8lF 7c���f������������~����IkK^�OH��l��������9 �5��'��0�c��H���D����f� %Τ����Ѫon÷m-��e[�_6|tޖc7U}s�������|�k�n"����R�׍�d�n��׭���o_���>n���������$��e�����c.$��'_zl��ӄ�T?�˫�������Gԣ E3~��lU��`������ȉ��v�����.F�ͺ���� � [!đ�����b�D.;��y��J!~?�����&+�X�"�O��kp����N*� &�L�n�\$�6�z�ni��?� T���3vjy��7�t�.�R��9����}�-@���"���-�?��d�����}ዉ�D��AK_���� ��,!��or$��E3��K>����d_����1�����?/�N�Pdb M3y„g�$�C��ɌmA�Hϻ~��ώ�i��e}������������������?�sg ��g��X\�����^x���>x���/7��Ծ��K;��V�x&�d2C�HE8�f��f ��S~?)�(-J��}~ǧ�d�(?�tiŚ�+��������b��Uk+̵̓����Tc��CU5���4) yn��\��Pm�_Q�.`(����c����w5c��|���z���nRS�ƟD���R�z�c��:�7�PUu����LB���-�[O�Wy�ï*� w�!"����,�NE�N �\�`�� ��ƃ{���g� q4٩��Õ��Vu�}=���ǒ�����++k��!��Bь�@�l� dR[*e��v`k�2(���k;�l���P�MU�{6�y�9JF��3Ty�{ӡ}��kG����>���ӄp��q?�ȁI�혓.�!�U��&9:zƶH9��W,[�bɲyy���5h��b1���6�r��x��N-�Wr�?Ί�J3��Sa�'�)ҳ3�S�"_���$1ť+���oz�&ʌ��U��q �8���50�������Lۣ%�XB�L�0�ę4Ir�ݮT*�f�כ�G���s����ۿ��e��S�HY�����ߞ~{/߱⊗7,Z �����f��`�%]p�e�ii)��E�\�~�����᎕��IN��4��xrr��>���(F��HD��R(�M;��"�����(��4?�R� ��y��1*&�o~��W��~��_�����w�;]H�r"���conn���4���ߏ�,��#����;�FQ�"cڦ(:�ݿI���& � $E �|�]�����W�_�H3D���T�&�EQ2��G���;^�=�ʏb�s����꦳0%�� �\!Y '�,�&S`�T(f���C�!gSM?�L�8��4_m;���)&�b"D� #�}t�����A�7��I}b�$�v�Q�$6_�J3���B�S}ܗ������+�����sk{�` ��FjoV��������h ��&�9��G�~��5Õ��ě=�y���?�Xx���y��<\��Z1_��}�hx�y�J�� �*�>���,.YV��&P(2����~��M�?z��<~�2��Ac����i���Y(r�ˮ�m�j@�%A|���<�ܫ7�K\hf�A_�&fa �"M� ��Hڬ�:E��0�4UűٝA�; �+�( �J�w���#���bK�&��$�v������r>��M�J�b#1q�����(2�L%w鍱��^� �)�Lc��������\�X�EP^JQY��"�� g���r�vd�y)E���y�Q�^� )�H��L��p��<���BȠ�OPᶠ���e*1 E\uɲ#Z�}^/[*�X���𥠌�=��mQ+��m"F�+2Gz�|���lY�^0���Lv���jdv����!�9��;���%B3U�?���S C@}zq�g@���������>!tZB��%4�� J�I� ������~�+W��I}�W��^�4� "]x�#犼_?�Ы��%7�����we�z��_u�r|G��O����~til���c/o�����{n~텺=�u�g��{�� e{륿nɹ������[q�˛"�C3G��.W�+����@��m6 �T�������M/Чmn��,�bQ~��D�>��&]a�Št[:ZtS�� c[���pa:��9�-v���C�T\�(����gѤ�l�.�b������!�L��9��1;����Qa��t&��7��>�з�� �Wf��k�m����]�E�ֆ�T�k�>Q�3��>Q��� �pzF�s����L��� �N$+�<��#A�`{�.0TLaA��U8Jx̝M#���w�ʋ,Ou�5��4���=է��xU�f觽Z D������O�v�e$+��jŒ�d t���#=�!So�4'�R#�SK�~xz�(�kn�_!Sk3�0w~��X� #NA���Y�sd/j̉=�<��̷_8������l�F��>yX�֋������,� ��������vw�]w-�|���1#��7^w��+�5$J(�x,���'qB��D�3jSי��9�D�i޼�ٯ�>-���E���I� ��l�)�*�W%[�o*��2�c��o�� kyҜ2ӿ4�K�R$�`��'JM���u�Ќ����B��q�ø�=0�L�\���DCCC3Kyx���m��A�b�²�;���-朾�s�N����}��Q���x���9��.�,�\�����ş+e?�vΕ�DC3����9��/�Mb%&3���y��S�"��t���ω'�(�%K��pNIXҴ���L9;vTIZa��%K�,^���Ƶ� SSK�֔-[�4Wz��B��Ф�e˖'Oܔn����`�0y2�$0L�*M`�줡�*x�E�l�W��r���Z���~�����Ow��/�G�N���{�Ro�V7��X%p*��ihhh� � -?C�A��oc��OV�~�{�������Ra_ ������ -�N����ԙjé��;��cE��-b�SO�0�/��e���s��������HgB}�̘�44S)����~-���K�'>�λ�}U��OX�ݴ�\����6��d�mPԘ��Țm��W��NN���@�4444s�,;W�E��ez:�Q��I+�~��kVdq]}��>}�����#A���g�nM�88P�Ջ?�Y{�����nH�^7��@��֧���$���ë=�~�o�s���Zpѻ���_^�о(9�\:?�^m�q���6�T��[ڈ�5\���~?cQ�*�b��*pt��� S��LW 9 �-�]�Fό�j-�\\��dy�d!Cӑ.;0��t��à.�����@���P�o��S3�8a�jj�(�˒]ݽ,�:���P䥀��Uo�I�����H8 �v]W����I�7��,�vԶ8�"�I��>���M���S�)�de(�l,�w�M��~[ �G���"�㌡����H�,�K���T �x)���|���=��dv�r�I�?�з��[7�����7�/�c����5W�����������H�Sa���@���JN�t444441�q%~�������˝$!�U�e�N����9�ɑ�BV>�փgK�=w�O�w�_V( ������}����7� �}�����(E��ox|��.�t����emy��� Z����?}� k������n{�.� �������7#)E��,n�%LI� �5uwv�$@Ъ������C����Ҥ,����B�Yy����5uu�Y��wvvvv��V�a���W���<2� OR�&7–%'�P��$YҴd<@0�b!�Y���$�{���Bp��*�)�4%��d.��� '�G�F���*a����{ .��� ��HR����D}��r�7�v�Ûd�u��W���Q4 P���?���.Y?@JJ�ȗIn]�����>{9�?O��K��<���>p�`���c�ݳ�;Y`D�\�'0�S3���[=�����=fK�)�����&"B�bтKz��M��N�=���`GG��:�[�Y���ǂ�2���ct�,x��2$b>�s���|�w�Y�������U���]��E��uD:�$bL��"�}��?��9� �у�`8������{��g�G}��C1@@��aA�D���!���1?#y�b�����ώɅ*���`@�e2�B� ��p[��p74��ga���1B���� pOr�&S�S�p�6O�c9�4��*U��;�ơ\�>��d�c,W�X,�c:/�}��n���  �t�\,��?�u*����섩��>����$9�q�L����85U�y���>��%���(���f�IOB4u�c���h���I�/3�l����ůNC3��,&�!%I@p�HW����O�}e`����u��/ݾ�ҬC0�D!b��{��> `��+�s��]������"��L��7���k�����M�).ܰb�p|�:ghhhh�{ <�}��"��������ݲp!�y��Ϧ�0��T�o7 Fm��}���տ���V�G�zv�p�M�װXL���4^@�<. ��1& g�P�?V?�r�g�^/�Mє|�*`z����p��7;�H (����A��1Qt��C0aZa�8�;@29㣝���0�y�d ��p�$E���t��k�����S �"E#�0Q�&i�F6��W1��W��}jS��C���u��d)9E)@�mڶV�+raI� ՙ ��C�=0�����NA�x� ���� ��u_�SW�.ٺ8��-; _^��1����Oks�ɽ�;�7�-�~�U���?1N���do Ш��nnm��! �5|��FCCCC3s�����q�)g���{���#ʂ����6����߻�!�~���g��#�ȩ�b��|&@��y�ޚ�jtA2@�Llt�s���m�%��� |��as�����_'��ѡ(jȉ��6�|� G���� 3�2�|��P� �Iu��Y���A�[�B�q�,*M�V�l] �VLQP���`J&�{;<] I-V�����Z�C��v4 v1�YJV�4M#3� F��Bu���V�cx8�/���g�I���D����R�A�Q������ݲ����K߻����y�v���#k�?t��7�����ڧW]�mP��^������x�dz�4 ͙�p�[;.7��CmV ���Κc�ł k�=��=x1���_�b�j�e�ՒyRH]y��+Iu���H\��2���*���v<�wN�Px�!���3�L?��:���" �/sC�@�"�L�MZG���_v@,6G(`!*�b���פ)�!�@w�����d�����IF���������^�E�nx�.��M<�}���!pJFa �B�����P�\-�}�~�'j�*#��M����WmY.���/�>�I�/�y��'e���p�y%�����~����/ݼ:_ʲ��>�����=�#� t� �-\{�����������@vֵ���Vlܼn^���m������Qk����6=o�M���J�-�T p�% ��7�d�q ��7I#��m�.8RM/�0a7��9��/�%I8��u�Z�{� �� �(��ty}��6}n/�+J�b>�~��…2�J)�>�^gt[���B��)R)A�> P�Cf]����Mg�d�Wv��C�D�$����o�r�$A�bt�5)�"�$��� \�$�T��̈́4�=�K2J��E\�x��K� .~�@G���`�ǃ�f�Pƣ����n���,����y��I ny鶌�O<�C��g0}�헖z�c�~��t(��IDAT��֜\�d�y�+`t��{���1p*F!lvbZ������q�P�c\f��uӳD-�y�.��#6 &3�5�fV�є��2ۚ�.P�&?_��<�lL�d1�������gy��Ǐ����|�����;P>�y��!6 ���:�6��Ʊs4���`��Hs��E��n��vh�[/Rv}���8@�?�������������${������������Ќ��hhhhhhhhhhh���#p��*�J�IEND�B`�btop-1.3.0/Img/options-menu.png000066400000000000000000003073011454653170500163540ustar00rootroot00000000000000�PNG  IHDR��t sBIT��O�tEXtSoftwaremate-screenshotȖ�J IDATx���y|#g}0�ߌF����iɖm��]o���S��Bi��p5��+\)G9 /)P(�� ���#@���mSHGK(�f��^ۻ�-˒-떬k4���;�%_������?�<�g�h��x�Y$��ӮU�<���f|��>4!���NUlWYEb��P��L!����K�hVؕB�1����)9vy�JQ�n+�dy�����n�i^),-$��W'��}ffft�-�;:���R�C����S�HV��10���B��NUtWYy� $R�������A��VdS E1�: �=��mv�^���9��u�W��,��t9M��R|%Q��Y�v��Q�™��n��Ӧ*\="��6y&�*ȍ��C���E��L���Yå����ʼnB�De��R��4+�EV�b��� Bz�%�Viz���2v��4K���V�">�����K�e*�*RRya)����@mo���D]'Dw���ʊ5��W����{���a1j$�l&�n:7hj?٣����`��X�/d6N��:����󗦒ʎ�fI)]i2 W�_�+]�zb�ꯐF�x��61?�^ 1��4���g�_��m�V�rV��,Y�pa,�ho5�s�!�2��p��"J���l�l<��E��R�FNIU��J.�BAhj��2) ��L&�|�Lq@P���dw��B�=���讲�D��-�V!8z�¥qJ��H����x��U*U!1�*�������td>Bs���Ц��畱�����R�ȵp��P�ԅ�/�p��ۮ�B�t�ʲ�R���e�>ƉB���k[̦�f���mz���(��T|ynA�� �L��J$B�'ɕCRs�N=��̌Ϧ�V�PCS�;ں�ui)��x�ܡ�kv�2�]���S4Q�%�R��%����o��6�H�lkkkii�䢦�gϮ����v�U2�p�lnt>@� ,���r��;����������֍�"�k!��o���p��JH��ܲ��ljB�c�^Q�s��3�`hʗ��-�ds�Hn�#��Ap���1�B��r��a�R�:{�0:[�?��J�P�X�Uҡ����� _,w��NUtWYy�8&��)�;���|>��Ei�+��$��s'?��Y����^�����Gl�'8�N�B122�0[l�������� )� ���H)`�܆��/O0��v�����8�%B>86�P��}{'B� {E�`�|��^+Q j.O1<�[(�L&�@&� �D�l�ґT�N��z ��=� w����aW)�L�����NUtWYy�\�*.�<��ٺ�;ͩ+!�+z�'?j�QGar"\�z��>Y.���n��977����9�����涜�Ѳ��K%*�]+�HF[ ��@���n�P�DaЩ�y|�B�:!�S�UV�(Ji�t��J))�� ˝�X&��� � ��|>�/p�]T�0�����d����d2M�UZ�zԝ]�O��N�{"˧J(]��Sn �_Z�� a_��}䤕y�f�.Py�^M��~'EpL20�+{��q"�Ю#�4���W�M������L��4G84`.<��' �|�ae\.����b�iUWDZ~��O�����sw�IE�Ezia&�[�UB�މ�T�v���O�DQ�L�p���)�D1�[f� �a����P(�n���r�97jr��(\T|8j����uXB�DmwV��D5��dg���n=�!�B!t����[E�����F�B!�Ю��!�B�Jm���B!����@!�Bm�B!�B�����B!��v)�}78 ����,��v��]�������ir��R���ø��yOJt��h�b��ʖ��Q-#X:�8;�p���C���;�Z�3��oƗ}Stu9 �����E#'�\r�� �x�v�v1�K�IX���p��B!� ���S�S+�8.�'.ƈҲD��g͖}c1��ᡅ��t]�l�׬rK�K� ��H�==�/�γ���� B�/��M��^g��LR�Е�Y�:Uɉ��l=�;��+��s�݇��B����:�g�@�w)�-�oX����#�*�M��OUu�Y|���$���t�J�(�B�D�]+�,S}�8:�OGi^>��N���X�Ҝ�Vה �e�@&���\�s�N��'>2~n&����!�B����z��u�C䗤�f%B� ~���G���c�Ԣ�ʮe]���kV�()�r+ȓ�����_��qJ�Us�Hq�9)J*�ny6�/_;?���c�|,��\[�n�B!�jFb07�#C� �T�ǎ�*��6�g�G $JSgO�%yy�[]�L[]�p�[��Cy��|.23>��$���+ח����A0��C~P��h[Γ�[Aj��hJN'w��? �B��$���ZZZ(j�aXe/�"���-O���pl�О/�[`�o�`���M�`�V-x�ճ� �*�����Dž�φ Ji��q��d��)� s���>q.ZW���9ߥ���ײK�;:4��᥍����F,���q���o5��B!���q:� �bdd�a��U��!�Z�喂+�),�g��"o����ۛ ʮ.�(�:˲$%!�G���3�����x�۷o��IT�F*I@`�D�ء�@,��+c��KŖ��9�²,���I�L�� �G�ҖN�*65�9���o$���n��霛�ۼ����B�����<77��� �&�4����GEA�5�t2� �s�*�Y�/��U����T��b�HI�RY,6���g5 UKG�EC�A���W&eJ����밫��*���t2�d�kd$)m�Y��x�� ��ӥ���R[^^�0�����dڲIx�!�Bh��d2����w���/�h����H�B�VѹܦW����;:����\!�̄W����_�(�z>8�Ut��;d��K S ��u�q1����s�F|�^Z� ���t&�J�l^�*�5�дG��u�]N3�L�{�%�f������~��0�\V���B��Wz��!>}N��qr��3W•�~M���<��F=[V~]r����/ظ�R���"�2���ˌR�燯Y^}��n��B!�B���B!�B�R8@!�BU �@���a�~�9kg��E/N���~�iC�C���mlj�B!�B���B!�B�Rx�B!�P͐ʖ��Q-#X:�8;�p��8}�"�c�a�/Ym�isy8�ذ��F*��;����ɀg&�����6-Y�zƼɲ/_�w��cǜ��Ĺ��6H���n��:67�1⽮ 8@!����˥������}�۞�g �䁔�]}���yo��"eG�^�>������qe_�V���]�4�'Ԏ�^gst����r} ] &��w8 ���t�J���o�Y9AA2c{�����R 4� u�2� �ܪ�g�f�DJ�t6�qd��꤫9��uL�U��!�B�F(Jʳ���)9{!����t�P�T U��M'�����b��焑 �Y{�ٱ@��&J{[s�w)-�YNk��YҠ��J)/���"�� 8@��{����?����*���(-�8����5�8R�7hx:ܰ��H�F�28#ir:�2%��Llf$F*�]�ւb�:|�\�z|�q�,�f���׉��B!�P��t�3�lHK͞�ZHxG�}������Uy�@�&.�6_]nls؈7��9�.� ��=I܆bp�\ͼ�X����B!�:�$j�ɤW@����=Jlx�!�B�����`X`Y��#B�v�Hl8@!�B�,�+0���V�&�Q��!��x���N*���V6��}�Ͷ��LE�~?�u�]_���J?w^��6�$�ɬ�,W��ߕگ��-�(=d����T�CB!��!�B!T)�? �B!�*��/!�B� �li�p�2������� ����a�ʄ|2����v�|��7w���j)pL:䝞_b���6-Y�zƼɆ�yy=e�cNEt��L��u��J��n�������TY��V�\�csS�P��U �!�B�"�t�����0��t�Ӄ�,itu詑�,��8�ݚ��+�*aT�������bEP�z���K)�U������sɨ$E��[VG��v�����Ѵxh�ސ�з:%���a���ۢ��2ez]��K!�B5B6i5��b���l.JPZ�@k4�B ���c�(��Z���8������sE�� � ��u�׮i�a1�s8�ѹ`~�l)���<��r�T*(�몀�B!�j���<�-_q�� I�J/�BAhj�1�s��L#��4���,Nδ���q�e|cSq ����9adB~��{�iiv,�i��J{[s�w)-�Y��z�]8�N-z=�,�YҠ��J)/�E�2��8@U������O<��*D�Zu׾��w�.׾�[��B���qn[mkU�!��lx��PƑ$)!Sk����I����iK�K���<�*kgWkfėab3#1Ri�r�����������*,��X���e�G $JSgO�%yy�!��oq��;:67]z��X���B۱��ɛ*~����E�����wR�.���wq�o������S��E�aH�2�H��Ap���1�B�X.T)���@��R��,�Z�����!7�w;��?�u�������An�&�N�229�H�Ry��,7� Ʋ6� ��s������wڟp��ڦ�Q�?��;g��}��%�V�.m��԰����.�CBaY��$����uƞ�,@&�p �� ��a66�$AX3 �$����LώzY� �KSC[�E?�m���R����Go\9��������x�t#���$�ez]����!�}ՎT�=��[g��}�j��R��l�m�I���]T��*�gR�ŦIs��d1��P�K$:mvm"���l-D|o~� 6�+����X�P�T� l�;��8�@� �&����� �����#'Ջ�f@6K�&�.J�X��ܬ�D�=RI��U�!�B���x�������B��wZ��q�_&䓁�|x�Τf�]�}��(��K�fC p�7����ç�Ũ��'����^}G��R�+d➙p�I�h���B!�j����Ѩ���|ȿ�2��6���xy��i�"�@��"q�Dkw�$ �?^�a�;�}�[bYqi~|x^�W��������W޴�蹕���3W��%��*���#�B(��d�+ �T��BU�k��d2�������k�m�o��� �B�]D����86X���5ltj0I�������k�m�o8@!�:P���.�Y]�&q�����2wX{mբ�u �!T|���&���b2-��qE��D���d2�?w��fb�W���=��ǰ� �CB����!�B�J��!�B!T)�~ !�B�fHeK{�è�,�\�� f�/��4��#6z��L�����i�*H��D|3�D���6-Y�zƼɆ�yy=e�cNEt��L��u��J �o��"c�=) UV��U'��ܔ'�l��*���B�Z�[�\����xNP��G���AVa����l��ux���� B�/��M��^g��L�hU��.fl�f�\2*IQ��|�C����n��?���-�2�V�$2r1L��u[41_�L���b�~ !�B�F�&�&^�y�ͅB J������ؘ/ݰ��� ���4/�t2#(R@ ��]�{���:�C� �7�&�R<��s\.�H�R�r�� x�!�B�F(Jʳ��'�����y��# ��0��$���4Z5����-�{zN�����jZ� d����֜�]JK{�'�=c��S�^O(�pE�4��d�Rʋl�l���Bu�;�u��5h�*��|�;��dU�t}���a��a����{�S��"3�i��͌�H����Z�O�'k����HM�Vaa$Ƃu5-;?2�H!Q�:{:,�ˋ �����!б���Ӯw��p���8�A�k��>�:��aH�7a�,h7p��a�R�:{�0:+rC{�� ��Zg_����N���1R�t*#� �t-�g �r�`,kS�>�nX����:������!����C���,KRbyDg�:c�] 6ر�z'Q5�t$U���b�^KDg������Z���2�~�~~)��9�^'�ˏ�h[���������x�t#���$�;�u8@�Ӡ�5V)E[WӞ: ��gR�ŦIs��d1��Nv���æ���3,�0�T�LX�;��8�@� �&����� �����#'Ջ�f@6K�&�.J�X��ܬ�D�=Riǽ�!�B���x�������B@�y��,�C&����z�5���q1����s�F|�^Z� ����x�����2�_c�|(���{���NKI���{f�e'⽮r8@!����zF����Iϳg=��+!7�9 l���N�R\�%��z��f�\hj8T�wth�R�����܆bp��j3�3W��%��*�X�E!�B[�� &�^I�2�1�~�[��@!�:P���`X`Y��#�6db�ط�7 �? �B(W`Jì.4bb�ط�7 �? �`����I$vR�? e��3��"Q�7�$�ɬ���k߷RyH�{e$��z�~����r9E���j�yU�uBU�@!�BU �!�B�J��K!�B5C*[�;F��`����l0��jKWg�^I �\20� e�Z�y([�s*��f�0���i�B�3�M6����oQ�DReu�[ur���Myb @�^W9<��B!T+rK�K���p��D�rt�� 5�������M&��.���aRs�MRX~���hU��.��Z�z����ohQ�DB��D�\�8�ҴY4P��U��B!��AA6i5��b���l.JPZ�@.��"�,���l<���Z���H�á���AA2��p�]�X��ZT.Q"�x:��\��J��z]5U�F�!�B�z%�YNX����0��d����dJ���l�vJ{[s�7�^��Ll1��9�& �X{�!san̗j��ĮnQ�D�Ȓ ��$�Jy�ԓ�{]���P�n���m����l��Mp����{���,�����E�V95 �� ���,)׶�M��U14�_�"����nFb,XW����H�T��ܭ��x�����G�Ee�䂿�������t���z]�p��ڎ� ����ٯ/�D��>�|�GUy��������yD IDATP�����%:��n= ��|�l����!R�t*#� ��I����A��a�����Df'�K r#�h�ě �炓�� ���*��!�M��W�C���&~[�S���J��ɺ��o,˒��X���سCW�Z���0n��l�S�u2��荶�����e���LώzY� �KSC[�E?����z��hh�I���]]���8�����U;�����]�L�*�d�+/|{k�sH��L*��4�`NP�,6*EQB����ݒ� �����#'Ջ�f@JF'�A�y��xQO}m�h��^W �? �B�J>8�Ut��;d��K S ��w���)6yv*^� "�+�� �>e.F=��8�� �z]5p��B!T3<��F=� ���.�N���e�$��xAnls؈7��9�.� �8M�|��6O���*Bڙbp����M\ m�V�q�0qWZT.q=�^W |~+B!��E(�&�QE�Dm0��J(���P.q����<��2��*�s����? �BPltj0I��c�a�e�_�, �7_}��+/���j��8w��(p��B!tPqEf���+,/�.�I�b�u�H���*B�����ab���B�J_m�!��駏j4�?w\�����me2�՟;Wy3����$p��7?��ӥ���=7��F��-_�M�oD�F�؇f�aH!��? �B!�*���B!�P���%�B��!�-��ZF�trqv6��$��ӮU�<���f|��^�6�َ����46yv*g��mӒ��g̛l����S�;�TD'6�*�DReu�[ur���Myb @�^W9�? �BՊ���R�LJ�s���>�mO�� k��]��K4m�{���3����f����[~>�D��g��@a�*cc3�~�~.��(`Y���VIjn�I �� }�S��Z��-��/S��UQ1^��B!T#d�V�/f�<��B�����N�Q��b:�� i��lhW,,��m��|0AA2��p�]�X�bR�p(�s���)���<��r�T*(�모z7�G!�Bգ()�r+���F�|�Lq@P���d�{*��۬D(����bZ�s�M����C��ܘ/�Pg����o>-l��YR����R)/�E�r�� x�B�.�|�͵a_-�����q�m���ᖩÐЎmx�����`%��3�z>��M��K�Ab07�#C9`b3#1Ri�r������Djj� #1�[$ �����!б���Ý��� ��!T/�|�����ҁ�x���]?[�ru�M�0$��� ����0A)M�=n���)��"���i'��n�ξ~���/5ȍԤ��TF&'���炓�� ��t>���P��nhc�(��|��pkl;$����� N�匝�-\pr.��'����Hܼ��kU^�n��e�v��-7���s ˲$%!�Gt��3��Е�l�ґT�N��z �b��*�uZni�����c�gG����֥����ߢ�_�6ƙ�^'�ˏ�h[����M�"�C�������`g`p���/� �U����%{�W���NB"��'��7��%��l��y�۫}�V߲E�U�qn�=��T�e�iR���0Y l:Tжt�T��|�%�*�ɗYUN֤�fW�2�&�� �@ � ��C�?q�����J�R둓��ңZEE���*��!�:�r��g�A懟YA(����V�[����wm�_q�[ƹ��\'��*:��2`饅�� ��sw�IE�Ezia&(r U�ШUt.����� �|<�?t��������.�uU��B!t`ɍN���xy��i�"�@�+��Vq��e:+ι��0����2N��E�t�3�lHr����N��"q��h�.�$��� ;̹����W^���� !>}..�N�&.m��w��[&nC18z�����z]���!�Ё%QL&��Je,-`b ���J��dTQ;Ϲ����Y[����P(V? �={��� �j�C5� ��Ln��槟~��s�*���u�^���u��P��LF ,S�W8L�]b�> �6�$R9E��'�0�6�mŹW[�2��CjK�^�X�)B!�����Ҩduk��o���+���0�v�gm��C8@-3>}�����K?�?�L&��s�T��: i/T��:�t!�j�@!�BU �!�������5� 3�����ڪ� r�$"t0`wF!��(M��bP�@�[J �y�8�x� �x��?�ٓ�����i��lF���?��������?��o?�\]�u�A��D�?����ȉSg�s�� n�F��w��c7<��P��*B*�;��8���鿡۪&@a�9q�t� .}#_̿��4�N ܸ�t����TY{��:s��hg�|y��z]y�!�j���(8���C1(p�{�����?�˥�����Ͽ���Գ�z,,��r��>sױ�o����������}�Ͼ����ˬ� r�$��[�\����xNP��G���A��;���v��� �>���-]������<�v��:���i�U������sɨ$Eˊ}��׵=��-l|� �ouJ"#�Tk_�E�e6�u��!��� �"/�����D��i��$q��+�(s{97�h5Q�'��׿�� I�>�ާ~��O���8y�k���ҽ_��G��[�+��n�ߚ����r��'����?�����U!��L�U_a���=�b�_y��� "�&�&^�y�ͅB J�]>DL�et.�/�&�٤դ#���Ŵo��� AA2��p�]�X�� {�DJ�t6�q�#�J6�u�V���B� �7�9�k�@պ���D�2��h�������W�����GAb���/�M��O�2�y�fƤo���򄄐�{��Z���E���?/8 ��i�c�eʬ<�J[������0����2�ͷ������� ��FP�ۚ3��t��|p P�T U���Μ�?�eRLl1��9�& �X{�!san̗j���=D�z�̙ӧ�O��-��(�+��B%'I�R^d����J��K���>}��!�:lf�$jqrt*�������E�ܲ���V\��rn^Ѻ���y�� ��?�I�����cț����w��òf�b���� �����:�o=q�ŋ1@4d�2�m�eV|�-���܋�w|�en���s� �D�_�JM�Vaa$Ƃ�l��b�Z�0zepF��8t�eJ�����H�T��ܭ��x����!����E�����aI^^d@H.�[�}����M��-��*����5y����f�aH��'������E�ܪ"�U*_}�*ZKL��3p�fm���� �瓃,��%�L<��?y����o~����E�'�Ǡ��������Y$����?�ĩ���Eќ�ʬ<��[������0����2N��ňM,H�ө�LN0��G�@X ���R0Fר!�$��n�ξ~���/����x����&��T*��'�����Y-�? ��4�����f�aH��(N����� N�%j�V�����݇H������e�o?9��q���L���p@r�m���׻�������M}/y�e���ó��.���XT4g�2Q�`Y��$����uƞ����dr��m˙�����yz�r�&Xv�@���=fzv��Zoh]����-���hc\/��!�y{�,8(�-���L� Vq��e�r�{�같u����S"o������� ���O$��~��֗;���< �2�;n���.]j���}�����p�x�KF���n�|�W���cs.�n1r�o�dL8�Ut��;d��K S �ZGt1����焓�Ld�e�tf��P���S�b�㫃����y�����i)�2q�L��`���P(֞�600p���m��Bm���t��7����K�}nɍm��/W�$��h�.�$���k|ss �^;���D|~+B��TF�I�l���o����Z��j��5�Ro2U��X�m�ox�!�P���X�XG��[�0�Z�N��\����D*��P�j|aQ-�^3�����!��uN� L���D�@X�N��r5J�:\�>v �h{]��B!�B���B!�B�R8@!�BU �@h=�{��z���w<�I������;��~���^�;�$����!�� �li�p�2������� M�S}Vj�M$\d�'U�(�d�tYuJ Ǥ#��R���6-Y�zƼIv�"ꓲ��1�":qn&� ���ݭ:�@��<1@��U�����}�mc�����!�P�[�\����xNP��G���Ah���]���&G�M���Be��v��rF�26v1c�7��QH���kjU��v�����"݆з:%���a���ۢ��2�{]���%�V�����o?p@��@`�37����/�����������_�n�~􇗦'~��7�����{���w?�<�~��B��MZM:��)�<� ��V+�uL�T���c���b&/h�j@ ��]�{���:�C� �7�&�R<��s\.�H�R�]�u����K���{��� �������I�k������>~�SK�o���ov�d���V����j�=�Y&S��j�Z���8����Gt5l B�F@QR�]}�Ar���"�֣gΜ>���mQ�pmGX����z �^��J)`b�i]ω6Y(��{� sc�TC�}P�ۚ3���+�E� WdI�JN�J���6�u���Zz��G#�7�͟X�~����?����%�����7��U���^H��g����U���e�{����O<��ׯ;�<��o�{��/}�J�^T�Bh�mx����F�����E�����aI^�r������Cݧ�#��t$ŀ���H�T��ܭ��x��e1uEjj� #1��i��FH.�[�}����Mg�L����$#�׷���Ң����m�P^����=F�T��#V�s\���, $�����Ok@�~�� �ӿ~Ʒ2y�����Bh��Y�l<���[�~tU ��m�l�Y��cY�J���G��" )p��rĮ ��n�ξ~���/5�1?R�t*#� �t-�L��s������w���?���ӮP�d$�l���fX�s)�J8��?����Ň^�꟩��֏������@�x�᷿�a��'8aF���Φ���b��B�����w��w8��:7��հ,KRbyDg�:c�]Ih�:d��@�Va��bT=��EO.ERE�J�l����c�gG����֥����ߢ�_�6���z�L.?z�m��v@3?4��W�mD{]��308@��77|ll�Ƀ���dn�魟z�e��ү% r���{��)]�ix�;o��5�v����Î�o� '�R�M���o�v�9!��_�a�yz�37ܰ��>�ʸ,6M*�&��M� P$Z�I�S�DmnVe��<]��Z;[T��|���Z�K�,��w4�q(���F��e}�g}�E���I�⹙�͕v�^W �?��Y&�����;�����k�����}��}��/���������/���������G��������O���z�{?��B���>t�ë%У����G���R[B�J�a�\�3���W��>�K/-L-d >��wt;-%�B&� 7����� �z՝�V Ϥ�Ӟ8\��x(��)s1��5�ɇr�ʻ�h����@X��G_�ӏ�%�|�����ꧻ���p德��}��~��ОF�B� ��g4�ِ&��3W��/Snls؈7��9�.� ��*�H�v�I������V�����φ�F��; th����빙��蹕�T�m�z]��`!�B�Dm0��J(���PU�B�7��*�\�+�NH�p�4�r�B�X�000po�D��ެ\y�ڷ�B����{��p���d��2E~e��&q�TNl�� ��;�h[!��u����yU"^��B!t�\�)�FW�I\�+���%m�T�I3+��/��ھ���!�:p��B!���B!�B���ښZ���G,�|��K��Z�?t�s7���x��/�i4�M�s���|DA�,}94���T��!5 }磽f���瞙��Nu.� '_�^�X~�?������z�}C~_u�����~���ov�㩽 �N�m��k�s�+N�.�zE*[�;F��`����l0�����Ng�FF�t2�� f�Z��H(������:7�XI�:�:,Z��O<�`�����MK��1o��i�;�l=v̩�N����DReu�[ur���Myb @�^W9�? �)�����/P�t��T�y���{��ƛ��G^�u,��н��8M��˗��8nq�$�翆�j$��g��]�����$�2�ͦ�yq����~����^P['�L�_B������S��.�">><�&��n{zП�[��e��K�yB���u6G�# ;��_ sW�MGf3̺D���6�S#�YR�q��5}������Ō�߬�KF ) X���iRs�MR(l�H�[�����0���m��|�2������%�6%Qװ?�,�nlI��g����B X��}�������S��=�#�y�W��p��s��Ч^4���.NO ��}'�9�ώ���-����\�L����Yߝ_��ʼn����O=tW�����w��� '���: S蹼7<����7�)ʥ�@��_~��s�3��g����U���-�zbhf����aj5��@~�#�@�o2׸E�.���"�E$������M�����ϻ�ˣ�����g���/�E$�|c�˭�D�zW ��Ϯ����}�g����������T�vԄ���ҩ�D��Hl�X�)���w>���q������w.=o^�����&�&^�y�ͅB J���#���Ŵo�Y�6�1��.]z�/��_��,ǁ���Ƚ/m�>z���/�y��_z�����?}󋢏��������ZF^�T7=�el��s�=���� nT����q���<��x�$� o�Ko*�jO>v�ݟ~*�_z������&kӌZ!��9q��g���zhe�!�ݼj(��>|ϭ��o}��?M}�g��������QQ��gW_����0��EIRe�9~�̙��]��z�Xmq�x$Io���ˠP�Z{�L�B� �ɀ�-�u='�d�k�=d.̍�R u(Diok������\�%*9I*��"[(�몁���ǎ�����Мw.JkO��fc$�w���B�W?x�W��^�������~��w}� �}��Ҭ��9!�ħ����|�G���&H<����v��>��W?��@[��fm�������'O��I�J����d��?��'��н���׿�Ĝd�8J���������;��6����ש�o�ʳ���滟f@*����ks�:��!Q���"� �%�l�R2��z��G8��~�裏>�س��6hߚ�|`r�)��X}��5&i�7��ͫv��'����ɿ|�_��ÿ�u�߸���am�@Y��x��ڻT��:��]Ldvҿ� ��Z�S��`��'� N7����p��P����������кM�PH��_���g����-��hN8��A(dS���}��_|�%�����o���x�����jI22���ڥ���) o}��N�|�O�[��$P,Jc��&S�>��0����ݵ���R�Oҥ���[{�N�ѯx�\bYſ��s)�J���Ț��2L�.},XV�0jY�n���,m��W{%'+�}��E{�eY���#:C�{v�J��8���y�G#b �ɖ��2��P`�2v����Q/k��uij(c��痢����z�L.?z�m��v@3?4M�$��׮.�낅k3����6�8m3���IP���l�����4 ����%_Q�����o/��=�S����ܗ���􁗫��ݯy@�ȣh�ߊd$% r���{��)]�ix�;o���\﫞k7�0��y�y�:u�� _�(� &m�Ŷ|�$����sip n��]�Nv���/_��k�����o���~��rz��?��yDo�c�r�����'~�}o��? ��n�|��_z����>��ͥ�^����yp�z�?@��~�~y9�����{˧����$���/򁧹��K���>�t�̓���?]��>��?{�Ǟ��ǿz���?�R�F�1��)���Me���O���,��U�0��������/�*�b��Y��-ҿ��}3�C��wS �ӏ����}���9͇�<��|�"�}�[>8�Ut��;d��K S `B3^eg� '%0�ȴ'� ���}�^s��C&����z�1ﴪ��X�L�'S YX>/�x(��)s1��5�ɇ] ��@(k�>8{��.G�о����m{ٓ���g��`���~�g �8��o~�5�������:r��s?~���ۏ�#vf����|�ל��=e ��Ll�%�v���P[��U9��C��Ѿ�{�e�[rc���F�����4po ŭ%��-r��h�.�$��� �����*B��=m{�4�D�^��7"T5�S�x������g�y���ҋrO����������{z��i=� g�7�����sw�� �P]�� &�^I�2��'n�s �ԛLF�e�;L�"�Z�Ӷ�O3+������B]'��!��(�e����.��*�:��"�B��?{�E����-�˥���7)��"��4Q@�(�B��~(Q@�QI  ���R/�Br�^�n�?�B��ܑ�{||��ݙwv'�3�������DkB��Z��SM#K�?��AA(�^�1�F�?�L�h�������d�!���{������%AAA,��� � �X �AA���AA��P�޾B.�U��۷��z���ho^�e��J-�������=���*����Za`9�x�)ں��I�}��=<ܓU�ϫ�Z%R8.�LBu��������YS,? � ������>/+OI����˕����I�� sQ�w�t ��ߛQ����Ƹ!!��uy2� �N�u�k���TRG�F7�v�V�;y�R���1��'U�}����̻S&'ou�<��_BA�%>OV[%� �������3���&4{W���Z��q�k>O&�Q��NV���'Ɓ�0�0�!� q���n1��Ã]Wzo�h�H�� *�Z�W*5t:�L����� � �Kh4���In_�Z��\]��� ��x�C�� �-��ՖA��ˋ��*͝*YPP�PSS����4�����vf�y���2d����:�b�aR�46S��:ju�_-AA��=�& ��?�vN�j�M^�, (|Q��~=�H���q�h�e�g�ױ��iU�y"�n�utGo����a"!�,78�EG�e��rh��Y]@L��VI$� � ��lz��vzn��V�P��P\��� �����*�DžZ ƴ���Ք��=â}4�۷��ɍ���'[|+_@o? ��[Y���o�x�54~@LSڼzA�UHHH^^^oG� Hט����lTw�q�B�b�����"3��x�+ז�oD�>t��;, hB� '��%�� �ƂL�k�������=���2�́ ���y����� U���kuA�AA�^b�K�>ή�=���[2��,���� � �@�r�l h��C?J� c ���?�� u��0�������Tt�)��NLD�O#= �?� ��8��@w �24�� M��'�*�I�p�V���z��}�J��!� � ҅�Vc�6�?�-�ud�=�7�ާ��K� � �X �AA�? � �C��;mμ�D��? H��:��H$JZ� 0���"Q�w:�iĪ+"Q�!/ɝ�O��I�-�~�,>'�7�7��1v1�9��STt3-i��v����]�cYז��~���Y���’�yWw<�������4q��}�i�4߮��3z�%�It��®ȉ�;ȕ�Aaa��v���1$a� ��K�Gx��-`L;�Ј�����N���,�x����-�E$]���-���=(ЅKmgA ��w@dl|�qQ�V�p�E����F p�vͦ�4$���Ą&�~|�qv6���A��1h�(��;��Fy���T���_��p��k&y�d���v� 5}��#������!���]o����[�}�������W �7k{;��R�{�T/Je�}?鏨M�bl��������R]g��-�Q$`8��q$�Y�J���:Ir�;�R,'?W[�B���%-_�r�O��� �PA����2�̼����ͨ���Sc\��O��<1Nw��f��W�0�kP��c}NMg�- T�Y�����dH����!"j�H[�Q�B��G��~c[�ռ���C� ���sQT�e��3�m��ȜC7n���n�v#��(̿�ӫA4�</����'�Z���>��IW� o\>���PP��^*J^ڴ��_��ޏ$-�tBqL��C� �/�b�)}اy�K+P'��D��O������i��Y�駋�~���3� !���y"�ŕOL�ꯜ�[)�O�F��ߞ���v�դ�s�y����'6��,�O�en���?�a��~��Vگ 1̖�������o�_���-o�p����E"����'�Dy_� o���iK�[�ٶD��~'ɓT�3��)?�D�ï:�VH[�!rD��s\رs����-o � �tǑ�O�|����J�HTYQ!�{��=����$<_O�De���<�s���۳�l[�~���Ǫ햷}�����oS���RE���`� ŘB�Q��q1!|S�� �D����F�z�6�c��'426>>6�׮���@X��*���gL�I$*>�o|��-W*�@����k��:�A'�)/o�4���&􋊍 ��wѻ t�qinn����,钖�n9�P����j�z�Q�3 Rl�<��F� :YYv��SΤ��bn0��R �e�'�B�"��B��;n޼5x�3G���s�?��`sq��y��ye�w��zΰx�:��Us�j��!�%��c"xb�t���%4�1�^A5�g[�Q��Z5����7�)���o ԗ�T���+g�G�7���†��� '-����z��K^C'/�֡��>N2~\�lٲՇn���ۄB!@}}=�s�V\����.5}�1iftၣ9ߧ�?��36n|Z�����I��>�d�Os�g��;v$����{�?f�)ƭX虓ZLq�΂1f�R�#�l_���O_sݞ��P�\�T K� N ��R�`���iKm[�5�t�w2O�jZ��~_�lٮ�Z�ڳ��-[��i{!��q�h��|6=�z�cg�)�en}qȢ�*��;��I�N���/�-[�Õ�'�[���Ӷ�tˏٖo<�ѧua ׭\��e/��5_gwa߱�:��s��W��(�:z��~���̫ײE����q@u���� 3����kT��&� xR�T"�� ��$�D����Ʒ��%=�F'�7.��ꊆ���t6�I�sx�.�>��b�ʒ���KZ���hLh���{��#[��2�N��ht��q �������h|���<+����E�8��k̖��vf�=Egg����U)��._��|�ؿ����C��Ç.����u��%�r��mK�}ʁ��W@��s�M�ק���p��8vf�l�/*Z�3�l�ỵ�.�-�]RlW���L�5.1����%�KOoX��֍{����פ�w�M%�b�����#*sүgɸ�>��7��w������ה֨{2$EEvzfVVV���)��י�N���`^�C���y+��ٷ�'K�� �`���̙��\��~�yzn��8P0��<��R2� ���ՙL���v ��ꐨ���p�vI;��Z����a��?x�� �S���A�ɪ'(��C�N�яφ��4 0xG>���ǂ�,:�@�5�."�z��1ú:9�y#��%mZ�ۻ��~;|)�.�����ߥ��]J��x2>�9�9і�z�/8��A��D�B:�����Y�:i5;��� �Վ#�i%�E���n��Sv�ݑy7�.�����m���r��cef� �l���G��3O�)t�5U���aD�DV� (T�K���b0� �m��W ` �b���0��VU��\"a�����I��B�);�8���>Ѿ������j�  ��wn]�@s� �ۖ���Z��7V�QE�P+��� h��5e����\��d��S��T�Q�r8 �8;��� }���s��Ek~�`�'Z����G�=<1&&fށ��˚F��N��"O�V�t��iuJJK�u�萫{��;�/)��"���z �����������N��HK�%e����Y��*�R�F������[�}b�dS���M+���5j���w�[�x@}�r:@x���} ��_�4�Vm�u �N��ny�A���ګf'��: �iǑ�>��M������4�ٵ'�Z/�e��t��n��"���%���8w’��M���g�2Ӯe&- 5�s�B4���F Go}yVFFffN��yIh�d{y2}Yƕ+W�\�/��#7!�4rl�l��qh��8F���0t����Q�v|f������mW͓����ajV C�m�7�UH8�ꇀ (v��ڲy���]3x�*$���[�=a��Dg����w0�����D>i�.]�~] �D��TE���i���^8me���� f�zLM(�̒���ˈ���E ��^�Jo�:Q��)���X��V���DQf��n�h8Q����\���W���5]F��/�D�n�aаy^w���cߝ-���}_�?�4����~�J�7�C$�)pi� �J�S���c+��$��ƈ�d�G^z�P�) �7�9�ğ��Ĵ���R �d��j��t���>[�_�U�A��R Y �����,s����y����O��A���'��= ���Vg�B,]]�R�ϣ/Lm,�z��,��� � ���fv1 n�����i��q/�]��?�����?V�[�����o}�����6���_��8�r�PD�0 �[ԓ�*%�ўW#RR�B>���01�J�b�n�d�4P�,*E�ר�,��7ظ� �`�e��������|�k ����Q_h�d���OV�$���|���w����IqZ^m�Nab�yr@W��]� ������Ս� RPm]��[M�[Z�d�5*|�\����Ş%)h4��v�0�C�T���m�J�S�N�y��L�����w���E4��9���u������i��������bX�l���o��5~���i�s�\�% H�f��M�F� qӦ��d����9����U��ڜC���:���8gf�ά��{�ҒRk�HV#���d���>��=U�i��A��W�a�2a�}M�O�Vn�I~�U����s�K�}�y����;�fײ�b�0a�����U�Z��W���<�Ǩ�Ͼ=�ˎ���c�����^�,Y<��*���5�:y["k!\Ҷdn��v���:2U���1yˌ�G=�X�;���i��YFeqH��n�gƇ˿c��������N�ws��-�%�ք��e�����&�XS����NJd�S�}2?���mg�<�͌?��X;���� �)I��B�ϥ����!(�tMY��%R���<��H7:hd5�RЈ�k�~Qq>:YUq�m���!��S%. D�*� D �抠 �򺦮�^&�x �Ƨ���ʟ��4=�45��L?�AnLL'��n֩����> � ��B���փA_��V,�J���z��hwIs�w��NI!��7<�A�%�����v��45E%l��HO��� ��pǐD�����J-��\D��d��(�����)z�����Vk&�N�X-�,��������"H�:��8�d�g������uc���~���ԈU��*K���gc�)NC^}�9l�1[��^�2�Eg/��pp����Z`�������z�WK�v�~G����B�2���*]@yH�b^�h�X��:�����A��nQ���������9:zUm���7��p<1A�? �����6tm����wm�Hk����?������� �I��K� � �X �AA�? � � b)4~@AA�R=|���OL� �h~1z��b)�����.`��R"�]\�����|�Xouvv��$G���י� �Qqq�Bo� R��SX��~��<��$��jEB�� IDATϾ�A�Dآ#ۦ��}����X�i[�����9F)�1㥟�z�� � �����<+��W�Н���9�U*����X�S�3�z[�O��� �PA����2���"-����ͨ���Sc\��O��1�n�7��}c�2M���q����vsh�I�5�� �`�)���vL�Ohdl||l������B���R����wDu r�+�&􋊍 ��c�N���d�%n0�de�ih���Je ]��z�����0����%i�Y����¥Q(L[{�T�y@Pi4�M��� �NJ{����b�(/!M�(K�(/*v�J�d0����xF:}� � k�?hk�Dv��\T5�U�Nn���z � �ԍU�2sk�+J�~�t�^+�/.��o6p Itl^�έԂz��\$ 媬*58{�I������ �QA��\A�S+48C�� ��55E%l��HO��� ����FթG����̢���>]�i�'�>�9 ��;��Y�����P����RِW@�����=���‹�~v�dI[�����PU��_>.B�!� ��c��>n511155��Ll|b|�9Y"u� ��pb��i�r�BBB���z; A�:� �#t��[AAy�u��d%ײ�"AAA�4t�AAAKu���o���! �]���� ��(t�AAAK��� � � �B��2��g��n�{�O��u����9��1x޲ V.��|N]V{�� ����n�4���K���~�<�6_�yoͅ�#���7_���=��{2Dr쉛��[0�ÿ�O��i�@��;���UK�/|���s�=����V�>`����ߋ�?���� �, �&�������_l�E>�p���S����MZ#�մ,N�Y^M�C"���wgW ���-g��6��l��y"�_���tN�� "�s�ot8��c�����)�~���z�ta����,�?ד~� }|#�Lf��ߜao��%�� �]*�L2� @*�?X�5����oLzb܋�(�j՛[�>|�� �I����?���4iӿIk��iyH�Qz,�ǂG�����t��� H��>�s�ϿM;�"e��_�|}���'�����>��mV'�~o�WO?�G}eaR���UmW3q#Ly���GyQ�/I���?@qi��"�W��Gf��y�4���>��(��d���X{�T*�T �J���:|��'Ϟ;�����V�ዷ�z�Lұ�6Nd������sk�Q"��;s�B����:�t�ܩ}_΋�3���,x��4�f�KN�;7���o�����Mk����j�0��=�Ν޻n����#���쪧F�����3{��x��L�������u���H�gV�<$��K��-0%z�\���'ϞO:���1��V�&�{��U <�'-�t�[ZM�fC������M/�����- Ǭ A���_'ǙLfo�� ���-@��{{Uf�}�7妯�G�(�~��1t��O��h�෤��~��_�)��g�%e����7�y����RTRN��:��5 ,j��Bln�[�����`?&���:��)̈p�\� ���܀;>��'����04dz ��mU8x��8 0�\7o�c���s���?z4��mҶ F���q��X�AJ�o»k�4�$i��v���� ��c(���g��h�����g� �� 2�@&�5�v�=����� /�{r��÷M�"��W����''�٭z����P{p�С�7]5�_3t�СCg��D�Z���~��I���'��j]@Ż^:t���� :t��W~�0g'� �㦺�_������RՔʊ�eX���O��x��\���xj�С ~��S�d۳g�IҢw��?za�Ĺ߉�~0;��o� ��d��'��������k�"�/�������[�R~��ЁSG2s� ��n��-�#ԓ��g3����w.P����d ��ǣ iސPg<������B†GhC�:Ȣ�զ���B�!���3� ��@�7u:yiq�ָ�g``��s� .�p�� $D`&GCƖ we7�UW2��-�ί.J�a��:ѥ2 �M�fuFRR�� ���U��jD�={��d!�/��!Ѩ�S.�3���?@�r:�N�m�=��G�o��3���Z���__Q�[������U�B��Rr#�b�� �n)3 ��A��f����Z&�s.������388�N7?IA������,�i�=��w�v��y�`��+����Ή�1� n�c_y4��ˤҹj�E �(���N"���z�������O�������M������Bs�v�.v�@o{?�p����'_�����M��鴦�Oc�_��N`���z����fw6O#��Quy��U7"ډB�W�Y����Sg��}܊�λ�NҌC?�����4��h4����t:�m��F�@c�E9f7<'d�����9���7WS���h�/�U���5��o�ިfː���q�N��{{E�.6/���VJѶ�6�_��'-���-oU5-U��R�J� �ea|pꙫ��ȳ%&&�v��p���+--m�x�o��`(--m�� �J�l>�Ps#�T1�^,hq���i�:����̄��/���2'�om3��B����k��k�>����A_Y6~ؼ���O���<�5"��D'S����u�:��I�5'p������Toں#ǘ��5�gt6Wp�2��K��Jʋ��Tf�V0�ù����6,$��Ի�z=�j*R�ƌ8��\:sOyGk;�_8M����.� �)[�S �6O� ���Yv��4�šn��S�/U[�)���͵n�u���Ө� 8�7�#*���x�D �N���:�����0o؉�.���hMA]��ِ$��S6LJD �'���7����嵳i�ڮ�����Y*�3����En�J���7&�:��9�2����� F�b@g;�9�?��U����q�n=+j⣓&?1q@��КY��1���y��1ޮl���z H32��w�dw(�������7k�x'���j��CH������ܺcU�:���i�Մ��b��Q�� �������:S�'"�t��S�[������O� {����N0&-� �6��Ҕd}�+S�r/��;���ٵV��y�V�Ĉ HwA��"�K'W�%���?zޕO�����������j穫'M�.y�D��c�c� ��7?ʵ��u��YS�>��� .�����U��ʲ��>s�P�Y"��#�&5�����g�����3b��A���/?����ҩ�?���7{��$c��r�,[�������ec�Y�fm�U�g+"�~��3�<�IY9V]���?����t~�#����x�gC��W��ڧ�'m�g�����i�SLcFYҖ/�G~���g�}����"s�m�N�8���3�o}�r`�����}6��'�� S�ص"�����<�INN�v��w�޻�ZՅ_�7�?�뒡���*v���z ���|���4�7w��Įׄ'���4�P]�����1����&''�(EZ#�D��g�T�4$iҖ�K�?:p���o�����)�0�='��z�j�W'[?4��>K�Y�0κ7ː�H� ib~J�pHB���N��ܬhl(�/�Wi��Xh���������_��-&r�������!��pdc�ޫ~H��#�����2J�{����t�� )t�y���H��P]@����� m��AA�? � � b)4~@AA�Rh�� � � ���h�@ẅ 4 l�� g6�5y"H����FN:�m�K��pB������3kmy�Ϫ�C����G�ϯ����{�p|iNJ����O��� H/b����:t�0y�Q ����.�� 6>1�n��0j���}c�2;S.�+�պ�Ȑ��Wh���q3'�������N��`�ٸ �����Gf���aꄍ���Vfժ����v��+ �Z���ȪE��ގA������XԈwQv�������fu�oED��.n!��Xf�{�]4���g˩L�����������%�;��H���i,�.����y9��Mc���*nvI�Vt�u_����so�U0�a�W� u�g�.�M|-1a.tP�e�+�z�4[�@'�F��-��̸%����� Elo;�X~��FI�^�>N<hd5%���� d�#}���90t��%a���:�6 �j TCU�Ė=��E������\�򒂪�W���R ���(�P��:�����iWoT\�yf�D��D��`�x��f3�l� �㽊�� ��O�7q�k��������O�G=d�K� >�m�ȍ_^7\�`�ȑ�G��\ �E<�<���>�2���I�B�+������eW���[�G�\=��(4��UP1��M~i�|�� A������NT߼~-#�\ʰ�Qd%�RSSs�V�t�rѕg^���U�R�n���NNԪ�׮��ay��a���e^��-�\yV���5,GWvCAVV��c�Ť-����Ǔf����ר��D�uO��T��mcAz��ѭL�h� ��F�N������J��z}}]c��r�%����Ť!��GN?52�xz��� �3<]���(q��� Zc��K�������9_�r��*%dk�'_^�)�8H ��& p������������7=p�˟�x�=�� H�a4�j������Wk�����cC�T��5 o�l� ��$�&��$2�/���#�H#.�lP�ꥄ'��!]������8�R6]H"�Q�7���q t���&�{� �������F�x\���u��Bx �I�� sW�1 c:�D��Bի��;�A�R-}EhcUZ�|�� `�#�V�(���ɣ4*MoзJ��讑����JWWW�=�p<�Y��8_��xNp�{c��5�� �����s@-��Հ����I�Ð������;ЍiPK�E��u*s3�52%�/"�K��HKn�=�E��`�-Qy.�N��4&�w«��QϪ��Q!��C;b Ú�l�hE����)�i�ѱ�1�8^___RRb0ܽLp�8��ӓ�beggk4�# s��5�Wj: �PW�fU�[�ut��ŝB�����E�A��h�漝�է�_�!�+2�mz��B1���4=4���ޙ�OEGk;>9v���K/�� �g��l�1�@��ia0<(O+*N�pE*�������V�������� �ã��U�H��)�YS��ض���~NҜ-YF 'ۆ������,����/��h�t�Q�NXi�tԳ��;r#����k�Q��Gm���_� �AQ�E_+j�e����dxzz���6'�3���޾�����C'�UJ_��P8.��n�~>��p�񵻾��|pnԯ��t��z�͞d�W�;�&x���LY?ݓnfm*���00�n㨵w��1(PS_��?4�g�>�后��Қ���>NO�h������]ߦ�:^A����ljϦS\�š�ՄV(Fg0(XǏ��0�J�b�n�d�4Й,*��*�����ekǥ��BO7���jM�Z__^.�U�yׯ_�v5�TnU�Maa���c��{�?0 ��[��������I����H���]���Pư �;�X���So'�?���@���+��-�%��� �f��I�}z����Y�7����u�m���:p}������������>�<� ��7C��G�tat�G-i������/�BS��^�N�E�$�8u�ѵWO�){;A��\�yx�x��NY_Z,��}�@d�(Jӳ���Jՠ�x ����V%i�N#.��E���dU�y���@v��5z��qnjD�'(�2�Dj�ґ����ht�r�0p@����@��ll*V�� JQ~c��]u~��4�F����ź�� ��t�L��R��Y�'&NiZrVppw�<�v囦��������n0�t���f�ǣ��P���N���ͣ�=�Bi%�Kd�o�PϪ�����0h}�}������� � �u �;unޑ1ƞ��EE�� y �����AA�C�B� IDAT�h�o��vb�e�7� � � ��>�?���-4E����� �%H;'����_�|���-�!��� � �X �AA��u��SHBBBBBBbbbbBBBBB��m;˳�ã}l:ʕ�e�3mU8��h<ρ���vM���1�G��]��%c�y�F����F p��ma,����@��)s|�Xc��|������:��H$JZ� 0���"Q�wz;(2���D���v}{�����������+bZ/�����������??��٣�<�oU���������L�{���Ȣpk�쪐�jR���~ѣk2�qf�|��Hc������t���;ȵGh|ߘ��An, ��w@dl|\LD��-��Jt�?[ Z���bƒ�mz�ퟝ���_���Je���{�`����� ��{kk�����-���A_��_-����js�D��4�c����J��'ƯK�CȰ���\m) y����ʳ2+-zg��K2���8���|%p\�B}�$9�Z�ԗk R���ʲ�,�� |���ߖZ\d��QN[w�G����v0�eTR�d2�T*7~�k�K��g_�t� �05/��ͭS�o���X޵qv"����[�:=�zW��wIo_��v���ߗU�������C����-LG杲F��<��b �)`��K}�e݂nө�4:����4��U��/�i{R���w�Ւ�s�5�0��w@�qP���p<"#<9 �������p��.��i�Ѡ�&􋊍 ��w�Fw�c:E��47�L�w�lgP��6��*��`��k��54]�� ��%9�A�$� ��&�Y�@D�i�2jTh�����-�j^qavʡ����޹(*�2�Ճ�׶O}dΡ7�67J�O�|����J�HTYQ!�{� �6�DW>1嫿r�o�|?�a/{�z���yW��ω�4_jx�� '3��S�z�Ԅ`ػ�_/����A �G�>�~�8��?�oyk��ôߥRH�R�Tj��ዷ�?y����ˇpLKR\�/����3I�~�8}� ��sۓ�ϭF����̅ I_Lt&���@��s��}9/�tq����vOc��ڗ��wn���&''''��"�����(n#�n=x����|>+Z`\V8e��UO�X��g������<̈́�Èw��:wz߆���涒�������'��s����7��Y=��?vόb힓�޿�� "���Bl �8a����s�ٵ��!� �������:���آp ��:�� kv����ѣ�n?�Ӝ������w�o�oi�鋘B���ظ��� W�=��񱑾v-s�֍���md�� ܠ�Jk�4|>���,Gz]]��l��Q�f0M���V��i5Z��}PB��-`th4�W3�p� :I���f��L��2 ��I�7(&.."��tՊ����Ą��:����F9s00���jvɡ����ϕd^�v�L���eEfjjf�R[������jA�=�leE�W�e�p'?W^����<&����F7�+��U���l��qq��ёa��v��eK�htכz�����A��k���9��/M�趶l���W�#�ܼyk��g&� ��+��~\5������ʖ���3p��{�i\'���V# y,�C�m��Ϧ�W�|v��=��̭/Yt�t�c����Gs(�O���gl��� {�G�C'|��,��<��g��;v$����{�?f:� ƭX虓ZLq�΂14�yg����������\煇����F���`P8��\&�A�hL�z�Ff{��-����b��́f����U7�]˽��v���u�{��]�9���6ܑ� MÝF ��fZZiI��J�Π�Hd*:��rF�����›�uhzF�PTd�gfeee��+���}��Nٴ|I�O>�18>>>>!!“knQ�gD||B|L����Fy�yU�$W<�|q|z�%c7�/*� �����ׁ���^:�-� �)��_��?�w����P�jJKJ�T���F�2SǾ��ǫ����[<h8�tҔ��l��/��xy5�N}�����z���f:������k��@wt����@� ؊�?>�=织��iG~���h�:��L��+(P|��F�N^Z\e:p{�]>��0�� g� BB̝�5dl��pWv�ZQu%������ⴜg`��ҹ��:�B:30���:#)�Te��e��� ����N)��L�;C��*+�4�Dr ��Pm�B=��$]����#�d���9ZW�v j]����P0 ��ޞ�I�S�x˟���Rr#�b�� �n)3 ��+��*�����T*:�x�U����+�u�K�d<=L����1lW+������5ҹ\�1Q�P'� B�R�[��nL{�/���A\��k<'$�t���ӹ�>���FZ��Ngs�:��r�t��iD��5��v<�J����5H��*=�r��0��@U[^�� ��Qn`2��>�L5�����M�(��`f�2����ġ @cBcG��1�Uv�՘�pi��(\9�I��/ijzq�1�}�}�{]���8G�!� u��������v��OV�6�[)��;}>Y��\�`7mg�D<��r����i%�E���n��Sv�ݑ���N�яφ��4 0xG>���ǂ�,:�@y����+������M����L\��.iӊ_�ޝ����K u����.�w��� iơ@s�on�h4�^��g�N��M�t�hh,�(��т2y���t\���j��i9:�n�p��ZOU��m�k�՜�^�7�/˷!�*^���krEMƦ�W��$]��7�@,,��F��}�1��:��7^o,���3^����_{�TP��R�J� �ea|pꙫ��]Z�M�4�>�0�sH��(T�Z�����{�Z7��#���.�i���,�̪b�DRK *e�㟾���FZ���p���F�� �M}Ӻ=T#�gD��^#J��ޯ�:��i`-�O�;��jv��� h�D��WDqϐ�����/��h�t�QL_����zY�T�0Mq�1L_Fu��xr�I���z�F㉔v�l�q�FŌ-��`�5Jm����FU��KU;�a!����޹xi��BŨ�@��4��|�'i�%��u.oZ���76�n�峫��2�V!��w6���r���ܗ>�f�Y(4t:s��?�����9�$L\��q�O�3�7+Op?P�z=�jmQ(�8��\:sOyGk;�_8M����.� �)[�S �6O����]���ҩT*�[וe!Y��&.JH�3�{ۙūwvwX��4e�я�: t�w���gbƂ��D�) ��C"��ғדOWm�F��pX�l���� Q^;�V��!�K���ͪ���1�������18�S�M�b��뚶'f�h�g�9HHE����ƪ����>��5"��g�VW��L��=Kw��������]V�~I���[u��z��]r�P��L�=�F�0B>�l�1�4����Ag�Yt �0*�����-�@g���v�Ql�������g��ۨ�āg4�ے,[�d˶,�c'�D����h �%4��-W`��B�n%@��r�N�(���[ZNo._q,ǖ,_�!Y�u����'�d9ql'�~�=���F3�|�̛���0��R���T*9�$HZ��%��&��"MI���B�EN��p����P�J�$Igh�2��5m�@��L�8^��N|>i��[���?�4������3++W�|�{����t ����u�Y��� V�V'L���Q$�����}� ��ן���?���Wm��J���}�����<�����_��@ ���q�NX����ʔJ��W��;����U�1_ 0��k˥�����(J(� �Z��>'���I�$ ����(Sf�}��O� �14����e9���r����-j�Yr�0�;gV��fnj7�^����h�������x<��5'�Տ�p��9��5�ݴ��@IE��vO `��w��_�V\����ˆi��%��&��ӾW�<0 3=m z����|�s���:nB�_���XS�(WJ@8�3%4-R��*��n�ư^�O�R�)����Y�g��M*T��h��]d��.��SL�� +��������9��3����w�G3�~�`If�\��<`��niqiu. a�pg��+����eɢj ���3���}�JC�r}�;h1u�U�Ck�W[[���@ˌ��mo�EC�0Ïҙ%�ayyN�\ZdTAlĴ���*� K�i2�9-�Ɇ_�b�?4�$�M����.��P�$W@D}v��� }]�&~ͫ6����u0 �jcp�H�k7��`��.�`�u�o?�?����{���� ��}�����3�ޞi������[?g�s��.���d ��w��l�����і��_t�_�~i��e}@(�.����A������%*(���Ϻ�.,��nް�_ �o��q�x�����k-o����\�O>^u���Z� �v��Ŝ�f���^x�m�|�+g�;�ܺ�����-���y��>�mm�o��uP���<;><�_] ]�\2��l��~��އ��)߿�������1�gǓ�V���m?SĆ[?��7{S�;H"�*��+ ��%�o��U �_{�����������I~�#�('���I]��Ǯ���y����o?r�����ʟ����}�?ye��򥿪E���w����A��&i=����c�@G�?}`�V����6�"ba��` j�)K�h��6���c�9 cdE����h��X0D���=Bâ�� {�]��NI�J�w'>�8��@�Z�p��� �E�a6��#���E"���m�G������K�0`�v� �ލF#�A V���{F�<�g��W�������}�c�V���W�Y6����t�-۴��� ^�h٦o�k=���r��4ߵ@ �߻�o��`��~ �˟~B�� �l�vE4Ms|�����Y__���O��tA�e/�Q:�=in˞|{�`�����Љ�w�+��y��b-M@,8��{�~x�m��g�n��׫� �q�y�_ی-��&9�7�Q�n�����L��� ���pu�D��ɷG' l? � ��Ƶ�q��7o^��y���Ь����?d�kq��r�Y��w%Pj�H����Ĭ:��脱 fA!�B����B!�J�B!�B���B!�B(]3}ZVT����0u�(Ȋ� C��y�q'�**�ϒ�I.�[��ǒ��Fe���� {�Vs��İʔ4�|�6ع��JQ!�,0dKD,��XF&/j*��"�M��xɲ���j����k�:�T� �����+� I�e������s��B'*�T[bȕ I6���{]Hq1M)Q�"��ܶn˰�J�+.R��\�m�X�����I7�X��T� Z;㳱���(o��|��#U,��� v��� }]Q�������_:E�s��}���Qj˗�)��F7 2t�Z�o�h�kJK�ʖNgL�Sl��I�o�?-��� vw�t@�-�(�q� �'� ;{-�3��@os�-D� }UI����I�M4��ߺ�cX��� #�%�� !�P���"1�o�H�'-�(���6������I��m��AB�-�ԫ�m�QR�/� v�v�IEQEi���7�`���De�f�u훜���\��B-/�z޿��_�{t����C��-�Lpl���� � P� �R� � v[� L&f�!fy��d=��%���pgk�g�s��iŘ(K�b,�bl,�$-����!{�����$��D�.{��P�+�)�!e� �H�/�����S��69��߂��1?��'p ���\�Զ�O7G������6����!m��[?���Uo �]u�םS�`����u�[�8s8B�rd�t�yA����q�B�Kx1M�M���~��;=a�P�)���=�H `���/S�{������s����"�p�~O ��]�I�N'rX��%�b���_�{t x9�� ��O�ݴ��NQ|��̐͏��:;��*����>�ڿwO���×Ky<��X��jܵ{_?�-ɓ�'����]�;��S��I-� ��#l�Υ��咞{Ӧ�}���������{Y�\V!���K��7�AIe���Mv1M����c$~���� �|�D����b�(����$k��Hq^Y��i�̎�U[�[������~V~��ѱ���vpDŽQ/@���*�����b�� �2���gb��� (>MA(����I"�$����bN�XI��_T$�D]�>�BS�Sp��#"�yf�p��]���� b��8����K�̹����J�VpL�k����(Wr�'5O���H��k�K��Q��l�� v�R�G@s!ԴcGO��� ���/-u|�L�����س�g� hw�e5Bh>%�X�7�ـ�l��rp�S ��UVV�8:�5��$�q_"��x\�%�d�\ɴs�ue�`�#u�"�c�jӪB 7�:ʀ&e���_�{4+heQQ����=~:%�� l�p�N�/�������Fc�� �M�G��aK����*W����o���X�L)!SwlU�9��H��=�ɛ= ��n��W��^!4��X�'�RR^�'ty�E )��ҽ�&FfjՑ�=�CF:a"��y1������M��.�)r&����U�:o[�?�><�Wm���G���������2�����?�f���:۠�vvy>�JQ�a��6�� B>/3[F�� ;K��i ���&9&a ;���L!$H��xQ���p($�gJhZ���ULy�'Ҕ.*)Y\�=�|( L �Pf H x��Lq 0��iJ� ����S��i z��&y�Lm6=�n��C�^�/C�+�$��U���+N����U�1_ 0��k˥���JB����8��P-��0S.�Bp�S���xD5������hO��fN��S�#.�Is&1[C��ya�Q]���� ��X=���!�xH�� o��_eЋ�^ϔRF� �L�`]�fy�����B�A�` �����MD��= ��j�W��SD,춙,D�}6e��m`���R|C3�~�w"�,��G� +�)s��V IDAT.p�vO4ܣA_��c��'|�n��PR��a�H�%��SaX^��\dTAlĴ˒��{x��"0/�Q��b�Gaʸ����4���T ��E�^��G�Yp�=��w�}j������y�����ǫ�|��W+xAۮ׷�g6�9B���Xb�}=�%e5Z�`����P�]L�F�*7�&?�h�t�F�]�⢥�|.�uL6I���'͙b�F-f���"Ok�S8�W��*"�Qzx��LJ�+���/%��"B(N~0��q-X韟��k�LFs����d2�w-B� /(�1��B!�J�B!�B���B!�B(]�~@!�B� �!�B�ta�!4c�����׬;=�#@#�B�D7+� }�ѸrB�A|m���J������v�^�QBGOuڍ/|������퇿�� - �l�N��y�iǩD���m6�{W��?����'�o�拋R���f����T'�B͇ي�}-��) ё���D|�'/��� TjD��{}��E���IQ�08eB3!�у/�q^d��/��ϩ=������� C�\vZC9`��m�!��wǭ��F�QYZ��(pAA|������_��J�ш��cMX���{~��tQӳ>�Q���E�?�ظq��;#Ss����m�f�}��_>��^�Ҋ��ت�����̞'�}gx��!�Z�f����omlniii�g�z��Ej���x�9Y!�=�QskcS�C��G v�l��l�Щe��[���v����_5}������oB;�꺻o}�Z��CM�ܟ�a��O��ҷ@��k��V+������g�g��h��cu',�pq�\�>�ۗ_��n�x����7�|�ffjN*S!�$ ����G�Z�t��W��{���=Q�ӿ~�ʥ̉B����X&���p(�����ɯY�<�r�'> 2��Kd�*���zq�_�Fh�b���|��������7ޢ�x���!���01 �>@4�@�a@ x��.�V�U�*��a�����ˡijbkӈ��z�ۍ��?��M�߾~m�h⫺[��4��~���&'B!�N��~d��J&>q@L�N"����B���P��X�wy%�����ިF� !4Tn�^��������:]n✑Ht�Ńx[��c��g��~����~�*����'^�eى�i*uS��ض�����󞿏~���VO�Kh폟{��kW �ɉB��l���r<�J%w= O��%�9�_�3��op�#��w�b���8��X��B3D����Kgt����6��g^�����n�~����f\��6��_h�5��a����z^��+n���n&��0����i?�顱�5ߛx�ZR��d-*�K�[����뷾r]��G;����������5_��w?y��w���/���5cMҜ!�:�����o�I K��/-�,摉7+ �D �ɜ�r��*� ���p��$� O���Fa��y�9��mw��οyg ~z��Gw���|����:����'�p=�^Ossw�Q�kO���?�����~�x��̛�n�z� >����[�n�����~�X�� �}�[��n�b��z�,/�����w�D�:'B!�>B(N~0� ��]&c��B���̘�j�� }‚0;�;?Sx�h\�^N�fKyy��d��Z �f^P�#b�T�x�L�J!"�+� �I‚0��Y�B!��B���ϧ8&e'�S?��a"&v��������NJxAA���R�?��"�x�6�p|$,1�u!�B�(����!�B���B!�B�J�~�gꊊ�$�3�� ����B!��T�%�R�3�$P���&b�$�Y$9��/���/���� ߶b�+�B-Q�ҕ�ř)��¬����+V,�]R��ă *#�lI���k�����+K k�ˋ�U��X��%�T.�/͞|�XVTo4�\�r����z� ��N��_")���H(��B"�p��DL��Ą�g 8\F�n�p��u���?�9Y��K�������9���D,���iv%�#�VV�&�=DHt���F����ז�}��GÄXSZ*j�t&�EZX[����^Ba�+� �4� � ���8��xVYQ�>���"h���̻����z����Kl,�倛X�DL��D4�k��V����O6���~�؆�?>��Qs��7����A ��n��s���޷�ny��;�uG!t�"�:��a��SdʐI������]@��|�=����hep& �}��\!/%����������m�l?L��1?��'�c�Ņ(U��n����9���0�%� au�p� \���;���K�Kz�M�*�ݿ�G�׿\{�esYE�B� QnA���ߛ�n#E�)�-[V�|ymU�JD����B���h:E���ݬ\��e�1O�0�uOCCC���-�8���EA�dl<@�����펅9���0�%͍Pӎ=ASK{H���f~i���g��,�?�ǞM?+W@�{.��BЪB 7�:ʀ&uFH�����h�e�-ҫ��#Qw�wQi� ��x�0�Rm!<��婲x1w����)�_�B�;L���� !��-(��ì:��嚧���y��o��쿴tÇO~?4�a��l�]y�_F�� ����I /( )3T�4��8Z��F2������Ff�y��� o�2A�N���/�Gr1��^\/j�t&Z]ZX� 4 H�����f��8�1��d��"m-�P<���@�����y 8�;>G:EV�����0��!����8/�h�p,G���I����0��oY�nݺu��^��S��D�"� �r�@[��h4��e�j�q�N��'V��‰(�a�C��8hi�JF�1��i����P����� ����(��+�:�����h�eAa�$��r���\I�� s������L�b�n{z9Oa�߾�~˔���{�˾�2E��������hg�7o~���y,_�Λ�������ߑ�y�$;;��p�w-B�� ��D�"���>����El�5d�lpL�e� ��c��Y���92O�N���A�� Q���/q�O1�@�m���I���,U�%�$S�R�����&b�$"�B ��D�"�hAI�����DŽ���B 1q>��)`�%4���B'��.( �y�$��5����X$?b� ����B- �y�$���U !�B!t<`�!�B!�.l? �Ƒ����_����T�B!tj;�8��T��;vw��jX*��r�.���9>𣴰�R���5�����I�a����HaV�!?K�'���f1���D93�u�jb昽}�œduB�Y`(Ȗ �X��o��� :��ˊ��y\,�s�������IBuڍ[���wK����O^}���\�i�߯�|ѲM�L��L����'Xd����9;�����7�-����kw�ZN�Bͧ�i?� ��+2�5v4e�����5����=���3�֎u�S�@]\�w��L!B�+/��r����O�3�גN�.6��-k�*�r�mC��?��mn��Z��*�u:���IN]�=���E����{���so�����|ḕ6��e�5�&�q+!�B'���D*Bw�`@���xًVTj�����B)�(X\]�bE���|���|�:�qeme�NΛ��D�|�ai���e�9�T� �������k��i36�(����ni���M�̐I���òQoo�d����L��L���EY6��� 0�q��1?%�cg�#�������~������o��NqƝ��u`���-�d�n�n��k߷�o��B�����+��?fۮ{��������ͧ��xe�d��L*���^���c����g�g�ry$�x`(P�y.�d:��kn޽������׺����mh����B�F8z����#)�S$m�T�b���q��}���$or}Z$P�X*<��U��9R�[��n��ڪbU��X���U-_^__[]Y��$��(���x?'�3�� �tǝ��rQ�8i&i�E}�]aȼh�Kw^�ʐ���z'�Q�w� �m 2o��םC��{_ڴZk~m�c�z��=��U1�u�Z������*�F#k�5aA�>�q���wF�&&�f�z����m�f�}��_>��^�Ҋ ���wmܲ��6��q�ƍw�{@}�C]�h}v�U�~��+��$'B!���G�RE�o��1�1V�@���e���� �n/��ڼ�eca�7H��3,&��a{�m, �� �d��Ē���q:�h�d"gp���ܵ��8�&��I���ƽ-f��H�J��%���omlniii�g�z��EjA����Z�bŊ+W.˗$��8ي+W�-�p[�G�s'��wo��_��?��o����WV�ǿ �|������oh�* 5� p���?}�K����Uv[� �j�s�OV�u��F�O�՝� �'o���?͇�L�3��d*��O$-���|���}�\)�$� �Z�q��}�� �rq4� G����?�|����x��\���o�nK������nش����`kn��`�5,���M~��T���ڝ�pH*~�nݺ3�)���֭[��B"�6��y��]�fe��;2o���q�5��]õ��ɣH(r J�?�����˯?S�('B!������SdJ|���1������(�����F&Ó��oXi�Y��z-�nբ�rhm�i�*5������4����ڪ�ᛖ�!���b %\���+(\R_�cC��N� ���j�W��SD,춙'�͍��a� �N�X5�#�r�z�>._HC8� � ���4������B�N��m�n��d�9:�W�m����C�5�~|C����R���;�;�\� �}{떷Z�B�;a��vX<�� ��Pf��G]�:G���J ��&�?ϕ��+�v�D��L>3�w�s8���M�n�R��Ҩ�o��B��fI).��6�{��u�ttڏ|8�N����(� ����=x҅�}C��T&���Q�z�e���Q&�|QN��-��z�.��a�w.=W�,��ܛ6U��V�%����*沊!��T����,Ti��Z��<��<^랆�����ak�rrx����i�e3�f������/jkhhhh��n�e�%����{��FT�:�DA*1ж{�~�H�:Q�N��Vj�������rʍƕ������£��Ʀ�07��0�|�Y)!4BM;v�Y���=�d��KK�~��g���أ(/W�eB% ��f�������6���N�t�U�#}�~�c�c>V ��6EbI�5ꋲl�5:F���� ������1'JY%���F�%R��/��v2�FL #%R�J`���(!�,,�Q�}#���Z}��}�o _�FhA|���J�-MS�>��� P�����+N����U�1_ 0��k˥�� !��HSRf(��gM �H�*3`=���@H@�Yr6��� �`��p��Pd�i�HH �,)E�|�R��9yB1��V(e1�̫��Y��a��h_OfIY��"�hpl�<�X����s8���.'��b������3o|�޾� IDAT��������_���;�|�����|����z}���W�B/Ѡ/��1�`�D*T ��{��⠣��pI}� y�:�^�)�/T ����:���B������(KUk���g�i$�ح�����\���ή��(yAU] � � vZp�! '?�Ɔ��y� B)�~�g4��3ͭ��r��4ߵ@Ͳ�A�e/�Q:���-��6�Oi�N��`�5~+B!��cT�*�mw��h��c��r��/!�B��i�=rl�k��2˛D��? �B!�҅��B!�P����B!�JW��?SWT�� ���_�DL��D�B!�@���(i�Z�)&��d�0�%M��Ym������]�`��6���+r�wA!�Z8R��@R �P�� �4DB����8� ���pݳ��{W�WN��c]��g���ݹ{��]�ǵL������o7U�yy��8����N� BG���l,�DY��L��yID�������~�cS��k��O?o�Qgp����{y��/��g��/��k��dB!4�R�bA��� s �/`"&�K":J��Z�?���矾�o����*�f�|�!�����_?MS W/\\)קO������r� ��|��/������re�d.v!�Bs.��ݰ�����L���HDG�/�D� D���N����ɧ2/~��� � K���#!�Z0R=��+* 3y P� ���󒈎R$�x�Ń���1�β�D"MQSs�>����>{�����m��C!�NN��?�B�\ud�0�%Mo|��r s��k��;wo߶������M*�l�-�lӚh���~N��M����^�xNK�^�G�YgV��W�v����m�&�r�!�:!��� �8n�&b�$&B�<�l}���ټ{Ͼވ�T'��M����{-AEn��DA3��6c.�G��� 9���*��m ��_.��1W>������� �54444�ߞޯt�?A�r˖���AS���qH��V�Rm���w��y�Y��6aD1544444�>����^�M��є�)�3�<������TVr$�c�$���/��pl���X��� ����|��W�'�����d����� @����|��H,��{}1���1V�+���%QW�������\��]q��Ĺf�Vj���Q4)�$�q���d<bIr��o����ԝ�2~�y�EuEr ��m_s�.n��e+t@�\p��8��B�˿����O��ᖯ�mz�����l꽽2;��$A�YYRb���Ζ�yc�KK�>��g���?�l�Y���s�#!4��yK��S<�Fӈ Q�#K"�^_�p���:1<��c>����9���fV���s�|�r9aw�r�{� �J?b�A�i B��e���,T���K��+T���֑�41e��6h�c�1W��k� $����ʢ� wW�;��\����;yr��=��'@,`�ns�4��%��}]ΣyNs���F�1E�D�<���(GL�,P�'�q�D�]�=$&9�#&r ��˲X y���8l�C1��`����(�a���|��@G�N��eY� b�v�Pj��|�66bj!(��PV���%��'ϐ��c�d�ڢ�G1.���b �W*+�L���ms�|�Ӝ�8Eh}�\u���� ����4%�j؝b���<����oy�gj���_��?�MS�>��� P���b !t w��N���Fa��gj�qI~s:<Ծo"�QиdW�$׻i�u��:y��rɘc����C��� ��rl����8��lV>��{t��s�$qġ9R���� �lgZ #j�������-cM����)2�M+$n{:]� �$��9�:�>��0�A%����?Xf��\s�SY���55�b�Y\3���8��) M�%�9��BC�-� �����9"K�h0y7�icZ� ��C�,|M_�(�:۠�vvy�<( �\�r�TFK=ήi��Su�!W��?�j��%���7×X�Ǘ��Ji���ju&��E� �Gp$��#��@�# ��� �$x���ee�I�J���L!$H��xQ���p($�gJhZ���UL�%Ҕ.*)Y\�=K=�N ��Ɔq{����o<��4%e�� }�ĩ�q��9�2��*�ل�qvQ�ZJ$#HA�\ ���9��(�DD� k����@�N'�'�G@�����5J*:f�{b����U�1_ 0��k˥��<�B��[€' YR�$� �� $���0 :�*%�f��byjY��ʹt�Ơϑ�h�c"�7 g���p��Pd�i�HH'��t�3�����V�h�"�$���bZ�P�'��JY��@8����삼̙���#j� z����94N �\�\����c�(J��xI�,`ݷ�zx������А�*,*Y������oXi�Y��z-�nբ�rhm�[-C�z>���{�i��j�W��SD,춙,D�}6e��m`���R�&sGC�0Ïfw�SW4� 1t���4j�-��s!��s��Ѿ�̒�-E���؀y(�@���.��P�$W@D}v���)�/T ����@\Pm,. z���gn ���W���'�r6��ȭ[�{������Z���ٟ�������g.��������]����t}���~��'����?_��m�^�b����Bhb<���--.�Υ!���J>@y�(�ث�x�����F���t9��� ]ay��&�g��nk�c��=ʒE�"���gIS�hv6��lȄ�(yAU] � � vZ���^[f��Mp�2���M^�T_[��w^f�{*aD="�ʤ�P�B 01��].:W�t�lP����}�ٽIK�_2��?-X韟��k�LFs����d2�w-B�l~/( /|'J�6��?��ݜȳ�  ʢ�,Wہѣ}���rX��?�B!��7���:�,��vu��X`�!�B��Z���[�1G�����8 B!�B(]�~@!�Z��M?!^~���� ��͙��A���B!�J�Bs�T�_���u��� X!�� gv��D]��v���5U%���7HaV����+��.)�HH�ʪ��k��6�S�9������)'|��6��ٚ7�6�����'�o�拋�a�5/�l����9�m ��|��/� fe;Ks�G.������� ��*[a���*+�7W�\�rE}�b�r�qB���W�-_Q_��D#�٬t3���̼\�tyg%��s �ζ�� !ҖU�Uζ�@]\�w��L!B�+/��r��J�h�}�O[���q;8 ) '�C'�l~��*^}Ǻ��<�/�s��|�i� �r�i ��2�5A!t"��Rp{ �\F��gb�6��B��W��:��ɧ��Gu�^�4���PU��4����Owe��bo^F~y��g��(�Ɓ�tڲ�-Y�-[��c�CQ�-e�ф�f(;�GXfP(��B)���R�R(� �����+��,/y�C�Z7~�6�c�v<���%=z�y�;����'Q�)����S��7'�B>�۽4ˆ�#��P$ c�2�}`�fِ�����NA@�@m�ɞ�e�Z�:���;>i �V�ڱcǻ�k�y��&K[�w>sYN��E��>���6u��l�ޞ������g�l���={Ë��oi�� Ƚ��Ϫ�;:�*���d�L��?��Ojۛ���Y��O �?���m-�ܴJ5�X�M�|��@�����\�'<���|ek{��kw�V����M�5x����4T�=��}m�����, ��y��f�j����v]�x��r�i��^u[k��w�bp���T6Y��y��d�Ï�˷�-�}��c�� �б��V��k�i��KK 2��Y �Ɯ’�RS~�>f�:�W&�,,)++)�1(�ۇc�����&#�d���ee��UYI*�d��R�������9͈匸G�����xB �@���{|�G�*�,+Q���('^��W�o��[\���RB�⬒�1r�{��bYzl``��˅1���DE\F~IiIA�&|�1��J/�Qݛ�V$JI^�!'S#�����C��k % h:@Q|��$d�����5b 0��Vd& ����`gc� {� Gx�C�o;W���'���+o㳯ݖ%&��_]������\�V��������_ �.���������o�I�_�����;y|�3��G���8��z�ug}�A-�|���O�_)��}�a��L<垛Ό�)<�78?���'���-mÓ;nΉ^x�˒��s�mJp)O:}�$���7].���J���m�<���[�n}uo�����u��`�p��;��5���ܘ����W:��ya� ��u�f���}�{���[}G��B�+x}�j,>eB�xc���VSQ����3e�4�������Fk��2�p�4��m_EEM� �'�7&r����5u���G���2!ŗ�D3��EL3b9#��,s?�h��U(b���t�h�ݔ �N�4YO���A�� �W(�>���E�Y�?[��Qu�/b����_Yu`DlLTF��O��-P����*-'5꘧�z��㴚�X�$4�6�@�e܁�5����+�G�``��~�k�3���M�#��ҊLJp����^�R�:���(1��a$BL��?��s�`���9�]r���Z�? |�Ķ�\[����я�\�����y$%��Kr����1G?}j���HzO��|�>A���]�n�Ҕ�ϯ�hT���T���~��D������'�X�O ��{���m>���_��Ɵ��ዋ��O�xϗ�K3.x���$x?�s#�V���������ny�?�Kˮ-Y���"�F?|�����&To;}���o�W�J`���z�+�������B��������HK�AG��`F�� R>xB.k��aX�ۗ* ��%��h���|c��JAP>�1G���}F���栄q����ҌXΈ{4�܏����K���G7�����v8YFɌ9!&�!����PP�������rG�pHˀc'�����cƜ.Y��X��v�;�設�� �ؖ�^pњTs�~�)�y�ʀ����� ���s�{ihg���@&�A!T�d&Q݃rC���w�t;�(BK�@(�h�4�Q^�"������+|��o~���k' �B`{����%^`S /�r��Yj_0FL^o8��a�$�� ��!��f� �<�8��\�;���`څ&D�1's���Xz�H@u�k�ϣA �D |>5!�T�����gIJ@����L�����, ��03|I>$�K�(%5/A��]#��Ρ�� zl�>�:-=͈匸Gǜ��:��l}��>D�@�?G4cݵu6?�uZnNbSm�b��>��9�.��`�uo�e��8�e�)�s�~ U��`WU������C��qP�,��〕֭Jt��z��xe�s(�AhY C2>Ń��x?�����E���D��^W�����������?�^�ǏoM:<�DF3�� ��IJ ]5���~�g�{00���3��pA:�B�| �qC-����z~{W�I�1����2_��h| L���1�ˁ A����4�k�@�b��TR�=� L1���io|��G�W�"���S�V� ��ȐW�Cl8$�nJ�� t8}Yj) �ŷ�4M��o.��K������ v�]z� 6OuﹸS���U!X��k�꤮/F+rټ@��� Á�cY��E�VB��r���fS��|U�%�7�G*w��P[��g߲�%Gq��V[i��}>0�h�Eή�]����x�'y BeBr���X� Ę����֯'_y�59� �z����²�� ξ偖L8붛�G�獹5��T�3��!7_~��9I�読s�4�� �bW�S���7����߯#�^S킟��85w�g������n��LKO '�s���u�� g�/!4_��1A�R����.�@��<A�x<�#�1Z��%�"`~�H���l�.AɾWs� IDAT�X�� �z�t�25Q��2W$�T4 F��xx�8y���S�ʃ-�H�^[�^���>���"��Q� H�J! gK���<�x���?Ɖ4�*�=�D��j9� �T*� �)�*�hǼԽ���&۬��>�R�:h��Ӳ ���,C4�w��G�+r���!Kv>��,�m�/ �{՞r��S���/߭��Û�=t��J����ݿ���(�7������]�M��Cm/��ѓ"�>��/�Xq� /?]����`��[�/���P_}����O���}�.|��_\�������;����+�|�� @�§Dl?����K�׭���� ���u�/�N������g΄O6���9���~�z��_]/��5���U� ��s/m�شj͊�]�����Ϟ�� ��<��V�,=�d�&వ��{��:���r�Y�:4+�~��ۦ�\Y��k��Ƈ{�C/����,����N�=4�n�� ��%"aG��i�%|���k���f�rF7��b�^<�ݔ$���c�>����}|J:S��v�(5� I�����;���y�<���k����]6U��"�o��7�M`g\��#G�����:�l6�����!4��~�o6oXgr��?�Ꞹ]7^�lMD9���͍�;�~��t�}.ض��7 ߸�`۷�ZN���MMM ] ��[67����S���l3_���V��-^]{��hݖ����>�o��Ӈ��=�EcB!���Z�B��|֟�}������� �Bh1p[��0�E�*B!�BhQ���B!�Nhf����h�b�B!�Bh����B!��.���2���~wQ,;9��>��F� {�-�r����W\����WD�ZBHi|zZ�RLq�1���2����(�!{��׺�}b�Ź:jb~��Xiq�IF�ʔGI���o 5�m�>ϔ";h����`�)O�l�lwp@�f�d �k��w���3���4�N!�1����� M��!d�ř}�E��k6�n9j�/]t�K��C�Bhi�kSR#�k�|�X��kԌ�8Z��hD��4���z�����j{}�L|ًv���=/�l�_v��H��y��U`�\)���+�$��f*������ �.3Ө�k�j��CȬa����|��w�ύe�?|���џDHr/�~���"wG��߿�o{��������l%�_��3O�o�"]�!�暐O9�v/�xG\�x�`�퇐w��iSf�%Dz=�H�4j%|�"�@����b��SCm6q�Q%���-�c�*�L㷲�D�`�]���l���m�᥉T$%�������!�Pp�r-I��ݭ~��R(��1~Ϣm�E:C����o��౏�r)�D�:������� �,�����y�� ��s�ݗ�D����W��߲��K��ӕ��dgݾ-������Mo�.y��)�G����]�<~�KI���m����;�ѱ81�����T��/�^]�'�BݵU�u�>����NJ����TU5�RU�g�2a���&뉞v;���ٗ~�Eq��ι�[V�s�yq@�t׮-7nܸq�%�{��ǥ�!��H�>>�����?2��a\zv�t��T �֨�����W[��1�_��p�Aģ$V*B}�j��\l���悤�qZR��q:�3"�32�u �.�w�����4r>˰�ϧC��/<�Z�Q�&sMq@��T�R$S(�x˜� �� Ds�GQ"��a�sK�c�II2A� ������-JVS!���bX�n�h��!�0m�O\�;�4Bh1�(� �G��Ǔk4 I�|�6V��x��$ �/�A'� 3�Q�vՔ����X{sym���т��=�Hr��������H�.ͨ��I�P���;]�%�ed���c���S�Y D"����|�:�A�q}�@ \����gT���s������[����-O�}^�`d�_�z�s�[�vo���~w�f2N�+�]�v�7+�N�KS1- ݇�/}�9��l>2p��uXl���P�����V�_a0����b0 0��9l?���-K���B�3K�Ϊ�A�'��P�j+N�=ǎs�gĄ�0��%�T��(�Pu�b��"�B�H�gx�J,,6�L&��0[�ٗt��"���L��@���!v�������),��EhY����%�� 8��1�����o�` �+�0"!�Bh�`��0��B!�B'�i�����B!�:�B!�B�5��K2�)O��~N������'�b�K%3d���Z�M� 1��\5�'f썕�����|�h�y��*9-9N&$�1G��286�D�H��*)ر�u(��<�de<��c���v��b�ty^��k�.��™?|j��� ������7.*���B@�ፎߜ�ݶ� o����7���).4�uX����Rœ�3��"� x�]�]�AJ���/p~��b��2 �M�0�J$��ֶ'-K1�i�M���ج�LAw��\�a*Ө��8�4�����ڞ��g��'�6=M� ����c���j{#,N�צ�y���� ���$���1��rR�����-#]� �:x�α��:���+�y ##��i.;-=�h3�~��F�|�w���T�/t�B-��7h�6%E0����G��Y�F����Ђq��R�����A?O���mpU�;8Rm�T�Z�ۼ�25'3ѽ�� �!6�]�8�>� Q���ɕ2p� �BN�\ u:��Ɯ����׭,Kת�V��d� áB�1����Ԕ����h�D ��iE%������v yG흍�]n��q� II���)��H�"�3�� �l�3��� c,6�W�r3��#��B�� N��t��zuǎ�4�F+v�ر�݊a�5߼sOe������,Gu{��K����:{m6[oO����R��M6�W�����|�ʅ�^��g��M�{vn2� ����j[�c�Զ7��������?���m-�ܴJ-w�;��7��i�4W��/�vj5�����=�M���o�{�'|�H~��_�=�n9���VO�B-(�L�"����Դ*+I%���R���O9�v/Ͳ!�+ E�%P���SqI��2Saaq��c,�OT�e䗔�f�KP��e%j3V����R� � �%_��9�mC>��Bn���� W��z]A��ۆ@��C�X�aX�aX&D�{s<��B)�)b���M�iU�fs�Y�YBr��@U�ŧL�OcL�y�j**zX}F� ���2!ŗ���_����iN&N�+--)1�f�K'�"��XOW�ዡ���͌ǡ]�=�p[������G~vB� ��;v�w� �x��m�����ij�p�m|����Ĥ������_�����js׾�ӓ~����^�W����p?�z��?I��+|��~�#��q��ȓ�'�P���̡�>�e�O����:�ڻo1�/�����sәQ:'����y�Y��6���[ղ��6J��5���ܘ����W:��ya� �9P����l:Y��w�>�q��!������U���]�,�3��x��t�5�S����v>�u��ڪʊ�^����b'%�jy}���E)��pKA& X:�d=��n�R<�_H���~%�K�7@  r1�Y�q0�ki�M�%%eyjG�e$|C�V��r�ӵ�F�O�b6���u �ĉ��8n��bb�������HK�AG��`F�� R>xB|m�A �Yj�.?ޞ��>�X����h� _���z�i�M���� �fEq�"`k�펶��PP������N�1qiE&%8���c�~)s�t��g����0!&�����9M0�i��ɋ.9U��?��>ybۋ��� �-V����G[.h�u|�<�s�%9��Iᘣ�>���o$�'�`>S�����箿i7wi����h4*{��)�R@K�b�7�����;�O3��$���﫯� ��N_��D�[A�����}ǯ��J�:����!� AP>�1G��1�9�By�V�����>8��f�@P2��WK�`�����V! w)�N�Q2cNG��c����6�4MɎ�ۛ:�I���\��q~�$I�ǥ%�- mB�KKO��wyN/Q�c�l�b�wef�]1�A��;��q�I�� �ީ��76A���XH���������@35�9}Y:�C �{� @Hn0��-��D���V[�{�^;ȍ�Tn���Xwm���@�����Tk(8���� � D�  #�$������+|��o~���k' �B`{����%^`S /�r��Yj_0FL��q �I�w2���<�B���r_ �y��w�p�˧l����z��������@�P]����h�@*�F��)�f�����^F-'�K�(%5/A��]#���!��<��)�y�ʀ����� M��p��� ��&�v8'ù�?,�vB4�`S� A�5iYp�e�eY� ���a*�`Y���S�[]> �7����wy��)�ևz�Cd�B��L�*f��9���VєM���8���7����<�J%e�#�;�b��Ó�c��k��g�q驂�&[��`��#V*Ba�j��6r�����o�3��}��sߺ�%R��``t�]g>Y1���!H��βnD�����/���B�x`���+��iZ���9{%� �J�j<�K��Q1Z_�|"��IbՔ�� G�F]�T� �G�Ax �`0@�$p-*8�oR�� C�~�]��8+f�=>8�^7E�Y������1A�R����.�@������͛�#���m��u���o�֒��� `���4|�>��"gW�c��}�V�D��&y BeBr���X� Ę����֯'_y�59� �z�f�/߰��K�v}T�: 4 ����4-5�.���Ss�|�k�^/��֍�TE l��a�snܹNwZ�Q3B�"֥ųC��  �p�C��EQ��hH�� $��&z�O ��T�����I�J!�{��M�'�Gm^�BG�����X(Q+t  I�J26�xϹ��`�� �Z1;�^=�l�_���[�����"����>�F ��Z���O�*��L+�ֆ_�Za�3�Taq@����|����#=VejZ~ �d��K��̞��,´�U B"�[��!_S"��ZhNogM}_$Ʌ�d����mo�t���.rYl�>��������/|�n�?����+��V������WGټi���s�/�z�������}����_��㆗�������~������~ @������ _������>��i�����3���� �U�P����|�?Lx��ӄ/��Q��k|u������_T�`���{iCƦUkV���W��<vԌBh!�<^")%;Y�'Bc#��\̩��C��6k&� ���Fz!��^ߪ��p�2�\�֖^��j `��;UYEz�`C>go{��ak�$=5�$��[k����>���[�Nq�1GW���y��2���z�� DM f6�q�Z��~�o6oX�gr��?�Ꞹ]7^�lMD9���͍�;�~��tG���Rq�f�������ԴХ@ͱE~C!ՙ%Zg��� R���CY��'���D�NNR�v�ͯ0T��js1G t1Dz��uX �KEh�����G ���|��������q�ا=�_ @��� �M&��d*�Vlv�!�=�T��(�Pu��Q�m��В��h1����%�� x�с;�9Z sL�/Z�������B!��<� µ��G <�͗ ��B!��.l? �B!�� �!�B�隻�(�!{�������<)=5^.������e@���N���!K��1�eQB!���#*Q�(6%�+��a���{q���'��DC��K=ȲS���T������*�t�4���3sd5{�1�mN�D����Fa���N���*_G}u���L���:�pcu�X�VI�� !�:aE�D ��S�-�*+��:EC,�w33|m���\7�A�\)B��/� i�j��c�����!悔�62��VK&�j��@�+� ۆ YjI� pAAuJf�}�˅Mj�B-B�1-9N�gξK�{��)"U����m�?F����b��)ER�Q+�SI��X���X�j��S�*��ni�T�e��U'����g[}�g^)^0�")I�"�0Y00L'd��;��B����1��#Q6iF�DQ|��$d�����5S�-&�Oօ�k�*+�z}~[C�=��X�����j�$���˄K�C��'z���V�����8!9������q� �p� �@�����%Ք�T͞m̙����$9�#R�\��8�$I��p{};�!QB"���d�,��nB!t�K�Aǐ�.82��K��yʈR.�z��T׵���FMԌh���%�M6 |��^�c�N+���n��eXf��1,C�Kj��i�kRt\o��t��NO��U0��z���=˘31o��X�%�n��� ����R2����A�!�d �;Z���"5�.��<ů�z:B��D�0>� ����=�U�s�{ihg���@&�AG���,��(�a.k��$&?,�vBd��`�[��i�yNq�>�["��ls(r5{v1gb��t0��@ �R�ei}��nU���֣7�+{�CK��-$l! �Z8����z��M�l��U�Z�b���t�+�0o�~���,멭��r��!�04���VĹ��=�'Q�Jװ��%�,�������4}�|���)�q�H��~�Q��@ DZ,ǞPMb�B-e~ߘ V)����D�j Zm���º�^�V'u �x1�X����$�@@~n�V� �o>7� IDAT�US���׭,��}?kD���� �ڻ ��ab]F�A��dg��9s�~P��fky�¬f������I�S�M�ﰵ�z�e��c�ȀEN�64d��s!�BKm�Ze�9&E0��}l.+Q�VqZV���{�e(�Xo��׷��, 8&ವ��z�T�L����sG�9�H$��b6�q|Z��~�o6o�3_���MMM ] ��[�7R�Y�uV5 2�8)7��V[� ]��F�NNR�v�ͯ0T��js1��hV[b�e �B�0�3� l? �B!�Ǘ٘�0?�K�_B!�BM�B!�BӅ��B!��ta���Gs�m��GeSGG�w����z>@���6[�c'-t�Bh�1�'��o�x2����Ҳ�ₜd��xd��P2C^YY�j2�Ŧ�,,)++5���II���̥�J���*3�� U�c'N�_m>xO�D�$d�2���� � ��d����ُ}�޵��O_��^E�wݽ.n���Bh.�t�I������:˘2à\R�{.(�6}eA�Q (�OO �쫬��� �����Jr�|Iֈ��=/�2NLR���o����owŤռ9�xI-�Nh��r��;����.���k���M����Z��R��M���w�l��5|��3�刀w��N����Llp֋���� �dw��o~Q�bi���__���2��ܫ^�������r��M&�d�������������|o������K�J 2������� �X� �N,��ԘR$���K�V�� ��4�p?I�".#����0+^B�*�,+Q���('^��W�o�-�FI�;j�ll�r4*#���c4ˆ�]�M���OH��1~�o� |�HER�x���?U$�D"p�}4ˆ<���\.���� �������EO�~������Ó �*��}�a��L<垛Τ@x�C�o;W���'���+o㳯ݖ�X�����%k���7��u:1X;�3"N�g��g����|�oU��sb�(��_�����;y|�3��G���8��z�ug}�A-�|���O���!��D�h�����%MI��n�Hw����ɥ���S�� u�VUV������{x*P�V��;PU�8,JIT��),�i���i��Z9�ퟅ�xG�ߡ�R�#% Yť���t��Zm���*��B�w��(쬈�c=]=� N��T���*b>.��a���f���n����sn}����}��u���_�{�����w��-_�QAZ�I ��~�ث;|�; �%&u�� b��'_Pv�Zs�N�N�#bF�J)��J��q���o�� y�я�\��;�}���?jHNN�Hc�ӧ�>��W������BKA��ms��Lj DSt �O�m6�6� lM]�눴r����&����/ͱ^�� �/P�N�a�1�#İ A.���� �2�wMu]�[�jԌ��NO��U0'��%�1�&E��vm�9�����,.+).0�C��D�&l? ��0=�?v������;u�#O]���?4��i��P ��i �nk�(�s�����g��������)�d#��Ȑ�54:�+��X��y��fs�QNjV� ����x�V�M����8���2,������z,��gDh�៲��������lU�z��~���Q���.X�-�Zr�l�uv��$EI�o�����-׀���Z"߰��K�v}T�: 4 ��Gܜ̢H*�3ͥ� O �|�ͧ�~ �8��[���oX �S�y�B-<��O�i�2V����멈$.U/�5�xhR�RH��h�[� �I���j��0���5juR׀����l^��<����� �ػ ޮ���G�ne��oo�h��X��e���6�YR�K��{��B�wvy� l? �Ą�_�뷲[.Y�i-��mxw��ꂂHQ}�xx�Ӣ���r[ ;�����?_ ��.���ڎ����5gwZ;�����m��_|��*n�y�cw>�&�澶_��w����u�~q��������دu����X�k���{^�7_�!�� �P�39eUI����[��G��0�ݝ���"=E�!����?��@~{�oUAY��3� �l�-��y*�ҠL+�ֆ��Xa�3�Taq �[�iY�� x�m��#���e�W����|�;���J�2 u<6�l����&B$�~��\^^>�U�NNR�v�ͯ0T��js1�� �����f���D�`�޿�,|㢂m�.tQ����즦��.Bh�-� ��,�:��R���CY���ծ9a� �"tXl��xR�F�@I���� �B�#���!*���d2�L��lu�f���)�PX�9�T�O �8:b'>0�� ����"\��%�@hY� ��^�Y���M�����������!�B +<���[B!�BӅ��B!��ta�!�B!4]��B'麧�~�j H�cYp�uݯ�.t�Bh��rW%;�����tP2C�J��ur��q���|�h�y<��'������a�X��Km��q ��R^�{���u$�X���&��c썕WĘ�S���T������*�t�4����ʴ�*&!ͨS�yL�m��w;Cs���@-!�O�:�ȿs���7]�v�B!����H�%Ⱥ��� Ҧ����sd%��M���Y�jc���Z��%��9���}s�j��l�����H��y��_|�u����Ť�'W���&� 9 ���^����$e��5�B���4��Zg���_B�7�����O���ݟ���Ίȿs��? �j Ew}���zR��/���g{>��㗯�Y�"#��qc,6�W�r3��c�<��w66v�o{���$�Pg�d V�V� ��� �� �Z-��(�H�)0���.3gix1���DE\F~IiIaV��UzYV�6cUQN�<.5�0� [R+�cB�qT�^������� )�b�"����4�3�/���vͲ!�}$(�K� {l? �Ɖ KD�޲��'-?�⬤h�dgݾ-������Mo�.y���YD�ZHnkUyy���c�xG�ߑ�~� ɱ��77@  r1�Y�q0���'�BݵU�u�>����N_����TU5�RUᖂL�t:��z���j���vc�!�z1`eǿ��JKKJL���Rr�����*��B�w�8XB��Ё +U*) �J��ϟ��G�~@���۳��Ǻ��� �ː�9���^�����*ev��x�!���&E��v�)A�$�q�@*��yǒd���\;��d��&�o�{�Ks���a��p���p� ˌ9!�er��?Lੴ�~�}|𒷧������������� ������Shb����R2�3�s�t�c2��J� �����qx�l6�M�����/w�����T…O�y ��o���B��!������O�,K3�R9 @�,��x�=&K+(Jf����� ���L� Qr��7�5Q1f�``�)���%�@Ę^�S���և���Y�ٚ�ⷷ��-<�cX^���\�x��iG�6n�;��H��#��g4Mw��r�[� W.�Z6�J�@(�[��.7�zjk�Ax �`0�cc�֨��l>��g�*�s��a\z����~��жӡ1�� y��Q?���� :� �IԱR�5��T��8%鴻B�����1Mv�����ϖX��,ul����=y����v���l�6<�����A!����|\���ڛ�k{|��h�|O���##cQ6' �/�A˻�!*A����N�=�xr�F! �/��J<o��a���@s��zw��!b]FVZz�1v��O�uiF��O�*}�隋��p�V�P4��_���<�һ�t|�䮯�n���˻ﹿ�L���*�~�}&�F�%!�X�� ?4)4'����~F (�J��ᙛV�5� 6UX�"2��6Izj�I����ިU>��׷��,<��\�֖^� ���2��7669z��*S��K�$�X��Qb���� �<~��x�;��J�2 u<6�l��~�V D"���ٌ�Т5���}�y�������njjZ�R ���"��������i� �I�9����^�r-7Bur���[m~���b�V�����E�:�_B!�Z�X���XXl2�L&Sa�:`��Bss�'Ui4J1�D�0O�K�_B!�Z��#����.���5� r4 l_c����� \*���B!�PT_fc���.8~ !�B!4]�~@!�BM�B3FƗ\�醍'p$B!t���?BK��۞x���Ɍ���?{��~�U�*O����@LR���>P3 $��L���u�'W���&� 9 �,�����iz����i�g��6�_Bh��(.���_���'��v���^�n�������͙�r֋���� A�{�˟U7wt4U�ٹ�$(ض�f�}l�ُ}R��\���r�>F ?~�/�h���}��� ���l���o���kץOF�;��7��i�4W��/�vj�!�2g�=��?\?�G!��)!�r��^�eC�W@x�b����V��k�i��KK 2�@թ+�J�J� �����#J� ���D��5��fs~B�� �Q�z������H�a��fِ�>�˥��J1�L�����3��;��G��5ھ��!7y���B����?ݭmP]����]qJZ =<��j��^/Y����!O�Ӊ��i������+�w>��gι���W���T�3JY�+������潺�@o�g����~�J��PR��۸���7�h�����v�ݧ�[w���ui]�Bh!�B�֐�SXh�tLY�g]Cv���e��D��X60:�$%A��e�������1�=��Ⲓ��8�������Shb��9�,���>+��A��� Ê+�|��$�М2��S�Z^^~�J��������'����6�{���;��cN�=x���E�t�CG�Xe�e[n;=K-�c�b" ���aX �(��| ����x#�登�I���-/����w���~��&|-.���b��G�X����D���S�2�{�@k���f�6���A�/��qI��+B�R�F�&k�~{[���#9��ůL�O�{Nq�>�["���h�>��X������윋�B�JHOi�z�߼��o�O>�1))>괂~�E�[H�������=µ�}����{��K���Ƿ&���P(!`Yv�|j��N���;���?>{�y[�yd�����ջ��/�_p�i�n^����.�y-Bh��*}|���i��p̓�fC�@8�e֘�*䌳�׆/�S�N�+|>��X<#C^ah�� T�9Ǔ�c��k��7;�������-1�S�~��>���[�y�Ku�������a H����v]E��C���&y BeBr���b�'c���Su�8��[��~�OW��78"����Â����ԋ?+�朽q��S�)e�ڍ7�O � ;�����V'K��܃�WmO۫�_� %]��&�2�=!��<�(� ������ ��2�$J�� F T�2F��E��q�����w�;)ץ�r>���q|�k�'��}��i�;=%�.#+-=�;Qŏ�ﳀ�"�Ą�_�뷲[.Y�i-��mxw����v���v��V��9��� ��_��w����u�~q��������د���wށqT��?3۴Eۤ��J�n��eY͛P�6JH0%�$4�� ��1-Ԑ�Ä�G�I!���)/$T�-ےlk-Y]Z�U٪mS�?$˲=�3�Ϊ���Z�9�sώ��̽s/ƪ�~�]]���_���=1, �����-ٰ|��^����G�0��i���`Y�y�Zxw�+�\�ϷO���M��ءo?����ph/��O���'ol��]罸�͑�Ad�Ci*��&�?�@0���]SXT�)��o��7f#=��i\��"����{� ��ШU����/݅��;�K*2$L�7x��� L��6�/�)1�o��nzб�� Ѡ?D��@�����>��8[�!���5�}���.��Yq�7�_���+��r�]YT���8���A�����ru8C��l��pz�4�[�v�ԷLq�� � ��D�6�Lz%R�q�C� 8��,B�q2����,J�B"�KY*e}���8o9j��@AA���t$<��O~HN�B�/!� � "�AA �� � �E���uiA�H"���6�4�8(��Ke��:|3t@��.9�l��ut�!5� /C���a�����Rm),��+�lt��lo�;��>ɔ�܂�4����ng[k�P��/�NS�I��:�x��rL�ӓ�� 1P�������$Y��;����o��/A���&weY�"�]_�+ҡc\�Ej^UY��� Ѵ�ig�7~/�%��Y�d�$J�[���q�lu�@�Wɻw��[8�_H���|�VΆ�ζ���+ʬ��씡��"��& �lp +l���lF?�\X`Ց�T���"+۽�p�Pe�ZFh�97W>�ow_�PZ���L#����TX s�C�=�����d� 9\�ʜ��o�B��dE����y�>�K WG�x޽�w�|�ۛ������vAd�����u'��U��'gv���J�E g�8��XI�D�׀�GhuZBs3��A� ��ƃR�_Z�����\i�9�*�L� D��{��b�e��j95�*?zЩ��3�)Ows�� c^AN�FƄ=}�m}> T��6%@�=ƺ�48��F��N�Ș�Ĩ:�&S��~W��k$bժaī�I=.W�b#ް%%��~��L�j|�}c��w���T���44��Q*�W�Ӑ�� 3����K>| zަ�6��l�ŇG�+oy��� W�����n�vm�����Җ_l��!� ]L��V�gVɤR� G���=�.Gf(�5�:c�l�եʱ�z6v�Y~���q&{1�(�?��+�'ե�� �V��cu� 0��.6��c1�I�ͦ��W-)�o�VUFq�Ie��� IDATM��ō�l�4�kSؖ�e[FX�)�P�o��� �-�������o�I`�q�\?�� G�^/qS�B�S�)��LHUJ9�.b�)��XR�Y�m����Hwk�+�B���5���f ����e$f����4$��#� I��N�|��������n��o�S��o��l��Ԣ��;����=<�4ˎ"�,�� Pf-��dY� z�:b��VXr2�ݻ�FeVIn���5��� 4��Nw�R�ОVWi�^�폝r��CǙ��H�(�����Cm��Q�f��D�*����Y��Hwg$"��b~��̜4���X,��?M* ���}����B��Psp�{ @�L��g 9(U�{�O���j�(���u���R��j��V�)��g�H�֜]XZQ�'���L�V���۽��է��3�@����m��ظ�#�^��YP�"�TB{�m� 2>GCS���������)�P�O>�ӗ�`M� 2s8��@O������ƽ�oJn�%���Th��B��(������f�1�;J34A.���3t0�d/�qKt�4���{#v�A�$˲�\��*%,ːd�^f��`{;�㽟;]�� I2'''==]*埗�z �J �K� CJ�����{���=J��R�"�RB��|���n��I�u���&!Y��XN��Htyˊ�aW�@K�;�����P,P���� �}�tCp��d�}�Y�&m��3͎&V��7x� D}����ž*�I3�h� �)!�>��9� ����.�  O�{���U����c�7�)X�2���ގvϔ~'?,�:!���^�p{�%�hoc��̎���0 A�p��a��8�������l���@@ć�G� ���)))����0�K�G'�!W�^�s,ˆ��z��Y`!��}lR( ]�i������L&��i�Z"]u���%*c���{B��3�:R�eY�$�}�y����t%c��3�X�%%�4&�mP���͗=�=w~!�,8� Eza����#6^ 7��FwXh��g��${� (��!HK��ɂ�D@.�� ��#������R����e����vMO}}O�o{1ۑ������[<$@(8&��SHR�Q�4Ss�~4���S�2�2E&B�Lj3 �Z)Q��2�7 �J�H��~Rf,).(,�K�����yZs�ZJ� ]FZ����Ƣ��4 �D�nP�����4%dv��sfU�\lL+\s�'���[�L+�� E�����,I�A�8��(+њL:9I�2�9M����[�$�\NA,�Y��p�.v�� ����a�; �U�3�2�$�hM'FF��9:� t��>A]��q؞p�G�?���`0�!�\����l)A���ֱC���N㒥�����N �/�)1K`����cG����C]��"C„}��Fh ���n�Tn��2 �C���ظ}�v( �+��l��:�6D���u�0���P�F��]��<اp�X��4\�<����}������+���|����;~���zIй�[c�C� ����U.�_��ž=�#9 se#=����jIG�#m���6� �z��W�����^gKs�?A� \��s'{I��} l�=�qPU�_^)gCngK�d�ylV� �����?�v��e0�%��ЬY_(`@��5�}�]JJJ�\{� �����XTm��9iRi++�v��4^$ c��@�:�^���0mf�I2��=�Xe��RM��oEAAf�?<��[Qe?�����ָLj!3B�6�LQ����xB�7�d�#����AA&����#s���'�l�=���6g�a����n��̰q~��� � �Ą�#�c)q6N��r\�8���?��ڞ���? � � 2;���� � �E��An���[St�#I�Z�� 1ϳMP]4C⹴H2o��!���� ׬?1�E"� �"&^BG�-E�+kjk�W.[bQ��ɭ��� 2��־̪�&�b1�d�<���`���c� ��fH<�I@�M<4������7�[[�|s��T���ou��ı���o�����H�s�z�������v`�^�ՙ$@��mN�����?�ӕ��ݥٯ}�o���5�x��,@^��'>�u��ݱs��*5�#B���U���*ˊl�x|�W������4����;���l�+*��kW�VVTT�$�yU�Y��%��5������,��+K-���e�ٚ�u��pf�Z�ql����аs�F����\c�D}]�;���+�] p ��J%� ���D����V��|�����p`�t�J)��(Pn7��˕:m��H�T��55%fSy<�RsIM�� 7T͐x.-��̛x.` z���jt�`4Ưϻ�'�����|����{�q�/�*k���o�� ��O���|�x��k��z���9��O��ԟu�������Y��v�Z)w�ĉ�=}��]m��/�ߥ)/MeF����͛���ͫ�������ձ�7�y�Y��7O^W `��׿��������Sz����2O��!������۷�돊�g�tkRo� ��LLu�%'#�]_�sGCo0������_i6K����5 ��f�+�"���V�X��V�J�1p�N��C$¦f���HD.�H�2�Te�����\VhRNTN\9�€s��P����@(�:�L&�ʻ�}� m�ٔ�fPE�4��%Y�4 ��f,:��^�� �<�$��ݒP̴'Au� ���" ȼ������?��ŵWT�IO��8�_}5 ��Ԝ��VB}��Ǜ�}�͏~��=��Zk�B����k�f/����kL&��էԠ�Pj�2�����0@�郭M����=l�`e��/<��g>%�{��uJ0����9$�_�M��Ҝ@���BYx�nBb0��\��/Q�0=QR�F �av(��gt������0���t:M���p�NN�,�r�V+��!�$I ��j���v�JRmK���M��9�€�&���ݷ�����">�7 �̜ũ$��eE�������.}n����m�����P�cH�=I���p'O]4C⹴H2o�(�"Q��h ��ݳu_n�^���K�Ůcw�߿|��dYh����_'44�PL��sۖ[_ʼ����8�f6�����^��n�Y_�B�R�6�tw#H�*~x� �Sd�T��X�A9N��nZ�.8�����i V�̡鰷��3����X��� �0A���;���aX`�� �((O�pp�F �WN�0�&7!��zW��diFb9!S+����H�������9�n��P�;4z�@N1���T4<�Cnii�)��� ��fH<�I@�M<0n�@���T�����U)���j7@y͹��� ��/!��T*�h4�:g�ԁ�7���d�i����p�w�xN����p`b�4����׮̔)κ�K�����5�>�<��!�,Jb�[��ii�'�k�rs�n�q��{��ڇB jN�p���D@.��"�ry$��#�v��9�€s��HTF�I�2���4�&���@&�QQ1���=� �J�H��������usd�F����oy$ �Z���b�� ��fH<�I@�M<0��������@x��gȠ���b�c$�_}ѷ2 F�>q�z�w�{�4�����j���*=���:�[ӝ��^^j]� ��qo�B��O���߹x蕷���E�C�.=㼕iK ���֯������������3����N��ړ[ח�-����g��k�t�p����V�����kD3 $� �B"N�%O���}1vՙ�$�\N!vJV|��:��h�5S;� Ht�tb�y |�@�9C�JR3�R�����@�� �a(3�g�� �8\ ��(HW��z�Κ.��ڧiZ�Y�Di*��&�n��9Jb"��n���ܶ<��@�׃q:JP]4C⹴H2o⹀�s�U�=?^w]y��K�ݵe+�$��lٲz�s���l�Q�c��4��髯�7^b�B�?n�F�.��wu���~y����!�>���}�Un:?��x��M�����7m��,k7oY �n|��>��U���K~�����S���o:��ݯ>^z�5O<���/.8덻���{Ui�Y�G� 2�Hͫ*��Ƣž��ݍ}�W�Õn��*86�/�� ._Qk�{�-ͽ�]Z(p���8�*�/���!���7h�PWdKٰ�u�m蘂�X`��8�  �C��LNE���;�K*2$L�7x�-��[�H�ؖ�n�o߾}�(�96��pz�|⑔h3�L����� ��fH<�I@�M<�y�n_7�;y�B�ta��4��M������k�V�����)�r��;��O�����p̵���<�A!�E�fO�c� ���RiǮ��/�!�g29 鲳 �x����y�Q5��� QL&�R@��#I(�&�QsV$Au� ���" ȼ��q���'�?��?;9���� N���>Aa��CҬ�������ʊc��cy r$�ɉTe��R�ѸPg�����R� Gy '>I�L!%�H$�a ��gH4�K@�K<Ǚ珋�E �? ȢP���0S��d4�[���y��ґ��A�I�Ѹ�Tϐh.-��̗x"� �����dJ���ƅ�8�AA9��AAA���Tk~~�A��`�Ϸ� �G2AC|�ϥE�yOAA$�{��T,Yt�w�{�L�&�b��u����%4ħ.�!�\Z$�7�DxQ�������$Y��;����o��/A��Oj^U~d_�s�N+Vf��g� ��ut�L.p��e���) ��i�)i��i9A�ζ���ɭ\f�8v��Y ӊ���ݻ�&|�ǬA�-�Yz�������m�X�45� /C���a�����Mܺ���j��B4�?�P��~"^���L���h��si�d���%��-�� ���4x��/�̵C� 72s�U��e�!:x`���V�]~YF` ��\��c�#D�m%%�iC�D�׀�GhuZTn!3���G��� JkqY�id�w]�j+����w� UFQQ���%�#��,�D���c&CG#l��%4ħ.�!�\Z$�7�Df�q��/�|�@��Mkm������1V����=�z�H�)7�~��=տ�-�؈!rAȍ��򨻻�e��x�D u6�r��_�DOL���U2����b�wO�K�W�=�T��䔧��e`�5֚B�1K6��R��R=����������A�lV���%@�j5>׾1 |]�; ��Q�^ >�.5�Α�3C!�z\��F�aKJ g� S��~W��k$bժaě�ya�?H�%55˳b޿*����b�G2AC|�ϥE�yO$R*�S^�������[��n�%�9��;������E�^V:�."��1)&�r����ի��2$��/efN����Ǔ�+,9�����;z�!��f�x��4�%}��ꚆS&��(�m�nu���iu�Q�L��s��f�Q�RK�2�WT��T.+4:��r��^��iC��*��� ǧ��*���b-J��F��K�P�uJ�L����l��v{C1g;�����D�G2AC|�ϥE�yO$B{�m� 2>GCS���������)�P�O>�ӗ��g�GA��%��� FB�#^V�H�v2Sn��9L� R�ɳ�F3Y��<~搟>���z��� M� ���i"1��B.���_�Z ۻo���V�:?�$o{��)MG�=|�g�?H�֜]XZQ�'�����u���R��j��V�)�"��!��w���zx��1$�'� �fH<�I@�M<1���M�/�U�L�y�C[�P M 9��nX�G�,;�!i�7���V���d|�aߘ�`���{;�=�=�a1� 1 �]p��P����P,P���� �)��ۣ,�F{��eݝ>]޲"}��?���D�U?!��zW��diFb9!S+�ya��Đ[�!jksq�-)���t���s��0�d����E3$�K�$ �&���� KJ&&)Ir�EQ]��|���s�� ��F����e��k횞����rs�n�q���?�NK{�=���#�q&�@�#CEt4i��`���%�U���ޡ.XR�!a¾��m�o� DJJ��v�}���Rmf�I2��=½ �˜c3P����'� ���PH��m�� mnG4�I����5�}睌 I�����p̵���<�A!�E�fO�c� ���RiǮ�V[d�''� �h���qT� p��Ro2U1'+$j�ɤW ��x$4ħ>CR�1���vD�����gAA���4�����������v��X�����3�\|������R��Dh�u#�D.��T8�;%�'��!�b��6�#���$�O� �3�!��@�E �� 0��3�/[�3���:t4/�c�H���%4ģ>C|C���A@��.�!AAq��p&��/��~ AAA�AAA�#�~ S���Y����� ��|k���x$4ħ>CrCV����f? IQ�� � �T�*�Œ�����T�f�T:�L��� I���6�#���$E] �jmKWT��T./�P㩩�p����e������Y����J{M�� ӊk�ˬ��r\ �{�L{��I�C��^��b]�9� "��� ������7����$)��B�z�C�K���۞��x�ε;� ��HW[��r��;R2�m��޺��D�SZ�����fIc^�!��x0@��K��|{�p[�c� ]�����#��1�2s�U�zƂD�׀�GhuZTn1�;�ر'f^��D#�h�]�:�D�N�H&h�O}�X����f? IQ���L��7>��������c7��$Ҿu���t�l���_�`�,����t��!@Y��ѧ�z솓��}������'H�����t::�e?y�]��;�=��R3�k�w��瞃�������� �Լ*�JE� IDAT}UeY�M'ޔ@��� 2,����2EZ�ql����аs�FULu��V�����vUmeEEU�I��WU��K_R^]S]QlQ`(�-�2/Y��ԢM�_VQ��YX'.s��h`������;��#u6�r��J���Guz%�F��g����cO a���\RS�<+�k*�����G2AC|�30����܎h��u� �'�����v=��|~���4�P���/w����]�]�T{��=yMa ����ټ��;#�mټy��'��r����]���`��e��͛�z��r��}}����z�����seޡ��g\{�z�W�ܵwn\�S��,h|u۷o�����Hw��B�Ѫi U�!aS�� M�H$"��|�Oa�Ɉv������ 9�6��g�f��o]]�pJn�a�R�(�m�nu���iu�Q�qsW�����c�1(3s��]=��O )�����J�6��.�G�ӸC�{� �$ņ�n�$s� ���tX�[<� �S��!:�3����$)��:~��J�W�x��7�(XY���7_{���ՙ�����������iB�������@f��`{�)Ș���%Y�4 ��f,��;+ӸCb�=!����r��\�;�e<� �S��!����� �P��q˲�6D�m����;ο��SnfC��<|��O��e�����\ �P�����r��9���+~x� �Sd�T�1b�G��R @���$p�hA�A��AB�4/���� �A7��Z&��oLS�beM����v����P'����qN ���l���@�u��GYb��6FI�l�+���cOa?�Cnii�)�k�)����\��� <� �S��!�� ���vD�����g�`dd�`4��t%���0u��Mg�,Yy�%��?�{�]7���H$ 0��-k֬Ys����ꚗ�����O��H���פ8�G.-o{��3�\�l3GGR��Q���BY$HTi&���������o$r����r�<9�e����<�h��]���74���"�� 'J�N��.[e�۫�i�}�M @�d(�]P�NC�;D�2�M��C~̱'���B���d�������#�[� ���PX�hs;��HR��3t\p`�W����'#_k׬&ض�����߹x蕷���E�Cж{�~Py�겱`��~_����[���g���f?,?��6Zz��'?�HIP�3s��5U:8�~�u�[>��/���R�������#A��Q��[U��?E�t��?���k�v�����H�X m� dr9I�X����g�t���5�Q�q�Ju�7����`��������y�(3�g�� �8\ �{������!�m9���uO��%4ħ>C= _���rnG4I��x�� ��GT��_}�E�@�˷���>���|���.�t~��:���� ���Rz��<�}E�o���{k�t���9����\��� .�����gv<��{����Ko�扇^��g�q��7�*���=�xΕg�|�}gE���r�]�5$' � �Dj^UY��*� {:w7�Ś=��iXR��*%�h����z�㠪0��RΆ�Ζޘ OC�����6`������O̥�w�@_PSbθ�nzб������VyżC�A��с�NE)))�����۷sHI��y&�hw����1�f�\N/�{�<� �S����.;�@mq��܎h��?�34�kv�:�;A�FII���k/�y��B��͞:� @*me�Ҏ]���k��`Zȩ���<�A���Ro2U1'+$j�ɤW ��x$4ħ>CR��������$)��BA���?<$ͪ��������(1��.�#���$C]DC�1t����n�����<�޾e|BA 3�Z%���_R̅V����96��^n��iI�uz�|%��P�+�TX��%A�KG#,0�7�d�J&h�W}�8%�6��f? �P�"������ei�@㛏����'٫�~x������ڷ���S��7@ZO���kז��]/my��F<�AD|H�ͦ��W-Q���lEyf�L*%�p�����R�U�G:��y9��nnc ���Pc̒ ��T9�T���n���A�F]�Α1}�Q��3�~T�W�O�K ��f� ���4:"��Z^SSb�]k�l<%4ī>C��S�vD��d��hᇬ���U�~u���]����[/)�-j���~¼v��s.��醌�2 ����,�����{Ά��{Y}Ad�(3s��]=>� _a�Ɉv������ 9�6����f��o]]�pJn�a�l2�"���V�X��V��d�!�Ё�;H h�xRn7��˕:m��]p��2kYMMuueE��:nB/�^��1:�u��pl�t�G@�d��x�g`�Srj�܎h�� u !ǐ}��>�1�?����f�c�^�@��=]�����% R����!z۶����sc�����z�)�@������Q��ܳ0A���)7��m� #�  �u!�h�08�n'8�=�(���)��s{ZO�y�Q:�&d ���Ĉϰ�-�2�Ihw7c�͕s3!�Ӹ��B�4�[�{��]�Ӹ�����!<��JH@�d���r�.ɩ�s;�9H�E4�C�sW�������o9�PFE �v���{��?�\w��?�P={����}���(�d���ں�iJȹO�� �w���l���@@�'��i V�̡鰷��3���p� �Ďg��Q�X���Q�27����������U���s/ GP��0���͝�1�[M1�SqJ&h�W}�ƌ�S��vD��d�)�!����_<��/����=�ZY<ٱo>xÛ ��V��翺��=׾>DQT�+7_�|�l9� r����� ŲU։��vMO}}� }�9O7ڸ��*ƃ3��@�d(���� m.�6���|y����JD�ʘ���Þ0�{i:�$�T�.:�|%S4�J&h�W}��\�S��vD��d��h�G"����$(Җ�SmS�l��a��$r����G��py\./ �@wk�i�=���n(Xw��)o���}�Y� �"&е{{��GY� +�}ߴ���$�\N!�eqy/7��������^X`�DY��d� ��DmNS��W�K��U��o.�s/MA��XO�׽��n��'��@� �����T���$ �"B��{��7O���ld�?�e�Y������k.z����_ ����/�:Z�W�����i��Ϟ��wF�����.�㷯_���;^x��A��"�� ._Qk�{�-ͽ�9vj��Ԕ�%��nzб��������Vy1#=����jIG�#m����f��!JFBI͕�����?�v����'�Tsl��� 鲳 ���饱�u�8������2 ���8���A���?(�����s ���VV*��Ձ�j��,�1�j�x�=I��I�$@�2��Fl��� r������YU������%ư��WC� �1Go�����R� G�Chl����8�<\�,Jp�A%������1�j�x�?�t$<>��؈��AAD\0�9 A�O#� � ��� � �'^� 7���$� Y���y��i��x�5�O���Ⲏ � �/�j�,���:}�6b���Huy%9d��m4��m�uϷ���V����L]��כt;����;��7�s��.�;e�*�q�����~wc��o�λ��/o]�֕���ԁ� ������� �:2���Cg��UD����iy��%Uv� �����(�XKV���R\����eV����/�*1�:w�� ��f i\�2+�r�7@��K�#�{�bl�+\2�8�����`�f����H�a�l<��CG4�@�������Lr�P�]�T�.\Rx<�����93u�~.J�u�x�w�n��1��s�Ȅ�ۜNgWӗ~�+ '��O��w7������au����қ?�q6��" �����>��� �� �>��c7�l�Nu|���/��0:U���/o=@rޟ�N�����iߺ��v:�6~���Dp�#����X���kk���� � ��H4֥�U��5�ˋm�1f���QWgSS�����Tg+]QYU]��������$Hͫ*�ҥ/)����(��0�g��,_YjѦ�/�(��,��BSQ��i��i��RLlY�?��+4�Ԑa�jZ�ql����аs�FU��@Н��Z^SSb���Ye�(�ihj� �g&9i(�.q�sZ.ߺ�F^?9���93u�~.b}N/��j��?�y��g��L�L�x�ӷ�n���Ɵ���]���ԩ�c�.��O����<�Si}��͛��30�і͛7o~� /�uN�_�k�̞ۜ�l޼y�]�6(����;�I��ˮy����Ǟ�f���wY�����G��P0� !�$�%/��߿�n���+�i�X BF\���w*����TWWV�-��c�k KNF���n玆�`ȹ��5ޕ�l�����kN��2�W E��ӭα=�.0�"�?��p_s+�UYS]]���njabIPn7��˕:m��]P�!� 9D"ljVq�I�D�ry’Ӳ/D�y�n:;�t�G@�$����3P��䤡d�ĩ�i]�d|��y��T����ԅ���aY�$I4}�� �Su�յ��J z ��+_����2Kj�s�����屟?���bK�@�k[뼵�_Y�kxo�։�9\ֹ�w���e��3-��m�:�~�te�F�|���>Wg���5���h���;ߘ>�*}j� "� �tB*�I!4��os'�L��qw�Di*(η�c���Baz� ���傃� ����b��%Yz~�j�y��0��((��7v�Y.I���-�2�Ihw7c���h�I�,�r�V+��!�$c���%����!<��JH@�$�թ�3P���a�$��3d>C���A�pހ$�.��� AE�m[n})��o~┛�P�'_{�����T��h��_����)9kӶr� �p���K�\j����Qp��’�� g"�$��@[WJn��L�8;;���y��P���z�p�p��R�x���i V�̡鰷��3������XpE�ҧ��-� ��*7i��.�(@��Q�X���Q�2WØ �A7��Z��u# ���j����4�{�.�T_@�d��x�g`�Srjc2F�i]��p� �ɩ�O^���� �����:u��Mg�,Yy�%��?�{�]7�s(/o���xa�W)x$Ň�iR&���"�(��۷�Y�f�)����k^>�"d#�׿���D��� ���߹cWSW@�_`c)��’�����rs�n�q��{��ڇB��=g���P��K�D�x� x�FC��(P�����r�<�,/%*�٤�|7'�d�$�T�N-�}��)��%4ī>C��S�1"N��%�[O�ON��~�"�W���W]��g�={�idt�;����ׯ.����Z�~�I�h�=��+��nݪ5P�op���������X}���{6�OR�֥��ׯ_�� #d��~��s���ln�q�5l�p�Ƶ�m�wyA_y�겲U?���kO\Q����C�F�Q�g�*e$KE"Ly�/.QV�5�tr� es���5)K�L.' � ����Q��Ƣ��4 �D�nP���Ɠ�v�?п�ޝ����̙Z�D�b��##c�K� K��H>�D���T1���pB��@� ���TNɩ���u�­'�'�դz"��E��(��W�c�ǽT��m_�]>E�ݍ9W�w��MW���$����s�����܇�o�k���yc��k���##�d<����GN=������������)����=��}@d���Gﻠ:+%��̕'?�5Wm|��+V�`Q�������x�%r�#��/q=v��-� Pq�VY���"�X�mf�F)#�c#�m�cqv������|xb�t�h���Y���#���X3 2������ ,�:[�{�����Ⱦg��չ���>Uam��7-�ܕy��F��N�u�h'���%��V�kNM���1���m �pJjr+m�=���oPe[Q@;���2]va�9UΆ�ζ���ļ��X���@4����q%��Q5���An��6Ю�7�E�1�f���L��� �t�SՓ1"N��%��a��3�w�8��~@X? Ȣd����Ƣj���1H�J[Y��cW�o��Zl�O�Dl��L���I�*�ɤWƞ�� �J&h�W}�8%�6&cD�օK ���������E��AA=�xH�UQUYYYYYYQb ;] zJa�?1�q� h�����R� Gc�E�%4$�S.ɩ���u�I �0����;d�y��Y����,J���L��y�Q5���[Y:7^�� ˍ#�$��'cD�օK �����Wy�L��� � ��Ob&^�BA�3$AA9>��AAA���Tk~~�!�))r�-?ߚ*�3� ����ܐ�aq�z2F�c}F~� ^�㏈ѾbAA$ �T�%]�e �&�b1�t�#��!>����9,NQOƈx���Oċ|��"�W|�q���~�駟~���.����w�t�u�6����۫�P����~d�i?�{�so���_A�8@��.-�����ZQ��O�%5��n_u��-hr+�5���oӊk�ˬ ���e�\�$ͼ )��F"Q:����H$���y$4ħ>C,��)���uNI* ��������/�}� �zʍ��������/Y� Ƴ~�����_x�5��;7��K�~��^}�ֵٱ�O�8<�@ZO������w_��۪8��c;�L�G��'�^%�W���{���_��;�����彏?�� _Y��X�Wn���_��t�����':�� �� ���CA�e�>��U��bJJu���Uյ�j++*��M�Լ��,]�����b��Camq�y��mz����l���1 IDAT�:q ��Q�^ �ѥ��G����86���th�9F�*�4��ٔC����H������fyVL�T��55%f�<� �S��!U��)���u>u����S=��xmD ��7�Y��}�� �/���R���~�7�����n]w��x� ?��y��%�~sٹ߽�� n���t �����g}���_k�b[/����#ߛ2�Yx��?h���Ϻ �����O~�k� ?^%��?��x����>��']g�wU�����O:��g��q�I'�t�I��Г`0A4���~/ �T�U��@4��’����۹��7r�mv���+�fI�������,�x��Q��:��+����^9+c�'(����TWWV�-��'�_��ftz�R� y� �ѤT!�H�M�*.4)#��\o��23'����o���/�a��- �\}B�n7��d����g`�qY�����X�Sn=A?9�㏈�F���.*�ꩦ�O>���G%zhr���߽���=����pl�K\_�a�P��Շ�o#���ZNq���'�z��m}��ֻ^�����>� �z&?�p���m�������߿���O=s����.*r}��^w��Ov+�*J�=C��3�� ��Eb.�)�3c�VG{�̏ ��:��j4J @p�{ @P?�S�'�>���������iBv��?zw�@H����|�{o@��d��$���������@�$˲�\��J$l�!�d2Sn��8LA�h�����r��\�;�e<� �S��!N�Sԓ1"�|�­'�'�:ψ�mD �L�y�C[�P M 9�M��3�x�]�9�i�O���R�x���Eɤ�X�� ��Ѓ�탄Ti*(^���cLA�}c��+sh:��h?���=����b�P���t{�8`U���GYb��6FI�\:8]�!�n�9 �L̅ߤ6;[�j>��VX� 1�gH���\a��)���t���s��0�d����g`h�XP�Nmq�zRG�0qY�����├�;d!CQT�+7_�|�Q튕�~_����� m�����$%OH�AO�GbLm� {X��� ���m�^x� ��8kJÞ�����H��\����>N�R�4JE��S"�P��a��iA$�4����F�����h�^ã\�rs�n�q�E9//���|y��9��񔂊��P@ Aڜy7�H�r r�<�L�$*c���{B �R��+�V�jQk�����$����_kB���R17�"S4:�Z.���L��� I���'uD���'# ���{ n���﫤�����%ْ|{��x��� �6���x� �(�P[����T%)�@���)���c��@x"E(xH��ό��h|�e˖mݬ�ԭ�� ���i�ۖd[���'�uN�O�ݖ�Q�ӭY]�䵝!�,�s=^  ������ @M|�W���[��/��������|��s��<�W��|���V�<:L��¤sp�~�g���2�����OL:��o����an}�G���O���ռ��,}�'���O���2{N�d������͍�i;��Ҵ�5���G��v��F������oι�C#�� #��^�Px�c� ��q�z���$A0,KA�U�� eu�l,I���=ȕ�g�*R�����k�4@��s[�2:}CD.W=}�����M�O�����˧V�E9�~���F��엥����e�r��z����Kv�k����z�s[{zD�t� �|Y�䵝!?^Z�N�3�6��?���/�ĸ��%����_�u����;����~�昙_��8~����\*�S��k��)S��������a�������m�������y����o|w������Ϧ_������?<�ß��?�[����������47�Do�P��Տ�ʟ���'�M3����w�9�1 /�[?��W��#�'����v�x������U��Ff���o��7�l�ſ����?�z��^����F�7� �P��� �y���v#MȍZ�h'vXnq��q�?�jNxU$����8(s�'a��Z����h}}��{:t��&?�8Ŀ~�����5��yw�;�;� ) �\"����|��*�j�E� �E��������؂c!�����X�rz����l�!o�N\\5�x�?6~��z%KÅ1���e���D"�~�X�s$���dQ���F�iU�B��-tHm��G�:{�[�<_]�䵝!M}:~��o��?��?��?��}u����Bw�-�@!� ��J4%����4/�t���n�6�v�4�����1���K&����Z.�����n�q�L�d����_!�9�ZO���ѻ����UK^��z�������ɟ��!�n�\�fh��'�����󏦜|2�5��p�T��Wب��~�s��hB���"(���oh��JvH���Z���#�L��'D3�j�k;C�n��E�N���I����E�� U�F�]����A���R�owP�$�}]�iT�J �C��i&��U]�䵝!!�Bݥ�-��F�}� �["B!�BH/? �B!���7~ |����z�u�a߀��i��0�V���^��HB�UW-ym�D!�B=�s��9<�!s���e��qp:v�Q��@Zջ�{M�# 9W]���!��;L��_,=s�t;��@����,D�OX%������>]�0�5�`�_Z����ӥY��&~Y�5po��b��=u��|0��tq~n*hc�\W))��Z�F�6���t,��(�a ��] Խ&ݑ����Z���B��{�G ZOpB�k��l/�6� J�m�^�����cu:��+EA�&3�I'�W��d8�-�k"��9�g5C��ix}�h������ ��7�����48��^� 1�g�͌{�$�4�����ܓ����1ׇg����l��&��^(��P�6� ʀr�e�e[� yA6��4���0ݘ���_��z˫R���K���k��0�V���^��HB�UW-ym�D!���5�Uֳ"x��t: h�����Z*q\�BY����R� Kv�Z�7�!�`���zU��_@P&Wd2�ɿ>T ��훗��@�޽�+�.���5HI����p�/�$IEQ�l�R�R�I��%��S�7��" �t��vK%tӹ�!�ͷy���D3���Q��@Zջ�{M�# 9W]���!��{�54�7����]�R��{<"I|1�S8ۮ|��N�Z�E��?�Gي��* (��QET@,eks3�D�J�`��5���&[}Y�,!e7�gh!���]Oo��c�H2�?l�F|}�(���t��rY��56==��1��(�a ��] Խ&ݑ����Z���B���io��a��d����KKKOBV�uoi.�>وu�l'��_�|���n'S�I8�`�6��t�$��'��4O�s�J1s�Wk�@`���˲�p���n��x��g,C.+#K��0��?�ݥ��@�f��)����F������O�(�a ��] Խ&ݑ����Z���B� ��F�Ü��WKn+{/���?2���͇_m���$ �aY��+�z�_g ���\�L�(Rf� W�T�R�r{���5�4�#(���"��Z���I�7l=IV(�o��m|XM��o� ��2�O�jb���6��.�a ��] Խ&ݑ����Z���B����K:&�?�֎c�9��M���>�=�{E��͍�� 7�&ɹ��=y����P�ŶS���qSd�Q�V�rz+���;x��fyI��7~8�*�|r��lPШ��"#U�.E�G;qsd�����Rj+���[�0�g�,---//�����!u�H�:� ��9p��x���z�@V�Z��5�$�����KK�Q=�ꙩ��h4zӭ@u�-�@!� ��J4%����4/�t��I� :�f/�o� c}����rr]��ev�\vS��)�:�޵@�k�Iȭ�'B!��!�������������)'�Lwcz ��Y��g��^l���?�hB��y#Ų�"�C,�@V�^��5�$���]��$���Н�(�uN�s��^l��.�t~�+5���" m������ Ե&ݕ�ܖ|"�Bu���ɹ^J/6� }�B!�B�!�B!���_8�w���c�p�7�*�V��w-P��tGrk�B!�zJ���sx 3�[>��R�u��2۫Eht������j�VǨ���] Խ&ݑ�ܚ|"�B����b�\����q����7/k��79r��7R�_dO��I��3�J��N��TSg����T���LO�Ϸ� �k�NY�ȗ��JB_�-Hgh�Q�\ߪ�������s������ݫ��"7�.<�W���zOZ�:�޵@�kR��K|����mlg�!�B=3z2�e���*Wite��.��Q�䊼�h(I�_�q�%��lݷ�m����ch�y����Hs�'��V�4r�b!��y\UcO]����3��47(l�'�}�y�����R�&+ ��e%hdZu����n�m�����n ��Y=^) @6� N:��6�L��2�#n��Nx}�h����br���S�V��@V�Z��5�����5��ڟ!��R|eyy��QwFM����T��Ks&V����q���_�g��H��<�vP�'_o����M�]Yy�5���k�͛G|��v�vS�&����K% h��,�? �L���Ņ��G3��i�W��e��5٬�B���R��AP��c.� ,�ne�ixd���_��!�����y�ޅ��J�b>/�-�]��a���^�z[]�[�ή��B��@�Cn�ࠃko���@9܃��j��Kb��N�m�� ՜�_K%�+"�X(�6C�sY�d�.U ��4$L_=�X�z�(��b�.W��ѝ��������� {��B��))��=�;��#IRQ�5[���e�l}E�q�z����ޮ�׹�!��w%�ىf����] Խ&���~���]�#�B}���f'�|��xs/_i���@X���^�%�|�j��=�$��)�mW>�p� �Z�NJE�SmrE&���F�!��`�?�V|��� �)_�`�Azn��H�e� ����,�!�3�Ik0hJo������7�r�NOG\���]c�ӣꊁ4��׽@�=�~Iȭ�'B!�OH��#콎��><���f� ���zYw�v�����W�k�v2�����!��Qܠ��(b���p�-����a�z�T�s�J1s�Wk�@`���˲�p6ʤ8��e3~���6����bii�I�J��-�:�������m6��y/H��fk�Z���iTׯ{�z{D���[�O�B���4���͜� S>l{W �aY��+��u=�J7�q�w�e�4:l\�\h(���ejE�2��r�Мӥo��okA�''߰�$Y�l�!"��a���;>� _E�2T�^.�5_b���������/SЍӲ�X�r����iTׯ{�z{D���[�O�B�g���hi*�/�;~`�kj�u��٣���U��?���ڃ��P$����8(wؤ~���lb�1>��Gr�V8�>�@n?nG.0�$�s���a��q_�5�K�Ʒ����yV�瓛g��F�\���KQ��h<�eiiiyyY�e���D"��c Α�CLǓE��Z�4���/Gtkrm��0Pӏ����z&#�3SSS�h��[��[��B:'܅�hJ M��i:�"^��v�5g���-tH�^�j��Ò�օ1������r9��� ���r�M-g�hҨ�_�ѭIȵ���@!��ׇ\�fh��'�����󏦜|2�~����� �9�z)�=�K� }��b 4! �����bYZ�F�!�F �����ݖ�\[;; �t˿.Bw^@�N��:'�^�j��Ò�օ1���q�ߝ�R$��4iUׯ_��$����a �B����99�KQ��tX�_蛿�B����7��B�:��!�B!��u�XG � � K��a��m�Vu�����#�5 ��vv!�B�T�i�L<�_|�t�����,j �J8���Zbm��v�e�[ _"�6+ }շ �� Gms}�B����ҫ�7��_���l6�H#|�񃁡 �tE�*�"�1�ؐI�@�d�!��*�����wo�=�B��r�{o*rCZ��U]?�@�i���.����~[rm�E�v�Y���Buх��S�xd�f$�Z!���<�����kTNһ�\�>���oTG�!7��4)�Q=x���BO��i4�`�Bbc�8ƞ��q��gR�in$0P�ZO����e�H[ `�ď����+�6� J�m�^n�[�}�Ng�x�(H�d&8���*�K^B� %����Ts�Fs&V�nl���Ņ������X��� ��'���f���T��ܭ�-�{jq��_[��~Z���I���~igSQ݆�� �B��q ���)Oȯ�}��*�(�6��\�J.��I:6�2xF������gk�z��F�Y��vS�oWV�e��~Gsd1�ݼy�G�o��i7u��7�U�L�#����'=R�vqqaa���ٜ|�y�fgM6k�P쫡m`A����$˶Z����}�4X�ܮ�A�8�:�3q'��x��F������\`����e����j�|^�[~�͗�y���F��~Z���I���~ig��I�.�����C"��: �Ll��f2�l%�eh�W�G�� ��b��N�m�� ՜�SK%�+"�X(�6C��X�d�.U ��4$L_=�X7�5�Uֳ"x϶U��_@P&Wd2�ɿ>� y����|B��n��W@���(k�Z)J��$�r��f�@�B�v>}t����4d�>䨥6�5�?����{�T���H؛y{To�I�3;�L뗥�^�ݿ�Fu����a��%!��Φ?J$� �ڽ{6��R~����KK7��P�E��2����=��?��Gó��^�%ww3�g]\�T�D��H_��ζ+���u�54�7���z�(𧓣��l��q �J�`��5���&�{U�,!e7�gh!��٭��a(2�� Y��v�rr3�S]��z�@:|ao%�:?� IP>�� ($��Tj�[ ��D��&Qi=�� �G�'�� S��I/����� �4��H��tGr��)�����~���BuJ�����d�MD��7�Z3/z�u�l'������{�d1� �IDAT������߭K���h}8�E��u��T�s���qR���h핉�,KH��� �u�(�9h���BsmN����3�Ιq' �Y>�q�>x�v�h�V��JV�Zm 8 $7���s�M��v�����H-6��m5&X��6`h����iү�&ݑ��K;B��3y#!��Đ���"���� �% � �NWZ��\>�/���˫���BY].K$cqr�����b�����Z; P<9���V���N���}Xm�OFƦC��V����nQh�w��NZ�N���%H�Ԓ������f�t���y2F+�j~o���AL#۶= ׷Z�X���/�Ai��&��2��e���iү�&ݑ��K;B��k�+D`tj���jn7�n����Y�r7����)}˫nT�\O��= �"�������f��,ɹ��=y����P�ŶS��ˈ�>��%e�[�X��<����̓�Q�V���T9[Nв� �z��=3�������x�������rgǣ�� 8�t<�~�W�:rQ'�DN�r�Fu����a��HB���!��B:'܅�hJ M��i:�"^��v�5gݘ�-tH��L/6�Z��X�}���r�M-���.��kyUD��~Z���Iw$!��N�B���� ��d~~~~~�є�O��> ]�Y7��g��^l��}���X�VD��b�E1�AR�h�U]?�@�uؤ���~i'B!���uc�s��^l��.���{\E�v�m_֪��F �:l�]IH��!�B�r>vc��gz��_\��%���[R{L���wO�{���C7{�}��~i'��n�\��!�B!�p��B!�� �c�B}�q�]�q�(j��2�x��A���Wz����p���w�H�+���+=��ޙa��fF��)��X�g7�be?���Ò4YG�̙��vp����د�I�o���j��� ۩z�u�S�Y�>ӳv"tY�50�XY��O�bG�OWK0�������ٝeL��������OBOf��'gI�w�cE�88 ZXB�哱���|�u�B]j 85�7+v�ͻ����Օw_~� �'������l��Uk󹽘 �9��ɬ��@e�6r�[q�^��߰��T=�zv�u9K��߁P+�34�m�oUH{xz�_z�w���!�!��q��{�G ��UK�]?��h0x�j��Bi0 ��J�D��u�M�lgoٌ#2n�����}Oȯ�y�فA��B��e�\�1K���w�96;�/��-��R-I�"����hY�|��GO�g�����=��sQ)����Г��Mn7��v%f����͜p�z���L?���;;��И��n5Z%m�����N�b�nPOH�̓V}��g�|�2f�b�_�����2���ӓvS����k b+m�F��`d6�;y�W�l�.����m������F]�zz�F7xF���˕�l�O�6b��}��Dt�z�6� ʀ�-$v���g���"3OX���`y�U��<� �vqXQ$�V<�ǎ+2M3 � O}6V��۱t��s�>�����l:��B���CE!���411��d>I�����Y}��ٳ�GB=��ٳg��w�-�N4�� V�G�x�`��B>S�@r�c63-��V��q�I�(ȲX>��JUoţRk��qET�J�, l�b&�,�d� Y�O���Z�l"��{㮖 �������tM�\�ȧ�ƥ|A�d�Z�7$Y"�6Y��؋�շ��,��R�a����� ����µ߸^��V%��n�O�����NR�?:B]B���(k�ZM���$y��n�ә����*����,U��_�������Ƌ�Ѱ��V�r��勵�9j�������D" �ݻ�0�z�D!tJ�L&�����K�o��,I��(�,I��l�ql�8�6��b.����)@��357(II�rˮ�jI� ���wՓ�ζe��{9H�5���]��܌���^W�ٹ��6]��W�$�~ C��\|�J��J���<��5��r����)�w<��HY���7I��߇�����������-�������I��� u����dY&B�n<��B�?�sCCb�͇� �54�7���>HdQ�O��Q���8��J!uT G�ڜ� ���:��d�O�O��,���~�!����J�����A�l�������XP�~�n�@{}�jIEQ�C���Ć�(�@��;�98vΌ;Y���鍃������K�e}��sc 5�Ph��*��cAJ��%��YB�g�3�k�+%^�:��{��KY�j��Ô3[o�ɠ3����BOt��[���N֟��n^��]*z��d��$ �, ˲��a�+as �鵳y�&��5f���n]��F��a�(�l.�>3��s_?yW�s&ߊK ���7r[M ��� B���z��Z�F��c��--��UK�kU�ch�! �䞘����S����˰&#�r�g�����4�;�b'�:��^���$Y�ӪT����&)�H��Q�Ջ/V����€��?�!��(B!��� 3#u:��7MR����%�S]= M���� �% �h��]���)��p�a+CQF�o���N�+�v����~|7��\>�/���˫���BY].K$cqr�r@.*V��L����4K��[��/!�P?Q��_�4�"0:5bb�F5�K7@L�㖱�� MH|>�]�����6'{�-OoΣZRL�c����K���~s�Rv�9~������V+�������TP�o���s��]���ȇ�*�&��;���G� ��ͭ����j��&{�q�>u�Q�g Qͧ~���O'���Nj�F�0�qݛ���7�|���\J�N����bI���'��F�QUOo����A����(_Lnn��SW�S5:B=%e�[�X��<����̓Ӯ>iw�+��SP����������r.���?ގ�"����—�[��>4�0�W9�B��"���ۍtN,� +є@�3�t��7 C��PC�;3/6�7r0���B]����'�����GOͿ�"��ۗ�����E��G�7u�`���B!�� �O#�B!����B!�BH���줍F��IEND�B`�btop-1.3.0/Img/tty.png000066400000000000000000004311121454653170500145350ustar00rootroot00000000000000�PNG  IHDR��t sBIT��O�tEXtSoftwaremate-screenshotȖ�J IDATx���w\���wD a�H������R���XԺ�T�����(Z+ԁ��Z�Z*�j�E� �(�!�$�?�~Q#& �{=�#���s��i<�������NZ ��(���&�t9��;tгi�5�;f4h�����=�H�~6hq��}��r��W7�K����������=��c1:��>�ϭ���n_<���C�;��C�NUޮR�` ��Ks���9=�jY� � {�Ǟ�#��C|��*0w\�l���, 8�����M�]��5�c��vF?���ێ)�D��k����o?Shj7��o6Ǧ��ܝ��]���&�`��p�6]9��S}����'��/���-��̕��i�NL��!��W'����7����iWͱb?�'"�����s��4l��^a��P`n8G�]��ї��|x\G����/ �H���~7���j��sd�eGof޿u����������hX�(��O>����`����1��ܻ��;�_n�i�w�ү�� n��q]7�����^!�9��0��}?o��˩�sIOH�/4�f��ܝ��]��A�����g�<|�F��gKN>6�#"2�~ �fzV����w,Ҿ�#z��VMFSmhS�b��ܢ_k^<��1�{����B~�r"���v�Y������'���#�`��Û�� �c˖��ZktمR�6�6#��_��v��~�����Y���Ӳ��KgS%����?R�Y�h���h�1��L��J$*)����ޗ\�Jk��@;CN����M����,O����pw��<�L���./�`��W���W�� [n7�V��ܝ��]��A"jcg�����sN��r��m=~�~����o��a�-m� }gץ~Գ�.���øR!��#�F�'eg~\�-�M��y��M���]� ����@�N�mN����"�G={�P������j�s���}�v�#"*?���-�5'���3�@�K��1O���1����}θ���ҫ?�V�����?wGq?F��?۬��FR�TC׀�M�b" ���|q�Ϭ�>���}�ǟM~��[��R�ު�i� �SU��3��Ư�T���*��?��D5 �o�[06'tG������l.�-Qm�fU�����6y5��:C�=�n[= *|��#|M� {�~�S��%jq��.�5ԉ�b1��^[����DD2���$ 1o8��TJ�)Ou5"�䠔���ޖ����Cjkj�D���D��4� O���"�滿N��X���_?x8�V��q~���>�`�F,&&K���Sd4�QMMM�'�^�xHU}焸̚�%��^]�Jh-���di|Ѷ�N��R�|���ܝ��]��A�đ~+Bۯ�l��e��G���{K(�%[s��v]��:s5)ER��~��G�/�x�����<^����������':�o]���s6�Mu�L&�_d4���ȳFLT����?\��R'y-�e��ㅽ�S�|�Ur�k��k0x�慽��[=~�-$���|b��3&*��&���i8��s{��_�L����0�U@��®R����' u��S���T"h$w������xw�;vُ>������G����g�F���dϬ|�W��v��$�/���mcIj]���ᬫ���귬۷4q��5�4j�B;N��n�ʈ�t�.���d�-Q��d>������ַfF��5E>�Ⱥu����1�晰���4O,w����j�hrzzzD��N_`Y�L:�{g��1�L�.jD��LZ��mj���9DL��K3�:��_o_%����}3�Jf���SMk�D��(���v��J�u�����͇*�H��"w�zEή��N�7�΄_N;?9����2��U�:i�j��a���S�[g�����'������5���kX�c~��$��~���{�j]a֙ +w�&���~��C�~r���:�)RR�����l�����4��gw��.$+y- T�'@�c0��d������_o��7a���{[��[;���{�/�IӮ$<��kYu�%�?��������}Ĺ�f{�Q@D!K�:n����W�I�d�޲��|����2�w���v�r��r�]�$I �{��IK&|��=����R��o;�A) ��|a�N��g1��9�W'�]���Ǟ ���5Q�8��P�� �Jh��������GM�ݿU�;�l�oj�����(�?���0��#��Ӹ��9s�4k� �/@��:�]�����׹c���{��s�n����i�M� -o�ؾ��ܠ��D}�=73�ލ��kF��RF�1�G��������G68}����p�������V���z���� #�ڙ@��<"�-;?�"�a[3��P���f��3�^�c����3��r�OX8�\ 4�]z����$""�N�"�����u��]��w��Xf��}'*{��\���9��pIosk��&`����>�KZ��������S�_~ms�g�kGj�d�hd�mG��Ϻ��/'Ն���3�<���M��k�~h�̾������1��>Q]�ND�0w _�����:dO\�zE�/*⋤D�D^���r����th7�K�?�q�|��*{_]3hX?���w�G�:���ܗ�qn���nf.S�3�)��^�q��D�:��uv:L�r�Z��&��c����zu��u�����P���Лvx� � �@�Wu/2� ��#�~h���\z��ϸZ"�2��Evm|��ᇘ� �rxD���6�c�e�L:P"���u>���I�1d��;�����Eq�Ϭ�>���}�ǟM~({� �ۢ-3M���8F�~��Նg��)T�ږQv�����m#���O׮DD�a�W��C�f�]:���&3:$�H�ת�� �cV�ޙ�������urT�qة�77� u�I�gOߑ��b�x���f��!23�t�����^��L5���9��S�%�{������ 5���VH�����Kq�^�xHU}焸̚�%��i������ؙ�F��}�n*����;-��Uh�+k���MU���[���h�DZ�ʊ��H!���Z3L�m�m�U���|� �ڿ�7~�P?4+����� P�����Vvm��6�=I���}�8�/ &�A$��w��߽�/ ��xD����@�Z�p7�������Oÿ8 ���]cno��K��`1��h�1栫Im��g��ӈ����*S���l��*8������(++#��x��k�_m'�.(x]2�K���y�k��W_zu�ūG�|�P?�xZ]G;���b�&���l��^���>��G}zs���$I^߻�n�c��f�sg\�w�E�3��o�$��KA�ݓ�˧;��� /T�q�A�ؘDL�~�(1���v��J�u�����͇DDdԽ� ��e�qWuJ����[s�:I>�%z���ŤB�+�s���qS��(�����6����,2��Rc�ρ%=4��/�{Or�M����o�Q�Z<��K���d�f����A�U�R%����,�1�L=�:IN�j�����p�/��)�Z�'�+c��~��^Ԫ�K�e���)7�R��j�������-Q����uZu� i��y�w�.���^U���vyK����@Q�@Q�TƠ���ff޻q>x�HS&��m���������o_8�vL���x� ۚ��=(@��������c���G d���Ǔg�G/��:��`��2-�z˰�%��c�C�Vw�Z�s�lZ���|�N��EŞ �}�� �>f>jeБȸ�����8�ZK�a1�@Et|�{�e&�w����̅{��\�=� �s����Y3�ޘ��k����u�b��0R]t������bQ��m��0�m{�����E�y���cN��D�(w��)�n���%����\���TK��r&3��3�L���V�kf��G ��濹뜞�/#��i ��]G�ҙ�y�u�����>�>8��e�I��}�|�����4%F��"��q)��5�o�Ye�k ��>FDĿql����s85��Ƃ�^�:���mF*DYԊ�oY?�q�T]�K$�%��Xv��;2b��,��Rb]�af��y�n�]�Ҭ��ݍ,� u�Й��4zku�^�.�����)#Q[�:�~N�3��ܾ\""��ln���Z*&�8q4�mVocJ+Rb�w�9��KTZZJD�{��Ͼ�1��1����J�{O�����A�j��ђ��Gy�!I�|�}��xdՌ][��pkU�1- V��<{�4���qf��p�*昩�Gu�*U��3 MNGs>_@D��rE��n�_��!J��-���}�OD����I{�F|jD���kT@y��K޺_�躦VR~��Q�3� ��O��X���0�p���q%RU���8}Q���2r�7�`�f�6��Yþg������ܸe%T�g���"f��/n�H!"b���$"�D�ћb�-i�jV?�!""��ܘMD$��s��G�S&{������ӓ�;��SW��j�m��2"b��x�|�������( �]�'�Bՙ*����ݢ�;�����2I�KO�HH,� ocEe%D5�˧�6�^eS=�)�*W=��%)� �x<Q��7 ��m����ӿ���]��G=��ȉ��� jc`�I�����ފ�M�x����j��A��2���?���uw�&�H�t�Y�<���Y��N��� 4�[zzW/[���n�4��O#��j_�]P^��V���8�@�Ƞ��J��j���7� ���\|������ QlLb- %�gى�S������7�{ﭹ�c?�!�J�Z"�2�D"y�PR"�ɨ�o�����ѵ����@�FUQ�T.�:�P(%s&CR#����d�yU-C����~uoٮ�:wߗ�q�ȴ��j�i�U�2�L�������t%�L[2������ZS��C*�)Vj|�*"[=�����a����@�U�0y-��7������Я&�%���ܓ���̘ә��[u���\�*0�d��+S������J" ���q��J#|w��z���t�&������ o����_�2�k���й�,A��_���� ��|a�Ni�b\��ur ;��,@QZ���3PUbb� �8��ϗjT �(��(��(̟h��7��Ը���w� ���z��-Zӳ�_��X���8��B��B��2}�=73�ލ��kF�2��ܞ�v�{�tȆ�VmT�c+�N^z7�/�1�0s����Q�������-X.�LK��R�Đ�&�����l�^���ڨw��(*�\���M���n>jeБȸ�����8�ZK�aQ?�����~O'K��}?���/ܳ�ِ�3d��?M=~�A�돳�p��6J��|߯�5:�^�0?�L�'�G�;l��lB_6GGW]Չ*K��r&3��A$���*��*��*�vmݬ��i ��g�vZq�f�k""j����u.�c&,>�=��k+���@E�� �Rn���~�K��Hsа~l�5|���o�TU>� ���I�y�jiU���P\^(�8�w�\���d2b��,��Rb��0�FCՙ*�����"�0$��fmy����9U�2�ry\""��ln� I-�'�����m��и����x\�ǥ�DD���q�׭�'];#YI�����N�ۋ� m���:���z[���5Dy�!I���F�U5c���W��LiM��bZ�#���� jat���D*+ͪ<��G������Y�h�ꘛ��"".�+���u�%�:^ ��@ �g��kh��֪u��qq�X]�u�0�Ri����J'"����S�9c�7�(ܽli\�T��)�=�C_� ��\���O�ID,��$�����RmL�1k��-ξ��#���A�����eG� ���eln�Y�4�����bU�[1����l��Fթ��i?9Wį_d��x�|�������( �]�'�B�*����ݢ�;���k$y��@^0?u�f'�\������Cv�����ɔI���0�@E��"�GD���@|�� ���b��a�=q ����T���B�c_IVB})�3�������ZM��鼳�yr�V󳺥����AhJ����^�����i�w�4W����� ��5�j��-0zGMUn��IN�/'3��K����A�+1����/w?�}��f�.cؗ.e�:�������0/�~�N8��oi�����սM��E��Eº)Ï�O����P�[��ޭ��\����úiH �ʽV���i^��63�u�s Y��+�zH����\ ��|a�Ni�b��h)�7��ٸ���w� 4��N�a��������^ j[��{ �$;�J��k��6�@U���3P��~?_�P-��P?��P?��0��a����h��V>�Z�E�~E�~P�� ������y����5#M�=4c�t[|!�g�J�{O��ω�Z�l��iڢ��D 3�O�9�܎���ނ�B˴t�-È���I|z��4��W��'��w��(*�\���M���n>jeБȸ�����8�ZK�aQ?�����~O'K��}?���/ܳ�ِ����9�Ĥ�H���8�������{�V�R�C]2��h��1� }�DD]uU�,}�ʙ���O��(r�J��J��J�][�� ��i ��g�vZq�f�k""j����u.�c&,>�=��k+�F��"��q)7d��f?ϥAI�9hX?6�3� �1�=�V���{?H���ĕ�Z�+����jH&#��b1I*%��P���l4T��R��ݍ,� Cro֖ǫξ�S�,�A.��%"R�����ɐ�R�H�q�h�^���J ��/���%z\ZJD�{��x��|�ʴ�3Dd4@�ٽ/� �����ӏ�x�,zvN��(2$���؈�㻪f�������)���UL ��c�~���D-���0�He�Y�}��H�U��3 �Ts>_@D��rE��.�_ǫb�R��~hd��;|U'�^bw�21�� <+fw�w��(o|aNA�������f�^�4�D��,���/ |^F��cw�'�x�$"�b�i����Or�6&xϘ��E�g_��BD� F�UIDB������[�267Ԭ~�SX���4FK�����wUO$D�O�����OaN�ݐś�����-0lEQ��=���U1�~F�e߹ռp(_#)ȫ����Sgjv"�%��]>=�aw�,1�L�T�� �T��/ ��xDD\��^�0��N�5��!�d&[�t�{�Oz�?�]�I==�w�8O��j~V���613M閞��˖9>�[�"��N��jַ��|��!Ay�F[m���@�Ƞ����*$'ėOwp��^���҃D�1���N�}ï.*5��L=�l ��k��{T�d�KB��̙ I��F,&&��Tn�~�;��+��T IDAT�e���}_��E����o"w�ߢk���n�$~�k���n�-�js�pf����!w�+5>�����Q�����U��R���? ���������ߵ�Tyrɰ�WT�ik�,���q�?�~SZ&z�5�Z � ?�>��# bBi��n�j�|K�s�>��o �j�!-H*�ZUV�y�^��<ׅ�5d ����u E���r18��Q;�Q�qE@K��^ч�l�Ɣ;��a��cة�w�~s[e���e'V�pt-[���*1�yj����K5�P�P�P�O���q�܈��b���i&����=�ՠ�/�u��p�����@e �.�{:�nf��׌4eq�N�r��K�����eguU'��贱?j�f���"<�a��VܴZ��Y?&1� �i�Ƭsz����~� �aԞI��ͣ�6f|6�/��������4}�ʙ���ƃ�A�j�������)�DD���g���\��LX|Z{���V� ��@E�� �Rn���~�K��Hsа~l2�o{�����kj����^���T�y���Keӳ�nH��GV_����< rG�cՅd2b��,��Rb��0�FCei����Fa�!9���x���s��e<���DD��{��>�Z* 2N�����X��q�%��D�KK��r��[�O�d����>g�ZX R��̱U��G��HgP�WMGV[.j3d�^�_Ay���1�E�$��Qt|WՌ][�_��v0E��������1B���x�+�|����f��� �/ "�r��ʊ�34�_ǫb�R��~hd��;� u�Onj��~�������*�j�8 �Z�TM�Ķ�W�T�P�D��ͱ�aF��eK�J��NS)�q����e���`mL�1k��-ξ��#���A����� O�(4�O������f�ӜB٧�6����g@\��B#D�Z6�Y)8����e�&��ݐś�����-0lEQ��=���U1�~F�e߹�4<��$������CFd$k��`2eR�'�*R��x<�l��z ~�u���"��IE;�/;U����|q9��ݖ���Դ�łB���?����*��J�tNv ����ĨZU'�K;m3�Д���v���!'� �,Ay�F[m5"11zGθ�:7�H��Q?�HrB|�t?ᅪ>.=H�X�3X����CS�U�;o:`�VzP�� �����T��u�%�PJ�L��F\#��x�Z�d�����޲]u�/��"� �!J���d����Ù���T�9R����TD�zNG����7V��K�ޫ�, }bh~���g�[�����hfٚt�6�EDD����ٛ<+S6����-�-ɮ�gqA��H$��2�8�D� �����\(����s]�\C� �ʯ^Rdo����)��9�a狡Й=C_�� �3���堬�2zN��L����/N���ޕ�C���e���}�����?��P?��P?��Z��s[�W��uT���妖+b�"#[����jի��}�l����:AU��}���ki?��ՠ�o] �/�K߱����O���E�?Xxo��( �( ����]��t����{7��i�$"��1�����W.D�ؾh���4B=�6�G��l�n$�0s����Q����*Ȱ�X.�LK��2���z�����bυ���ޤ�y��V���x����S��������8���t��_����,���=[� �L�W�R;�p���S6<��8^S�z�:.>k�-74��h��1� }�DD]��N�m��V�d�4d��P+|�h��lO�&"���>�>�]�b?f�����|��Rn`|T��� .冬q���4(�4 ��&FvL��ӏ�q٭��R� T�g�!)�T1=;ꆤ�LF,6��b�TJ,�;f�h4�o�����"�0$��`[�:�~Nճ��\��H�{/��'CRK�"AƉ�1z�{+5tk���{���=.-%"�=��C�ne>ѓ�{�1Ը��t��w�T�Y�"��>� zC0/2$���؈�㻪f�������)�����0- V���~� h��_��P�P�P�P�P�P��1�`�������n�^3Ҵ���!7b|�.��B;�y��|������Ǔg�G/��:��`��2-�z�0""�m��--ͦA���z�����bυ���ޤ�y��V���x����S����P���c�IG�����2s�f���%DD��|�K��"g�()�cpy���H��������~�y��C� }��F�GGWZ.�Qm�J�筜��/h�(rt,y�i��A�j���>�3;h���m)D�}�}p~�������|}���iJ ��*��n�rCָo��\�D������q�c;o�G�G�U��{@"�*��� �G����LF,6��b�TJ,�;f�h�:S�0��Y���4ެ-�W�}?��Yƃ\.�KD�޽���!��B� ����޽���T���=.-%"�=��C�ne>��u��Sn�6�6���z[���5Dy�!I���F�U5c���W��L�:A%0- V���~� h�0:~�@"��fU���#EJT��s�,L4Su�M�|��UV���|���J ����������}�픚��|��ڜ�+�<��e�҉�� z��h��X� 3 w/[W"Uqv�a���>/#�类�Gn�a+��}W�I�Pi� ��3r�(�έ�C�IA^}%��O��ى(��&#t��І�e$k��`2eR�'�P�2�����up={y�p�E�~�L]�\����Ss�ߵcs�U��{@�c_IVB� i�������_w�jR�DO�%Γ�����-��M� BS���w��e���H��S�����-d/�ehHP^��V[�n�1�;2h*�?� � ���\|������ QlLbmj�=��}�?e�_� ��Sm��M3Caܿw*��:�P(%s&CR#����|��v���w��_�[������z\$�Ϙ�&r�-�&`�8�vN��J���iKƻ�\?�Yk�0qHŝ#�J���@Ea��t�x�8,pc�?���ς7�屺�i���H��HX7e�q��J#|w�_ۻ5�+��~cXW# iAR�ת��~��B���y� �k�d_���@��uM�B��2E�;�9�|ݧO/ܜټ�$Q9>Qr�҇'�~q���i2��\S�ߊ����:�P/Q�Y��g}�렘��B��B��jM���^ zuNn�L�{xUNJr�M�-[*�]�Te�"�W���>|5ت��[u�o�b�r��P���\�$p�����@e �.�{:�nf��׌4e��+��ވ�]��T�I�2:m�Z�٢�H�a����3磂��qU�aS�\h��n�e�6�OfS�JܠU�F��d�CQ���_moR���А��\���Z�c�wd�T��?�~P���r2s��[�d���$��X�k}��c_C���~w'�N�)���S�u���S*��dHj�5b11���NK��߹sr��ɝ;��I��5?�1@T&f���`�T�?q����u�T%�L�9��FOSC��i␊;w����Z�A��9%�. �X�/z����j���o��ߣ 5��R�o�t�P�y��|��Mbч>��h�&�J���)Ï�O����P�[�ڵ��s�>��o �j�!-H*�ZUV�y�^��<ׅ�5d ����u E���r18��Q;�Q�qFB 涊>p#;��f�a�� ����� �u-�X'ǰS��n�������L�ֶy�JLl��'���R��j�������oח�;50���`���W��*@���P�P��1�`�������n�^3ҔID���ȕ��N�|)��)V�N��k��m}�ͺ�Wb���f�?�*x�W��˅�i��[�5T�4��PT���Wۛ�?"O�|�ʠ#�qϟݿq���w�E��":��=�,���|<�k�p�gC"�I>� #V�2r�G⇋�l͇�-��c�:��uV)�l�L�'�G�;l��lB_6GGW]�I*K��r&3��� {д�Z�G;��f�x�5�w�Y�A�:�1�֞��r�~P��v�����}���Ҡ$�4�[�Go��'�*jj�n�q�[v���<�;2��l�IR)���z� �eӺ��0��Y���4l��Ug�ϩz�� ����w�es�dHj�P$�8q4F�woc�����T���=.-%"�=��C�ne>qGpkٝ���`ڧ��Gw��t�Q��3m�4��(!q�(�`A�¼Ȑ$�c#��漢�kk�+[���T���+��F?�4���9f&��:�&|������*+�u��|���J �������������e#�v���6=�o�i�� �N>Uuz������8&��o\@�>���F��ͱ�aF��eK�J���R)�q����e���`mL�1k��-ξ��#���A�����eG��@��267Ԭ~�#%��ک��$�xx�[:���Z1��������I�&��rY�,�4_����>n�a+��}W�I�Pm����3r�(�έ�᡼� �d�.��0"#Y�%�)�*W=a�����D<���������3����I$��> ��N20ia��pO�IO�篻k5�G�������[���v�&f�)��ӻz�2�v _�!7(����\���Z�c�wd�T�h��˧;��� /T�q�A�ؘ�����������͞�c�����<[�2�F?^��'�$6<��»iT^�u�%�PJ�L��F\#��x�Z�d�����޲]u�/��"� �!J���d����Ù���T�9R����TD�zNG����7V��K�ޫ�, �#�;?��t�MORt����(���lՄ�|�~���È!.�x�]+ "a�M��O����P�[��<�O^��63�u�s Y��+�zH���S ��|a�Ni�b\��R��W���qo?��a��cة�w�~s[e���e'V�pt-[���*1�yj����K5�P�P�P�O�\1YժN�8��B��B��2}�=73�ލ��kF�2��'ᅰp��k����l�4{L����;�ߟ�p�@61�{�ӊk6��XQ{g�eĮs�3a�i�y>_[)70��n7�K�!k�7�y. J"�A����²������Q��c��Qu�����A�ݿDB��2�,�@��5�d�b�Y,&I��2�3`����3U ����EXaHN���<^u����gr�<.�z�^6�O��� E��Gc�z�6Vjh� @Ex<.���R"����8��V���S���S5N��G�����@�ii�J��0�kw�d��(/2$���؈�㻪f�������)"Ug�����1B���x�+�|����f��� �/ "�r��� q��_ǫb�b�Z?��a�Ͱ�#r���������K޺_�躦VR~��Q�3� ��O��X���0�p���q%RU���8}Q���2r}C�6&xϘ��E�g_��BD� F�UIDB��������h�jV?�)���>���ş �� ����ܝ穫SM5�6��C�� Y�i���]a}��V���ؓX��L��g�nQ��[M�Cy�A"��]>=�aDF�K &S&U�z��)� �x<Q��7 ���a�>}ʯ%b���c�:���e5�2"v[��ge�3�������ZM��鼳�yr�V󳺥����AhJ����^�����i� ��.(/�h��V���4�Z�����.>~� U}\z�(6&���vݺ������=���!T��è**���[�\ �d�dHj�5b11��7��eH���ٯ�-��P���R=.�ܠ���iKƻ�\?�Yk�0qHŝ#�J���@Ea��t�x�8,pc�?�������6֝ff�U�����W��&��\���g7��V��n�����;"&�F����굵ò� IDAT��s]�\C� �ʯ^Rdo�����<_�S�W4��?⼹�dU��L���ur ;���on����Z���*��ek�<U%&6�@����|�F@��B��B����i�� �@Y��-��i!�Z�E�~E�~P�){�|7Śz���ߵ}�M &��u�gh������K�7�����#ҳ���~�=�#�.^8�o�xK��HN.��DĞ;�a�U�7�g~43�FB��@""���o%\k��d����� Wo�տ.y|�)��kGg�t[|��$��?���=��vڣ?a^�&%��KH��k�y4RHDz�}M�ߑ��D�U�b�M]�@f1�/p���y���"ΐ�xO[}_�n��g%9�J�6Ҟ��R�6�E�K%/s��Ҵ]��˴&xV�ۥDD���į�e�}&�-�WG���z�i���)zM���Zf���;�p!���O�uA�� ��E�&D��M_�[��<�ȹ���'=���s�z߁$� ɴ�ߵ.�4!>��m/&Q�Om�ވO��'�z&��#�T(*K>�7�J���6�X}��ِE=YM����xb�����Ǒ!ҡC;5֚c;o�G�G�뗥²������Q��c��QuJ�r)����O؎y��ʛ0'�-J[�嫺�X��Pǯ��8n�ۓA��9׻_���#�g��z�u}��ַ}& 5~�Ѭ�F���9��V|b�¾>� ���=��kMD�>�=��\yF��qE�����On� �>�2��v����$[�kd$+)}<��k�yqQ���Q#ɛ�.��c��W>R��:U�D�?�����C�.�D�9��z�.�͜���+Ӣ��>�|�D��K-����mO.�\����ŀn�����QUUCeWn>Z�݀��>�ҵ$n{2_L�0+��c���$��f� '�z��v�fQz\��*[3J����Q�>>1�ADDm���ٗ�̂�s��u���z//����妹A,GC���VͨK����s���m����Sj�gD�i���6vD�ߓ3ZBJ�?�~�;���Z�_����7돼fK����Z555I���}mm�[���XO�^5�B����mLW�>e���[�A��ۏ�p��:b�ط������Hv'!����c�âx�����KDP�P�;�W��������E)JI ��"����\������~?��#77�3�7�3�;����LA�4d+�|(v�0p+���ʋP���,�R���S(�o�a��3��2A�z���4ܬ�f(������O��3[D�؅Y���w<��v�����Yj����K!�B- �áP*o2�P(@y��ߜMfN�:{��ت�\.�{L2�T�:U�N5�j��٣�@���%xQAa��O�'\q ����.%]yc2]YY6++�r�� ����%(��Ci�$Y�AI�uN��[|�:��6I�]Փ�:��i;�J@xT�����d��{K5*����- )�[D�%� ;�ϯ���|>����|P4���Cy����>P(TqIq2�[�4�k�j�NMZ� ̴4�];�\��@J�*R|Sq6��6&���C��7���� }W�,*,���=���z����<����9v�w�:e=�׏5�����ԅ}%��F�O�󫚃�a����6Ǭ�V�?{�Hg`���u���r3�?�|J�Wmz�l+�'/�"K�l��� ��4�bO�њ���7a�#up�B!�Ps��/|bş�'�\I+�8������q3cZ�G�����f��c�%ꖽ�^�}��‚�7p���)#K���P�hӈ]� ����qj�1���xE!�B��L66ts�h�\ D��~�#�h!�B!$,? �B!�����B!���p��B!��B!�B���B!�BHXM�������W~b��>y��"۾O��J�4(+�N|�R��i)�^�J�_$}�V1Ů:��[��s�^��X��!���8B!�B���\Q�����!t��Z�̐g�E$���k�g��� �BJ��:���^R������,��O�!A� �8B!�B����z��f~(�j�z��.�L���ކQ��."*����5� A�~IK-`��sY��@�h��ӭ�<X,��,pqE��O^�����t-]������T{ ��I� ��� N!�B!T���?H��#���Hj6謔�#p!�eظN|>���Kһ��\ȋ����RLZ�^�_��={�����%�� k'0e1�8��r4���Ɩ�r �„*R��9I �r�8u��#�B!�/���8-!��P��]%�N�����&��D�R�=�G���o@oն���j鲔ן�@RV�4�]^9���[�w ����� �V T1~ �L�ԑ'��&�����XE��.�B!�пLd�?����'�>Չ�f��~K�(�(#����ˠ_�o�ɟ^���V�;M&��|afAqy<2��aF�D"U�����H$2�ǫmuz1�C� *�$�(w�(�}�ʮ���EBU�KKI � ���% � 4)ee���/5S�cq�B�ps�h�, � �}���7 %:C������MR�A&��*���A���ک)1(d ]^MU&?��&&�+-e׈��V,��"K�K�huj]�0'7+KF]S�N�J�vhK��,�Hu��Og`o��U�.xq�B!��e���P��ܦ��Q�>�N�R�XNS�6׏�-���櫠��Y o�z�2�A���1�X��vz�?�f�{�b���'��?�SQRDR����,q2c�d��6��/��[���|c38U�T�S�8B!�B�2����a�1�����F��uE!�B�=j�~c��B!��G���K_�x�b=!�B� �? �B!�����B!���p��B!��B!�B���B!�BHX8~@!�B �!�B!a��!�B!$,? �B!��U���c��%!�B����`0�;!�B�?�_B!�B �!�B!a��!�B!$,? �B!�����B!���p��B!��B!�B���B!�BHX*��+��G��ug�5�-�9.�߻�B ��T�7��VB�叨!����Z\�J[� �85��r ��!Q�K)gv��@�R��d��v;�fu�k�iW��L����$��e�ɸ�oV��_��5p�Hg[kW����ʳ�����Oέ� 8&����=���q�ϯZ�hC��n��;�Q�)I�}���� \��z[�d�G; ����F�tfک��]!��ƶ2;��F�*��w�Ե2Udj�k�Sr� f:���9c�#P��ji�|��%�XW �O��d��7U��t�7�� ���+���I�JIn,���Z(.%�P�uNi�u�V�P�ʺl:(T�����9A-�����{���M���hJs�R�X��<�z�᩸�[��D���0� &�놋'��:tKnҺ ������O�NƸmǗ . �p�O�pݜ%{���X��D��?�Z3�e/Oo��0|�����H����z5Z>Qsi���L�'7�D�(ΫQh�y�w�y� v�P��(�V��G��ފ~uf���{o��[��>��2>������S;��DHT�$�k����_�Q�ғ��L}��Ʌ�?�[+� �}"�'�E��?�~��O�Y��i:3�ʬֿ��� G�����^�ǥ�7�s?86)!�����b�e�����~Eg͏�aW T��T�)��!��gw] P��LS�hJWR� ��Ζ�od� �LhES�������u��������כ���.�?ą\1�B�7��²;��"3�Ɍ�7@Q�Yϗ���߆9)���v�ɫ� a`}�b�]n����>���19qU��к�>��)#��LKOOgޘ+)���Ol��rC�ޏ�~kUO1A5��6a���I�o���}_RT{��E���/=}��R QG��@>� 1x@�/e*�6KU� �� A���$���8��뢣'�w�"�B@���Zƀ\v�k���D�W�����^�W�I2�:k1V>rߪ �W_I�Ғ�~�Yi����9��츛��oPj��Q�c�%n�@�ivN=B� �֙�;k�)3}Rse�J�驃]x���ԫ �� 4���x��1۶m ���^=6(fd�kז8f����;��Z��\���Լi�^ H���ƭ�+�*$��~��U�)���6�L^�%s s�m���G�h=I%�ڞCO {�<��G�� ���|qy�S�u�HJ�I�*��6_�p��җ/�_r�j����¾n?zG�0y�ԎD�6�A��P���r�n\1����Ƚ9g��Y�eh��T@��.8K�B�����o/���JY~�l_�g��2)11i��PGm�?�W�ř�]�P}��6��@�MG�?��D��j�B��m�Z�C%�!��_b }���{"�2���"E�*u����Z� Rԯ�y�Jx�!�μ�n���a�4��N_� |p/���[P��t%�c�&[Pź� �[���B��]�$����~I?M����IP%��K�\.Yz:��Wd��#���ϧ�댉�f��3�=z�[�-��=����bo�a��^s��e���j_�r+&�F��ˣ˶���.F�c�9v��m<�n���yD3x*z����Ź�v��!;�� ��|���7oܸ� �Q���{9;�;��b(�4t�V^~�{��������*��"��ߏ[z��$��������ù�h���cs��)��R�RD�6�A ��Y�����V�r��bf��˰��,o�n�jvj�������˜�*������r���#0f�I���j�5Bb4�Sy\g�941�����ҋ�z���`��5U{����Ų#��~�{\���_�f��r]���M]���:-��c��G�,�[zc���]�:��YP�jd��f��6�I�$bt16� U1���q��.�[c�zm��/�M tŦg^�����������)/�T�9$O����#54qi�o p$J����/��`@�?B(�z�\�V@h�N�����"U)��*�����[�]E�Ry�G&k�C�[VAZ���磫���MWg#�{G3�Q?K�|)��� �hԪj�C�{G-d}�6'%�v���ԟ������@�W�g��ZJ��2:�sq����e�Ry9 ��r�ވʀ��6�~���YB=� 2�S?�|�D�/N�rn�ޱQ�7�l��D덓�.t��맲�W�X�J�mXq̻?�?V�?�6�C�TΑ�R)�����~V��]�_���Y�[��E�7����d2���F TUTR32#ҍϼ?1��� �$2�@���P�D�2_�$qv��r�d�P1��� E�U�������>/JK���+&��3M�@��DyI�f��'Z���w��\o��\��8�N��ב%�*Xy�I��q�U�B�RQ!~�:?�����\e1��\+;I���E ��f \���P����_\��j�E#�/�-�o��x<�F�j���[Mf���AU���0���!���A�(d�� d+KU\VI39*���5\��������  �� ��ۣ �,^57C��8cŮ��r�&���M ��"o�Y�Y_&�� P��S��8g{���f��%&�J��&0&��}��S�k�������9q��;G�1f����N]i�}f�Z9 �㒔�@�b��:WD*�yt-�A�{Һ�+l!�N2i[v��3�:_��X찅�0q�俊�H�?�^�џ�z�V�R�c� ���b�9x��*�t����]Sƭ�y�Mv�3:�s����-�R�> ���|Qnڿ�=�t��d۰�SI�S��)X��T�"�)T2��T�k����-.��_�fX�I��ڿ;q�XDk�W~.�=���B��̂�����>K_U��� 21�(|��=V� 0F�:F�:�*���$��;^�G��JY,h?�dFAj9�[���Nآo�3��j�3e$6R$����΃A�78Ll3�we�z��K,�}b�r c���jpNE6JEBn{եά²���ʞ�X���}��s�tV��'�\"XbCD���pK�Ku�M+1-�LP�P��i[/Pc�4�4��8������fg+��N-?T �{H�j�-�5?�ifh4YB��k�����~[���zMD�#��S���m���j����mB�L����U�5zk��;m� �R��r���r`h��r�$ټ��[��|�_e�S4�'SZ�_~>����|�B!�P�H���b�y�q�Y4pY9 Ov8�6����x�/�[�B����:6w&j(vUco4w.�|!!B!�BHX�y�BMo�����Gs���j��}�GE�PӨ�H���B!���p���YYw��e&jx� ��aMF!���a�]����?�5j�kl�Ig��_�J%g����s����Y���tf��v�g���?��Qv,)|L�~�Nz�KJ� |f��|Ux��և�v89��P�y�ᔊ�e|L��N���m�U�?���KQ!���9�`t��熋o�߳��gt����Š=�����#�1�͘�:���ʳ�����Oέ� 8Piкs^�q�I�Q>W̆� ^g��dzc�{�1��"�_�цR���cvyEHI���[ "T�Ҡu矾�����Ȫ!*������|���aտH��һ�O��d��7Uj���h� ��W�y���&���Iw��b�;��|�Q����Bݎ����FT"�9�ә��5�� _3�4ݛ�~d����ϯێo׈'꛳�R�j��u�>S :M�b�'/���ϐ��~��<�i����ͶF��"�aZ�d�~��Dq�׆�.�]�xiS����!TL�Qv�wL���y�m�� �s�o�Y�� ��PurF|�Es���,�[l=g�e����V�@4)E����o���4� IDAT��Ϯ���Vv �X^����k��2^���i���V���7�!ֻ��Z�۴�u�թ�cH����oZ��LNDo��� ߌ�;o5�����/ۛX�4;a�ok��t��&��n�xb�L��C��&��p�h�����uM����aV�>�z4s���� y=� \�xs���x��Vˣn]xPҺ�X �G��3�;W�����)����8&�r����{�j���׈,���p�z2/��YW��M�/Hj����Nb܌�R�G$hTn�\Ł&+g�� ����f}�{�J�j��]de�����f&�iK����)�|�q��:�;�ߢ{ͺ=G��EYAם�O;{ı���8;�v���@Q�Yϗ���߆B�om7۷�ٮk7���*/_�� ~����գ�>�}�� �D���"8�9�� �7���w�9OS �����4��G\=}�+��X��Xy�99�99ٟ������½4PQ�z��5���M9a���/������ 6\��|�����a�U=�6�ʼn��������g �]e�2�S�9�G'Ņ^_�EA�T��������o��:N�L �M�u7�mR�[��z�k�n�'�s?w�n��B�!C��ӭ��W;y�I�Æv���̄c/�=J� �u�����=>�cG���|#���d�����2f��$YYYddd4m��_�sv>���aе�;�:A=����~��7��!!��FF]=��)�(.��G�h=I%�ڞCO {�<��������z2xї�-�ͷ�{�<��q�ܛsv��Z�v{M5�̛��`%���P�N"��-���A�.�-�� e�}pp����7�J����1�~�J�jݾ$���ɻ����ﰹ����嵢�h I�6=��^bb�W?ꡝ�¾n?zG�0y�Ԏ��S�J�gc޿�ST�!�����{�bz�M���ޞ�m��3I�S'�����%�. �-g���h�y�R�.d0zw0�TFt�*((P:ϻ�>1��1�aJ���m۶~FA���32ڵk+|�̇k�k�������[����e��S@9����� �g8\�j2��'7��Ӕ �$X��+�o�����ziIW�Ά6��M����������$���Q0\4���h��ȭ�FR��I���$���8��뢣'�w�������3�����fi�n���,@A~p�����le4}9�ˏ��Te5�:Cz+�W�[XL�1�L����ڹP�vՑ�����P"v9�&F���[��BT�@��l��I,Wy��ch���&*�(��u��+�ם�H�sx�n_�~���v���W�x�gEL13�8��Є���3gj���H�^^�͓O���|�A.Q-_��/O��t�9V뇙Y��o��� �I"U�/ax ��((�9����׍x��nY��&:�vI\ _��m<�$�re{�9��m��i?9i)��������^���؆-3�~*+##�ԥK?yڷo� P��~���JD�j����>�k�Xf&�����c�]�� ��Y��_|�S�Q��p�k�b�b� F`�����N������1[?RS�A���:W��l�g"� "�Jr��\.�I$�|����g�{7�bR )!4��!�D��1��f�/��q�'Yn�o+l�`�{�t�KU��3O�F��L&���_%��[Yk��,0��WZ��DK�{���|��O��(p���c!�`�)/�UU3R��\�S��r6��T*�슽����i4 �>��༞�[��zK-�溮�/V�j��=���|X��B'^��Ƨb�~�0l֥L �HU�@|���+�U8�NG��+f-yyy�����p����d�u�])����w/I������ �^՝�_�)��� ���r�S�J���)�ɕG��W^���i����J���<{f�ёf.���s>޴9�{y��� �Ɨ�� 2�~io��w ��S�=������<� �d �PVVF\�AR�W�"X�[��~��&&� $�6�Y��� �Zy���I�˺�Gz�.6��Z4�}{���Kg�q=$�+|��DU���kRJqJ�m{V���+ڵSH�OS^3fE��J�����O��$�63�c��Mo��~���']]x�����e?��E`��m9 ��r�ވ����Љ���h@�Ҫ��ٺ1��222@���Ȫ���9}z�b�CO�%�$9��嶳 L瘎:�ѧ�y3OH�1�L~��:��yބ}�ɹ72*�q5Y�2]l��O.��)�mJ>�F�����c�Y�4�Sk���*�(�)1х0e�j���d��0�c*�Lg�_ =/wX���\�_P�d�˩�����'[\&��hͰ�3��f���Q�A&&�o�����/�d8��S�;�:L��i�Y1�3�SW�l���V�����]*�H�� �pE�q�P�8��B�t��M �ʡT`�Z���-�2g�~V���I�DO�d��6�XG�k'*�\��&&}S�n�i��&������Oi��l ��)t��n�L5)�ۋ+��j<~�M����'T}���-��C��~�C��W7G���Q��{2�/Xչ"�8��59�����E�fm���z�| �H����q�I�V�8��,;ɤmy�qϊ�Ys�$����#��d�@�D����\P�� WT7�����$ ���|�|&GE�Ծ��kc�5��"��|����t ���`b����I�1�/�؍�I� �֪U��Fܽ��E`�� g�p( ��0�����fL���p|^k~'��� l������rfSe�1JT�L�"%���:!?�1�����/MX�o)/�}~\ #�2D״ +X AD�ci�b�b��z�s�c������rb�Y������t�����g̲�f�� w�~|t�O�M�O���kƤ���͍�)^V^�t`x���99�K:���� �2�+0\T7��úM۶͸�!?h���›��.m��ܽr���#�9���vv��Cf�g����J�EUL�H�������I;NZ�����ʆ�'b��6|�Ӷ^�<��i x����@�ћ�F�K�f�޴�v#�Q�N\?����� �Y��9U������/I��$>�X����-Z��X����ޭ�[G.�}^�Ii͍D�QklGUd�����(0���C��s[�s?'<ܵs���B@s�d��C�7���0�B��q|���?`�}�8fN�3,�>8�7i���g�GF�Ub���8)�v��҉Ԣ���mvV��)?�U;f������k�ڡ GIn�pc�\G.��i��<�K���f��s� m�/�\�w���k�5zG�2����o��YV�c�-�^H��َ����m?gLge�}r�%�����yi��]��Sx\U�������v����v($ ��a�d?l�?}MOvֻ[V۝�9@�;}Z�Ϗ,���v��� �'�X���]$��` -��`$$d&��3����l%b�2�Qˈ*����X���$������'��p�BM66l��g�'�#����Վ� ���������K3{ۄ4wVy�C���n��l�O���W���F#Ո��C!�B-u� c���=]���D�fM9B!�P�v���ܙh|���=~���?��W�?^@!�B �? TEE�������~m�, �B��? �B!�����B!����;~����B�����[�.�W���Q��Uǚ�w�  ��ql����2:���p� y�������oI'��,?��� o����$�H��:tө[�A�ϟ\�5����/��:��Ǜw�n� {����l6R��e+���WA/�B�^������X�1[���~�y�ઁ���f����gO���E�!�'��]t�G@���wl�A�������� �&V���()�[.A1I2=V_}`gPg�-}*���WAa~V�@����w���^��ں�%bt��熋o�߳��gtQ�j�֗ch����q�b�7��j�;��xR�&mد��%j|�-}��nx���q�Q�'��>�ԅ�d�hYA1{.�7�w{�Ѱ��v��ٱq�$0�Y�N:��qSW_a�߿XK`�i=�n��K;���[�hgn9�M�7��'��\ �����SS �������ۅ}EP̨}� ������xj��^?ӫ��f���~�3FNZ���Ǎ�%����O7L؝8q��!#+��u#��_���=F_O-7�h��0�%k�)��#+���N���/r����-a�vF����ߤR�>ƺ%��n���@�����}�mgm]L��z���9�I�+կåhl�V��б3�T�6�jx��&;�z��]��U5�QZm�I��J0�ޤ �5��D�(ь$z�u��80�� ��C�Vt�Ȫ�����~�������+�w�U���������jp�ѣ�(�G~On�ӡ�$C����|viѷr>����]\�/୻ ��E1��-�����[�L]ݮ�w�ȏ.��\R��uÓ7|���������<�/�+�,��=��L*T�� �xtv�b=���p�B"d���ES�ZY�ݯG�ۭ������^��t��*�B!���Vǎ/�n��B�e����J��*/N�g3��M�ApS^#���������}��w��X�\X���#�����3;V��rz�Nd��Ǣ����o��c���fuH�u�U@�����Z�P����=5���g�l�NJ���i��� �. �-g���ce[�8�6Yc��o�^x-� f�o�%j֣5�� �3���,/�=jP7�����sm_u6_2�֔�$&�緒�d�t�VҤ�����A��]�~yq<���>O��t��ؼ�]�}:�6� �1�Y�}����o�z+�����N�O��u~�zL� K��� ��<"����b~~>@��J+%I�PRj��� nD�}|]J�����l�{�'���˳��� �F�P�����ʂ���$� RRR��� 3��ഏ�+ͺ���ͬ�s=f<��i�O!�П�L&�x<�>+-��E�K:� �X@ؔVG�Rٜ:����h���-~sQ#EX��.G]1 �X\e�Nk�[��T �H �9z�d����|vQJ`D�� mx t��g��>:�̥��u�FS^�q>޴9�{y��� ���=v��jC��3~:��i�r%`~�g���f�8�"d�[`�D@q��Eg/���?����0GB��&���!u���*���fž+ i̲�l���@c�|.�� ���~�tz�;���0��T�FtUT�0r�B�j��ẖ;�{�)�u=� ����y}F�U���R��i&}�aw��s���1�����s�����<]\u��qJ���W���S�Q��R=w<��/Q@BeQaѽ�.�$.���dV����<�OW���k&�qvڲ���ޓgi��ŕ�M���A������d��]�f��"��_���7w���NZ�&�1fb��71�z(�M9a Ȩwn-F��<�/+!�K}�D���[)�Q(��� )�-W�.��m���l��� ��4�bO�њ���p5&�l��C� dq�!:���קD2���sjܹ-8�5��z��������I��u���V�{�H�b������Xn��+Bf����Zm5���hT�� �@Kd IDATuKT���N�ֵ���'�Ɉ���z"�׸�2��k۷�$��� E�z�8�Z�����X_=N^�x�Ѽ��V�g�~_o~JBf�RIB��G��w���������NIn~J����f��%Ǧ�+�ĦU�4�ww�a�h�$������X����jguë'5���8�:���=*�6�L�)���w�v��ޖ>�gV\�t Y �G M�3@s�k�Z>�$7-�������V���d�'�x�h��4�����m�>\/�Ɍv�q|^ ���~�σ���=�}�t8Y��e!���rs������: NN��y�3o�=̼�ͩ�'�a����'aSN�6���#�J}u���5�kIw?���ݰe���y���r��}�F�H l�ju9�c��}lJřN���P�hӈ]������շ���T�^��l��,�=}pخ�.�e���S�y�[�g<� H��EM��m1��G`�j5�·��������ھu�B���M�j ��?�D�4�@�=\� �z�~�}q��%"1?��:A���%�Z��ƆM?�MQQ��SD��ܺ��Bx�}QZ:��ϟC��,GEz[��e�.���; �����6q�{1�h��9!wl���"�#B�w�h�D��%�B��T���k���V�9|��0������BH ? �B�����^��Kg=w���At�A5��(�B!��B����D3qCJKk6aB}��NxuOdG!������B!���p��B!��H��-}B�^U���ʳ/E��W��8Hj��=~����`9Q��P }��]]�V���[ե���[F����w���^��Z�u�љ�oȳ'���W$� AVk~��3 ,���Ʊ����_�Eu�S�<�|�?��kjg��_��u>�k����}����� ��qs6�,�bB+�U���o>|����1m�TB�CT�_J>;}ޅ�j�]7���U�->��Ҍ�h;z��� ���w�2�,,���nT �&�S�kq|�W����2-}}92�������w�'���fv�+��y����ї%(P�ʼn��˕U��"n] L������Yy7�p��^�N)� �-����~� �~k儉F�C�R�BH4Dr�!�����@��0�=h5-h���I��<*�uv"d��2�at���~a�I��A�y�H�:��d�t�VҤ�����A��]�~yq<���>O��t��ؼ�]�}:�6� �1�Y�����;�35���/�Ub�S�<߮W��s��(��w|sp��?�0'��u��pGh�1[,:��,�΢u����4���6a���E$ ��x����ye��r�y����@��nm؜$��~��O���*B����vaVf&33���!��g|�Ν�E�?d�'߀̪�m�m:e��� 7��g�\�W���E������̻��3u-.y{?�s�l� �F����zpd�����g�������l�EJS�h ��"E�J��"}+��JQ�����J{��B���dd� [Ƴ~)�#�}�/x�sι�>��s���sW��R���h��'����vH\ij��&v}1��BL��6o�g��� I��S"ƒ�,5Dae�Q�(�2 ��Mڳ�Z�QS�� ��)���r{(e�^:?�P��F��F�|����U۹b���� 4=�('����$D~U«�dR(e���D���;41� ?�~�r���-g%e��y�wx�H6��^*��;w'�c� F��j�� s�O|v(��������?^ɅU����]d�L|�ӿ�A;����=�n�b��v���u����U]�i.�۩�a�L�dl( 8x��u��M�ǔ�R��:�K���WŜ��{`UC�E�a�D?��R�S ҃��ϯqf�# 3ػ��Q˷�c�6�3۞�9ſ �Њ ��9��gEV�0ͬ�d�z��p����s=t#�k�HC�IH���#��轭�s_/�א*��i�D�}>�"H�1��s����M`v�Y )��8nP�O�H:���?o�mԓ�d�Cb���9��lxn7�뮸X �d���X~ZUF�)��ng����ٷV�;crR��Igx�=��q���c�N5���o I�O���D�gt�1&�|�5?�Zl��]'�.�y����<���=ܶT{�ˬ����ﳐ�c�oa��N'Ԏ^�y~S��[���D�����t3T�H��h�Tf�C�%��r�¢/ i,-a����e)H�\k8SS˶���"Hn I�o2��7����Q �awn�N^i8q��$���@7ő�Ǵ�7̴�]�U�jI����\��������ծ&��.@pԄa|�c&H�6??? ?���ݧO#B.:��4f�?�-l��<��K�C����B��{]Zyj;���W,~d���{�& �_n�����n_���_�if�%�kc��CC��K1e��S��`��a}�Y�}Ƅ���lx�u�ƚ�=�lC)�A���h㲊���}A_^����� n��ˉor��N[� ���h���@A����e���&��E��P�nem��s���1�GLn�0rs z|�G@��#���踤踤���]�-�63��^� �Ǝ{��Ƞ� K� +�.������~3�Ц^�� ��D��f��F^��[-b�"��Ѳ������niq�u#�����Ly�0���i2�S8��%�Js٧�t� ��=���k����Ѧ~�q�ѡ�&ǻ��R�q�C�%�����T R��_�q�e��;g�c��;ܣ�x�&�oL�� 2�'*NЖ�{�y���J* ����6�����]J��t��\��]�Ϝ� ~��� ى 5�5c�,`g*����E���Έ�u6,>6����^�H"�Ag��� �� @"����F��+���;� �'������GL���;�����D�8Xc�``�x�@����Z���ߣ� ������|m7���|��:�^�@��M١7o݌̧��:�, 7'�K"���0X��_ �? �ҋFj*�j*�js��������˹@ $V�������rF3 H��� �ahJY��*a��p;����"�nH��I��Eʼn���t���ov.(��l&�Va��� 5-��'�|���f�V.���픜 �7��U��}kt*��y^��Tf���^pf��g�G����V�����^��F���i¬��x<@[[�Ea��0q^|�1qb ������2T�=���;�[.��VV�#L�LK��>��&�4O�������d@nЅ��ϼ�E�i�8iP\�z!7��Zp�i��M�3���e�����{K����A�ནK�̉R���߉F���2_�S��@��VUے�Zξ Q[W��4x�Ng�����e�.[� �lL�7�X�J�|rX�kȷ��9gHzP�;&��(&��z�D�n�n����)��=�uuu$nH��|�o���"f[U|R���$��1L{� �geբ��iH�W�vY��Q>��ڨ5�6����h�� ��UҶ6*7�x<���wef[S}��>=!� ��3�����7�u=�0T���lZs�Q� ilR(����T���@Iy9pj�E_Y+N�<�H�d��cw\?9%b���f�8}ꝍ |v� <�^8�s|x�&�&n��;����`��kjjp8`q8 @kk+�<< @$��3�Q�k��NN|���߷�d�� ��O����w*��^�"u��F�ػ����ګ6��҆N�fc��s���֖���� �Hg�53>���d2�/zFt� �C�ֶ_7�p���&���2e�e�_�M��u���K�JNJߥo<�|3�>��@!=�PC� �)��4���gp��X��$���d� @$b�"oL�n?�* ��}�ys&~lV0�Y�y�j�c�I�^���҅f�o��-S���|�z(`e|B�T6��g�u]�����QÀlэ iI�ʘ�0Ƕ�G�`�� kK:�D���q8�)㉐��:��usϽ�jy �ޖ|hM���k+#Gt4���4��%)/+Xl�W�q�쵩�Y>��� !�e:u������|��8��L��أ" �PO^h� ��"##������x&j��)�p� 0�{�V��B����|����{����<��%��] @mQNE�pSN�9V�T�u<=b���vAzիG��auʎON/m�[�X�h|�{����h%���N� YVr�,��1U�D+=���S�� �~�b~���w�~��W?������S.���|� ?QvLa^n/Ñ�|�����_3�}�|t�`��6�@`�9d��1�N�1� �LjӇR����ޞ�C��Nט#R���֧����m��Gj��x|: ��8�U�����q8�]g?��6���������jw�����Y]���Ą��6Ǥ��*=���]�n;�ZO�������F��DJ\�z������^b�m��5������˿ v~�s�GG�����a� �>ÍvJ�w9���m�a�s����u֊����.�!����Q��>�1���|�c�!��^�G����Q���o��w���K�O3�j��>��8��ס��v�K�t��nadື�]b[ZT9z�� Az�cZE����i"Xe ���������6w���.�_*�̟y��� ��? � �3qO[�t|!���e����_�� H�@A�g���:��gA�>C�"� � �Wl�?���� � ]�(|i��? � � �W��� �X��6m6R�DO�!� �o�? ]y���i��9��BL��6o�牻�%=�K&��G���Sl¯���"����j���\� O�� ��b8��Ϙ}O��P��y;$.����Gz���]aodB��Ĕ�� /K с�#��^u%�B)��ذ~~�R�;Q/r ޼Jp_?�$��P�(���N3٦���lp����̔G�+ t��,�swr�z�k�]��_�����]&��'| IDATA~{�� *�H%���7S��(ɵ�D�yÎi����]��T̼��bB}��) �;�&99�RqV��c|t�8Een��J�q1X�͎J��k��4,�3��t7M����}�^�� �d��'Vk �Kg�^�m'�[��A.�Q_M��|�jW���& ��3A��^�����k|��ӧ!tF�=~��ُ���� �� ��/Ŕ�׶;N@QA�(;�u@��Q�=o�@��ӝ�W�sO��à����8׼��n��+&� E�E�k\\���vr ����t�D�3A� ����3�4��j�]���I��e׳���jz�X[[ >y�4���� ���t���������\l� TWWc�EF4%z�9{�E=TG�[Y[y'����!p ��'��\v�4������(��M{��[��.� ��~�0S��f&�u��-�T�Ǧ4FG�RP�N���(��`���z��47Q_ڿŰM^���zb���LII!v�Ǝ{��Ƞ� K� �9x������~3�Ц���o ��T��:������Z��c�_��[�h\Rt\J��y/�9F��E�%G�����?�5�G�Qf�9�^��oׅAؕ�;`���L��sF�/�#v>��M��3vP@�Xe�y�"���'+�]����)ت8�0Ti\��T:��*ǽ�2 �# I�-��t��:�g{�@ H�B�)(��:�X �/�C~�"*cq�L��M~icv�Ys� H��iU��'G�7V)��l+ϕ�y9{ �Ʉ悸����Va�����%z,���u<]������B,��K���Yl�U)�����{'ߩcUz������d~�pG��CD��9[>�V6�vQ��}y������``Ab�J���ڵr��'˕��C?T�ļ3P��:T�U�c+�蒝k?z魌j`z���\_O���4���4���Z����H���mI�N-o���M�dD�:&��3���c����`��䰤�6��:1Y���HZu$nH��|�o���f[U|R���_�_�^9w,u�ڋ�W\b���n���㊋�@S�/���a�ר����I�<����أ�� ���ÿ̧�oJ�R��=�7ANY��7{�S����|T pj�E_Y+N�<�H�d��`�+�f{:& (}��C���qʹC�>��`z�ij�k�e)!o֜(���`-��ɉ��1��֘LS��v�E�A��jm����jAA �С��߳{PAzUS[ P��^�w� �.�9�g A��[?�R�%�ʣ/�͚A��P��Z�m^��&ֽ}`��‰�P9]E�f��<��ޮ�u�:9p�K ��U4���y���Z��'�@E�fq �^�w;����Wm҆N�fc��s�~������ҟg��[=6կ�S�@K2�rv�7#W�w3͈�9;6���>��Z�I��'�o���(���)W�rJ�)��������?4x701�ht���o[�����K~x����J� P\THÎ�c��/1b���i|��zL��=�L�\������cmQNE�pSNY�' �hwO����]�^�ꑽkX]�5���BM�����d���*�}��v��LDq28��ذ��0�<0��Im�PJ�w:N�Z�_j��r�2)����C����E%�����/�Csީ��cwo�8��ށ��.X�N��N[o���\��y�� �A(q!����[b����65�e���k�l-[+^߶qp'�|,���6�|��mn����6��Lb�/���*��ν�t������@t���lz/�#����c�M�剷l����{n_������9kVҪ^��c���_B�I]�ݦ�t��ڦ�q�%������N� H_`88>MD���m���Z���|��DS���|VN�G� �˖6��E������*"�@��z%� � � }�^#� ��]fJ���B � �����AAA� �AA�+�@AA��P�AAA����v���� �N*��L6:v�aT���'w��FR�����aW�T�q��Iao����=����|�J|K��+Vb�Յ�����𛧷M�Aa`8�/s�����E�c��c�l��W~͑� O�ߦ$�a�'����vH\ij������bB]?�CZaodB��Ĕ�� /K ��"� ���JY��H�= ��R/��](���;�n&�؄�9~ق B�қ�[O��2#��A�I`��j.JU��a{7�6j�VpL��uf�s5����a;�3 C�)�� �/���/{����"���>��c�YX n���7h�JM�{E`26��B�C0��8X:��b��DI�[�r�A�'�e�Br!=ks���z q2��^ڭi���=�,��x�ܖ#�g��}\Nk�zt�� ��&��E�;�kid�ϔ1:v�F?a˝J��:���9�� r=�_)� ̲�9�>�� �Y"�O"��!�q�w����. ��H,Җxr6����h��'������-[G���-�8�=S}.�aI3�� �[��B1px<�p�s��Mڼ���Y�% Ƞ�[��NqG}~���<�F��`%�-�N�Q��8t�zztn_('�y���������]q����n�r�G����������66Q�jۀُ��Фӥ�`0wq0��D~ i)�� ��3Y�ą��? ̩oȊI�X!9 �u��EO3V(�vPA #8��h�8�dy�O��$��if5 ��� ����[���s=t#�k�HC�IH���#�F ��0��s����M`�����$� �:�1:?cD�:�س@�&����A1�u 6�&���͑;�D�<��W@�{��7���g��R��s6�R �����L�U�}]��Sj�/h�pm���C@ ��� �_�J����q�bڧK�e^��M���q��9�Pz��!�]b~�M�=�.�<�u��Nt���m���V�{����$nnm�tG}5m��ͫ]Md;�eӜV�/��}�����Q��� �������,��ޏ� ���g�ь*�@dx��~��'##\W[�.&�&�*+['()�cb�3F� �I�/����@m�Аz�RL��i*ϐ�v��48E���\�-�_Kf�eM���&�d��� ���E���]}D�%��=�Zc�_�8���8`߂�������ֶg��g��gޅ��+=s���6C^y���R�ֶ�;���st6�|��Y�c����:x� :Z[���ڠ����� �����mWׇւ�g�<�'��Sl� �ov�L�?`�!���y}�YK��w��|X,��3t(�5�Uq�@��;�m�Ɍ�V��g�96� �wPx�aA���ۤ�B<�"!�������m3�:v���7 ��f(�i٤/8�@pb�=���z� �2��3@��/��3����3���>O�<�{�RK�@ $V�������rF3 H����4��� �������p�a�,���W_�Sr�n>i�ՑT�[��ڍ}�Ĭ��+�7�Nf{�X4A����+��-X��|׍�&`;�� ��4Z�(����0�T����Z��2SUU����)�o[5�N�o�"? �<���e�䷆��H��ѣ�nA]�3:����v�����d01���oϓ@ tŤ�h<��z/���'��$6L�J�ڎ��)�W�D��3$=(���P�Zc=k"$��/+t���`pec��A���U����c9� ih��2��..κ�z��Y��[���+=�h��=K�o���F���2_����k:�������b�_��VUے�Zξ ��"��Ȥ�;ZL:�A"��WU�oš�je�) ˀ���q��]0�crXRY��MPX��D�Y����@PH���𧺺:7� $QQ��7_�P�l��O�u�3��h �� _]�e��cD�<ï�F~u_�u���5�,dM��x<�J��}ϓ�`~~Ȥ�h]SG�}yx��"!�������+�F��������\]�r��v47@I���SgB�U�:�����i��88���7R�V�z��z.@uV~���������ȓG>@C��cr���f���D��6�>{}���5��m�Ǭ4�ʷ�(��^�)���� ���_������C�E����(Џ���o�`QI?�!��!�'+�j �p.:M^���Z�.�� ��V�)����uTq������UC�)�{����|�����_3�}�|t�`��6�@`�9d��1�N�1� �LjӇR���qr�VA~�cvd�?��l��Su��׏ܺO W��;���J�8gk�;�.d&�o�X�k��Oλk8�=0 6�����o�W���sN��3sׅ'�\�%�oٸ����~g�O3�j��>����-�� �٥@��b��ƶ��r|e~/�j��9�?�����_:�)6�U&�4!��/Rh�,AA���<��qc���}�D�(��wAA��T�3��A��n�ƃ�%���� � �����ڼ?��z&��H�򳋀�Ҋ�{�%� ����? � � �W��� � � H_���'�d���<.���u���ç؄'t-:)�vp�_�z3 "1�飋�+�0�:n= �j��������{��zsG��s�7��|v�[y �c#EG��,��*��L`�[V�qf�{��}�i��!���_᠝�fex��g7��|X�2��r��cb-�,�2F����'l�S Qg��6�v,'�s��R��, �C�#���`W"�>�z{�cԌ6�{����Ћ��@�|B����a���l�%룎� ��J�[8�/��O�<�q����`|��8���g�� �޿�� q?�S���Z�Br$0���pX`0':��٤�k�;���2��0?{��S�����%����6�T� d�`�{��C���d_�40�<ת2��Σ�S��_>0ͬ�d�z��p���[s=t#�k�HC�IH���#�*:��,��}�N��Z&�sz����ϕ��!�{C㗐�Ǵ�7̴�]�U�jI����\��������ծ&��.@pԄa|�c&H}�����?��}p���8N� �U��`�dd��jk�<��K�C����B��{]Zyj;����ߓ�������k|��ӧ!tF����/����@m�Аz�RL��i*ϐ�v��48E���\�-�_RSEE=�����.� �=t���H�s3z=���������-�6d��n� ���q�c�d62�1<,��XV2kX�q���1-��I3��v�5,`�H�:�]��F9�gh-]�9_mԇ{N��~�(�Cf����ʳ�q�������=Yb�9h��P�H5߬s�K~�� �� ;�� `ܺGC�����i�G6�e�6���83��N���!�|L&�E� (�@�0��zy����f +O�YHgsE�] �D=,�ڢ�����)wC�W��(�V���Zp��������qb���l������\�MU�!����߃����͑ LFJ��::�%� )�>i<�g�� �#��UA�6h/��e�y-7�R�!��;\>eb��"�C � �щ@�@�N4���Z������ؖ�����Y�k����z6@�1��VV�Ұ ���-����e�.[� �lL�7�X�J�|rm���O�����-3w����aIeml6Gm]������q���:7� $QQ��7o�V8f[U|R���$�Gc��_��/@~E��.� �=t�;��� OS�"�F���N��.@�����O�\�dYK2c���0�$$��9&��^>��wo??٭�;���k����ۨmT*`��y2�����?,�ɠ���Y� �~�v#W�ws�?m�����і�N1e-�t2�I���)�Ɠ�99�(�?��� ",������ �< ��i+Lw:^�����= EO#2P���wj>zL��=�L�\�����.��(��^�)��������V�s�&Lj��|z��~%�(`8�&/���Z�.��J�:��:��Yփc�0�V,z?*0/�!��`?,� ���� ��V�)�����怊���G�s��.H�z���5�=c� IDAT�ݒ�|�����_3�}�|t�`��6�@`�9d��1�N�1� �LjӇR���qr�VA~!��J���Q����X��/!2P�O3�j��>����' A>ӵO.�� ���A�����v�miQ�l��g�A>)J�������R��/!� � �w��� � � H_��� � � }�����sA��kt;�����_P��� ?��� � � H_���|+:}զ�F*�hnc�%�� � �~��� �x� ��x��砑l?g�b~u�d���7�g�DS!,`G��|����K ���S7Bb�<��jB� ӆL6:v�aT���'w����'����vH\ij��&v}1��BL��y��F&$=�KL������f �,�|$�ܞJY���WS��_�P��L��?�,�swr���f��-g%e��y�wx�H6�g:�R>K^F ���t}���w/j�P^�C~�C�gL}�[%:�b�Ȋ����Y���D����Γ��� Ho ��8����Y�1�������l���R����i�,.� ?�_Z߇��:�x�����[�N�R��Wkj-��!�� �K���C`��j.JU�q8�m�U�O�[�ov���m�, 3ػ��g�����9_�e�,�;��r��c���4��[�������"ꬓ������z.UQ�1�k�l�� ^�vr�"��i���䕗Mf-�V�?��K$�l[O���E7 ����s�r��G#��c�g6� �>~�Q�0���������w[����_���g��Tҫ�GN<��)���f��JBO:;t��Fx}�����w\-��C�>9���`��Q ����O������Ro����6.-)�-{{���e!.��ѵ���f���\y���)$� H,AW`���#��������X�ݗıS�_?�g)��?�&�=��Y��Z�{�^��i� �b����M��J,VR���ޓ��g���kKu- #2��^hL���p�1%ԭ��{�����k������O�#�تr}*�<���o�� `��N3�lz���X ��}��kj, �˜3g `���]~X�L�֐^1$���IM��$�������֚ _�3�<�L� OHI}p�m�"w�4����>Q1�@WLy��|b��M`v�O )�� I�.x�*�hFR��������Ƚ��گX���{|q㨮U�h��"��0+5��&n��� ř�O8]8�J��D�A��|osƭ��;�~> �������a�i������Ѐ{w��hu���,Ky� �U5@mM-��ʸ�^^�� ΢Ԥ������_Z�=�!3�έ�A�#��}�u`�������� �b�L)K?�tᡇ��Y��7M�����e�ۅ�O={��&�k�$��������7 ��NhWH���3��R�Y7����y�G�,��qƎ�.!�3��QJ����V��5�x�JY���ئ�J�f. ���:x76#'�~�t:_{\߼�kt���fE��֯r"'ֵ��a�u�aI��d��t�������\l�!�����x�0��P��#F�s�WUf��+E�t�d��S���ɦrq+l�y��_��"����$v �;6����Y.��:(6���i�DM9�mL>v"����a^<�6�H,ZE��RG�2���%ZQ���w���,��)��:���{h��F? �����÷�PʲOh�91f|���>������D�����oml踘�L8���f`�7;*e8���i�Ӱ��XxY�ɾr1�X��:A���'�R�kGFڮ[��|��?j�ֶq�Kw�W�6>߼��D��eӜV�/��}������& ��3A M9�?X�s3N]Lk�5������)�߷D�mU����Ex�#7`�r��5f�T�I�/�miH�})� ��4�g�o���e����LQvn�7�[w��o�5�ϛ����y�}�����~�� �m8uv� ��E����™~���ansG��Hw+k+���~!�5..K�_y;���M�q:l" %W�g�h�����xF]]㠔���Q����%%F_\Z��fّ�ޢ�4����g�y�k:@ӣ�z;-BS|�U{�[~�ܟ���CC��#&7N ���\��( b?:~h�� �:��OgHi�5�:� �[��w��k��%��GI���b��k�'��'��wI���^wX���G�SF.?|v{��3��u '�o�7�/,/�x� �~�p �e>_�Ր}b��p5��� �$$�KH,�(���R͕'�i����s����ʪ\�+�[g�3[���C��e�`y�h�E�a õ_TPO�Q]�G#,*bN֕�e��,��898��*������[N�U��Yh�$�9����<�O�lb���e����_����T��$��� �%������Y.�\HxZ�;���Z�a��-@��sTbx�Pnf��e�7il�oY��ߌ�)Gc���������Ɉw���b�J�/P�1���8Z##��3m�(�����[$j���"� ����'1н�Bom����b��ڠ&�E��\��i�1c�F��ߵ���j? ��U)>u)�� ��TB�Rj���g2���l,+�5#ƍw2�� PX@�v�.��hU1�cZ��_��]]Z ���� �h4Ad��)\��R*��y[�G��}�m���͎��ձ�=�[�h��"`�W6���f{��_�����wZ��z�P˵�z'��w�c�X%�� 5����� �k�S�>��+ى\P��?7�R�����M١7�a����n1k,��p��9�R<+WN��P���X�ܴt�(�:��D�?�8o��6��^�J��Z����0�-���dh���������FZ{[L���T�������t����y��=F������v]�]�/D~7^|zͻh������Vj�Y��s��lQ���HP�j�հV=�i�<�0J^�j�{�殟e�1]A�� |P{��A�hLbCD1�08��o5j�Ī�.i hx�s�|��}hN������̉�*!}�e�`y�h��_T�q��vteA·#� X�m�;Xߌia0��E�a]�2X��z��;�ini�Ge�&�291����? {�_]�p�1�5ɧ��b��\X,��'*‡)�~v��Y���&�Kg� �$"=������1F� �؜D��u@\H��޴�6�����b�*�ܗz!�U,O9���o�p*�}�"\����Y�ĄX3c�,� U���%<�la�/#��zyS�b~!GaQ&��e�-�������[���{�J��GZ �d0�dW9�՗!�hQHj��@ �hg�M��ѝ�贎MK��1l{L��'�,����"�x<�+��� �~���D���"A!��L��l������ ��5=�Q��Om��5����3Bk� g��=$U�|��h��A{�Ԟ�:�y-7�R�!��;\>eb���$Vyw����N �����uc���Z�MD"@`���%4 r�.. �];ho�S -��#�A����O���f �*���>����hW��w����!�Ҥ������]=��A% �UUԷo�悸Ά�a��Fu#�R��|�(B�q�k�o�Im����KǾ��nA}W~�b��J��'�;�N%�ⱌ�m1�g��K����)��rp� H��w�|����0L&�t:`1�W~�T*P.����;è4*�H$ ����n;��S!U��[��Ԇ�QKi@��XB�r�c�C����c����5�/��/k��D�/��L#�e���H��;u8��@e2�����~�[=�T�X�9~1��w��Y�hޕ�C�YW�w�ao,�g`"D���ci�cv�U�J���qpyh>�Z����� ��k��h.���rAo":\� .�E���}Y:��1���J�Vq �����<���/u��c���+�t`>�O��ў1Ct��3�鳆���`��0���77 _���6��ᓤ]O��!P���>g��sv��襷2��!d�(��F��pwr�\�؆���$i4Z�-�>���t�����[�GZUmlKZtjy ��0���5S&~%zm�g�ً+W\(n�� &|LK*k�{�7TxH{�%,,��m��9C҃��1� E1�5ֳ&�~�����[LV_^�Xy ��U��{Y���r�W����=�{�׈IcR�W��fs��kK��彵����!j��i`{�e����O������f��([�O98&��9��+��*��·�ZȠ-?c��0ixy����2�N�8(�+��������1��p�~?����E���ډ��$��z�������‰�P9]E���%y�X(��Uՙ:�D"���H��C5%yy��T�H��+����#��T\q�8!���׫t�%m��~����.v�!=ez��+ϐW�!��u��d5���0r�~7�Ӷ 8�c2�GE��_?Uh���j-|dd.]Z��b�$,`9%gϔ)+-c��VrR�}�Iœ��S� ҟE�G XN 5����A A$b�"o�&W��)�_��¼9e����0�J���2�k�t�?|z󔎤C�/4Zm4G�?y���j�,��Ĉ1J ��5��(mخ.&((@�al���t���u*b싄 ����tܴ�����٭���_����8�$;e<����.���ܸ��|��KIɃ̗�Tmh����]Z��@&�g��=����ZFkM��-FQ���N�S�5���y\L���;KӾ�DoI��-�5�B����ZJE�RʋHd� ?o���ТŒDJJ�}����t�$�f�f9���1s�9�<��9��{66� �����"� vuH _���ev �d��-&���&��'��[�j�b=���7���:��'�۱b���'��߽ɑ�6 7#Cz�X=U9%MuE$��+3����c݀��&��Ѹv��&�[�����II{yœ� �y�"���S$JQe��� 7/��qyӒ߀i-=�8o����('����ƾ��7�]�q㹌a"Laa!ɣJR�9P�)ߑ�1&��\D�~g��T�S���})??@f�'dzǗQ,����k��<��e@m�����}��9X�.l��� ~\<�l����a�r�#R���vY_H~��uNB�T�Ȋ��d��䲩E��' e^��f���JzIj九��O�0�� �,�������=�`�2O߃�{����,�~r�7eϨ�����.W�u2tvf��s">��<�����/�\5[Z/]���]�P����2`��%ǥ�Uĥ�=���߭�`��/�K��h�o<P���!�=�^ $���Ӌs�W)_T��ܹO���K��q����.�~ց�����#6�{7����@k�w��[Q�}��P�V�RR?D̪�?T?ڵx/c璝g���ٱ�z�d��a��V��}o�Y���dGmq����Y��ߵ7��w��}�*��on�5�����S��@e�z�1���{����V)�)�=-����j�k� ����N��oD����?w�Q�(��4${X�i�]3z�N#n^������J���n��b�B+=��G��Ύ~��ȝ�C*�nqí��y�z��w���Lv�b[c)v�}�mG�V��v�p޵`�� �X:?|�i���@ ��0�.t84�U�������vZ�? ��E��U�V��)A��Zt�/��Z�}��2h��i�@ ���������h���T'��;�4��p*�O�������W�q�t���ڍ6@ �@ ����GCS4g�J��jh<�@ P�35���1c��דȠG��;����v_��m�nF�_t�ۓ����{�Q���ҭ�/�5�6�aϢžGG<� {屨3@�+> �w��Z}y@���皚�������������;�5��Sl]v�8���H��糲2n���Ҍ����ړ���&%��ztiǸNd�񐟏!/�j����^����'�6ʴ�L7�55+#Ԧ7��I���TV��������ζ�����&͈_�Xe�$D?��[O��m1-��r����$�&�_Z�㻽���K��g�6}_�49rӬ6�=��6r�,��-S�@��a������8S��]�^1N:�����xo�z aI)t�(���?v���u7 OL�7p� P6s��d;�h�RF8o%�\�R�����[�rFk��Q�yι�t�xcӣ�m��Ր4v�֭���S���Ǯ;����߱��qt����� �r��q���0�3�?:c���1��C��ڲu�o�Ƅ��W�he�Z����ASt{�m��X3#LFo�� ꞒȠ����5��ܦ>M���*�9��� �NQ|����j���������2�������� ��`��4�q�+��9zlYҎ@4�P��}��\�PR��{q�?{� m䊈?�⨛'O�mw���޽5Am�_VFVڻ���i�Iaj�{n��~L� ڮ�0���+1�"ݧ�77#q�}FV�̈́�n��%};9C @n�3~��'����2��0S{�A�gq�23���322�<牑G����U|JJ�K��+�@o�ତ#˗^��:=k�򛱱7�k4W�_�Ґ�c�>;��o@d�� 2{���J$���w��Z�x��}k��0����T�]>y��I�x.@ы�'O�:y�uY��#��z����յ:B@����N�=���m� g�nLr{R�N~�� ��>$ǿ ���P��Ѭ%�$M�LO��0�v't�FK)�ӓ�;^��b6�2��\�r��'�k5�l:��^[7�Op��1>�򊞌� � ��<�+�ϕU*�"������з0��"+�)�ή���V���Q*�*���s���`R�� %�����������*M �OR�a�m�X��y��&�KQ�}{J��?Z`O�4I�$-Q soW��>�5�<�o��$�.&y�SXLBYG[����+FS��w�5Y2���N ��h�Z#��I�w���_�w�%Q��7?i��,�L��c�9שJu?�N���^�I�0���L � ��v��[w7I�8z�����\��&�����e�u�@v��3-�w^�X�����wT �����> C���C��˫������� ��=�x}�5�ګ�(�:�q�����W��?�:q�ms3��������%�ACw�4��t:{j翑�� ����2��r?���%tg���/�I�yYN��h�a���^ ]�t�q"n��ʆ��kn�2�LF3��� �Sc��|,���( �m �=J�۰���/�rҭ�!� U�]���iu>��� S��'KBQ�훡O.�D��� 1r�$5CZZ�!*-R�}h��S �����i��IZ��ޮ�=�0��4$�i8�GFUL�4�y%&��F����Zn4Ғf�HT6~S����j�)�+�T� �H�)8�4�=y^��:�PUPP��/;�o<� 3��)<1QQ�%H�Ij:����5����'FZU��Z��d4@@{�7�8����h3Y=-�߳כ�����s�r��[�] ��<�@qI  �jjj@���Y��ջ��4���n����s�ю�������%&V;�'..^\\�\��e�x���� �� (��q��d��l���H��W�;���HK2"8����5��p�2b0���@��Z���.]�u f7^��Y����Iv�=a��s�_v���(*.�����B��`G#�Ԟ� {����|��E��cǎ;r����W]+$�'��x �,Mt{鎙��AaW#�͓k����ϟdde1Qyy����4��$/��w<,���n��l#S��_�n1��*���Ȑ�ËAj���r�i}o�]}��� SP�]����G����5}�ߦ�kۼ� 6�ny9[�IRJ���W�u '&*nӴy�_�Jѝ=Q-��{(�:�"���A���p�.h���!-��Mt��)�����`�1���\䊈?�����}�-�c�4]9mM�t�I���®>����a��M�%��G�k�f�h��H z��w���feDJꛘR�>a�݇R3��b�������|VI���.N� �QE�FgЀ%��Uk蠁R��C��7�D�Y3����/]d<�����bм�P�4�9/�Mb�q�&���3�)�hkx�oEr��R00fT�J�����Eno]p�Ԟ��L'9�̽�׽#��WP���wy��Q�f�鮓�g�cGaDrij|�4��t �J�W��BB�Ԡ+�����(��u|��� �2a�,�a���E�fBZߡ7H _����*3�d��-���|� �8��L�] ����ѧ�r٠�aP��V�:M��\��5�0�D&��xQ�q ��w��|��E�"�\J��l -�v��1?�~^Ϲ�I��ۃ"^D�2�����"��b5Ⱥ��h����^��a����"����tY9D@i��������Pp����<�>c��}�@���(��L}�:� ��W���u[hg=Y��Mە����8,2���ر��'N_���?iߞ}�mo`z�U��]�5yǃ�SJQf���w,%>�+��$o�v������d��S`���I��J�yȯB��]�����y���%7�^�I�S��t5o|� z�m9p���"o�eN����Y���'�Q���›k�֝xG��I�'u���լ������WLP��e����9�W�wx浽�͇��&;p���.��7} �}��\�g���j�ܞ�F/��e��>�����g�&�X)LXX��������MH#Ȕi&>^�휩��l;�� (,��Ŀ�-�Ӫ*�����&�P��k�Es@��Ƌ��'o���jEG+�@ ?�l�?X��0�g��)3���_>�ϳ��45�I�)���YH��eb1�X�l&5켄�\�Q��@ � �0/��5����Y�&x����Z ��M��U�̿��@ �@ �?���D������kb�6����@ ~od��j ��:r'Ȭ�o�U���@ �@ ����@ BPP��;1`{�̇F�,)��͋#�c�>O�'�A��w��]��u`ij���O��`L������.m5��a� �ԝ����Iģ��*��k�r�^p�c��G��ȗĤuW������=O�9=E�H��:rˉ�~aO?8�Ǵ�P��g� ��g,Y�{����gQa�/����4Rj�ցI�Yw�q���&i�㷞�� y�yt� �:n۹���A����d���G�ԝ�CjO�4��F}�%_�~ߗk��hK=�"��I� y;��B7 |̂�y2DO'|ܑ��>m%NFSV” �#u&�&���|��P' ��{���0�g����L ��n���z4UpI�A�/!���4� r��N[�Bלw��-S���,��33�O�"�y�L��MƱs�f�y��aI)���C�$�/��|u�F?O���++h+�V�&|�_"0!�Dg��y��Sd2���wp��,���N��/c�Z6�f�p�5'����� Z;|ܵ�6A�����eo����i*�tخ�����#�i�r��4bյ�>��~�����]Lg� ��pZ�����%8���[8L�}L��5L׏�v��.�������%c���S�b�Q�g�� F����W�󳼗�m1� �Id��Ǭ���'i�mRN�-!�2|d&[�ͪ'�2�T�|��4W� �ߜ��q-�[5_Ce%���~c)��}e.D��B�f� ׃�8 �2t�l'�� ��h.%���*�o��Q�5��@�����s�_��U��cĝS'.�drh���6L�-�ˊ����rL��������U�V^�KAj��E���l����GEN<�wB) >�e�,�Nd��:�A��ǁ�4j��R��U��d�[Sӥa�]����BҪ�]��U'gï(x�AF��\�U��2 ��I�� mz����~}/�]�舷��.��7��(����� O�u���r�O KS��P�7w��}���5�}Q�8���� R&�,�7�d'���]�0쐡vӁ���\�J���+��%���{��Y�\��>��� `�&Ls�l��g�ө�I�&)��1z�KhHb�"A˄(�HK�D�t"����� RPp��6���(�CK+в�i�i )ma�ߎ��!S2U.��v��׆��"l��~��:в���/�M#��\m��p���z>y��|�Z�}��c�7-�_Zo�^��Z�bR�����f[{��7����v��[��}s������H�w[q����^�@���E�An�;�vs�������?G���i�ɪ�y��������CѤk^I� ��U�5�_��� �����|�({�}��z��KU���Ьw�����ܷo��\Ca��j�SB�NtS�އ}��p���%>��������C�6�0{����� �qBBK{\��[��v��>�E\�9��K�����K�k'�1�x���^qqck{��]�#��a�۷�Wm�]��f��M��HnШ�j��$%�ճK��Ǟ�cu7���T()�m�ԗ]~�$���י=��E2�=� u��Y���b���s�֓w�Q��S�s�PiSY���� d<9y#�cJ� �.��@JQ��ϫ����)�y�� ��iJ�HW��q�?�^^�74b�����F!i�������mu-���?M) 0犥C���AA�A�Fa뜟����y����������&]�z{$����u�R(��I�&�:��a����t,�(�� W )�i��01SB�P��%�0]����S[b�? ��R��[D�u�L��������d�������u�P@ex�Km=}q�!C��Bc[����f�"��F��w>9�c��W9e��u�v��Y�L��7ٷR�R�,zҹY��f'�<� �����b����A"��36v�h�`b���W=�򋩬7T�ip Z�<��4��)CQeh� ,FǺ�]�1&�2T�|�(}�哽A�؊�� ��>#�N��r��TS���M&�y�f�l��m~mH����)Q��9bꆐ��}X��yi��~hG�� ��TB���M��S!q�͐lh���C�ј��X�ǰk�a��.ݵ ��+ǡ<0���^2W�U�G~ؑ�b.@JrV�׫)�vm�֪|��sp�TO�>y츑�7�|��S f��41����lf�-�/3p�y���]��s�[Z��ϠAy����>�5�y��^g�H�x�G���$��^�?� �b�x<����~���t��E�&�4ħ���-��Y��)����� �L���M-~��rd�m��|b��a���K����b� ��ݰ�d���j��['G�}��#$:zʘt�9�@eO�4������W��f�ꖊd�a���PB��@~,h� h�0zOB$+j�=j^?{�f�L� /���f����z���\���;|My�+ ~�E�;Hl����k����e�4|����̍oLIo�ff�kbF���G ngQ4�]�k��-�y%�B[�ɕ'�NY����)l���彩YP�Q0���0=Ր��8@�M�9̆��(���N�0�si�1̭ ��2߶�m�䂥�[JD��x�8�'�7��R��N((}[��I��m~]ȭ$4����"_�l��� �����04� 6$r@���O �}���p��NƊ �N������������}c�.[�<�)�Ң�=z�/� L&S��ȵ <�����cY�`0jx��J���}35�1�Cm�;dx�w��XX|�ي[��];S>���y�52�ʆ�WK�r�����u������e-)�� �vo��}'�v�ج3�t�ܠ����w�]'�<숭�P�����ֆ$f1��T�p�Q�m5�tm|��P<,$����b:&�dh�m���;�!6�d�G/�W�8@����Mt�ߦ���PR%��R.�ц�����#�?=9�]�̞�i>�Q ��8o��� ��P(|���C��o �`0��C�W���"�jG>xI9��i���\8+�cO�+^W��F�w~ @ި2���F���1 �� ���%��ڕ�oy!O�W�G ��q�E pKs�K��^k����>6�3��$AZeH��6�[���r2 e��Nv9�kg���t� ��J�n��� 46��N$ۛ�xC�jR���!8�4�k�*�ca/0:j8��7!C��������߉��RQ11�wQQ���R���;���SR}��΃ۦG������ҮlX��ի���:�v��Fk�A�P7ٽ�u��̆����1�u3��jx�R1�m+w������9 idwhF��jײ��=��;�w������,��@���0�3�W +'W\\ �5v�X���|�[����jXo�ϣ�+�T���b^��Ē���� ,%%��y�S���?K�7� >v�|4S�����C��8��(.)!��6jj�b���Ke��A9q�J0����u�erK��KqҒ���`u���u��d����֖���h��� &��upݻ������������5��s�O6�Sf��t��Պ{�J�����we@�a5.����c��\�@�i N�*�͸���nߺ�� KD�p��W/�Ԩ�Y��#A��ڈ!��DTp�����rb�jc�Md%R$Y�,���> ""���g�y��"���ȡ=>ggu�b���IE�njWa�h�Z �>&}��D��N��]JXDY�D�����X�}t��㾬#'�'i��DTh�z� +��)yoAn�dBAG���@�K7E!S�`�v��ڧ����j��3~x�*Ϙ &KF^A�N��4]��jzR�Ұ񽤅�� F�%%�S%J ?;G�������zg9�E�!�5CW� x�ϓzc�,� >{�(+ĝ���?XW������l���g�K%�2��|[P -BU�t`��*P�I!I~9� H����n�l�l�߄��X@]�d)I���!�8�tK��6����D#B� ":��VTW.1C��\b�,��=ɖ����!�{9�� ��e����r"����JK� ]�%�AG�{@��A�]���d���H�D|�=~y���?^��j��>��Ԅ�R��� ��.`"��FO�xh�o|������ P`U��=��|;����i��3܎�����t�|c,&����%��K�V2� ���N��v9ޝ#�Ί���TON2���@؟?�8�|5؏���v�����E\���b�VȽ�s������*� �����] �_�����L�^�� �nEaz��C�-(J���zxt:�_��b ���2zO$i�;�췞��-VS�y���,Ⱦ��hםη���侽o�/�n*8�w/����/.HjϷdi6�i���P������u��b̉D�-ZN�������}�촨+�ί댜*�ja΁���ܛq�l�Ǎg��C5��<�l.�!mTK}��ٽ��2��7wl_R� ��~x�������BeQGm�C���>���Y�{j��S�_"�2d�U%�v�)k ��<|�>�+1~���_��nB���()�)��k� �� 䗣�*�p�`]@"����E:\��v �2' F5�X�,�nz'�� xiP��l ���e��%�>��l�D�VH�h1����)�L|�|;V��4li�yZUe ���^�6DO'��-���3������]�e��6Bh�c��g�6�+������I^�m�߁�dBʣ�� ]�=�O���S^�� �n��4�(�#;4YY$���(4�I���@ �‰}�d��G��<�K�.��`�����}`Q��};����������hk�x�_d��/Ĺ���#���N ;�GNS��b胎V��� /���F �@ �B9�P?��@ ��3����rd� ��K�? �@ AA��@ !(��?���x���o<��2`�}�]z�0�I�~ց���Y�����4�zFE4�]u�W�ž<~p~�i7��?:�>��X�����AϢ�"_< �9ii����jH������ >�c�Ԟ��Ɂ��\�j �~��.������IdУ��gK8qN IDATu���:n۹���A����d�5"A|�!�%{]{�w�����Lɷ��� ������jSX ��]����Ӈ�<��l�(E���h��G�c�����z�Z-M��gm���f(_���>�"��\�k����u��j��F3�P_y�ת_+&�8����(t����i�Dύ�h���;��m6�2���I��U��|�х���Q�w/"����:H����\R`~��I;7gΙ�����:O�c�p����\���̜>��p���D��NAq��v���� Ms��֦���@v�q�<�ˆ��'����b:Cf�����'���<�t��{[L|��b�1+��@����]�RS�<#RH�wZ��}�E>�31l |p��۠DVj>jƓ��^�_wwl�;�|��,ՙ�`�P��p�Lj;�N\ ��P��di�BY0������W,z�jcw�Nި�M=�9+z��Si=V]9�zl���2�6Y��j�ڱ���ۻ�AZ���m��˻�za�Wl��t�b� _�w�ty"����v��}��eb�lo�;�9FP��B��a����b��U&!��:\ ���~���[��f�����pEf>����^�ց���Yl�X��}���5#�C�d�6\.��p�� ��E�.=����~�A�NtS�އ}T��R?H߁UW�²MpEU�ҡZ��=��6>x��!+Qf %�A� � $��:cc� &vqck{��]�#��a�۷�P�j��$%�ճ�o|�j�Rx�iJ�`���.?|���̞��"�0���ѱn�_��%����tuy������C3 ��X���kn�ơ�� �L}��6�>��Bz �Y�/��k7�g��盡N77+��X�~pz��z�����s���`R�� %������\��yi��~�0}��D�9�����rϐ�����O��UQ|S���U ��Kw킧���q( xḨ� ���\۵5[��u0��h�N-��?��ԧ�����L���a.��b�b��dl����z��Nh��+f������V�*�3��W7Y|l�;�?EGO��='���Ԟ�{��5��r\�s��",MiB*�'N�QHa� ��ݰ�d���j��['G�}��q��k�r�“G0�P�D���J�,��c*j�'*�M� �Xߤ�=j� +��O� @` NTP�z�H�B�]�����_">7Ir�XD]�"� |�G�5. $ű�r��T } �ኍ�۴W�����x�� (���l���>�'T�nmґi4SB^^��v�1��ߴ���IE�}�ˑ�>�"V���7�ħ�.^��9R���>� ����V^�kt~�����b �y �g�b�чL�b(�|��V�?n�DFL�56C#��#ʩ��c} @����^���Ā��{Z&�d����rM ��h�}����,H��~;���el�^'9����^���*�"� +'��rM� ��Bt�b��F�1�^$� 1��4�M �Ac(�`C"�m��V��D-�l���uk�� ��V���@�y�&�g_]���/��jv���E�ٱ,�@(M��e�ߔi&?Z" >^��rKs�kۨ��~��u�(�f�����L�R�H��OD�k���poе��^å�+���E�1!%C� nK7���������$��#�?=9�]��̞�teÍΫ�n�� Z��:������V�js�� ���v��� ����u5��J"���\� w���5�F-��'�o�>��!�ER����J��N�xhm�@b�[��Pd����}:�A��'h8�@�l(����K]��˳6} 1��{��9��j+qe�΁�on��ѱ�� �<�����%�X�������Z%j)�~�&��_�ڤP���Ǻl��X��K����Q�ԯ���Uu��d��rEbHH ��/�h�9���j2y}7$� Fv�z�2� ����h⚣���|�,��b��V��ߗ��[ 4��*wR���6��^��f�K�65����� ,%%��y�Ӏ��?K�7��|�׽U{�-��&�9hP鋫uc�d��4�;4#�y�k��˞�͎��;G����sj�"l0�,�������h#O..)!�����r��k�j|�d��^�њ0� 4U���RI~]^A ����I� �+Mh��$GZX#���P �!��gl�@%�Jk����D��D�%�W'��-�mL T����.;�����B� VY�BmQ"�Ҥ�1d� ��_�1�8A����i��+��8��LI���;n����\�o��A� .� ԍ*k����)C�V{|9�����x_J$*+C++,�R��ėbS�4eӂʓ�̂�p��'�u�����u���o�mRM�����F=t�j�Zy�Ű�E����ZT@ND��굿��j�Tр% P����b�+��N�8���A ��d%�#J��VX�=��vҴ�$��û�X�f�v]�#D�>��u��㿳) ���k���vGm���1.� �l�� �d��L���@܉����u���O����:������b��.� ""��|����!�}�NQ9�����\�f���GG>>�~])�=K�����we@�a5.����5��?\ �-����>UD3 ��1x3I ")%���#{Vn�ɜ��8�i�K �(�Ϟ�]?���5j5:“� "MT�FV"����L��W;o"#(�ɉ#՟1���KXT�`B@ǀ& ��P# �"��g�����"��Wi����-W�Ю�r^����@S!��$��9!�4:։��{�NK�� ��n� �&%�a&�>�>l�}@NVf�!����w��e�� ~L}��ŴA]d�ܒ��R���ߦ�,�U��2iL�F�>$U�J�^d=���ջ�G[�e2�T2=)I����<�)�>m�'c�����Α�o��,���Y�N�#���K^g��"[�����2#�ƞ�����-��z�\�(��4�B ܃P�NJ2($L�����N����'���n��߄��X�>�������,��'ThX^V�<�%��Zo<���.��!�o.1`A��dKh�-�R�{�Eg���::;3��9�CP���]�P��т!qDS��zxt:��sy1��n�'���ҋ�*��ky����jk��VUnܣ�ηs�%!���}*�v�[�D/���g�w!4ج�;b�w3Yz9 �6xGl ����wE�^i�O[�'�w/������Ar{��C�i��3܎�����t�|81��Jr?h���S�H^T �r�d&���$`��L:=�>ࡕ�m ��� ��w�����zܷٚ��������5��d�Z|�� ���� �+��߭�`��/�K��h�oӛ��Dc }�~;:K8�e|&��%��wڥX�UZ���"�`Y�1��İ}V�����ͅīذ���3VX Y�1)s���j( ��7s�$:]g����(��uZN��`�mU"�ҤB�`҈w�4�z���vy���;�ɷ�\ �6��S|c��놮�Ġ#���W�S������\�Z�;kj�5"���>_gy1@E�:��5�h�U��<��'�G�?��oڡ��;�W�6�������q5H�Y�)��>�*=�ϸ9�;[�,�Ȣ-wH��ah�hY}�q�?S�{���e���~s�1�ڞ�z������R�����_��C^�� ��&:7� D1��?,�j|!��������j*3^y��\x� Z�f���$��{ <K��n�_��E^"N6VYA�Ҿ�+��l ���e��%�_B ~.�L3A���-�Ӫ*a��BP$L���p�U`3�k�4ۂ_E��Ah�c��g�6�+������I^w�^�rr��Qaa��"�+�nRm7��@ �-�c�7���V}�n�4ۂ_E�v�����ۏVsy���]���J!~P��@ �_������i�����E�c���:Z ğƟ���@ �h)h��@ � �ibہV��YЍ��@ �����4�AsV�4����� A �N��0�>�.=q�%DZw��~O��t��S05�w�? ���@���E �QYy'++�o�_:�"�2�O~��j���YY��*�*N�uu���4��6��cL>�������a������^�OI�{���F������;�gfd�����g���Fe��W�'��Cƹ��2S�z��'�JeI���=��Df����靉�V��!|�n\g8z�K�/��6��>ʖ�^ߦ���p��H+�K]��%����ƍ���� ãxo�y�BD�ø�QAP����� 7r� m�n=��*��ഊCv�����[[T�r Z;|<�p�麋����A��3�6�M�4C� ,)�F'7"�\t�)tc�����\X:l�����&O�Et|:��H%JJJ�%#lNX�SJ�t:蕭n����0  ��`?��������8:�u�|�� 9����lX1PxH��C[���-И�}��Vj�Cg��y��-S '���Zw�fC�fj����>��Q�K��˗���N��/c�Z7q�����;���F!3�b�hV.�2�@u����/�yv�O�Q�)���i>>�)�:p����n����DL�N��f�A͌��т�h��@~1!OP�I(dc�;i/��RB�<�`ߣ=���h� %Q @�X7��:��'��C4�J �N��d��,��K N���C}�Vm:��D�FF)�=��+���=��Q��� ��`��4�q�+��9zlY��(QN���R3�'Q�K��_w�����o�n8�vc`j�{n��~L� ڮW+���/+#+�]x����4�����U|JJ�K��+��w� ��?�]�� �~z�r���_ e��v8wf���޽�@��ȁeg�������9a�O��e��ϱ�O� �nN �s��*9^]^�-/)��r�½4v �(:�-��E�67�!�Vk���դNDO'\���7��oP{�+&G�܈�v�G��Z���,�c>���P�:�n��PG��A�x�������f1���7�C������u6�9w�Q�c�ۇV�irpٴ��O�4q�����aM�p���>|p���$��HZo��m��Ǒ�>�|��&��X�?��ƃ��k�4��Q)��񇟝�[;6����{s_Q�y.��>{���bd'�kH�����Ã�?cg܅FU��b^�$𮍁(4�*��J���B��a���� ���� �t�s��QFo���KR����8�� D%�P��XuT�² BQ�S5l� �ـWa\~�5��A @�Q�ޑi'$$���|�r�����l��(���4���0)EE"?����C;�����*(*B��盡N77+��X�~pz��z�������#.��X��c�&�O֘���%��X��T����4�&�<�|�H�iG�{�u�}r�j���sN����;;O�~{��ٯ����?K�۷<RXF���̽�~��UxڥEÆ��L��=�rH=e:l��ت̕�Cc �I(�h+���!�m)�ɩ�9t�4 ���?XCZF�9��s�ҡ|��� � O��u�O������ �)�3H��}�DT���ѱn�_[�o��n��㘨)�@P�IH&�¶�"�Au !���"��ia6�гXyMm\�Y�T �� -��.&���n� Z' �?�����eꂿ�lγ��u�H&�oݮ�{�(�%G�M�����:JYNn=֙3=v{c ��[����2i�� {޾��(3R5�lV�>w¨q��'gz����?hL5���d��j��F0�2�R�*�C^j���* J3���W�Nc����>���l{�u67�?{�������m����X**b���.�[l��_+��bWb41&�1��� @+�H�ޗ�;����) �����眙�;w���v@��S�h�J�Vw� �.�Х��#/s�> M�(�^Z���O����$"gzU�j�@����2�9*'1gIB&@ �� �� hBBI���GM�!3jz��w���N��n;�ɩ�R�;95ԃ��{�ESR(JJH:2���>��Si �U���k��r[P�&���rQ5�6:��l�DD{/����5nj��7sƞ��Eb0J������m��k9��:��t��w������AZ�j��Z �5����:��6��{i����_y��\z©�}������ͧ���e�og���#z�!����>��u�i���k��3���~�{���%Pg��Oo��+���zQZ?%�ܵ���:w��s�#AHI���<�f�關��ײ��.81;;��˨�ΰ��[���o�?��*��j���p��B*�'oUi���Qy��.[y���A������&x98TH����Ga<���L��=��5�f �##_�퇾�g�W�'�}u�jb�q ����|�K�����ЀH$��b������9���@M�� ����p?�j��;�#�ܙ{G.%����_Uh=��qq̭�,�s����*F9������M�?xc1`ɦ�G�Ķ���l//�+������Y2��*u�"#Ss�Α��$BM{�/N�� ���~��l��� H91��I�v�n�7� ��z�6������y���eʠ9� A�֩P8� � �/��0���@ C� �p6=�%�Z@���N�( B8"�(_(��EB��)�Lm9�U@������cG|TЋ���9-5&h��[yr��j��4�{��WB���ˉ�����V��n) ���_ͧ�v[]�������l�D��=���o^�>M�P(���У3��*�[� I@�2��t oӐD\!��Irr!�e�sTf��+���Q�q��M6xH&�7�0��$Ԥ ��M�x ��t��D�<&���̓� UO�}��� �7�@� f?S�Bf�Y|ʭ���V`h� �02���m t�l��j���)�����`p�P���v����o�b��[u���񃿧ͼ�~9���L� $�v��Kn�*K�C]�D"�B�$=\6o|yn��F�s��E��(oHs{{1������;���3�X�hC�N[h9d��f���m�y���PF�ff���o�k���iެ�eJl���s�{n�Էv��\�����T���X�P$� E�D���ж��y��n,�N ���0��^�Z��aj��wD�_ۛ �4pWhq�$����A/W �/�#�����{�r������n#��,\K.� �CA!�&r�<���n��rT�� {���� �� Gy�Zu;ti�~��zD�Pp��_��� ��>�[���9��N@�c�r���s�ޞt$�`29 }.%.5[i� �{M����7�J��ʼ�"#T!��m�t>�L/J�,~�ʊ:�7��7HEv �O� k�7��A�d�D�����+�RD@N){��p"{��K%�3�mI��$!��V����-�?#q��,��!��}|,��j*��2�4���ʕ�H�_?n�?S�qD!˖eg��y��A,�B�8z�X�31�2�N2��ut�n����ǎm�T��z���z�/��mr/լ�u��a�u��^�Æ m[�p!��I-��]��fi���C�/�<�:-�����C����XH����� ����'�����}��E牓~���J�6��1%�쬬��|�m�m؈1s'w5��"w�52o��M�%�&�u5�s�II�I/B�v�b,�8-ˮ�/B^ �� f l�́S7k�m݈����޶v-m�Z��u[��>�e :��f����������]�ժ���L���bԼ�����t����* E}C#�@ |�3\y�.]�h��.��eQ�>Y��h��굜F��hF���줷��<��&��sSC�HӢϚ���J{Tx�q�VRim��F��*<ퟠ�{9���d�y@�����|G�j�#*5F�;����fG*�@�)5���( �������&�� R��W]���������ޘ뒄�\��o3�6HEi������\p�sn�� �'�wXxi�R��s�{������1de�H�>������ϯ���&��U$��9wIn�!��Q+��G/���$#:���[��ܴ��q�:Y���Q��]��q���M�;���?�zv�J�o�Oض���e{�X�kV����|�|��1�ml���'O ������׫��w1(gH��Z�1W�ͮ;���_��ON��o?a�}�'n>�n�+-!�P��� ���#�,�_�#�чWmn�d���43���JZ���^xjѬ��j*C]��p����6������7w�>X;£��a|���H�O � �6�o��n$� -��� ��8o.��P+E�m�vϮK(J/�c���KW����b��[*�.�x���x�f������@���e*E���ۑ����;n �쾯�d �Ox�(����"ѯWA[#B���G)61�`0 F�B��s�C�˿��đ,�����/N̖SP�ɏv/~\J��Ϧ�?��9��F���?0�l���`0*l��<���^ ��`0 ��Q�~��:[ F�|��Tj���G0�I�Ԍ&��e�qq��R)��`0�$l���`0 ��`�`0 ��`0Ņ�U �9���o�� �~���m��5@\���]G/\�x���� 3�u'�^��;�����( �:c���]���p����N*4�&�6>�x������W���_���個�m��ZJT9* 4��� .�� V�>ߠ�6m:�w��;Χ�X�:�*�����m l\���*ɻ?Bi�)�z��VXދ���9�V�$>}�T�&L�+:6�[��CV�h�z�=��C�C�{;����i��.�1D9�g6w� GQC��+{��"0����¹[��6��pTa������t8�f>�����l8U��]��]u#��h��j�BZ� ��/Pb�k��jMs�.�b �Q�W�� ?�o�/��j�2���#��#�i����gI�oo�n�� �B  x��s\k]7��P�v��:������g$ļ}��mL�v�����u4\�&H���τe(���f憀��7�{�_�Ȳ�=.G�ha��r����:�i�y��/|�� �i�ͼy���z ��uc�ƕo� �#���wq-0��K����m���Hs��Ӻ�J5m���L^݄���)��.M�~�ظx�k�mősW�X�ǜ��}�͝Cr'��x�}�-A�qG��L��6���A7�ޏ��j���9�n`���W�iή�.y�8���G�||�������Y��RO���/�-����|׏��r�����6k��? p&��8r��s�a�]�#�V�w��r)0�����u}���H����?��o��kE�$�Q2�)ɳ_��/ �D���D]Cv6d/I� �J�#� ��n}����� �n�po����;$��j&*���ys�ِ�&1 Ԡf�g�FUGOO/+5%w�(%5EO_����^utZ�c�i�����f�O����l� ���Y���!x�_we�|%n5b���^� ���w J�H�q ��'Oつ7o��n���v-������LZ��&��W�ُJ9 �ľ�a�>�j����h�?���@��5��ʽ�ͽܴ޺q��vZM��N�?� < ��T?o����[9�߈F?j$���$! ՂNII��L� ���,t��m¥ڳF���k�w귶���Z�^��G�k��ݠ������֮���=��$��#j_����E�������V�Y�n/���R� %YrZg5���D��Z����l*�p�TZb�2������Gsz���ˆ�0�l�1���͜��a�mc0�:=� ��u�L��+��:��>��M�~[n���Xd��d� 9��Z��v�������扑 �G�y��fA���q��`�ק j�`$zBx�i���H�S5�6E�mȲ��x���Ռ8CRҡGb6U� �h����P�� ���[ =����4>�ٝ��3I~>�l�Z�]�V&�~A|!�Gzl�������w��M�̿�z�.8!+#���m5K��Y�W'���g<��eb*ͽ��bS(�zv��8������w����HO ����!��o��]�|���c��n�7h���Qrdd*!��N�Q���JR�̑���n���]���jf&E�Q��\6ɬ�@Lu���2��~�;�7�ɕ�=��5�f �##_"�hף�����D*4y��0��;�����>n}Us��x�G Jj8L]=Q��6�?�����e���/ ���H�O���}μH��f��e;�ח�.J3�Ĵ�'Eڵ�-޴����LJ�Y2��*u�"#Ss�Α��pG�B� �I� =q}w�+�C��!(', T�����{(��W U���(\ɛ�ygS�����B���^ �� w���*���B�N y�� ���H$���r�P���M@I�Q튳��-�������)"��dЖC]�����kO?v�G�h������Rc�֮��'W��� >7�ˉ��Hf��<��E6��'$:��"2R�IT��Ʉ��g�� ���\�L>[�n� ��DP�`�3�/���������$�� ZZZ����qZ�����7� �3�Ƃ��C=���yëbw�1��n��5L������l{��_�� �-Z$�<^���z��������P�[ �����o�l/��q��411�pG�A�s[q$6���CR����^���L�^A��˳�)�ޘ&� Y�1$>�7�E�i�R# ��9M���~�[[7���,|ߚ�y�qE9��r� �c&�rU��e'%�Fu|�v�q~xdy�\.;0e�����=��o����=J����2��%�,�Y�I�G� ��x��p"{Ҵ��*��� Q2@�����auT���g$�]�@�%垒�dkCVe�?�!e�Ⱥ�ئ�`K��Q�~�M��56$ ���'!�$,�KF�9P����H%h4��y�w���o3�6H��u������ޘ�H{)`���D�yW~�s���)x����=�Q���/���T}y��� V_J����4��x��_���?��rEb0�B놖�B�^��/���a��S#t�����_�>�js�%+N~��u���UWJ>X%��;��"���M��ʓ���M���yH��� ��`0 ���\��5��� ���dF�P����~��`0�0l���`0 ��`�`0 ��`0Ņ�U�f��e����g�m�I�.�q��~�?��ʜ��&�6>�x������W@̜ם<{�kזּz���O�S�I�Y����^����uR �\��wc��x#(�7�^�*����w�y�鮓��lޕ���o^�v�1өz٤S��':�&�仼�G�\�1�o|$�P�4��g]!�� ��8�q�q_+�>2�߮�mZ|F�U�d��{��e{��{��������`���7���w�U�GqjZ�i�g���׎ᖪl��6KJ��ID����7y��i���>�E��v���6̴��s�h袽���pC�֔+A��r��k�m���%�o 5P�iA\y�1m��o��E�SR4i� ��:��lj^hkGT����6��i��e㜝��`�!/w�WhA���ycE��v;��dҎ_'�n�<�� ��ur��-W=�P��哓dJ�Q~�\!-(!���[1B�FV�%��1O_âb�O�f�S���5^�P��O�� �� �9h��ѝ�:�T��SO�lu�Oُ��m�ی[Pz����=�B}�n�F]���҈J���k�^��{{�{1�����1T#*�P��\R*,đM��&���d\~ю'�B��3ӯ����M.�vK^N6n��f l\�]>VRr#� N5ǑSt�w>M4%�G����G(�YB�9N�Sc��FI(x��l-��� �%zj+[Hxgܦ����,m|/Ԗ�ت���X��rU �-&��-1�?�&G�~�b �2�(MM�BZ��!��/@zE_j� �F�$p/4�-����_!�u�Pxp~�AL��XZm5Q�|-�����h4�|���j�%�8������2�3q��dJWk=y��W��w/�Ÿ�66"o�fi�ȳ��q��E�ҏ���� E!��@B}��{&,C�����DsC��������cd;&lRv;� ���T�P�gba�UP���2$T�P����*�R��R�e��RӲS�e%�\)6.޿�x����'�QW�p멮s P�YJ�O|��u��3��Vh�};ab�M�.�W�Pi.)�t�1z��r�s�n�����\h���٫�R?��,F�������…JsI�P��OI$קr���!^S9��\h<��x�5���|�.��e�g I���F`<�����ϣ�(���&�P��x&��>���v���0H�NV��`٭���\p!��+�@�y �'w��E�� mSՍ`�k��YÇ,�e5k��@�͘Ccl�:���{.hik��v̾�Bl~���[�M���Y�^:��y��X�5�m �8� {��i=����~���/�l�,4�M��ԏ�x.{(=A��e����[CB���F��U�4�7mP¶!];��e��8�S9�i���4����m�%��cۉ@иzԪ��'�-=M;���y���R �_$�|uf�Nky�E|�v��B�ɩ���Hܳ����hBBI���GM�!3j�D�#3�J��>�րXK�fI`��*�q"mCCm���� ���7V���(�G����#��QB-����[���W/� 4�^Z2+�2��O�/u}�����p8M�ދ6���?��H�����V��K'� ���ˆy����dŨ7�͜��z������S9���ή{y�� oD�/\>�Ѱm��y����1� �苃��Q�a��(f�=� ��噈!� ��ʬ+!��@^S��M��r �]č�:Z$IE�E��� ��/��:$! xK��M�H"�o�W�_ �zv��U�0� d�>��*x|�a�Z��Ű��ȳ���^�ܡ̤@��^)l~���[���X������^��6��A���o8�g��-�X��~0�P�8K���ƁFBYJ�֛)�����M�S�.A�8��&GF��%��N�Q#3��:����d �VpV+S)(�^���a�x-.�[�H��SR�6A�w�?'� !H(Auj�_��:N�&@�uZSa�� ���׋����P�����Th���a؎��zI�AP�i>�?������]�g0*J?֡�����|�l����aA����͆H$2��PW9�zFt��P(Tȕ�OJ~�s�eQ޳��D箇�:|���o���rbZ˓"�Z�oZA�����p��z��m�-~���%�c���� �2T�I~*SҴw���˝P���}ζ��(��%#dǀ�{‰��â�[�L�W��!�����-��̋D�ǡR��\z�2�ʕ��9���l<_�� I����4��M���|H��p'��������|vlh�JJ+��8��6U�_* �0�}Q*���ǩ��V�H$�I.����eI���ɘ�·��)�^6q~&i��á�)��\�3���19*C�C����Vb��R>*�E�EN����vu~�9��HyJH�^nb`M��s��{vr y�24��#�w�Ӝ�� �^!:���4��Pˌtdr��� �Cf����-�?#q�r�-)��$$�X��(+U�C����@�][=�ĸ[�o=L���E3��07e'��M�@XH�Q�6�@Ro����7� 7n��J*���Ө6Z Y�y���h�<1[�eO�VFj"��q�N��>���H��n��ۺ�H�_?n�?S�qD!˖eg�[)H&�Q����0!��� *�e��C��K�-Z�:��z��! M;v1�p��eW�!/ ��,��Mڷ�U> �����m�Z�ڵ���6(�}Vˁ�B� ��Ra����Θ6OuU/�M��a3�DPk}��&1���ɓm\(G�ZVX������Džw�%o�"M����԰^��?�˩��W�ŷY"��� D�Ȩ�S��gOߕ��OQZ{+%<$��}��zb��m;4������j�K�[�'.��1�g�l\��Ylx���Z]�j¦�|t:Ҩ����]�^M� ��WuړP$�74 ��'I�F��ꐤ��0BKjb� Z�I�*4s�I�+ ���x�JbК�D��Ԙ#o�ei:�6Ch��4�~{Z߉�EPoL�uIBY<���FU"�w�����/��u`ɾ����p���Sj ��_ٲ�T���/��1Y_���� @��o�:��~r��}s�� �o71�it�Q�ӈ����������e$Ɍytq���o\�}�òͧF� #���]������3��x��_���?��7��D8VM�MZA”��3!�j�V�P �J�^> O��= �k�?�{�E�v�_��H t]w, *~��� p:`J�/���ShvZ\xЉ��Jd�بH�ݒ �}s��n�B����ۨ�\R*,����/ao�w��R���a��3H⼹T�s9��:�O {H<j �g�x����=�J�N�޶G��g�\�{z���w�����C>}�PQ�f����y�ȉ�Ix����=�Jo�����1y�/c���;����l*E���)Jko�${�_�x���c���O�_q��t����;��Έ��L��?�_Z~-�<�TN���Kk��5N�"-"}��}O�ӛk�!3���� �?�0Ӳ���Z�LWx�U}xkę?_�����K�q�m����KRe��C;��k�e$�(�u�H@�!."A�&>���t�#�é�Jʿ%��?�UM�Ө<��XA�!�;��mGq$r7�)���DM���2���X��`|]����~�-�cTz�ִW33۪u��������z��.��*�����)�N+��^�1�L*"�3��mz�=����qU)��U�:Ȅ���C��C��?0 �Q���������2m�V��Ae�S ��˞���81[NA�'?ڽ���Q�a��J�`T ����`T"��>yH��� ��`0 ������0^���C`0 ������ ��`0 ������`0 ��(.���`0��N��{/�.o�/���x����������k���p�ܱ��ZKU��#��n-5����ןwF�I��?��[�Y�ަ�����o�����uj��繦{�/ 」�*6�BquG�����0G*��u�c�}a���ԤMf�N�K��mʷ�f1~��l���P���V�|�M������;m���z�����nӦ��VN_.�S�BjP�-|�e��� �@���v>6��mL���S�λ�s��o΍Z?���t𼱢c����:dŋ6�'�sOX;�?4��C��K��.�栩� �&OoQ�^T��~ �ԝ�~�����nr�ܭ2��6n�ѦU��G?}�\��o��� ,�g���7�������g1dV�W�������aڟJ�q~s9���z?�T��K�L�s�9+��4$G@�1~��<.�_���rK(��)R��¬~�������Bo�� X���`0� $>�s�:��h���4ox���)2Y���#��<�������LX�";!(�ofn�[~#�w��e�,+>��rt�V*=ş%I�i3������M )m0�ﰁw�O�Z�jJ��G��Cx��|��4�h@�m>�w\�w�ȷ]�۴.���u�)�����4�w�m� h4���Y��<����T ����B7O�#���PiS)6.�7o�ܹnl+�� �:,:���spM�Z6/ ڔ���s�X �O8|ai;m�j:��u�b�%��Ƿԃ�8�Z��v���ʥ�@�c�g���R�Hvk�o��۠z����vn�/CG�X�D_Gv6d�$>R��J�W�L%�z��lYm��7�n:�T)�!KDf"2!lF���X@�j�79����$P���pdYAЭO�ÿp�%��%��Z�yv�̼����`�H}�}���dzzzr�7#9|����-r�%���;��D�׸�Uꓧ�@қ7Y Z���Q ��u���U�J#�KH�556��}�� wew͋�{s��<+���z�=�� ������{v4���ƭ�7�՚�P�wr��_��ͼD6��d��vґ�'%�{ 5�0k�����f��+8����8� {��i=����~���/�V�Y�n/���j_#+��)'��<)Ү�m�d�\�8>�̒AgW����w��-�aoН��������4�/A�>Yj�=w<+�%�ʷ�y"yt��}뗇���-����B������|�l����aA������P����KhS �"��B(�o_(�)p�d�� �����JD"Q��r�\$}���8��� 8�sZjL��շ ^�b��F�h�isl�=Y9��y��$� ��N����$?x��,2�U k�v�����~���$2��L��j���Ds�yr2a%�(n �z=h�n. J�����[B �Q�ILJ�����B��-;9j�s�K�SB�n%̶���������ǝw ����D�VIMZ߆<]I$cy����W��) W��X��o����r]$�o�u�8?<2_��T ��q\^n�?>�b� �t,Z[�~n�ۓ����g�&f��)�lJ���/y����f���Sr������v1��Rʂ��/1 �ٽۏl� �FWM����nf��� �� f l�́S7k�m݈�j̛͆�}S}����w]���z��&A��4Ӄ�f"��:RcmH��a3�DPk}�����ӂD��D�?�����Džw�%o�"M����԰^��?��Y�M,/�ѧ���(;�ml2����f��267q"�vN�3�=}�Ҧ�j�K�[�'.��1=w�\xHHu�. ��j��vh& Q���$��Fb�@ �����#Rs��o�o��wj���ݥe�BP�XN�>��(��T����7:M����3��)�l�)G��ꐤ�������ޘ뒄��x�J¢�D��Au �t�m��fi�/F��r^S9����Q(n�Rw���%��`TI�\p�Ө�p�RON�,���Z�W��@���5^I.���a��S#t�����_�>�js�%+N~��u���UWT<$�i���z�o�o���Dw߮3���īZ)������l��Z����^�*ۜ��������u D����k�zlja/�/;��g8 ��S������2&=��e��OOb-�f����yȉ�Ix����=�6.޿�i����'[���zy���g��2V� �sh�� ��&1:���3��=�g�O���_KK�X���ҕ���)��▪q��WnG���Q�G�q[0g���O��1F|�S���n:h�O�.-�^ZGĴ�������ݿ[����Lθ�s���u'�Sno9�D�kL1�v R �s�"��h�vTG"w����M�w�Bu �E��4*+t���������>��`0��jff[V\Sڡ5|~'rZ]����X�}ȗ��kO8^�5ۻ ۳�¦�� ��{L9� ����c��k�uw+�Q�gT&��U�ֈ�������!�� ����Ft'�v�<(�ɫ}_��ˡ�ѹ����e:^9lʂ/{��z���l9��h�����`l���`0�����`|���|�b�� ��`0 Fqa� ��`0�r�K�~*�� 9ʠ�� ��`0 Fqa���`0 �Q\ʦ�PS��pM� ���5K5k�؀�4���>7�6��EFD]�o�+���ϝ�/�=8�yTm@�v3�\�����G���9�Πd6ad�󟞁�_�x�gf;}�l6ᷳ׃_�~���_��.tEا6K�Y���IJ{}]H n֮}_Z�-�6�oDE�[eW,����>�s���;����P�ҽ(��4������6� 9�.�v�����{�{��9��V繻�z�\�ܳzH�jM�g;a��^8��w 4�ZX&�noݨl�P���W�.l/�X���] �~�?���������96j��繦�NY��ټ+n#L UѴ�~�>���-Kd�z�Y���o���E)b��m0�ﰁwZ�7i�AˌԠv[��#*h�n�Ci� j�&�y��|��|�6�S�f�L ���[7�i�M|+����ThҺx�u|���ܬh��-Ke� ��t�q��ʅ�t �|Ve�Ts���1�E�2 ���l��1m$ww�\{8���5Lo.��ݜ�3:Wݿj��h �̴W��]�M�n�w����ϕ�=�jw��ͥ����.��T�`��Mg�j؍\3�]Il_���3�N�[�pt95������6�v��M���-����!�Kt������_�|�����8|l��ۘ��u���1z��N���9%�at']ƃ�O5:��ϡs�97j�<���*M5�m_l��k��{�G�ۀS%,�X��y��l3��!�/lZ���]Y�;~��o{�a /N�2��gܰ�>�-_�'P�{��5ǑSt�&t��y��ӡ%���mZ5�|�L׮� �j����nD�����+��T_���J�δ?�����r��~��������?��BZ� ��_�Ɠ� �F�$p1w�",�P��Me[�ʢ�������w��y����vn=�ȝ��AǦ٪��n��o����u��KC����o4��׊��c���w�,�-iӷ��rc������,j��|�P�ߚ5w�k������~�['��נ䢄���ٙ)�2�g��e�&%�q�� �9�2E&K��}DۙgUh���ӫ�n�c�R�<���-U �c�#�ŕﲑo1�嵄$ i��|� |��T�3�!���x��b�E�Um���Q��[�͠��׏�X7�m^J�L���u5���I�rf�5�l��s�Q���?�>=�� ͒Ce���8%��� 4�p����K�W�ko*� ��Դ���\���t�`��p��ɝ�ƶ������{�X�n+����9�nPnU��j����W.�s?���T��8�����k��O�i�QPx��� ��2�F��ෲ=��ǣ~�������」r�u�1��و��9����l�^���rw�7�^ ��j�咲�l��w��>+���}@�n�v��3�q%?DGE։�I�udgCN��!����ٯ��F4‘eM@�>M���Z���$+�wH4�� -��,Kŧ,���_���r�7�j�����&zmV�7}f�^9�HQ�n���"H:.u��S���Qe5z�o�ώ-����(���6k��Y �>+�����ُ�+8�abb"`ܤ���A� 4�T���#��tZy "c�6�>))�6 A���=�?�:��H�#���>�;m0��V�[��?��KPI�,�f�/g�1�߯���?{gU��s�]C��(�������k��k`���ݭ�?w-���D%Dp �K��x����7 *��~���s�y瞹�������]Fm�״k[ �%\g��ܝ��~�f#G��5ľ͈������氵��-�i۲Ӕ�6�V�Q{���IWMK��6G��U]��aA'IY�x.��.`��䦝�F�84�v1 �Oz�Q|�Q�� EҔ��(���w�����ܶ�n����٦\Z٩�ʡ�����9����������gumi�}�����X��5�����4@W g�IN?]>Ϧ��9�( �F*:3�.���;�]5:<�ݨ������4�A�ھ=w�9���iC,���pJ~��~�SRLMM���Q� ���`��5M��%��.VW�65\�ʥm�� Eq�7��)�~f�ڢ������N����xO���%a7����;�nY�ֈM'�����2K�&�X��EfF���>M )���D�l�\� �-�q�)��r"^�[�-(E�o�o:����h$�Dx�'{'�?.嗇��Wu|��޽&x��tl ���(kG'5���B��H~%���e��`��x���=�����ȱ�@��xU#CB�e��[���A��b��rr��������!*�&��N�k6ߣ+�����od_���GާxO�J���~��Z<^;�{�!s}�K*W�Ʈҭ�؃B�MZ@ƹ �N�7D�����'�J�[���JA�'tYK�tY���bλ��Yw@祪���A�=�63Fq�W_�=��|�����nA�e�B�i����1�ʨ��eK�����5>�;��èT�-'a}(�%-zaE�R ������ �Y{J�3��Fsd�77�ܲ�?�l]�XڷՀ��KB��vK����y���'y�C��3�O_���ה������� .l�#�!�d��]��>8��Y��m;}�j"*��6J�<�n.m�z�@ �uXxh�ɅE��o�o8y���M~ܻ?� � 8���(���#�V^� o J;*+s������2�7�7�x�/< {Tjn����H���!,�y|�s֙W5*sd�Դ߳��^�ٴK)ˑ�}[-��?���_+�F�h߶��F���V%��a!�e˖w�>.$%��/��������}�����>�R�dڝ+�Kɷ��+�lI߸�Be�ߙ,�����Ǣ�&�P�;5;gA����M���:m�څ��TLM����i�޿���@M] x\�R�����1�˓��@�337Ca �e��rd\Q���E0X�`�����ދ6��l�� 7'�_;���)�m)���6`Ԛ'-�-���T��$ Gߺ����X"��x4���ѫ Ļ� -��)���z�6��4��/ �J2T�c��C�s�ũ�>��ͭ�?m�Ԟ��������$�$M=N?�R��k�vU)����T��UG���έ��� �F���-Z�-ڵ�24�KHH�O@��}�^�¸�g��&|(HI)B!@��j�J��F�6Ya7��Ņ��Se�̛Yg��QDJ�"�����]����5%(r ��4�Akp;`s1z����t^��O�>~) o#|��7�9S�и��b��d����3�i����/���~`m�K ��VXUH ZY��R �l�j��|�c��G���n�J� �'�qO�D$"$ ��/\.@��C��W TUT�)�Wg�O�����:�ZZ�Rޘy>�j�1v�9�/y�q3�.o^y�����O/&����$#�@N� cx�{�R�+� ��5������[r����I��P�mVo����y�x��Nş.��p �P)�%_��Ɋ��g���G��[���1@�@���z��{E�R0�e*�$A�Ñ�e�Ί�n�W~J��mԵ�T��H`�Y������bK������t�Y���<�̔PY ��ᘏ?'�R�D"1��2y�?�~�t�0]�Mq�%��b����ѽ���[9�l6��ˤP2�S��uv���/�]�[���z�,�"\}�^����E�"���T@F��`ld ���R���!Z�k��ְł�e���� ��g���p�T*�$y<@^~>��9�J�4��Y�,]=ղ�==��� �@����=��:"S�ndW���<�U@�̀g��Nɕd��_�#80hxp!���k�����Y#:�h�k�4tU�<ɪ� ғ䷿�t����q��M�  �Q+�-=�'+!�ph�fjon�L�d����CMRd8p^�б� )F՚���\�o���B(�J+� ���B$I♙c��}(�CHW�Y���8&��� �sI��>f� Q�B��~z(]���]��R�"PLI<�%!�s@m����@ <%���Tl W{,y�>f@M�RM��iiiI4�v�ŚZ[�UU��.����yTZm{:�l������MhS�J{��P�)�O�9���PU¢��iӧ�Ys4� �>mBw3(R�3~��K�M��q� C�'�m`���N�6}���ӧ����m�X�v6\z�O��Ո%���m��7�"�Ë'�b��l��Y[�*CaL̻謁$]t�z5��m�{�&z\qnzz���&`g- �R�=y����8�^� �8�MF���КlU$"i��M�T�d)�4^S�0++ @��� �����$^�%<�-��3�M��j�#@j�,�g�����S"��>.ΰ�����̈́=�3���u���� j��S6���IW�U�����i�=3����7L�~/��PR�CCc���$�Ү�htt�1�c٘��O������vS�-�2}��Q&��Wo�:� � c��:���]�3� ���|�߽�mӳ�� Ԛ������w�����ܛi*):�p5��yI#�����׆��f��ݕ�&Pq@\`! 4�����,i�| ����٥�H2T��VVU&��k;�Q_�kj��%RC�K'm����b��5���>m�޽��bĊy�ڛ�p���Y$ ��N��o^�~�:w%�k4m���u��,��E�����+�y-�S~�cjR��ck>����:�v&%�}�׮�9�g5l���m�j0j�����t�ь�k�w�Į���I�r�I7�pA���d�D:�l|������~~(]� \ *U��$z�����z���ش'��@� 6"Pf�����H�v�u~�K5�.��K �f�7k�M�V&���9�4���;�ƭg���� �0��M��Qe�_I��ه V�T�x(���삷�u��AeN��4eE��3/���6Nۥ�f̠E�KӞ��\�+F&�z����,f��G'��R�n��Xٔ�މ��yc�䝜�#=�v�f���f���"��i�iހ�:�9�n�ܸ�VY�UPg�’J4�ꛬ����O.�4`羸�~љ�O]#��Yr�aޅ�������ܐS��޶�gkҰ�S�����^Z�:-����U?���C��n��l�{�ﶾ��U�Q��IەV��}Y{2�Ņ�+v�.$\�T�8p�B�JȺ�V.o��T�'�U��~��?���%�wx0�/I�<�ǜ���&_��ji��MylU�9:�"i���=�4��]ܴ��í���D���/^�� ����N�9Z[����89j��E���A Q�Ќ�����vZu�kpY+f{�/Pten�5��G�_]���ժҼ���S ��*�F+7^�CG���ƲM��JRxw�j뵋N��JÏ/<G�V�L,� #[���(�,�‘t� ����)�⒋�l؉^�� � ʗ����ۧ�R����1g�-�,�޽��$��?|�� �kx�f�k�3��� �(��|�P����� $?�^���!����/~�T^+���?�c����~wjѩ����o�v�U��fh��)����`4���T��.�zi͹�A���|�C#��w]�o� {�֯����;�e�<�z�רqG��ښ�P�p����TK�%�<]w��� ܧ�����r�42."���i=&3Q�QT�&_���X��T�_ RR�t��,���Ͽ�3��fOo(0�[�'� ��Vݨ������e��fo��-��?tQR಼���@1p��6��jʬ�*���p �4"� ��Oپ���ۊ���hon�u����y��r������o}�����`�� ж�՘�Kq�9�Mq�H���C��K������] T��v����������_�fV ́��y�����N�4������?c�D�����}��T���ű�_�I���w��?00��h\BM�e`�/���H��6�줞�����6��I��a�� �ۊ�K ߃��@/�z�+�?T���D%#��|�?�I�����&10T��������3Q���Ӏ�?0� ���E^���٨]���\]{w��� @�y�A}� ���/n]���h```�o�����j�Hu����Բ�C�~���֣���q����Y��+‘F�'����a�%X�Z7�@6V,����,�y�c ���k��P�Kv���!�2z=�;�P��u{�'�-��{�o�?->�1q8�S?���v��'�ɹ�� ;U[���xpp���M�t�J�5��Y�)n��t�A�XM�v���٧�_�u;��u���L!�o%�-���y����g�=��.���݀ �݋l����N���$�k�J&%Kl��t�Nv_��l���r���ms���;��H�ҡKK����,]}m��A��|��3h~J��k:��V dn&�I1�ăs���B�R�i�N���i:pͲ�;q_�V��P{��ݿ�n�� ��R(-x��LaT��٩� UUU ?�TOW@[O�8��`30�Af����޾��8�^ @�r����Or?R��m9v��������[Oj�&�$� �����B�87&�)if� yoB}�L�so̗M�S�Z�����N�*��2�E߸��@$ʍ �J353��V��xX�n���&� ���I:o%�/��+E��-��=7�vN�W�r�v#�"�SQ�sж@|ـ��R�D66��o -m���e3٦ 0���n�s�eC�e�T&� ���Y�|��$��3m�y�1P�u�~�F�û~�7L�fR6q������]�{���l�kH��;���Ȩ+�z8�}�����?4����>o^T�i�wLx��nD��BC�Bv ң�Ii'a�}��>��߾y~�;u�� ��ˢ������c��V�ʁ{�OxX �͔�WwU�;k W�=�DI('T�$��$J��k�@IY�ѵ'���t7"������2����:������d@�!�<�?~����]�=9ն��O�:�v��JK@��a�o ��:�(��� z��=QjY6 J�A@� ؐU2)Q��(��KPF.�1�����?� �J,�ms��y"Q���Y�R]=e5=��,��,�����މ��c�^�����Y�˪�K�;�ig@A�Q;�n%MHH###�������J��P>$�Π�c�A7_H ��L�͡~�N��7�zzh��[����n�`AgÏE�>1���e�޺��(� �q?��L0a1f^�g{�<U��8u�^����׌�V���|г����J�l�D/?/��J2H `�r)��O��"0�5�����[�h���0��G�'����O�FR�$�W�e�#����b��D�"������'H�C�G*C� ��&���4�&f�Y �$Ţ�4u�!�� IDAT����L��*����ɳ��>{�#�V�^�v���ѯ��w]Ƹ��Hg��^N��|��?��w�� F�\e�`��Fgƹ �N�7D�����'�J�����j��b5 U�ec��t���h�{��ղ �r��S�\��5��ѕ��5Hݰ'�f�(���k�g�Fu�����T��Q�[N�&�P�JZ*���ZO�i鲖l�P>ZQ��%XW �V����C�LJP"�|@�6��.����Oʺf6��.=[p^|�����=sc]qV���=g���ǥQ��*���V�#�/<�ZڷՂ<����h ��mu�>����S�A\�w�74�� eͶ���fnٿ�H�.��ڠ� �W�6v�N�C���077�3���C}���G!~+tO����_��3`�H� /��m��6l��Q#=fo�����W:I�q�N_�u�ʟZ>^�?�<;���j ���a% (�P7��G �P�>�a��X��� ��Kbu���j�H,ә "1�<�V/_��| @�yb�L�F��$���з���y"Ap�uu�Q���s���Q}�/^H�=~^��#�ƾS�SB�a33~��j�y3����/�HIV`@�v��tQ͛Yg��|�[*L ����Z8����w��x︑S9Bm�%JM��h��r� Cə��٭� �țG,HI)B!@��jժbk��}�^�¸�g��&|�㇑B�@�6��G�@����cjH|�:���Y�n�UU���@\�)A�k����Ҹ�h#����/���j�cA�LJH��<�� ]6����(����3u��kݹ�� �������OS ��j�� ����P~䦸��U?�@"�����q�b1�%b��x�o�s�k˞�JO�������:�D$"˕ ���J'��mFΟ��TG��� Dg�W%�� >��uA��9W8�\W�\�&/�嵛6��wђ�JM8qAz�l�S��[/ݛ5Ȧ��|�Z�EG6vI��ϥe{��Ŵ&�C�*��H�t� �L��l2iH�D�_�����F�/��QY&ؕ�K��c��Ao�b����7<� ����k>w����$1&�׭������'�P'��9"�T�fW�/j��� ;9������J��,L{ƣ���p*L�H$��'�<=s%c씤}�����ί�?��k����_T��RD���� !w7����3Wge�l�U����`#���I�:1�,@%(v13�b @��� ~��2�� � ��4,�'D��:(�I��_�X���l֮����X�-J^܌L�� 9i)yʥ��[k���A���gMp�$8T��@$�q8P���%��!F��u�ɸ���%j���J'���Ѷ�t��6��Y��&�<� _P�]/����Uc}gaqaBhT��N-! �J��cGC��!cd��#[>+e�R��Y�^�5,��`�����o�3��̿Z�Q�HI=#�> �JIC=H�DJ񇿈�L�x�$� �9�fH�F��S��)��{D�G��41�^�Ir��\{&���J I�b�:QQ�A��uS.G��a��m�GO�_UE�W��f� Yԡ� $I♙c��f�>��p�Ū!��+�i|�q#��J*oKյ� ���]��R�B�{W�)�P� ��:�y�qC*��PBO ���%y�bv�b��!- ��jX'\Q&� e0�ǒ��c���x�r ��/��Z�C�K��P�fp�˰��B���%-9�-�?7.��5�N��$����X6iʪq���O� -!�T��4��h��R�i֬�;�r5���u5�}@k-J��MO˸Qӎ}�i��w�GwCJ�~(�����J�B٬k�&�I�4�/�7���������uK��w�ð� ybU�n�zJ�vP��/�����|����(+S��f�y�A@ �I�i���E�������5����@�k :bTH�_�r��� p��1¦� ��L�n[�p@�h��H�y�9�c ����!�$�o8�ܜ_�ݮtVzj�I����V}�N�*;�bĊy�ڛ�p���Y$��}�Uu�5#s����Ү����:�Y�ķo��u6�𬆭���-����o :�i��U2�ң����,��XϮQۦ�>I��;�b���Te�JP)��?�XS�ӕ�2������b�>��#P����ش'��@� 6"Pf*��&b�n�႒ 6�E�^%�[/����m�-�����H�v�����m\0�ʶ�H�R�k}}�X���>m�N��~�j�?�Q��+;��j5�U/����\w����]i՘ߗ�'3_\X�b�#���`��H<�oB��&T:yS�os.������G����� ���{�6�;e߶'>k� ���������R���C!��׎�kv]�œ��7�}���ದ���_����k"(� ����q銓z���w�o��N!E� @���b�WH�^�4�ZAI��P ���J0@�%�9����>E@��������(���Ϫ'�B*#�N}�(��">�ή���E��Q��Iyi z՚�[�YB�j'JΡ4�ѿ3�]�w}~ck�ײ��9�m�ˣ�_Zs.x�hȉ{Ş<��F���7A��\���Bg����F�]r9|��7p��$;�����5���τ�{�&�J}�п3�0R.Mztn��L��J����~۶ۮ��7C�%L�����v�z�߶-���_�В�=��t]@&�KM90:Z��t��A;��tw����Sa����}ӏO sPπ"�k�|�P���ò�]RA�#�e���Gv�Ѹ.�"R���c2%��j��Rq'� ��RO��b��ݎ�L&�Ґ�K?�$�C��p��X��C_{�qe���RŇY�����QZ�&*(�w�����L�/G��ۛ�� 7��/5�%@ ��� ��(k��%%]*�� �Qw�r���/ �𸴆��>h(vV��k]����g^/ı���>-��[o�~*����ֈܷ?n�拗T�?��������?�fO��a�V�ic���������?�ҝ�b  d��c+㾷Q ??L��������a�eF�+�Q��AC���������`���C�c``````````h��?���t��, z�@�6��������@����uz]��3�������������(L������A�F���ۈ���7�Ӟ@����������H�ՌwC�v�+E�Yp��V�Ð���^�ګ�y�?���-r���vIЉqf��r�ϕ��˧VMG���O��d��谈�{���|�Iw������B���g�����ˆ.�����r}B�JO��g`��W����c�v�m���*��uU���m�{�� ���A��7�l��߼c�#+�m�E���D�/����g#����z_����YL�� ���f-kmߏO-ʦ:�KǗ�Hq�5�b� ���/��m�Um=j����w�/��M_�8�8�~@��i7�s�7:?�g@ ;z�}*��n@�����I�ud�n@���E�l\�f'���= �1�����V��Bl.?O*.�0��K uG�����Q*��R��c:pͲ�;q_�fT��r�=������2����^g�.����CGIP�6ͮK�ty�f���U�i���f �*_�����Obkw��aܽ�[U�θ?�����^�E �t��>�~�I��M���y�*��}B�9(��Z���o�S�\�5j�ͬ��ZJ�QRz�h���z����n1y��I�oͿ�um��=NY$�����^�EW<�~ğc"�Vc�~*�Y���ݸ�����YK�5,G�a�Wa2b�碇�4�����m��r�w4�x0f�� (f%���s��\\�`6+�K�?� ��� �Q*`��`x��h������X/ E�@�������r_-�8��C]�7d��[��eWuV���{�gʟ{c�}���K "L�����hoZ�2�j���E�c�e��QWn�p�1��G��40�U4�7������%�b����Їw�No���D��e�1���I�hӮ�a�TK��>�r��CM;����?4������ '�u>7���ldN�M���� �fkV�w�P��2��K���Z<�~�}�H���c�̿�@ s3233233�������BM�dZ�|ii�m��.����2n��4/_�f����0���n�s�eÄ��4q�%d�ͤ]g����/;t^��4�xP�.2I�3 RD� c�)����e���x�%A�c�h2-��B�vY��賱�!�N��Q�}*2����d��*\j��D�]t ��/�ηG`5�BL�ό������ ���4�_nҹ��d"L]�p'�������MB !��(��scŸ�f�5r2��� V3le�^߯FL�q�K��Aw#"|/���:H�:��V�l��������w]p���T۟q�Q��AI��b�() ��u�Q��A��{��bH�RkPд����lx �v��JK@��a�o\{����ԋށ���Ο�[D'Yx�~<�וH?3m��KAA�A�]�fl�'�������{!�7�\3š���f�L{y�/<������~���,mǶM^�)��Ե?��泲� ����ɳ��>{�#�VrW�p������N��3��c��x����j�t�y��i7�������#�GY/�$k4�����:�n��;��N�ݺC��k!��ZA�:�@*/iiiI���n>�ν[GV�5����u3�w�D��.z 2-����$��"�!�OQ�;�mژ��2��P�l"�J�P�l"`6_>{c�2���SH�W��0�5�aK��k`<k�w�L� a�� �z,��(��hQ��&7L>+���fZ�v���ѯ��w]Ƹ���Y�tЕ#ˁCTNMts�v�l�GW��U Wу�G6�� ;j������0{���{�yz�����������1����"�j��nP�`�u��a�n�wg�m�l��LJ�w�'�q�l�[�|U��~�Tyz���bλ���02gx}�{�y��=��jY���9X��������^} ��Ҩެ�`c��tI@�RP�;m ]֒-d� P��%XW �V����jmMQF�l9 ��CI(i�Z�&0��:Cp��{ Py����X4��{��&���=a����k'�r��_c� 1v�H��[b,�.��D���S�O�];�Y�l���!a����i�`��w��h5�o�߭7�OAp�uu�Q���s���}�Ꙛǿϫ6�:f����V��!t(����NE|�N ~���d%�����,y��l�Rn�����ML�1Q���)�m)���6`Ԛ'-�-P�A���L�v� }��r ��4��g���� &8�A����MR���t<�\ V�P7��h����p�z�����P�$�c��@��� P.�Ÿ���&%���$��_��,�{��*�7V�IY:(����ҫR���ؤ�d�U W~h� {'�f'G��yh�ߞ���3�C�=����uf��g��´���JM�u噤>dw���'gx�T�*��C�<�^�v��b��Q��))E!Z�ZU,o�H����H�P x��@ �p~�ح� ��Mi#.֔��5ă�Hsi�! ����/��_3����K ��VXUH t��5��?00�����̫�o��qϪ��z��z�QBJ��ӷ���@\������������[/����Q��?�[8�Q���큡�:w��e�Q�U{&T�$���ܸ�P�9�g���� �o߾y~�|W ���??��N�ݴ���}R��q��]*��2�R)�-��X���$. ��vqA�PGG��4�?�^€�ȫg_����ߊo�ʺ"ˡ�Ӈ{!ir�5@�STl Z�6��S$�K��O� �`W ��t~� T>)! G��`8 ��뗾,��T[`��N�|��uL���tPR�� TQ�(tV-\�r?ɱ��s�d)��W٤�q8��@�D�as�Txy�C�n���}v��#�P�C*%�n�`��8�2�;�Z����3W��Z��Ŗ�Q��4?����� *)��H�b��Di�U>�V�T{b�V��@�������x X@�k-Y�{���>ɻy�JҳSǣ��x�5���G��1!6���R�;@J�<����cldc���^f�>��-�li¢��X6�� H�;��L�u�R�^wyݔ������u���;*� ?O]��\ǎ�&c��DƄ�Zd����� �,ʾR�!��0��f�Œ/�O����RSSΫ��� ��R^~>��l�J?5К�o_�o���_ bY���(��ͱ�%�|�IcE^D��~� �\gU����q�)ĺ?��*e�$1�%�YD��jR`)�{�/�J�W�I�3�~hNǎ-�8��G|z I�O��E"�T���bI$t� �M{��F��0!4*�S'��t�5�>1�6X�%�x�݇���RJ��)t��/�5u����zƭ&�4���%I��{P1񐖄Ҟ�a(!��$��ӂ����2t�|]$k�``�S�ώN[yY�`z��޺b�ע>�- ������LjGjM�vo���;�<���7G=%�o;�W�ϫY���.���a��y�U�7�P6���&'-�l����k����#�+� jo���gf��d��j��S��>�����\��}8 ;� :D �]��\�Cp����+y�J�Z s+}.���ң�������njj���^J��C�%Ql� �A��4�� �F���Ƽ,�7le�����5D���-B�;�����?@v�7yi�X��6��G�F*Jݶ��R �&Q�.n���`�a��i$^�q�p*�μ>��?&�\^�#���������J�r�^�'��5��.;�M��-W��* |8ϥ��u��s���Nm�B�e���<������K��[�1F6���a��ۛT���g<7>�H^��\�k썭֜Z@�:�@*/��_��h�Ƌ�H3��X�)���[v�M�߾�4�K���p�A��8�f�ģ(�|ң���…�������5i�����N�L��&��Ev� d.J>�r��?������d�B���1�H��t4L(�fֵ=��m��v�Th[)��� IDAT��&r)�Ӑڊn��}��vh�xI1������:�zh�ޝ��{fW[p�Є��zP�wD��S��~X��lb���Q���V��L,�e:uB]��J�j�-��n��w��y���=�g���&]��������=�2�]���F1��0��ȿ2�ߕZk)}w�sD�]chP��b������C��Q{_�������Z ���㎫5@�l~'�T���漎7��ᵥ>R���0���m� �����P��fľ�^��R���a�;������Ph���/P�ZF������R���,�xU5P��T503�ZmLR��r���Y&10000004h��@H��j�C�Q`�?00000000000( �```�N e#C��mD����������������5j�w<�{�oLx�?����Q�B���g����8� i��q�n����v��2�<�{��T[��~�zp�]�K�guӧ}��,����]XJ��= �k$��t��P�M�4*=��8��O�z�?�]�=���׫P ��Wq� �r�����pjRE'��,8�{+�aHP�i�i��.װ����{�wn^�1�#�n74$پk��z؉��\��7���^��)-���,�y�c ���k���%����Ǟ�2z=�;�P��u���Ζsn�UV�L��\���� ;U[���xpp���M�t�J�5��Yvc�f1鲃t^��U܇���L!�o%�-�浨�~n�]*`5��9��2� ����p �݋l����N����]7(�C�!/1��� �_���T��'�:����|�+P�~*����-5����O��t��e�w⾌��\������$T1�ăs���B�R�i�N����}����S+��jס-��t�jZ�����(��k�G���N9�su֨7�q e��\�湫�V��O��C�虶o�\�����:u9�v�wr��7S8�Fl�6���AT�l s�WyVIx9P�0��`�X��߀u��,��;����Paܿ����Q�z��|w�λ��3��K���/�Tr;S3`D�3iH�Wq�o��&��� 쬊�pL��a�j��O�9�Q6 �C�^�8�X-p� 8o]�\���A�:�ѤEs(���x0fW�b��o��BV��E��sH}�%f��������ڭ�벿��:+�,>a����;�w�/��eCzN��|n��0ȼ��j�\z%���Y� �Re�1���I*��8�M��)�}�B�>v=Q(�Ƅ?%��u�e�^~t����S�串g`xdԕ�[=?�-@�=V�����4�!��𼊭���7B��;�aR7��UK���7��M��Y}�QJ�vZ�)u�2����� �)���K "L�����D�M��co��/��<�־�5�ƒ\�����v��ր4� �t��L�y+�}1�h\)�&n��칙�s�� ����� �@�����������I祸�ll7�@Z�`�%��f�M@`�;{��݀��x�}�d�T&� ���Y�|��$��3m�y�1�ɴ��� Y;�e��X��ƾ��:)Q�Q�4��;&�I�b����e�#����b��D�"������'H�C�G*C� ��&���4�&f��Ʀ5I��?M]�s�o>�3�H�i�ڵW�gF�~�u�j^#�5*GUtf��`��{C������~©T9:�ک��s�m�!���=(t�4��N�J�����x�zF#<~��ZX7vֆ�(��hQa�*�0*�`�I�DJ�@I�.��9�s����������I�W�J���!*�&��N�k6ߣ+�ek��aO�͌Q���p�.��2� ��1@i����G�(1of�v�Yn�0-�n�RSk��zµ����%�=�4�nՂ�gl��Q�j�z������{�טa�F�5�c�����~5�}�>dw���'gx��Y�����vثC�ÇB�)7���������Ɏګ�y� 8꺺�(�]عu��?����뛘r�KV�P0�:f�����dZVA���M�-?z��͉��N����7>����wv�y^ :��PTMA�!3��%9�&��$J�G5�QތM�C3A�rI��!�? ���2�Y� C�3��`������Q��I�'���k��LR0��@�}K�n��'B�iK�o�� ɂ���K���Kt�AY�j�����ͬ����("%Y����[�te�*U�����F�=F���g��6v���� P��,)`�[aUU %@��-))E!Z�ZU,o����ҫR���؄ }�0R(�F<�(9����/]G�6�׏>E�1�1_E�P�!5�K5��O]10�@�wg��F��Rp����Nq8i��D"�e%c�8 &1�]Qd �_�Z�������U�}qAz�lUM��[/ݛ5H(�<�� G���ʝ������~�h�{Α�y�!r�U�y�TZ�䪞O�Y��|�BoIbL�Q/�[ � �|���@�q��C����M�n�hI @�&�?�D��[�wW=%�)�oO<�f���d��U�olP�J�%������·U�5������;���>���3MS�7�UB�$�j��Yֺ_���Z����6���.a�Z����"�"�J�K.)�_t�L53�y�hJ��4դ�|?��̙����9�9�9��B����ȕ֣X5PR����/���xj]0%�����;��o�t�;��x��+.�$ I̴٧pm�Nq0��V꬧�N6�m0m���`)�q�yW� ��ϝ�(}_`NCq���B��z b��~ 1��>�,@U��jF,����Y�/�z���cEyn��m�u� k0�>�������I��M��̣��R����`�F�S�/�>�4#/5� dI��c��Գ�%4�x K�b�X����rrr|A�^����G�g�t�`�QZR��"n���q�rO�x�)@����h����1��Ud|��m?�!F��ֵ����h����w��ce��-�.[��z����JX�W������X,E���H��C��u�?1W��*���3�7NOF���X(�I�4��p@���-'6����r�ǔFUBZ[�d��jZOr �B����'6~�����J�A� ОMwϤ�!Z������j��ތ{�&I���� q�qm��N M��:���RFR�mZg MkX�d���@�vj�\���H2V�����y�:���F�'�����SjA�?.���1�sQa�� �<�* 8 Uu�W��&.������ �[ c�=b���(�L��~�1Fu R!;�<4�Y-*��Eе‚��MS����U�BgG�����%�Ye&=9Y�v��������A��d�;^��TG�bkٍ�{��H�d��߷n�c�.���Ñ���fl,�H�z��J���j+�9���F�=y�@h2n��*P�FÇ��Hϐ�Dx��B��/�4IY�X�M���;~V���(��<2��|�`cM6�$/��h�F��Ш8'��ɰZ��q��D+k+k+�퉼���S�bLOFJ^& 5F�CQ�fc��^&��A3׬�f�G��~�X�{�O�Z�+U Ji(I���WP���@P����� ^)h���4��L��y>*Ldž� /l}lhE)"�Z���sРQ����Յ��44��J�IRzooض�σn�y뒓��u��^\-ӱ?7�v9��L۴�f�X�Z��1i��ڟ}n���N���7�Ů�a�TY���������?O������RCc�ب �6��C���b�Q�Á.�>��ĽV�� -my��z�k�D`L:F�P�2�v�R�9�E׽���E�d�������s��=m9��YMI�2�@ Ș����C�A;��߸����0�ߋk�ċF�T��t�W^Z�)�m��ʊ_=�.ծx�ѹVl@udH�rG�.���˳�p�����θ/���瑛���u�Z��ks�r��ܺ�B�:��~�����uܡm�%��Boמ�}�t90������q^p"+���w��8v]_�:�ޙU�ť<*Lz&����ݴ�J^���~���!#G{��{�(��d�;S��0x�1�'��#�\�Xy��F%a���Y�}��w� [�g(���d<����B��A5�5��P��. �ٴ�3�j(�������d���oP�/*�| ��2�� T��N����9� ��P�1T(q��0=@[��Y<��7�Q�hR3��3�v�?��]��)?`ω���8;�¦3����L+�N��Ϭ�k�b�bx�o�c��)G :a��(Y�cg� �-�`�2c|��[ 2U��묵_g�9'�W�p��I��c��NE[�)5�(�"X��&]@Xש����He�ي�<���73.����[��KX�q�wݪ���Τ΂��ӚE����c�`A4 =%�gՙ;\�rHM6������c������ӊ��v�~�0QJy�4vl�wF��$KǼ �+r�5v�>�MJ�m�J��wF>�I_Nr�$����!?����_�o�,ioS�Ѽ���N�9:!�;�Si�3搆5m=����:�aZ�vB�y�E�_����n�N��-�,v6F~����b�/�\�����}�>�ﷷ]\�fcGZC�m�T�i!((h�� ��������Ӣ���eǔW�{A��x�{h ��ġ)���;�ִ0� �F9��)��ng��t;�yt+X}ᅛ�A�AW���w4 ���"|���KBG���y�mC�P���}z�ew���iF��^_�8{�s 2���8�OTg[�Y�d"'�sn�g{[A�� ���NT�>��Q���s�;D Bk�`���ƀVzo_�����{[�ҧ응f��[2�@ tj����Z��fC7��@ �@ ����@ ������Q�jWlBTlB�����/!� � o�z<�Ͳ)��~�R��ߙ����e0f��k�a!'}���Z�j����nE߼z~��a\$^������8}-�V��Û&�����p���`�q�u�� ��M������ Gݶ�e+ѝ���m4�Ҁ�;�^� ����:�%��tm��������x?{���mvӣ�������.`��Q1:���&�އ�g�x�o�P�b�l�}=�/v�}�0��u�{`K7�q'm����M�d�4� +��\U�۟���bӑ<��+�����vx�{����=�]&�:=&�gT��9K�� ��va��S�K�/�>�޿l��Lv��^;~���V�(ɨSg��5f�W�^�����/��ы��@v���y���w���y���4l��z~{+����ts�X�t�]�]q���Ԥg�u��y�s� ��wqˆ�w�%�O�6��8 �6�O ��MhO ��r�J����ڤ/��4�X��鉁���LA�� >:4/���ܦ�z.�DE&2��.XgʫnmФ�@ � �ɻ��Y���U��qZR� ������%c�i ��ym�;�L����������_�������ꯅs�_ܱ�@�ķ�ڨ��<�W�_���ď����b�zYe ��� ~yIq ��Y/�Ӂ)e4���[ٳ���{L���f���O �����)�A��g_�����jE���Ԝ�8���e�+ʭ=��\4����=�������4�x����N���I��q��X�P�s�J� �����g �����/��QC�)�PE�c����_㾞���4k���a `�}=�� ��-���Xu���׷.�to%z�6�������0��6���ͽ[���ьu���/3wU���ٿ���XF�]���~�!+�x����õ��~_�q)�f�ފ_�]g[*��2�-���OV/l���F` Ib�C]���h����P���zyh������x�Ni�5k�R�̙A������y*�K�6���սA ��W~d��֣�UTQZ,�1�k�[Dk�����J�/�"�oHYݏ���C��yP�rMS����w�r�Bɇ�Z�L��E����V6�V�PV��=�����e_��g.Y�f��]�������Z���� aa�a'��l��(�ɩ�;l�:�ֳ��!F�u ���2~폲��G"3���hk��~�gi�4������yh��й�9��^��q�O�� �V�?�w��g��$�N:����+���<���a=E�)X5��ZC���|��� �ΠC܍�łN?�kH�� ߋ�&c.(iu}J/{'��?��˨�˨��P��2J�΀�x�����v�[tϵ��(s�ꯛ�'�ϒ�lߍx�]7�>�Y�w��Ӣ��+��@L����������j�ە79�7���Q�tA`2��&Z���V�o�X�/fN��]�~����c��.'�svZj��e8@lf�Ĕ�G����ӳ �`-u����Nxw����v�ރ�b/c��*>��@i`��+� h� dF��~)�:�������6��;/�꣢j^vDh��Yo-1�t��?�}��W�sﵖ�89�g6��ظd[pE���Dh|�ڭ�u��,��״��g�1��=�� :�ڸ8#���S��'����}n��E��?�����g��i[���rTz@@�U@*�w�݋���g�O�@���I�b�wQu ��P�q(G*]!?j�P� �XE�@a TC�SVU7#�y �W�0J0���N yKl�=��:�8j�023ˋL̯�)~|�k]@ �����8��29�NAe%�ͮ���*��� ����Ǵ�q�h�r[c�yg��[�t8�`c>z��j����r��(u �:�T�}��Ҽ��G�]�b3�'sz"(H�0��A��9� J�IEyQ�۩�sHim�#H��g�� ��+m; j���X� d~y�7� �ұ+�>-��f �F��-'�}��|Ɔ���_<���&&JS�/�eT5נN����ȗ���{���"�� �Dg+��.o�6bԘ������ �X�$j�ݕ�}>t��sE��/ނ�?���|����#�,�)����p�׷"�8�]��z�'�c~�2�+FR��L���=�=Fe��;b!Pb���S֔� 6��s�� ;����a�����T�""�y)4��E;K1���$�e�t\��_Ȇ=q����`c��8�"?�W�����ǩK�'�z��X|�{�G��'����eIHiFI��u�E�+^!�'�� P�+YyE�Sa��Qi5�,v���,)�z��zֱ �M1K�Tb�X���iLQ � t�����?'M /��3��ߔb����G�g~�]9�< E���9h�s����{�\nqq�8I&JJJ8�*l>ptu�r��5e�ɽ��ˡ^v��l���K�N׭�U1��� �~>旽��/r���#�$�O:@��� +�P �;��Z��8�Մ��L�|=��6U7�.�.�TYA9_l"999�@ L IDATR����f�v}�MY����(�L��~�1F�zpz��F�sp#�;I0��)H��tT���v��%hb��v՞u�����"�Za�sTP�!L�S�PQ)�� ��"�|�RA�Y��bV |�''�ڎ1W�Wе9H���/�#?;Gu�������!��b�)*)R���?q�O��HE^BI6�������X;�KK��(y�\4p�}E)���7{���\��E�c���?'�Dub����,�5-gO� 4�L�h=����a} ��:l�@Ϣ�Vғ��ׅ&��-�j�B�h4|Hό� 1��'@yh�6����h}%��� `�A�4hT.�.�@!���F */�0��E��Gz0�ғ�u�jq�J&��.z�S u�Ʀ:�[�n� ޳��7��L\��{��=���CG% E.m� ?»�:c��� -my��zg��� �I�d��-�ǣ�̰Ao`��c����$S�=m9����n5F�>�X� ����*���9��A�e��* ڱ��ƭ\ԅ��^\�%�n��w�����˗%���Ŭ+�ٯ Y�&�����N����;+��:p1zq�IMP��Yv�vų�N79+5��r�c��k��ůb|��g@�Y���7l���z��3�B�$#���{�]��]V��+��@������=� Nd��Ҁ襘_Q��xq���!���,5�E�`s���7�~i�*� _��v:E�d3��. ���� �*(�Be��9Φ�t�8� %N�s'�߂0�A����K�A�<�H�*� �ց!�0��v�RiЎ��<~9��.}�O��7 �aBe�O�nxu�%�r�v���h;�s�np8f9�C�q��T_�XWVf��]���'��]k=Ȧ�+3 �Q�)�����v�jP�90�I;���r�PuG�d�� ,H��M�ig��ll7 P�Q�+������P��V콶����7��T�z}Gc��c�Z㝑V��{[���){g䃙�蟅�_���x)HJ_�O�Ұ���vU����{DV3�}=q�n*U��9�����B{"?zK�W��^.�����>u�����ۮ� �t_Qr��м��"��@ ���G���/�p�{������I�m�����q@I�:������������ �����V>5��i�@ � -b�F�K;�U�g8���[iR�ƎC����ҤVzi5���S{g�Ce�G�D ��A��@ �����@ �@�� �NR�Xr<4b���. }��:y�VL��+��L�%/^�[-��k�o\>�eF�.t* �������� ��#A� �ד�����X���t ⧎֔�C��K����1�N?�5NU�:M\��Y��f»�u�Wӎ�h���W����Ӄ�z�_��xaM0��>t?s����:����D �\D�{�#ܰ1co��Ԑ��S`8qӺol�>�m�ȝ䶔{�I�SY=g�8��İνa�T�w�b�r�7k�)�-�����}I4�d��k\��]��e+ X���� #6�a�$tP Ə3��?^ Q(;|��<^�ě���� ;��a*� �Vw<�{\�����E��K/*� ��'�� *�Ǯ�3kg���e�/��[P����%���?B���Ed��E�ݛذ���UN�𬴦�()2>�Ш�8�A���|�+�ӂO^���I�W������F�Z�$ţ����G�J[�}����3p�z��h�qq�e�ȝ��Z�Ӭ�'��I������ ���öF�&p���׷6��H�����^_u�,�C����z� U��e�r���i�����3��z����t��h�%f:��%F�%�&((C�U��݌ ����Z�����NyN2& F*��8�P��1�"VR}�� ��a�11���xORf~�#<"v�L�z,����N+���}�O~9�{��Z\�ɮSĺ���������XǠ��̀[�@��'�\��Z���?f��� ��=�K���H������j��v���$/7W[GG�Ό[�%V �z���˟>+')��# �0u���5�R�(j�a��2��2����S�j2��� ��X���`` ��Q�{��d�%���b�4^>���F�/gu��r��_�{��ֆ�G�X[-�+x�g��������iq�� �����L>4��f�/�N.��������Zy��5�6Nup��;����J�Op����(������#f"� *�@���~A�?.���1�sQa�� �0�]�7q�m�<7i���4���!���)1�۝U����j�^Ƶ�J����P�Q��⺿A� ���7MI��O�CJ �U5���P8�Q�J�=蓣�����|V�Q|�ƶuvxt��;���ƚl��=�����@3i����ՁvVz��&�\�''�ڎ1W�Wе9H���_+�jl�#O���F�={�l�>hl0u���\}��Jrl����<��b��y#4��̰Ao`��c������?L�d��ݞֵ��b�Q�Á.�>��D�(�Ӗ3񠩘Քdk ���9��p����rv�} ��?�<�Hq�O��z�n6kC�$7ńn��{��Z���cnG�h1:7�:��~�����uܡm�S�I�0������d���oP�/*�[ LD�Ж�`=� eB��6���E(�*���N��a>J;��;՚�IQʓ�bnœ��z'E���_�.j �r��KV���X�~�̪m�,�CL�]����q^pB\�BZ��w���?]�,a���/f������ .���/��/�T�ӡ^]xi �ܷ�'��1�(�"X��&]@Xש�1���N���uae�=�u�����,�Ԡ�s`>�vPa䞡2�ԠS��{���6[1��^y{$kM6����4���l HAA��ǏN+�^�U�]J�i������Έ�:c��4vjj+�����&u�ujZ�i�ɗ��/��,�GciX��s��ʮAm� ��z�ݢ��B�y�E�_���:�NK��� jh"���[B����r9 v׿��������v}Th�~�>nQr��м��"��@ |��ruf� ;m�� Kj� ������� ��'G�'��Q��� B�%��#p��%��;��ޣ��X�LN���P�����A�O�@ i;�������B��9Z齕&�M��R�q ��I�]z�i�wFZ��Bz��{gD��1��R����@ �'U$��E�R��j-d��@ �@ H �?��)�멵�m�,��!C��m�)c��o�fks��ul��`К0߹���t�������⾞���>^�&�SI� YO���v����lq�&�އ�g�x�o�P�v�IKP�=����7l,��K/)5��%A�Z�-{�T҄T��)s�j�`����o�>S�[�����I��h�i��i�w� 9s�}�~qm�e�7Ͽ��y���4l��z~{+���,�S���q7�� ��2sݷ��o� �t!@��k\��]��e+ X���� #6ߡ}�_�}��ī��^ӽv�d?�#���N2j��n������Cv���y�x�]k\�1#k���6��^y� o-0��i�7��O�6pd�6�;r'�-���a��TV�Y;��<1�s�kn5&,��%�>,q���δ�lv��>����sh��P���K/*%����S�p�]��ia��X7eT2Kn O2 T~0�e�����b�#�9�o{1����C���`��~�Y g9:�^�Mȯ(O >y�vp0�����/������c����C=����gj�z�q{�� ����b� +� �%F�-1ә} .1:.Q4`Iد�����W��:�R�]�F�&p���׶��������Р�� Gt��rG�a��#����"�*⯣��xB~Qb�C��XK�O �^�7S�j� ��<�w�qo ҟ�a����݉<��鋸x���.Cߝ-@:#=��#�O{}ՍIw�q��w5,��$cJb�+� 4�nF���Ш�H�E����Ww)q3��I������ډ.xE\�w=r'���4�"M�g)���� �Vx�ћ�_�M��,�>R�)��6'��ڣvƏ2t\u������ �\��FxD�p���X��)��V ����rМJ@}�� ��a�11���xORnXd���xO���8�ߧ˘�b�Ԯ�a������)���㪿�n� �rp�8Q�e��(�goܹ��N4'9��՜ PJ���{���R"����PSB�h�U�/���սA @���db]KHA�UPyec�#v&Mz�f@��,��z�X ��.��M����q+"�ʥ����V5��Wm�ݮ�_����j����� �z����͛���p�&Ee��:�竧/���D��3�F@o�0���0$�je3�y'[[�X[���<�ݣ�� �G��w�7�k�yC�fN�僯>��Н�>�>�ÄQӖ��W���U;l�q�O�o68Q"�֟~����p���ĝ6Q��S�w�0u ��gc�C]CCL�I�׷��}���*z<�mcm�د�=A�/gu��r��_�{��֦���'8���wvZ�}��a���I�nR��̡�(O �r;��7�l#�#<�c��>R��S�����J��]>�ў��k��8��j��P��Q��X��?�&SQk��0��5��T��BE��"�F�B�_��X-������ݾ�����N��s����f�G����F�@y��5�6Nup��;���� ���fy��d6�wce׭9���䟦�9��Y�S2}�_�͖=&N�r�;g�šF+\���$��FTމ��=��32L9*��)�*��֚?�6�q��n�=�.�,.����י��<�~���RD5�ĸ�C�*@i)����z�������p`��-���ii�Ji����v�����(�F�$��7��\ST�}�o!J���Z�{,�]u���[-�H��@�r��d���7�P�ܓs�N�>o�L�e�M~^�uWG �uz�4Q� ���0����y��M���[9A�!r�?�����g��/J"ßX�X��l�DD&��3������'� ?�z�F_��C� c������(������J^F�ٲ#X�isچ��)�O��L�w/"�C�%>��F��C�Zy���^m\� �I:��}��{N���&gj3��;��Mfd�=ld$J�W/�T�U��=͓H�{jj�NWCvSA��l#�#�����6������������ά9����1?�d\Fe� L�b>VTP� � PÇ�GP��*�����|!r�W7E�������P��U?ľ��ʻe2���L�ˈ�u��o��^��>*��eG�&(���ޏ���*+�c�TV��l��T����!Q���S��]xVJ��Ut� H��)�8�f0@�v�����iS ����"�j���Z�B��{��}�>*���RS�D-K���������3E��`k@�;�(/*z;�p)M� �V��y��Tҝ���؝��s�?���J��$��\�H ����0 TL����Ľ}��l����.hL�v�P}��rv�]1��4'[�%�쵧�z������bU�p���2U�_]��q�N?+BI��k�',z���k*���2�X:�׵�8�g��9�_B^��t�!��M��ї����6����X�yُ�wjS��J��������u���n�.���Đ#>>�^�4��&�nH�e��g�tsZ���������i�7L��(/�U)M=8� �I�Lq��8��k�op�ye���b{N ��F(�ɉ�E�E�L�ZG�q痖�455>�z�j�l#�#([ux�]ƥ�]X�7*� ����LW��h�ba|R�k{��\��(`��ֱ�%F�� �����%�D�_6�ݜ�l6��Q ��Ħ��������ǩK?V��&n�_�ް�Ԇ�,�( �L�~��5�w��x!��b�f��`Dŋ���5����\��ĸ�:�|����UUTPԜ �U��@���d`=1U� G��!�ʱ��yU�(� Z�'*~�$YP����`�F��{>$|�Y��Ѓ��X@�ˈ�K6� dE��� y<(��2j�ݫ�ۨ��m\�=�㉧�U<���<���Rm������� P\R���iB��@�&�N� /�>xY �# �o �21���uMc�j8�,�N-����}urC�Fe\�Ӡ�^�tqˢ��V5���~�����4\ZR���p-���h����1��Ud|��m?�^��W�9rL�ʻ�c3j�]��m9�A���&�[\\,&��#H=�n���ޟw�TcKrrr|��u�[GIqg)++7�,�-��FzG��r�8���pKEϡ������+�mg~x���J�G3@��OY h! L�u�{�����Լ%ȧD�Ʉ@ `�Dk5X,V}#�QR�J@o�r��yn��?�l���@ndd��a���Fn��uc*� �Iu�Ԡ� ���q �o%�jAƸ��3��М �hb��v�Z��Vv�x��T� ����-1=S!;�<4�[�:*���@G���dEе‚��MS���#����#sG��}V1w���d=�y�����?i�ٓ��pBx���or���F�r� {P� �դY���l�;=H|ڤ����a} ��jߵ�"…�\� zy��P~v��@;+=umC. Ғ��?�ܘ�1����o����ٶ�σn����L�{,�4�X��/��/�$���fg�+�u��[�|�� ����!r/�� IDAT=3���>k���:�Uc�4( ��f�758��3�jߋ*&�$��/n��z¶僻HS�7�dSl�᎟U=&������<�ֲ9���雦�nhhT��S-�YØm�wTUS���{���䏉V6�V6�V6N�y�+��z��8�Cyh 6�A�F������*�Nx��< 4́����+V#�\�4*�̤''�ڎ1W�Wе9H��,��+u% ��hhi˳X,ֻ��5�Q%Y��C]�|�����2s1LONֵs��a+�L��9NM\ܳ��������vw�Ϸ�+K�{#�W��r�3����� �ӇqE<�N c*U��r�k9�ce�ӓF�>(-�=��0�� Ga� ��ʫ;�Bɞ���MŬ�$[�� �/��_�����6�*��ͭ�.�/t��ޛW� ��Es;�D@�� >��o;�Ma��+뼮K:�li@�R̯(HO��yW���i�m�S_l��kh��;n���._��{���˂v�����%,^f�����v�?��]��ka�39��/��%W�"l��K�S�TG��.w��r9Xt.^���7�~i�*� _��v��ȑ��'��܊'�u-�쳞��o��?C��� `�gX0&�d�B�lzz��o=B��CL�]����q^p"+���w��8v]_�:�ޙU�EW*C~:të /-����I���������4��l���Um{ggܗP����M1Lن1/19"@��}��q��fmc����d]@j���_]�2��B �u�|K�9�k_��9n(i� � B��O�pOf�&#�A;��߸����0�ߋk�ċ]�!u%�q��T_�XWVf��]���20�Q%�����u�\�bX�c{?�_N�i��_���+�����?1r��s^�Xu"r�Iqg�Y��h͢��~�c�`A4 =��ρ�L�A �E�{����[�8:/5̩����5�0pP��$�&~V�3�{���6[1��^y{$kM6������}[q��)((����i��k�j�1��R����Ǝ���H[�4�Զ�cl���-���$�wF�g�-Dz�7�H���$��KAR�j��l,��������kB�?�����Í/�BxMˊA~��� ����ԕ K��� j�j��$����s=���;ciX��s��ʮAmL HFe��ɏ��U������{���O�g�����$���?B�p������6ې�j�{I����E��7�|V����t�F9�:��U����{����ѿMY��������?�_;(q���iM �@e���<�<م���0ХO��Oj�NB�i�� Z�?/W��� �%�K���ڊ���ӣ-�C��<<�=OJQ���g�}^ԩ�G��Ȧl�0��PϹ����Ih1�}BK ����T�>h�v�NDUړ�u��@ �Al��PWWJw�e�0i�e�Ǝ�e/� Hz�m�J�{g��xFB3,��k�GJ�ҧ'#�C��N ��֐�6yi(�4�����@ AZH��@ �=HQ_O���h+�z\q�����A�‡F��]� Q� Qw�k���2���jC(��W?��)���Z,9��s��,�CD����T��l?y�V�ͫ�w-�;���ǠĐ�v,��;b�}���2�~(2�k�j���k��� ��� �� Pn���� ����m��|�u�ҭ���Wo��K�2��Pൈ؈���>��^ .��Շ΅D���6�/GbhJci��eq�xC�������n�:ZS�Y;D����_:�/G��l&�ǃ�,8���* �������� ��#���Hd�@z�f7=j�ǘu� �ד�bw�� מ�J����;i�-�@� ������<�=Ա�n>J��"�ޛᆍ%�vl�F;���bS���-��&d��E߲GI.;(�_1��{�@g�2sݷ��o� �t!���M뾱�� W �)��9���K�E�g���M����5�k�O�S=�^dF+Z�X���φ ��ߞ���s/�T��fS�1#k���6��^yU���M~�r�[���C�}�&=�$��ܛ?L����9kǑ�'��p�M�����oΒ�E,�i�]�?�T���i��i�w� 9s�}�~qm����B��4_|�@;<����/�[�����r�v����׸�ϻ8��V��Ͻ�Fl�����h��WX��^ �qy�E����1���R��d�?��%�,���� B������1���L���(�8b��� p����\�!��Ld�-]��6�W�,)=d��@�) ��>�g��d e��й�ѡ�v�Z�@�H������aa�<'חX�Qk�î��ъ%V_�@�a��#����"����{�wob���f��n���T> ��=xpo��IO ��`ac��T�}�t����?��2����3��/82���W�(�$C�w�?k��+���A'=��Z�j���!�@��f��{�h^Qn^^n^^n�ʘ��o>��\�+�Jkj��"� ��@yq1��������������{�BJYMM��?�ډ�<���}�ϝ�����c|���H�YJ;x����Iw�,g=j.֝I;�?���傻~C��� ]O�v���1�i���X��I������ډn�������;�ϗ`��D����H�����x�:4F�&p������Z�;�@L����#b�W���G��m�'V's�h\�����3��z���d*\�����)� �����VL�K��[b�3�@\bt\��i�:��xO$��l`z����i�Y�w��Ӣ��+��+��=�vUS7�kܱ�7l�q�O�o6>+O �r;�\:�&.'n܊�r����$'���a�[�ƺ����x߅1�5C�� �,#:�v����hk��~a�嬮7VΙ�K|��ڈ>�S^w��|��FM[��_�� � tҵ���8s�"֞��;�s�x$��3����ZϞ�%���sj����/����t�Z��@]]] �kޯgo޼u���s7��l��� ��0t}u}���?��R�WQ1נ۷�~7 �X��� ��֯m֛� *0��X�Q,������� ���ZWx�� ߏ�L��,�{��%'�[�P�(cպ�0�rW���l��5HP OAX ��Ҍ˨���P�NJ�=�^��� ^GMR�O�+�'@ �A!�ԭ�olR��b���k�t�ʹU W�Ryti���U�`;K#�����T�}��Ҽ��G�]H6�ٸp�D�?���f��5��L���(3hϑȔ���[���\_2��2ywܽ� ���$6�*I�Dn�`c>z~�I����r��(u ���� qޏ���*+�c�TV���������򢢷S ��$ڐ �䱚�m��Dj�i��� ��0�5�lw�`K�*�XI hP�*+�<�4\h�_i�iP�@������hL�vb�:���C�n�ۜ��f �+�[NT`,ja����Ҕ��)���M����i�~iN�h�S��kOg�� �I�]�0튧���W�4��<+�c�ϣ��Uxx^1{�İ�S^(�'r���ۺ��g7_]AZb��k���:��%����ȗ��「2O��վ���q�N?+BI��k�',z����Ŕ��z4�J�����$L(5��3�:��`�PxքI�����@5Z (2��BY�w*���J���L �}�W�:K# � B��Ǡ��Zˋ���:Ē��i�;�r�����T�4��[��.�d��V����-�u�u ��K��m��ǙG)�� �ė}=N]���<7q���:w1���_�L^�r2��@�2#�O�)����]!�P����`�F�SmR��T��F`��/V��.��C,6k��G�!����� +�M�6P���@i��Q{�^����}�%j��X,���Q1999����P1�ѫ�~D|fUk oCJK�UTT��U�9rL�ʻ�c3j��m\�=�㉧�/B���ٖt� hr�Œ:'��[מ�Fd��R����ȍ+�.nYtت&ֳ��X�U�b�� �,eeE��t�\w�n���݌i�{W\j�E�-��B� FH�����}���w�7��h!~}�J͓I,ģ�{���-T8#��&M�T?�(�%ƨ"7�iTƵ9��4��������L۴�w�d*-�S�Όۑ���7�k����`h���X��?�P1��� �~>旽��/r���#�7�9�e�>p5@�g�D��1�(/�0�7q�m�<��=����!����0 �Jxo8�~�R!;�<4�CZ�j*���@G���>��k��Q����5����Ry��E^��:�B������u�U��<�@zr���suy]����ɢw�����<�ֲ9���i]u`2s��[7��vL�FB��fg�+I#�}�Fo�u>�ƈ���'8�V`s��'�6{��9( ��f�758��3�jߋ*Q������g��]Y�X�M���;~V���(��<2��|�`cM6�$/��h����Ш8'�ՇZ�-z����ԏʫ����������wAA+6�Xc�-��1FM��-�ޢ�i��&�L�P��QDQz=z/Wv~PD��C@������7����N55Qn�[Kً� � f��(e��.V � ��'/�M뤦����� ���W��1P�J{zv��pY9� b^��8��L�]�h��z�L�\T}�D6=�Zv[������]Hq�g��:�U�������ꆕ��l�K��C=�^@�M�fw^�FS�����]> 6����UW����W?��\Bj�iw@U��G�5n+Ll��Tdm��b7SɌ�^ P|0�e3�.A��P/zӽ���CH(ۤC�.D�PA�����G x~koa���k�O����鉗�� 7zh����v0�G��Y������s'�m�*�'*�=v�m��+S��O�Z~���'��|��{�p�r��LU�<�}�? ��7�[��Ǔ�·UOB�V�?�Z��dT+՚�P���J������R���CJ����!�_(�@�yV���� ��9(����[E���KR_���Ej�q�X��2N��昵�^o߲tĊ#wT��Y��r��|���&Fg�%L�؟!��}yM�?zK���a4���gv�hc�pI��}B�>f����7��A��3"��<.oR�=gkP�cZ���)4,?R�Ba|�mм��"�BK"�8���ʓ��vi�GU|0�;��Ĕ���I}�0��� v�|#�Y뵭��?tOн[�&9�F-�!͏(�����K�^��}��틇�䜼��F>}��%�-�wȬֶ��T%\�������F�0�g��#����?B�����M�mM�L/W�����n�ěJKdH �uw�̻;Z� � �~ -OUvd� ��3��/�׹C�@ 4�~�O�*oݍq�BLCt��-���@ ��v ��@ �����@ �@��~ >6���= {�0<���z7 o��ϛ�ާ��w��u��K�泵]AY�=�$$pk��_��V�~�N`X����E=��� ]�����S;���dkc\��?w��ݽ�ǖ �ܺ �S~��5R����Z���'�����]�e��^ y������z��ҡ�u�‘���?��:��73��ï�y {濺gu\uDž��w��3�>�Q�-ɜ��5��1��o��8A��;���;��m�Ү��A[议2��?�v���7alb�D{�q�u��w2�k�� ��_�?g��m'��?�� ��e��,���Qgc�v��w]E��m���긷'=��_��u:�ǂ!��p�5���u��� y���уgbs��Iw�.��#���#��4���B�e/=p6m�ի� ߛ Y�@ 43�v6��1 vPveE�+��g;üH*� }��[���V��7��.^.��d4Wj�LY&�1L���.X��j�R3�����Ġ�� �,A�LI�Yt'b�L�'b��sqѶ�G�1��M��?͊B���Z}�0�����/�r��ҁ=�,�_9��Jw����C��t�i�[��u��!�~Y�[�=j������R�O���jz-�������Spˊ�ĕ�"LW���ˊ�Dܮ�m�n\J,� #~��_V��ۭ�cԕ��(VF_��H�� ��_9�w^o�w�H C�R��o`P�I����N�HJŅ�!�hSm(� �~x�G�߮ʼ�!�8��%]�z�[^��}���*�ז)?��,Dc�Fo���/㪚յפ���|x9����.{���b�n�O*{[�!C�|�i�{�޷��2�Z�tuqnN�×6�1�����Օ!ɘ�L�@���@�xj����$��D�_M���ٸn��h d�A=� �|��d}���+I�yg����j<�� ��s�Fm����S?!� X�����Q�7���,�|�QI�АI�EoX�����@���D�9�?_�b�]��pX�z��C:/����| �o֜n��Y�} V �����V�� ��*�?XW��$X[�,Q~�ڇ�<��$�b>6҅�"PP�-��{� ���`;���:l�D��F6�d�|;��J�x������ A:�����G ��OS�ud�Րtv�� ���n+������L���]4Ac�Uﭟ3cSGm�k�@���������%�v���Z24���p�����ݿ��a��Z,���0��p�{/'4�[ �L8��i�� �-� ��%`ʐ�Μ4iʬ�S�-�n�|�gF <�D"��Z�p0WK�\O�$c~2RB5��( !�� �*F��$�" _��Vc7Q~�C!����m���b�q���' Ce4p�J�t�����iP$Ɗ���2I��m��ënމkH��(���� *N>�m�w����'�o& 钘��Po�L��ȸu�thJ^FP�SlbR��j��w�4�d�w��E-���y�ac�!+*s��S���j�ͱC3%^n�1��)v6+l9���������쮠��2G,��(C!@�R�����t��W%�0�qt����4"�PXQ� ��B��pe�m70f�;L�L��_P�ٞ�^�T�bߚ]� ?��`-!��Sm�p�%�K��-JV�,����������ck��mf��un���GGZ��*�H8l�e�����N�ȑH����OqIb���F���u_�����k3^�X�}�%\�x�Ld������gɀ�GW�yU,��sw�N�YÕL:1T���][��8���V*�mA�/g�JC\=� '�]2�kC�^�����و�?nC ��0v�2f�K�2k&9 ��y9�SG�(���b��z���Lb��D2$����!S��P�mc\�)LM) Sl0Y@��,�>ޘ~�%k��[]�:S�zѥL�1 ���d�$_�6�0jDɭy� e��~�t�*�yz��p���w��|�3��zA#uʢ��J�lv]��I:먳���N>tv�X���h�3e��g_ɞ�0�������c燠5�v�E��(�:*ys*�f\E5����'�l�������=;׆c\��`#�v��:I� E]�e>O�U�-Gጓ���4�a�7%b�� d!��E�A`�Z�7�#���@�Bsa6ar7�PX=��?d��#o7���m$ �USb�XIm�2Mc��W����̊_�M(����|��}�U���T�8�CW�q:��odp*pf�o�G�L�2���Қρ��y<@Qq1�_�Je� (..�)�p����Sˊ͑!Ze?���ڙ -0�I�j�+?�zD.�&=.\շ �2I2f�Ҍ9��Yz�%@u�@qnK[�P::�99�#7�+��0�'#4���:(1��h}�*DKqʯT��\D,�eݎ s����L�;dP�-�u�{DɎ՞�5��~�����{��~g��e�4��ʐ�eFE��m /Gռ���֌����W���@��l���6�L:�H$�/��"�$c���>�3޳�>����=�V[ 4��r�Ŧ���:���zW� _�:��~�7h��Ox�Y&�Y�z���!�� �F����*- P\N���a&�7$Af=Ծv���J x �^�{?S�r��_�˜��\���gy x���Q3������vʍ"p%��q� ����e��հ9< m.��b����_�1�hl�961���ZP�����Q��.��!�@�(��f~|�F�ϰ�`��R7l@���In|�a*v��k�� ������F(��o�����K3�.�����WL�{��ֽW�pK�������o�]���[��϶�����: ��EM�>>�z���Ewtl�ΰEɯ2Kt�_�����M�ى�nXy��f��(9�s�Ed���i�q��o4���n���#���}a�.�u������qk��k���������Ƶ�%��{��J�%�B�`qy~Z���[ơ�{�p�r��LU�<�}�?�Λ|=�WW�?eW���]���>�6��ë�~������@xw�f뭫�xkKRCN�:C˒d�Of* @$�*q {���KHm:��� ���2 ���@��iJ�B�����FJS�Á*�<*)���C�.D�PA�����UW����W?��F���Q�?j��[{ ��^;|z��_.OO���l��P�`��%f���8�C{�6��A�� ����EH�}����| �Ҟ�]�3��Ɉ���]Jo��o�����,aF���8�ES������,�O����w���w�>(o ;�p�����7��LA%�X��Ǔ�·UO�V�?�Z��dT�Lj/0g�� v hs%��B���ՠ�vK�E�2;o�tJ>�z�VQ&�(ǒ�� � RPx�)��+��9P��g��˩�R�w����0ib�����5I��-�K�G�Ie�e�a��w۠���4}�8��Wo����� �_��q����§�E�yQq�s��w�*������t����w���7>lԒe�8 ~;��9joDk��I�a���FƷ��[)2�@ B�Bm�{������^t���ND����,���Wb  tɋ�cZ�(§i?�о(��x��#���Ζ����D��3��hm+�5��*0�@ ��.�9� ���v�����51i ��_�Ah:mp�D4�@ ��U(��f��wf�2�@ �@ 䅴�@ ��������̭��~�FNZ]G��K�v�[w�f�)�x��/��i.��R�[������^��;.<��;�}o�����R�r͆����_H�����Smx�ᰕ�_���w�sQ�f� ���5�Y������b���ߟ�M>BBm[g#pZ��5Ӱ�R%���<�?��2r �c�Cu��f=�P��.� ��œ�b \��G���ǵ���qDž��^z�*l���/�$ �{k�U�R ����΃�l��74S��ՊJ��Y���Z���j�z�z���-t�*��_���˿_��ZZkBh���˹�� r��*�xl����',>%��w� ��@��[�����2t��fK�U� � �<:cHבs�r��3D�5����F��~���wm6��f|�h�o�X��@�[4�K��1��� �(��(��(ߵ�� ���%h�Z���Ew"��D������\�*���%�<���"�= \�*�N{� ,�@\/�e��O+�b�*?����F�̺u�>~���/ �qX�P���� ����FdBL���6lIr��sgoD�u&�V����<|�ri�Tn�YG���$%�<���|������-�D'$F������$43EqA�/��HxI�@'7��K^Or��R��ܡ]]������6�ƥ�R��0���W�(���"qei��Ue���"���b��Egl��v�Mw�_s�+��6��A�i�u�cm��ĝ�Ю��A?`�7��.k�y����O �����oF�4�tm8�pv�$���e��� �����t`AOu������Ե_'��������ge����}o��=�A����{/8z麷��������;N�z�c��m�o��;ق%;!Yƿ�ҰÎM�4���ڵ�(�O��VP�ݛgv�hĭv��m������:�~�)%��7��>��weu��!��}�(�ԛH�s{��K| #�t;�%�r�� [���U��P�+�YG�s�4?TU OQ&ƺ2G��l �$ł��ҷ��/��%@q5����ŵ�JͲ�5��QBi���M |�h���w�r$m��k7�!<�M'֍6H�k׏>%v�_f�7c����ώo�y���}������ȗ�#�v�F\{<�P���[����S��Ź9U_�8�<';[GW�Ɂ���v�Y�����;lp7cd��bk�W�����ϸ/�y�����S?!� X�`0��S�k��k`8k �IX-� ^MGeҚ���Zu5z�fc2��V#Fq�oG���0;����/�mxb��ˁP�r���͓\���uߵ����;�t^<����� @y����M��uL8m�\[� N�nr�ѩ�]�N�#1�k������b���_��Xt�dżY �2�*>���� `ث�rpP4�M��C��������e��N@eԪu��vNw�٪��� S���H���['� ���|bM�A�߀1��R�r�� d��nG��9��O�E�PћuX�����em7j���(O���A���~ �� >�0��`���H*�@A�ɒ��C�Os�z�7rh7������ւ�uOkV꫌�f��@��Rxk�ʃ�����g`��,d��E޿�8������{8iB���&�Z����W_����m%(��u���/D}LG O"�pt�{8���%b.���@H����k����[�lׯ�C׬�xo��s�ܝ:j�\{NCv��@� M�"1VTP1��' Ce4p�Ju�1�>�$� ��V1��� �P��X�Y*h�(v��Wݼ�: ���A�9���� ����uN����*af��' V��҈�GBaEE|��� !��0�d�w��E-���y�ac�!+����2��(u;����IW�^zUB cGWi�JH���R��ɹ@�oo���#h�(���������n��]`be�x=<�RT��ܮ��)Y��Yw� �]$�&% j�@�|��w����z�5d�޺4������¦b��~��O�B�PO. �8ڸzGV�1��k !_�j��,)`�Xb>h P��dy%�<>����yl�� |>��W�������+q���)G٨[oGt�IF�� ���f�!=4��,�!��3ν�a�@*��dLQ��b��1�x<��M]���JS���P86�D"sFa�Oh�D"�U���� �2�-�59�]��U��C��I:mg W"��J���4��8���iwǣ��a!�Sl����X  0�zX�b��Z�`�������aԈ�[��I%5�8R�! 8N]�D"�e�'��1�|��p ����u��N��'�l�������=;׆W`�i\�z��g� (��]Q�v��ۏ���1]��k��$5��d1p8����<.0�֣w}g��u� ��|���}��Vea1@!S�Ks܎O ��3NRB����� ��N��t��PP����ț��U�U 4 P%�\�����QNI�t�7�9�L޳Zz3n)`��9þ�ej%7���Q5�g�T-.�Ϋ��Հ�,\��4F��N����&��< c �f��������l6Զ���N=I o�ǁ��֌��<�kK���i�����q�Ź9,m~��PGG7''�ɁE�����T*��9\,��Ji��k�6{���1��������u�h)N��J���<����5bp�� KI$����b5П �HR�^2�+�} ���o�,�U�j9��j�;fS��',��+8;((wJ�nڎς6�l�Rsy����Q5�9}�5�,:�[�MJIS�*�/3�.�J_KR��K���5٩7!#�Ns܎O ����y�o<���S �WT}G1�8I���D�u���6� ����P �S�ʺE䊠�%�(?�}�����������kG*�w��`l<@��/ae#�.�����V�(���V�DD�w��n��q�%77@c��ێ�4Ϣ��~3�Ι�~f/��g�E���:}����4������FwU���P�x����f�DF�R,6û��U����~fz: �#�ݹ~���V�В�'Vfw��+� �6�����@Q���uRSP�w�2�$2�%@qB|a��� x�l5��*!>�q�� @� 8P� ��T䂖�TAo����eд �2�v ���0����{�7�=bi��z}�٪s��r���ˬ����t�g��YN�|� {���������b��*��b|�i��nX�z���0A`@U����P]�@�S6|?���&G\��[B�5n�w���������c��,�ii�Ykiup�fv?�}��[�f���(h峌�YF\�C� ��� Z�ɷ) X={kHiu�̋K�}.s?Ն f�n�{W/���cL@���ND������:r���,/6*��~ � 2R�ա�A�\��M2/�}��]]L~��0��ox���}���j��[��xF�{.ܿϵ�Z����H8u#�g��� �f~�����º ������~��/<�/���I�/o�}���Z?���g���Xߘw\g������ Λ|=�W�w�?eW��zw�f뭫�xkKRCN�:C��i���6y�m�y�Mi��[�w���?\ݰ�؝�|iQr��ދ��@2\Bj��C�.D�P�@�������r����. ߏ*#;�1��Ԁ���O���=���_��.͌��n�c�s4Jo��o�����,aF���8����oO�:���O�֯>٨V2�/L|����IDAT�V�U�"�~�%�?Hm�Y{�Վļb/Xqp��6�8��О��5nv���?�:����캖'����?����+3N�>4ynC�3��zSўF;9W����’t�o���鷣=#o.�P���J������R�j�F!�!��� ��9(�*�}�E���KR_�meI��$���:����sW�nhd )((��X:bő;��|�o������|���I��茴A��ú���&;�i~儶cI{����Ҙ@h�=�]}Ǭ�k���M�;d����QKn��X,����稽M�I�`�~;�EK�#�m����ۢ�Ciؓ�Zo}���0�@ � ���]��nl��7CB��{�s�]��+����ɍ1M�I�`�|;���$�=y�i?m�ȝ� w���]P|e���/���;f��Ѽ: LSo��!�w6�"�@ M���?���?�GE��ۋ�M�u�lי�^�$�}Z�Y��5$��@ A^H��@ �H���8HA�Ģ��������{���^r�@� ��@h? %�>�7Ӹ6�A������Ra��_� ����*jE���V�(t9�v�fo��Մ�>I��g��2l�H�Qn=L��W��Y5r�F���������*���1L��z�s3�ûG��m'۸�8�1�= ����i��-f'��Xx������޼�0����wVu:��z!� �<:�ɢ;u� ] �� @����ޡ1� /��N���H���K��^`i�t��U��zX�>�+n�ɷU]��UM��7�5i���#����'�I���+����}��vu9�ϒ @\,�����Q��b�|x�fC~�[���&�Gfpu:u1T�b l�ԛH��I 4d�퉣�T����K�=q8����ˮ��4|���C��j~k�ڴa� �o�G��\�g������*#���zT�ρ�ͦ����Gh����8����}�`ص��*,�ν�K"�eԍ��}����ei/�.z�9 �A�y��Ms\:��3#��_��r�X�x6L4��~`��������Zk���~�kV�]9`�˳3Uƞ�(��s��A-๒���6jP�*��e)�z�!.���OD�,ՠ0�Qh\�F���̹�i�i�Q��eU\��]�̴U���8+6::�T�f������Þ� $)��r���Ѿ��� W ^F?O/�A�aToӪ�G�;��+�s�<-5sq�X�\��J��i�iO+x� KO^ߥ���C7k]T��&DE%Jc��T��쬔���a����<7������g l �j���=_���'�]mTh���^�F���a�W�&Y�9��Ž2Rb��m�Z?�(���=�&����؋?��}G@Gz�\�r�b[�uQnlDTdB���7�Q'3��U���:�QP&x�T@Te�����Jȓ�ۥWg���,���cw+����a�LJӣ#^e pQrDTdDtz)T�n�ɏ{�P�b��h�\+�hh�Y��Q����,mM%�h`�Q�R����d�ﻂ�}WCNQ⋘,�����9�Lj<#KU\�<���{��hY�����|�"������2�����D�29��QJ��8��ݧ���F��N�� ����pFq�A7����066���=v� r�x�=v~�tw���o�` �����'/b�^������&�r���ظ���+]t$��@ ���� ����r(��~�E+*2���Օ�J��1�|9��W`�� �A�.�;y=�]z��QGb��ptR�"?������V �ُ.��U�S���}���G��*yŧ(>B@�S�B�X!)�JIK�)��&�|��R�x<T����cqqfZjJZv���5� �L�IH|������6����/3��m������"T䦤��dT(�kp@������,(���Y;�_���U �f�����B!���� DQ��.D�}��'(PRR��[צ�.�,!*��G� ��(6�-)Ɉ}�0�TV�47[H��*�+�$luSn��Z@���?u�E�q9@Ki���� H��~�p�W �^�P��{��):�t�p��UV�׌Um�QoKG�h���@h4�++�Z���� ���m ��I �2;����=������+peʽ����r4>?�|����WR`�(�(��q�b1�g�lx�(�8_�nS�鮲R7�W,)�-����E԰� �i�t��V��h��V�b5�w�����IO�"��)��L��( �k�}�! جZ�4M�09�VH%J֍S��nje���e!@2�P�Mz=�Y.75;u�(�I)n�&�{R��^E�)�Yw�c Ҋ��'�����IE�B�e�!#����g�E�><�ޗ�?��LDb1P,��6WAw�U�HTs���I=E>_�*�~�XXu-b�̿a��j�����7���L773�\ q��� ��=�L��6��K�O��rx�@ � �zT��������u�=f�ޭ��}7����"1@�5���W ���c��$ͪD��Q�q�TS��b�T @q8,�K Ŀg���O�q�U����-~LM���� n���lno�Jع �,��"��0�(�_�.D��L(�����I��0�2�v0Sˉ|��2����uz�L��v���WZ�w�J��o�YKr��KS��R�+�jt��3��d��0�iݧvGK����T����k\���8B� ��d���!@jFF�������ѧ��g���3�ggvYp|�k��+�� �9v.S�2�B��'�����b�b!�������y���i�@��P��؍)y箅��D P��S ��OK`��`�.B���/�������>��4�����J%ѷo�b�|^ �/�!��-]�_��t�pd�Ɩ�}��;��K������1�D �d�w0�r�@r1'���1��l}#u� p��M��+r�������"1t�)U�h��do�T���ӡ�zɫ�� �d�2",-����EW ^Td$f���HCWWU*�4�6beD<|%��r��B@q���449��in�S�[)�I�\R.)Kz�=�ƬK����rF;�|SME�:��L�X���b.C`�X�t9F=W�f旊����*)s.Ii)(���i ���(�P��$s��W��kg�.C�B�s�F��E_�[C=P=�Hv�N.�L�hSxs��ڡQz������%���E%[/dev/null | grep "Version =" | cut -f2 -d"\"" || echo " unknown") override TIMESTAMP := $(shell date +%s 2>/dev/null || echo "0") override DATESTAMP := $(shell date '+%Y-%m-%d %H:%M:%S' || echo "5 minutes ago") ifeq ($(shell command -v gdate >/dev/null; echo $$?),0) DATE_CMD := gdate else DATE_CMD := date endif ifneq ($(QUIET),true) override QUIET := false endif OLDCXX := $(CXXFLAGS) OLDLD := $(LDFLAGS) PREFIX ?= /usr/local #? Detect PLATFORM and ARCH from uname/gcc if not set PLATFORM ?= $(shell uname -s || echo unknown) ifneq ($(filter unknown Darwin, $(PLATFORM)),) override PLATFORM := $(shell $(CXX) -dumpmachine | awk -F"-" '{ print (NF==4) ? $$3 : $$2 }') ifeq ($(PLATFORM),apple) override PLATFORM := macos endif endif ifeq ($(shell uname -v | grep ARM64 >/dev/null 2>&1; echo $$?),0) ARCH ?= arm64 else ARCH ?= $(shell $(CXX) -dumpmachine | cut -d "-" -f 1) endif override PLATFORM_LC := $(shell echo $(PLATFORM) | tr '[:upper:]' '[:lower:]') #? GPU Support ifeq ($(PLATFORM_LC)$(ARCH),linuxx86_64) ifneq ($(STATIC),true) GPU_SUPPORT := true endif endif ifneq ($(GPU_SUPPORT),true) GPU_SUPPORT := false endif ifeq ($(GPU_SUPPORT),true) override ADDFLAGS += -DGPU_SUPPORT endif #? Compiler and Linker ifeq ($(shell $(CXX) --version | grep clang >/dev/null 2>&1; echo $$?),0) override CXX_IS_CLANG := true endif override CXX_VERSION := $(shell $(CXX) -dumpfullversion -dumpversion || echo 0) override CXX_VERSION_MAJOR := $(shell echo $(CXX_VERSION) | cut -d '.' -f 1) CLANG_WORKS = false GCC_WORKS = false MIN_CLANG_VERSION = 16 ifeq ($(DEBUG),true) override ADDFLAGS += -DBTOP_DEBUG endif #? Supported is Clang 16.0.0 and later ifeq ($(CXX_IS_CLANG),true) ifeq ($(shell $(CXX) --version | grep Apple >/dev/null 2>&1; echo $$?),0) MIN_CLANG_VERSION := 15 endif ifneq ($(shell test $(CXX_VERSION_MAJOR) -lt $(MIN_CLANG_VERSION); echo $$?),0) CLANG_WORKS := true endif else ifneq ($(shell test $(CXX_VERSION_MAJOR) -lt 10; echo $$?),0) GCC_WORKS := true endif endif ifeq ($(CLANG_WORKS),false) ifeq ($(GCC_WORKS),false) $(error $(shell printf "\033[1;91mERROR: \033[97mCompiler too old. (Requires Clang 16.0.0, GCC 10.1.0)\033[0m")) endif endif #? Any flags added to TESTFLAGS must not contain whitespace for the testing to work override TESTFLAGS := -fexceptions -fstack-clash-protection -fcf-protection ifneq ($(PLATFORM) $(ARCH),macos arm64) override TESTFLAGS += -fstack-protector endif ifeq ($(STATIC),true) ifeq ($(CXX_IS_CLANG) $(CLANG_WORKS),true true) ifeq ($(shell $(CXX) -print-target-triple | grep gnu >/dev/null; echo $$?),0) $(error $(shell printf "\033[1;91mERROR: \033[97m$(CXX) can't statically link glibc\033[0m")) endif else override ADDFLAGS += -static-libgcc -static-libstdc++ endif ifeq ($(PLATFORM_LC),linux) override ADDFLAGS += -DSTATIC_BUILD -static -Wl,--fatal-warnings else ifeq ($(PLATFORM_LC),freebsd) override ADDFLAGS += -DSTATIC_BUILD endif endif ifeq ($(STRIP),true) override ADDFLAGS += -s endif ifeq ($(VERBOSE),true) override VERBOSE := false else override VERBOSE := true endif #? Pull in platform specific source files and get thread count ifeq ($(PLATFORM_LC),linux) PLATFORM_DIR := linux THREADS := $(shell getconf _NPROCESSORS_ONLN 2>/dev/null || echo 1) SU_GROUP := root else ifeq ($(PLATFORM_LC),freebsd) PLATFORM_DIR := freebsd THREADS := $(shell getconf NPROCESSORS_ONLN 2>/dev/null || echo 1) SU_GROUP := wheel override ADDFLAGS += -lm -lkvm -ldevstat -Wl,-rpath=/usr/local/lib/gcc$(CXX_VERSION_MAJOR) ifneq ($(STATIC),true) override ADDFLAGS += -lstdc++ endif export MAKE = gmake else ifeq ($(PLATFORM_LC),macos) PLATFORM_DIR := osx THREADS := $(shell sysctl -n hw.ncpu || echo 1) override ADDFLAGS += -framework IOKit -framework CoreFoundation -Wno-format-truncation SU_GROUP := wheel else ifeq ($(PLATFORM_LC),openbsd) PLATFORM_DIR := openbsd THREADS := $(shell sysctl -n hw.ncpu || echo 1) override ADDFLAGS += -lkvm export MAKE = gmake SU_GROUP := wheel else $(error $(shell printf "\033[1;91mERROR: \033[97mUnsupported platform ($(PLATFORM))\033[0m")) endif #? Use all CPU cores (will only be set if using Make 4.3+) MAKEFLAGS := --jobs=$(THREADS) ifeq ($(THREADS),1) override THREADS := auto endif #? LTO command line ifeq ($(CLANG_WORKS),true) LTO := thin else LTO := $(THREADS) endif #? The Directories, Source, Includes, Objects and Binary SRCDIR := src INCDIRS := include $(wildcard lib/**/include) BUILDDIR := obj TARGETDIR := bin SRCEXT := cpp DEPEXT := d OBJEXT := o #? Filter out unsupported compiler flags override GOODFLAGS := $(foreach flag,$(TESTFLAGS),$(strip $(shell echo "int main() {}" | $(CXX) -o /dev/null $(flag) -x c++ - >/dev/null 2>&1 && echo $(flag) || true))) #? Flags, Libraries and Includes override REQFLAGS := -std=c++20 WARNFLAGS := -Wall -Wextra -pedantic OPTFLAGS := -O2 -ftree-vectorize -flto=$(LTO) LDCXXFLAGS := -pthread -D_FORTIFY_SOURCE=2 -D_GLIBCXX_ASSERTIONS -D_FILE_OFFSET_BITS=64 $(GOODFLAGS) $(ADDFLAGS) override CXXFLAGS += $(REQFLAGS) $(LDCXXFLAGS) $(OPTFLAGS) $(WARNFLAGS) override LDFLAGS += $(LDCXXFLAGS) $(OPTFLAGS) $(WARNFLAGS) INC := $(foreach incdir,$(INCDIRS),-isystem $(incdir)) -I$(SRCDIR) SU_USER := root ifdef DEBUG override OPTFLAGS := -O0 -g endif SOURCES := $(sort $(shell find $(SRCDIR) -maxdepth 1 -type f -name *.$(SRCEXT))) SOURCES += $(sort $(shell find $(SRCDIR)/$(PLATFORM_DIR) -type f -name *.$(SRCEXT))) #? Setup percentage progress SOURCE_COUNT := $(words $(SOURCES)) OBJECTS := $(patsubst $(SRCDIR)/%,$(BUILDDIR)/%,$(SOURCES:.$(SRCEXT)=.$(OBJEXT))) ifeq ($(shell find $(BUILDDIR) -type f -newermt "$(DATESTAMP)" -name *.o >/dev/null 2>&1; echo $$?),0) ifneq ($(wildcard $(BUILDDIR)/.*),) SKIPPED_SOURCES := $(foreach fname,$(SOURCES),$(shell find $(BUILDDIR) -type f -newer $(fname) -name *.o | grep "$(basename $(notdir $(fname))).o" 2>/dev/null)) override SOURCE_COUNT := $(shell expr $(SOURCE_COUNT) - $(words $(SKIPPED_SOURCES))) ifeq ($(SOURCE_COUNT),0) override SOURCE_COUNT = $(words $(SOURCES)) endif endif PROGRESS = expr $$(find $(BUILDDIR) -type f -newermt "$(DATESTAMP)" -name *.o | wc -l || echo 1) '*' 90 / $(SOURCE_COUNT) | cut -c1-2 else PROGRESS = expr $$(find $(BUILDDIR) -type f -name *.o | wc -l || echo 1) '*' 90 / $(SOURCE_COUNT) | cut -c1-2 endif P := %% ifeq ($(VERBOSE),true) # Doesn't work with `&>` override SUPPRESS := > /dev/null 2> /dev/null else override SUPPRESS := endif #? Default Make .ONESHELL: all: | info rocm_smi info-quiet directories btop ifneq ($(QUIET),true) info: @printf " $(BANNER)\n" @printf "\033[1;92mPLATFORM \033[1;93m?| \033[0m$(PLATFORM)\n" @printf "\033[1;96mARCH \033[1;93m?| \033[0m$(ARCH)\n" @printf "\033[1;95mGPU_SUPPORT \033[1;94m:| \033[0m$(GPU_SUPPORT)\n" @printf "\033[1;93mCXX \033[1;93m?| \033[0m$(CXX) \033[1;93m(\033[97m$(CXX_VERSION)\033[93m)\n" @printf "\033[1;94mTHREADS \033[1;94m:| \033[0m$(THREADS)\n" @printf "\033[1;92mREQFLAGS \033[1;91m!| \033[0m$(REQFLAGS)\n" @printf "\033[1;91mWARNFLAGS \033[1;94m:| \033[0m$(WARNFLAGS)\n" @printf "\033[1;94mOPTFLAGS \033[1;94m:| \033[0m$(OPTFLAGS)\n" @printf "\033[1;93mLDCXXFLAGS \033[1;94m:| \033[0m$(LDCXXFLAGS)\n" @printf "\033[1;95mCXXFLAGS \033[1;92m+| \033[0;37m\$$(\033[92mREQFLAGS\033[37m) \$$(\033[93mLDCXXFLAGS\033[37m) \$$(\033[94mOPTFLAGS\033[37m) \$$(\033[91mWARNFLAGS\033[37m) $(OLDCXX)\n" @printf "\033[1;95mLDFLAGS \033[1;92m+| \033[0;37m\$$(\033[93mLDCXXFLAGS\033[37m) \$$(\033[94mOPTFLAGS\033[37m) \$$(\033[91mWARNFLAGS\033[37m) $(OLDLD)\n" else info: @true endif info-quiet: | info rocm_smi @printf "\n\033[1;92mBuilding btop++ \033[91m(\033[97mv$(BTOP_VERSION)\033[91m) \033[93m$(PLATFORM) \033[96m$(ARCH)\033[0m\n" help: @printf " $(BANNER)\n" @printf "\033[1;97mbtop++ makefile\033[0m\n" @printf "usage: make [argument]\n\n" @printf "arguments:\n" @printf " all Compile btop (default argument)\n" @printf " clean Remove built objects\n" @printf " distclean Remove built objects and binaries\n" @printf " install Install btop++ to \$$PREFIX ($(PREFIX))\n" @printf " setuid Set installed binary owner/group to \$$SU_USER/\$$SU_GROUP ($(SU_USER)/$(SU_GROUP)) and set SUID bit\n" @printf " uninstall Uninstall btop++ from \$$PREFIX\n" @printf " info Display information about Environment,compiler and linker flags\n" #? Make the Directories directories: @$(VERBOSE) || printf "mkdir -p $(TARGETDIR)\n" @mkdir -p $(TARGETDIR) @$(VERBOSE) || printf "mkdir -p $(BUILDDIR)/$(PLATFORM_DIR)\n" @mkdir -p $(BUILDDIR)/$(PLATFORM_DIR) #? Clean only Objects clean: @printf "\033[1;91mRemoving: \033[1;97mbuilt objects...\033[0m\n" @rm -rf $(BUILDDIR) @test -e lib/rocm_smi_lib/build && cmake --build lib/rocm_smi_lib/build --target clean &> /dev/null || true #? Clean Objects and Binaries distclean: clean @printf "\033[1;91mRemoving: \033[1;97mbuilt binaries...\033[0m\n" @rm -rf $(TARGETDIR) @test -e lib/rocm_smi_lib/build && rm -rf lib/rocm_smi_lib/build || true install: @printf "\033[1;92mInstalling binary to: \033[1;97m$(DESTDIR)$(PREFIX)/bin/btop\n" @mkdir -p $(DESTDIR)$(PREFIX)/bin @cp -p $(TARGETDIR)/btop $(DESTDIR)$(PREFIX)/bin/btop @chmod 755 $(DESTDIR)$(PREFIX)/bin/btop @printf "\033[1;92mInstalling doc to: \033[1;97m$(DESTDIR)$(PREFIX)/share/btop\n" @mkdir -p $(DESTDIR)$(PREFIX)/share/btop @cp -p README.md $(DESTDIR)$(PREFIX)/share/btop @printf "\033[1;92mInstalling themes to: \033[1;97m$(DESTDIR)$(PREFIX)/share/btop/themes\033[0m\n" @cp -pr themes $(DESTDIR)$(PREFIX)/share/btop @printf "\033[1;92mInstalling desktop entry to: \033[1;97m$(DESTDIR)$(PREFIX)/share/applications/btop.desktop\n" @mkdir -p $(DESTDIR)$(PREFIX)/share/applications/ @cp -p btop.desktop $(DESTDIR)$(PREFIX)/share/applications/btop.desktop @printf "\033[1;92mInstalling PNG icon to: \033[1;97m$(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/btop.png\n" @mkdir -p $(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps @cp -p Img/icon.png $(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/btop.png @printf "\033[1;92mInstalling SVG icon to: \033[1;97m$(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/btop.svg\n" @mkdir -p $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps @cp -p Img/icon.svg $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/btop.svg #? Set SUID bit for btop as $SU_USER in $SU_GROUP setuid: @printf "\033[1;97mFile: $(DESTDIR)$(PREFIX)/bin/btop\n" @printf "\033[1;92mSetting owner \033[1;97m$(SU_USER):$(SU_GROUP)\033[0m\n" @chown $(SU_USER):$(SU_GROUP) $(DESTDIR)$(PREFIX)/bin/btop @printf "\033[1;92mSetting SUID bit\033[0m\n" @chmod u+s $(DESTDIR)$(PREFIX)/bin/btop uninstall: @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/bin/btop\033[0m\n" @rm -rf $(DESTDIR)$(PREFIX)/bin/btop @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/share/btop\033[0m\n" @rm -rf $(DESTDIR)$(PREFIX)/share/btop @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/share/applications/btop.desktop\033[0m\n" @rm -rf $(DESTDIR)$(PREFIX)/share/applications/btop.desktop @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/btop.png\033[0m\n" @rm -rf $(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/btop.png @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/btop.svg\033[0m\n" @rm -rf $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/btop.svg #? Pull in dependency info for *existing* .o files -include $(OBJECTS:.$(OBJEXT)=.$(DEPEXT)) #? Compile rocm_smi ifeq ($(GPU_SUPPORT)$(RSMI_STATIC),truetrue) ROCM_DIR ?= lib/rocm_smi_lib ROCM_BUILD_DIR := $(ROCM_DIR)/build ifeq ($(DEBUG),true) BUILD_TYPE := Debug else BUILD_TYPE := Release endif .ONESHELL: rocm_smi: @printf "\n\033[1;92mBuilding ROCm SMI static library\033[37m...\033[0m\n" @TSTAMP=$$(date +%s 2>/dev/null || echo "0") @$(QUIET) || printf "\033[1;97mRunning CMake...\033[0m\n" CXX=$(CXX) cmake -S $(ROCM_DIR) -B $(ROCM_BUILD_DIR) -DCMAKE_BUILD_TYPE=$(BUILD_TYPE) -DCMAKE_POLICY_DEFAULT_CMP0069=NEW -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DBUILD_SHARED_LIBS=OFF $(SUPPRESS) || { printf "\033[1;91mCMake failed, continuing build without statically linking ROCm SMI\033[37m...\033[0m\n"; exit 0; } @$(QUIET) || printf "\n\033[1;97mBuilding and linking...\033[0m\n" @cmake --build $(ROCM_BUILD_DIR) -j -t rocm_smi64 $(SUPPRESS) || { printf "\033[1;91mMake failed, continuing build without statically linking ROCm SMI\033[37m...\033[0m\n"; exit 0; } @printf "\033[1;92m100$(P)\033[10D\033[5C-> \033[1;37m$(ROCM_BUILD_DIR)/rocm_smi/librocm_smi64.a \033[1;93m(\033[1;97m$$(du -ah $(ROCM_BUILD_DIR)/rocm_smi/librocm_smi64.a | cut -f1)iB\033[1;93m)\033[0m\n" @printf "\033[1;92mROCm SMI build complete in \033[92m(\033[97m$$($(DATE_CMD) -d @$$(expr $$(date +%s 2>/dev/null || echo "0") - $(TIMESTAMP) 2>/dev/null) -u +%Mm:%Ss 2>/dev/null | sed 's/^00m://' || echo "unknown")\033[92m)\033[0m\n" @$(eval override LDFLAGS += $(ROCM_BUILD_DIR)/rocm_smi/librocm_smi64.a -DRSMI_STATIC) # TODO: this seems to execute every time, no matter if the compilation failed or succeeded @$(eval override CXXFLAGS += -DRSMI_STATIC) else rocm_smi: @true endif #? Link .ONESHELL: btop: $(OBJECTS) | rocm_smi directories @sleep 0.2 2>/dev/null || true @TSTAMP=$$(date +%s 2>/dev/null || echo "0") @$(QUIET) || printf "\n\033[1;92mLinking and optimizing binary\033[37m...\033[0m\n" @$(VERBOSE) || printf "$(CXX) -o $(TARGETDIR)/btop $^ $(LDFLAGS)\n" @$(CXX) -o $(TARGETDIR)/btop $^ $(LDFLAGS) || exit 1 @printf "\033[1;92m100$(P) -> \033[1;37m$(TARGETDIR)/btop \033[100D\033[38C\033[1;93m(\033[1;97m$$(du -ah $(TARGETDIR)/btop | cut -f1)iB\033[1;93m) \033[92m(\033[97m$$($(DATE_CMD) -d @$$(expr $$(date +%s 2>/dev/null || echo "0") - $${TSTAMP} 2>/dev/null) -u +%Mm:%Ss 2>/dev/null | sed 's/^00m://' || echo '')\033[92m)\033[0m\n" @printf "\n\033[1;92mBuild complete in \033[92m(\033[97m$$($(DATE_CMD) -d @$$(expr $$(date +%s 2>/dev/null || echo "0") - $(TIMESTAMP) 2>/dev/null) -u +%Mm:%Ss 2>/dev/null | sed 's/^00m://' || echo "unknown")\033[92m)\033[0m\n" #? Compile .ONESHELL: $(BUILDDIR)/%.$(OBJEXT): $(SRCDIR)/%.$(SRCEXT) | rocm_smi directories @sleep 0.3 2>/dev/null || true @TSTAMP=$$(date +%s 2>/dev/null || echo "0") @$(QUIET) || printf "\033[1;97mCompiling $<\033[0m\n" @$(VERBOSE) || printf "$(CXX) $(CXXFLAGS) $(INC) -MMD -c -o $@ $<\n" @$(CXX) $(CXXFLAGS) $(INC) -MMD -c -o $@ $< || exit 1 @printf "\033[1;92m$$($(PROGRESS))$(P)\033[10D\033[5C-> \033[1;37m$@ \033[100D\033[38C\033[1;93m(\033[1;97m$$(du -ah $@ | cut -f1)iB\033[1;93m) \033[92m(\033[97m$$($(DATE_CMD) -d @$$(expr $$($(DATE_CMD) +%s 2>/dev/null || echo "0") - $${TSTAMP} 2>/dev/null) -u +%Mm:%Ss 2>/dev/null | sed 's/^00m://' || echo '')\033[92m)\033[0m\n" #? Non-File Targets .PHONY: all msg help pre btop-1.3.0/README.md000066400000000000000000001222571454653170500137610ustar00rootroot00000000000000# ![btop++](Img/logo.png) ![Linux](https://img.shields.io/badge/-Linux-grey?logo=linux) ![macOS](https://img.shields.io/badge/-OSX-black?logo=apple) ![FreeBSD](https://img.shields.io/badge/-FreeBSD-red?logo=freebsd) ![OpenBSD](https://img.shields.io/badge/-OpenBSD-black?logo=openbsd) ![Usage](https://img.shields.io/badge/Usage-System%20resource%20monitor-yellow) ![c++20](https://img.shields.io/badge/cpp-c%2B%2B20-green) ![latest_release](https://img.shields.io/github/v/tag/aristocratos/btop?label=release) [![Donate](https://img.shields.io/badge/-Donate-yellow?logo=paypal)](https://paypal.me/aristocratos) [![Sponsor](https://img.shields.io/badge/-Sponsor-red?logo=github)](https://github.com/sponsors/aristocratos) [![Coffee](https://img.shields.io/badge/-Buy%20me%20a%20Coffee-grey?logo=Ko-fi)](https://ko-fi.com/aristocratos) [![btop](https://snapcraft.io/btop/badge.svg)](https://snapcraft.io/btop) [![Continuous Build Linux](https://github.com/aristocratos/btop/actions/workflows/continuous-build-linux.yml/badge.svg)](https://github.com/aristocratos/btop/actions/workflows/continuous-build-linux.yml) [![Continuous Build macOS](https://github.com/aristocratos/btop/actions/workflows/continuous-build-macos.yml/badge.svg)](https://github.com/aristocratos/btop/actions/workflows/continuous-build-macos.yml) [![Continuous Build FreeBSD](https://github.com/aristocratos/btop/actions/workflows/continuous-build-freebsd.yml/badge.svg)](https://github.com/aristocratos/btop/actions/workflows/continuous-build-freebsd.yml) [![Continuous Build OpenBSD](https://github.com/aristocratos/btop/actions/workflows/continuous-build-openbsd.yml/badge.svg)](https://github.com/aristocratos/btop/actions/workflows/continuous-build-openbsd.yml) ## Index * [News](#news) * [Documents](#documents) * [Description](#description) * [Features](#features) * [Themes](#themes) * [Support and funding](#support-and-funding) * [Prerequisites](#prerequisites) (Read this if you are having issues!) * [Screenshots](#screenshots) * [Keybindings](#help-menu) * [Installation Linux/macOS](#installation) * [Compilation Linux](#compilation-linux) * [Compilation macOS](#compilation-macos-osx) * [Compilation FreeBSD](#compilation-freebsd) * [Compilation OpenBSD](#compilation-openbsd) * [GPU compatibility](#gpu-compatibility) * [Installing the snap](#installing-the-snap) * [Configurability](#configurability) * [License](#license) ## News ##### 7 January 2024 Btop release v1.3.0 Big release with GPU support added for Linux and platform support for OpenBSD. Big thanks to @romner-set (GPU support) and @joske (OpenBSD support) for contributions. And a multitude of bugfixes and small changes, see [CHANGES.md](CHANGES.md) and latest [release](https://github.com/aristocratos/btop/releases/latest) for detailed list and attributions. See news entry below for more information regarding GPU support. ##### 25 November 2023 GPU monitoring added for Linux! Compile from git main to try it out. Use keys `5`, `6`, `7` and `0` to show/hide the gpu monitoring boxes. `5` = Gpu 1, `6` = Gpu 2, etc. Gpu stats/graphs can also be displayed in the "Cpu box" (not as verbose), see the cpu options menu for info and configuration. Note that the binaries provided on the release page (when released) and the continuous builds will not have gpu support enabled. Because the GPU support relies on loading of dynamic gpu libraries, gpu support will not work when also static linking. See [Compilation Linux](#compilation-linux) for more info on how to compile with gpu monitoring support. Many thanks to [@romner-set](https://github.com/romner-set) who wrote the vast majority of the implementation for GPU support. Big update with version bump to 1.3 coming soon. ##### 28 August 2022 [![btop4win](https://github.com/aristocratos/btop4win/raw/master/Img/logo.png)](https://github.com/aristocratos/btop4win) First release of btop4win available at https://github.com/aristocratos/btop4win ## Documents **[CHANGELOG.md](CHANGELOG.md)** **[CONTRIBUTING.md](CONTRIBUTING.md)** **[CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md)** ## Description Resource monitor that shows usage and stats for processor, memory, disks, network and processes. C++ version and continuation of [bashtop](https://github.com/aristocratos/bashtop) and [bpytop](https://github.com/aristocratos/bpytop). ## Features * Easy to use, with a game inspired menu system. * Full mouse support, all buttons with a highlighted key is clickable and mouse scroll works in process list and menu boxes. * Fast and responsive UI with UP, DOWN keys process selection. * Function for showing detailed stats for selected process. * Ability to filter processes. * Easy switching between sorting options. * Tree view of processes. * Send any signal to selected process. * UI menu for changing all config file options. * Auto scaling graph for network usage. * Shows IO activity and speeds for disks. * Battery meter * Selectable symbols for the graphs. * Custom presets * And more... ## Themes Btop++ uses the same theme files as bpytop and bashtop (some color values missing in bashtop themes) . See [themes](https://github.com/aristocratos/btop/tree/main/themes) folder for available themes. The `make install` command places the default themes in `[$PREFIX or /usr/local]/share/btop/themes`. User created themes should be placed in `$XDG_CONFIG_HOME/btop/themes` or `$HOME/.config/btop/themes`. Let me know if you want to contribute with new themes. ## Support and funding You can sponsor this project through github, see [my sponsors page](https://github.com/sponsors/aristocratos) for options. Or donate through [paypal](https://paypal.me/aristocratos) or [ko-fi](https://ko-fi.com/aristocratos). Any support is greatly appreciated! ## Prerequisites For best experience, a terminal with support for: * 24-bit truecolor ([See list of terminals with truecolor support](https://github.com//termstandard/colors)) * 256-color terminals are supported through 24-bit to 256-color conversion when setting "truecolor" to False in the options or with "-lc/--low-color" arguments. * 16 color TTY mode will be activated if a real tty device is detected. Can be forced with "-t/--tty_on" arguments. * Wide characters (Are sometimes problematic in web-based terminals) Also needs a UTF8 locale and a font that covers: * Unicode Block “Braille Patterns” U+2800 - U+28FF (Not needed in TTY mode or with graphs set to type: block or tty.) * Unicode Block “Geometric Shapes” U+25A0 - U+25FF * Unicode Block "Box Drawing" and "Block Elements" U+2500 - U+259F ### **Notice (Text rendering issues)** * If you are having problems with the characters in the graphs not looking like they do in the screenshots, it's likely a problem with your systems configured fallback font not having support for braille characters. * See [Terminess Powerline](https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/Terminus/terminus-ttf-4.40.1) for an example of a font that includes the braille symbols. * See comments by @sgleizes [link](https://github.com/aristocratos/bpytop/issues/100#issuecomment-684036827) and @XenHat [link](https://github.com/aristocratos/bpytop/issues/100#issuecomment-691585587) in issue #100 for possible solutions. * If text are misaligned and you are using Konsole or Yakuake, turning off "Bi-Directional text rendering" is a possible fix. * Characters clipping in to each other or text/border misalignments is not bugs caused by btop, but most likely a fontconfig or terminal problem where the braille characters making up the graphs aren't rendered correctly. * Look to the creators of the terminal emulator you use to fix these issues if the previous mentioned fixes don't work for you. ## Screenshots #### Main UI showing details for a selected process ![Screenshot 1](Img/normal.png) #### Main UI in TTY mode ![Screenshot 2](Img/tty.png) #### Main UI with custom options ![Screenshot 3](Img/alt.png) #### Main-menu ![Screenshot 3](Img/main-menu.png) #### Options-menu ![Screenshot 4](Img/options-menu.png) #### Help-menu ![Screenshot 5](Img/help-menu.png) ## Installation **Binaries for Linux are statically compiled with musl and works on kernel 2.6.39 and newer** 1. **Download btop-(VERSION)-(ARCH)-(PLATFORM).tbz from [latest release](https://github.com/aristocratos/btop/releases/latest) and unpack to a new folder** **Notice! Use x86_64 for 64-bit x86 systems, i486 and i686 are 32-bit!** 2. **Install (from created folder)** * **Run install.sh or:** ```bash # use "make install PREFIX=/target/dir" to set target, default: /usr/local # only use "sudo" when installing to a NON user owned directory sudo make install ``` 3. **(Optional) Set suid bit to make btop always run as root (or other user)** Enables signal sending to any process without starting with `sudo` and can prevent /proc read permissions problems on some systems. * **Run setuid.sh or:** ```bash # run after make install and use same PREFIX if any was used at install # set SU_USER and SU_GROUP to select user and group, default is root:root sudo make setuid ``` * **Uninstall** * **Run uninstall.sh or:** ```bash sudo make uninstall ``` * **Show help** ```bash make help ``` **Binary release (from native os repo)** * **openSUSE** * **Tumbleweed:** ```bash sudo zypper in btop ``` * For all other versions, see [openSUSE Software: btop](https://software.opensuse.org/package/btop) * **Fedora** ```bash sudo dnf install btop ``` * **RHEL/AlmaLinux 8+** ```bash sudo dnf install epel-release sudo dnf install btop ``` * **FreeBSD** ```sh pkg install btop ``` **Binary release on Homebrew (macOS (x86_64 & ARM64) / Linux (x86_64))** * **[Homebrew](https://formulae.brew.sh/formula/btop)** ```bash brew install btop ``` ## Compilation Linux Requires at least GCC 10 or Clang 16. The makefile also needs GNU coreutils and `sed` (should already be installed on any modern distribution). ### GPU compatibility Btop++ supports NVIDIA and AMD GPUs out of the box on Linux x86_64, provided you have the correct drivers and libraries. Compatibility with Intel GPUs using generic DRM calls is planned, as is compatibility for FreeBSD and macOS. Gpu support will not work when static linking glibc (or musl, etc.)! For x86_64 Linux the flag `GPU_SUPPORT` is automatically set to `true`, to manually disable gpu support set the flag to false, like: `make GPU_SUPPORT=false` (or `cmake -DBTOP_GPU=false` with CMake) * **NVIDIA** You must use an official NVIDIA driver, both the closed-source and [open-source](https://github.com/NVIDIA/open-gpu-kernel-modules) ones have been verified to work. In addition to that you must also have the `nvidia-ml` dynamic library installed, which should be included with the driver package of your distribution. * **AMD** AMDGPU data is queried using the [ROCm SMI](https://github.com/RadeonOpenCompute/rocm_smi_lib) library, which may or may not be packaged for your distribution. If your distribution doesn't provide a package, btop++ is statically linked to ROCm SMI with the `RSMI_STATIC=true` make flag. This flag expects the ROCm SMI source code in `lib/rocm_smi_lib`, and compilation will fail if it's not there. The latest tested version is 5.6.x, which can be obtained with the following command: ```bash git clone https://github.com/RadeonOpenCompute/rocm_smi_lib.git --depth 1 -b rocm-5.6.x lib/rocm_smi_lib ``` ## Compilation macOS OSX Requires at least GCC 10 or Clang 16. With GCC, version 12 (or better) is needed for macOS Ventura. If you get linker errors on Ventura you'll need to upgrade your command line tools (Version 14.0) is bugged. The makefile also needs GNU coreutils and `sed`. Install and use Homebrew or MacPorts package managers for easy dependency installation ## Compilation FreeBSD Requires at least GCC 10 or Clang 16. Note that GNU make (`gmake`) is required to compile on FreeBSD. ## Compilation OpenBSD Requires at least GCC 10. Note that GNU make (`gmake`) is required to compile on OpenBSD. ## Installing the snap [![btop](https://snapcraft.io/btop/badge.svg)](https://snapcraft.io/btop) ### Note: there are now two snaps available: `btop` and `btop-desktop`. The desktop version is much larger and includes the desktop entries needed to allow for launching `btop` with a click. * **Install the snap** ```bash sudo snap install btop or sudo snap install btop-desktop ``` * **Install the latest snap from the edge channel** ``` sudo snap install btop --edge or sudo snap install btop-desktop --edge ``` * **Connect the interface** ```bash sudo snap connect btop:removable-media or sudo snap connect btop-desktop:removable-media ``` ## Configurability All options changeable from within UI. Config and log files stored in `$XDG_CONFIG_HOME/btop` or `$HOME/.config/btop` folder #### btop.conf: (auto generated if not found) ```bash #? Config file for btop v. 1.2.2 #* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes. #* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes" color_theme = "Default" #* If the theme set background should be shown, set to False if you want terminal background transparency. theme_background = True #* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false. truecolor = True #* Set to true to force tty mode regardless if a real tty has been detected or not. #* Will force 16-color mode and TTY theme, set all graph symbols to "tty" and swap out other non tty friendly symbols. force_tty = False #* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets. #* Format: "box_name:P:G,box_name:P:G" P=(0 or 1) for alternate positions, G=graph symbol to use for box. #* Use whitespace " " as separator between different presets. #* Example: "cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty" presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty" #* Set to True to enable "h,j,k,l,g,G" keys for directional control in lists. #* Conflicting keys for h:"help" and k:"kill" is accessible while holding shift. vim_keys = False #* Rounded corners on boxes, is ignored if TTY mode is ON. rounded_corners = True #* Default symbols to use for graph creation, "braille", "block" or "tty". #* "braille" offers the highest resolution but might not be included in all fonts. #* "block" has half the resolution of braille but uses more common characters. #* "tty" uses only 3 different symbols but will work with most fonts and should work in a real TTY. #* Note that "tty" only has half the horizontal resolution of the other two, so will show a shorter historical view. graph_symbol = "braille" # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_cpu = "default" # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_mem = "default" # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_net = "default" # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_proc = "default" #* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace. shown_boxes = "proc cpu mem net" #* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs. update_ms = 1500 #* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu responsive", #* "cpu lazy" sorts top process over time (easier to follow), "cpu responsive" updates top process directly. proc_sorting = "cpu lazy" #* Reverse sorting order, True or False. proc_reversed = False #* Show processes as a tree. proc_tree = False #* Use the cpu graph colors in the process list. proc_colors = True #* Use a darkening gradient in the process list. proc_gradient = True #* If process cpu usage should be of the core it's running on or usage of the total available cpu power. proc_per_core = True #* Show process memory as bytes instead of percent. proc_mem_bytes = True #* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate) proc_info_smaps = False #* Show proc box on left side of screen instead of right. proc_left = False #* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available. #* Select from a list of detected attributes from the options menu. cpu_graph_upper = "total" #* Sets the CPU stat shown in lower half of the CPU graph, "total" is always available. #* Select from a list of detected attributes from the options menu. cpu_graph_lower = "total" #* Toggles if the lower CPU graph should be inverted. cpu_invert_lower = True #* Set to True to completely disable the lower CPU graph. cpu_single_graph = False #* Show cpu box at bottom of screen instead of top. cpu_bottom = False #* Shows the system uptime in the CPU box. show_uptime = True #* Show cpu temperature. check_temp = True #* Which sensor to use for cpu temperature, use options menu to select from list of available sensors. cpu_sensor = "Auto" #* Show temperatures for cpu cores also if check_temp is True and sensors has been found. show_coretemp = True #* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core. #* Use lm-sensors or similar to see which cores are reporting temperatures on your machine. #* Format "x:y" x=core with wrong temp, y=core with correct temp, use space as separator between multiple entries. #* Example: "4:0 5:1 6:3" cpu_core_map = "" #* Which temperature scale to use, available values: "celsius", "fahrenheit", "kelvin" and "rankine". temp_scale = "celsius" #* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024. base_10_sizes = False #* Show CPU frequency. show_cpu_freq = True #* Draw a clock at top of screen, formatting according to strftime, empty string to disable. #* Special formatting: /host = hostname | /user = username | /uptime = system uptime clock_format = "%H:%M" #* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort. background_update = True #* Custom cpu model name, empty string to disable. custom_cpu_name = "" #* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ". #* Begin line with "exclude=" to change to exclude filter, otherwise defaults to "most include" filter. Example: disks_filter="exclude=/boot /home/user". disks_filter = "exclude=/boot" #* Show graphs instead of meters for memory values. mem_graphs = True #* Show mem box below net box instead of above. mem_below_net = False #* Count ZFS ARC in cached and available memory. zfs_arc_cached = True #* If swap memory should be shown in memory box. show_swap = True #* Show swap as a disk, ignores show_swap value above, inserts itself after first disk. swap_disk = True #* If mem box should be split to also show disks info. show_disks = True #* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar. only_physical = True #* Read disks list from /etc/fstab. This also disables only_physical. use_fstab = False #* Set to true to show available disk space for privileged users. disk_free_priv = False #* Toggles if io activity % (disk busy time) should be shown in regular disk usage view. show_io_stat = True #* Toggles io mode for disks, showing big graphs for disk read/write speeds. io_mode = False #* Set to True to show combined read/write io graphs in io mode. io_graph_combined = False #* Set the top speed for the io graphs in MiB/s (100 by default), use format "mountpoint:speed" separate disks with whitespace " ". #* Example: "/mnt/media:100 /:20 /boot:1". io_graph_speeds = "" #* Set fixed values for network graphs in Mebibits. Is only used if net_auto is also set to False. net_download = 100 net_upload = 100 #* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest. net_auto = True #* Sync the auto scaling for download and upload to whichever currently has the highest scale. net_sync = False #* Starts with the Network Interface specified here. net_iface = "br0" #* Show battery stats in top right if battery is present. show_battery = True #* Which battery to use if multiple are present. "Auto" for auto detection. selected_battery = "Auto" #* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG". #* The level set includes all lower levels, i.e. "DEBUG" will show all logging info. log_level = "DEBUG" ``` #### Command line options ```text usage: btop [-h] [-v] [-/+t] [-p Packaging status
##### 16 January 2022 Release v1.2.0 with FreeBSD support. No release binaries for FreeBSD provided as of yet. Again a big thanks to [@joske](https://github.com/joske) for his porting efforts! Since compatibility with Linux, macOS and FreeBSD are done, the focus going forward will be on new features like GPU monitoring. ##### 13 November 2021 Release v1.1.0 with macOS support. Binaries in [continuous-build-macos](https://github.com/aristocratos/btop/actions/workflows/continuous-build-macos.yml) are only x86 for now. macOS binaries + installer are included for both x86 and ARM64 (Apple Silicon) in the releases. Big thank you to [@joske](https://github.com/joske) who wrote the vast majority of the implementation! ##### 30 October 2021 Work on the OSX [macOS] and FreeBSD branches, both initiated and mostly worked on by [@joske](https://github.com/joske), will likely be completed in the coming weeks. The OSX [macOS] branch has some memory leaks that needs to be sorted out and both have some issues with the processes cpu usage calculation and other smaller issues that needs fixing. If you want to help out, test for bugs/fix bugs or just try out the branches: **macOS / OSX** ```bash # Install and use Homebrew or MacPorts package managers for easy dependency installation brew install coreutils make gcc@11 git clone https://github.com/aristocratos/btop.git cd btop git checkout OSX gmake ``` **FreeBSD** ```bash sudo pkg install gmake gcc11 coreutils git git clone https://github.com/aristocratos/btop.git cd btop git checkout freebsd gmake ``` Note that GNU make (`gmake`) is recommended but not required for macOS/OSX but it is required on FreeBSD. ##### 6 October 2021 macOS development have been started by [@joske](https://github.com/joske), big thanks :) See branch [OSX](https://github.com/aristocratos/btop/tree/OSX) for current progress. ##### 18 September 2021 The Linux version of btop++ is complete. Released as version 1.0.0 I will be providing statically compiled binaries for a range of architectures in every release for those having problems compiling. For compilation GCC 10 is required, GCC 11 preferred. Please report any bugs to the [Issues](https://github.com/aristocratos/btop/issues/new?assignees=aristocratos&labels=bug&template=bug_report.md&title=%5BBUG%5D) page. The development plan right now: * 1.1.0 macOS [OSX] support * 1.2.0 FreeBSD support * 1.3.0 Support for GPU monitoring * 1.X.0 Other platforms and features... Windows support is not in the plans as of now, but if anyone else wants to take it on, I will try to help. ##### 5 May 2021 This project is gonna take some time until it has complete feature parity with bpytop, since all system information gathering will have to be written from scratch without any external libraries. And will need some help in the form of code contributions to get complete support for BSD and macOS/OSX.
More...
1. **Install dependencies (example for Ubuntu 21.04 Hirsute)** ```bash sudo apt install coreutils sed git build-essential gcc-11 g++-11 ``` 2. **Clone repository** ```bash git clone https://github.com/aristocratos/btop.git cd btop ``` 3. **Compile** ```bash make ``` Options for make: | Flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `VERBOSE=true` | To display full compiler/linker commands | | `STATIC=true` | For static compilation | | `QUIET=true` | For less verbose output | | `STRIP=true` | To force stripping of debug symbols (adds `-s` linker flag) | | `DEBUG=true` | Sets OPTFLAGS to `-O0 -g` and enables more verbose debug logging | | `ARCH=
### With Make ` | To manually set the target architecture | | `GPU_SUPPORT=` | Enable/disable GPU support (Enabled by default on X86_64 Linux) | | `RSMI_STATIC=true` | To statically link the ROCm SMI library used for querying AMDGPU | | `ADDFLAGS=` | For appending flags to both compiler and linker | | `CXX=` | Manualy set which compiler to use | Example: `make ADDFLAGS=-march=native` might give a performance boost if compiling only for your own system. Notice! If using LDAP Authentication, usernames will show as UID number for LDAP users if compiling statically with glibc. 4. **Install** ```bash sudo make install ``` Append `PREFIX=/target/dir` to set target, default: `/usr/local` Notice! Only use "sudo" when installing to a NON user owned directory. 5. **(Optional) Set suid bit to make btop always run as root (or other user)** ```bash sudo make setuid ``` No need for `sudo` to enable signal sending to any process and to prevent /proc read permissions problems on some systems. Run after make install and use same PREFIX if any was used at install. Set `SU_USER` and `SU_GROUP` to select user and group, default is `root` and `root` * **Uninstall** ```bash sudo make uninstall ``` * **Remove any object files from source dir** ```bash make clean ``` * **Remove all object files, binaries and created directories in source dir** ```bash make distclean ``` * **Show help** ```bash make help ```
1. **Install build dependencies** Requires Clang / GCC, CMake, Ninja and Git For example, with Debian Bookworm: ```bash sudo apt install cmake git g++ ninja-build ``` 2. **Clone the repository** ```bash git clone https://github.com/aristocratos/btop.git && cd btop `````` 3. **Compile** ```bash # Configure cmake -B build -G Ninja # Build cmake --build build ``` This will automatically build a release version of btop. Some useful options to pass to the configure step: | Configure flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `-DBTOP_STATIC=
### With CMake (Community maintained) ` | Enables static linking (OFF by default) | | `-DBTOP_LTO=` | Enables link time optimization (ON by default) | | `-DBTOP_USE_MOLD=` | Use mold to link btop (OFF by default) | | `-DBTOP_PEDANTIC=` | Compile with additional warnings (OFF by default) | | `-DBTOP_WERROR=` | Compile with warnings as errors (OFF by default) | | `-DBTOP_GPU=` | Enable GPU support (ON by default) | | `-DBTOP_RSMI_STATIC=` | Build and link the ROCm SMI library statically (OFF by default) | | `-DCMAKE_INSTALL_PREFIX=` | The installation prefix ('/usr/local' by default) | To force any other compiler, run `CXX= cmake -B build -G Ninja` 4. **Install** ```bash cmake --install build ``` May require root privileges 5. **Uninstall** CMake doesn't generate an uninstall target by default. To remove installed files, run ``` cat build/install_manifest.txt | xargs rm -irv ``` 6. **Cleanup build directory** ```bash cmake --build build -t clean ```
1. **Install dependencies (example for Homebrew)** ```bash brew install coreutils make gcc@12 ``` 2. **Clone repository** ```bash git clone https://github.com/aristocratos/btop.git cd btop ``` 3. **Compile** ```bash gmake ``` Options for make: | Flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `VERBOSE=true` | To display full compiler/linker commands | | `STATIC=true` | For static compilation (only libgcc and libstdc++) | | `QUIET=true` | For less verbose output | | `STRIP=true` | To force stripping of debug symbols (adds `-s` linker flag) | | `DEBUG=true` | Sets OPTFLAGS to `-O0 -g` and enables more verbose debug logging | | `ARCH=
### With Make ` | To manually set the target architecture | | `ADDFLAGS=` | For appending flags to both compiler and linker | | `CXX=` | Manualy set which compiler to use | Example: `gmake ADDFLAGS=-march=native` might give a performance boost if compiling only for your own system. 4. **Install** ```bash sudo gmake install ``` Append `PREFIX=/target/dir` to set target, default: `/usr/local` Notice! Only use "sudo" when installing to a NON user owned directory. 5. **(Recommended) Set suid bit to make btop always run as root (or other user)** ```bash sudo gmake setuid ``` No need for `sudo` to see information for non user owned processes and to enable signal sending to any process. Run after make install and use same PREFIX if any was used at install. Set `SU_USER` and `SU_GROUP` to select user and group, default is `root` and `wheel` * **Uninstall** ```bash sudo gmake uninstall ``` * **Remove any object files from source dir** ```bash gmake clean ``` * **Remove all object files, binaries and created directories in source dir** ```bash gmake distclean ``` * **Show help** ```bash gmake help ```
1. **Install build dependencies** Requires Clang, CMake, Ninja and Git ```bash brew update --quiet brew install cmake git llvm ninja ``` 2. **Clone the repository** ```bash git clone https://github.com/aristocratos/btop.git && cd btop ``` 3. **Compile** ```bash # Configure export LLVM_PREFIX="$(brew --prefix llvm)" export CXX="$LLVM_PREFIX/bin/clang++" export CPPFLAGS="-I$LLVM_PREFIX/include" export LDFLAGS="-L$LLVM_PREFIX/lib -L$LLVM_PREFIX/lib/c++ -Wl,-rpath,$LLVM_PREFIX/lib/c++ -fuse-ld=$LLVM_PREFIX/bin/ld64.lld" cmake -B build -G Ninja # Build cmake --build build ``` _**Note:** btop uses lots of C++ 20 features, so it's necessary to be specific about the compiler and the standard library. If you get a compile with Apple-Clang or GCC, feel free to add the instructions here._ This will automatically build a release version of btop. Some useful options to pass to the configure step: | Configure flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `-DBTOP_LTO=
### With CMake (Community maintained) ` | Enables link time optimization (ON by default) | | `-DBTOP_USE_MOLD=` | Use mold to link btop (OFF by default) | | `-DBTOP_PEDANTIC=` | Compile with additional warnings (OFF by default) | | `-DBTOP_WERROR=` | Compile with warnings as errors (OFF by default) | | `-DCMAKE_INSTALL_PREFIX=` | The installation prefix ('/usr/local' by default) | To force any specific compiler, run `CXX= cmake -B build -G Ninja` 4. **Install** ```bash cmake --install build ``` May require root privileges 5. **Uninstall** CMake doesn't generate an uninstall target by default. To remove installed files, run ``` cat build/install_manifest.txt | xargs rm -irv ``` 6. **Cleanup build directory** ```bash cmake --build build -t clean ```
1. **Install dependencies** ```bash sudo pkg install gmake gcc11 coreutils git ``` 2. **Clone repository** ```bash git clone https://github.com/aristocratos/btop.git cd btop ``` 3. **Compile** ```bash gmake ``` Options for make: | Flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `VERBOSE=true` | To display full compiler/linker commands | | `STATIC=true` | For static compilation (only libgcc and libstdc++) | | `QUIET=true` | For less verbose output | | `STRIP=true` | To force stripping of debug symbols (adds `-s` linker flag) | | `DEBUG=true` | Sets OPTFLAGS to `-O0 -g` and enables more verbose debug logging | | `ARCH=
### With gmake ` | To manually set the target architecture | | `ADDFLAGS=` | For appending flags to both compiler and linker | | `CXX=` | Manualy set which compiler to use | Example: `gmake ADDFLAGS=-march=native` might give a performance boost if compiling only for your own system. 4. **Install** ```bash sudo gmake install ``` Append `PREFIX=/target/dir` to set target, default: `/usr/local` Notice! Only use "sudo" when installing to a NON user owned directory. 5. **(Recommended) Set suid bit to make btop always run as root (or other user)** ```bash sudo gmake setuid ``` No need for `sudo` to see information for non user owned processes and to enable signal sending to any process. Run after make install and use same PREFIX if any was used at install. Set `SU_USER` and `SU_GROUP` to select user and group, default is `root` and `wheel` * **Uninstall** ```bash sudo gmake uninstall ``` * **Remove any object files from source dir** ```bash gmake clean ``` * **Remove all object files, binaries and created directories in source dir** ```bash gmake distclean ``` * **Show help** ```bash gmake help ```
1. **Install build dependencies** Requires Clang / GCC, CMake, Ninja and Git _**Note:** LLVM's libc++ shipped with FreeBSD 13 is too old and cannot compile btop._ FreeBSD 14 and later: ```bash pkg install cmake ninja ``` FreeBSD 13: ```bash pkg install cmake gcc13 ninja ``` 2. **Clone the repository** ```bash git clone https://github.com/aristocratos/btop.git && cd btop ``` 3. **Compile** FreeBSD 14 and later: ```bash # Configure cmake -B build -G Ninja # Build cmake --build build ``` FreeBSD 13: ```bash # Configure CXX=g++13 cmake -B build -G Ninja # Build cmake --build build ``` This will automatically build a release version of btop. Some useful options to pass to the configure step: | Configure flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `-DBTOP_STATIC=
### With CMake (Community maintained) ` | Enables static linking (OFF by default) | | `-DBTOP_LTO=` | Enables link time optimization (ON by default) | | `-DBTOP_USE_MOLD=` | Use mold to link btop (OFF by default) | | `-DBTOP_PEDANTIC=` | Compile with additional warnings (OFF by default) | | `-DBTOP_WERROR=` | Compile with warnings as errors (OFF by default) | | `-DCMAKE_INSTALL_PREFIX=` | The installation prefix ('/usr/local' by default) | _**Note:** Static linking does not work with GCC._ To force any other compiler, run `CXX= cmake -B build -G Ninja` 4. **Install** ```bash cmake --install build ``` May require root privileges 5. **Uninstall** CMake doesn't generate an uninstall target by default. To remove installed files, run ``` cat build/install_manifest.txt | xargs rm -irv ``` 6. **Cleanup build directory** ```bash cmake --build build -t clean ```
1. **Install dependencies** ```bash pkg_add gmake gcc%11 g++%11 coreutils git ``` 2. **Clone repository** ```bash git clone https://github.com/aristocratos/btop.git cd btop ``` 3. **Compile** ```bash gmake CXX=eg++ ``` Options for make: | Flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `VERBOSE=true` | To display full compiler/linker commands | | `STATIC=true` | For static compilation (only libgcc and libstdc++) | | `QUIET=true` | For less verbose output | | `STRIP=true` | To force stripping of debug symbols (adds `-s` linker flag) | | `DEBUG=true` | Sets OPTFLAGS to `-O0 -g` and enables more verbose debug logging | | `ARCH=
### With gmake ` | To manually set the target architecture | | `ADDFLAGS=` | For appending flags to both compiler and linker | | `CXX=` | Manualy set which compiler to use | Example: `gmake ADDFLAGS=-march=native` might give a performance boost if compiling only for your own system. 4. **Install** ```bash sudo gmake install ``` Append `PREFIX=/target/dir` to set target, default: `/usr/local` Notice! Only use "sudo" when installing to a NON user owned directory. 5. **(Recommended) Set suid bit to make btop always run as root (or other user)** ```bash sudo gmake setuid ``` No need for `sudo` to see information for non user owned processes and to enable signal sending to any process. Run after make install and use same PREFIX if any was used at install. Set `SU_USER` and `SU_GROUP` to select user and group, default is `root` and `wheel` * **Uninstall** ```bash sudo gmake uninstall ``` * **Remove any object files from source dir** ```bash gmake clean ``` * **Remove all object files, binaries and created directories in source dir** ```bash gmake distclean ``` * **Show help** ```bash gmake help ``` ] [--utf-force] [--debug] optional arguments: -h, --help show this help message and exit -v, --version show version info and exit -lc, --low-color disable truecolor, converts 24-bit colors to 256-color -t, --tty_on force (ON) tty mode, max 16 colors and tty friendly graph symbols +t, --tty_off force (OFF) tty mode -p, --preset start with preset, integer value between 0-9 --utf-force force start even if no UTF-8 locale was detected --debug start in DEBUG mode: shows microsecond timer for information collect and screen draw functions and sets loglevel to DEBUG ``` ## LICENSE [Apache License 2.0](LICENSE) btop-1.3.0/btop.desktop000066400000000000000000000006541454653170500150350ustar00rootroot00000000000000[Desktop Entry] Type=Application Version=1.0 Name=btop++ GenericName=System Monitor GenericName[it]=Monitor di sistema Comment=Resource monitor that shows usage and stats for processor, memory, disks, network and processes Comment[it]=Monitoraggio delle risorse: mostra utilizzo e statistiche per CPU, dischi, rete e processi Icon=btop Exec=btop Terminal=true Categories=System;Monitor;ConsoleOnly; Keywords=system;process;task btop-1.3.0/cmake/000077500000000000000000000000001454653170500135515ustar00rootroot00000000000000btop-1.3.0/cmake/Modules/000077500000000000000000000000001454653170500151615ustar00rootroot00000000000000btop-1.3.0/cmake/Modules/Finddevstat.cmake000066400000000000000000000013041454653170500204340ustar00rootroot00000000000000# SPDX-License-Identifier: Apache-2.0 # # Find devstat, the Device Statistics Library # if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") find_path(devstat_INCLUDE_DIR NAMES devstat.h) find_library(devstat_LIBRARY NAMES devstat) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(devstat REQUIRED_VARS devstat_LIBRARY devstat_INCLUDE_DIR) if(devstat_FOUND AND NOT TARGET devstat::devstat) add_library(devstat::devstat UNKNOWN IMPORTED) set_target_properties(devstat::devstat PROPERTIES IMPORTED_LOCATION "${devstat_LIBRARY}" INTERFACE_INCLUDE_DIRECTORIES "${devstat_INCLUDE_DIR}" ) endif() mark_as_advanced(devstat_INCLUDE_DIR devstat_LIBRARY) endif() btop-1.3.0/cmake/Modules/Findelf.cmake000066400000000000000000000011671454653170500175370ustar00rootroot00000000000000# SPDX-License-Identifier: Apache-2.0 # # Find libelf, the ELF Access Library # if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") find_path(elf_INCLUDE_DIR NAMES libelf.h) find_library(elf_LIBRARY NAMES elf) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(elf REQUIRED_VARS elf_LIBRARY elf_INCLUDE_DIR) if(elf_FOUND AND NOT TARGET elf::elf) add_library(elf::elf UNKNOWN IMPORTED) set_target_properties(elf::elf PROPERTIES IMPORTED_LOCATION "${elf_LIBRARY}" INTERFACE_INCLUDE_DIRECTORIES "${elf_INCLUDE_DIR}" ) endif() mark_as_advanced(elf_INCLUDE_DIR elf_LIBRARY) endif() btop-1.3.0/cmake/Modules/Findkvm.cmake000066400000000000000000000011741454653170500175640ustar00rootroot00000000000000# SPDX-License-Identifier: Apache-2.0 # # Find libkvm, the Kernel Data Access Library # if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") find_path(kvm_INCLUDE_DIR NAMES kvm.h) find_library(kvm_LIBRARY NAMES kvm) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(kvm REQUIRED_VARS kvm_LIBRARY kvm_INCLUDE_DIR) if(kvm_FOUND AND NOT TARGET kvm::kvm) add_library(kvm::kvm UNKNOWN IMPORTED) set_target_properties(kvm::kvm PROPERTIES IMPORTED_LOCATION "${kvm_LIBRARY}" INTERFACE_INCLUDE_DIRECTORIES "${kvm_INCLUDE_DIR}" ) endif() mark_as_advanced(kvm_INCLUDE_DIR kvm_LIBRARY) endif() btop-1.3.0/include/000077500000000000000000000000001454653170500141145ustar00rootroot00000000000000btop-1.3.0/include/fmt/000077500000000000000000000000001454653170500147025ustar00rootroot00000000000000btop-1.3.0/include/fmt/LICENSE.rst000066400000000000000000000026271454653170500165250ustar00rootroot00000000000000Copyright (c) 2012 - present, Victor Zverovich and {fmt} contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- Optional exception to the license --- As an exception, if, as a result of your compiling your source code, portions of this Software are embedded into a machine-executable object form of such source code, you may redistribute such embedded portions in such object form without including the above copyright and permission notices. btop-1.3.0/include/fmt/args.h000066400000000000000000000163741454653170500160220ustar00rootroot00000000000000// Formatting library for C++ - dynamic format arguments // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_ARGS_H_ #define FMT_ARGS_H_ #include // std::reference_wrapper #include // std::unique_ptr #include #include "core.h" FMT_BEGIN_NAMESPACE namespace detail { template struct is_reference_wrapper : std::false_type {}; template struct is_reference_wrapper> : std::true_type {}; template const T& unwrap(const T& v) { return v; } template const T& unwrap(const std::reference_wrapper& v) { return static_cast(v); } class dynamic_arg_list { // Workaround for clang's -Wweak-vtables. Unlike for regular classes, for // templates it doesn't complain about inability to deduce single translation // unit for placing vtable. So storage_node_base is made a fake template. template struct node { virtual ~node() = default; std::unique_ptr> next; }; template struct typed_node : node<> { T value; template FMT_CONSTEXPR typed_node(const Arg& arg) : value(arg) {} template FMT_CONSTEXPR typed_node(const basic_string_view& arg) : value(arg.data(), arg.size()) {} }; std::unique_ptr> head_; public: template const T& push(const Arg& arg) { auto new_node = std::unique_ptr>(new typed_node(arg)); auto& value = new_node->value; new_node->next = std::move(head_); head_ = std::move(new_node); return value; } }; } // namespace detail /** \rst A dynamic version of `fmt::format_arg_store`. It's equipped with a storage to potentially temporary objects which lifetimes could be shorter than the format arguments object. It can be implicitly converted into `~fmt::basic_format_args` for passing into type-erased formatting functions such as `~fmt::vformat`. \endrst */ template class dynamic_format_arg_store #if FMT_GCC_VERSION && FMT_GCC_VERSION < 409 // Workaround a GCC template argument substitution bug. : public basic_format_args #endif { private: using char_type = typename Context::char_type; template struct need_copy { static constexpr detail::type mapped_type = detail::mapped_type_constant::value; enum { value = !(detail::is_reference_wrapper::value || std::is_same>::value || std::is_same>::value || (mapped_type != detail::type::cstring_type && mapped_type != detail::type::string_type && mapped_type != detail::type::custom_type)) }; }; template using stored_type = conditional_t< std::is_convertible>::value && !detail::is_reference_wrapper::value, std::basic_string, T>; // Storage of basic_format_arg must be contiguous. std::vector> data_; std::vector> named_info_; // Storage of arguments not fitting into basic_format_arg must grow // without relocation because items in data_ refer to it. detail::dynamic_arg_list dynamic_args_; friend class basic_format_args; unsigned long long get_types() const { return detail::is_unpacked_bit | data_.size() | (named_info_.empty() ? 0ULL : static_cast(detail::has_named_args_bit)); } const basic_format_arg* data() const { return named_info_.empty() ? data_.data() : data_.data() + 1; } template void emplace_arg(const T& arg) { data_.emplace_back(detail::make_arg(arg)); } template void emplace_arg(const detail::named_arg& arg) { if (named_info_.empty()) { constexpr const detail::named_arg_info* zero_ptr{nullptr}; data_.insert(data_.begin(), {zero_ptr, 0}); } data_.emplace_back(detail::make_arg(detail::unwrap(arg.value))); auto pop_one = [](std::vector>* data) { data->pop_back(); }; std::unique_ptr>, decltype(pop_one)> guard{&data_, pop_one}; named_info_.push_back({arg.name, static_cast(data_.size() - 2u)}); data_[0].value_.named_args = {named_info_.data(), named_info_.size()}; guard.release(); } public: constexpr dynamic_format_arg_store() = default; /** \rst Adds an argument into the dynamic store for later passing to a formatting function. Note that custom types and string types (but not string views) are copied into the store dynamically allocating memory if necessary. **Example**:: fmt::dynamic_format_arg_store store; store.push_back(42); store.push_back("abc"); store.push_back(1.5f); std::string result = fmt::vformat("{} and {} and {}", store); \endrst */ template void push_back(const T& arg) { if (detail::const_check(need_copy::value)) emplace_arg(dynamic_args_.push>(arg)); else emplace_arg(detail::unwrap(arg)); } /** \rst Adds a reference to the argument into the dynamic store for later passing to a formatting function. **Example**:: fmt::dynamic_format_arg_store store; char band[] = "Rolling Stones"; store.push_back(std::cref(band)); band[9] = 'c'; // Changing str affects the output. std::string result = fmt::vformat("{}", store); // result == "Rolling Scones" \endrst */ template void push_back(std::reference_wrapper arg) { static_assert( need_copy::value, "objects of built-in types and string views are always copied"); emplace_arg(arg.get()); } /** Adds named argument into the dynamic store for later passing to a formatting function. ``std::reference_wrapper`` is supported to avoid copying of the argument. The name is always copied into the store. */ template void push_back(const detail::named_arg& arg) { const char_type* arg_name = dynamic_args_.push>(arg.name).c_str(); if (detail::const_check(need_copy::value)) { emplace_arg( fmt::arg(arg_name, dynamic_args_.push>(arg.value))); } else { emplace_arg(fmt::arg(arg_name, arg.value)); } } /** Erase all elements from the store */ void clear() { data_.clear(); named_info_.clear(); dynamic_args_ = detail::dynamic_arg_list(); } /** \rst Reserves space to store at least *new_cap* arguments including *new_cap_named* named arguments. \endrst */ void reserve(size_t new_cap, size_t new_cap_named) { FMT_ASSERT(new_cap >= new_cap_named, "Set of arguments includes set of named arguments"); data_.reserve(new_cap); named_info_.reserve(new_cap_named); } }; FMT_END_NAMESPACE #endif // FMT_ARGS_H_ btop-1.3.0/include/fmt/chrono.h000066400000000000000000002206611454653170500163520ustar00rootroot00000000000000// Formatting library for C++ - chrono support // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_CHRONO_H_ #define FMT_CHRONO_H_ #include #include #include // std::isfinite #include // std::memcpy #include #include #include #include #include #include "format.h" FMT_BEGIN_NAMESPACE // Check if std::chrono::local_t is available. #ifndef FMT_USE_LOCAL_TIME # ifdef __cpp_lib_chrono # define FMT_USE_LOCAL_TIME (__cpp_lib_chrono >= 201907L) # else # define FMT_USE_LOCAL_TIME 0 # endif #endif // Check if std::chrono::utc_timestamp is available. #ifndef FMT_USE_UTC_TIME # ifdef __cpp_lib_chrono # define FMT_USE_UTC_TIME (__cpp_lib_chrono >= 201907L) # else # define FMT_USE_UTC_TIME 0 # endif #endif // Enable tzset. #ifndef FMT_USE_TZSET // UWP doesn't provide _tzset. # if FMT_HAS_INCLUDE("winapifamily.h") # include # endif # if defined(_WIN32) && (!defined(WINAPI_FAMILY) || \ (WINAPI_FAMILY == WINAPI_FAMILY_DESKTOP_APP)) # define FMT_USE_TZSET 1 # else # define FMT_USE_TZSET 0 # endif #endif // Enable safe chrono durations, unless explicitly disabled. #ifndef FMT_SAFE_DURATION_CAST # define FMT_SAFE_DURATION_CAST 1 #endif #if FMT_SAFE_DURATION_CAST // For conversion between std::chrono::durations without undefined // behaviour or erroneous results. // This is a stripped down version of duration_cast, for inclusion in fmt. // See https://github.com/pauldreik/safe_duration_cast // // Copyright Paul Dreik 2019 namespace safe_duration_cast { template ::value && std::numeric_limits::is_signed == std::numeric_limits::is_signed)> FMT_CONSTEXPR To lossless_integral_conversion(const From from, int& ec) { ec = 0; using F = std::numeric_limits; using T = std::numeric_limits; static_assert(F::is_integer, "From must be integral"); static_assert(T::is_integer, "To must be integral"); // A and B are both signed, or both unsigned. if (detail::const_check(F::digits <= T::digits)) { // From fits in To without any problem. } else { // From does not always fit in To, resort to a dynamic check. if (from < (T::min)() || from > (T::max)()) { // outside range. ec = 1; return {}; } } return static_cast(from); } /** * converts From to To, without loss. If the dynamic value of from * can't be converted to To without loss, ec is set. */ template ::value && std::numeric_limits::is_signed != std::numeric_limits::is_signed)> FMT_CONSTEXPR To lossless_integral_conversion(const From from, int& ec) { ec = 0; using F = std::numeric_limits; using T = std::numeric_limits; static_assert(F::is_integer, "From must be integral"); static_assert(T::is_integer, "To must be integral"); if (detail::const_check(F::is_signed && !T::is_signed)) { // From may be negative, not allowed! if (fmt::detail::is_negative(from)) { ec = 1; return {}; } // From is positive. Can it always fit in To? if (detail::const_check(F::digits > T::digits) && from > static_cast(detail::max_value())) { ec = 1; return {}; } } if (detail::const_check(!F::is_signed && T::is_signed && F::digits >= T::digits) && from > static_cast(detail::max_value())) { ec = 1; return {}; } return static_cast(from); // Lossless conversion. } template ::value)> FMT_CONSTEXPR To lossless_integral_conversion(const From from, int& ec) { ec = 0; return from; } // function // clang-format off /** * converts From to To if possible, otherwise ec is set. * * input | output * ---------------------------------|--------------- * NaN | NaN * Inf | Inf * normal, fits in output | converted (possibly lossy) * normal, does not fit in output | ec is set * subnormal | best effort * -Inf | -Inf */ // clang-format on template ::value)> FMT_CONSTEXPR To safe_float_conversion(const From from, int& ec) { ec = 0; using T = std::numeric_limits; static_assert(std::is_floating_point::value, "From must be floating"); static_assert(std::is_floating_point::value, "To must be floating"); // catch the only happy case if (std::isfinite(from)) { if (from >= T::lowest() && from <= (T::max)()) { return static_cast(from); } // not within range. ec = 1; return {}; } // nan and inf will be preserved return static_cast(from); } // function template ::value)> FMT_CONSTEXPR To safe_float_conversion(const From from, int& ec) { ec = 0; static_assert(std::is_floating_point::value, "From must be floating"); return from; } /** * safe duration cast between integral durations */ template ::value), FMT_ENABLE_IF(std::is_integral::value)> To safe_duration_cast(std::chrono::duration from, int& ec) { using From = std::chrono::duration; ec = 0; // the basic idea is that we need to convert from count() in the from type // to count() in the To type, by multiplying it with this: struct Factor : std::ratio_divide {}; static_assert(Factor::num > 0, "num must be positive"); static_assert(Factor::den > 0, "den must be positive"); // the conversion is like this: multiply from.count() with Factor::num // /Factor::den and convert it to To::rep, all this without // overflow/underflow. let's start by finding a suitable type that can hold // both To, From and Factor::num using IntermediateRep = typename std::common_type::type; // safe conversion to IntermediateRep IntermediateRep count = lossless_integral_conversion(from.count(), ec); if (ec) return {}; // multiply with Factor::num without overflow or underflow if (detail::const_check(Factor::num != 1)) { const auto max1 = detail::max_value() / Factor::num; if (count > max1) { ec = 1; return {}; } const auto min1 = (std::numeric_limits::min)() / Factor::num; if (detail::const_check(!std::is_unsigned::value) && count < min1) { ec = 1; return {}; } count *= Factor::num; } if (detail::const_check(Factor::den != 1)) count /= Factor::den; auto tocount = lossless_integral_conversion(count, ec); return ec ? To() : To(tocount); } /** * safe duration_cast between floating point durations */ template ::value), FMT_ENABLE_IF(std::is_floating_point::value)> To safe_duration_cast(std::chrono::duration from, int& ec) { using From = std::chrono::duration; ec = 0; if (std::isnan(from.count())) { // nan in, gives nan out. easy. return To{std::numeric_limits::quiet_NaN()}; } // maybe we should also check if from is denormal, and decide what to do about // it. // +-inf should be preserved. if (std::isinf(from.count())) { return To{from.count()}; } // the basic idea is that we need to convert from count() in the from type // to count() in the To type, by multiplying it with this: struct Factor : std::ratio_divide {}; static_assert(Factor::num > 0, "num must be positive"); static_assert(Factor::den > 0, "den must be positive"); // the conversion is like this: multiply from.count() with Factor::num // /Factor::den and convert it to To::rep, all this without // overflow/underflow. let's start by finding a suitable type that can hold // both To, From and Factor::num using IntermediateRep = typename std::common_type::type; // force conversion of From::rep -> IntermediateRep to be safe, // even if it will never happen be narrowing in this context. IntermediateRep count = safe_float_conversion(from.count(), ec); if (ec) { return {}; } // multiply with Factor::num without overflow or underflow if (detail::const_check(Factor::num != 1)) { constexpr auto max1 = detail::max_value() / static_cast(Factor::num); if (count > max1) { ec = 1; return {}; } constexpr auto min1 = std::numeric_limits::lowest() / static_cast(Factor::num); if (count < min1) { ec = 1; return {}; } count *= static_cast(Factor::num); } // this can't go wrong, right? den>0 is checked earlier. if (detail::const_check(Factor::den != 1)) { using common_t = typename std::common_type::type; count /= static_cast(Factor::den); } // convert to the to type, safely using ToRep = typename To::rep; const ToRep tocount = safe_float_conversion(count, ec); if (ec) { return {}; } return To{tocount}; } } // namespace safe_duration_cast #endif // Prevents expansion of a preceding token as a function-style macro. // Usage: f FMT_NOMACRO() #define FMT_NOMACRO namespace detail { template struct null {}; inline null<> localtime_r FMT_NOMACRO(...) { return null<>(); } inline null<> localtime_s(...) { return null<>(); } inline null<> gmtime_r(...) { return null<>(); } inline null<> gmtime_s(...) { return null<>(); } inline const std::locale& get_classic_locale() { static const auto& locale = std::locale::classic(); return locale; } template struct codecvt_result { static constexpr const size_t max_size = 32; CodeUnit buf[max_size]; CodeUnit* end; }; template constexpr const size_t codecvt_result::max_size; template void write_codecvt(codecvt_result& out, string_view in_buf, const std::locale& loc) { #if FMT_CLANG_VERSION # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wdeprecated" auto& f = std::use_facet>(loc); # pragma clang diagnostic pop #else auto& f = std::use_facet>(loc); #endif auto mb = std::mbstate_t(); const char* from_next = nullptr; auto result = f.in(mb, in_buf.begin(), in_buf.end(), from_next, std::begin(out.buf), std::end(out.buf), out.end); if (result != std::codecvt_base::ok) FMT_THROW(format_error("failed to format time")); } template auto write_encoded_tm_str(OutputIt out, string_view in, const std::locale& loc) -> OutputIt { if (detail::is_utf8() && loc != get_classic_locale()) { // char16_t and char32_t codecvts are broken in MSVC (linkage errors) and // gcc-4. #if FMT_MSC_VERSION != 0 || \ (defined(__GLIBCXX__) && !defined(_GLIBCXX_USE_DUAL_ABI)) // The _GLIBCXX_USE_DUAL_ABI macro is always defined in libstdc++ from gcc-5 // and newer. using code_unit = wchar_t; #else using code_unit = char32_t; #endif using unit_t = codecvt_result; unit_t unit; write_codecvt(unit, in, loc); // In UTF-8 is used one to four one-byte code units. auto u = to_utf8>(); if (!u.convert({unit.buf, to_unsigned(unit.end - unit.buf)})) FMT_THROW(format_error("failed to format time")); return copy_str(u.c_str(), u.c_str() + u.size(), out); } return copy_str(in.data(), in.data() + in.size(), out); } template ::value)> auto write_tm_str(OutputIt out, string_view sv, const std::locale& loc) -> OutputIt { codecvt_result unit; write_codecvt(unit, sv, loc); return copy_str(unit.buf, unit.end, out); } template ::value)> auto write_tm_str(OutputIt out, string_view sv, const std::locale& loc) -> OutputIt { return write_encoded_tm_str(out, sv, loc); } template inline void do_write(buffer& buf, const std::tm& time, const std::locale& loc, char format, char modifier) { auto&& format_buf = formatbuf>(buf); auto&& os = std::basic_ostream(&format_buf); os.imbue(loc); using iterator = std::ostreambuf_iterator; const auto& facet = std::use_facet>(loc); auto end = facet.put(os, os, Char(' '), &time, format, modifier); if (end.failed()) FMT_THROW(format_error("failed to format time")); } template ::value)> auto write(OutputIt out, const std::tm& time, const std::locale& loc, char format, char modifier = 0) -> OutputIt { auto&& buf = get_buffer(out); do_write(buf, time, loc, format, modifier); return get_iterator(buf, out); } template ::value)> auto write(OutputIt out, const std::tm& time, const std::locale& loc, char format, char modifier = 0) -> OutputIt { auto&& buf = basic_memory_buffer(); do_write(buf, time, loc, format, modifier); return write_encoded_tm_str(out, string_view(buf.data(), buf.size()), loc); } } // namespace detail FMT_BEGIN_EXPORT /** Converts given time since epoch as ``std::time_t`` value into calendar time, expressed in local time. Unlike ``std::localtime``, this function is thread-safe on most platforms. */ inline std::tm localtime(std::time_t time) { struct dispatcher { std::time_t time_; std::tm tm_; dispatcher(std::time_t t) : time_(t) {} bool run() { using namespace fmt::detail; return handle(localtime_r(&time_, &tm_)); } bool handle(std::tm* tm) { return tm != nullptr; } bool handle(detail::null<>) { using namespace fmt::detail; return fallback(localtime_s(&tm_, &time_)); } bool fallback(int res) { return res == 0; } #if !FMT_MSC_VERSION bool fallback(detail::null<>) { using namespace fmt::detail; std::tm* tm = std::localtime(&time_); if (tm) tm_ = *tm; return tm != nullptr; } #endif }; dispatcher lt(time); // Too big time values may be unsupported. if (!lt.run()) FMT_THROW(format_error("time_t value out of range")); return lt.tm_; } #if FMT_USE_LOCAL_TIME template inline auto localtime(std::chrono::local_time time) -> std::tm { return localtime(std::chrono::system_clock::to_time_t( std::chrono::current_zone()->to_sys(time))); } #endif /** Converts given time since epoch as ``std::time_t`` value into calendar time, expressed in Coordinated Universal Time (UTC). Unlike ``std::gmtime``, this function is thread-safe on most platforms. */ inline std::tm gmtime(std::time_t time) { struct dispatcher { std::time_t time_; std::tm tm_; dispatcher(std::time_t t) : time_(t) {} bool run() { using namespace fmt::detail; return handle(gmtime_r(&time_, &tm_)); } bool handle(std::tm* tm) { return tm != nullptr; } bool handle(detail::null<>) { using namespace fmt::detail; return fallback(gmtime_s(&tm_, &time_)); } bool fallback(int res) { return res == 0; } #if !FMT_MSC_VERSION bool fallback(detail::null<>) { std::tm* tm = std::gmtime(&time_); if (tm) tm_ = *tm; return tm != nullptr; } #endif }; dispatcher gt(time); // Too big time values may be unsupported. if (!gt.run()) FMT_THROW(format_error("time_t value out of range")); return gt.tm_; } inline std::tm gmtime( std::chrono::time_point time_point) { return gmtime(std::chrono::system_clock::to_time_t(time_point)); } FMT_BEGIN_DETAIL_NAMESPACE // DEPRECATED! template FMT_CONSTEXPR auto parse_align(const Char* begin, const Char* end, format_specs& specs) -> const Char* { FMT_ASSERT(begin != end, ""); auto align = align::none; auto p = begin + code_point_length(begin); if (end - p <= 0) p = begin; for (;;) { switch (to_ascii(*p)) { case '<': align = align::left; break; case '>': align = align::right; break; case '^': align = align::center; break; } if (align != align::none) { if (p != begin) { auto c = *begin; if (c == '}') return begin; if (c == '{') { throw_format_error("invalid fill character '{'"); return begin; } specs.fill = {begin, to_unsigned(p - begin)}; begin = p + 1; } else { ++begin; } break; } else if (p == begin) { break; } p = begin; } specs.align = align; return begin; } // Writes two-digit numbers a, b and c separated by sep to buf. // The method by Pavel Novikov based on // https://johnnylee-sde.github.io/Fast-unsigned-integer-to-time-string/. inline void write_digit2_separated(char* buf, unsigned a, unsigned b, unsigned c, char sep) { unsigned long long digits = a | (b << 24) | (static_cast(c) << 48); // Convert each value to BCD. // We have x = a * 10 + b and we want to convert it to BCD y = a * 16 + b. // The difference is // y - x = a * 6 // a can be found from x: // a = floor(x / 10) // then // y = x + a * 6 = x + floor(x / 10) * 6 // floor(x / 10) is (x * 205) >> 11 (needs 16 bits). digits += (((digits * 205) >> 11) & 0x000f00000f00000f) * 6; // Put low nibbles to high bytes and high nibbles to low bytes. digits = ((digits & 0x00f00000f00000f0) >> 4) | ((digits & 0x000f00000f00000f) << 8); auto usep = static_cast(sep); // Add ASCII '0' to each digit byte and insert separators. digits |= 0x3030003030003030 | (usep << 16) | (usep << 40); constexpr const size_t len = 8; if (const_check(is_big_endian())) { char tmp[len]; std::memcpy(tmp, &digits, len); std::reverse_copy(tmp, tmp + len, buf); } else { std::memcpy(buf, &digits, len); } } template FMT_CONSTEXPR inline const char* get_units() { if (std::is_same::value) return "as"; if (std::is_same::value) return "fs"; if (std::is_same::value) return "ps"; if (std::is_same::value) return "ns"; if (std::is_same::value) return "µs"; if (std::is_same::value) return "ms"; if (std::is_same::value) return "cs"; if (std::is_same::value) return "ds"; if (std::is_same>::value) return "s"; if (std::is_same::value) return "das"; if (std::is_same::value) return "hs"; if (std::is_same::value) return "ks"; if (std::is_same::value) return "Ms"; if (std::is_same::value) return "Gs"; if (std::is_same::value) return "Ts"; if (std::is_same::value) return "Ps"; if (std::is_same::value) return "Es"; if (std::is_same>::value) return "m"; if (std::is_same>::value) return "h"; return nullptr; } enum class numeric_system { standard, // Alternative numeric system, e.g. 十二 instead of 12 in ja_JP locale. alternative }; // Glibc extensions for formatting numeric values. enum class pad_type { unspecified, // Do not pad a numeric result string. none, // Pad a numeric result string with zeros even if the conversion specifier // character uses space-padding by default. zero, // Pad a numeric result string with spaces. space, }; template auto write_padding(OutputIt out, pad_type pad, int width) -> OutputIt { if (pad == pad_type::none) return out; return std::fill_n(out, width, pad == pad_type::space ? ' ' : '0'); } template auto write_padding(OutputIt out, pad_type pad) -> OutputIt { if (pad != pad_type::none) *out++ = pad == pad_type::space ? ' ' : '0'; return out; } // Parses a put_time-like format string and invokes handler actions. template FMT_CONSTEXPR const Char* parse_chrono_format(const Char* begin, const Char* end, Handler&& handler) { if (begin == end || *begin == '}') return begin; if (*begin != '%') FMT_THROW(format_error("invalid format")); auto ptr = begin; pad_type pad = pad_type::unspecified; while (ptr != end) { auto c = *ptr; if (c == '}') break; if (c != '%') { ++ptr; continue; } if (begin != ptr) handler.on_text(begin, ptr); ++ptr; // consume '%' if (ptr == end) FMT_THROW(format_error("invalid format")); c = *ptr; switch (c) { case '_': pad = pad_type::space; ++ptr; break; case '-': pad = pad_type::none; ++ptr; break; case '0': pad = pad_type::zero; ++ptr; break; } if (ptr == end) FMT_THROW(format_error("invalid format")); c = *ptr++; switch (c) { case '%': handler.on_text(ptr - 1, ptr); break; case 'n': { const Char newline[] = {'\n'}; handler.on_text(newline, newline + 1); break; } case 't': { const Char tab[] = {'\t'}; handler.on_text(tab, tab + 1); break; } // Year: case 'Y': handler.on_year(numeric_system::standard); break; case 'y': handler.on_short_year(numeric_system::standard); break; case 'C': handler.on_century(numeric_system::standard); break; case 'G': handler.on_iso_week_based_year(); break; case 'g': handler.on_iso_week_based_short_year(); break; // Day of the week: case 'a': handler.on_abbr_weekday(); break; case 'A': handler.on_full_weekday(); break; case 'w': handler.on_dec0_weekday(numeric_system::standard); break; case 'u': handler.on_dec1_weekday(numeric_system::standard); break; // Month: case 'b': case 'h': handler.on_abbr_month(); break; case 'B': handler.on_full_month(); break; case 'm': handler.on_dec_month(numeric_system::standard); break; // Day of the year/month: case 'U': handler.on_dec0_week_of_year(numeric_system::standard); break; case 'W': handler.on_dec1_week_of_year(numeric_system::standard); break; case 'V': handler.on_iso_week_of_year(numeric_system::standard); break; case 'j': handler.on_day_of_year(); break; case 'd': handler.on_day_of_month(numeric_system::standard); break; case 'e': handler.on_day_of_month_space(numeric_system::standard); break; // Hour, minute, second: case 'H': handler.on_24_hour(numeric_system::standard, pad); break; case 'I': handler.on_12_hour(numeric_system::standard, pad); break; case 'M': handler.on_minute(numeric_system::standard, pad); break; case 'S': handler.on_second(numeric_system::standard, pad); break; // Other: case 'c': handler.on_datetime(numeric_system::standard); break; case 'x': handler.on_loc_date(numeric_system::standard); break; case 'X': handler.on_loc_time(numeric_system::standard); break; case 'D': handler.on_us_date(); break; case 'F': handler.on_iso_date(); break; case 'r': handler.on_12_hour_time(); break; case 'R': handler.on_24_hour_time(); break; case 'T': handler.on_iso_time(); break; case 'p': handler.on_am_pm(); break; case 'Q': handler.on_duration_value(); break; case 'q': handler.on_duration_unit(); break; case 'z': handler.on_utc_offset(numeric_system::standard); break; case 'Z': handler.on_tz_name(); break; // Alternative representation: case 'E': { if (ptr == end) FMT_THROW(format_error("invalid format")); c = *ptr++; switch (c) { case 'Y': handler.on_year(numeric_system::alternative); break; case 'y': handler.on_offset_year(); break; case 'C': handler.on_century(numeric_system::alternative); break; case 'c': handler.on_datetime(numeric_system::alternative); break; case 'x': handler.on_loc_date(numeric_system::alternative); break; case 'X': handler.on_loc_time(numeric_system::alternative); break; case 'z': handler.on_utc_offset(numeric_system::alternative); break; default: FMT_THROW(format_error("invalid format")); } break; } case 'O': if (ptr == end) FMT_THROW(format_error("invalid format")); c = *ptr++; switch (c) { case 'y': handler.on_short_year(numeric_system::alternative); break; case 'm': handler.on_dec_month(numeric_system::alternative); break; case 'U': handler.on_dec0_week_of_year(numeric_system::alternative); break; case 'W': handler.on_dec1_week_of_year(numeric_system::alternative); break; case 'V': handler.on_iso_week_of_year(numeric_system::alternative); break; case 'd': handler.on_day_of_month(numeric_system::alternative); break; case 'e': handler.on_day_of_month_space(numeric_system::alternative); break; case 'w': handler.on_dec0_weekday(numeric_system::alternative); break; case 'u': handler.on_dec1_weekday(numeric_system::alternative); break; case 'H': handler.on_24_hour(numeric_system::alternative, pad); break; case 'I': handler.on_12_hour(numeric_system::alternative, pad); break; case 'M': handler.on_minute(numeric_system::alternative, pad); break; case 'S': handler.on_second(numeric_system::alternative, pad); break; case 'z': handler.on_utc_offset(numeric_system::alternative); break; default: FMT_THROW(format_error("invalid format")); } break; default: FMT_THROW(format_error("invalid format")); } begin = ptr; } if (begin != ptr) handler.on_text(begin, ptr); return ptr; } template struct null_chrono_spec_handler { FMT_CONSTEXPR void unsupported() { static_cast(this)->unsupported(); } FMT_CONSTEXPR void on_year(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_short_year(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_offset_year() { unsupported(); } FMT_CONSTEXPR void on_century(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_iso_week_based_year() { unsupported(); } FMT_CONSTEXPR void on_iso_week_based_short_year() { unsupported(); } FMT_CONSTEXPR void on_abbr_weekday() { unsupported(); } FMT_CONSTEXPR void on_full_weekday() { unsupported(); } FMT_CONSTEXPR void on_dec0_weekday(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_dec1_weekday(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_abbr_month() { unsupported(); } FMT_CONSTEXPR void on_full_month() { unsupported(); } FMT_CONSTEXPR void on_dec_month(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_dec0_week_of_year(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_dec1_week_of_year(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_iso_week_of_year(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_day_of_year() { unsupported(); } FMT_CONSTEXPR void on_day_of_month(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_day_of_month_space(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_24_hour(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_12_hour(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_minute(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_second(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_datetime(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_loc_date(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_loc_time(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_us_date() { unsupported(); } FMT_CONSTEXPR void on_iso_date() { unsupported(); } FMT_CONSTEXPR void on_12_hour_time() { unsupported(); } FMT_CONSTEXPR void on_24_hour_time() { unsupported(); } FMT_CONSTEXPR void on_iso_time() { unsupported(); } FMT_CONSTEXPR void on_am_pm() { unsupported(); } FMT_CONSTEXPR void on_duration_value() { unsupported(); } FMT_CONSTEXPR void on_duration_unit() { unsupported(); } FMT_CONSTEXPR void on_utc_offset(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_tz_name() { unsupported(); } }; struct tm_format_checker : null_chrono_spec_handler { FMT_NORETURN void unsupported() { FMT_THROW(format_error("no format")); } template FMT_CONSTEXPR void on_text(const Char*, const Char*) {} FMT_CONSTEXPR void on_year(numeric_system) {} FMT_CONSTEXPR void on_short_year(numeric_system) {} FMT_CONSTEXPR void on_offset_year() {} FMT_CONSTEXPR void on_century(numeric_system) {} FMT_CONSTEXPR void on_iso_week_based_year() {} FMT_CONSTEXPR void on_iso_week_based_short_year() {} FMT_CONSTEXPR void on_abbr_weekday() {} FMT_CONSTEXPR void on_full_weekday() {} FMT_CONSTEXPR void on_dec0_weekday(numeric_system) {} FMT_CONSTEXPR void on_dec1_weekday(numeric_system) {} FMT_CONSTEXPR void on_abbr_month() {} FMT_CONSTEXPR void on_full_month() {} FMT_CONSTEXPR void on_dec_month(numeric_system) {} FMT_CONSTEXPR void on_dec0_week_of_year(numeric_system) {} FMT_CONSTEXPR void on_dec1_week_of_year(numeric_system) {} FMT_CONSTEXPR void on_iso_week_of_year(numeric_system) {} FMT_CONSTEXPR void on_day_of_year() {} FMT_CONSTEXPR void on_day_of_month(numeric_system) {} FMT_CONSTEXPR void on_day_of_month_space(numeric_system) {} FMT_CONSTEXPR void on_24_hour(numeric_system, pad_type) {} FMT_CONSTEXPR void on_12_hour(numeric_system, pad_type) {} FMT_CONSTEXPR void on_minute(numeric_system, pad_type) {} FMT_CONSTEXPR void on_second(numeric_system, pad_type) {} FMT_CONSTEXPR void on_datetime(numeric_system) {} FMT_CONSTEXPR void on_loc_date(numeric_system) {} FMT_CONSTEXPR void on_loc_time(numeric_system) {} FMT_CONSTEXPR void on_us_date() {} FMT_CONSTEXPR void on_iso_date() {} FMT_CONSTEXPR void on_12_hour_time() {} FMT_CONSTEXPR void on_24_hour_time() {} FMT_CONSTEXPR void on_iso_time() {} FMT_CONSTEXPR void on_am_pm() {} FMT_CONSTEXPR void on_utc_offset(numeric_system) {} FMT_CONSTEXPR void on_tz_name() {} }; inline const char* tm_wday_full_name(int wday) { static constexpr const char* full_name_list[] = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}; return wday >= 0 && wday <= 6 ? full_name_list[wday] : "?"; } inline const char* tm_wday_short_name(int wday) { static constexpr const char* short_name_list[] = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; return wday >= 0 && wday <= 6 ? short_name_list[wday] : "???"; } inline const char* tm_mon_full_name(int mon) { static constexpr const char* full_name_list[] = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}; return mon >= 0 && mon <= 11 ? full_name_list[mon] : "?"; } inline const char* tm_mon_short_name(int mon) { static constexpr const char* short_name_list[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", }; return mon >= 0 && mon <= 11 ? short_name_list[mon] : "???"; } template struct has_member_data_tm_gmtoff : std::false_type {}; template struct has_member_data_tm_gmtoff> : std::true_type {}; template struct has_member_data_tm_zone : std::false_type {}; template struct has_member_data_tm_zone> : std::true_type {}; #if FMT_USE_TZSET inline void tzset_once() { static bool init = []() -> bool { _tzset(); return true; }(); ignore_unused(init); } #endif // Converts value to Int and checks that it's in the range [0, upper). template ::value)> inline Int to_nonnegative_int(T value, Int upper) { FMT_ASSERT(std::is_unsigned::value || (value >= 0 && to_unsigned(value) <= to_unsigned(upper)), "invalid value"); (void)upper; return static_cast(value); } template ::value)> inline Int to_nonnegative_int(T value, Int upper) { if (value < 0 || value > static_cast(upper)) FMT_THROW(format_error("invalid value")); return static_cast(value); } constexpr long long pow10(std::uint32_t n) { return n == 0 ? 1 : 10 * pow10(n - 1); } // Counts the number of fractional digits in the range [0, 18] according to the // C++20 spec. If more than 18 fractional digits are required then returns 6 for // microseconds precision. template () / 10)> struct count_fractional_digits { static constexpr int value = Num % Den == 0 ? N : count_fractional_digits::value; }; // Base case that doesn't instantiate any more templates // in order to avoid overflow. template struct count_fractional_digits { static constexpr int value = (Num % Den == 0) ? N : 6; }; // Format subseconds which are given as an integer type with an appropriate // number of digits. template void write_fractional_seconds(OutputIt& out, Duration d, int precision = -1) { constexpr auto num_fractional_digits = count_fractional_digits::value; using subsecond_precision = std::chrono::duration< typename std::common_type::type, std::ratio<1, detail::pow10(num_fractional_digits)>>; const auto fractional = d - std::chrono::duration_cast(d); const auto subseconds = std::chrono::treat_as_floating_point< typename subsecond_precision::rep>::value ? fractional.count() : std::chrono::duration_cast(fractional).count(); auto n = static_cast>(subseconds); const int num_digits = detail::count_digits(n); int leading_zeroes = (std::max)(0, num_fractional_digits - num_digits); if (precision < 0) { FMT_ASSERT(!std::is_floating_point::value, ""); if (std::ratio_less::value) { *out++ = '.'; out = std::fill_n(out, leading_zeroes, '0'); out = format_decimal(out, n, num_digits).end; } } else { *out++ = '.'; leading_zeroes = (std::min)(leading_zeroes, precision); out = std::fill_n(out, leading_zeroes, '0'); int remaining = precision - leading_zeroes; if (remaining != 0 && remaining < num_digits) { n /= to_unsigned(detail::pow10(to_unsigned(num_digits - remaining))); out = format_decimal(out, n, remaining).end; return; } out = format_decimal(out, n, num_digits).end; remaining -= num_digits; out = std::fill_n(out, remaining, '0'); } } // Format subseconds which are given as a floating point type with an // appropriate number of digits. We cannot pass the Duration here, as we // explicitly need to pass the Rep value in the chrono_formatter. template void write_floating_seconds(memory_buffer& buf, Duration duration, int num_fractional_digits = -1) { using rep = typename Duration::rep; FMT_ASSERT(std::is_floating_point::value, ""); auto val = duration.count(); if (num_fractional_digits < 0) { // For `std::round` with fallback to `round`: // On some toolchains `std::round` is not available (e.g. GCC 6). using namespace std; num_fractional_digits = count_fractional_digits::value; if (num_fractional_digits < 6 && static_cast(round(val)) != val) num_fractional_digits = 6; } format_to(std::back_inserter(buf), FMT_STRING("{:.{}f}"), std::fmod(val * static_cast(Duration::period::num) / static_cast(Duration::period::den), static_cast(60)), num_fractional_digits); } template class tm_writer { private: static constexpr int days_per_week = 7; const std::locale& loc_; const bool is_classic_; OutputIt out_; const Duration* subsecs_; const std::tm& tm_; auto tm_sec() const noexcept -> int { FMT_ASSERT(tm_.tm_sec >= 0 && tm_.tm_sec <= 61, ""); return tm_.tm_sec; } auto tm_min() const noexcept -> int { FMT_ASSERT(tm_.tm_min >= 0 && tm_.tm_min <= 59, ""); return tm_.tm_min; } auto tm_hour() const noexcept -> int { FMT_ASSERT(tm_.tm_hour >= 0 && tm_.tm_hour <= 23, ""); return tm_.tm_hour; } auto tm_mday() const noexcept -> int { FMT_ASSERT(tm_.tm_mday >= 1 && tm_.tm_mday <= 31, ""); return tm_.tm_mday; } auto tm_mon() const noexcept -> int { FMT_ASSERT(tm_.tm_mon >= 0 && tm_.tm_mon <= 11, ""); return tm_.tm_mon; } auto tm_year() const noexcept -> long long { return 1900ll + tm_.tm_year; } auto tm_wday() const noexcept -> int { FMT_ASSERT(tm_.tm_wday >= 0 && tm_.tm_wday <= 6, ""); return tm_.tm_wday; } auto tm_yday() const noexcept -> int { FMT_ASSERT(tm_.tm_yday >= 0 && tm_.tm_yday <= 365, ""); return tm_.tm_yday; } auto tm_hour12() const noexcept -> int { const auto h = tm_hour(); const auto z = h < 12 ? h : h - 12; return z == 0 ? 12 : z; } // POSIX and the C Standard are unclear or inconsistent about what %C and %y // do if the year is negative or exceeds 9999. Use the convention that %C // concatenated with %y yields the same output as %Y, and that %Y contains at // least 4 characters, with more only if necessary. auto split_year_lower(long long year) const noexcept -> int { auto l = year % 100; if (l < 0) l = -l; // l in [0, 99] return static_cast(l); } // Algorithm: // https://en.wikipedia.org/wiki/ISO_week_date#Calculating_the_week_number_from_a_month_and_day_of_the_month_or_ordinal_date auto iso_year_weeks(long long curr_year) const noexcept -> int { const auto prev_year = curr_year - 1; const auto curr_p = (curr_year + curr_year / 4 - curr_year / 100 + curr_year / 400) % days_per_week; const auto prev_p = (prev_year + prev_year / 4 - prev_year / 100 + prev_year / 400) % days_per_week; return 52 + ((curr_p == 4 || prev_p == 3) ? 1 : 0); } auto iso_week_num(int tm_yday, int tm_wday) const noexcept -> int { return (tm_yday + 11 - (tm_wday == 0 ? days_per_week : tm_wday)) / days_per_week; } auto tm_iso_week_year() const noexcept -> long long { const auto year = tm_year(); const auto w = iso_week_num(tm_yday(), tm_wday()); if (w < 1) return year - 1; if (w > iso_year_weeks(year)) return year + 1; return year; } auto tm_iso_week_of_year() const noexcept -> int { const auto year = tm_year(); const auto w = iso_week_num(tm_yday(), tm_wday()); if (w < 1) return iso_year_weeks(year - 1); if (w > iso_year_weeks(year)) return 1; return w; } void write1(int value) { *out_++ = static_cast('0' + to_unsigned(value) % 10); } void write2(int value) { const char* d = digits2(to_unsigned(value) % 100); *out_++ = *d++; *out_++ = *d; } void write2(int value, pad_type pad) { unsigned int v = to_unsigned(value) % 100; if (v >= 10) { const char* d = digits2(v); *out_++ = *d++; *out_++ = *d; } else { out_ = detail::write_padding(out_, pad); *out_++ = static_cast('0' + v); } } void write_year_extended(long long year) { // At least 4 characters. int width = 4; if (year < 0) { *out_++ = '-'; year = 0 - year; --width; } uint32_or_64_or_128_t n = to_unsigned(year); const int num_digits = count_digits(n); if (width > num_digits) out_ = std::fill_n(out_, width - num_digits, '0'); out_ = format_decimal(out_, n, num_digits).end; } void write_year(long long year) { if (year >= 0 && year < 10000) { write2(static_cast(year / 100)); write2(static_cast(year % 100)); } else { write_year_extended(year); } } void write_utc_offset(long offset, numeric_system ns) { if (offset < 0) { *out_++ = '-'; offset = -offset; } else { *out_++ = '+'; } offset /= 60; write2(static_cast(offset / 60)); if (ns != numeric_system::standard) *out_++ = ':'; write2(static_cast(offset % 60)); } template ::value)> void format_utc_offset_impl(const T& tm, numeric_system ns) { write_utc_offset(tm.tm_gmtoff, ns); } template ::value)> void format_utc_offset_impl(const T& tm, numeric_system ns) { #if defined(_WIN32) && defined(_UCRT) # if FMT_USE_TZSET tzset_once(); # endif long offset = 0; _get_timezone(&offset); if (tm.tm_isdst) { long dstbias = 0; _get_dstbias(&dstbias); offset += dstbias; } write_utc_offset(-offset, ns); #else if (ns == numeric_system::standard) return format_localized('z'); // Extract timezone offset from timezone conversion functions. std::tm gtm = tm; std::time_t gt = std::mktime(>m); std::tm ltm = gmtime(gt); std::time_t lt = std::mktime(<m); long offset = gt - lt; write_utc_offset(offset, ns); #endif } template ::value)> void format_tz_name_impl(const T& tm) { if (is_classic_) out_ = write_tm_str(out_, tm.tm_zone, loc_); else format_localized('Z'); } template ::value)> void format_tz_name_impl(const T&) { format_localized('Z'); } void format_localized(char format, char modifier = 0) { out_ = write(out_, tm_, loc_, format, modifier); } public: tm_writer(const std::locale& loc, OutputIt out, const std::tm& tm, const Duration* subsecs = nullptr) : loc_(loc), is_classic_(loc_ == get_classic_locale()), out_(out), subsecs_(subsecs), tm_(tm) {} OutputIt out() const { return out_; } FMT_CONSTEXPR void on_text(const Char* begin, const Char* end) { out_ = copy_str(begin, end, out_); } void on_abbr_weekday() { if (is_classic_) out_ = write(out_, tm_wday_short_name(tm_wday())); else format_localized('a'); } void on_full_weekday() { if (is_classic_) out_ = write(out_, tm_wday_full_name(tm_wday())); else format_localized('A'); } void on_dec0_weekday(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write1(tm_wday()); format_localized('w', 'O'); } void on_dec1_weekday(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) { auto wday = tm_wday(); write1(wday == 0 ? days_per_week : wday); } else { format_localized('u', 'O'); } } void on_abbr_month() { if (is_classic_) out_ = write(out_, tm_mon_short_name(tm_mon())); else format_localized('b'); } void on_full_month() { if (is_classic_) out_ = write(out_, tm_mon_full_name(tm_mon())); else format_localized('B'); } void on_datetime(numeric_system ns) { if (is_classic_) { on_abbr_weekday(); *out_++ = ' '; on_abbr_month(); *out_++ = ' '; on_day_of_month_space(numeric_system::standard); *out_++ = ' '; on_iso_time(); *out_++ = ' '; on_year(numeric_system::standard); } else { format_localized('c', ns == numeric_system::standard ? '\0' : 'E'); } } void on_loc_date(numeric_system ns) { if (is_classic_) on_us_date(); else format_localized('x', ns == numeric_system::standard ? '\0' : 'E'); } void on_loc_time(numeric_system ns) { if (is_classic_) on_iso_time(); else format_localized('X', ns == numeric_system::standard ? '\0' : 'E'); } void on_us_date() { char buf[8]; write_digit2_separated(buf, to_unsigned(tm_mon() + 1), to_unsigned(tm_mday()), to_unsigned(split_year_lower(tm_year())), '/'); out_ = copy_str(std::begin(buf), std::end(buf), out_); } void on_iso_date() { auto year = tm_year(); char buf[10]; size_t offset = 0; if (year >= 0 && year < 10000) { copy2(buf, digits2(static_cast(year / 100))); } else { offset = 4; write_year_extended(year); year = 0; } write_digit2_separated(buf + 2, static_cast(year % 100), to_unsigned(tm_mon() + 1), to_unsigned(tm_mday()), '-'); out_ = copy_str(std::begin(buf) + offset, std::end(buf), out_); } void on_utc_offset(numeric_system ns) { format_utc_offset_impl(tm_, ns); } void on_tz_name() { format_tz_name_impl(tm_); } void on_year(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write_year(tm_year()); format_localized('Y', 'E'); } void on_short_year(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write2(split_year_lower(tm_year())); format_localized('y', 'O'); } void on_offset_year() { if (is_classic_) return write2(split_year_lower(tm_year())); format_localized('y', 'E'); } void on_century(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) { auto year = tm_year(); auto upper = year / 100; if (year >= -99 && year < 0) { // Zero upper on negative year. *out_++ = '-'; *out_++ = '0'; } else if (upper >= 0 && upper < 100) { write2(static_cast(upper)); } else { out_ = write(out_, upper); } } else { format_localized('C', 'E'); } } void on_dec_month(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_mon() + 1); format_localized('m', 'O'); } void on_dec0_week_of_year(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write2((tm_yday() + days_per_week - tm_wday()) / days_per_week); format_localized('U', 'O'); } void on_dec1_week_of_year(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) { auto wday = tm_wday(); write2((tm_yday() + days_per_week - (wday == 0 ? (days_per_week - 1) : (wday - 1))) / days_per_week); } else { format_localized('W', 'O'); } } void on_iso_week_of_year(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_iso_week_of_year()); format_localized('V', 'O'); } void on_iso_week_based_year() { write_year(tm_iso_week_year()); } void on_iso_week_based_short_year() { write2(split_year_lower(tm_iso_week_year())); } void on_day_of_year() { auto yday = tm_yday() + 1; write1(yday / 100); write2(yday % 100); } void on_day_of_month(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_mday()); format_localized('d', 'O'); } void on_day_of_month_space(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) { auto mday = to_unsigned(tm_mday()) % 100; const char* d2 = digits2(mday); *out_++ = mday < 10 ? ' ' : d2[0]; *out_++ = d2[1]; } else { format_localized('e', 'O'); } } void on_24_hour(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_hour(), pad); format_localized('H', 'O'); } void on_12_hour(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_hour12(), pad); format_localized('I', 'O'); } void on_minute(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_min(), pad); format_localized('M', 'O'); } void on_second(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) { write2(tm_sec(), pad); if (subsecs_) { if (std::is_floating_point::value) { auto buf = memory_buffer(); write_floating_seconds(buf, *subsecs_); if (buf.size() > 1) { // Remove the leading "0", write something like ".123". out_ = std::copy(buf.begin() + 1, buf.end(), out_); } } else { write_fractional_seconds(out_, *subsecs_); } } } else { // Currently no formatting of subseconds when a locale is set. format_localized('S', 'O'); } } void on_12_hour_time() { if (is_classic_) { char buf[8]; write_digit2_separated(buf, to_unsigned(tm_hour12()), to_unsigned(tm_min()), to_unsigned(tm_sec()), ':'); out_ = copy_str(std::begin(buf), std::end(buf), out_); *out_++ = ' '; on_am_pm(); } else { format_localized('r'); } } void on_24_hour_time() { write2(tm_hour()); *out_++ = ':'; write2(tm_min()); } void on_iso_time() { on_24_hour_time(); *out_++ = ':'; on_second(numeric_system::standard, pad_type::unspecified); } void on_am_pm() { if (is_classic_) { *out_++ = tm_hour() < 12 ? 'A' : 'P'; *out_++ = 'M'; } else { format_localized('p'); } } // These apply to chrono durations but not tm. void on_duration_value() {} void on_duration_unit() {} }; struct chrono_format_checker : null_chrono_spec_handler { bool has_precision_integral = false; FMT_NORETURN void unsupported() { FMT_THROW(format_error("no date")); } template FMT_CONSTEXPR void on_text(const Char*, const Char*) {} FMT_CONSTEXPR void on_24_hour(numeric_system, pad_type) {} FMT_CONSTEXPR void on_12_hour(numeric_system, pad_type) {} FMT_CONSTEXPR void on_minute(numeric_system, pad_type) {} FMT_CONSTEXPR void on_second(numeric_system, pad_type) {} FMT_CONSTEXPR void on_12_hour_time() {} FMT_CONSTEXPR void on_24_hour_time() {} FMT_CONSTEXPR void on_iso_time() {} FMT_CONSTEXPR void on_am_pm() {} FMT_CONSTEXPR void on_duration_value() const { if (has_precision_integral) { FMT_THROW(format_error("precision not allowed for this argument type")); } } FMT_CONSTEXPR void on_duration_unit() {} }; template ::value&& has_isfinite::value)> inline bool isfinite(T) { return true; } template ::value)> inline T mod(T x, int y) { return x % static_cast(y); } template ::value)> inline T mod(T x, int y) { return std::fmod(x, static_cast(y)); } // If T is an integral type, maps T to its unsigned counterpart, otherwise // leaves it unchanged (unlike std::make_unsigned). template ::value> struct make_unsigned_or_unchanged { using type = T; }; template struct make_unsigned_or_unchanged { using type = typename std::make_unsigned::type; }; #if FMT_SAFE_DURATION_CAST // throwing version of safe_duration_cast template To fmt_safe_duration_cast(std::chrono::duration from) { int ec; To to = safe_duration_cast::safe_duration_cast(from, ec); if (ec) FMT_THROW(format_error("cannot format duration")); return to; } #endif template ::value)> inline std::chrono::duration get_milliseconds( std::chrono::duration d) { // this may overflow and/or the result may not fit in the // target type. #if FMT_SAFE_DURATION_CAST using CommonSecondsType = typename std::common_type::type; const auto d_as_common = fmt_safe_duration_cast(d); const auto d_as_whole_seconds = fmt_safe_duration_cast(d_as_common); // this conversion should be nonproblematic const auto diff = d_as_common - d_as_whole_seconds; const auto ms = fmt_safe_duration_cast>(diff); return ms; #else auto s = std::chrono::duration_cast(d); return std::chrono::duration_cast(d - s); #endif } template ::value)> OutputIt format_duration_value(OutputIt out, Rep val, int) { return write(out, val); } template ::value)> OutputIt format_duration_value(OutputIt out, Rep val, int precision) { auto specs = format_specs(); specs.precision = precision; specs.type = precision >= 0 ? presentation_type::fixed_lower : presentation_type::general_lower; return write(out, val, specs); } template OutputIt copy_unit(string_view unit, OutputIt out, Char) { return std::copy(unit.begin(), unit.end(), out); } template OutputIt copy_unit(string_view unit, OutputIt out, wchar_t) { // This works when wchar_t is UTF-32 because units only contain characters // that have the same representation in UTF-16 and UTF-32. utf8_to_utf16 u(unit); return std::copy(u.c_str(), u.c_str() + u.size(), out); } template OutputIt format_duration_unit(OutputIt out) { if (const char* unit = get_units()) return copy_unit(string_view(unit), out, Char()); *out++ = '['; out = write(out, Period::num); if (const_check(Period::den != 1)) { *out++ = '/'; out = write(out, Period::den); } *out++ = ']'; *out++ = 's'; return out; } class get_locale { private: union { std::locale locale_; }; bool has_locale_ = false; public: get_locale(bool localized, locale_ref loc) : has_locale_(localized) { if (localized) ::new (&locale_) std::locale(loc.template get()); } ~get_locale() { if (has_locale_) locale_.~locale(); } operator const std::locale&() const { return has_locale_ ? locale_ : get_classic_locale(); } }; template struct chrono_formatter { FormatContext& context; OutputIt out; int precision; bool localized = false; // rep is unsigned to avoid overflow. using rep = conditional_t::value && sizeof(Rep) < sizeof(int), unsigned, typename make_unsigned_or_unchanged::type>; rep val; using seconds = std::chrono::duration; seconds s; using milliseconds = std::chrono::duration; bool negative; using char_type = typename FormatContext::char_type; using tm_writer_type = tm_writer; chrono_formatter(FormatContext& ctx, OutputIt o, std::chrono::duration d) : context(ctx), out(o), val(static_cast(d.count())), negative(false) { if (d.count() < 0) { val = 0 - val; negative = true; } // this may overflow and/or the result may not fit in the // target type. #if FMT_SAFE_DURATION_CAST // might need checked conversion (rep!=Rep) auto tmpval = std::chrono::duration(val); s = fmt_safe_duration_cast(tmpval); #else s = std::chrono::duration_cast( std::chrono::duration(val)); #endif } // returns true if nan or inf, writes to out. bool handle_nan_inf() { if (isfinite(val)) { return false; } if (isnan(val)) { write_nan(); return true; } // must be +-inf if (val > 0) { write_pinf(); } else { write_ninf(); } return true; } Rep hour() const { return static_cast(mod((s.count() / 3600), 24)); } Rep hour12() const { Rep hour = static_cast(mod((s.count() / 3600), 12)); return hour <= 0 ? 12 : hour; } Rep minute() const { return static_cast(mod((s.count() / 60), 60)); } Rep second() const { return static_cast(mod(s.count(), 60)); } std::tm time() const { auto time = std::tm(); time.tm_hour = to_nonnegative_int(hour(), 24); time.tm_min = to_nonnegative_int(minute(), 60); time.tm_sec = to_nonnegative_int(second(), 60); return time; } void write_sign() { if (negative) { *out++ = '-'; negative = false; } } void write(Rep value, int width, pad_type pad = pad_type::unspecified) { write_sign(); if (isnan(value)) return write_nan(); uint32_or_64_or_128_t n = to_unsigned(to_nonnegative_int(value, max_value())); int num_digits = detail::count_digits(n); if (width > num_digits) { out = detail::write_padding(out, pad, width - num_digits); } out = format_decimal(out, n, num_digits).end; } void write_nan() { std::copy_n("nan", 3, out); } void write_pinf() { std::copy_n("inf", 3, out); } void write_ninf() { std::copy_n("-inf", 4, out); } template void format_tm(const tm& time, Callback cb, Args... args) { if (isnan(val)) return write_nan(); get_locale loc(localized, context.locale()); auto w = tm_writer_type(loc, out, time); (w.*cb)(args...); out = w.out(); } void on_text(const char_type* begin, const char_type* end) { std::copy(begin, end, out); } // These are not implemented because durations don't have date information. void on_abbr_weekday() {} void on_full_weekday() {} void on_dec0_weekday(numeric_system) {} void on_dec1_weekday(numeric_system) {} void on_abbr_month() {} void on_full_month() {} void on_datetime(numeric_system) {} void on_loc_date(numeric_system) {} void on_loc_time(numeric_system) {} void on_us_date() {} void on_iso_date() {} void on_utc_offset(numeric_system) {} void on_tz_name() {} void on_year(numeric_system) {} void on_short_year(numeric_system) {} void on_offset_year() {} void on_century(numeric_system) {} void on_iso_week_based_year() {} void on_iso_week_based_short_year() {} void on_dec_month(numeric_system) {} void on_dec0_week_of_year(numeric_system) {} void on_dec1_week_of_year(numeric_system) {} void on_iso_week_of_year(numeric_system) {} void on_day_of_year() {} void on_day_of_month(numeric_system) {} void on_day_of_month_space(numeric_system) {} void on_24_hour(numeric_system ns, pad_type pad) { if (handle_nan_inf()) return; if (ns == numeric_system::standard) return write(hour(), 2, pad); auto time = tm(); time.tm_hour = to_nonnegative_int(hour(), 24); format_tm(time, &tm_writer_type::on_24_hour, ns, pad); } void on_12_hour(numeric_system ns, pad_type pad) { if (handle_nan_inf()) return; if (ns == numeric_system::standard) return write(hour12(), 2, pad); auto time = tm(); time.tm_hour = to_nonnegative_int(hour12(), 12); format_tm(time, &tm_writer_type::on_12_hour, ns, pad); } void on_minute(numeric_system ns, pad_type pad) { if (handle_nan_inf()) return; if (ns == numeric_system::standard) return write(minute(), 2, pad); auto time = tm(); time.tm_min = to_nonnegative_int(minute(), 60); format_tm(time, &tm_writer_type::on_minute, ns, pad); } void on_second(numeric_system ns, pad_type pad) { if (handle_nan_inf()) return; if (ns == numeric_system::standard) { if (std::is_floating_point::value) { auto buf = memory_buffer(); write_floating_seconds(buf, std::chrono::duration(val), precision); if (negative) *out++ = '-'; if (buf.size() < 2 || buf[1] == '.') { out = detail::write_padding(out, pad); } out = std::copy(buf.begin(), buf.end(), out); } else { write(second(), 2, pad); write_fractional_seconds( out, std::chrono::duration(val), precision); } return; } auto time = tm(); time.tm_sec = to_nonnegative_int(second(), 60); format_tm(time, &tm_writer_type::on_second, ns, pad); } void on_12_hour_time() { if (handle_nan_inf()) return; format_tm(time(), &tm_writer_type::on_12_hour_time); } void on_24_hour_time() { if (handle_nan_inf()) { *out++ = ':'; handle_nan_inf(); return; } write(hour(), 2); *out++ = ':'; write(minute(), 2); } void on_iso_time() { on_24_hour_time(); *out++ = ':'; if (handle_nan_inf()) return; on_second(numeric_system::standard, pad_type::unspecified); } void on_am_pm() { if (handle_nan_inf()) return; format_tm(time(), &tm_writer_type::on_am_pm); } void on_duration_value() { if (handle_nan_inf()) return; write_sign(); out = format_duration_value(out, val, precision); } void on_duration_unit() { out = format_duration_unit(out); } }; FMT_END_DETAIL_NAMESPACE #if defined(__cpp_lib_chrono) && __cpp_lib_chrono >= 201907 using weekday = std::chrono::weekday; #else // A fallback version of weekday. class weekday { private: unsigned char value; public: weekday() = default; explicit constexpr weekday(unsigned wd) noexcept : value(static_cast(wd != 7 ? wd : 0)) {} constexpr unsigned c_encoding() const noexcept { return value; } }; class year_month_day {}; #endif // A rudimentary weekday formatter. template struct formatter { private: bool localized = false; public: FMT_CONSTEXPR auto parse(basic_format_parse_context& ctx) -> decltype(ctx.begin()) { auto begin = ctx.begin(), end = ctx.end(); if (begin != end && *begin == 'L') { ++begin; localized = true; } return begin; } template auto format(weekday wd, FormatContext& ctx) const -> decltype(ctx.out()) { auto time = std::tm(); time.tm_wday = static_cast(wd.c_encoding()); detail::get_locale loc(localized, ctx.locale()); auto w = detail::tm_writer(loc, ctx.out(), time); w.on_abbr_weekday(); return w.out(); } }; template struct formatter, Char> { private: format_specs specs; int precision = -1; using arg_ref_type = detail::arg_ref; arg_ref_type width_ref; arg_ref_type precision_ref; bool localized = false; basic_string_view format_str; using duration = std::chrono::duration; using iterator = typename basic_format_parse_context::iterator; struct parse_range { iterator begin; iterator end; }; FMT_CONSTEXPR parse_range do_parse(basic_format_parse_context& ctx) { auto begin = ctx.begin(), end = ctx.end(); if (begin == end || *begin == '}') return {begin, begin}; begin = detail::parse_align(begin, end, specs); if (begin == end) return {begin, begin}; begin = detail::parse_dynamic_spec(begin, end, specs.width, width_ref, ctx); if (begin == end) return {begin, begin}; auto checker = detail::chrono_format_checker(); if (*begin == '.') { checker.has_precision_integral = !std::is_floating_point::value; begin = detail::parse_precision(begin, end, precision, precision_ref, ctx); } if (begin != end && *begin == 'L') { ++begin; localized = true; } end = detail::parse_chrono_format(begin, end, checker); return {begin, end}; } public: FMT_CONSTEXPR auto parse(basic_format_parse_context& ctx) -> decltype(ctx.begin()) { auto range = do_parse(ctx); format_str = basic_string_view( &*range.begin, detail::to_unsigned(range.end - range.begin)); return range.end; } template auto format(const duration& d, FormatContext& ctx) const -> decltype(ctx.out()) { auto specs_copy = specs; auto precision_copy = precision; auto begin = format_str.begin(), end = format_str.end(); // As a possible future optimization, we could avoid extra copying if width // is not specified. basic_memory_buffer buf; auto out = std::back_inserter(buf); detail::handle_dynamic_spec(specs_copy.width, width_ref, ctx); detail::handle_dynamic_spec(precision_copy, precision_ref, ctx); if (begin == end || *begin == '}') { out = detail::format_duration_value(out, d.count(), precision_copy); detail::format_duration_unit(out); } else { detail::chrono_formatter f( ctx, out, d); f.precision = precision_copy; f.localized = localized; detail::parse_chrono_format(begin, end, f); } return detail::write( ctx.out(), basic_string_view(buf.data(), buf.size()), specs_copy); } }; template struct formatter, Char> : formatter { FMT_CONSTEXPR formatter() { this->format_str = detail::string_literal{}; } template auto format(std::chrono::time_point val, FormatContext& ctx) const -> decltype(ctx.out()) { using period = typename Duration::period; if (period::num != 1 || period::den != 1 || std::is_floating_point::value) { const auto epoch = val.time_since_epoch(); auto subsecs = std::chrono::duration_cast( epoch - std::chrono::duration_cast(epoch)); if (subsecs.count() < 0) { auto second = std::chrono::duration_cast( std::chrono::seconds(1)); if (epoch.count() < ((Duration::min)() + second).count()) FMT_THROW(format_error("duration is too small")); subsecs += second; val -= second; } return formatter::do_format( gmtime(std::chrono::time_point_cast(val)), ctx, &subsecs); } return formatter::format( gmtime(std::chrono::time_point_cast(val)), ctx); } }; #if FMT_USE_LOCAL_TIME template struct formatter, Char> : formatter { FMT_CONSTEXPR formatter() { this->format_str = detail::string_literal{}; } template auto format(std::chrono::local_time val, FormatContext& ctx) const -> decltype(ctx.out()) { using period = typename Duration::period; if (period::num != 1 || period::den != 1 || std::is_floating_point::value) { const auto epoch = val.time_since_epoch(); const auto subsecs = std::chrono::duration_cast( epoch - std::chrono::duration_cast(epoch)); return formatter::do_format( localtime(std::chrono::time_point_cast(val)), ctx, &subsecs); } return formatter::format( localtime(std::chrono::time_point_cast(val)), ctx); } }; #endif #if FMT_USE_UTC_TIME template struct formatter, Char> : formatter, Char> { template auto format(std::chrono::time_point val, FormatContext& ctx) const -> decltype(ctx.out()) { return formatter< std::chrono::time_point, Char>::format(std::chrono::utc_clock::to_sys(val), ctx); } }; #endif template struct formatter { private: format_specs specs; detail::arg_ref width_ref; protected: basic_string_view format_str; FMT_CONSTEXPR auto do_parse(basic_format_parse_context& ctx) -> decltype(ctx.begin()) { auto begin = ctx.begin(), end = ctx.end(); if (begin == end || *begin == '}') return begin; begin = detail::parse_align(begin, end, specs); if (begin == end) return end; begin = detail::parse_dynamic_spec(begin, end, specs.width, width_ref, ctx); if (begin == end) return end; end = detail::parse_chrono_format(begin, end, detail::tm_format_checker()); // Replace default format_str only if the new spec is not empty. if (end != begin) format_str = {begin, detail::to_unsigned(end - begin)}; return end; } template auto do_format(const std::tm& tm, FormatContext& ctx, const Duration* subsecs) const -> decltype(ctx.out()) { auto specs_copy = specs; basic_memory_buffer buf; auto out = std::back_inserter(buf); detail::handle_dynamic_spec(specs_copy.width, width_ref, ctx); const auto loc_ref = ctx.locale(); detail::get_locale loc(static_cast(loc_ref), loc_ref); auto w = detail::tm_writer(loc, out, tm, subsecs); detail::parse_chrono_format(format_str.begin(), format_str.end(), w); return detail::write( ctx.out(), basic_string_view(buf.data(), buf.size()), specs_copy); } public: FMT_CONSTEXPR auto parse(basic_format_parse_context& ctx) -> decltype(ctx.begin()) { return this->do_parse(ctx); } template auto format(const std::tm& tm, FormatContext& ctx) const -> decltype(ctx.out()) { return do_format(tm, ctx, nullptr); } }; FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_CHRONO_H_ btop-1.3.0/include/fmt/color.h000066400000000000000000000573401454653170500162020ustar00rootroot00000000000000// Formatting library for C++ - color support // // Copyright (c) 2018 - present, Victor Zverovich and fmt contributors // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_COLOR_H_ #define FMT_COLOR_H_ #include "format.h" FMT_BEGIN_NAMESPACE FMT_BEGIN_EXPORT enum class color : uint32_t { alice_blue = 0xF0F8FF, // rgb(240,248,255) antique_white = 0xFAEBD7, // rgb(250,235,215) aqua = 0x00FFFF, // rgb(0,255,255) aquamarine = 0x7FFFD4, // rgb(127,255,212) azure = 0xF0FFFF, // rgb(240,255,255) beige = 0xF5F5DC, // rgb(245,245,220) bisque = 0xFFE4C4, // rgb(255,228,196) black = 0x000000, // rgb(0,0,0) blanched_almond = 0xFFEBCD, // rgb(255,235,205) blue = 0x0000FF, // rgb(0,0,255) blue_violet = 0x8A2BE2, // rgb(138,43,226) brown = 0xA52A2A, // rgb(165,42,42) burly_wood = 0xDEB887, // rgb(222,184,135) cadet_blue = 0x5F9EA0, // rgb(95,158,160) chartreuse = 0x7FFF00, // rgb(127,255,0) chocolate = 0xD2691E, // rgb(210,105,30) coral = 0xFF7F50, // rgb(255,127,80) cornflower_blue = 0x6495ED, // rgb(100,149,237) cornsilk = 0xFFF8DC, // rgb(255,248,220) crimson = 0xDC143C, // rgb(220,20,60) cyan = 0x00FFFF, // rgb(0,255,255) dark_blue = 0x00008B, // rgb(0,0,139) dark_cyan = 0x008B8B, // rgb(0,139,139) dark_golden_rod = 0xB8860B, // rgb(184,134,11) dark_gray = 0xA9A9A9, // rgb(169,169,169) dark_green = 0x006400, // rgb(0,100,0) dark_khaki = 0xBDB76B, // rgb(189,183,107) dark_magenta = 0x8B008B, // rgb(139,0,139) dark_olive_green = 0x556B2F, // rgb(85,107,47) dark_orange = 0xFF8C00, // rgb(255,140,0) dark_orchid = 0x9932CC, // rgb(153,50,204) dark_red = 0x8B0000, // rgb(139,0,0) dark_salmon = 0xE9967A, // rgb(233,150,122) dark_sea_green = 0x8FBC8F, // rgb(143,188,143) dark_slate_blue = 0x483D8B, // rgb(72,61,139) dark_slate_gray = 0x2F4F4F, // rgb(47,79,79) dark_turquoise = 0x00CED1, // rgb(0,206,209) dark_violet = 0x9400D3, // rgb(148,0,211) deep_pink = 0xFF1493, // rgb(255,20,147) deep_sky_blue = 0x00BFFF, // rgb(0,191,255) dim_gray = 0x696969, // rgb(105,105,105) dodger_blue = 0x1E90FF, // rgb(30,144,255) fire_brick = 0xB22222, // rgb(178,34,34) floral_white = 0xFFFAF0, // rgb(255,250,240) forest_green = 0x228B22, // rgb(34,139,34) fuchsia = 0xFF00FF, // rgb(255,0,255) gainsboro = 0xDCDCDC, // rgb(220,220,220) ghost_white = 0xF8F8FF, // rgb(248,248,255) gold = 0xFFD700, // rgb(255,215,0) golden_rod = 0xDAA520, // rgb(218,165,32) gray = 0x808080, // rgb(128,128,128) green = 0x008000, // rgb(0,128,0) green_yellow = 0xADFF2F, // rgb(173,255,47) honey_dew = 0xF0FFF0, // rgb(240,255,240) hot_pink = 0xFF69B4, // rgb(255,105,180) indian_red = 0xCD5C5C, // rgb(205,92,92) indigo = 0x4B0082, // rgb(75,0,130) ivory = 0xFFFFF0, // rgb(255,255,240) khaki = 0xF0E68C, // rgb(240,230,140) lavender = 0xE6E6FA, // rgb(230,230,250) lavender_blush = 0xFFF0F5, // rgb(255,240,245) lawn_green = 0x7CFC00, // rgb(124,252,0) lemon_chiffon = 0xFFFACD, // rgb(255,250,205) light_blue = 0xADD8E6, // rgb(173,216,230) light_coral = 0xF08080, // rgb(240,128,128) light_cyan = 0xE0FFFF, // rgb(224,255,255) light_golden_rod_yellow = 0xFAFAD2, // rgb(250,250,210) light_gray = 0xD3D3D3, // rgb(211,211,211) light_green = 0x90EE90, // rgb(144,238,144) light_pink = 0xFFB6C1, // rgb(255,182,193) light_salmon = 0xFFA07A, // rgb(255,160,122) light_sea_green = 0x20B2AA, // rgb(32,178,170) light_sky_blue = 0x87CEFA, // rgb(135,206,250) light_slate_gray = 0x778899, // rgb(119,136,153) light_steel_blue = 0xB0C4DE, // rgb(176,196,222) light_yellow = 0xFFFFE0, // rgb(255,255,224) lime = 0x00FF00, // rgb(0,255,0) lime_green = 0x32CD32, // rgb(50,205,50) linen = 0xFAF0E6, // rgb(250,240,230) magenta = 0xFF00FF, // rgb(255,0,255) maroon = 0x800000, // rgb(128,0,0) medium_aquamarine = 0x66CDAA, // rgb(102,205,170) medium_blue = 0x0000CD, // rgb(0,0,205) medium_orchid = 0xBA55D3, // rgb(186,85,211) medium_purple = 0x9370DB, // rgb(147,112,219) medium_sea_green = 0x3CB371, // rgb(60,179,113) medium_slate_blue = 0x7B68EE, // rgb(123,104,238) medium_spring_green = 0x00FA9A, // rgb(0,250,154) medium_turquoise = 0x48D1CC, // rgb(72,209,204) medium_violet_red = 0xC71585, // rgb(199,21,133) midnight_blue = 0x191970, // rgb(25,25,112) mint_cream = 0xF5FFFA, // rgb(245,255,250) misty_rose = 0xFFE4E1, // rgb(255,228,225) moccasin = 0xFFE4B5, // rgb(255,228,181) navajo_white = 0xFFDEAD, // rgb(255,222,173) navy = 0x000080, // rgb(0,0,128) old_lace = 0xFDF5E6, // rgb(253,245,230) olive = 0x808000, // rgb(128,128,0) olive_drab = 0x6B8E23, // rgb(107,142,35) orange = 0xFFA500, // rgb(255,165,0) orange_red = 0xFF4500, // rgb(255,69,0) orchid = 0xDA70D6, // rgb(218,112,214) pale_golden_rod = 0xEEE8AA, // rgb(238,232,170) pale_green = 0x98FB98, // rgb(152,251,152) pale_turquoise = 0xAFEEEE, // rgb(175,238,238) pale_violet_red = 0xDB7093, // rgb(219,112,147) papaya_whip = 0xFFEFD5, // rgb(255,239,213) peach_puff = 0xFFDAB9, // rgb(255,218,185) peru = 0xCD853F, // rgb(205,133,63) pink = 0xFFC0CB, // rgb(255,192,203) plum = 0xDDA0DD, // rgb(221,160,221) powder_blue = 0xB0E0E6, // rgb(176,224,230) purple = 0x800080, // rgb(128,0,128) rebecca_purple = 0x663399, // rgb(102,51,153) red = 0xFF0000, // rgb(255,0,0) rosy_brown = 0xBC8F8F, // rgb(188,143,143) royal_blue = 0x4169E1, // rgb(65,105,225) saddle_brown = 0x8B4513, // rgb(139,69,19) salmon = 0xFA8072, // rgb(250,128,114) sandy_brown = 0xF4A460, // rgb(244,164,96) sea_green = 0x2E8B57, // rgb(46,139,87) sea_shell = 0xFFF5EE, // rgb(255,245,238) sienna = 0xA0522D, // rgb(160,82,45) silver = 0xC0C0C0, // rgb(192,192,192) sky_blue = 0x87CEEB, // rgb(135,206,235) slate_blue = 0x6A5ACD, // rgb(106,90,205) slate_gray = 0x708090, // rgb(112,128,144) snow = 0xFFFAFA, // rgb(255,250,250) spring_green = 0x00FF7F, // rgb(0,255,127) steel_blue = 0x4682B4, // rgb(70,130,180) tan = 0xD2B48C, // rgb(210,180,140) teal = 0x008080, // rgb(0,128,128) thistle = 0xD8BFD8, // rgb(216,191,216) tomato = 0xFF6347, // rgb(255,99,71) turquoise = 0x40E0D0, // rgb(64,224,208) violet = 0xEE82EE, // rgb(238,130,238) wheat = 0xF5DEB3, // rgb(245,222,179) white = 0xFFFFFF, // rgb(255,255,255) white_smoke = 0xF5F5F5, // rgb(245,245,245) yellow = 0xFFFF00, // rgb(255,255,0) yellow_green = 0x9ACD32 // rgb(154,205,50) }; // enum class color enum class terminal_color : uint8_t { black = 30, red, green, yellow, blue, magenta, cyan, white, bright_black = 90, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white }; enum class emphasis : uint8_t { bold = 1, faint = 1 << 1, italic = 1 << 2, underline = 1 << 3, blink = 1 << 4, reverse = 1 << 5, conceal = 1 << 6, strikethrough = 1 << 7, }; // rgb is a struct for red, green and blue colors. // Using the name "rgb" makes some editors show the color in a tooltip. struct rgb { FMT_CONSTEXPR rgb() : r(0), g(0), b(0) {} FMT_CONSTEXPR rgb(uint8_t r_, uint8_t g_, uint8_t b_) : r(r_), g(g_), b(b_) {} FMT_CONSTEXPR rgb(uint32_t hex) : r((hex >> 16) & 0xFF), g((hex >> 8) & 0xFF), b(hex & 0xFF) {} FMT_CONSTEXPR rgb(color hex) : r((uint32_t(hex) >> 16) & 0xFF), g((uint32_t(hex) >> 8) & 0xFF), b(uint32_t(hex) & 0xFF) {} uint8_t r; uint8_t g; uint8_t b; }; FMT_BEGIN_DETAIL_NAMESPACE // color is a struct of either a rgb color or a terminal color. struct color_type { FMT_CONSTEXPR color_type() noexcept : is_rgb(), value{} {} FMT_CONSTEXPR color_type(color rgb_color) noexcept : is_rgb(true), value{} { value.rgb_color = static_cast(rgb_color); } FMT_CONSTEXPR color_type(rgb rgb_color) noexcept : is_rgb(true), value{} { value.rgb_color = (static_cast(rgb_color.r) << 16) | (static_cast(rgb_color.g) << 8) | rgb_color.b; } FMT_CONSTEXPR color_type(terminal_color term_color) noexcept : is_rgb(), value{} { value.term_color = static_cast(term_color); } bool is_rgb; union color_union { uint8_t term_color; uint32_t rgb_color; } value; }; FMT_END_DETAIL_NAMESPACE /** A text style consisting of foreground and background colors and emphasis. */ class text_style { public: FMT_CONSTEXPR text_style(emphasis em = emphasis()) noexcept : set_foreground_color(), set_background_color(), ems(em) {} FMT_CONSTEXPR text_style& operator|=(const text_style& rhs) { if (!set_foreground_color) { set_foreground_color = rhs.set_foreground_color; foreground_color = rhs.foreground_color; } else if (rhs.set_foreground_color) { if (!foreground_color.is_rgb || !rhs.foreground_color.is_rgb) FMT_THROW(format_error("can't OR a terminal color")); foreground_color.value.rgb_color |= rhs.foreground_color.value.rgb_color; } if (!set_background_color) { set_background_color = rhs.set_background_color; background_color = rhs.background_color; } else if (rhs.set_background_color) { if (!background_color.is_rgb || !rhs.background_color.is_rgb) FMT_THROW(format_error("can't OR a terminal color")); background_color.value.rgb_color |= rhs.background_color.value.rgb_color; } ems = static_cast(static_cast(ems) | static_cast(rhs.ems)); return *this; } friend FMT_CONSTEXPR text_style operator|(text_style lhs, const text_style& rhs) { return lhs |= rhs; } FMT_CONSTEXPR bool has_foreground() const noexcept { return set_foreground_color; } FMT_CONSTEXPR bool has_background() const noexcept { return set_background_color; } FMT_CONSTEXPR bool has_emphasis() const noexcept { return static_cast(ems) != 0; } FMT_CONSTEXPR detail::color_type get_foreground() const noexcept { FMT_ASSERT(has_foreground(), "no foreground specified for this style"); return foreground_color; } FMT_CONSTEXPR detail::color_type get_background() const noexcept { FMT_ASSERT(has_background(), "no background specified for this style"); return background_color; } FMT_CONSTEXPR emphasis get_emphasis() const noexcept { FMT_ASSERT(has_emphasis(), "no emphasis specified for this style"); return ems; } private: FMT_CONSTEXPR text_style(bool is_foreground, detail::color_type text_color) noexcept : set_foreground_color(), set_background_color(), ems() { if (is_foreground) { foreground_color = text_color; set_foreground_color = true; } else { background_color = text_color; set_background_color = true; } } friend FMT_CONSTEXPR text_style fg(detail::color_type foreground) noexcept; friend FMT_CONSTEXPR text_style bg(detail::color_type background) noexcept; detail::color_type foreground_color; detail::color_type background_color; bool set_foreground_color; bool set_background_color; emphasis ems; }; /** Creates a text style from the foreground (text) color. */ FMT_CONSTEXPR inline text_style fg(detail::color_type foreground) noexcept { return text_style(true, foreground); } /** Creates a text style from the background color. */ FMT_CONSTEXPR inline text_style bg(detail::color_type background) noexcept { return text_style(false, background); } FMT_CONSTEXPR inline text_style operator|(emphasis lhs, emphasis rhs) noexcept { return text_style(lhs) | rhs; } FMT_BEGIN_DETAIL_NAMESPACE template struct ansi_color_escape { FMT_CONSTEXPR ansi_color_escape(detail::color_type text_color, const char* esc) noexcept { // If we have a terminal color, we need to output another escape code // sequence. if (!text_color.is_rgb) { bool is_background = esc == string_view("\x1b[48;2;"); uint32_t value = text_color.value.term_color; // Background ASCII codes are the same as the foreground ones but with // 10 more. if (is_background) value += 10u; size_t index = 0; buffer[index++] = static_cast('\x1b'); buffer[index++] = static_cast('['); if (value >= 100u) { buffer[index++] = static_cast('1'); value %= 100u; } buffer[index++] = static_cast('0' + value / 10u); buffer[index++] = static_cast('0' + value % 10u); buffer[index++] = static_cast('m'); buffer[index++] = static_cast('\0'); return; } for (int i = 0; i < 7; i++) { buffer[i] = static_cast(esc[i]); } rgb color(text_color.value.rgb_color); to_esc(color.r, buffer + 7, ';'); to_esc(color.g, buffer + 11, ';'); to_esc(color.b, buffer + 15, 'm'); buffer[19] = static_cast(0); } FMT_CONSTEXPR ansi_color_escape(emphasis em) noexcept { uint8_t em_codes[num_emphases] = {}; if (has_emphasis(em, emphasis::bold)) em_codes[0] = 1; if (has_emphasis(em, emphasis::faint)) em_codes[1] = 2; if (has_emphasis(em, emphasis::italic)) em_codes[2] = 3; if (has_emphasis(em, emphasis::underline)) em_codes[3] = 4; if (has_emphasis(em, emphasis::blink)) em_codes[4] = 5; if (has_emphasis(em, emphasis::reverse)) em_codes[5] = 7; if (has_emphasis(em, emphasis::conceal)) em_codes[6] = 8; if (has_emphasis(em, emphasis::strikethrough)) em_codes[7] = 9; size_t index = 0; for (size_t i = 0; i < num_emphases; ++i) { if (!em_codes[i]) continue; buffer[index++] = static_cast('\x1b'); buffer[index++] = static_cast('['); buffer[index++] = static_cast('0' + em_codes[i]); buffer[index++] = static_cast('m'); } buffer[index++] = static_cast(0); } FMT_CONSTEXPR operator const Char*() const noexcept { return buffer; } FMT_CONSTEXPR const Char* begin() const noexcept { return buffer; } FMT_CONSTEXPR_CHAR_TRAITS const Char* end() const noexcept { return buffer + std::char_traits::length(buffer); } private: static constexpr size_t num_emphases = 8; Char buffer[7u + 3u * num_emphases + 1u]; static FMT_CONSTEXPR void to_esc(uint8_t c, Char* out, char delimiter) noexcept { out[0] = static_cast('0' + c / 100); out[1] = static_cast('0' + c / 10 % 10); out[2] = static_cast('0' + c % 10); out[3] = static_cast(delimiter); } static FMT_CONSTEXPR bool has_emphasis(emphasis em, emphasis mask) noexcept { return static_cast(em) & static_cast(mask); } }; template FMT_CONSTEXPR ansi_color_escape make_foreground_color( detail::color_type foreground) noexcept { return ansi_color_escape(foreground, "\x1b[38;2;"); } template FMT_CONSTEXPR ansi_color_escape make_background_color( detail::color_type background) noexcept { return ansi_color_escape(background, "\x1b[48;2;"); } template FMT_CONSTEXPR ansi_color_escape make_emphasis(emphasis em) noexcept { return ansi_color_escape(em); } template inline void reset_color(buffer& buffer) { auto reset_color = string_view("\x1b[0m"); buffer.append(reset_color.begin(), reset_color.end()); } template struct styled_arg { const T& value; text_style style; }; template void vformat_to(buffer& buf, const text_style& ts, basic_string_view format_str, basic_format_args>> args) { bool has_style = false; if (ts.has_emphasis()) { has_style = true; auto emphasis = detail::make_emphasis(ts.get_emphasis()); buf.append(emphasis.begin(), emphasis.end()); } if (ts.has_foreground()) { has_style = true; auto foreground = detail::make_foreground_color(ts.get_foreground()); buf.append(foreground.begin(), foreground.end()); } if (ts.has_background()) { has_style = true; auto background = detail::make_background_color(ts.get_background()); buf.append(background.begin(), background.end()); } detail::vformat_to(buf, format_str, args, {}); if (has_style) detail::reset_color(buf); } FMT_END_DETAIL_NAMESPACE inline void vprint(std::FILE* f, const text_style& ts, string_view fmt, format_args args) { // Legacy wide streams are not supported. auto buf = memory_buffer(); detail::vformat_to(buf, ts, fmt, args); if (detail::is_utf8()) { detail::print(f, string_view(buf.begin(), buf.size())); return; } buf.push_back('\0'); int result = std::fputs(buf.data(), f); if (result < 0) FMT_THROW(system_error(errno, FMT_STRING("cannot write to file"))); } /** \rst Formats a string and prints it to the specified file stream using ANSI escape sequences to specify text formatting. **Example**:: fmt::print(fmt::emphasis::bold | fg(fmt::color::red), "Elapsed time: {0:.2f} seconds", 1.23); \endrst */ template ::value)> void print(std::FILE* f, const text_style& ts, const S& format_str, const Args&... args) { vprint(f, ts, format_str, fmt::make_format_args>>(args...)); } /** \rst Formats a string and prints it to stdout using ANSI escape sequences to specify text formatting. **Example**:: fmt::print(fmt::emphasis::bold | fg(fmt::color::red), "Elapsed time: {0:.2f} seconds", 1.23); \endrst */ template ::value)> void print(const text_style& ts, const S& format_str, const Args&... args) { return print(stdout, ts, format_str, args...); } template > inline std::basic_string vformat( const text_style& ts, const S& format_str, basic_format_args>> args) { basic_memory_buffer buf; detail::vformat_to(buf, ts, detail::to_string_view(format_str), args); return fmt::to_string(buf); } /** \rst Formats arguments and returns the result as a string using ANSI escape sequences to specify text formatting. **Example**:: #include std::string message = fmt::format(fmt::emphasis::bold | fg(fmt::color::red), "The answer is {}", 42); \endrst */ template > inline std::basic_string format(const text_style& ts, const S& format_str, const Args&... args) { return fmt::vformat(ts, detail::to_string_view(format_str), fmt::make_format_args>(args...)); } /** Formats a string with the given text_style and writes the output to ``out``. */ template ::value)> OutputIt vformat_to( OutputIt out, const text_style& ts, basic_string_view format_str, basic_format_args>> args) { auto&& buf = detail::get_buffer(out); detail::vformat_to(buf, ts, format_str, args); return detail::get_iterator(buf, out); } /** \rst Formats arguments with the given text_style, writes the result to the output iterator ``out`` and returns the iterator past the end of the output range. **Example**:: std::vector out; fmt::format_to(std::back_inserter(out), fmt::emphasis::bold | fg(fmt::color::red), "{}", 42); \endrst */ template >::value&& detail::is_string::value> inline auto format_to(OutputIt out, const text_style& ts, const S& format_str, Args&&... args) -> typename std::enable_if::type { return vformat_to(out, ts, detail::to_string_view(format_str), fmt::make_format_args>>(args...)); } template struct formatter, Char> : formatter { template auto format(const detail::styled_arg& arg, FormatContext& ctx) const -> decltype(ctx.out()) { const auto& ts = arg.style; const auto& value = arg.value; auto out = ctx.out(); bool has_style = false; if (ts.has_emphasis()) { has_style = true; auto emphasis = detail::make_emphasis(ts.get_emphasis()); out = std::copy(emphasis.begin(), emphasis.end(), out); } if (ts.has_foreground()) { has_style = true; auto foreground = detail::make_foreground_color(ts.get_foreground()); out = std::copy(foreground.begin(), foreground.end(), out); } if (ts.has_background()) { has_style = true; auto background = detail::make_background_color(ts.get_background()); out = std::copy(background.begin(), background.end(), out); } out = formatter::format(value, ctx); if (has_style) { auto reset_color = string_view("\x1b[0m"); out = std::copy(reset_color.begin(), reset_color.end(), out); } return out; } }; /** \rst Returns an argument that will be formatted using ANSI escape sequences, to be used in a formatting function. **Example**:: fmt::print("Elapsed time: {0:.2f} seconds", fmt::styled(1.23, fmt::fg(fmt::color::green) | fmt::bg(fmt::color::blue))); \endrst */ template FMT_CONSTEXPR auto styled(const T& value, text_style ts) -> detail::styled_arg> { return detail::styled_arg>{value, ts}; } FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_COLOR_H_ btop-1.3.0/include/fmt/compile.h000066400000000000000000000510551454653170500165110ustar00rootroot00000000000000// Formatting library for C++ - experimental format string compilation // // Copyright (c) 2012 - present, Victor Zverovich and fmt contributors // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_COMPILE_H_ #define FMT_COMPILE_H_ #include "format.h" FMT_BEGIN_NAMESPACE namespace detail { template FMT_CONSTEXPR inline counting_iterator copy_str(InputIt begin, InputIt end, counting_iterator it) { return it + (end - begin); } template class truncating_iterator_base { protected: OutputIt out_; size_t limit_; size_t count_ = 0; truncating_iterator_base() : out_(), limit_(0) {} truncating_iterator_base(OutputIt out, size_t limit) : out_(out), limit_(limit) {} public: using iterator_category = std::output_iterator_tag; using value_type = typename std::iterator_traits::value_type; using difference_type = std::ptrdiff_t; using pointer = void; using reference = void; FMT_UNCHECKED_ITERATOR(truncating_iterator_base); OutputIt base() const { return out_; } size_t count() const { return count_; } }; // An output iterator that truncates the output and counts the number of objects // written to it. template ::value_type>::type> class truncating_iterator; template class truncating_iterator : public truncating_iterator_base { mutable typename truncating_iterator_base::value_type blackhole_; public: using value_type = typename truncating_iterator_base::value_type; truncating_iterator() = default; truncating_iterator(OutputIt out, size_t limit) : truncating_iterator_base(out, limit) {} truncating_iterator& operator++() { if (this->count_++ < this->limit_) ++this->out_; return *this; } truncating_iterator operator++(int) { auto it = *this; ++*this; return it; } value_type& operator*() const { return this->count_ < this->limit_ ? *this->out_ : blackhole_; } }; template class truncating_iterator : public truncating_iterator_base { public: truncating_iterator() = default; truncating_iterator(OutputIt out, size_t limit) : truncating_iterator_base(out, limit) {} template truncating_iterator& operator=(T val) { if (this->count_++ < this->limit_) *this->out_++ = val; return *this; } truncating_iterator& operator++() { return *this; } truncating_iterator& operator++(int) { return *this; } truncating_iterator& operator*() { return *this; } }; // A compile-time string which is compiled into fast formatting code. class compiled_string {}; template struct is_compiled_string : std::is_base_of {}; /** \rst Converts a string literal *s* into a format string that will be parsed at compile time and converted into efficient formatting code. Requires C++17 ``constexpr if`` compiler support. **Example**:: // Converts 42 into std::string using the most efficient method and no // runtime format string processing. std::string s = fmt::format(FMT_COMPILE("{}"), 42); \endrst */ #if defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction) # define FMT_COMPILE(s) \ FMT_STRING_IMPL(s, fmt::detail::compiled_string, explicit) #else # define FMT_COMPILE(s) FMT_STRING(s) #endif #if FMT_USE_NONTYPE_TEMPLATE_ARGS template Str> struct udl_compiled_string : compiled_string { using char_type = Char; explicit constexpr operator basic_string_view() const { return {Str.data, N - 1}; } }; #endif template const T& first(const T& value, const Tail&...) { return value; } #if defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction) template struct type_list {}; // Returns a reference to the argument at index N from [first, rest...]. template constexpr const auto& get([[maybe_unused]] const T& first, [[maybe_unused]] const Args&... rest) { static_assert(N < 1 + sizeof...(Args), "index is out of bounds"); if constexpr (N == 0) return first; else return detail::get(rest...); } template constexpr int get_arg_index_by_name(basic_string_view name, type_list) { return get_arg_index_by_name(name); } template struct get_type_impl; template struct get_type_impl> { using type = remove_cvref_t(std::declval()...))>; }; template using get_type = typename get_type_impl::type; template struct is_compiled_format : std::false_type {}; template struct text { basic_string_view data; using char_type = Char; template constexpr OutputIt format(OutputIt out, const Args&...) const { return write(out, data); } }; template struct is_compiled_format> : std::true_type {}; template constexpr text make_text(basic_string_view s, size_t pos, size_t size) { return {{&s[pos], size}}; } template struct code_unit { Char value; using char_type = Char; template constexpr OutputIt format(OutputIt out, const Args&...) const { return write(out, value); } }; // This ensures that the argument type is convertible to `const T&`. template constexpr const T& get_arg_checked(const Args&... args) { const auto& arg = detail::get(args...); if constexpr (detail::is_named_arg>()) { return arg.value; } else { return arg; } } template struct is_compiled_format> : std::true_type {}; // A replacement field that refers to argument N. template struct field { using char_type = Char; template constexpr OutputIt format(OutputIt out, const Args&... args) const { return write(out, get_arg_checked(args...)); } }; template struct is_compiled_format> : std::true_type {}; // A replacement field that refers to argument with name. template struct runtime_named_field { using char_type = Char; basic_string_view name; template constexpr static bool try_format_argument( OutputIt& out, // [[maybe_unused]] due to unused-but-set-parameter warning in GCC 7,8,9 [[maybe_unused]] basic_string_view arg_name, const T& arg) { if constexpr (is_named_arg::type>::value) { if (arg_name == arg.name) { out = write(out, arg.value); return true; } } return false; } template constexpr OutputIt format(OutputIt out, const Args&... args) const { bool found = (try_format_argument(out, name, args) || ...); if (!found) { FMT_THROW(format_error("argument with specified name is not found")); } return out; } }; template struct is_compiled_format> : std::true_type {}; // A replacement field that refers to argument N and has format specifiers. template struct spec_field { using char_type = Char; formatter fmt; template constexpr FMT_INLINE OutputIt format(OutputIt out, const Args&... args) const { const auto& vargs = fmt::make_format_args>(args...); basic_format_context ctx(out, vargs); return fmt.format(get_arg_checked(args...), ctx); } }; template struct is_compiled_format> : std::true_type {}; template struct concat { L lhs; R rhs; using char_type = typename L::char_type; template constexpr OutputIt format(OutputIt out, const Args&... args) const { out = lhs.format(out, args...); return rhs.format(out, args...); } }; template struct is_compiled_format> : std::true_type {}; template constexpr concat make_concat(L lhs, R rhs) { return {lhs, rhs}; } struct unknown_format {}; template constexpr size_t parse_text(basic_string_view str, size_t pos) { for (size_t size = str.size(); pos != size; ++pos) { if (str[pos] == '{' || str[pos] == '}') break; } return pos; } template constexpr auto compile_format_string(S format_str); template constexpr auto parse_tail(T head, S format_str) { if constexpr (POS != basic_string_view(format_str).size()) { constexpr auto tail = compile_format_string(format_str); if constexpr (std::is_same, unknown_format>()) return tail; else return make_concat(head, tail); } else { return head; } } template struct parse_specs_result { formatter fmt; size_t end; int next_arg_id; }; enum { manual_indexing_id = -1 }; template constexpr parse_specs_result parse_specs(basic_string_view str, size_t pos, int next_arg_id) { str.remove_prefix(pos); auto ctx = compile_parse_context(str, max_value(), nullptr, next_arg_id); auto f = formatter(); auto end = f.parse(ctx); return {f, pos + fmt::detail::to_unsigned(end - str.data()), next_arg_id == 0 ? manual_indexing_id : ctx.next_arg_id()}; } template struct arg_id_handler { arg_ref arg_id; constexpr int on_auto() { FMT_ASSERT(false, "handler cannot be used with automatic indexing"); return 0; } constexpr int on_index(int id) { arg_id = arg_ref(id); return 0; } constexpr int on_name(basic_string_view id) { arg_id = arg_ref(id); return 0; } }; template struct parse_arg_id_result { arg_ref arg_id; const Char* arg_id_end; }; template constexpr auto parse_arg_id(const Char* begin, const Char* end) { auto handler = arg_id_handler{arg_ref{}}; auto arg_id_end = parse_arg_id(begin, end, handler); return parse_arg_id_result{handler.arg_id, arg_id_end}; } template struct field_type { using type = remove_cvref_t; }; template struct field_type::value>> { using type = remove_cvref_t; }; template constexpr auto parse_replacement_field_then_tail(S format_str) { using char_type = typename S::char_type; constexpr auto str = basic_string_view(format_str); constexpr char_type c = END_POS != str.size() ? str[END_POS] : char_type(); if constexpr (c == '}') { return parse_tail( field::type, ARG_INDEX>(), format_str); } else if constexpr (c != ':') { FMT_THROW(format_error("expected ':'")); } else { constexpr auto result = parse_specs::type>( str, END_POS + 1, NEXT_ID == manual_indexing_id ? 0 : NEXT_ID); if constexpr (result.end >= str.size() || str[result.end] != '}') { FMT_THROW(format_error("expected '}'")); return 0; } else { return parse_tail( spec_field::type, ARG_INDEX>{ result.fmt}, format_str); } } } // Compiles a non-empty format string and returns the compiled representation // or unknown_format() on unrecognized input. template constexpr auto compile_format_string(S format_str) { using char_type = typename S::char_type; constexpr auto str = basic_string_view(format_str); if constexpr (str[POS] == '{') { if constexpr (POS + 1 == str.size()) FMT_THROW(format_error("unmatched '{' in format string")); if constexpr (str[POS + 1] == '{') { return parse_tail(make_text(str, POS, 1), format_str); } else if constexpr (str[POS + 1] == '}' || str[POS + 1] == ':') { static_assert(ID != manual_indexing_id, "cannot switch from manual to automatic argument indexing"); constexpr auto next_id = ID != manual_indexing_id ? ID + 1 : manual_indexing_id; return parse_replacement_field_then_tail, Args, POS + 1, ID, next_id>( format_str); } else { constexpr auto arg_id_result = parse_arg_id(str.data() + POS + 1, str.data() + str.size()); constexpr auto arg_id_end_pos = arg_id_result.arg_id_end - str.data(); constexpr char_type c = arg_id_end_pos != str.size() ? str[arg_id_end_pos] : char_type(); static_assert(c == '}' || c == ':', "missing '}' in format string"); if constexpr (arg_id_result.arg_id.kind == arg_id_kind::index) { static_assert( ID == manual_indexing_id || ID == 0, "cannot switch from automatic to manual argument indexing"); constexpr auto arg_index = arg_id_result.arg_id.val.index; return parse_replacement_field_then_tail, Args, arg_id_end_pos, arg_index, manual_indexing_id>( format_str); } else if constexpr (arg_id_result.arg_id.kind == arg_id_kind::name) { constexpr auto arg_index = get_arg_index_by_name(arg_id_result.arg_id.val.name, Args{}); if constexpr (arg_index >= 0) { constexpr auto next_id = ID != manual_indexing_id ? ID + 1 : manual_indexing_id; return parse_replacement_field_then_tail< decltype(get_type::value), Args, arg_id_end_pos, arg_index, next_id>(format_str); } else if constexpr (c == '}') { return parse_tail( runtime_named_field{arg_id_result.arg_id.val.name}, format_str); } else if constexpr (c == ':') { return unknown_format(); // no type info for specs parsing } } } } else if constexpr (str[POS] == '}') { if constexpr (POS + 1 == str.size()) FMT_THROW(format_error("unmatched '}' in format string")); return parse_tail(make_text(str, POS, 1), format_str); } else { constexpr auto end = parse_text(str, POS + 1); if constexpr (end - POS > 1) { return parse_tail(make_text(str, POS, end - POS), format_str); } else { return parse_tail(code_unit{str[POS]}, format_str); } } } template ::value)> constexpr auto compile(S format_str) { constexpr auto str = basic_string_view(format_str); if constexpr (str.size() == 0) { return detail::make_text(str, 0, 0); } else { constexpr auto result = detail::compile_format_string, 0, 0>( format_str); return result; } } #endif // defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction) } // namespace detail FMT_BEGIN_EXPORT #if defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction) template ::value)> FMT_INLINE std::basic_string format(const CompiledFormat& cf, const Args&... args) { auto s = std::basic_string(); cf.format(std::back_inserter(s), args...); return s; } template ::value)> constexpr FMT_INLINE OutputIt format_to(OutputIt out, const CompiledFormat& cf, const Args&... args) { return cf.format(out, args...); } template ::value)> FMT_INLINE std::basic_string format(const S&, Args&&... args) { if constexpr (std::is_same::value) { constexpr auto str = basic_string_view(S()); if constexpr (str.size() == 2 && str[0] == '{' && str[1] == '}') { const auto& first = detail::first(args...); if constexpr (detail::is_named_arg< remove_cvref_t>::value) { return fmt::to_string(first.value); } else { return fmt::to_string(first); } } } constexpr auto compiled = detail::compile(S()); if constexpr (std::is_same, detail::unknown_format>()) { return fmt::format( static_cast>(S()), std::forward(args)...); } else { return fmt::format(compiled, std::forward(args)...); } } template ::value)> FMT_CONSTEXPR OutputIt format_to(OutputIt out, const S&, Args&&... args) { constexpr auto compiled = detail::compile(S()); if constexpr (std::is_same, detail::unknown_format>()) { return fmt::format_to( out, static_cast>(S()), std::forward(args)...); } else { return fmt::format_to(out, compiled, std::forward(args)...); } } #endif template ::value)> format_to_n_result format_to_n(OutputIt out, size_t n, const S& format_str, Args&&... args) { auto it = fmt::format_to(detail::truncating_iterator(out, n), format_str, std::forward(args)...); return {it.base(), it.count()}; } template ::value)> FMT_CONSTEXPR20 size_t formatted_size(const S& format_str, const Args&... args) { return fmt::format_to(detail::counting_iterator(), format_str, args...) .count(); } template ::value)> void print(std::FILE* f, const S& format_str, const Args&... args) { memory_buffer buffer; fmt::format_to(std::back_inserter(buffer), format_str, args...); detail::print(f, {buffer.data(), buffer.size()}); } template ::value)> void print(const S& format_str, const Args&... args) { print(stdout, format_str, args...); } #if FMT_USE_NONTYPE_TEMPLATE_ARGS inline namespace literals { template constexpr auto operator""_cf() { using char_t = remove_cvref_t; return detail::udl_compiled_string(); } } // namespace literals #endif FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_COMPILE_H_ btop-1.3.0/include/fmt/core.h000066400000000000000000002767701454653170500160260ustar00rootroot00000000000000// Formatting library for C++ - the core API for char/UTF-8 // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_CORE_H_ #define FMT_CORE_H_ #include // std::byte #include // std::FILE #include // std::strlen #include #include #include #include // The fmt library version in the form major * 10000 + minor * 100 + patch. #define FMT_VERSION 100001 #if defined(__clang__) && !defined(__ibmxl__) # define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__) #else # define FMT_CLANG_VERSION 0 #endif #if defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && \ !defined(__NVCOMPILER) # define FMT_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__) #else # define FMT_GCC_VERSION 0 #endif #ifndef FMT_GCC_PRAGMA // Workaround _Pragma bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59884. # if FMT_GCC_VERSION >= 504 # define FMT_GCC_PRAGMA(arg) _Pragma(arg) # else # define FMT_GCC_PRAGMA(arg) # endif #endif #ifdef __ICL # define FMT_ICC_VERSION __ICL #elif defined(__INTEL_COMPILER) # define FMT_ICC_VERSION __INTEL_COMPILER #else # define FMT_ICC_VERSION 0 #endif #ifdef _MSC_VER # define FMT_MSC_VERSION _MSC_VER # define FMT_MSC_WARNING(...) __pragma(warning(__VA_ARGS__)) #else # define FMT_MSC_VERSION 0 # define FMT_MSC_WARNING(...) #endif #ifdef _MSVC_LANG # define FMT_CPLUSPLUS _MSVC_LANG #else # define FMT_CPLUSPLUS __cplusplus #endif #ifdef __has_feature # define FMT_HAS_FEATURE(x) __has_feature(x) #else # define FMT_HAS_FEATURE(x) 0 #endif #if defined(__has_include) || FMT_ICC_VERSION >= 1600 || FMT_MSC_VERSION > 1900 # define FMT_HAS_INCLUDE(x) __has_include(x) #else # define FMT_HAS_INCLUDE(x) 0 #endif #ifdef __has_cpp_attribute # define FMT_HAS_CPP_ATTRIBUTE(x) __has_cpp_attribute(x) #else # define FMT_HAS_CPP_ATTRIBUTE(x) 0 #endif #define FMT_HAS_CPP14_ATTRIBUTE(attribute) \ (FMT_CPLUSPLUS >= 201402L && FMT_HAS_CPP_ATTRIBUTE(attribute)) #define FMT_HAS_CPP17_ATTRIBUTE(attribute) \ (FMT_CPLUSPLUS >= 201703L && FMT_HAS_CPP_ATTRIBUTE(attribute)) // Check if relaxed C++14 constexpr is supported. // GCC doesn't allow throw in constexpr until version 6 (bug 67371). #ifndef FMT_USE_CONSTEXPR # if (FMT_HAS_FEATURE(cxx_relaxed_constexpr) || FMT_MSC_VERSION >= 1912 || \ (FMT_GCC_VERSION >= 600 && FMT_CPLUSPLUS >= 201402L)) && \ !FMT_ICC_VERSION && !defined(__NVCC__) # define FMT_USE_CONSTEXPR 1 # else # define FMT_USE_CONSTEXPR 0 # endif #endif #if FMT_USE_CONSTEXPR # define FMT_CONSTEXPR constexpr #else # define FMT_CONSTEXPR #endif #if ((FMT_CPLUSPLUS >= 202002L) && \ (!defined(_GLIBCXX_RELEASE) || _GLIBCXX_RELEASE > 9)) || \ (FMT_CPLUSPLUS >= 201709L && FMT_GCC_VERSION >= 1002) # define FMT_CONSTEXPR20 constexpr #else # define FMT_CONSTEXPR20 #endif // Check if constexpr std::char_traits<>::{compare,length} are supported. #if defined(__GLIBCXX__) # if FMT_CPLUSPLUS >= 201703L && defined(_GLIBCXX_RELEASE) && \ _GLIBCXX_RELEASE >= 7 // GCC 7+ libstdc++ has _GLIBCXX_RELEASE. # define FMT_CONSTEXPR_CHAR_TRAITS constexpr # endif #elif defined(_LIBCPP_VERSION) && FMT_CPLUSPLUS >= 201703L && \ _LIBCPP_VERSION >= 4000 # define FMT_CONSTEXPR_CHAR_TRAITS constexpr #elif FMT_MSC_VERSION >= 1914 && FMT_CPLUSPLUS >= 201703L # define FMT_CONSTEXPR_CHAR_TRAITS constexpr #endif #ifndef FMT_CONSTEXPR_CHAR_TRAITS # define FMT_CONSTEXPR_CHAR_TRAITS #endif // Check if exceptions are disabled. #ifndef FMT_EXCEPTIONS # if (defined(__GNUC__) && !defined(__EXCEPTIONS)) || \ (FMT_MSC_VERSION && !_HAS_EXCEPTIONS) # define FMT_EXCEPTIONS 0 # else # define FMT_EXCEPTIONS 1 # endif #endif // Disable [[noreturn]] on MSVC/NVCC because of bogus unreachable code warnings. #if FMT_EXCEPTIONS && FMT_HAS_CPP_ATTRIBUTE(noreturn) && !FMT_MSC_VERSION && \ !defined(__NVCC__) # define FMT_NORETURN [[noreturn]] #else # define FMT_NORETURN #endif #ifndef FMT_NODISCARD # if FMT_HAS_CPP17_ATTRIBUTE(nodiscard) # define FMT_NODISCARD [[nodiscard]] # else # define FMT_NODISCARD # endif #endif #ifndef FMT_INLINE # if FMT_GCC_VERSION || FMT_CLANG_VERSION # define FMT_INLINE inline __attribute__((always_inline)) # else # define FMT_INLINE inline # endif #endif #ifdef _MSC_VER # define FMT_UNCHECKED_ITERATOR(It) \ using _Unchecked_type = It // Mark iterator as checked. #else # define FMT_UNCHECKED_ITERATOR(It) using unchecked_type = It #endif #ifndef FMT_BEGIN_NAMESPACE # define FMT_BEGIN_NAMESPACE \ namespace fmt { \ inline namespace v10 { # define FMT_END_NAMESPACE \ } \ } #endif #ifndef FMT_EXPORT # define FMT_EXPORT # define FMT_BEGIN_EXPORT # define FMT_END_EXPORT #endif #if !defined(FMT_HEADER_ONLY) && defined(_WIN32) # ifdef FMT_LIB_EXPORT # define FMT_API __declspec(dllexport) # elif defined(FMT_SHARED) # define FMT_API __declspec(dllimport) # endif #else # if defined(FMT_LIB_EXPORT) || defined(FMT_SHARED) # if defined(__GNUC__) || defined(__clang__) # define FMT_API __attribute__((visibility("default"))) # endif # endif #endif #ifndef FMT_API # define FMT_API #endif // libc++ supports string_view in pre-c++17. #if FMT_HAS_INCLUDE() && \ (FMT_CPLUSPLUS >= 201703L || defined(_LIBCPP_VERSION)) # include # define FMT_USE_STRING_VIEW #elif FMT_HAS_INCLUDE("experimental/string_view") && FMT_CPLUSPLUS >= 201402L # include # define FMT_USE_EXPERIMENTAL_STRING_VIEW #endif #ifndef FMT_UNICODE # define FMT_UNICODE !FMT_MSC_VERSION #endif #ifndef FMT_CONSTEVAL # if ((FMT_GCC_VERSION >= 1000 || FMT_CLANG_VERSION >= 1101) && \ (!defined(__apple_build_version__) || \ __apple_build_version__ >= 14000029L) && \ FMT_CPLUSPLUS >= 202002L) || \ (defined(__cpp_consteval) && \ (!FMT_MSC_VERSION || _MSC_FULL_VER >= 193030704)) // consteval is broken in MSVC before VS2022 and Apple clang before 14. # define FMT_CONSTEVAL consteval # define FMT_HAS_CONSTEVAL # else # define FMT_CONSTEVAL # endif #endif #ifndef FMT_USE_NONTYPE_TEMPLATE_ARGS # if defined(__cpp_nontype_template_args) && \ ((FMT_GCC_VERSION >= 903 && FMT_CPLUSPLUS >= 201709L) || \ __cpp_nontype_template_args >= 201911L) && \ !defined(__NVCOMPILER) && !defined(__LCC__) # define FMT_USE_NONTYPE_TEMPLATE_ARGS 1 # else # define FMT_USE_NONTYPE_TEMPLATE_ARGS 0 # endif #endif // Enable minimal optimizations for more compact code in debug mode. FMT_GCC_PRAGMA("GCC push_options") #if !defined(__OPTIMIZE__) && !defined(__NVCOMPILER) && !defined(__LCC__) && \ !defined(__CUDACC__) FMT_GCC_PRAGMA("GCC optimize(\"Og\")") #endif FMT_BEGIN_NAMESPACE // Implementations of enable_if_t and other metafunctions for older systems. template using enable_if_t = typename std::enable_if::type; template using conditional_t = typename std::conditional::type; template using bool_constant = std::integral_constant; template using remove_reference_t = typename std::remove_reference::type; template using remove_const_t = typename std::remove_const::type; template using remove_cvref_t = typename std::remove_cv>::type; template struct type_identity { using type = T; }; template using type_identity_t = typename type_identity::type; template using underlying_t = typename std::underlying_type::type; // Checks whether T is a container with contiguous storage. template struct is_contiguous : std::false_type {}; template struct is_contiguous> : std::true_type {}; struct monostate { constexpr monostate() {} }; // An enable_if helper to be used in template parameters which results in much // shorter symbols: https://godbolt.org/z/sWw4vP. Extra parentheses are needed // to workaround a bug in MSVC 2019 (see #1140 and #1186). #ifdef FMT_DOC # define FMT_ENABLE_IF(...) #else # define FMT_ENABLE_IF(...) fmt::enable_if_t<(__VA_ARGS__), int> = 0 #endif // This is defined in core.h instead of format.h to avoid injecting in std. #ifdef __cpp_lib_byte inline auto format_as(std::byte b) -> unsigned char { return static_cast(b); } #endif namespace detail { // Suppresses "unused variable" warnings with the method described in // https://herbsutter.com/2009/10/18/mailbag-shutting-up-compiler-warnings/. // (void)var does not work on many Intel compilers. template FMT_CONSTEXPR void ignore_unused(const T&...) {} constexpr FMT_INLINE auto is_constant_evaluated( bool default_value = false) noexcept -> bool { // Workaround for incompatibility between libstdc++ consteval-based // std::is_constant_evaluated() implementation and clang-14. // https://github.com/fmtlib/fmt/issues/3247 #if FMT_CPLUSPLUS >= 202002L && defined(_GLIBCXX_RELEASE) && \ _GLIBCXX_RELEASE >= 12 && \ (FMT_CLANG_VERSION >= 1400 && FMT_CLANG_VERSION < 1500) ignore_unused(default_value); return __builtin_is_constant_evaluated(); #elif defined(__cpp_lib_is_constant_evaluated) ignore_unused(default_value); return std::is_constant_evaluated(); #else return default_value; #endif } // Suppresses "conditional expression is constant" warnings. template constexpr FMT_INLINE auto const_check(T value) -> T { return value; } FMT_NORETURN FMT_API void assert_fail(const char* file, int line, const char* message); #ifndef FMT_ASSERT # ifdef NDEBUG // FMT_ASSERT is not empty to avoid -Wempty-body. # define FMT_ASSERT(condition, message) \ fmt::detail::ignore_unused((condition), (message)) # else # define FMT_ASSERT(condition, message) \ ((condition) /* void() fails with -Winvalid-constexpr on clang 4.0.1 */ \ ? (void)0 \ : fmt::detail::assert_fail(__FILE__, __LINE__, (message))) # endif #endif #if defined(FMT_USE_STRING_VIEW) template using std_string_view = std::basic_string_view; #elif defined(FMT_USE_EXPERIMENTAL_STRING_VIEW) template using std_string_view = std::experimental::basic_string_view; #else template struct std_string_view {}; #endif #ifdef FMT_USE_INT128 // Do nothing. #elif defined(__SIZEOF_INT128__) && !defined(__NVCC__) && \ !(FMT_CLANG_VERSION && FMT_MSC_VERSION) # define FMT_USE_INT128 1 using int128_opt = __int128_t; // An optional native 128-bit integer. using uint128_opt = __uint128_t; template inline auto convert_for_visit(T value) -> T { return value; } #else # define FMT_USE_INT128 0 #endif #if !FMT_USE_INT128 enum class int128_opt {}; enum class uint128_opt {}; // Reduce template instantiations. template auto convert_for_visit(T) -> monostate { return {}; } #endif // Casts a nonnegative integer to unsigned. template FMT_CONSTEXPR auto to_unsigned(Int value) -> typename std::make_unsigned::type { FMT_ASSERT(std::is_unsigned::value || value >= 0, "negative value"); return static_cast::type>(value); } FMT_CONSTEXPR inline auto is_utf8() -> bool { FMT_MSC_WARNING(suppress : 4566) constexpr unsigned char section[] = "\u00A7"; // Avoid buggy sign extensions in MSVC's constant evaluation mode (#2297). using uchar = unsigned char; return FMT_UNICODE || (sizeof(section) == 3 && uchar(section[0]) == 0xC2 && uchar(section[1]) == 0xA7); } } // namespace detail /** An implementation of ``std::basic_string_view`` for pre-C++17. It provides a subset of the API. ``fmt::basic_string_view`` is used for format strings even if ``std::string_view`` is available to prevent issues when a library is compiled with a different ``-std`` option than the client code (which is not recommended). */ FMT_EXPORT template class basic_string_view { private: const Char* data_; size_t size_; public: using value_type = Char; using iterator = const Char*; constexpr basic_string_view() noexcept : data_(nullptr), size_(0) {} /** Constructs a string reference object from a C string and a size. */ constexpr basic_string_view(const Char* s, size_t count) noexcept : data_(s), size_(count) {} /** \rst Constructs a string reference object from a C string computing the size with ``std::char_traits::length``. \endrst */ FMT_CONSTEXPR_CHAR_TRAITS FMT_INLINE basic_string_view(const Char* s) : data_(s), size_(detail::const_check(std::is_same::value && !detail::is_constant_evaluated(true)) ? std::strlen(reinterpret_cast(s)) : std::char_traits::length(s)) {} /** Constructs a string reference from a ``std::basic_string`` object. */ template FMT_CONSTEXPR basic_string_view( const std::basic_string& s) noexcept : data_(s.data()), size_(s.size()) {} template >::value)> FMT_CONSTEXPR basic_string_view(S s) noexcept : data_(s.data()), size_(s.size()) {} /** Returns a pointer to the string data. */ constexpr auto data() const noexcept -> const Char* { return data_; } /** Returns the string size. */ constexpr auto size() const noexcept -> size_t { return size_; } constexpr auto begin() const noexcept -> iterator { return data_; } constexpr auto end() const noexcept -> iterator { return data_ + size_; } constexpr auto operator[](size_t pos) const noexcept -> const Char& { return data_[pos]; } FMT_CONSTEXPR void remove_prefix(size_t n) noexcept { data_ += n; size_ -= n; } FMT_CONSTEXPR_CHAR_TRAITS bool starts_with( basic_string_view sv) const noexcept { return size_ >= sv.size_ && std::char_traits::compare(data_, sv.data_, sv.size_) == 0; } FMT_CONSTEXPR_CHAR_TRAITS bool starts_with(Char c) const noexcept { return size_ >= 1 && std::char_traits::eq(*data_, c); } FMT_CONSTEXPR_CHAR_TRAITS bool starts_with(const Char* s) const { return starts_with(basic_string_view(s)); } // Lexicographically compare this string reference to other. FMT_CONSTEXPR_CHAR_TRAITS auto compare(basic_string_view other) const -> int { size_t str_size = size_ < other.size_ ? size_ : other.size_; int result = std::char_traits::compare(data_, other.data_, str_size); if (result == 0) result = size_ == other.size_ ? 0 : (size_ < other.size_ ? -1 : 1); return result; } FMT_CONSTEXPR_CHAR_TRAITS friend auto operator==(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) == 0; } friend auto operator!=(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) != 0; } friend auto operator<(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) < 0; } friend auto operator<=(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) <= 0; } friend auto operator>(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) > 0; } friend auto operator>=(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) >= 0; } }; FMT_EXPORT using string_view = basic_string_view; /** Specifies if ``T`` is a character type. Can be specialized by users. */ FMT_EXPORT template struct is_char : std::false_type {}; template <> struct is_char : std::true_type {}; namespace detail { // A base class for compile-time strings. struct compile_string {}; template struct is_compile_string : std::is_base_of {}; template ::value)> FMT_INLINE auto to_string_view(const Char* s) -> basic_string_view { return s; } template inline auto to_string_view(const std::basic_string& s) -> basic_string_view { return s; } template constexpr auto to_string_view(basic_string_view s) -> basic_string_view { return s; } template >::value)> inline auto to_string_view(std_string_view s) -> basic_string_view { return s; } template ::value)> constexpr auto to_string_view(const S& s) -> basic_string_view { return basic_string_view(s); } void to_string_view(...); // Specifies whether S is a string type convertible to fmt::basic_string_view. // It should be a constexpr function but MSVC 2017 fails to compile it in // enable_if and MSVC 2015 fails to compile it as an alias template. // ADL is intentionally disabled as to_string_view is not an extension point. template struct is_string : std::is_class()))> {}; template struct char_t_impl {}; template struct char_t_impl::value>> { using result = decltype(to_string_view(std::declval())); using type = typename result::value_type; }; enum class type { none_type, // Integer types should go first, int_type, uint_type, long_long_type, ulong_long_type, int128_type, uint128_type, bool_type, char_type, last_integer_type = char_type, // followed by floating-point types. float_type, double_type, long_double_type, last_numeric_type = long_double_type, cstring_type, string_type, pointer_type, custom_type }; // Maps core type T to the corresponding type enum constant. template struct type_constant : std::integral_constant {}; #define FMT_TYPE_CONSTANT(Type, constant) \ template \ struct type_constant \ : std::integral_constant {} FMT_TYPE_CONSTANT(int, int_type); FMT_TYPE_CONSTANT(unsigned, uint_type); FMT_TYPE_CONSTANT(long long, long_long_type); FMT_TYPE_CONSTANT(unsigned long long, ulong_long_type); FMT_TYPE_CONSTANT(int128_opt, int128_type); FMT_TYPE_CONSTANT(uint128_opt, uint128_type); FMT_TYPE_CONSTANT(bool, bool_type); FMT_TYPE_CONSTANT(Char, char_type); FMT_TYPE_CONSTANT(float, float_type); FMT_TYPE_CONSTANT(double, double_type); FMT_TYPE_CONSTANT(long double, long_double_type); FMT_TYPE_CONSTANT(const Char*, cstring_type); FMT_TYPE_CONSTANT(basic_string_view, string_type); FMT_TYPE_CONSTANT(const void*, pointer_type); constexpr bool is_integral_type(type t) { return t > type::none_type && t <= type::last_integer_type; } constexpr bool is_arithmetic_type(type t) { return t > type::none_type && t <= type::last_numeric_type; } constexpr auto set(type rhs) -> int { return 1 << static_cast(rhs); } constexpr auto in(type t, int set) -> bool { return ((set >> static_cast(t)) & 1) != 0; } // Bitsets of types. enum { sint_set = set(type::int_type) | set(type::long_long_type) | set(type::int128_type), uint_set = set(type::uint_type) | set(type::ulong_long_type) | set(type::uint128_type), bool_set = set(type::bool_type), char_set = set(type::char_type), float_set = set(type::float_type) | set(type::double_type) | set(type::long_double_type), string_set = set(type::string_type), cstring_set = set(type::cstring_type), pointer_set = set(type::pointer_type) }; FMT_NORETURN FMT_API void throw_format_error(const char* message); struct error_handler { constexpr error_handler() = default; // This function is intentionally not constexpr to give a compile-time error. FMT_NORETURN void on_error(const char* message) { throw_format_error(message); } }; } // namespace detail /** String's character type. */ template using char_t = typename detail::char_t_impl::type; /** \rst Parsing context consisting of a format string range being parsed and an argument counter for automatic indexing. You can use the ``format_parse_context`` type alias for ``char`` instead. \endrst */ FMT_EXPORT template class basic_format_parse_context { private: basic_string_view format_str_; int next_arg_id_; FMT_CONSTEXPR void do_check_arg_id(int id); public: using char_type = Char; using iterator = const Char*; explicit constexpr basic_format_parse_context( basic_string_view format_str, int next_arg_id = 0) : format_str_(format_str), next_arg_id_(next_arg_id) {} /** Returns an iterator to the beginning of the format string range being parsed. */ constexpr auto begin() const noexcept -> iterator { return format_str_.begin(); } /** Returns an iterator past the end of the format string range being parsed. */ constexpr auto end() const noexcept -> iterator { return format_str_.end(); } /** Advances the begin iterator to ``it``. */ FMT_CONSTEXPR void advance_to(iterator it) { format_str_.remove_prefix(detail::to_unsigned(it - begin())); } /** Reports an error if using the manual argument indexing; otherwise returns the next argument index and switches to the automatic indexing. */ FMT_CONSTEXPR auto next_arg_id() -> int { if (next_arg_id_ < 0) { detail::throw_format_error( "cannot switch from manual to automatic argument indexing"); return 0; } int id = next_arg_id_++; do_check_arg_id(id); return id; } /** Reports an error if using the automatic argument indexing; otherwise switches to the manual indexing. */ FMT_CONSTEXPR void check_arg_id(int id) { if (next_arg_id_ > 0) { detail::throw_format_error( "cannot switch from automatic to manual argument indexing"); return; } next_arg_id_ = -1; do_check_arg_id(id); } FMT_CONSTEXPR void check_arg_id(basic_string_view) {} FMT_CONSTEXPR void check_dynamic_spec(int arg_id); }; FMT_EXPORT using format_parse_context = basic_format_parse_context; namespace detail { // A parse context with extra data used only in compile-time checks. template class compile_parse_context : public basic_format_parse_context { private: int num_args_; const type* types_; using base = basic_format_parse_context; public: explicit FMT_CONSTEXPR compile_parse_context( basic_string_view format_str, int num_args, const type* types, int next_arg_id = 0) : base(format_str, next_arg_id), num_args_(num_args), types_(types) {} constexpr auto num_args() const -> int { return num_args_; } constexpr auto arg_type(int id) const -> type { return types_[id]; } FMT_CONSTEXPR auto next_arg_id() -> int { int id = base::next_arg_id(); if (id >= num_args_) throw_format_error("argument not found"); return id; } FMT_CONSTEXPR void check_arg_id(int id) { base::check_arg_id(id); if (id >= num_args_) throw_format_error("argument not found"); } using base::check_arg_id; FMT_CONSTEXPR void check_dynamic_spec(int arg_id) { detail::ignore_unused(arg_id); #if !defined(__LCC__) if (arg_id < num_args_ && types_ && !is_integral_type(types_[arg_id])) throw_format_error("width/precision is not integer"); #endif } }; // Extracts a reference to the container from back_insert_iterator. template inline auto get_container(std::back_insert_iterator it) -> Container& { using base = std::back_insert_iterator; struct accessor : base { accessor(base b) : base(b) {} using base::container; }; return *accessor(it).container; } template FMT_CONSTEXPR auto copy_str(InputIt begin, InputIt end, OutputIt out) -> OutputIt { while (begin != end) *out++ = static_cast(*begin++); return out; } template , U>::value&& is_char::value)> FMT_CONSTEXPR auto copy_str(T* begin, T* end, U* out) -> U* { if (is_constant_evaluated()) return copy_str(begin, end, out); auto size = to_unsigned(end - begin); if (size > 0) memcpy(out, begin, size * sizeof(U)); return out + size; } /** \rst A contiguous memory buffer with an optional growing ability. It is an internal class and shouldn't be used directly, only via `~fmt::basic_memory_buffer`. \endrst */ template class buffer { private: T* ptr_; size_t size_; size_t capacity_; protected: // Don't initialize ptr_ since it is not accessed to save a few cycles. FMT_MSC_WARNING(suppress : 26495) buffer(size_t sz) noexcept : size_(sz), capacity_(sz) {} FMT_CONSTEXPR20 buffer(T* p = nullptr, size_t sz = 0, size_t cap = 0) noexcept : ptr_(p), size_(sz), capacity_(cap) {} FMT_CONSTEXPR20 ~buffer() = default; buffer(buffer&&) = default; /** Sets the buffer data and capacity. */ FMT_CONSTEXPR void set(T* buf_data, size_t buf_capacity) noexcept { ptr_ = buf_data; capacity_ = buf_capacity; } /** Increases the buffer capacity to hold at least *capacity* elements. */ virtual FMT_CONSTEXPR20 void grow(size_t capacity) = 0; public: using value_type = T; using const_reference = const T&; buffer(const buffer&) = delete; void operator=(const buffer&) = delete; FMT_INLINE auto begin() noexcept -> T* { return ptr_; } FMT_INLINE auto end() noexcept -> T* { return ptr_ + size_; } FMT_INLINE auto begin() const noexcept -> const T* { return ptr_; } FMT_INLINE auto end() const noexcept -> const T* { return ptr_ + size_; } /** Returns the size of this buffer. */ constexpr auto size() const noexcept -> size_t { return size_; } /** Returns the capacity of this buffer. */ constexpr auto capacity() const noexcept -> size_t { return capacity_; } /** Returns a pointer to the buffer data. */ FMT_CONSTEXPR auto data() noexcept -> T* { return ptr_; } /** Returns a pointer to the buffer data. */ FMT_CONSTEXPR auto data() const noexcept -> const T* { return ptr_; } /** Clears this buffer. */ void clear() { size_ = 0; } // Tries resizing the buffer to contain *count* elements. If T is a POD type // the new elements may not be initialized. FMT_CONSTEXPR20 void try_resize(size_t count) { try_reserve(count); size_ = count <= capacity_ ? count : capacity_; } // Tries increasing the buffer capacity to *new_capacity*. It can increase the // capacity by a smaller amount than requested but guarantees there is space // for at least one additional element either by increasing the capacity or by // flushing the buffer if it is full. FMT_CONSTEXPR20 void try_reserve(size_t new_capacity) { if (new_capacity > capacity_) grow(new_capacity); } FMT_CONSTEXPR20 void push_back(const T& value) { try_reserve(size_ + 1); ptr_[size_++] = value; } /** Appends data to the end of the buffer. */ template void append(const U* begin, const U* end); template FMT_CONSTEXPR auto operator[](Idx index) -> T& { return ptr_[index]; } template FMT_CONSTEXPR auto operator[](Idx index) const -> const T& { return ptr_[index]; } }; struct buffer_traits { explicit buffer_traits(size_t) {} auto count() const -> size_t { return 0; } auto limit(size_t size) -> size_t { return size; } }; class fixed_buffer_traits { private: size_t count_ = 0; size_t limit_; public: explicit fixed_buffer_traits(size_t limit) : limit_(limit) {} auto count() const -> size_t { return count_; } auto limit(size_t size) -> size_t { size_t n = limit_ > count_ ? limit_ - count_ : 0; count_ += size; return size < n ? size : n; } }; // A buffer that writes to an output iterator when flushed. template class iterator_buffer final : public Traits, public buffer { private: OutputIt out_; enum { buffer_size = 256 }; T data_[buffer_size]; protected: FMT_CONSTEXPR20 void grow(size_t) override { if (this->size() == buffer_size) flush(); } void flush() { auto size = this->size(); this->clear(); out_ = copy_str(data_, data_ + this->limit(size), out_); } public: explicit iterator_buffer(OutputIt out, size_t n = buffer_size) : Traits(n), buffer(data_, 0, buffer_size), out_(out) {} iterator_buffer(iterator_buffer&& other) : Traits(other), buffer(data_, 0, buffer_size), out_(other.out_) {} ~iterator_buffer() { flush(); } auto out() -> OutputIt { flush(); return out_; } auto count() const -> size_t { return Traits::count() + this->size(); } }; template class iterator_buffer final : public fixed_buffer_traits, public buffer { private: T* out_; enum { buffer_size = 256 }; T data_[buffer_size]; protected: FMT_CONSTEXPR20 void grow(size_t) override { if (this->size() == this->capacity()) flush(); } void flush() { size_t n = this->limit(this->size()); if (this->data() == out_) { out_ += n; this->set(data_, buffer_size); } this->clear(); } public: explicit iterator_buffer(T* out, size_t n = buffer_size) : fixed_buffer_traits(n), buffer(out, 0, n), out_(out) {} iterator_buffer(iterator_buffer&& other) : fixed_buffer_traits(other), buffer(std::move(other)), out_(other.out_) { if (this->data() != out_) { this->set(data_, buffer_size); this->clear(); } } ~iterator_buffer() { flush(); } auto out() -> T* { flush(); return out_; } auto count() const -> size_t { return fixed_buffer_traits::count() + this->size(); } }; template class iterator_buffer final : public buffer { protected: FMT_CONSTEXPR20 void grow(size_t) override {} public: explicit iterator_buffer(T* out, size_t = 0) : buffer(out, 0, ~size_t()) {} auto out() -> T* { return &*this->end(); } }; // A buffer that writes to a container with the contiguous storage. template class iterator_buffer, enable_if_t::value, typename Container::value_type>> final : public buffer { private: Container& container_; protected: FMT_CONSTEXPR20 void grow(size_t capacity) override { container_.resize(capacity); this->set(&container_[0], capacity); } public: explicit iterator_buffer(Container& c) : buffer(c.size()), container_(c) {} explicit iterator_buffer(std::back_insert_iterator out, size_t = 0) : iterator_buffer(get_container(out)) {} auto out() -> std::back_insert_iterator { return std::back_inserter(container_); } }; // A buffer that counts the number of code units written discarding the output. template class counting_buffer final : public buffer { private: enum { buffer_size = 256 }; T data_[buffer_size]; size_t count_ = 0; protected: FMT_CONSTEXPR20 void grow(size_t) override { if (this->size() != buffer_size) return; count_ += this->size(); this->clear(); } public: counting_buffer() : buffer(data_, 0, buffer_size) {} auto count() -> size_t { return count_ + this->size(); } }; } // namespace detail template FMT_CONSTEXPR void basic_format_parse_context::do_check_arg_id(int id) { // Argument id is only checked at compile-time during parsing because // formatting has its own validation. if (detail::is_constant_evaluated() && (!FMT_GCC_VERSION || FMT_GCC_VERSION >= 1200)) { using context = detail::compile_parse_context; if (id >= static_cast(this)->num_args()) detail::throw_format_error("argument not found"); } } template FMT_CONSTEXPR void basic_format_parse_context::check_dynamic_spec( int arg_id) { if (detail::is_constant_evaluated() && (!FMT_GCC_VERSION || FMT_GCC_VERSION >= 1200)) { using context = detail::compile_parse_context; static_cast(this)->check_dynamic_spec(arg_id); } } FMT_EXPORT template class basic_format_arg; FMT_EXPORT template class basic_format_args; FMT_EXPORT template class dynamic_format_arg_store; // A formatter for objects of type T. FMT_EXPORT template struct formatter { // A deleted default constructor indicates a disabled formatter. formatter() = delete; }; // Specifies if T has an enabled formatter specialization. A type can be // formattable even if it doesn't have a formatter e.g. via a conversion. template using has_formatter = std::is_constructible>; // An output iterator that appends to a buffer. // It is used to reduce symbol sizes for the common case. class appender : public std::back_insert_iterator> { using base = std::back_insert_iterator>; public: using std::back_insert_iterator>::back_insert_iterator; appender(base it) noexcept : base(it) {} FMT_UNCHECKED_ITERATOR(appender); auto operator++() noexcept -> appender& { return *this; } auto operator++(int) noexcept -> appender { return *this; } }; namespace detail { template constexpr auto has_const_formatter_impl(T*) -> decltype(typename Context::template formatter_type().format( std::declval(), std::declval()), true) { return true; } template constexpr auto has_const_formatter_impl(...) -> bool { return false; } template constexpr auto has_const_formatter() -> bool { return has_const_formatter_impl(static_cast(nullptr)); } template using buffer_appender = conditional_t::value, appender, std::back_insert_iterator>>; // Maps an output iterator to a buffer. template auto get_buffer(OutputIt out) -> iterator_buffer { return iterator_buffer(out); } template , Buf>::value)> auto get_buffer(std::back_insert_iterator out) -> buffer& { return get_container(out); } template FMT_INLINE auto get_iterator(Buf& buf, OutputIt) -> decltype(buf.out()) { return buf.out(); } template auto get_iterator(buffer&, OutputIt out) -> OutputIt { return out; } struct view {}; template struct named_arg : view { const Char* name; const T& value; named_arg(const Char* n, const T& v) : name(n), value(v) {} }; template struct named_arg_info { const Char* name; int id; }; template struct arg_data { // args_[0].named_args points to named_args_ to avoid bloating format_args. // +1 to workaround a bug in gcc 7.5 that causes duplicated-branches warning. T args_[1 + (NUM_ARGS != 0 ? NUM_ARGS : +1)]; named_arg_info named_args_[NUM_NAMED_ARGS]; template arg_data(const U&... init) : args_{T(named_args_, NUM_NAMED_ARGS), init...} {} arg_data(const arg_data& other) = delete; auto args() const -> const T* { return args_ + 1; } auto named_args() -> named_arg_info* { return named_args_; } }; template struct arg_data { // +1 to workaround a bug in gcc 7.5 that causes duplicated-branches warning. T args_[NUM_ARGS != 0 ? NUM_ARGS : +1]; template FMT_CONSTEXPR FMT_INLINE arg_data(const U&... init) : args_{init...} {} FMT_CONSTEXPR FMT_INLINE auto args() const -> const T* { return args_; } FMT_CONSTEXPR FMT_INLINE auto named_args() -> std::nullptr_t { return nullptr; } }; template inline void init_named_args(named_arg_info*, int, int) {} template struct is_named_arg : std::false_type {}; template struct is_statically_named_arg : std::false_type {}; template struct is_named_arg> : std::true_type {}; template ::value)> void init_named_args(named_arg_info* named_args, int arg_count, int named_arg_count, const T&, const Tail&... args) { init_named_args(named_args, arg_count + 1, named_arg_count, args...); } template ::value)> void init_named_args(named_arg_info* named_args, int arg_count, int named_arg_count, const T& arg, const Tail&... args) { named_args[named_arg_count++] = {arg.name, arg_count}; init_named_args(named_args, arg_count + 1, named_arg_count, args...); } template FMT_CONSTEXPR FMT_INLINE void init_named_args(std::nullptr_t, int, int, const Args&...) {} template constexpr auto count() -> size_t { return B ? 1 : 0; } template constexpr auto count() -> size_t { return (B1 ? 1 : 0) + count(); } template constexpr auto count_named_args() -> size_t { return count::value...>(); } template constexpr auto count_statically_named_args() -> size_t { return count::value...>(); } struct unformattable {}; struct unformattable_char : unformattable {}; struct unformattable_pointer : unformattable {}; template struct string_value { const Char* data; size_t size; }; template struct named_arg_value { const named_arg_info* data; size_t size; }; template struct custom_value { using parse_context = typename Context::parse_context_type; void* value; void (*format)(void* arg, parse_context& parse_ctx, Context& ctx); }; // A formatting argument value. template class value { public: using char_type = typename Context::char_type; union { monostate no_value; int int_value; unsigned uint_value; long long long_long_value; unsigned long long ulong_long_value; int128_opt int128_value; uint128_opt uint128_value; bool bool_value; char_type char_value; float float_value; double double_value; long double long_double_value; const void* pointer; string_value string; custom_value custom; named_arg_value named_args; }; constexpr FMT_INLINE value() : no_value() {} constexpr FMT_INLINE value(int val) : int_value(val) {} constexpr FMT_INLINE value(unsigned val) : uint_value(val) {} constexpr FMT_INLINE value(long long val) : long_long_value(val) {} constexpr FMT_INLINE value(unsigned long long val) : ulong_long_value(val) {} FMT_INLINE value(int128_opt val) : int128_value(val) {} FMT_INLINE value(uint128_opt val) : uint128_value(val) {} constexpr FMT_INLINE value(float val) : float_value(val) {} constexpr FMT_INLINE value(double val) : double_value(val) {} FMT_INLINE value(long double val) : long_double_value(val) {} constexpr FMT_INLINE value(bool val) : bool_value(val) {} constexpr FMT_INLINE value(char_type val) : char_value(val) {} FMT_CONSTEXPR FMT_INLINE value(const char_type* val) { string.data = val; if (is_constant_evaluated()) string.size = {}; } FMT_CONSTEXPR FMT_INLINE value(basic_string_view val) { string.data = val.data(); string.size = val.size(); } FMT_INLINE value(const void* val) : pointer(val) {} FMT_INLINE value(const named_arg_info* args, size_t size) : named_args{args, size} {} template FMT_CONSTEXPR FMT_INLINE value(T& val) { using value_type = remove_const_t; custom.value = const_cast(&val); // Get the formatter type through the context to allow different contexts // have different extension points, e.g. `formatter` for `format` and // `printf_formatter` for `printf`. custom.format = format_custom_arg< value_type, typename Context::template formatter_type>; } value(unformattable); value(unformattable_char); value(unformattable_pointer); private: // Formats an argument of a custom type, such as a user-defined class. template static void format_custom_arg(void* arg, typename Context::parse_context_type& parse_ctx, Context& ctx) { auto f = Formatter(); parse_ctx.advance_to(f.parse(parse_ctx)); using qualified_type = conditional_t(), const T, T>; ctx.advance_to(f.format(*static_cast(arg), ctx)); } }; // To minimize the number of types we need to deal with, long is translated // either to int or to long long depending on its size. enum { long_short = sizeof(long) == sizeof(int) }; using long_type = conditional_t; using ulong_type = conditional_t; template struct format_as_result { template ::value || std::is_class::value)> static auto map(U*) -> decltype(format_as(std::declval())); static auto map(...) -> void; using type = decltype(map(static_cast(nullptr))); }; template using format_as_t = typename format_as_result::type; template struct has_format_as : bool_constant, void>::value> {}; // Maps formatting arguments to core types. // arg_mapper reports errors by returning unformattable instead of using // static_assert because it's used in the is_formattable trait. template struct arg_mapper { using char_type = typename Context::char_type; FMT_CONSTEXPR FMT_INLINE auto map(signed char val) -> int { return val; } FMT_CONSTEXPR FMT_INLINE auto map(unsigned char val) -> unsigned { return val; } FMT_CONSTEXPR FMT_INLINE auto map(short val) -> int { return val; } FMT_CONSTEXPR FMT_INLINE auto map(unsigned short val) -> unsigned { return val; } FMT_CONSTEXPR FMT_INLINE auto map(int val) -> int { return val; } FMT_CONSTEXPR FMT_INLINE auto map(unsigned val) -> unsigned { return val; } FMT_CONSTEXPR FMT_INLINE auto map(long val) -> long_type { return val; } FMT_CONSTEXPR FMT_INLINE auto map(unsigned long val) -> ulong_type { return val; } FMT_CONSTEXPR FMT_INLINE auto map(long long val) -> long long { return val; } FMT_CONSTEXPR FMT_INLINE auto map(unsigned long long val) -> unsigned long long { return val; } FMT_CONSTEXPR FMT_INLINE auto map(int128_opt val) -> int128_opt { return val; } FMT_CONSTEXPR FMT_INLINE auto map(uint128_opt val) -> uint128_opt { return val; } FMT_CONSTEXPR FMT_INLINE auto map(bool val) -> bool { return val; } template ::value || std::is_same::value)> FMT_CONSTEXPR FMT_INLINE auto map(T val) -> char_type { return val; } template ::value || #ifdef __cpp_char8_t std::is_same::value || #endif std::is_same::value || std::is_same::value) && !std::is_same::value, int> = 0> FMT_CONSTEXPR FMT_INLINE auto map(T) -> unformattable_char { return {}; } FMT_CONSTEXPR FMT_INLINE auto map(float val) -> float { return val; } FMT_CONSTEXPR FMT_INLINE auto map(double val) -> double { return val; } FMT_CONSTEXPR FMT_INLINE auto map(long double val) -> long double { return val; } FMT_CONSTEXPR FMT_INLINE auto map(char_type* val) -> const char_type* { return val; } FMT_CONSTEXPR FMT_INLINE auto map(const char_type* val) -> const char_type* { return val; } template ::value && !std::is_pointer::value && std::is_same>::value)> FMT_CONSTEXPR FMT_INLINE auto map(const T& val) -> basic_string_view { return to_string_view(val); } template ::value && !std::is_pointer::value && !std::is_same>::value)> FMT_CONSTEXPR FMT_INLINE auto map(const T&) -> unformattable_char { return {}; } FMT_CONSTEXPR FMT_INLINE auto map(void* val) -> const void* { return val; } FMT_CONSTEXPR FMT_INLINE auto map(const void* val) -> const void* { return val; } FMT_CONSTEXPR FMT_INLINE auto map(std::nullptr_t val) -> const void* { return val; } // Use SFINAE instead of a const T* parameter to avoid a conflict with the // array overload. template < typename T, FMT_ENABLE_IF( std::is_pointer::value || std::is_member_pointer::value || std::is_function::type>::value || (std::is_convertible::value && !std::is_convertible::value && !has_formatter::value))> FMT_CONSTEXPR auto map(const T&) -> unformattable_pointer { return {}; } template ::value)> FMT_CONSTEXPR FMT_INLINE auto map(const T (&values)[N]) -> const T (&)[N] { return values; } // Only map owning types because mapping views can be unsafe. template , FMT_ENABLE_IF(std::is_arithmetic::value)> FMT_CONSTEXPR FMT_INLINE auto map(const T& val) -> decltype(this->map(U())) { return map(format_as(val)); } template > struct formattable : bool_constant() || (has_formatter::value && !std::is_const::value)> {}; template ::value)> FMT_CONSTEXPR FMT_INLINE auto do_map(T& val) -> T& { return val; } template ::value)> FMT_CONSTEXPR FMT_INLINE auto do_map(T&) -> unformattable { return {}; } template , FMT_ENABLE_IF((std::is_class::value || std::is_enum::value || std::is_union::value) && !is_string::value && !is_char::value && !is_named_arg::value && !std::is_arithmetic>::value)> FMT_CONSTEXPR FMT_INLINE auto map(T& val) -> decltype(this->do_map(val)) { return do_map(val); } template ::value)> FMT_CONSTEXPR FMT_INLINE auto map(const T& named_arg) -> decltype(this->map(named_arg.value)) { return map(named_arg.value); } auto map(...) -> unformattable { return {}; } }; // A type constant after applying arg_mapper. template using mapped_type_constant = type_constant().map(std::declval())), typename Context::char_type>; enum { packed_arg_bits = 4 }; // Maximum number of arguments with packed types. enum { max_packed_args = 62 / packed_arg_bits }; enum : unsigned long long { is_unpacked_bit = 1ULL << 63 }; enum : unsigned long long { has_named_args_bit = 1ULL << 62 }; template auto copy_str(InputIt begin, InputIt end, appender out) -> appender { get_container(out).append(begin, end); return out; } template FMT_CONSTEXPR auto copy_str(R&& rng, OutputIt out) -> OutputIt { return detail::copy_str(rng.begin(), rng.end(), out); } #if FMT_GCC_VERSION && FMT_GCC_VERSION < 500 // A workaround for gcc 4.8 to make void_t work in a SFINAE context. template struct void_t_impl { using type = void; }; template using void_t = typename void_t_impl::type; #else template using void_t = void; #endif template struct is_output_iterator : std::false_type {}; template struct is_output_iterator< It, T, void_t::iterator_category, decltype(*std::declval() = std::declval())>> : std::true_type {}; template struct is_back_insert_iterator : std::false_type {}; template struct is_back_insert_iterator> : std::true_type {}; // A type-erased reference to an std::locale to avoid a heavy include. class locale_ref { private: const void* locale_; // A type-erased pointer to std::locale. public: constexpr FMT_INLINE locale_ref() : locale_(nullptr) {} template explicit locale_ref(const Locale& loc); explicit operator bool() const noexcept { return locale_ != nullptr; } template auto get() const -> Locale; }; template constexpr auto encode_types() -> unsigned long long { return 0; } template constexpr auto encode_types() -> unsigned long long { return static_cast(mapped_type_constant::value) | (encode_types() << packed_arg_bits); } template FMT_CONSTEXPR FMT_INLINE auto make_arg(T& val) -> value { using arg_type = remove_cvref_t().map(val))>; constexpr bool formattable_char = !std::is_same::value; static_assert(formattable_char, "Mixing character types is disallowed."); // Formatting of arbitrary pointers is disallowed. If you want to format a // pointer cast it to `void*` or `const void*`. In particular, this forbids // formatting of `[const] volatile char*` printed as bool by iostreams. constexpr bool formattable_pointer = !std::is_same::value; static_assert(formattable_pointer, "Formatting of non-void pointers is disallowed."); constexpr bool formattable = !std::is_same::value; static_assert( formattable, "Cannot format an argument. To make type T formattable provide a " "formatter specialization: https://fmt.dev/latest/api.html#udt"); return {arg_mapper().map(val)}; } template FMT_CONSTEXPR auto make_arg(T& val) -> basic_format_arg { auto arg = basic_format_arg(); arg.type_ = mapped_type_constant::value; arg.value_ = make_arg(val); return arg; } template FMT_CONSTEXPR inline auto make_arg(T& val) -> basic_format_arg { return make_arg(val); } } // namespace detail FMT_BEGIN_EXPORT // A formatting argument. It is a trivially copyable/constructible type to // allow storage in basic_memory_buffer. template class basic_format_arg { private: detail::value value_; detail::type type_; template friend FMT_CONSTEXPR auto detail::make_arg(T& value) -> basic_format_arg; template friend FMT_CONSTEXPR auto visit_format_arg(Visitor&& vis, const basic_format_arg& arg) -> decltype(vis(0)); friend class basic_format_args; friend class dynamic_format_arg_store; using char_type = typename Context::char_type; template friend struct detail::arg_data; basic_format_arg(const detail::named_arg_info* args, size_t size) : value_(args, size) {} public: class handle { public: explicit handle(detail::custom_value custom) : custom_(custom) {} void format(typename Context::parse_context_type& parse_ctx, Context& ctx) const { custom_.format(custom_.value, parse_ctx, ctx); } private: detail::custom_value custom_; }; constexpr basic_format_arg() : type_(detail::type::none_type) {} constexpr explicit operator bool() const noexcept { return type_ != detail::type::none_type; } auto type() const -> detail::type { return type_; } auto is_integral() const -> bool { return detail::is_integral_type(type_); } auto is_arithmetic() const -> bool { return detail::is_arithmetic_type(type_); } }; /** \rst Visits an argument dispatching to the appropriate visit method based on the argument type. For example, if the argument type is ``double`` then ``vis(value)`` will be called with the value of type ``double``. \endrst */ FMT_EXPORT template FMT_CONSTEXPR FMT_INLINE auto visit_format_arg( Visitor&& vis, const basic_format_arg& arg) -> decltype(vis(0)) { switch (arg.type_) { case detail::type::none_type: break; case detail::type::int_type: return vis(arg.value_.int_value); case detail::type::uint_type: return vis(arg.value_.uint_value); case detail::type::long_long_type: return vis(arg.value_.long_long_value); case detail::type::ulong_long_type: return vis(arg.value_.ulong_long_value); case detail::type::int128_type: return vis(detail::convert_for_visit(arg.value_.int128_value)); case detail::type::uint128_type: return vis(detail::convert_for_visit(arg.value_.uint128_value)); case detail::type::bool_type: return vis(arg.value_.bool_value); case detail::type::char_type: return vis(arg.value_.char_value); case detail::type::float_type: return vis(arg.value_.float_value); case detail::type::double_type: return vis(arg.value_.double_value); case detail::type::long_double_type: return vis(arg.value_.long_double_value); case detail::type::cstring_type: return vis(arg.value_.string.data); case detail::type::string_type: using sv = basic_string_view; return vis(sv(arg.value_.string.data, arg.value_.string.size)); case detail::type::pointer_type: return vis(arg.value_.pointer); case detail::type::custom_type: return vis(typename basic_format_arg::handle(arg.value_.custom)); } return vis(monostate()); } // Formatting context. template class basic_format_context { private: OutputIt out_; basic_format_args args_; detail::locale_ref loc_; public: using iterator = OutputIt; using format_arg = basic_format_arg; using format_args = basic_format_args; using parse_context_type = basic_format_parse_context; template using formatter_type = formatter; /** The character type for the output. */ using char_type = Char; basic_format_context(basic_format_context&&) = default; basic_format_context(const basic_format_context&) = delete; void operator=(const basic_format_context&) = delete; /** Constructs a ``basic_format_context`` object. References to the arguments are stored in the object so make sure they have appropriate lifetimes. */ constexpr basic_format_context(OutputIt out, format_args ctx_args, detail::locale_ref loc = {}) : out_(out), args_(ctx_args), loc_(loc) {} constexpr auto arg(int id) const -> format_arg { return args_.get(id); } FMT_CONSTEXPR auto arg(basic_string_view name) -> format_arg { return args_.get(name); } FMT_CONSTEXPR auto arg_id(basic_string_view name) -> int { return args_.get_id(name); } auto args() const -> const format_args& { return args_; } FMT_CONSTEXPR auto error_handler() -> detail::error_handler { return {}; } void on_error(const char* message) { error_handler().on_error(message); } // Returns an iterator to the beginning of the output range. FMT_CONSTEXPR auto out() -> iterator { return out_; } // Advances the begin iterator to ``it``. void advance_to(iterator it) { if (!detail::is_back_insert_iterator()) out_ = it; } FMT_CONSTEXPR auto locale() -> detail::locale_ref { return loc_; } }; template using buffer_context = basic_format_context, Char>; using format_context = buffer_context; template using is_formattable = bool_constant>() .map(std::declval()))>::value>; /** \rst An array of references to arguments. It can be implicitly converted into `~fmt::basic_format_args` for passing into type-erased formatting functions such as `~fmt::vformat`. \endrst */ template class format_arg_store #if FMT_GCC_VERSION && FMT_GCC_VERSION < 409 // Workaround a GCC template argument substitution bug. : public basic_format_args #endif { private: static const size_t num_args = sizeof...(Args); static constexpr size_t num_named_args = detail::count_named_args(); static const bool is_packed = num_args <= detail::max_packed_args; using value_type = conditional_t, basic_format_arg>; detail::arg_data data_; friend class basic_format_args; static constexpr unsigned long long desc = (is_packed ? detail::encode_types() : detail::is_unpacked_bit | num_args) | (num_named_args != 0 ? static_cast(detail::has_named_args_bit) : 0); public: template FMT_CONSTEXPR FMT_INLINE format_arg_store(T&... args) : #if FMT_GCC_VERSION && FMT_GCC_VERSION < 409 basic_format_args(*this), #endif data_{detail::make_arg(args)...} { if (num_named_args != 0) detail::init_named_args(data_.named_args(), 0, 0, args...); } }; /** \rst Constructs a `~fmt::format_arg_store` object that contains references to arguments and can be implicitly converted to `~fmt::format_args`. `Context` can be omitted in which case it defaults to `~fmt::format_context`. See `~fmt::arg` for lifetime considerations. \endrst */ // Arguments are taken by lvalue references to avoid some lifetime issues. template constexpr auto make_format_args(T&... args) -> format_arg_store...> { return {args...}; } /** \rst Returns a named argument to be used in a formatting function. It should only be used in a call to a formatting function or `dynamic_format_arg_store::push_back`. **Example**:: fmt::print("Elapsed time: {s:.2f} seconds", fmt::arg("s", 1.23)); \endrst */ template inline auto arg(const Char* name, const T& arg) -> detail::named_arg { static_assert(!detail::is_named_arg(), "nested named arguments"); return {name, arg}; } FMT_END_EXPORT /** \rst A view of a collection of formatting arguments. To avoid lifetime issues it should only be used as a parameter type in type-erased functions such as ``vformat``:: void vlog(string_view format_str, format_args args); // OK format_args args = make_format_args(); // Error: dangling reference \endrst */ template class basic_format_args { public: using size_type = int; using format_arg = basic_format_arg; private: // A descriptor that contains information about formatting arguments. // If the number of arguments is less or equal to max_packed_args then // argument types are passed in the descriptor. This reduces binary code size // per formatting function call. unsigned long long desc_; union { // If is_packed() returns true then argument values are stored in values_; // otherwise they are stored in args_. This is done to improve cache // locality and reduce compiled code size since storing larger objects // may require more code (at least on x86-64) even if the same amount of // data is actually copied to stack. It saves ~10% on the bloat test. const detail::value* values_; const format_arg* args_; }; constexpr auto is_packed() const -> bool { return (desc_ & detail::is_unpacked_bit) == 0; } auto has_named_args() const -> bool { return (desc_ & detail::has_named_args_bit) != 0; } FMT_CONSTEXPR auto type(int index) const -> detail::type { int shift = index * detail::packed_arg_bits; unsigned int mask = (1 << detail::packed_arg_bits) - 1; return static_cast((desc_ >> shift) & mask); } constexpr FMT_INLINE basic_format_args(unsigned long long desc, const detail::value* values) : desc_(desc), values_(values) {} constexpr basic_format_args(unsigned long long desc, const format_arg* args) : desc_(desc), args_(args) {} public: constexpr basic_format_args() : desc_(0), args_(nullptr) {} /** \rst Constructs a `basic_format_args` object from `~fmt::format_arg_store`. \endrst */ template constexpr FMT_INLINE basic_format_args( const format_arg_store& store) : basic_format_args(format_arg_store::desc, store.data_.args()) {} /** \rst Constructs a `basic_format_args` object from `~fmt::dynamic_format_arg_store`. \endrst */ constexpr FMT_INLINE basic_format_args( const dynamic_format_arg_store& store) : basic_format_args(store.get_types(), store.data()) {} /** \rst Constructs a `basic_format_args` object from a dynamic set of arguments. \endrst */ constexpr basic_format_args(const format_arg* args, int count) : basic_format_args(detail::is_unpacked_bit | detail::to_unsigned(count), args) {} /** Returns the argument with the specified id. */ FMT_CONSTEXPR auto get(int id) const -> format_arg { format_arg arg; if (!is_packed()) { if (id < max_size()) arg = args_[id]; return arg; } if (id >= detail::max_packed_args) return arg; arg.type_ = type(id); if (arg.type_ == detail::type::none_type) return arg; arg.value_ = values_[id]; return arg; } template auto get(basic_string_view name) const -> format_arg { int id = get_id(name); return id >= 0 ? get(id) : format_arg(); } template auto get_id(basic_string_view name) const -> int { if (!has_named_args()) return -1; const auto& named_args = (is_packed() ? values_[-1] : args_[-1].value_).named_args; for (size_t i = 0; i < named_args.size; ++i) { if (named_args.data[i].name == name) return named_args.data[i].id; } return -1; } auto max_size() const -> int { unsigned long long max_packed = detail::max_packed_args; return static_cast(is_packed() ? max_packed : desc_ & ~detail::is_unpacked_bit); } }; /** An alias to ``basic_format_args``. */ // A separate type would result in shorter symbols but break ABI compatibility // between clang and gcc on ARM (#1919). FMT_EXPORT using format_args = basic_format_args; // We cannot use enum classes as bit fields because of a gcc bug, so we put them // in namespaces instead (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61414). // Additionally, if an underlying type is specified, older gcc incorrectly warns // that the type is too small. Both bugs are fixed in gcc 9.3. #if FMT_GCC_VERSION && FMT_GCC_VERSION < 903 # define FMT_ENUM_UNDERLYING_TYPE(type) #else # define FMT_ENUM_UNDERLYING_TYPE(type) : type #endif namespace align { enum type FMT_ENUM_UNDERLYING_TYPE(unsigned char){none, left, right, center, numeric}; } using align_t = align::type; namespace sign { enum type FMT_ENUM_UNDERLYING_TYPE(unsigned char){none, minus, plus, space}; } using sign_t = sign::type; namespace detail { // Workaround an array initialization issue in gcc 4.8. template struct fill_t { private: enum { max_size = 4 }; Char data_[max_size] = {Char(' '), Char(0), Char(0), Char(0)}; unsigned char size_ = 1; public: FMT_CONSTEXPR void operator=(basic_string_view s) { auto size = s.size(); FMT_ASSERT(size <= max_size, "invalid fill"); for (size_t i = 0; i < size; ++i) data_[i] = s[i]; size_ = static_cast(size); } constexpr auto size() const -> size_t { return size_; } constexpr auto data() const -> const Char* { return data_; } FMT_CONSTEXPR auto operator[](size_t index) -> Char& { return data_[index]; } FMT_CONSTEXPR auto operator[](size_t index) const -> const Char& { return data_[index]; } }; } // namespace detail enum class presentation_type : unsigned char { none, dec, // 'd' oct, // 'o' hex_lower, // 'x' hex_upper, // 'X' bin_lower, // 'b' bin_upper, // 'B' hexfloat_lower, // 'a' hexfloat_upper, // 'A' exp_lower, // 'e' exp_upper, // 'E' fixed_lower, // 'f' fixed_upper, // 'F' general_lower, // 'g' general_upper, // 'G' chr, // 'c' string, // 's' pointer, // 'p' debug // '?' }; // Format specifiers for built-in and string types. template struct format_specs { int width; int precision; presentation_type type; align_t align : 4; sign_t sign : 3; bool alt : 1; // Alternate form ('#'). bool localized : 1; detail::fill_t fill; constexpr format_specs() : width(0), precision(-1), type(presentation_type::none), align(align::none), sign(sign::none), alt(false), localized(false) {} }; namespace detail { enum class arg_id_kind { none, index, name }; // An argument reference. template struct arg_ref { FMT_CONSTEXPR arg_ref() : kind(arg_id_kind::none), val() {} FMT_CONSTEXPR explicit arg_ref(int index) : kind(arg_id_kind::index), val(index) {} FMT_CONSTEXPR explicit arg_ref(basic_string_view name) : kind(arg_id_kind::name), val(name) {} FMT_CONSTEXPR auto operator=(int idx) -> arg_ref& { kind = arg_id_kind::index; val.index = idx; return *this; } arg_id_kind kind; union value { FMT_CONSTEXPR value(int idx = 0) : index(idx) {} FMT_CONSTEXPR value(basic_string_view n) : name(n) {} int index; basic_string_view name; } val; }; // Format specifiers with width and precision resolved at formatting rather // than parsing time to allow reusing the same parsed specifiers with // different sets of arguments (precompilation of format strings). template struct dynamic_format_specs : format_specs { arg_ref width_ref; arg_ref precision_ref; }; // Converts a character to ASCII. Returns '\0' on conversion failure. template ::value)> constexpr auto to_ascii(Char c) -> char { return c <= 0xff ? static_cast(c) : '\0'; } template ::value)> constexpr auto to_ascii(Char c) -> char { return c <= 0xff ? static_cast(c) : '\0'; } // Returns the number of code units in a code point or 1 on error. template FMT_CONSTEXPR auto code_point_length(const Char* begin) -> int { if (const_check(sizeof(Char) != 1)) return 1; auto c = static_cast(*begin); return static_cast((0x3a55000000000000ull >> (2 * (c >> 3))) & 0x3) + 1; } // Return the result via the out param to workaround gcc bug 77539. template FMT_CONSTEXPR auto find(Ptr first, Ptr last, T value, Ptr& out) -> bool { for (out = first; out != last; ++out) { if (*out == value) return true; } return false; } template <> inline auto find(const char* first, const char* last, char value, const char*& out) -> bool { out = static_cast( std::memchr(first, value, to_unsigned(last - first))); return out != nullptr; } // Parses the range [begin, end) as an unsigned integer. This function assumes // that the range is non-empty and the first character is a digit. template FMT_CONSTEXPR auto parse_nonnegative_int(const Char*& begin, const Char* end, int error_value) noexcept -> int { FMT_ASSERT(begin != end && '0' <= *begin && *begin <= '9', ""); unsigned value = 0, prev = 0; auto p = begin; do { prev = value; value = value * 10 + unsigned(*p - '0'); ++p; } while (p != end && '0' <= *p && *p <= '9'); auto num_digits = p - begin; begin = p; if (num_digits <= std::numeric_limits::digits10) return static_cast(value); // Check for overflow. const unsigned max = to_unsigned((std::numeric_limits::max)()); return num_digits == std::numeric_limits::digits10 + 1 && prev * 10ull + unsigned(p[-1] - '0') <= max ? static_cast(value) : error_value; } FMT_CONSTEXPR inline auto parse_align(char c) -> align_t { switch (c) { case '<': return align::left; case '>': return align::right; case '^': return align::center; } return align::none; } template constexpr auto is_name_start(Char c) -> bool { return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || c == '_'; } template FMT_CONSTEXPR auto do_parse_arg_id(const Char* begin, const Char* end, Handler&& handler) -> const Char* { Char c = *begin; if (c >= '0' && c <= '9') { int index = 0; constexpr int max = (std::numeric_limits::max)(); if (c != '0') index = parse_nonnegative_int(begin, end, max); else ++begin; if (begin == end || (*begin != '}' && *begin != ':')) throw_format_error("invalid format string"); else handler.on_index(index); return begin; } if (!is_name_start(c)) { throw_format_error("invalid format string"); return begin; } auto it = begin; do { ++it; } while (it != end && (is_name_start(*it) || ('0' <= *it && *it <= '9'))); handler.on_name({begin, to_unsigned(it - begin)}); return it; } template FMT_CONSTEXPR FMT_INLINE auto parse_arg_id(const Char* begin, const Char* end, Handler&& handler) -> const Char* { FMT_ASSERT(begin != end, ""); Char c = *begin; if (c != '}' && c != ':') return do_parse_arg_id(begin, end, handler); handler.on_auto(); return begin; } template struct dynamic_spec_id_handler { basic_format_parse_context& ctx; arg_ref& ref; FMT_CONSTEXPR void on_auto() { int id = ctx.next_arg_id(); ref = arg_ref(id); ctx.check_dynamic_spec(id); } FMT_CONSTEXPR void on_index(int id) { ref = arg_ref(id); ctx.check_arg_id(id); ctx.check_dynamic_spec(id); } FMT_CONSTEXPR void on_name(basic_string_view id) { ref = arg_ref(id); ctx.check_arg_id(id); } }; // Parses [integer | "{" [arg_id] "}"]. template FMT_CONSTEXPR auto parse_dynamic_spec(const Char* begin, const Char* end, int& value, arg_ref& ref, basic_format_parse_context& ctx) -> const Char* { FMT_ASSERT(begin != end, ""); if ('0' <= *begin && *begin <= '9') { int val = parse_nonnegative_int(begin, end, -1); if (val != -1) value = val; else throw_format_error("number is too big"); } else if (*begin == '{') { ++begin; auto handler = dynamic_spec_id_handler{ctx, ref}; if (begin != end) begin = parse_arg_id(begin, end, handler); if (begin != end && *begin == '}') return ++begin; throw_format_error("invalid format string"); } return begin; } template FMT_CONSTEXPR auto parse_precision(const Char* begin, const Char* end, int& value, arg_ref& ref, basic_format_parse_context& ctx) -> const Char* { ++begin; if (begin == end || *begin == '}') { throw_format_error("invalid precision"); return begin; } return parse_dynamic_spec(begin, end, value, ref, ctx); } enum class state { start, align, sign, hash, zero, width, precision, locale }; // Parses standard format specifiers. template FMT_CONSTEXPR FMT_INLINE auto parse_format_specs( const Char* begin, const Char* end, dynamic_format_specs& specs, basic_format_parse_context& ctx, type arg_type) -> const Char* { auto c = '\0'; if (end - begin > 1) { auto next = to_ascii(begin[1]); c = parse_align(next) == align::none ? to_ascii(*begin) : '\0'; } else { if (begin == end) return begin; c = to_ascii(*begin); } struct { state current_state = state::start; FMT_CONSTEXPR void operator()(state s, bool valid = true) { if (current_state >= s || !valid) throw_format_error("invalid format specifier"); current_state = s; } } enter_state; using pres = presentation_type; constexpr auto integral_set = sint_set | uint_set | bool_set | char_set; struct { const Char*& begin; dynamic_format_specs& specs; type arg_type; FMT_CONSTEXPR auto operator()(pres type, int set) -> const Char* { if (!in(arg_type, set)) throw_format_error("invalid format specifier"); specs.type = type; return begin + 1; } } parse_presentation_type{begin, specs, arg_type}; for (;;) { switch (c) { case '<': case '>': case '^': enter_state(state::align); specs.align = parse_align(c); ++begin; break; case '+': case '-': case ' ': enter_state(state::sign, in(arg_type, sint_set | float_set)); switch (c) { case '+': specs.sign = sign::plus; break; case '-': specs.sign = sign::minus; break; case ' ': specs.sign = sign::space; break; } ++begin; break; case '#': enter_state(state::hash, is_arithmetic_type(arg_type)); specs.alt = true; ++begin; break; case '0': enter_state(state::zero); if (!is_arithmetic_type(arg_type)) throw_format_error("format specifier requires numeric argument"); if (specs.align == align::none) { // Ignore 0 if align is specified for compatibility with std::format. specs.align = align::numeric; specs.fill[0] = Char('0'); } ++begin; break; case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': case '{': enter_state(state::width); begin = parse_dynamic_spec(begin, end, specs.width, specs.width_ref, ctx); break; case '.': enter_state(state::precision, in(arg_type, float_set | string_set | cstring_set)); begin = parse_precision(begin, end, specs.precision, specs.precision_ref, ctx); break; case 'L': enter_state(state::locale, is_arithmetic_type(arg_type)); specs.localized = true; ++begin; break; case 'd': return parse_presentation_type(pres::dec, integral_set); case 'o': return parse_presentation_type(pres::oct, integral_set); case 'x': return parse_presentation_type(pres::hex_lower, integral_set); case 'X': return parse_presentation_type(pres::hex_upper, integral_set); case 'b': return parse_presentation_type(pres::bin_lower, integral_set); case 'B': return parse_presentation_type(pres::bin_upper, integral_set); case 'a': return parse_presentation_type(pres::hexfloat_lower, float_set); case 'A': return parse_presentation_type(pres::hexfloat_upper, float_set); case 'e': return parse_presentation_type(pres::exp_lower, float_set); case 'E': return parse_presentation_type(pres::exp_upper, float_set); case 'f': return parse_presentation_type(pres::fixed_lower, float_set); case 'F': return parse_presentation_type(pres::fixed_upper, float_set); case 'g': return parse_presentation_type(pres::general_lower, float_set); case 'G': return parse_presentation_type(pres::general_upper, float_set); case 'c': return parse_presentation_type(pres::chr, integral_set); case 's': return parse_presentation_type(pres::string, bool_set | string_set | cstring_set); case 'p': return parse_presentation_type(pres::pointer, pointer_set | cstring_set); case '?': return parse_presentation_type(pres::debug, char_set | string_set | cstring_set); case '}': return begin; default: { if (*begin == '}') return begin; // Parse fill and alignment. auto fill_end = begin + code_point_length(begin); if (end - fill_end <= 0) { throw_format_error("invalid format specifier"); return begin; } if (*begin == '{') { throw_format_error("invalid fill character '{'"); return begin; } auto align = parse_align(to_ascii(*fill_end)); enter_state(state::align, align != align::none); specs.fill = {begin, to_unsigned(fill_end - begin)}; specs.align = align; begin = fill_end + 1; } } if (begin == end) return begin; c = to_ascii(*begin); } } template FMT_CONSTEXPR auto parse_replacement_field(const Char* begin, const Char* end, Handler&& handler) -> const Char* { struct id_adapter { Handler& handler; int arg_id; FMT_CONSTEXPR void on_auto() { arg_id = handler.on_arg_id(); } FMT_CONSTEXPR void on_index(int id) { arg_id = handler.on_arg_id(id); } FMT_CONSTEXPR void on_name(basic_string_view id) { arg_id = handler.on_arg_id(id); } }; ++begin; if (begin == end) return handler.on_error("invalid format string"), end; if (*begin == '}') { handler.on_replacement_field(handler.on_arg_id(), begin); } else if (*begin == '{') { handler.on_text(begin, begin + 1); } else { auto adapter = id_adapter{handler, 0}; begin = parse_arg_id(begin, end, adapter); Char c = begin != end ? *begin : Char(); if (c == '}') { handler.on_replacement_field(adapter.arg_id, begin); } else if (c == ':') { begin = handler.on_format_specs(adapter.arg_id, begin + 1, end); if (begin == end || *begin != '}') return handler.on_error("unknown format specifier"), end; } else { return handler.on_error("missing '}' in format string"), end; } } return begin + 1; } template FMT_CONSTEXPR FMT_INLINE void parse_format_string( basic_string_view format_str, Handler&& handler) { auto begin = format_str.data(); auto end = begin + format_str.size(); if (end - begin < 32) { // Use a simple loop instead of memchr for small strings. const Char* p = begin; while (p != end) { auto c = *p++; if (c == '{') { handler.on_text(begin, p - 1); begin = p = parse_replacement_field(p - 1, end, handler); } else if (c == '}') { if (p == end || *p != '}') return handler.on_error("unmatched '}' in format string"); handler.on_text(begin, p); begin = ++p; } } handler.on_text(begin, end); return; } struct writer { FMT_CONSTEXPR void operator()(const Char* from, const Char* to) { if (from == to) return; for (;;) { const Char* p = nullptr; if (!find(from, to, Char('}'), p)) return handler_.on_text(from, to); ++p; if (p == to || *p != '}') return handler_.on_error("unmatched '}' in format string"); handler_.on_text(from, p); from = p + 1; } } Handler& handler_; } write = {handler}; while (begin != end) { // Doing two passes with memchr (one for '{' and another for '}') is up to // 2.5x faster than the naive one-pass implementation on big format strings. const Char* p = begin; if (*begin != '{' && !find(begin + 1, end, Char('{'), p)) return write(begin, end); write(begin, p); begin = parse_replacement_field(p, end, handler); } } template ::value> struct strip_named_arg { using type = T; }; template struct strip_named_arg { using type = remove_cvref_t; }; template FMT_CONSTEXPR auto parse_format_specs(ParseContext& ctx) -> decltype(ctx.begin()) { using char_type = typename ParseContext::char_type; using context = buffer_context; using mapped_type = conditional_t< mapped_type_constant::value != type::custom_type, decltype(arg_mapper().map(std::declval())), typename strip_named_arg::type>; return formatter().parse(ctx); } // Checks char specs and returns true iff the presentation type is char-like. template FMT_CONSTEXPR auto check_char_specs(const format_specs& specs) -> bool { if (specs.type != presentation_type::none && specs.type != presentation_type::chr && specs.type != presentation_type::debug) { return false; } if (specs.align == align::numeric || specs.sign != sign::none || specs.alt) throw_format_error("invalid format specifier for char"); return true; } #if FMT_USE_NONTYPE_TEMPLATE_ARGS template constexpr auto get_arg_index_by_name(basic_string_view name) -> int { if constexpr (is_statically_named_arg()) { if (name == T::name) return N; } if constexpr (sizeof...(Args) > 0) return get_arg_index_by_name(name); (void)name; // Workaround an MSVC bug about "unused" parameter. return -1; } #endif template FMT_CONSTEXPR auto get_arg_index_by_name(basic_string_view name) -> int { #if FMT_USE_NONTYPE_TEMPLATE_ARGS if constexpr (sizeof...(Args) > 0) return get_arg_index_by_name<0, Args...>(name); #endif (void)name; return -1; } template class format_string_checker { private: using parse_context_type = compile_parse_context; static constexpr int num_args = sizeof...(Args); // Format specifier parsing function. // In the future basic_format_parse_context will replace compile_parse_context // here and will use is_constant_evaluated and downcasting to access the data // needed for compile-time checks: https://godbolt.org/z/GvWzcTjh1. using parse_func = const Char* (*)(parse_context_type&); parse_context_type context_; parse_func parse_funcs_[num_args > 0 ? static_cast(num_args) : 1]; type types_[num_args > 0 ? static_cast(num_args) : 1]; public: explicit FMT_CONSTEXPR format_string_checker(basic_string_view fmt) : context_(fmt, num_args, types_), parse_funcs_{&parse_format_specs...}, types_{mapped_type_constant>::value...} {} FMT_CONSTEXPR void on_text(const Char*, const Char*) {} FMT_CONSTEXPR auto on_arg_id() -> int { return context_.next_arg_id(); } FMT_CONSTEXPR auto on_arg_id(int id) -> int { return context_.check_arg_id(id), id; } FMT_CONSTEXPR auto on_arg_id(basic_string_view id) -> int { #if FMT_USE_NONTYPE_TEMPLATE_ARGS auto index = get_arg_index_by_name(id); if (index < 0) on_error("named argument is not found"); return index; #else (void)id; on_error("compile-time checks for named arguments require C++20 support"); return 0; #endif } FMT_CONSTEXPR void on_replacement_field(int, const Char*) {} FMT_CONSTEXPR auto on_format_specs(int id, const Char* begin, const Char*) -> const Char* { context_.advance_to(begin); // id >= 0 check is a workaround for gcc 10 bug (#2065). return id >= 0 && id < num_args ? parse_funcs_[id](context_) : begin; } FMT_CONSTEXPR void on_error(const char* message) { throw_format_error(message); } }; // Reports a compile-time error if S is not a valid format string. template ::value)> FMT_INLINE void check_format_string(const S&) { #ifdef FMT_ENFORCE_COMPILE_STRING static_assert(is_compile_string::value, "FMT_ENFORCE_COMPILE_STRING requires all format strings to use " "FMT_STRING."); #endif } template ::value)> void check_format_string(S format_str) { using char_t = typename S::char_type; FMT_CONSTEXPR auto s = basic_string_view(format_str); using checker = format_string_checker...>; FMT_CONSTEXPR bool error = (parse_format_string(s, checker(s)), true); ignore_unused(error); } template struct vformat_args { using type = basic_format_args< basic_format_context>, Char>>; }; template <> struct vformat_args { using type = format_args; }; // Use vformat_args and avoid type_identity to keep symbols short. template void vformat_to(buffer& buf, basic_string_view fmt, typename vformat_args::type args, locale_ref loc = {}); FMT_API void vprint_mojibake(std::FILE*, string_view, format_args); #ifndef _WIN32 inline void vprint_mojibake(std::FILE*, string_view, format_args) {} #endif } // namespace detail FMT_BEGIN_EXPORT // A formatter specialization for natively supported types. template struct formatter::value != detail::type::custom_type>> { private: detail::dynamic_format_specs specs_; public: template FMT_CONSTEXPR auto parse(ParseContext& ctx) -> const Char* { auto type = detail::type_constant::value; auto end = detail::parse_format_specs(ctx.begin(), ctx.end(), specs_, ctx, type); if (type == detail::type::char_type) detail::check_char_specs(specs_); return end; } template ::value, FMT_ENABLE_IF(U == detail::type::string_type || U == detail::type::cstring_type || U == detail::type::char_type)> FMT_CONSTEXPR void set_debug_format(bool set = true) { specs_.type = set ? presentation_type::debug : presentation_type::none; } template FMT_CONSTEXPR auto format(const T& val, FormatContext& ctx) const -> decltype(ctx.out()); }; #define FMT_FORMAT_AS(Type, Base) \ template \ struct formatter : formatter {} FMT_FORMAT_AS(signed char, int); FMT_FORMAT_AS(unsigned char, unsigned); FMT_FORMAT_AS(short, int); FMT_FORMAT_AS(unsigned short, unsigned); FMT_FORMAT_AS(long, detail::long_type); FMT_FORMAT_AS(unsigned long, detail::ulong_type); FMT_FORMAT_AS(Char*, const Char*); FMT_FORMAT_AS(std::basic_string, basic_string_view); FMT_FORMAT_AS(std::nullptr_t, const void*); FMT_FORMAT_AS(detail::std_string_view, basic_string_view); template struct runtime_format_string { basic_string_view str; }; /** A compile-time format string. */ template class basic_format_string { private: basic_string_view str_; public: template >::value)> FMT_CONSTEVAL FMT_INLINE basic_format_string(const S& s) : str_(s) { static_assert( detail::count< (std::is_base_of>::value && std::is_reference::value)...>() == 0, "passing views as lvalues is disallowed"); #ifdef FMT_HAS_CONSTEVAL if constexpr (detail::count_named_args() == detail::count_statically_named_args()) { using checker = detail::format_string_checker...>; detail::parse_format_string(str_, checker(s)); } #else detail::check_format_string(s); #endif } basic_format_string(runtime_format_string fmt) : str_(fmt.str) {} FMT_INLINE operator basic_string_view() const { return str_; } FMT_INLINE auto get() const -> basic_string_view { return str_; } }; #if FMT_GCC_VERSION && FMT_GCC_VERSION < 409 // Workaround broken conversion on older gcc. template using format_string = string_view; inline auto runtime(string_view s) -> string_view { return s; } #else template using format_string = basic_format_string...>; /** \rst Creates a runtime format string. **Example**:: // Check format string at runtime instead of compile-time. fmt::print(fmt::runtime("{:d}"), "I am not a number"); \endrst */ inline auto runtime(string_view s) -> runtime_format_string<> { return {{s}}; } #endif FMT_API auto vformat(string_view fmt, format_args args) -> std::string; /** \rst Formats ``args`` according to specifications in ``fmt`` and returns the result as a string. **Example**:: #include std::string message = fmt::format("The answer is {}.", 42); \endrst */ template FMT_NODISCARD FMT_INLINE auto format(format_string fmt, T&&... args) -> std::string { return vformat(fmt, fmt::make_format_args(args...)); } /** Formats a string and writes the output to ``out``. */ template ::value)> auto vformat_to(OutputIt out, string_view fmt, format_args args) -> OutputIt { auto&& buf = detail::get_buffer(out); detail::vformat_to(buf, fmt, args, {}); return detail::get_iterator(buf, out); } /** \rst Formats ``args`` according to specifications in ``fmt``, writes the result to the output iterator ``out`` and returns the iterator past the end of the output range. `format_to` does not append a terminating null character. **Example**:: auto out = std::vector(); fmt::format_to(std::back_inserter(out), "{}", 42); \endrst */ template ::value)> FMT_INLINE auto format_to(OutputIt out, format_string fmt, T&&... args) -> OutputIt { return vformat_to(out, fmt, fmt::make_format_args(args...)); } template struct format_to_n_result { /** Iterator past the end of the output range. */ OutputIt out; /** Total (not truncated) output size. */ size_t size; }; template ::value)> auto vformat_to_n(OutputIt out, size_t n, string_view fmt, format_args args) -> format_to_n_result { using traits = detail::fixed_buffer_traits; auto buf = detail::iterator_buffer(out, n); detail::vformat_to(buf, fmt, args, {}); return {buf.out(), buf.count()}; } /** \rst Formats ``args`` according to specifications in ``fmt``, writes up to ``n`` characters of the result to the output iterator ``out`` and returns the total (not truncated) output size and the iterator past the end of the output range. `format_to_n` does not append a terminating null character. \endrst */ template ::value)> FMT_INLINE auto format_to_n(OutputIt out, size_t n, format_string fmt, T&&... args) -> format_to_n_result { return vformat_to_n(out, n, fmt, fmt::make_format_args(args...)); } /** Returns the number of chars in the output of ``format(fmt, args...)``. */ template FMT_NODISCARD FMT_INLINE auto formatted_size(format_string fmt, T&&... args) -> size_t { auto buf = detail::counting_buffer<>(); detail::vformat_to(buf, fmt, fmt::make_format_args(args...), {}); return buf.count(); } FMT_API void vprint(string_view fmt, format_args args); FMT_API void vprint(std::FILE* f, string_view fmt, format_args args); /** \rst Formats ``args`` according to specifications in ``fmt`` and writes the output to ``stdout``. **Example**:: fmt::print("Elapsed time: {0:.2f} seconds", 1.23); \endrst */ template FMT_INLINE void print(format_string fmt, T&&... args) { const auto& vargs = fmt::make_format_args(args...); return detail::is_utf8() ? vprint(fmt, vargs) : detail::vprint_mojibake(stdout, fmt, vargs); } /** \rst Formats ``args`` according to specifications in ``fmt`` and writes the output to the file ``f``. **Example**:: fmt::print(stderr, "Don't {}!", "panic"); \endrst */ template FMT_INLINE void print(std::FILE* f, format_string fmt, T&&... args) { const auto& vargs = fmt::make_format_args(args...); return detail::is_utf8() ? vprint(f, fmt, vargs) : detail::vprint_mojibake(f, fmt, vargs); } /** Formats ``args`` according to specifications in ``fmt`` and writes the output to the file ``f`` followed by a newline. */ template FMT_INLINE void println(std::FILE* f, format_string fmt, T&&... args) { return fmt::print(f, "{}\n", fmt::format(fmt, std::forward(args)...)); } /** Formats ``args`` according to specifications in ``fmt`` and writes the output to ``stdout`` followed by a newline. */ template FMT_INLINE void println(format_string fmt, T&&... args) { return fmt::println(stdout, fmt, std::forward(args)...); } FMT_END_EXPORT FMT_GCC_PRAGMA("GCC pop_options") FMT_END_NAMESPACE #ifdef FMT_HEADER_ONLY # include "format.h" #endif #endif // FMT_CORE_H_ btop-1.3.0/include/fmt/format-inl.h000066400000000000000000002166421454653170500171360ustar00rootroot00000000000000// Formatting library for C++ - implementation // // Copyright (c) 2012 - 2016, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_FORMAT_INL_H_ #define FMT_FORMAT_INL_H_ #include #include // errno #include #include #include #ifndef FMT_STATIC_THOUSANDS_SEPARATOR # include #endif #ifdef _WIN32 # include // _isatty #endif #include "format.h" FMT_BEGIN_NAMESPACE namespace detail { FMT_FUNC void assert_fail(const char* file, int line, const char* message) { // Use unchecked std::fprintf to avoid triggering another assertion when // writing to stderr fails std::fprintf(stderr, "%s:%d: assertion failed: %s", file, line, message); // Chosen instead of std::abort to satisfy Clang in CUDA mode during device // code pass. std::terminate(); } FMT_FUNC void throw_format_error(const char* message) { FMT_THROW(format_error(message)); } FMT_FUNC void format_error_code(detail::buffer& out, int error_code, string_view message) noexcept { // Report error code making sure that the output fits into // inline_buffer_size to avoid dynamic memory allocation and potential // bad_alloc. out.try_resize(0); static const char SEP[] = ": "; static const char ERROR_STR[] = "error "; // Subtract 2 to account for terminating null characters in SEP and ERROR_STR. size_t error_code_size = sizeof(SEP) + sizeof(ERROR_STR) - 2; auto abs_value = static_cast>(error_code); if (detail::is_negative(error_code)) { abs_value = 0 - abs_value; ++error_code_size; } error_code_size += detail::to_unsigned(detail::count_digits(abs_value)); auto it = buffer_appender(out); if (message.size() <= inline_buffer_size - error_code_size) format_to(it, FMT_STRING("{}{}"), message, SEP); format_to(it, FMT_STRING("{}{}"), ERROR_STR, error_code); FMT_ASSERT(out.size() <= inline_buffer_size, ""); } FMT_FUNC void report_error(format_func func, int error_code, const char* message) noexcept { memory_buffer full_message; func(full_message, error_code, message); // Don't use fwrite_fully because the latter may throw. if (std::fwrite(full_message.data(), full_message.size(), 1, stderr) > 0) std::fputc('\n', stderr); } // A wrapper around fwrite that throws on error. inline void fwrite_fully(const void* ptr, size_t size, size_t count, FILE* stream) { size_t written = std::fwrite(ptr, size, count, stream); if (written < count) FMT_THROW(system_error(errno, FMT_STRING("cannot write to file"))); } #ifndef FMT_STATIC_THOUSANDS_SEPARATOR template locale_ref::locale_ref(const Locale& loc) : locale_(&loc) { static_assert(std::is_same::value, ""); } template Locale locale_ref::get() const { static_assert(std::is_same::value, ""); return locale_ ? *static_cast(locale_) : std::locale(); } template FMT_FUNC auto thousands_sep_impl(locale_ref loc) -> thousands_sep_result { auto& facet = std::use_facet>(loc.get()); auto grouping = facet.grouping(); auto thousands_sep = grouping.empty() ? Char() : facet.thousands_sep(); return {std::move(grouping), thousands_sep}; } template FMT_FUNC Char decimal_point_impl(locale_ref loc) { return std::use_facet>(loc.get()) .decimal_point(); } #else template FMT_FUNC auto thousands_sep_impl(locale_ref) -> thousands_sep_result { return {"\03", FMT_STATIC_THOUSANDS_SEPARATOR}; } template FMT_FUNC Char decimal_point_impl(locale_ref) { return '.'; } #endif FMT_FUNC auto write_loc(appender out, loc_value value, const format_specs<>& specs, locale_ref loc) -> bool { #ifndef FMT_STATIC_THOUSANDS_SEPARATOR auto locale = loc.get(); // We cannot use the num_put facet because it may produce output in // a wrong encoding. using facet = format_facet; if (std::has_facet(locale)) return std::use_facet(locale).put(out, value, specs); return facet(locale).put(out, value, specs); #endif return false; } } // namespace detail template typename Locale::id format_facet::id; #ifndef FMT_STATIC_THOUSANDS_SEPARATOR template format_facet::format_facet(Locale& loc) { auto& numpunct = std::use_facet>(loc); grouping_ = numpunct.grouping(); if (!grouping_.empty()) separator_ = std::string(1, numpunct.thousands_sep()); } template <> FMT_API FMT_FUNC auto format_facet::do_put( appender out, loc_value val, const format_specs<>& specs) const -> bool { return val.visit( detail::loc_writer<>{out, specs, separator_, grouping_, decimal_point_}); } #endif FMT_FUNC std::system_error vsystem_error(int error_code, string_view fmt, format_args args) { auto ec = std::error_code(error_code, std::generic_category()); return std::system_error(ec, vformat(fmt, args)); } namespace detail { template inline bool operator==(basic_fp x, basic_fp y) { return x.f == y.f && x.e == y.e; } // Compilers should be able to optimize this into the ror instruction. FMT_CONSTEXPR inline uint32_t rotr(uint32_t n, uint32_t r) noexcept { r &= 31; return (n >> r) | (n << (32 - r)); } FMT_CONSTEXPR inline uint64_t rotr(uint64_t n, uint32_t r) noexcept { r &= 63; return (n >> r) | (n << (64 - r)); } // Implementation of Dragonbox algorithm: https://github.com/jk-jeon/dragonbox. namespace dragonbox { // Computes upper 64 bits of multiplication of a 32-bit unsigned integer and a // 64-bit unsigned integer. inline uint64_t umul96_upper64(uint32_t x, uint64_t y) noexcept { return umul128_upper64(static_cast(x) << 32, y); } // Computes lower 128 bits of multiplication of a 64-bit unsigned integer and a // 128-bit unsigned integer. inline uint128_fallback umul192_lower128(uint64_t x, uint128_fallback y) noexcept { uint64_t high = x * y.high(); uint128_fallback high_low = umul128(x, y.low()); return {high + high_low.high(), high_low.low()}; } // Computes lower 64 bits of multiplication of a 32-bit unsigned integer and a // 64-bit unsigned integer. inline uint64_t umul96_lower64(uint32_t x, uint64_t y) noexcept { return x * y; } // Various fast log computations. inline int floor_log10_pow2_minus_log10_4_over_3(int e) noexcept { FMT_ASSERT(e <= 2936 && e >= -2985, "too large exponent"); return (e * 631305 - 261663) >> 21; } FMT_INLINE_VARIABLE constexpr struct { uint32_t divisor; int shift_amount; } div_small_pow10_infos[] = {{10, 16}, {100, 16}}; // Replaces n by floor(n / pow(10, N)) returning true if and only if n is // divisible by pow(10, N). // Precondition: n <= pow(10, N + 1). template bool check_divisibility_and_divide_by_pow10(uint32_t& n) noexcept { // The numbers below are chosen such that: // 1. floor(n/d) = floor(nm / 2^k) where d=10 or d=100, // 2. nm mod 2^k < m if and only if n is divisible by d, // where m is magic_number, k is shift_amount // and d is divisor. // // Item 1 is a common technique of replacing division by a constant with // multiplication, see e.g. "Division by Invariant Integers Using // Multiplication" by Granlund and Montgomery (1994). magic_number (m) is set // to ceil(2^k/d) for large enough k. // The idea for item 2 originates from Schubfach. constexpr auto info = div_small_pow10_infos[N - 1]; FMT_ASSERT(n <= info.divisor * 10, "n is too large"); constexpr uint32_t magic_number = (1u << info.shift_amount) / info.divisor + 1; n *= magic_number; const uint32_t comparison_mask = (1u << info.shift_amount) - 1; bool result = (n & comparison_mask) < magic_number; n >>= info.shift_amount; return result; } // Computes floor(n / pow(10, N)) for small n and N. // Precondition: n <= pow(10, N + 1). template uint32_t small_division_by_pow10(uint32_t n) noexcept { constexpr auto info = div_small_pow10_infos[N - 1]; FMT_ASSERT(n <= info.divisor * 10, "n is too large"); constexpr uint32_t magic_number = (1u << info.shift_amount) / info.divisor + 1; return (n * magic_number) >> info.shift_amount; } // Computes floor(n / 10^(kappa + 1)) (float) inline uint32_t divide_by_10_to_kappa_plus_1(uint32_t n) noexcept { // 1374389535 = ceil(2^37/100) return static_cast((static_cast(n) * 1374389535) >> 37); } // Computes floor(n / 10^(kappa + 1)) (double) inline uint64_t divide_by_10_to_kappa_plus_1(uint64_t n) noexcept { // 2361183241434822607 = ceil(2^(64+7)/1000) return umul128_upper64(n, 2361183241434822607ull) >> 7; } // Various subroutines using pow10 cache template struct cache_accessor; template <> struct cache_accessor { using carrier_uint = float_info::carrier_uint; using cache_entry_type = uint64_t; static uint64_t get_cached_power(int k) noexcept { FMT_ASSERT(k >= float_info::min_k && k <= float_info::max_k, "k is out of range"); static constexpr const uint64_t pow10_significands[] = { 0x81ceb32c4b43fcf5, 0xa2425ff75e14fc32, 0xcad2f7f5359a3b3f, 0xfd87b5f28300ca0e, 0x9e74d1b791e07e49, 0xc612062576589ddb, 0xf79687aed3eec552, 0x9abe14cd44753b53, 0xc16d9a0095928a28, 0xf1c90080baf72cb2, 0x971da05074da7bef, 0xbce5086492111aeb, 0xec1e4a7db69561a6, 0x9392ee8e921d5d08, 0xb877aa3236a4b44a, 0xe69594bec44de15c, 0x901d7cf73ab0acda, 0xb424dc35095cd810, 0xe12e13424bb40e14, 0x8cbccc096f5088cc, 0xafebff0bcb24aaff, 0xdbe6fecebdedd5bf, 0x89705f4136b4a598, 0xabcc77118461cefd, 0xd6bf94d5e57a42bd, 0x8637bd05af6c69b6, 0xa7c5ac471b478424, 0xd1b71758e219652c, 0x83126e978d4fdf3c, 0xa3d70a3d70a3d70b, 0xcccccccccccccccd, 0x8000000000000000, 0xa000000000000000, 0xc800000000000000, 0xfa00000000000000, 0x9c40000000000000, 0xc350000000000000, 0xf424000000000000, 0x9896800000000000, 0xbebc200000000000, 0xee6b280000000000, 0x9502f90000000000, 0xba43b74000000000, 0xe8d4a51000000000, 0x9184e72a00000000, 0xb5e620f480000000, 0xe35fa931a0000000, 0x8e1bc9bf04000000, 0xb1a2bc2ec5000000, 0xde0b6b3a76400000, 0x8ac7230489e80000, 0xad78ebc5ac620000, 0xd8d726b7177a8000, 0x878678326eac9000, 0xa968163f0a57b400, 0xd3c21bcecceda100, 0x84595161401484a0, 0xa56fa5b99019a5c8, 0xcecb8f27f4200f3a, 0x813f3978f8940985, 0xa18f07d736b90be6, 0xc9f2c9cd04674edf, 0xfc6f7c4045812297, 0x9dc5ada82b70b59e, 0xc5371912364ce306, 0xf684df56c3e01bc7, 0x9a130b963a6c115d, 0xc097ce7bc90715b4, 0xf0bdc21abb48db21, 0x96769950b50d88f5, 0xbc143fa4e250eb32, 0xeb194f8e1ae525fe, 0x92efd1b8d0cf37bf, 0xb7abc627050305ae, 0xe596b7b0c643c71a, 0x8f7e32ce7bea5c70, 0xb35dbf821ae4f38c, 0xe0352f62a19e306f}; return pow10_significands[k - float_info::min_k]; } struct compute_mul_result { carrier_uint result; bool is_integer; }; struct compute_mul_parity_result { bool parity; bool is_integer; }; static compute_mul_result compute_mul( carrier_uint u, const cache_entry_type& cache) noexcept { auto r = umul96_upper64(u, cache); return {static_cast(r >> 32), static_cast(r) == 0}; } static uint32_t compute_delta(const cache_entry_type& cache, int beta) noexcept { return static_cast(cache >> (64 - 1 - beta)); } static compute_mul_parity_result compute_mul_parity( carrier_uint two_f, const cache_entry_type& cache, int beta) noexcept { FMT_ASSERT(beta >= 1, ""); FMT_ASSERT(beta < 64, ""); auto r = umul96_lower64(two_f, cache); return {((r >> (64 - beta)) & 1) != 0, static_cast(r >> (32 - beta)) == 0}; } static carrier_uint compute_left_endpoint_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept { return static_cast( (cache - (cache >> (num_significand_bits() + 2))) >> (64 - num_significand_bits() - 1 - beta)); } static carrier_uint compute_right_endpoint_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept { return static_cast( (cache + (cache >> (num_significand_bits() + 1))) >> (64 - num_significand_bits() - 1 - beta)); } static carrier_uint compute_round_up_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept { return (static_cast( cache >> (64 - num_significand_bits() - 2 - beta)) + 1) / 2; } }; template <> struct cache_accessor { using carrier_uint = float_info::carrier_uint; using cache_entry_type = uint128_fallback; static uint128_fallback get_cached_power(int k) noexcept { FMT_ASSERT(k >= float_info::min_k && k <= float_info::max_k, "k is out of range"); static constexpr const uint128_fallback pow10_significands[] = { #if FMT_USE_FULL_CACHE_DRAGONBOX {0xff77b1fcbebcdc4f, 0x25e8e89c13bb0f7b}, {0x9faacf3df73609b1, 0x77b191618c54e9ad}, {0xc795830d75038c1d, 0xd59df5b9ef6a2418}, {0xf97ae3d0d2446f25, 0x4b0573286b44ad1e}, {0x9becce62836ac577, 0x4ee367f9430aec33}, {0xc2e801fb244576d5, 0x229c41f793cda740}, {0xf3a20279ed56d48a, 0x6b43527578c11110}, {0x9845418c345644d6, 0x830a13896b78aaaa}, {0xbe5691ef416bd60c, 0x23cc986bc656d554}, {0xedec366b11c6cb8f, 0x2cbfbe86b7ec8aa9}, {0x94b3a202eb1c3f39, 0x7bf7d71432f3d6aa}, {0xb9e08a83a5e34f07, 0xdaf5ccd93fb0cc54}, {0xe858ad248f5c22c9, 0xd1b3400f8f9cff69}, {0x91376c36d99995be, 0x23100809b9c21fa2}, {0xb58547448ffffb2d, 0xabd40a0c2832a78b}, {0xe2e69915b3fff9f9, 0x16c90c8f323f516d}, {0x8dd01fad907ffc3b, 0xae3da7d97f6792e4}, {0xb1442798f49ffb4a, 0x99cd11cfdf41779d}, {0xdd95317f31c7fa1d, 0x40405643d711d584}, {0x8a7d3eef7f1cfc52, 0x482835ea666b2573}, {0xad1c8eab5ee43b66, 0xda3243650005eed0}, {0xd863b256369d4a40, 0x90bed43e40076a83}, {0x873e4f75e2224e68, 0x5a7744a6e804a292}, {0xa90de3535aaae202, 0x711515d0a205cb37}, {0xd3515c2831559a83, 0x0d5a5b44ca873e04}, {0x8412d9991ed58091, 0xe858790afe9486c3}, {0xa5178fff668ae0b6, 0x626e974dbe39a873}, {0xce5d73ff402d98e3, 0xfb0a3d212dc81290}, {0x80fa687f881c7f8e, 0x7ce66634bc9d0b9a}, {0xa139029f6a239f72, 0x1c1fffc1ebc44e81}, {0xc987434744ac874e, 0xa327ffb266b56221}, {0xfbe9141915d7a922, 0x4bf1ff9f0062baa9}, {0x9d71ac8fada6c9b5, 0x6f773fc3603db4aa}, {0xc4ce17b399107c22, 0xcb550fb4384d21d4}, {0xf6019da07f549b2b, 0x7e2a53a146606a49}, {0x99c102844f94e0fb, 0x2eda7444cbfc426e}, {0xc0314325637a1939, 0xfa911155fefb5309}, {0xf03d93eebc589f88, 0x793555ab7eba27cb}, {0x96267c7535b763b5, 0x4bc1558b2f3458df}, {0xbbb01b9283253ca2, 0x9eb1aaedfb016f17}, {0xea9c227723ee8bcb, 0x465e15a979c1cadd}, {0x92a1958a7675175f, 0x0bfacd89ec191eca}, {0xb749faed14125d36, 0xcef980ec671f667c}, {0xe51c79a85916f484, 0x82b7e12780e7401b}, {0x8f31cc0937ae58d2, 0xd1b2ecb8b0908811}, {0xb2fe3f0b8599ef07, 0x861fa7e6dcb4aa16}, {0xdfbdcece67006ac9, 0x67a791e093e1d49b}, {0x8bd6a141006042bd, 0xe0c8bb2c5c6d24e1}, {0xaecc49914078536d, 0x58fae9f773886e19}, {0xda7f5bf590966848, 0xaf39a475506a899f}, {0x888f99797a5e012d, 0x6d8406c952429604}, {0xaab37fd7d8f58178, 0xc8e5087ba6d33b84}, {0xd5605fcdcf32e1d6, 0xfb1e4a9a90880a65}, {0x855c3be0a17fcd26, 0x5cf2eea09a550680}, {0xa6b34ad8c9dfc06f, 0xf42faa48c0ea481f}, {0xd0601d8efc57b08b, 0xf13b94daf124da27}, {0x823c12795db6ce57, 0x76c53d08d6b70859}, {0xa2cb1717b52481ed, 0x54768c4b0c64ca6f}, {0xcb7ddcdda26da268, 0xa9942f5dcf7dfd0a}, {0xfe5d54150b090b02, 0xd3f93b35435d7c4d}, {0x9efa548d26e5a6e1, 0xc47bc5014a1a6db0}, {0xc6b8e9b0709f109a, 0x359ab6419ca1091c}, {0xf867241c8cc6d4c0, 0xc30163d203c94b63}, {0x9b407691d7fc44f8, 0x79e0de63425dcf1e}, {0xc21094364dfb5636, 0x985915fc12f542e5}, {0xf294b943e17a2bc4, 0x3e6f5b7b17b2939e}, {0x979cf3ca6cec5b5a, 0xa705992ceecf9c43}, {0xbd8430bd08277231, 0x50c6ff782a838354}, {0xece53cec4a314ebd, 0xa4f8bf5635246429}, {0x940f4613ae5ed136, 0x871b7795e136be9a}, {0xb913179899f68584, 0x28e2557b59846e40}, {0xe757dd7ec07426e5, 0x331aeada2fe589d0}, {0x9096ea6f3848984f, 0x3ff0d2c85def7622}, {0xb4bca50b065abe63, 0x0fed077a756b53aa}, {0xe1ebce4dc7f16dfb, 0xd3e8495912c62895}, {0x8d3360f09cf6e4bd, 0x64712dd7abbbd95d}, {0xb080392cc4349dec, 0xbd8d794d96aacfb4}, {0xdca04777f541c567, 0xecf0d7a0fc5583a1}, {0x89e42caaf9491b60, 0xf41686c49db57245}, {0xac5d37d5b79b6239, 0x311c2875c522ced6}, {0xd77485cb25823ac7, 0x7d633293366b828c}, {0x86a8d39ef77164bc, 0xae5dff9c02033198}, {0xa8530886b54dbdeb, 0xd9f57f830283fdfd}, {0xd267caa862a12d66, 0xd072df63c324fd7c}, {0x8380dea93da4bc60, 0x4247cb9e59f71e6e}, {0xa46116538d0deb78, 0x52d9be85f074e609}, {0xcd795be870516656, 0x67902e276c921f8c}, {0x806bd9714632dff6, 0x00ba1cd8a3db53b7}, {0xa086cfcd97bf97f3, 0x80e8a40eccd228a5}, {0xc8a883c0fdaf7df0, 0x6122cd128006b2ce}, {0xfad2a4b13d1b5d6c, 0x796b805720085f82}, {0x9cc3a6eec6311a63, 0xcbe3303674053bb1}, {0xc3f490aa77bd60fc, 0xbedbfc4411068a9d}, {0xf4f1b4d515acb93b, 0xee92fb5515482d45}, {0x991711052d8bf3c5, 0x751bdd152d4d1c4b}, {0xbf5cd54678eef0b6, 0xd262d45a78a0635e}, {0xef340a98172aace4, 0x86fb897116c87c35}, {0x9580869f0e7aac0e, 0xd45d35e6ae3d4da1}, {0xbae0a846d2195712, 0x8974836059cca10a}, {0xe998d258869facd7, 0x2bd1a438703fc94c}, {0x91ff83775423cc06, 0x7b6306a34627ddd0}, {0xb67f6455292cbf08, 0x1a3bc84c17b1d543}, {0xe41f3d6a7377eeca, 0x20caba5f1d9e4a94}, {0x8e938662882af53e, 0x547eb47b7282ee9d}, {0xb23867fb2a35b28d, 0xe99e619a4f23aa44}, {0xdec681f9f4c31f31, 0x6405fa00e2ec94d5}, {0x8b3c113c38f9f37e, 0xde83bc408dd3dd05}, {0xae0b158b4738705e, 0x9624ab50b148d446}, {0xd98ddaee19068c76, 0x3badd624dd9b0958}, {0x87f8a8d4cfa417c9, 0xe54ca5d70a80e5d7}, {0xa9f6d30a038d1dbc, 0x5e9fcf4ccd211f4d}, {0xd47487cc8470652b, 0x7647c32000696720}, {0x84c8d4dfd2c63f3b, 0x29ecd9f40041e074}, {0xa5fb0a17c777cf09, 0xf468107100525891}, {0xcf79cc9db955c2cc, 0x7182148d4066eeb5}, {0x81ac1fe293d599bf, 0xc6f14cd848405531}, {0xa21727db38cb002f, 0xb8ada00e5a506a7d}, {0xca9cf1d206fdc03b, 0xa6d90811f0e4851d}, {0xfd442e4688bd304a, 0x908f4a166d1da664}, {0x9e4a9cec15763e2e, 0x9a598e4e043287ff}, {0xc5dd44271ad3cdba, 0x40eff1e1853f29fe}, {0xf7549530e188c128, 0xd12bee59e68ef47d}, {0x9a94dd3e8cf578b9, 0x82bb74f8301958cf}, {0xc13a148e3032d6e7, 0xe36a52363c1faf02}, {0xf18899b1bc3f8ca1, 0xdc44e6c3cb279ac2}, {0x96f5600f15a7b7e5, 0x29ab103a5ef8c0ba}, {0xbcb2b812db11a5de, 0x7415d448f6b6f0e8}, {0xebdf661791d60f56, 0x111b495b3464ad22}, {0x936b9fcebb25c995, 0xcab10dd900beec35}, {0xb84687c269ef3bfb, 0x3d5d514f40eea743}, {0xe65829b3046b0afa, 0x0cb4a5a3112a5113}, {0x8ff71a0fe2c2e6dc, 0x47f0e785eaba72ac}, {0xb3f4e093db73a093, 0x59ed216765690f57}, {0xe0f218b8d25088b8, 0x306869c13ec3532d}, {0x8c974f7383725573, 0x1e414218c73a13fc}, {0xafbd2350644eeacf, 0xe5d1929ef90898fb}, {0xdbac6c247d62a583, 0xdf45f746b74abf3a}, {0x894bc396ce5da772, 0x6b8bba8c328eb784}, {0xab9eb47c81f5114f, 0x066ea92f3f326565}, {0xd686619ba27255a2, 0xc80a537b0efefebe}, {0x8613fd0145877585, 0xbd06742ce95f5f37}, {0xa798fc4196e952e7, 0x2c48113823b73705}, {0xd17f3b51fca3a7a0, 0xf75a15862ca504c6}, {0x82ef85133de648c4, 0x9a984d73dbe722fc}, {0xa3ab66580d5fdaf5, 0xc13e60d0d2e0ebbb}, {0xcc963fee10b7d1b3, 0x318df905079926a9}, {0xffbbcfe994e5c61f, 0xfdf17746497f7053}, {0x9fd561f1fd0f9bd3, 0xfeb6ea8bedefa634}, {0xc7caba6e7c5382c8, 0xfe64a52ee96b8fc1}, {0xf9bd690a1b68637b, 0x3dfdce7aa3c673b1}, {0x9c1661a651213e2d, 0x06bea10ca65c084f}, {0xc31bfa0fe5698db8, 0x486e494fcff30a63}, {0xf3e2f893dec3f126, 0x5a89dba3c3efccfb}, {0x986ddb5c6b3a76b7, 0xf89629465a75e01d}, {0xbe89523386091465, 0xf6bbb397f1135824}, {0xee2ba6c0678b597f, 0x746aa07ded582e2d}, {0x94db483840b717ef, 0xa8c2a44eb4571cdd}, {0xba121a4650e4ddeb, 0x92f34d62616ce414}, {0xe896a0d7e51e1566, 0x77b020baf9c81d18}, {0x915e2486ef32cd60, 0x0ace1474dc1d122f}, {0xb5b5ada8aaff80b8, 0x0d819992132456bb}, {0xe3231912d5bf60e6, 0x10e1fff697ed6c6a}, {0x8df5efabc5979c8f, 0xca8d3ffa1ef463c2}, {0xb1736b96b6fd83b3, 0xbd308ff8a6b17cb3}, {0xddd0467c64bce4a0, 0xac7cb3f6d05ddbdf}, {0x8aa22c0dbef60ee4, 0x6bcdf07a423aa96c}, {0xad4ab7112eb3929d, 0x86c16c98d2c953c7}, {0xd89d64d57a607744, 0xe871c7bf077ba8b8}, {0x87625f056c7c4a8b, 0x11471cd764ad4973}, {0xa93af6c6c79b5d2d, 0xd598e40d3dd89bd0}, {0xd389b47879823479, 0x4aff1d108d4ec2c4}, {0x843610cb4bf160cb, 0xcedf722a585139bb}, {0xa54394fe1eedb8fe, 0xc2974eb4ee658829}, {0xce947a3da6a9273e, 0x733d226229feea33}, {0x811ccc668829b887, 0x0806357d5a3f5260}, {0xa163ff802a3426a8, 0xca07c2dcb0cf26f8}, {0xc9bcff6034c13052, 0xfc89b393dd02f0b6}, {0xfc2c3f3841f17c67, 0xbbac2078d443ace3}, {0x9d9ba7832936edc0, 0xd54b944b84aa4c0e}, {0xc5029163f384a931, 0x0a9e795e65d4df12}, {0xf64335bcf065d37d, 0x4d4617b5ff4a16d6}, {0x99ea0196163fa42e, 0x504bced1bf8e4e46}, {0xc06481fb9bcf8d39, 0xe45ec2862f71e1d7}, {0xf07da27a82c37088, 0x5d767327bb4e5a4d}, {0x964e858c91ba2655, 0x3a6a07f8d510f870}, {0xbbe226efb628afea, 0x890489f70a55368c}, {0xeadab0aba3b2dbe5, 0x2b45ac74ccea842f}, {0x92c8ae6b464fc96f, 0x3b0b8bc90012929e}, {0xb77ada0617e3bbcb, 0x09ce6ebb40173745}, {0xe55990879ddcaabd, 0xcc420a6a101d0516}, {0x8f57fa54c2a9eab6, 0x9fa946824a12232e}, {0xb32df8e9f3546564, 0x47939822dc96abfa}, {0xdff9772470297ebd, 0x59787e2b93bc56f8}, {0x8bfbea76c619ef36, 0x57eb4edb3c55b65b}, {0xaefae51477a06b03, 0xede622920b6b23f2}, {0xdab99e59958885c4, 0xe95fab368e45ecee}, {0x88b402f7fd75539b, 0x11dbcb0218ebb415}, {0xaae103b5fcd2a881, 0xd652bdc29f26a11a}, {0xd59944a37c0752a2, 0x4be76d3346f04960}, {0x857fcae62d8493a5, 0x6f70a4400c562ddc}, {0xa6dfbd9fb8e5b88e, 0xcb4ccd500f6bb953}, {0xd097ad07a71f26b2, 0x7e2000a41346a7a8}, {0x825ecc24c873782f, 0x8ed400668c0c28c9}, {0xa2f67f2dfa90563b, 0x728900802f0f32fb}, {0xcbb41ef979346bca, 0x4f2b40a03ad2ffba}, {0xfea126b7d78186bc, 0xe2f610c84987bfa9}, {0x9f24b832e6b0f436, 0x0dd9ca7d2df4d7ca}, {0xc6ede63fa05d3143, 0x91503d1c79720dbc}, {0xf8a95fcf88747d94, 0x75a44c6397ce912b}, {0x9b69dbe1b548ce7c, 0xc986afbe3ee11abb}, {0xc24452da229b021b, 0xfbe85badce996169}, {0xf2d56790ab41c2a2, 0xfae27299423fb9c4}, {0x97c560ba6b0919a5, 0xdccd879fc967d41b}, {0xbdb6b8e905cb600f, 0x5400e987bbc1c921}, {0xed246723473e3813, 0x290123e9aab23b69}, {0x9436c0760c86e30b, 0xf9a0b6720aaf6522}, {0xb94470938fa89bce, 0xf808e40e8d5b3e6a}, {0xe7958cb87392c2c2, 0xb60b1d1230b20e05}, {0x90bd77f3483bb9b9, 0xb1c6f22b5e6f48c3}, {0xb4ecd5f01a4aa828, 0x1e38aeb6360b1af4}, {0xe2280b6c20dd5232, 0x25c6da63c38de1b1}, {0x8d590723948a535f, 0x579c487e5a38ad0f}, {0xb0af48ec79ace837, 0x2d835a9df0c6d852}, {0xdcdb1b2798182244, 0xf8e431456cf88e66}, {0x8a08f0f8bf0f156b, 0x1b8e9ecb641b5900}, {0xac8b2d36eed2dac5, 0xe272467e3d222f40}, {0xd7adf884aa879177, 0x5b0ed81dcc6abb10}, {0x86ccbb52ea94baea, 0x98e947129fc2b4ea}, {0xa87fea27a539e9a5, 0x3f2398d747b36225}, {0xd29fe4b18e88640e, 0x8eec7f0d19a03aae}, {0x83a3eeeef9153e89, 0x1953cf68300424ad}, {0xa48ceaaab75a8e2b, 0x5fa8c3423c052dd8}, {0xcdb02555653131b6, 0x3792f412cb06794e}, {0x808e17555f3ebf11, 0xe2bbd88bbee40bd1}, {0xa0b19d2ab70e6ed6, 0x5b6aceaeae9d0ec5}, {0xc8de047564d20a8b, 0xf245825a5a445276}, {0xfb158592be068d2e, 0xeed6e2f0f0d56713}, {0x9ced737bb6c4183d, 0x55464dd69685606c}, {0xc428d05aa4751e4c, 0xaa97e14c3c26b887}, {0xf53304714d9265df, 0xd53dd99f4b3066a9}, {0x993fe2c6d07b7fab, 0xe546a8038efe402a}, {0xbf8fdb78849a5f96, 0xde98520472bdd034}, {0xef73d256a5c0f77c, 0x963e66858f6d4441}, {0x95a8637627989aad, 0xdde7001379a44aa9}, {0xbb127c53b17ec159, 0x5560c018580d5d53}, {0xe9d71b689dde71af, 0xaab8f01e6e10b4a7}, {0x9226712162ab070d, 0xcab3961304ca70e9}, {0xb6b00d69bb55c8d1, 0x3d607b97c5fd0d23}, {0xe45c10c42a2b3b05, 0x8cb89a7db77c506b}, {0x8eb98a7a9a5b04e3, 0x77f3608e92adb243}, {0xb267ed1940f1c61c, 0x55f038b237591ed4}, {0xdf01e85f912e37a3, 0x6b6c46dec52f6689}, {0x8b61313bbabce2c6, 0x2323ac4b3b3da016}, {0xae397d8aa96c1b77, 0xabec975e0a0d081b}, {0xd9c7dced53c72255, 0x96e7bd358c904a22}, {0x881cea14545c7575, 0x7e50d64177da2e55}, {0xaa242499697392d2, 0xdde50bd1d5d0b9ea}, {0xd4ad2dbfc3d07787, 0x955e4ec64b44e865}, {0x84ec3c97da624ab4, 0xbd5af13bef0b113f}, {0xa6274bbdd0fadd61, 0xecb1ad8aeacdd58f}, {0xcfb11ead453994ba, 0x67de18eda5814af3}, {0x81ceb32c4b43fcf4, 0x80eacf948770ced8}, {0xa2425ff75e14fc31, 0xa1258379a94d028e}, {0xcad2f7f5359a3b3e, 0x096ee45813a04331}, {0xfd87b5f28300ca0d, 0x8bca9d6e188853fd}, {0x9e74d1b791e07e48, 0x775ea264cf55347e}, {0xc612062576589dda, 0x95364afe032a819e}, {0xf79687aed3eec551, 0x3a83ddbd83f52205}, {0x9abe14cd44753b52, 0xc4926a9672793543}, {0xc16d9a0095928a27, 0x75b7053c0f178294}, {0xf1c90080baf72cb1, 0x5324c68b12dd6339}, {0x971da05074da7bee, 0xd3f6fc16ebca5e04}, {0xbce5086492111aea, 0x88f4bb1ca6bcf585}, {0xec1e4a7db69561a5, 0x2b31e9e3d06c32e6}, {0x9392ee8e921d5d07, 0x3aff322e62439fd0}, {0xb877aa3236a4b449, 0x09befeb9fad487c3}, {0xe69594bec44de15b, 0x4c2ebe687989a9b4}, {0x901d7cf73ab0acd9, 0x0f9d37014bf60a11}, {0xb424dc35095cd80f, 0x538484c19ef38c95}, {0xe12e13424bb40e13, 0x2865a5f206b06fba}, {0x8cbccc096f5088cb, 0xf93f87b7442e45d4}, {0xafebff0bcb24aafe, 0xf78f69a51539d749}, {0xdbe6fecebdedd5be, 0xb573440e5a884d1c}, {0x89705f4136b4a597, 0x31680a88f8953031}, {0xabcc77118461cefc, 0xfdc20d2b36ba7c3e}, {0xd6bf94d5e57a42bc, 0x3d32907604691b4d}, {0x8637bd05af6c69b5, 0xa63f9a49c2c1b110}, {0xa7c5ac471b478423, 0x0fcf80dc33721d54}, {0xd1b71758e219652b, 0xd3c36113404ea4a9}, {0x83126e978d4fdf3b, 0x645a1cac083126ea}, {0xa3d70a3d70a3d70a, 0x3d70a3d70a3d70a4}, {0xcccccccccccccccc, 0xcccccccccccccccd}, {0x8000000000000000, 0x0000000000000000}, {0xa000000000000000, 0x0000000000000000}, {0xc800000000000000, 0x0000000000000000}, {0xfa00000000000000, 0x0000000000000000}, {0x9c40000000000000, 0x0000000000000000}, {0xc350000000000000, 0x0000000000000000}, {0xf424000000000000, 0x0000000000000000}, {0x9896800000000000, 0x0000000000000000}, {0xbebc200000000000, 0x0000000000000000}, {0xee6b280000000000, 0x0000000000000000}, {0x9502f90000000000, 0x0000000000000000}, {0xba43b74000000000, 0x0000000000000000}, {0xe8d4a51000000000, 0x0000000000000000}, {0x9184e72a00000000, 0x0000000000000000}, {0xb5e620f480000000, 0x0000000000000000}, {0xe35fa931a0000000, 0x0000000000000000}, {0x8e1bc9bf04000000, 0x0000000000000000}, {0xb1a2bc2ec5000000, 0x0000000000000000}, {0xde0b6b3a76400000, 0x0000000000000000}, {0x8ac7230489e80000, 0x0000000000000000}, {0xad78ebc5ac620000, 0x0000000000000000}, {0xd8d726b7177a8000, 0x0000000000000000}, {0x878678326eac9000, 0x0000000000000000}, {0xa968163f0a57b400, 0x0000000000000000}, {0xd3c21bcecceda100, 0x0000000000000000}, {0x84595161401484a0, 0x0000000000000000}, {0xa56fa5b99019a5c8, 0x0000000000000000}, {0xcecb8f27f4200f3a, 0x0000000000000000}, {0x813f3978f8940984, 0x4000000000000000}, {0xa18f07d736b90be5, 0x5000000000000000}, {0xc9f2c9cd04674ede, 0xa400000000000000}, {0xfc6f7c4045812296, 0x4d00000000000000}, {0x9dc5ada82b70b59d, 0xf020000000000000}, {0xc5371912364ce305, 0x6c28000000000000}, {0xf684df56c3e01bc6, 0xc732000000000000}, {0x9a130b963a6c115c, 0x3c7f400000000000}, {0xc097ce7bc90715b3, 0x4b9f100000000000}, {0xf0bdc21abb48db20, 0x1e86d40000000000}, {0x96769950b50d88f4, 0x1314448000000000}, {0xbc143fa4e250eb31, 0x17d955a000000000}, {0xeb194f8e1ae525fd, 0x5dcfab0800000000}, {0x92efd1b8d0cf37be, 0x5aa1cae500000000}, {0xb7abc627050305ad, 0xf14a3d9e40000000}, {0xe596b7b0c643c719, 0x6d9ccd05d0000000}, {0x8f7e32ce7bea5c6f, 0xe4820023a2000000}, {0xb35dbf821ae4f38b, 0xdda2802c8a800000}, {0xe0352f62a19e306e, 0xd50b2037ad200000}, {0x8c213d9da502de45, 0x4526f422cc340000}, {0xaf298d050e4395d6, 0x9670b12b7f410000}, {0xdaf3f04651d47b4c, 0x3c0cdd765f114000}, {0x88d8762bf324cd0f, 0xa5880a69fb6ac800}, {0xab0e93b6efee0053, 0x8eea0d047a457a00}, {0xd5d238a4abe98068, 0x72a4904598d6d880}, {0x85a36366eb71f041, 0x47a6da2b7f864750}, {0xa70c3c40a64e6c51, 0x999090b65f67d924}, {0xd0cf4b50cfe20765, 0xfff4b4e3f741cf6d}, {0x82818f1281ed449f, 0xbff8f10e7a8921a5}, {0xa321f2d7226895c7, 0xaff72d52192b6a0e}, {0xcbea6f8ceb02bb39, 0x9bf4f8a69f764491}, {0xfee50b7025c36a08, 0x02f236d04753d5b5}, {0x9f4f2726179a2245, 0x01d762422c946591}, {0xc722f0ef9d80aad6, 0x424d3ad2b7b97ef6}, {0xf8ebad2b84e0d58b, 0xd2e0898765a7deb3}, {0x9b934c3b330c8577, 0x63cc55f49f88eb30}, {0xc2781f49ffcfa6d5, 0x3cbf6b71c76b25fc}, {0xf316271c7fc3908a, 0x8bef464e3945ef7b}, {0x97edd871cfda3a56, 0x97758bf0e3cbb5ad}, {0xbde94e8e43d0c8ec, 0x3d52eeed1cbea318}, {0xed63a231d4c4fb27, 0x4ca7aaa863ee4bde}, {0x945e455f24fb1cf8, 0x8fe8caa93e74ef6b}, {0xb975d6b6ee39e436, 0xb3e2fd538e122b45}, {0xe7d34c64a9c85d44, 0x60dbbca87196b617}, {0x90e40fbeea1d3a4a, 0xbc8955e946fe31ce}, {0xb51d13aea4a488dd, 0x6babab6398bdbe42}, {0xe264589a4dcdab14, 0xc696963c7eed2dd2}, {0x8d7eb76070a08aec, 0xfc1e1de5cf543ca3}, {0xb0de65388cc8ada8, 0x3b25a55f43294bcc}, {0xdd15fe86affad912, 0x49ef0eb713f39ebf}, {0x8a2dbf142dfcc7ab, 0x6e3569326c784338}, {0xacb92ed9397bf996, 0x49c2c37f07965405}, {0xd7e77a8f87daf7fb, 0xdc33745ec97be907}, {0x86f0ac99b4e8dafd, 0x69a028bb3ded71a4}, {0xa8acd7c0222311bc, 0xc40832ea0d68ce0d}, {0xd2d80db02aabd62b, 0xf50a3fa490c30191}, {0x83c7088e1aab65db, 0x792667c6da79e0fb}, {0xa4b8cab1a1563f52, 0x577001b891185939}, {0xcde6fd5e09abcf26, 0xed4c0226b55e6f87}, {0x80b05e5ac60b6178, 0x544f8158315b05b5}, {0xa0dc75f1778e39d6, 0x696361ae3db1c722}, {0xc913936dd571c84c, 0x03bc3a19cd1e38ea}, {0xfb5878494ace3a5f, 0x04ab48a04065c724}, {0x9d174b2dcec0e47b, 0x62eb0d64283f9c77}, {0xc45d1df942711d9a, 0x3ba5d0bd324f8395}, {0xf5746577930d6500, 0xca8f44ec7ee3647a}, {0x9968bf6abbe85f20, 0x7e998b13cf4e1ecc}, {0xbfc2ef456ae276e8, 0x9e3fedd8c321a67f}, {0xefb3ab16c59b14a2, 0xc5cfe94ef3ea101f}, {0x95d04aee3b80ece5, 0xbba1f1d158724a13}, {0xbb445da9ca61281f, 0x2a8a6e45ae8edc98}, {0xea1575143cf97226, 0xf52d09d71a3293be}, {0x924d692ca61be758, 0x593c2626705f9c57}, {0xb6e0c377cfa2e12e, 0x6f8b2fb00c77836d}, {0xe498f455c38b997a, 0x0b6dfb9c0f956448}, {0x8edf98b59a373fec, 0x4724bd4189bd5ead}, {0xb2977ee300c50fe7, 0x58edec91ec2cb658}, {0xdf3d5e9bc0f653e1, 0x2f2967b66737e3ee}, {0x8b865b215899f46c, 0xbd79e0d20082ee75}, {0xae67f1e9aec07187, 0xecd8590680a3aa12}, {0xda01ee641a708de9, 0xe80e6f4820cc9496}, {0x884134fe908658b2, 0x3109058d147fdcde}, {0xaa51823e34a7eede, 0xbd4b46f0599fd416}, {0xd4e5e2cdc1d1ea96, 0x6c9e18ac7007c91b}, {0x850fadc09923329e, 0x03e2cf6bc604ddb1}, {0xa6539930bf6bff45, 0x84db8346b786151d}, {0xcfe87f7cef46ff16, 0xe612641865679a64}, {0x81f14fae158c5f6e, 0x4fcb7e8f3f60c07f}, {0xa26da3999aef7749, 0xe3be5e330f38f09e}, {0xcb090c8001ab551c, 0x5cadf5bfd3072cc6}, {0xfdcb4fa002162a63, 0x73d9732fc7c8f7f7}, {0x9e9f11c4014dda7e, 0x2867e7fddcdd9afb}, {0xc646d63501a1511d, 0xb281e1fd541501b9}, {0xf7d88bc24209a565, 0x1f225a7ca91a4227}, {0x9ae757596946075f, 0x3375788de9b06959}, {0xc1a12d2fc3978937, 0x0052d6b1641c83af}, {0xf209787bb47d6b84, 0xc0678c5dbd23a49b}, {0x9745eb4d50ce6332, 0xf840b7ba963646e1}, {0xbd176620a501fbff, 0xb650e5a93bc3d899}, {0xec5d3fa8ce427aff, 0xa3e51f138ab4cebf}, {0x93ba47c980e98cdf, 0xc66f336c36b10138}, {0xb8a8d9bbe123f017, 0xb80b0047445d4185}, {0xe6d3102ad96cec1d, 0xa60dc059157491e6}, {0x9043ea1ac7e41392, 0x87c89837ad68db30}, {0xb454e4a179dd1877, 0x29babe4598c311fc}, {0xe16a1dc9d8545e94, 0xf4296dd6fef3d67b}, {0x8ce2529e2734bb1d, 0x1899e4a65f58660d}, {0xb01ae745b101e9e4, 0x5ec05dcff72e7f90}, {0xdc21a1171d42645d, 0x76707543f4fa1f74}, {0x899504ae72497eba, 0x6a06494a791c53a9}, {0xabfa45da0edbde69, 0x0487db9d17636893}, {0xd6f8d7509292d603, 0x45a9d2845d3c42b7}, {0x865b86925b9bc5c2, 0x0b8a2392ba45a9b3}, {0xa7f26836f282b732, 0x8e6cac7768d7141f}, {0xd1ef0244af2364ff, 0x3207d795430cd927}, {0x8335616aed761f1f, 0x7f44e6bd49e807b9}, {0xa402b9c5a8d3a6e7, 0x5f16206c9c6209a7}, {0xcd036837130890a1, 0x36dba887c37a8c10}, {0x802221226be55a64, 0xc2494954da2c978a}, {0xa02aa96b06deb0fd, 0xf2db9baa10b7bd6d}, {0xc83553c5c8965d3d, 0x6f92829494e5acc8}, {0xfa42a8b73abbf48c, 0xcb772339ba1f17fa}, {0x9c69a97284b578d7, 0xff2a760414536efc}, {0xc38413cf25e2d70d, 0xfef5138519684abb}, {0xf46518c2ef5b8cd1, 0x7eb258665fc25d6a}, {0x98bf2f79d5993802, 0xef2f773ffbd97a62}, {0xbeeefb584aff8603, 0xaafb550ffacfd8fb}, {0xeeaaba2e5dbf6784, 0x95ba2a53f983cf39}, {0x952ab45cfa97a0b2, 0xdd945a747bf26184}, {0xba756174393d88df, 0x94f971119aeef9e5}, {0xe912b9d1478ceb17, 0x7a37cd5601aab85e}, {0x91abb422ccb812ee, 0xac62e055c10ab33b}, {0xb616a12b7fe617aa, 0x577b986b314d600a}, {0xe39c49765fdf9d94, 0xed5a7e85fda0b80c}, {0x8e41ade9fbebc27d, 0x14588f13be847308}, {0xb1d219647ae6b31c, 0x596eb2d8ae258fc9}, {0xde469fbd99a05fe3, 0x6fca5f8ed9aef3bc}, {0x8aec23d680043bee, 0x25de7bb9480d5855}, {0xada72ccc20054ae9, 0xaf561aa79a10ae6b}, {0xd910f7ff28069da4, 0x1b2ba1518094da05}, {0x87aa9aff79042286, 0x90fb44d2f05d0843}, {0xa99541bf57452b28, 0x353a1607ac744a54}, {0xd3fa922f2d1675f2, 0x42889b8997915ce9}, {0x847c9b5d7c2e09b7, 0x69956135febada12}, {0xa59bc234db398c25, 0x43fab9837e699096}, {0xcf02b2c21207ef2e, 0x94f967e45e03f4bc}, {0x8161afb94b44f57d, 0x1d1be0eebac278f6}, {0xa1ba1ba79e1632dc, 0x6462d92a69731733}, {0xca28a291859bbf93, 0x7d7b8f7503cfdcff}, {0xfcb2cb35e702af78, 0x5cda735244c3d43f}, {0x9defbf01b061adab, 0x3a0888136afa64a8}, {0xc56baec21c7a1916, 0x088aaa1845b8fdd1}, {0xf6c69a72a3989f5b, 0x8aad549e57273d46}, {0x9a3c2087a63f6399, 0x36ac54e2f678864c}, {0xc0cb28a98fcf3c7f, 0x84576a1bb416a7de}, {0xf0fdf2d3f3c30b9f, 0x656d44a2a11c51d6}, {0x969eb7c47859e743, 0x9f644ae5a4b1b326}, {0xbc4665b596706114, 0x873d5d9f0dde1fef}, {0xeb57ff22fc0c7959, 0xa90cb506d155a7eb}, {0x9316ff75dd87cbd8, 0x09a7f12442d588f3}, {0xb7dcbf5354e9bece, 0x0c11ed6d538aeb30}, {0xe5d3ef282a242e81, 0x8f1668c8a86da5fb}, {0x8fa475791a569d10, 0xf96e017d694487bd}, {0xb38d92d760ec4455, 0x37c981dcc395a9ad}, {0xe070f78d3927556a, 0x85bbe253f47b1418}, {0x8c469ab843b89562, 0x93956d7478ccec8f}, {0xaf58416654a6babb, 0x387ac8d1970027b3}, {0xdb2e51bfe9d0696a, 0x06997b05fcc0319f}, {0x88fcf317f22241e2, 0x441fece3bdf81f04}, {0xab3c2fddeeaad25a, 0xd527e81cad7626c4}, {0xd60b3bd56a5586f1, 0x8a71e223d8d3b075}, {0x85c7056562757456, 0xf6872d5667844e4a}, {0xa738c6bebb12d16c, 0xb428f8ac016561dc}, {0xd106f86e69d785c7, 0xe13336d701beba53}, {0x82a45b450226b39c, 0xecc0024661173474}, {0xa34d721642b06084, 0x27f002d7f95d0191}, {0xcc20ce9bd35c78a5, 0x31ec038df7b441f5}, {0xff290242c83396ce, 0x7e67047175a15272}, {0x9f79a169bd203e41, 0x0f0062c6e984d387}, {0xc75809c42c684dd1, 0x52c07b78a3e60869}, {0xf92e0c3537826145, 0xa7709a56ccdf8a83}, {0x9bbcc7a142b17ccb, 0x88a66076400bb692}, {0xc2abf989935ddbfe, 0x6acff893d00ea436}, {0xf356f7ebf83552fe, 0x0583f6b8c4124d44}, {0x98165af37b2153de, 0xc3727a337a8b704b}, {0xbe1bf1b059e9a8d6, 0x744f18c0592e4c5d}, {0xeda2ee1c7064130c, 0x1162def06f79df74}, {0x9485d4d1c63e8be7, 0x8addcb5645ac2ba9}, {0xb9a74a0637ce2ee1, 0x6d953e2bd7173693}, {0xe8111c87c5c1ba99, 0xc8fa8db6ccdd0438}, {0x910ab1d4db9914a0, 0x1d9c9892400a22a3}, {0xb54d5e4a127f59c8, 0x2503beb6d00cab4c}, {0xe2a0b5dc971f303a, 0x2e44ae64840fd61e}, {0x8da471a9de737e24, 0x5ceaecfed289e5d3}, {0xb10d8e1456105dad, 0x7425a83e872c5f48}, {0xdd50f1996b947518, 0xd12f124e28f7771a}, {0x8a5296ffe33cc92f, 0x82bd6b70d99aaa70}, {0xace73cbfdc0bfb7b, 0x636cc64d1001550c}, {0xd8210befd30efa5a, 0x3c47f7e05401aa4f}, {0x8714a775e3e95c78, 0x65acfaec34810a72}, {0xa8d9d1535ce3b396, 0x7f1839a741a14d0e}, {0xd31045a8341ca07c, 0x1ede48111209a051}, {0x83ea2b892091e44d, 0x934aed0aab460433}, {0xa4e4b66b68b65d60, 0xf81da84d56178540}, {0xce1de40642e3f4b9, 0x36251260ab9d668f}, {0x80d2ae83e9ce78f3, 0xc1d72b7c6b42601a}, {0xa1075a24e4421730, 0xb24cf65b8612f820}, {0xc94930ae1d529cfc, 0xdee033f26797b628}, {0xfb9b7cd9a4a7443c, 0x169840ef017da3b2}, {0x9d412e0806e88aa5, 0x8e1f289560ee864f}, {0xc491798a08a2ad4e, 0xf1a6f2bab92a27e3}, {0xf5b5d7ec8acb58a2, 0xae10af696774b1dc}, {0x9991a6f3d6bf1765, 0xacca6da1e0a8ef2a}, {0xbff610b0cc6edd3f, 0x17fd090a58d32af4}, {0xeff394dcff8a948e, 0xddfc4b4cef07f5b1}, {0x95f83d0a1fb69cd9, 0x4abdaf101564f98f}, {0xbb764c4ca7a4440f, 0x9d6d1ad41abe37f2}, {0xea53df5fd18d5513, 0x84c86189216dc5ee}, {0x92746b9be2f8552c, 0x32fd3cf5b4e49bb5}, {0xb7118682dbb66a77, 0x3fbc8c33221dc2a2}, {0xe4d5e82392a40515, 0x0fabaf3feaa5334b}, {0x8f05b1163ba6832d, 0x29cb4d87f2a7400f}, {0xb2c71d5bca9023f8, 0x743e20e9ef511013}, {0xdf78e4b2bd342cf6, 0x914da9246b255417}, {0x8bab8eefb6409c1a, 0x1ad089b6c2f7548f}, {0xae9672aba3d0c320, 0xa184ac2473b529b2}, {0xda3c0f568cc4f3e8, 0xc9e5d72d90a2741f}, {0x8865899617fb1871, 0x7e2fa67c7a658893}, {0xaa7eebfb9df9de8d, 0xddbb901b98feeab8}, {0xd51ea6fa85785631, 0x552a74227f3ea566}, {0x8533285c936b35de, 0xd53a88958f872760}, {0xa67ff273b8460356, 0x8a892abaf368f138}, {0xd01fef10a657842c, 0x2d2b7569b0432d86}, {0x8213f56a67f6b29b, 0x9c3b29620e29fc74}, {0xa298f2c501f45f42, 0x8349f3ba91b47b90}, {0xcb3f2f7642717713, 0x241c70a936219a74}, {0xfe0efb53d30dd4d7, 0xed238cd383aa0111}, {0x9ec95d1463e8a506, 0xf4363804324a40ab}, {0xc67bb4597ce2ce48, 0xb143c6053edcd0d6}, {0xf81aa16fdc1b81da, 0xdd94b7868e94050b}, {0x9b10a4e5e9913128, 0xca7cf2b4191c8327}, {0xc1d4ce1f63f57d72, 0xfd1c2f611f63a3f1}, {0xf24a01a73cf2dccf, 0xbc633b39673c8ced}, {0x976e41088617ca01, 0xd5be0503e085d814}, {0xbd49d14aa79dbc82, 0x4b2d8644d8a74e19}, {0xec9c459d51852ba2, 0xddf8e7d60ed1219f}, {0x93e1ab8252f33b45, 0xcabb90e5c942b504}, {0xb8da1662e7b00a17, 0x3d6a751f3b936244}, {0xe7109bfba19c0c9d, 0x0cc512670a783ad5}, {0x906a617d450187e2, 0x27fb2b80668b24c6}, {0xb484f9dc9641e9da, 0xb1f9f660802dedf7}, {0xe1a63853bbd26451, 0x5e7873f8a0396974}, {0x8d07e33455637eb2, 0xdb0b487b6423e1e9}, {0xb049dc016abc5e5f, 0x91ce1a9a3d2cda63}, {0xdc5c5301c56b75f7, 0x7641a140cc7810fc}, {0x89b9b3e11b6329ba, 0xa9e904c87fcb0a9e}, {0xac2820d9623bf429, 0x546345fa9fbdcd45}, {0xd732290fbacaf133, 0xa97c177947ad4096}, {0x867f59a9d4bed6c0, 0x49ed8eabcccc485e}, {0xa81f301449ee8c70, 0x5c68f256bfff5a75}, {0xd226fc195c6a2f8c, 0x73832eec6fff3112}, {0x83585d8fd9c25db7, 0xc831fd53c5ff7eac}, {0xa42e74f3d032f525, 0xba3e7ca8b77f5e56}, {0xcd3a1230c43fb26f, 0x28ce1bd2e55f35ec}, {0x80444b5e7aa7cf85, 0x7980d163cf5b81b4}, {0xa0555e361951c366, 0xd7e105bcc3326220}, {0xc86ab5c39fa63440, 0x8dd9472bf3fefaa8}, {0xfa856334878fc150, 0xb14f98f6f0feb952}, {0x9c935e00d4b9d8d2, 0x6ed1bf9a569f33d4}, {0xc3b8358109e84f07, 0x0a862f80ec4700c9}, {0xf4a642e14c6262c8, 0xcd27bb612758c0fb}, {0x98e7e9cccfbd7dbd, 0x8038d51cb897789d}, {0xbf21e44003acdd2c, 0xe0470a63e6bd56c4}, {0xeeea5d5004981478, 0x1858ccfce06cac75}, {0x95527a5202df0ccb, 0x0f37801e0c43ebc9}, {0xbaa718e68396cffd, 0xd30560258f54e6bb}, {0xe950df20247c83fd, 0x47c6b82ef32a206a}, {0x91d28b7416cdd27e, 0x4cdc331d57fa5442}, {0xb6472e511c81471d, 0xe0133fe4adf8e953}, {0xe3d8f9e563a198e5, 0x58180fddd97723a7}, {0x8e679c2f5e44ff8f, 0x570f09eaa7ea7649}, {0xb201833b35d63f73, 0x2cd2cc6551e513db}, {0xde81e40a034bcf4f, 0xf8077f7ea65e58d2}, {0x8b112e86420f6191, 0xfb04afaf27faf783}, {0xadd57a27d29339f6, 0x79c5db9af1f9b564}, {0xd94ad8b1c7380874, 0x18375281ae7822bd}, {0x87cec76f1c830548, 0x8f2293910d0b15b6}, {0xa9c2794ae3a3c69a, 0xb2eb3875504ddb23}, {0xd433179d9c8cb841, 0x5fa60692a46151ec}, {0x849feec281d7f328, 0xdbc7c41ba6bcd334}, {0xa5c7ea73224deff3, 0x12b9b522906c0801}, {0xcf39e50feae16bef, 0xd768226b34870a01}, {0x81842f29f2cce375, 0xe6a1158300d46641}, {0xa1e53af46f801c53, 0x60495ae3c1097fd1}, {0xca5e89b18b602368, 0x385bb19cb14bdfc5}, {0xfcf62c1dee382c42, 0x46729e03dd9ed7b6}, {0x9e19db92b4e31ba9, 0x6c07a2c26a8346d2}, {0xc5a05277621be293, 0xc7098b7305241886}, {0xf70867153aa2db38, 0xb8cbee4fc66d1ea8}, {0x9a65406d44a5c903, 0x737f74f1dc043329}, {0xc0fe908895cf3b44, 0x505f522e53053ff3}, {0xf13e34aabb430a15, 0x647726b9e7c68ff0}, {0x96c6e0eab509e64d, 0x5eca783430dc19f6}, {0xbc789925624c5fe0, 0xb67d16413d132073}, {0xeb96bf6ebadf77d8, 0xe41c5bd18c57e890}, {0x933e37a534cbaae7, 0x8e91b962f7b6f15a}, {0xb80dc58e81fe95a1, 0x723627bbb5a4adb1}, {0xe61136f2227e3b09, 0xcec3b1aaa30dd91d}, {0x8fcac257558ee4e6, 0x213a4f0aa5e8a7b2}, {0xb3bd72ed2af29e1f, 0xa988e2cd4f62d19e}, {0xe0accfa875af45a7, 0x93eb1b80a33b8606}, {0x8c6c01c9498d8b88, 0xbc72f130660533c4}, {0xaf87023b9bf0ee6a, 0xeb8fad7c7f8680b5}, { 0xdb68c2ca82ed2a05, 0xa67398db9f6820e2 } #else {0xff77b1fcbebcdc4f, 0x25e8e89c13bb0f7b}, {0xce5d73ff402d98e3, 0xfb0a3d212dc81290}, {0xa6b34ad8c9dfc06f, 0xf42faa48c0ea481f}, {0x86a8d39ef77164bc, 0xae5dff9c02033198}, {0xd98ddaee19068c76, 0x3badd624dd9b0958}, {0xafbd2350644eeacf, 0xe5d1929ef90898fb}, {0x8df5efabc5979c8f, 0xca8d3ffa1ef463c2}, {0xe55990879ddcaabd, 0xcc420a6a101d0516}, {0xb94470938fa89bce, 0xf808e40e8d5b3e6a}, {0x95a8637627989aad, 0xdde7001379a44aa9}, {0xf1c90080baf72cb1, 0x5324c68b12dd6339}, {0xc350000000000000, 0x0000000000000000}, {0x9dc5ada82b70b59d, 0xf020000000000000}, {0xfee50b7025c36a08, 0x02f236d04753d5b5}, {0xcde6fd5e09abcf26, 0xed4c0226b55e6f87}, {0xa6539930bf6bff45, 0x84db8346b786151d}, {0x865b86925b9bc5c2, 0x0b8a2392ba45a9b3}, {0xd910f7ff28069da4, 0x1b2ba1518094da05}, {0xaf58416654a6babb, 0x387ac8d1970027b3}, {0x8da471a9de737e24, 0x5ceaecfed289e5d3}, {0xe4d5e82392a40515, 0x0fabaf3feaa5334b}, {0xb8da1662e7b00a17, 0x3d6a751f3b936244}, {0x95527a5202df0ccb, 0x0f37801e0c43ebc9}, {0xf13e34aabb430a15, 0x647726b9e7c68ff0} #endif }; #if FMT_USE_FULL_CACHE_DRAGONBOX return pow10_significands[k - float_info::min_k]; #else static constexpr const uint64_t powers_of_5_64[] = { 0x0000000000000001, 0x0000000000000005, 0x0000000000000019, 0x000000000000007d, 0x0000000000000271, 0x0000000000000c35, 0x0000000000003d09, 0x000000000001312d, 0x000000000005f5e1, 0x00000000001dcd65, 0x00000000009502f9, 0x0000000002e90edd, 0x000000000e8d4a51, 0x0000000048c27395, 0x000000016bcc41e9, 0x000000071afd498d, 0x0000002386f26fc1, 0x000000b1a2bc2ec5, 0x000003782dace9d9, 0x00001158e460913d, 0x000056bc75e2d631, 0x0001b1ae4d6e2ef5, 0x000878678326eac9, 0x002a5a058fc295ed, 0x00d3c21bcecceda1, 0x0422ca8b0a00a425, 0x14adf4b7320334b9}; static const int compression_ratio = 27; // Compute base index. int cache_index = (k - float_info::min_k) / compression_ratio; int kb = cache_index * compression_ratio + float_info::min_k; int offset = k - kb; // Get base cache. uint128_fallback base_cache = pow10_significands[cache_index]; if (offset == 0) return base_cache; // Compute the required amount of bit-shift. int alpha = floor_log2_pow10(kb + offset) - floor_log2_pow10(kb) - offset; FMT_ASSERT(alpha > 0 && alpha < 64, "shifting error detected"); // Try to recover the real cache. uint64_t pow5 = powers_of_5_64[offset]; uint128_fallback recovered_cache = umul128(base_cache.high(), pow5); uint128_fallback middle_low = umul128(base_cache.low(), pow5); recovered_cache += middle_low.high(); uint64_t high_to_middle = recovered_cache.high() << (64 - alpha); uint64_t middle_to_low = recovered_cache.low() << (64 - alpha); recovered_cache = uint128_fallback{(recovered_cache.low() >> alpha) | high_to_middle, ((middle_low.low() >> alpha) | middle_to_low)}; FMT_ASSERT(recovered_cache.low() + 1 != 0, ""); return {recovered_cache.high(), recovered_cache.low() + 1}; #endif } struct compute_mul_result { carrier_uint result; bool is_integer; }; struct compute_mul_parity_result { bool parity; bool is_integer; }; static compute_mul_result compute_mul( carrier_uint u, const cache_entry_type& cache) noexcept { auto r = umul192_upper128(u, cache); return {r.high(), r.low() == 0}; } static uint32_t compute_delta(cache_entry_type const& cache, int beta) noexcept { return static_cast(cache.high() >> (64 - 1 - beta)); } static compute_mul_parity_result compute_mul_parity( carrier_uint two_f, const cache_entry_type& cache, int beta) noexcept { FMT_ASSERT(beta >= 1, ""); FMT_ASSERT(beta < 64, ""); auto r = umul192_lower128(two_f, cache); return {((r.high() >> (64 - beta)) & 1) != 0, ((r.high() << beta) | (r.low() >> (64 - beta))) == 0}; } static carrier_uint compute_left_endpoint_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept { return (cache.high() - (cache.high() >> (num_significand_bits() + 2))) >> (64 - num_significand_bits() - 1 - beta); } static carrier_uint compute_right_endpoint_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept { return (cache.high() + (cache.high() >> (num_significand_bits() + 1))) >> (64 - num_significand_bits() - 1 - beta); } static carrier_uint compute_round_up_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept { return ((cache.high() >> (64 - num_significand_bits() - 2 - beta)) + 1) / 2; } }; FMT_FUNC uint128_fallback get_cached_power(int k) noexcept { return cache_accessor::get_cached_power(k); } // Various integer checks template bool is_left_endpoint_integer_shorter_interval(int exponent) noexcept { const int case_shorter_interval_left_endpoint_lower_threshold = 2; const int case_shorter_interval_left_endpoint_upper_threshold = 3; return exponent >= case_shorter_interval_left_endpoint_lower_threshold && exponent <= case_shorter_interval_left_endpoint_upper_threshold; } // Remove trailing zeros from n and return the number of zeros removed (float) FMT_INLINE int remove_trailing_zeros(uint32_t& n, int s = 0) noexcept { FMT_ASSERT(n != 0, ""); // Modular inverse of 5 (mod 2^32): (mod_inv_5 * 5) mod 2^32 = 1. constexpr uint32_t mod_inv_5 = 0xcccccccd; constexpr uint32_t mod_inv_25 = 0xc28f5c29; // = mod_inv_5 * mod_inv_5 while (true) { auto q = rotr(n * mod_inv_25, 2); if (q > max_value() / 100) break; n = q; s += 2; } auto q = rotr(n * mod_inv_5, 1); if (q <= max_value() / 10) { n = q; s |= 1; } return s; } // Removes trailing zeros and returns the number of zeros removed (double) FMT_INLINE int remove_trailing_zeros(uint64_t& n) noexcept { FMT_ASSERT(n != 0, ""); // This magic number is ceil(2^90 / 10^8). constexpr uint64_t magic_number = 12379400392853802749ull; auto nm = umul128(n, magic_number); // Is n is divisible by 10^8? if ((nm.high() & ((1ull << (90 - 64)) - 1)) == 0 && nm.low() < magic_number) { // If yes, work with the quotient... auto n32 = static_cast(nm.high() >> (90 - 64)); // ... and use the 32 bit variant of the function int s = remove_trailing_zeros(n32, 8); n = n32; return s; } // If n is not divisible by 10^8, work with n itself. constexpr uint64_t mod_inv_5 = 0xcccccccccccccccd; constexpr uint64_t mod_inv_25 = 0x8f5c28f5c28f5c29; // = mod_inv_5 * mod_inv_5 int s = 0; while (true) { auto q = rotr(n * mod_inv_25, 2); if (q > max_value() / 100) break; n = q; s += 2; } auto q = rotr(n * mod_inv_5, 1); if (q <= max_value() / 10) { n = q; s |= 1; } return s; } // The main algorithm for shorter interval case template FMT_INLINE decimal_fp shorter_interval_case(int exponent) noexcept { decimal_fp ret_value; // Compute k and beta const int minus_k = floor_log10_pow2_minus_log10_4_over_3(exponent); const int beta = exponent + floor_log2_pow10(-minus_k); // Compute xi and zi using cache_entry_type = typename cache_accessor::cache_entry_type; const cache_entry_type cache = cache_accessor::get_cached_power(-minus_k); auto xi = cache_accessor::compute_left_endpoint_for_shorter_interval_case( cache, beta); auto zi = cache_accessor::compute_right_endpoint_for_shorter_interval_case( cache, beta); // If the left endpoint is not an integer, increase it if (!is_left_endpoint_integer_shorter_interval(exponent)) ++xi; // Try bigger divisor ret_value.significand = zi / 10; // If succeed, remove trailing zeros if necessary and return if (ret_value.significand * 10 >= xi) { ret_value.exponent = minus_k + 1; ret_value.exponent += remove_trailing_zeros(ret_value.significand); return ret_value; } // Otherwise, compute the round-up of y ret_value.significand = cache_accessor::compute_round_up_for_shorter_interval_case(cache, beta); ret_value.exponent = minus_k; // When tie occurs, choose one of them according to the rule if (exponent >= float_info::shorter_interval_tie_lower_threshold && exponent <= float_info::shorter_interval_tie_upper_threshold) { ret_value.significand = ret_value.significand % 2 == 0 ? ret_value.significand : ret_value.significand - 1; } else if (ret_value.significand < xi) { ++ret_value.significand; } return ret_value; } template decimal_fp to_decimal(T x) noexcept { // Step 1: integer promotion & Schubfach multiplier calculation. using carrier_uint = typename float_info::carrier_uint; using cache_entry_type = typename cache_accessor::cache_entry_type; auto br = bit_cast(x); // Extract significand bits and exponent bits. const carrier_uint significand_mask = (static_cast(1) << num_significand_bits()) - 1; carrier_uint significand = (br & significand_mask); int exponent = static_cast((br & exponent_mask()) >> num_significand_bits()); if (exponent != 0) { // Check if normal. exponent -= exponent_bias() + num_significand_bits(); // Shorter interval case; proceed like Schubfach. // In fact, when exponent == 1 and significand == 0, the interval is // regular. However, it can be shown that the end-results are anyway same. if (significand == 0) return shorter_interval_case(exponent); significand |= (static_cast(1) << num_significand_bits()); } else { // Subnormal case; the interval is always regular. if (significand == 0) return {0, 0}; exponent = std::numeric_limits::min_exponent - num_significand_bits() - 1; } const bool include_left_endpoint = (significand % 2 == 0); const bool include_right_endpoint = include_left_endpoint; // Compute k and beta. const int minus_k = floor_log10_pow2(exponent) - float_info::kappa; const cache_entry_type cache = cache_accessor::get_cached_power(-minus_k); const int beta = exponent + floor_log2_pow10(-minus_k); // Compute zi and deltai. // 10^kappa <= deltai < 10^(kappa + 1) const uint32_t deltai = cache_accessor::compute_delta(cache, beta); const carrier_uint two_fc = significand << 1; // For the case of binary32, the result of integer check is not correct for // 29711844 * 2^-82 // = 6.1442653300000000008655037797566933477355632930994033813476... * 10^-18 // and 29711844 * 2^-81 // = 1.2288530660000000001731007559513386695471126586198806762695... * 10^-17, // and they are the unique counterexamples. However, since 29711844 is even, // this does not cause any problem for the endpoints calculations; it can only // cause a problem when we need to perform integer check for the center. // Fortunately, with these inputs, that branch is never executed, so we are // fine. const typename cache_accessor::compute_mul_result z_mul = cache_accessor::compute_mul((two_fc | 1) << beta, cache); // Step 2: Try larger divisor; remove trailing zeros if necessary. // Using an upper bound on zi, we might be able to optimize the division // better than the compiler; we are computing zi / big_divisor here. decimal_fp ret_value; ret_value.significand = divide_by_10_to_kappa_plus_1(z_mul.result); uint32_t r = static_cast(z_mul.result - float_info::big_divisor * ret_value.significand); if (r < deltai) { // Exclude the right endpoint if necessary. if (r == 0 && (z_mul.is_integer & !include_right_endpoint)) { --ret_value.significand; r = float_info::big_divisor; goto small_divisor_case_label; } } else if (r > deltai) { goto small_divisor_case_label; } else { // r == deltai; compare fractional parts. const typename cache_accessor::compute_mul_parity_result x_mul = cache_accessor::compute_mul_parity(two_fc - 1, cache, beta); if (!(x_mul.parity | (x_mul.is_integer & include_left_endpoint))) goto small_divisor_case_label; } ret_value.exponent = minus_k + float_info::kappa + 1; // We may need to remove trailing zeros. ret_value.exponent += remove_trailing_zeros(ret_value.significand); return ret_value; // Step 3: Find the significand with the smaller divisor. small_divisor_case_label: ret_value.significand *= 10; ret_value.exponent = minus_k + float_info::kappa; uint32_t dist = r - (deltai / 2) + (float_info::small_divisor / 2); const bool approx_y_parity = ((dist ^ (float_info::small_divisor / 2)) & 1) != 0; // Is dist divisible by 10^kappa? const bool divisible_by_small_divisor = check_divisibility_and_divide_by_pow10::kappa>(dist); // Add dist / 10^kappa to the significand. ret_value.significand += dist; if (!divisible_by_small_divisor) return ret_value; // Check z^(f) >= epsilon^(f). // We have either yi == zi - epsiloni or yi == (zi - epsiloni) - 1, // where yi == zi - epsiloni if and only if z^(f) >= epsilon^(f). // Since there are only 2 possibilities, we only need to care about the // parity. Also, zi and r should have the same parity since the divisor // is an even number. const auto y_mul = cache_accessor::compute_mul_parity(two_fc, cache, beta); // If z^(f) >= epsilon^(f), we might have a tie when z^(f) == epsilon^(f), // or equivalently, when y is an integer. if (y_mul.parity != approx_y_parity) --ret_value.significand; else if (y_mul.is_integer & (ret_value.significand % 2 != 0)) --ret_value.significand; return ret_value; } } // namespace dragonbox } // namespace detail template <> struct formatter { FMT_CONSTEXPR auto parse(format_parse_context& ctx) -> format_parse_context::iterator { return ctx.begin(); } auto format(const detail::bigint& n, format_context& ctx) const -> format_context::iterator { auto out = ctx.out(); bool first = true; for (auto i = n.bigits_.size(); i > 0; --i) { auto value = n.bigits_[i - 1u]; if (first) { out = format_to(out, FMT_STRING("{:x}"), value); first = false; continue; } out = format_to(out, FMT_STRING("{:08x}"), value); } if (n.exp_ > 0) out = format_to(out, FMT_STRING("p{}"), n.exp_ * detail::bigint::bigit_bits); return out; } }; FMT_FUNC detail::utf8_to_utf16::utf8_to_utf16(string_view s) { for_each_codepoint(s, [this](uint32_t cp, string_view) { if (cp == invalid_code_point) FMT_THROW(std::runtime_error("invalid utf8")); if (cp <= 0xFFFF) { buffer_.push_back(static_cast(cp)); } else { cp -= 0x10000; buffer_.push_back(static_cast(0xD800 + (cp >> 10))); buffer_.push_back(static_cast(0xDC00 + (cp & 0x3FF))); } return true; }); buffer_.push_back(0); } FMT_FUNC void format_system_error(detail::buffer& out, int error_code, const char* message) noexcept { FMT_TRY { auto ec = std::error_code(error_code, std::generic_category()); write(std::back_inserter(out), std::system_error(ec, message).what()); return; } FMT_CATCH(...) {} format_error_code(out, error_code, message); } FMT_FUNC void report_system_error(int error_code, const char* message) noexcept { report_error(format_system_error, error_code, message); } FMT_FUNC std::string vformat(string_view fmt, format_args args) { // Don't optimize the "{}" case to keep the binary size small and because it // can be better optimized in fmt::format anyway. auto buffer = memory_buffer(); detail::vformat_to(buffer, fmt, args); return to_string(buffer); } namespace detail { #ifndef _WIN32 FMT_FUNC bool write_console(std::FILE*, string_view) { return false; } #else using dword = conditional_t; extern "C" __declspec(dllimport) int __stdcall WriteConsoleW( // void*, const void*, dword, dword*, void*); FMT_FUNC bool write_console(std::FILE* f, string_view text) { auto fd = _fileno(f); if (!_isatty(fd)) return false; auto u16 = utf8_to_utf16(text); auto written = dword(); return WriteConsoleW(reinterpret_cast(_get_osfhandle(fd)), u16.c_str(), static_cast(u16.size()), &written, nullptr) != 0; } // Print assuming legacy (non-Unicode) encoding. FMT_FUNC void vprint_mojibake(std::FILE* f, string_view fmt, format_args args) { auto buffer = memory_buffer(); detail::vformat_to(buffer, fmt, basic_format_args>(args)); fwrite_fully(buffer.data(), 1, buffer.size(), f); } #endif FMT_FUNC void print(std::FILE* f, string_view text) { if (!write_console(f, text)) fwrite_fully(text.data(), 1, text.size(), f); } } // namespace detail FMT_FUNC void vprint(std::FILE* f, string_view fmt, format_args args) { auto buffer = memory_buffer(); detail::vformat_to(buffer, fmt, args); detail::print(f, {buffer.data(), buffer.size()}); } FMT_FUNC void vprint(string_view fmt, format_args args) { vprint(stdout, fmt, args); } namespace detail { struct singleton { unsigned char upper; unsigned char lower_count; }; inline auto is_printable(uint16_t x, const singleton* singletons, size_t singletons_size, const unsigned char* singleton_lowers, const unsigned char* normal, size_t normal_size) -> bool { auto upper = x >> 8; auto lower_start = 0; for (size_t i = 0; i < singletons_size; ++i) { auto s = singletons[i]; auto lower_end = lower_start + s.lower_count; if (upper < s.upper) break; if (upper == s.upper) { for (auto j = lower_start; j < lower_end; ++j) { if (singleton_lowers[j] == (x & 0xff)) return false; } } lower_start = lower_end; } auto xsigned = static_cast(x); auto current = true; for (size_t i = 0; i < normal_size; ++i) { auto v = static_cast(normal[i]); auto len = (v & 0x80) != 0 ? (v & 0x7f) << 8 | normal[++i] : v; xsigned -= len; if (xsigned < 0) break; current = !current; } return current; } // This code is generated by support/printable.py. FMT_FUNC auto is_printable(uint32_t cp) -> bool { static constexpr singleton singletons0[] = { {0x00, 1}, {0x03, 5}, {0x05, 6}, {0x06, 3}, {0x07, 6}, {0x08, 8}, {0x09, 17}, {0x0a, 28}, {0x0b, 25}, {0x0c, 20}, {0x0d, 16}, {0x0e, 13}, {0x0f, 4}, {0x10, 3}, {0x12, 18}, {0x13, 9}, {0x16, 1}, {0x17, 5}, {0x18, 2}, {0x19, 3}, {0x1a, 7}, {0x1c, 2}, {0x1d, 1}, {0x1f, 22}, {0x20, 3}, {0x2b, 3}, {0x2c, 2}, {0x2d, 11}, {0x2e, 1}, {0x30, 3}, {0x31, 2}, {0x32, 1}, {0xa7, 2}, {0xa9, 2}, {0xaa, 4}, {0xab, 8}, {0xfa, 2}, {0xfb, 5}, {0xfd, 4}, {0xfe, 3}, {0xff, 9}, }; static constexpr unsigned char singletons0_lower[] = { 0xad, 0x78, 0x79, 0x8b, 0x8d, 0xa2, 0x30, 0x57, 0x58, 0x8b, 0x8c, 0x90, 0x1c, 0x1d, 0xdd, 0x0e, 0x0f, 0x4b, 0x4c, 0xfb, 0xfc, 0x2e, 0x2f, 0x3f, 0x5c, 0x5d, 0x5f, 0xb5, 0xe2, 0x84, 0x8d, 0x8e, 0x91, 0x92, 0xa9, 0xb1, 0xba, 0xbb, 0xc5, 0xc6, 0xc9, 0xca, 0xde, 0xe4, 0xe5, 0xff, 0x00, 0x04, 0x11, 0x12, 0x29, 0x31, 0x34, 0x37, 0x3a, 0x3b, 0x3d, 0x49, 0x4a, 0x5d, 0x84, 0x8e, 0x92, 0xa9, 0xb1, 0xb4, 0xba, 0xbb, 0xc6, 0xca, 0xce, 0xcf, 0xe4, 0xe5, 0x00, 0x04, 0x0d, 0x0e, 0x11, 0x12, 0x29, 0x31, 0x34, 0x3a, 0x3b, 0x45, 0x46, 0x49, 0x4a, 0x5e, 0x64, 0x65, 0x84, 0x91, 0x9b, 0x9d, 0xc9, 0xce, 0xcf, 0x0d, 0x11, 0x29, 0x45, 0x49, 0x57, 0x64, 0x65, 0x8d, 0x91, 0xa9, 0xb4, 0xba, 0xbb, 0xc5, 0xc9, 0xdf, 0xe4, 0xe5, 0xf0, 0x0d, 0x11, 0x45, 0x49, 0x64, 0x65, 0x80, 0x84, 0xb2, 0xbc, 0xbe, 0xbf, 0xd5, 0xd7, 0xf0, 0xf1, 0x83, 0x85, 0x8b, 0xa4, 0xa6, 0xbe, 0xbf, 0xc5, 0xc7, 0xce, 0xcf, 0xda, 0xdb, 0x48, 0x98, 0xbd, 0xcd, 0xc6, 0xce, 0xcf, 0x49, 0x4e, 0x4f, 0x57, 0x59, 0x5e, 0x5f, 0x89, 0x8e, 0x8f, 0xb1, 0xb6, 0xb7, 0xbf, 0xc1, 0xc6, 0xc7, 0xd7, 0x11, 0x16, 0x17, 0x5b, 0x5c, 0xf6, 0xf7, 0xfe, 0xff, 0x80, 0x0d, 0x6d, 0x71, 0xde, 0xdf, 0x0e, 0x0f, 0x1f, 0x6e, 0x6f, 0x1c, 0x1d, 0x5f, 0x7d, 0x7e, 0xae, 0xaf, 0xbb, 0xbc, 0xfa, 0x16, 0x17, 0x1e, 0x1f, 0x46, 0x47, 0x4e, 0x4f, 0x58, 0x5a, 0x5c, 0x5e, 0x7e, 0x7f, 0xb5, 0xc5, 0xd4, 0xd5, 0xdc, 0xf0, 0xf1, 0xf5, 0x72, 0x73, 0x8f, 0x74, 0x75, 0x96, 0x2f, 0x5f, 0x26, 0x2e, 0x2f, 0xa7, 0xaf, 0xb7, 0xbf, 0xc7, 0xcf, 0xd7, 0xdf, 0x9a, 0x40, 0x97, 0x98, 0x30, 0x8f, 0x1f, 0xc0, 0xc1, 0xce, 0xff, 0x4e, 0x4f, 0x5a, 0x5b, 0x07, 0x08, 0x0f, 0x10, 0x27, 0x2f, 0xee, 0xef, 0x6e, 0x6f, 0x37, 0x3d, 0x3f, 0x42, 0x45, 0x90, 0x91, 0xfe, 0xff, 0x53, 0x67, 0x75, 0xc8, 0xc9, 0xd0, 0xd1, 0xd8, 0xd9, 0xe7, 0xfe, 0xff, }; static constexpr singleton singletons1[] = { {0x00, 6}, {0x01, 1}, {0x03, 1}, {0x04, 2}, {0x08, 8}, {0x09, 2}, {0x0a, 5}, {0x0b, 2}, {0x0e, 4}, {0x10, 1}, {0x11, 2}, {0x12, 5}, {0x13, 17}, {0x14, 1}, {0x15, 2}, {0x17, 2}, {0x19, 13}, {0x1c, 5}, {0x1d, 8}, {0x24, 1}, {0x6a, 3}, {0x6b, 2}, {0xbc, 2}, {0xd1, 2}, {0xd4, 12}, {0xd5, 9}, {0xd6, 2}, {0xd7, 2}, {0xda, 1}, {0xe0, 5}, {0xe1, 2}, {0xe8, 2}, {0xee, 32}, {0xf0, 4}, {0xf8, 2}, {0xf9, 2}, {0xfa, 2}, {0xfb, 1}, }; static constexpr unsigned char singletons1_lower[] = { 0x0c, 0x27, 0x3b, 0x3e, 0x4e, 0x4f, 0x8f, 0x9e, 0x9e, 0x9f, 0x06, 0x07, 0x09, 0x36, 0x3d, 0x3e, 0x56, 0xf3, 0xd0, 0xd1, 0x04, 0x14, 0x18, 0x36, 0x37, 0x56, 0x57, 0x7f, 0xaa, 0xae, 0xaf, 0xbd, 0x35, 0xe0, 0x12, 0x87, 0x89, 0x8e, 0x9e, 0x04, 0x0d, 0x0e, 0x11, 0x12, 0x29, 0x31, 0x34, 0x3a, 0x45, 0x46, 0x49, 0x4a, 0x4e, 0x4f, 0x64, 0x65, 0x5c, 0xb6, 0xb7, 0x1b, 0x1c, 0x07, 0x08, 0x0a, 0x0b, 0x14, 0x17, 0x36, 0x39, 0x3a, 0xa8, 0xa9, 0xd8, 0xd9, 0x09, 0x37, 0x90, 0x91, 0xa8, 0x07, 0x0a, 0x3b, 0x3e, 0x66, 0x69, 0x8f, 0x92, 0x6f, 0x5f, 0xee, 0xef, 0x5a, 0x62, 0x9a, 0x9b, 0x27, 0x28, 0x55, 0x9d, 0xa0, 0xa1, 0xa3, 0xa4, 0xa7, 0xa8, 0xad, 0xba, 0xbc, 0xc4, 0x06, 0x0b, 0x0c, 0x15, 0x1d, 0x3a, 0x3f, 0x45, 0x51, 0xa6, 0xa7, 0xcc, 0xcd, 0xa0, 0x07, 0x19, 0x1a, 0x22, 0x25, 0x3e, 0x3f, 0xc5, 0xc6, 0x04, 0x20, 0x23, 0x25, 0x26, 0x28, 0x33, 0x38, 0x3a, 0x48, 0x4a, 0x4c, 0x50, 0x53, 0x55, 0x56, 0x58, 0x5a, 0x5c, 0x5e, 0x60, 0x63, 0x65, 0x66, 0x6b, 0x73, 0x78, 0x7d, 0x7f, 0x8a, 0xa4, 0xaa, 0xaf, 0xb0, 0xc0, 0xd0, 0xae, 0xaf, 0x79, 0xcc, 0x6e, 0x6f, 0x93, }; static constexpr unsigned char normal0[] = { 0x00, 0x20, 0x5f, 0x22, 0x82, 0xdf, 0x04, 0x82, 0x44, 0x08, 0x1b, 0x04, 0x06, 0x11, 0x81, 0xac, 0x0e, 0x80, 0xab, 0x35, 0x28, 0x0b, 0x80, 0xe0, 0x03, 0x19, 0x08, 0x01, 0x04, 0x2f, 0x04, 0x34, 0x04, 0x07, 0x03, 0x01, 0x07, 0x06, 0x07, 0x11, 0x0a, 0x50, 0x0f, 0x12, 0x07, 0x55, 0x07, 0x03, 0x04, 0x1c, 0x0a, 0x09, 0x03, 0x08, 0x03, 0x07, 0x03, 0x02, 0x03, 0x03, 0x03, 0x0c, 0x04, 0x05, 0x03, 0x0b, 0x06, 0x01, 0x0e, 0x15, 0x05, 0x3a, 0x03, 0x11, 0x07, 0x06, 0x05, 0x10, 0x07, 0x57, 0x07, 0x02, 0x07, 0x15, 0x0d, 0x50, 0x04, 0x43, 0x03, 0x2d, 0x03, 0x01, 0x04, 0x11, 0x06, 0x0f, 0x0c, 0x3a, 0x04, 0x1d, 0x25, 0x5f, 0x20, 0x6d, 0x04, 0x6a, 0x25, 0x80, 0xc8, 0x05, 0x82, 0xb0, 0x03, 0x1a, 0x06, 0x82, 0xfd, 0x03, 0x59, 0x07, 0x15, 0x0b, 0x17, 0x09, 0x14, 0x0c, 0x14, 0x0c, 0x6a, 0x06, 0x0a, 0x06, 0x1a, 0x06, 0x59, 0x07, 0x2b, 0x05, 0x46, 0x0a, 0x2c, 0x04, 0x0c, 0x04, 0x01, 0x03, 0x31, 0x0b, 0x2c, 0x04, 0x1a, 0x06, 0x0b, 0x03, 0x80, 0xac, 0x06, 0x0a, 0x06, 0x21, 0x3f, 0x4c, 0x04, 0x2d, 0x03, 0x74, 0x08, 0x3c, 0x03, 0x0f, 0x03, 0x3c, 0x07, 0x38, 0x08, 0x2b, 0x05, 0x82, 0xff, 0x11, 0x18, 0x08, 0x2f, 0x11, 0x2d, 0x03, 0x20, 0x10, 0x21, 0x0f, 0x80, 0x8c, 0x04, 0x82, 0x97, 0x19, 0x0b, 0x15, 0x88, 0x94, 0x05, 0x2f, 0x05, 0x3b, 0x07, 0x02, 0x0e, 0x18, 0x09, 0x80, 0xb3, 0x2d, 0x74, 0x0c, 0x80, 0xd6, 0x1a, 0x0c, 0x05, 0x80, 0xff, 0x05, 0x80, 0xdf, 0x0c, 0xee, 0x0d, 0x03, 0x84, 0x8d, 0x03, 0x37, 0x09, 0x81, 0x5c, 0x14, 0x80, 0xb8, 0x08, 0x80, 0xcb, 0x2a, 0x38, 0x03, 0x0a, 0x06, 0x38, 0x08, 0x46, 0x08, 0x0c, 0x06, 0x74, 0x0b, 0x1e, 0x03, 0x5a, 0x04, 0x59, 0x09, 0x80, 0x83, 0x18, 0x1c, 0x0a, 0x16, 0x09, 0x4c, 0x04, 0x80, 0x8a, 0x06, 0xab, 0xa4, 0x0c, 0x17, 0x04, 0x31, 0xa1, 0x04, 0x81, 0xda, 0x26, 0x07, 0x0c, 0x05, 0x05, 0x80, 0xa5, 0x11, 0x81, 0x6d, 0x10, 0x78, 0x28, 0x2a, 0x06, 0x4c, 0x04, 0x80, 0x8d, 0x04, 0x80, 0xbe, 0x03, 0x1b, 0x03, 0x0f, 0x0d, }; static constexpr unsigned char normal1[] = { 0x5e, 0x22, 0x7b, 0x05, 0x03, 0x04, 0x2d, 0x03, 0x66, 0x03, 0x01, 0x2f, 0x2e, 0x80, 0x82, 0x1d, 0x03, 0x31, 0x0f, 0x1c, 0x04, 0x24, 0x09, 0x1e, 0x05, 0x2b, 0x05, 0x44, 0x04, 0x0e, 0x2a, 0x80, 0xaa, 0x06, 0x24, 0x04, 0x24, 0x04, 0x28, 0x08, 0x34, 0x0b, 0x01, 0x80, 0x90, 0x81, 0x37, 0x09, 0x16, 0x0a, 0x08, 0x80, 0x98, 0x39, 0x03, 0x63, 0x08, 0x09, 0x30, 0x16, 0x05, 0x21, 0x03, 0x1b, 0x05, 0x01, 0x40, 0x38, 0x04, 0x4b, 0x05, 0x2f, 0x04, 0x0a, 0x07, 0x09, 0x07, 0x40, 0x20, 0x27, 0x04, 0x0c, 0x09, 0x36, 0x03, 0x3a, 0x05, 0x1a, 0x07, 0x04, 0x0c, 0x07, 0x50, 0x49, 0x37, 0x33, 0x0d, 0x33, 0x07, 0x2e, 0x08, 0x0a, 0x81, 0x26, 0x52, 0x4e, 0x28, 0x08, 0x2a, 0x56, 0x1c, 0x14, 0x17, 0x09, 0x4e, 0x04, 0x1e, 0x0f, 0x43, 0x0e, 0x19, 0x07, 0x0a, 0x06, 0x48, 0x08, 0x27, 0x09, 0x75, 0x0b, 0x3f, 0x41, 0x2a, 0x06, 0x3b, 0x05, 0x0a, 0x06, 0x51, 0x06, 0x01, 0x05, 0x10, 0x03, 0x05, 0x80, 0x8b, 0x62, 0x1e, 0x48, 0x08, 0x0a, 0x80, 0xa6, 0x5e, 0x22, 0x45, 0x0b, 0x0a, 0x06, 0x0d, 0x13, 0x39, 0x07, 0x0a, 0x36, 0x2c, 0x04, 0x10, 0x80, 0xc0, 0x3c, 0x64, 0x53, 0x0c, 0x48, 0x09, 0x0a, 0x46, 0x45, 0x1b, 0x48, 0x08, 0x53, 0x1d, 0x39, 0x81, 0x07, 0x46, 0x0a, 0x1d, 0x03, 0x47, 0x49, 0x37, 0x03, 0x0e, 0x08, 0x0a, 0x06, 0x39, 0x07, 0x0a, 0x81, 0x36, 0x19, 0x80, 0xb7, 0x01, 0x0f, 0x32, 0x0d, 0x83, 0x9b, 0x66, 0x75, 0x0b, 0x80, 0xc4, 0x8a, 0xbc, 0x84, 0x2f, 0x8f, 0xd1, 0x82, 0x47, 0xa1, 0xb9, 0x82, 0x39, 0x07, 0x2a, 0x04, 0x02, 0x60, 0x26, 0x0a, 0x46, 0x0a, 0x28, 0x05, 0x13, 0x82, 0xb0, 0x5b, 0x65, 0x4b, 0x04, 0x39, 0x07, 0x11, 0x40, 0x05, 0x0b, 0x02, 0x0e, 0x97, 0xf8, 0x08, 0x84, 0xd6, 0x2a, 0x09, 0xa2, 0xf7, 0x81, 0x1f, 0x31, 0x03, 0x11, 0x04, 0x08, 0x81, 0x8c, 0x89, 0x04, 0x6b, 0x05, 0x0d, 0x03, 0x09, 0x07, 0x10, 0x93, 0x60, 0x80, 0xf6, 0x0a, 0x73, 0x08, 0x6e, 0x17, 0x46, 0x80, 0x9a, 0x14, 0x0c, 0x57, 0x09, 0x19, 0x80, 0x87, 0x81, 0x47, 0x03, 0x85, 0x42, 0x0f, 0x15, 0x85, 0x50, 0x2b, 0x80, 0xd5, 0x2d, 0x03, 0x1a, 0x04, 0x02, 0x81, 0x70, 0x3a, 0x05, 0x01, 0x85, 0x00, 0x80, 0xd7, 0x29, 0x4c, 0x04, 0x0a, 0x04, 0x02, 0x83, 0x11, 0x44, 0x4c, 0x3d, 0x80, 0xc2, 0x3c, 0x06, 0x01, 0x04, 0x55, 0x05, 0x1b, 0x34, 0x02, 0x81, 0x0e, 0x2c, 0x04, 0x64, 0x0c, 0x56, 0x0a, 0x80, 0xae, 0x38, 0x1d, 0x0d, 0x2c, 0x04, 0x09, 0x07, 0x02, 0x0e, 0x06, 0x80, 0x9a, 0x83, 0xd8, 0x08, 0x0d, 0x03, 0x0d, 0x03, 0x74, 0x0c, 0x59, 0x07, 0x0c, 0x14, 0x0c, 0x04, 0x38, 0x08, 0x0a, 0x06, 0x28, 0x08, 0x22, 0x4e, 0x81, 0x54, 0x0c, 0x15, 0x03, 0x03, 0x05, 0x07, 0x09, 0x19, 0x07, 0x07, 0x09, 0x03, 0x0d, 0x07, 0x29, 0x80, 0xcb, 0x25, 0x0a, 0x84, 0x06, }; auto lower = static_cast(cp); if (cp < 0x10000) { return is_printable(lower, singletons0, sizeof(singletons0) / sizeof(*singletons0), singletons0_lower, normal0, sizeof(normal0)); } if (cp < 0x20000) { return is_printable(lower, singletons1, sizeof(singletons1) / sizeof(*singletons1), singletons1_lower, normal1, sizeof(normal1)); } if (0x2a6de <= cp && cp < 0x2a700) return false; if (0x2b735 <= cp && cp < 0x2b740) return false; if (0x2b81e <= cp && cp < 0x2b820) return false; if (0x2cea2 <= cp && cp < 0x2ceb0) return false; if (0x2ebe1 <= cp && cp < 0x2f800) return false; if (0x2fa1e <= cp && cp < 0x30000) return false; if (0x3134b <= cp && cp < 0xe0100) return false; if (0xe01f0 <= cp && cp < 0x110000) return false; return cp < 0x110000; } } // namespace detail FMT_END_NAMESPACE #endif // FMT_FORMAT_INL_H_ btop-1.3.0/include/fmt/format.h000066400000000000000000005235771454653170500163660ustar00rootroot00000000000000/* Formatting library for C++ Copyright (c) 2012 - present, Victor Zverovich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- Optional exception to the license --- As an exception, if, as a result of your compiling your source code, portions of this Software are embedded into a machine-executable object form of such source code, you may redistribute such embedded portions in such object form without including the above copyright and permission notices. */ #ifndef FMT_FORMAT_H_ #define FMT_FORMAT_H_ #include // std::signbit #include // uint32_t #include // std::memcpy #include // std::initializer_list #include // std::numeric_limits #include // std::uninitialized_copy #include // std::runtime_error #include // std::system_error #ifdef __cpp_lib_bit_cast # include // std::bitcast #endif #include "core.h" #ifndef FMT_BEGIN_DETAIL_NAMESPACE # define FMT_BEGIN_DETAIL_NAMESPACE namespace detail { # define FMT_END_DETAIL_NAMESPACE } #endif #if defined __cpp_inline_variables && __cpp_inline_variables >= 201606L # define FMT_INLINE_VARIABLE inline #else # define FMT_INLINE_VARIABLE #endif #if FMT_HAS_CPP17_ATTRIBUTE(fallthrough) # define FMT_FALLTHROUGH [[fallthrough]] #elif defined(__clang__) # define FMT_FALLTHROUGH [[clang::fallthrough]] #elif FMT_GCC_VERSION >= 700 && \ (!defined(__EDG_VERSION__) || __EDG_VERSION__ >= 520) # define FMT_FALLTHROUGH [[gnu::fallthrough]] #else # define FMT_FALLTHROUGH #endif #ifndef FMT_DEPRECATED # if FMT_HAS_CPP14_ATTRIBUTE(deprecated) || FMT_MSC_VERSION >= 1900 # define FMT_DEPRECATED [[deprecated]] # else # if (defined(__GNUC__) && !defined(__LCC__)) || defined(__clang__) # define FMT_DEPRECATED __attribute__((deprecated)) # elif FMT_MSC_VERSION # define FMT_DEPRECATED __declspec(deprecated) # else # define FMT_DEPRECATED /* deprecated */ # endif # endif #endif #if FMT_GCC_VERSION || defined(__clang__) # define FMT_VISIBILITY(value) __attribute__((visibility(value))) #else # define FMT_VISIBILITY(value) #endif #ifdef __has_builtin # define FMT_HAS_BUILTIN(x) __has_builtin(x) #else # define FMT_HAS_BUILTIN(x) 0 #endif #if FMT_GCC_VERSION || FMT_CLANG_VERSION # define FMT_NOINLINE __attribute__((noinline)) #else # define FMT_NOINLINE #endif #ifndef FMT_THROW # if FMT_EXCEPTIONS # if FMT_MSC_VERSION || defined(__NVCC__) FMT_BEGIN_NAMESPACE namespace detail { template inline void do_throw(const Exception& x) { // Silence unreachable code warnings in MSVC and NVCC because these // are nearly impossible to fix in a generic code. volatile bool b = true; if (b) throw x; } } // namespace detail FMT_END_NAMESPACE # define FMT_THROW(x) detail::do_throw(x) # else # define FMT_THROW(x) throw x # endif # else # define FMT_THROW(x) \ ::fmt::detail::assert_fail(__FILE__, __LINE__, (x).what()) # endif #endif #if FMT_EXCEPTIONS # define FMT_TRY try # define FMT_CATCH(x) catch (x) #else # define FMT_TRY if (true) # define FMT_CATCH(x) if (false) #endif #ifndef FMT_MAYBE_UNUSED # if FMT_HAS_CPP17_ATTRIBUTE(maybe_unused) # define FMT_MAYBE_UNUSED [[maybe_unused]] # else # define FMT_MAYBE_UNUSED # endif #endif #ifndef FMT_USE_USER_DEFINED_LITERALS // EDG based compilers (Intel, NVIDIA, Elbrus, etc), GCC and MSVC support UDLs. # if (FMT_HAS_FEATURE(cxx_user_literals) || FMT_GCC_VERSION >= 407 || \ FMT_MSC_VERSION >= 1900) && \ (!defined(__EDG_VERSION__) || __EDG_VERSION__ >= /* UDL feature */ 480) # define FMT_USE_USER_DEFINED_LITERALS 1 # else # define FMT_USE_USER_DEFINED_LITERALS 0 # endif #endif // Defining FMT_REDUCE_INT_INSTANTIATIONS to 1, will reduce the number of // integer formatter template instantiations to just one by only using the // largest integer type. This results in a reduction in binary size but will // cause a decrease in integer formatting performance. #if !defined(FMT_REDUCE_INT_INSTANTIATIONS) # define FMT_REDUCE_INT_INSTANTIATIONS 0 #endif // __builtin_clz is broken in clang with Microsoft CodeGen: // https://github.com/fmtlib/fmt/issues/519. #if !FMT_MSC_VERSION # if FMT_HAS_BUILTIN(__builtin_clz) || FMT_GCC_VERSION || FMT_ICC_VERSION # define FMT_BUILTIN_CLZ(n) __builtin_clz(n) # endif # if FMT_HAS_BUILTIN(__builtin_clzll) || FMT_GCC_VERSION || FMT_ICC_VERSION # define FMT_BUILTIN_CLZLL(n) __builtin_clzll(n) # endif #endif // __builtin_ctz is broken in Intel Compiler Classic on Windows: // https://github.com/fmtlib/fmt/issues/2510. #ifndef __ICL # if FMT_HAS_BUILTIN(__builtin_ctz) || FMT_GCC_VERSION || FMT_ICC_VERSION || \ defined(__NVCOMPILER) # define FMT_BUILTIN_CTZ(n) __builtin_ctz(n) # endif # if FMT_HAS_BUILTIN(__builtin_ctzll) || FMT_GCC_VERSION || \ FMT_ICC_VERSION || defined(__NVCOMPILER) # define FMT_BUILTIN_CTZLL(n) __builtin_ctzll(n) # endif #endif #if FMT_MSC_VERSION # include // _BitScanReverse[64], _BitScanForward[64], _umul128 #endif // Some compilers masquerade as both MSVC and GCC-likes or otherwise support // __builtin_clz and __builtin_clzll, so only define FMT_BUILTIN_CLZ using the // MSVC intrinsics if the clz and clzll builtins are not available. #if FMT_MSC_VERSION && !defined(FMT_BUILTIN_CLZLL) && \ !defined(FMT_BUILTIN_CTZLL) FMT_BEGIN_NAMESPACE namespace detail { // Avoid Clang with Microsoft CodeGen's -Wunknown-pragmas warning. # if !defined(__clang__) # pragma intrinsic(_BitScanForward) # pragma intrinsic(_BitScanReverse) # if defined(_WIN64) # pragma intrinsic(_BitScanForward64) # pragma intrinsic(_BitScanReverse64) # endif # endif inline auto clz(uint32_t x) -> int { unsigned long r = 0; _BitScanReverse(&r, x); FMT_ASSERT(x != 0, ""); // Static analysis complains about using uninitialized data // "r", but the only way that can happen is if "x" is 0, // which the callers guarantee to not happen. FMT_MSC_WARNING(suppress : 6102) return 31 ^ static_cast(r); } # define FMT_BUILTIN_CLZ(n) detail::clz(n) inline auto clzll(uint64_t x) -> int { unsigned long r = 0; # ifdef _WIN64 _BitScanReverse64(&r, x); # else // Scan the high 32 bits. if (_BitScanReverse(&r, static_cast(x >> 32))) return 63 ^ static_cast(r + 32); // Scan the low 32 bits. _BitScanReverse(&r, static_cast(x)); # endif FMT_ASSERT(x != 0, ""); FMT_MSC_WARNING(suppress : 6102) // Suppress a bogus static analysis warning. return 63 ^ static_cast(r); } # define FMT_BUILTIN_CLZLL(n) detail::clzll(n) inline auto ctz(uint32_t x) -> int { unsigned long r = 0; _BitScanForward(&r, x); FMT_ASSERT(x != 0, ""); FMT_MSC_WARNING(suppress : 6102) // Suppress a bogus static analysis warning. return static_cast(r); } # define FMT_BUILTIN_CTZ(n) detail::ctz(n) inline auto ctzll(uint64_t x) -> int { unsigned long r = 0; FMT_ASSERT(x != 0, ""); FMT_MSC_WARNING(suppress : 6102) // Suppress a bogus static analysis warning. # ifdef _WIN64 _BitScanForward64(&r, x); # else // Scan the low 32 bits. if (_BitScanForward(&r, static_cast(x))) return static_cast(r); // Scan the high 32 bits. _BitScanForward(&r, static_cast(x >> 32)); r += 32; # endif return static_cast(r); } # define FMT_BUILTIN_CTZLL(n) detail::ctzll(n) } // namespace detail FMT_END_NAMESPACE #endif FMT_BEGIN_NAMESPACE template struct disjunction : std::false_type {}; template struct disjunction

: P {}; template

struct disjunction : conditional_t> {}; template struct conjunction : std::true_type {}; template struct conjunction

: P {}; template

struct conjunction : conditional_t, P1> {}; namespace detail { FMT_CONSTEXPR inline void abort_fuzzing_if(bool condition) { ignore_unused(condition); #ifdef FMT_FUZZ if (condition) throw std::runtime_error("fuzzing limit reached"); #endif } template struct string_literal { static constexpr CharT value[sizeof...(C)] = {C...}; constexpr operator basic_string_view() const { return {value, sizeof...(C)}; } }; #if FMT_CPLUSPLUS < 201703L template constexpr CharT string_literal::value[sizeof...(C)]; #endif template class formatbuf : public Streambuf { private: using char_type = typename Streambuf::char_type; using streamsize = decltype(std::declval().sputn(nullptr, 0)); using int_type = typename Streambuf::int_type; using traits_type = typename Streambuf::traits_type; buffer& buffer_; public: explicit formatbuf(buffer& buf) : buffer_(buf) {} protected: // The put area is always empty. This makes the implementation simpler and has // the advantage that the streambuf and the buffer are always in sync and // sputc never writes into uninitialized memory. A disadvantage is that each // call to sputc always results in a (virtual) call to overflow. There is no // disadvantage here for sputn since this always results in a call to xsputn. auto overflow(int_type ch) -> int_type override { if (!traits_type::eq_int_type(ch, traits_type::eof())) buffer_.push_back(static_cast(ch)); return ch; } auto xsputn(const char_type* s, streamsize count) -> streamsize override { buffer_.append(s, s + count); return count; } }; // Implementation of std::bit_cast for pre-C++20. template FMT_CONSTEXPR20 auto bit_cast(const From& from) -> To { #ifdef __cpp_lib_bit_cast if (is_constant_evaluated()) return std::bit_cast(from); #endif auto to = To(); // The cast suppresses a bogus -Wclass-memaccess on GCC. std::memcpy(static_cast(&to), &from, sizeof(to)); return to; } inline auto is_big_endian() -> bool { #ifdef _WIN32 return false; #elif defined(__BIG_ENDIAN__) return true; #elif defined(__BYTE_ORDER__) && defined(__ORDER_BIG_ENDIAN__) return __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__; #else struct bytes { char data[sizeof(int)]; }; return bit_cast(1).data[0] == 0; #endif } class uint128_fallback { private: uint64_t lo_, hi_; friend uint128_fallback umul128(uint64_t x, uint64_t y) noexcept; public: constexpr uint128_fallback(uint64_t hi, uint64_t lo) : lo_(lo), hi_(hi) {} constexpr uint128_fallback(uint64_t value = 0) : lo_(value), hi_(0) {} constexpr uint64_t high() const noexcept { return hi_; } constexpr uint64_t low() const noexcept { return lo_; } template ::value)> constexpr explicit operator T() const { return static_cast(lo_); } friend constexpr auto operator==(const uint128_fallback& lhs, const uint128_fallback& rhs) -> bool { return lhs.hi_ == rhs.hi_ && lhs.lo_ == rhs.lo_; } friend constexpr auto operator!=(const uint128_fallback& lhs, const uint128_fallback& rhs) -> bool { return !(lhs == rhs); } friend constexpr auto operator>(const uint128_fallback& lhs, const uint128_fallback& rhs) -> bool { return lhs.hi_ != rhs.hi_ ? lhs.hi_ > rhs.hi_ : lhs.lo_ > rhs.lo_; } friend constexpr auto operator|(const uint128_fallback& lhs, const uint128_fallback& rhs) -> uint128_fallback { return {lhs.hi_ | rhs.hi_, lhs.lo_ | rhs.lo_}; } friend constexpr auto operator&(const uint128_fallback& lhs, const uint128_fallback& rhs) -> uint128_fallback { return {lhs.hi_ & rhs.hi_, lhs.lo_ & rhs.lo_}; } friend constexpr auto operator~(const uint128_fallback& n) -> uint128_fallback { return {~n.hi_, ~n.lo_}; } friend auto operator+(const uint128_fallback& lhs, const uint128_fallback& rhs) -> uint128_fallback { auto result = uint128_fallback(lhs); result += rhs; return result; } friend auto operator*(const uint128_fallback& lhs, uint32_t rhs) -> uint128_fallback { FMT_ASSERT(lhs.hi_ == 0, ""); uint64_t hi = (lhs.lo_ >> 32) * rhs; uint64_t lo = (lhs.lo_ & ~uint32_t()) * rhs; uint64_t new_lo = (hi << 32) + lo; return {(hi >> 32) + (new_lo < lo ? 1 : 0), new_lo}; } friend auto operator-(const uint128_fallback& lhs, uint64_t rhs) -> uint128_fallback { return {lhs.hi_ - (lhs.lo_ < rhs ? 1 : 0), lhs.lo_ - rhs}; } FMT_CONSTEXPR auto operator>>(int shift) const -> uint128_fallback { if (shift == 64) return {0, hi_}; if (shift > 64) return uint128_fallback(0, hi_) >> (shift - 64); return {hi_ >> shift, (hi_ << (64 - shift)) | (lo_ >> shift)}; } FMT_CONSTEXPR auto operator<<(int shift) const -> uint128_fallback { if (shift == 64) return {lo_, 0}; if (shift > 64) return uint128_fallback(lo_, 0) << (shift - 64); return {hi_ << shift | (lo_ >> (64 - shift)), (lo_ << shift)}; } FMT_CONSTEXPR auto operator>>=(int shift) -> uint128_fallback& { return *this = *this >> shift; } FMT_CONSTEXPR void operator+=(uint128_fallback n) { uint64_t new_lo = lo_ + n.lo_; uint64_t new_hi = hi_ + n.hi_ + (new_lo < lo_ ? 1 : 0); FMT_ASSERT(new_hi >= hi_, ""); lo_ = new_lo; hi_ = new_hi; } FMT_CONSTEXPR void operator&=(uint128_fallback n) { lo_ &= n.lo_; hi_ &= n.hi_; } FMT_CONSTEXPR20 uint128_fallback& operator+=(uint64_t n) noexcept { if (is_constant_evaluated()) { lo_ += n; hi_ += (lo_ < n ? 1 : 0); return *this; } #if FMT_HAS_BUILTIN(__builtin_addcll) && !defined(__ibmxl__) unsigned long long carry; lo_ = __builtin_addcll(lo_, n, 0, &carry); hi_ += carry; #elif FMT_HAS_BUILTIN(__builtin_ia32_addcarryx_u64) && !defined(__ibmxl__) unsigned long long result; auto carry = __builtin_ia32_addcarryx_u64(0, lo_, n, &result); lo_ = result; hi_ += carry; #elif defined(_MSC_VER) && defined(_M_X64) auto carry = _addcarry_u64(0, lo_, n, &lo_); _addcarry_u64(carry, hi_, 0, &hi_); #else lo_ += n; hi_ += (lo_ < n ? 1 : 0); #endif return *this; } }; using uint128_t = conditional_t; #ifdef UINTPTR_MAX using uintptr_t = ::uintptr_t; #else using uintptr_t = uint128_t; #endif // Returns the largest possible value for type T. Same as // std::numeric_limits::max() but shorter and not affected by the max macro. template constexpr auto max_value() -> T { return (std::numeric_limits::max)(); } template constexpr auto num_bits() -> int { return std::numeric_limits::digits; } // std::numeric_limits::digits may return 0 for 128-bit ints. template <> constexpr auto num_bits() -> int { return 128; } template <> constexpr auto num_bits() -> int { return 128; } // A heterogeneous bit_cast used for converting 96-bit long double to uint128_t // and 128-bit pointers to uint128_fallback. template sizeof(From))> inline auto bit_cast(const From& from) -> To { constexpr auto size = static_cast(sizeof(From) / sizeof(unsigned)); struct data_t { unsigned value[static_cast(size)]; } data = bit_cast(from); auto result = To(); if (const_check(is_big_endian())) { for (int i = 0; i < size; ++i) result = (result << num_bits()) | data.value[i]; } else { for (int i = size - 1; i >= 0; --i) result = (result << num_bits()) | data.value[i]; } return result; } template FMT_CONSTEXPR20 inline auto countl_zero_fallback(UInt n) -> int { int lz = 0; constexpr UInt msb_mask = static_cast(1) << (num_bits() - 1); for (; (n & msb_mask) == 0; n <<= 1) lz++; return lz; } FMT_CONSTEXPR20 inline auto countl_zero(uint32_t n) -> int { #ifdef FMT_BUILTIN_CLZ if (!is_constant_evaluated()) return FMT_BUILTIN_CLZ(n); #endif return countl_zero_fallback(n); } FMT_CONSTEXPR20 inline auto countl_zero(uint64_t n) -> int { #ifdef FMT_BUILTIN_CLZLL if (!is_constant_evaluated()) return FMT_BUILTIN_CLZLL(n); #endif return countl_zero_fallback(n); } FMT_INLINE void assume(bool condition) { (void)condition; #if FMT_HAS_BUILTIN(__builtin_assume) && !FMT_ICC_VERSION __builtin_assume(condition); #endif } // An approximation of iterator_t for pre-C++20 systems. template using iterator_t = decltype(std::begin(std::declval())); template using sentinel_t = decltype(std::end(std::declval())); // A workaround for std::string not having mutable data() until C++17. template inline auto get_data(std::basic_string& s) -> Char* { return &s[0]; } template inline auto get_data(Container& c) -> typename Container::value_type* { return c.data(); } #if defined(_SECURE_SCL) && _SECURE_SCL // Make a checked iterator to avoid MSVC warnings. template using checked_ptr = stdext::checked_array_iterator; template constexpr auto make_checked(T* p, size_t size) -> checked_ptr { return {p, size}; } #else template using checked_ptr = T*; template constexpr auto make_checked(T* p, size_t) -> T* { return p; } #endif // Attempts to reserve space for n extra characters in the output range. // Returns a pointer to the reserved range or a reference to it. template ::value)> #if FMT_CLANG_VERSION >= 307 && !FMT_ICC_VERSION __attribute__((no_sanitize("undefined"))) #endif inline auto reserve(std::back_insert_iterator it, size_t n) -> checked_ptr { Container& c = get_container(it); size_t size = c.size(); c.resize(size + n); return make_checked(get_data(c) + size, n); } template inline auto reserve(buffer_appender it, size_t n) -> buffer_appender { buffer& buf = get_container(it); buf.try_reserve(buf.size() + n); return it; } template constexpr auto reserve(Iterator& it, size_t) -> Iterator& { return it; } template using reserve_iterator = remove_reference_t(), 0))>; template constexpr auto to_pointer(OutputIt, size_t) -> T* { return nullptr; } template auto to_pointer(buffer_appender it, size_t n) -> T* { buffer& buf = get_container(it); auto size = buf.size(); if (buf.capacity() < size + n) return nullptr; buf.try_resize(size + n); return buf.data() + size; } template ::value)> inline auto base_iterator(std::back_insert_iterator& it, checked_ptr) -> std::back_insert_iterator { return it; } template constexpr auto base_iterator(Iterator, Iterator it) -> Iterator { return it; } // is spectacularly slow to compile in C++20 so use a simple fill_n // instead (#1998). template FMT_CONSTEXPR auto fill_n(OutputIt out, Size count, const T& value) -> OutputIt { for (Size i = 0; i < count; ++i) *out++ = value; return out; } template FMT_CONSTEXPR20 auto fill_n(T* out, Size count, char value) -> T* { if (is_constant_evaluated()) { return fill_n(out, count, value); } std::memset(out, value, to_unsigned(count)); return out + count; } #ifdef __cpp_char8_t using char8_type = char8_t; #else enum char8_type : unsigned char {}; #endif template FMT_CONSTEXPR FMT_NOINLINE auto copy_str_noinline(InputIt begin, InputIt end, OutputIt out) -> OutputIt { return copy_str(begin, end, out); } // A public domain branchless UTF-8 decoder by Christopher Wellons: // https://github.com/skeeto/branchless-utf8 /* Decode the next character, c, from s, reporting errors in e. * * Since this is a branchless decoder, four bytes will be read from the * buffer regardless of the actual length of the next character. This * means the buffer _must_ have at least three bytes of zero padding * following the end of the data stream. * * Errors are reported in e, which will be non-zero if the parsed * character was somehow invalid: invalid byte sequence, non-canonical * encoding, or a surrogate half. * * The function returns a pointer to the next character. When an error * occurs, this pointer will be a guess that depends on the particular * error, but it will always advance at least one byte. */ FMT_CONSTEXPR inline auto utf8_decode(const char* s, uint32_t* c, int* e) -> const char* { constexpr const int masks[] = {0x00, 0x7f, 0x1f, 0x0f, 0x07}; constexpr const uint32_t mins[] = {4194304, 0, 128, 2048, 65536}; constexpr const int shiftc[] = {0, 18, 12, 6, 0}; constexpr const int shifte[] = {0, 6, 4, 2, 0}; int len = "\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\0\0\0\0\0\0\0\0\2\2\2\2\3\3\4" [static_cast(*s) >> 3]; // Compute the pointer to the next character early so that the next // iteration can start working on the next character. Neither Clang // nor GCC figure out this reordering on their own. const char* next = s + len + !len; using uchar = unsigned char; // Assume a four-byte character and load four bytes. Unused bits are // shifted out. *c = uint32_t(uchar(s[0]) & masks[len]) << 18; *c |= uint32_t(uchar(s[1]) & 0x3f) << 12; *c |= uint32_t(uchar(s[2]) & 0x3f) << 6; *c |= uint32_t(uchar(s[3]) & 0x3f) << 0; *c >>= shiftc[len]; // Accumulate the various error conditions. *e = (*c < mins[len]) << 6; // non-canonical encoding *e |= ((*c >> 11) == 0x1b) << 7; // surrogate half? *e |= (*c > 0x10FFFF) << 8; // out of range? *e |= (uchar(s[1]) & 0xc0) >> 2; *e |= (uchar(s[2]) & 0xc0) >> 4; *e |= uchar(s[3]) >> 6; *e ^= 0x2a; // top two bits of each tail byte correct? *e >>= shifte[len]; return next; } constexpr FMT_INLINE_VARIABLE uint32_t invalid_code_point = ~uint32_t(); // Invokes f(cp, sv) for every code point cp in s with sv being the string view // corresponding to the code point. cp is invalid_code_point on error. template FMT_CONSTEXPR void for_each_codepoint(string_view s, F f) { auto decode = [f](const char* buf_ptr, const char* ptr) { auto cp = uint32_t(); auto error = 0; auto end = utf8_decode(buf_ptr, &cp, &error); bool result = f(error ? invalid_code_point : cp, string_view(ptr, error ? 1 : to_unsigned(end - buf_ptr))); return result ? (error ? buf_ptr + 1 : end) : nullptr; }; auto p = s.data(); const size_t block_size = 4; // utf8_decode always reads blocks of 4 chars. if (s.size() >= block_size) { for (auto end = p + s.size() - block_size + 1; p < end;) { p = decode(p, p); if (!p) return; } } if (auto num_chars_left = s.data() + s.size() - p) { char buf[2 * block_size - 1] = {}; copy_str(p, p + num_chars_left, buf); const char* buf_ptr = buf; do { auto end = decode(buf_ptr, p); if (!end) return; p += end - buf_ptr; buf_ptr = end; } while (buf_ptr - buf < num_chars_left); } } template inline auto compute_width(basic_string_view s) -> size_t { return s.size(); } // Computes approximate display width of a UTF-8 string. FMT_CONSTEXPR inline size_t compute_width(string_view s) { size_t num_code_points = 0; // It is not a lambda for compatibility with C++14. struct count_code_points { size_t* count; FMT_CONSTEXPR auto operator()(uint32_t cp, string_view) const -> bool { *count += detail::to_unsigned( 1 + (cp >= 0x1100 && (cp <= 0x115f || // Hangul Jamo init. consonants cp == 0x2329 || // LEFT-POINTING ANGLE BRACKET cp == 0x232a || // RIGHT-POINTING ANGLE BRACKET // CJK ... Yi except IDEOGRAPHIC HALF FILL SPACE: (cp >= 0x2e80 && cp <= 0xa4cf && cp != 0x303f) || (cp >= 0xac00 && cp <= 0xd7a3) || // Hangul Syllables (cp >= 0xf900 && cp <= 0xfaff) || // CJK Compatibility Ideographs (cp >= 0xfe10 && cp <= 0xfe19) || // Vertical Forms (cp >= 0xfe30 && cp <= 0xfe6f) || // CJK Compatibility Forms (cp >= 0xff00 && cp <= 0xff60) || // Fullwidth Forms (cp >= 0xffe0 && cp <= 0xffe6) || // Fullwidth Forms (cp >= 0x20000 && cp <= 0x2fffd) || // CJK (cp >= 0x30000 && cp <= 0x3fffd) || // Miscellaneous Symbols and Pictographs + Emoticons: (cp >= 0x1f300 && cp <= 0x1f64f) || // Supplemental Symbols and Pictographs: (cp >= 0x1f900 && cp <= 0x1f9ff)))); return true; } }; // We could avoid branches by using utf8_decode directly. for_each_codepoint(s, count_code_points{&num_code_points}); return num_code_points; } inline auto compute_width(basic_string_view s) -> size_t { return compute_width( string_view(reinterpret_cast(s.data()), s.size())); } template inline auto code_point_index(basic_string_view s, size_t n) -> size_t { size_t size = s.size(); return n < size ? n : size; } // Calculates the index of the nth code point in a UTF-8 string. inline auto code_point_index(string_view s, size_t n) -> size_t { const char* data = s.data(); size_t num_code_points = 0; for (size_t i = 0, size = s.size(); i != size; ++i) { if ((data[i] & 0xc0) != 0x80 && ++num_code_points > n) return i; } return s.size(); } inline auto code_point_index(basic_string_view s, size_t n) -> size_t { return code_point_index( string_view(reinterpret_cast(s.data()), s.size()), n); } template struct is_integral : std::is_integral {}; template <> struct is_integral : std::true_type {}; template <> struct is_integral : std::true_type {}; template using is_signed = std::integral_constant::is_signed || std::is_same::value>; template using is_integer = bool_constant::value && !std::is_same::value && !std::is_same::value && !std::is_same::value>; #ifndef FMT_USE_FLOAT # define FMT_USE_FLOAT 1 #endif #ifndef FMT_USE_DOUBLE # define FMT_USE_DOUBLE 1 #endif #ifndef FMT_USE_LONG_DOUBLE # define FMT_USE_LONG_DOUBLE 1 #endif #ifndef FMT_USE_FLOAT128 # ifdef __clang__ // Clang emulates GCC, so it has to appear early. # if FMT_HAS_INCLUDE() # define FMT_USE_FLOAT128 1 # endif # elif defined(__GNUC__) // GNU C++: # if defined(_GLIBCXX_USE_FLOAT128) && !defined(__STRICT_ANSI__) # define FMT_USE_FLOAT128 1 # endif # endif # ifndef FMT_USE_FLOAT128 # define FMT_USE_FLOAT128 0 # endif #endif #if FMT_USE_FLOAT128 using float128 = __float128; #else using float128 = void; #endif template using is_float128 = std::is_same; template using is_floating_point = bool_constant::value || is_float128::value>; template ::value> struct is_fast_float : bool_constant::is_iec559 && sizeof(T) <= sizeof(double)> {}; template struct is_fast_float : std::false_type {}; template using is_double_double = bool_constant::digits == 106>; #ifndef FMT_USE_FULL_CACHE_DRAGONBOX # define FMT_USE_FULL_CACHE_DRAGONBOX 0 #endif template template void buffer::append(const U* begin, const U* end) { while (begin != end) { auto count = to_unsigned(end - begin); try_reserve(size_ + count); auto free_cap = capacity_ - size_; if (free_cap < count) count = free_cap; std::uninitialized_copy_n(begin, count, make_checked(ptr_ + size_, count)); size_ += count; begin += count; } } template struct is_locale : std::false_type {}; template struct is_locale> : std::true_type {}; } // namespace detail FMT_BEGIN_EXPORT // The number of characters to store in the basic_memory_buffer object itself // to avoid dynamic memory allocation. enum { inline_buffer_size = 500 }; /** \rst A dynamically growing memory buffer for trivially copyable/constructible types with the first ``SIZE`` elements stored in the object itself. You can use the ``memory_buffer`` type alias for ``char`` instead. **Example**:: auto out = fmt::memory_buffer(); format_to(std::back_inserter(out), "The answer is {}.", 42); This will append the following output to the ``out`` object: .. code-block:: none The answer is 42. The output can be converted to an ``std::string`` with ``to_string(out)``. \endrst */ template > class basic_memory_buffer final : public detail::buffer { private: T store_[SIZE]; // Don't inherit from Allocator avoid generating type_info for it. Allocator alloc_; // Deallocate memory allocated by the buffer. FMT_CONSTEXPR20 void deallocate() { T* data = this->data(); if (data != store_) alloc_.deallocate(data, this->capacity()); } protected: FMT_CONSTEXPR20 void grow(size_t size) override { detail::abort_fuzzing_if(size > 5000); const size_t max_size = std::allocator_traits::max_size(alloc_); size_t old_capacity = this->capacity(); size_t new_capacity = old_capacity + old_capacity / 2; if (size > new_capacity) new_capacity = size; else if (new_capacity > max_size) new_capacity = size > max_size ? size : max_size; T* old_data = this->data(); T* new_data = std::allocator_traits::allocate(alloc_, new_capacity); // The following code doesn't throw, so the raw pointer above doesn't leak. std::uninitialized_copy(old_data, old_data + this->size(), detail::make_checked(new_data, new_capacity)); this->set(new_data, new_capacity); // deallocate must not throw according to the standard, but even if it does, // the buffer already uses the new storage and will deallocate it in // destructor. if (old_data != store_) alloc_.deallocate(old_data, old_capacity); } public: using value_type = T; using const_reference = const T&; FMT_CONSTEXPR20 explicit basic_memory_buffer( const Allocator& alloc = Allocator()) : alloc_(alloc) { this->set(store_, SIZE); if (detail::is_constant_evaluated()) detail::fill_n(store_, SIZE, T()); } FMT_CONSTEXPR20 ~basic_memory_buffer() { deallocate(); } private: // Move data from other to this buffer. FMT_CONSTEXPR20 void move(basic_memory_buffer& other) { alloc_ = std::move(other.alloc_); T* data = other.data(); size_t size = other.size(), capacity = other.capacity(); if (data == other.store_) { this->set(store_, capacity); detail::copy_str(other.store_, other.store_ + size, detail::make_checked(store_, capacity)); } else { this->set(data, capacity); // Set pointer to the inline array so that delete is not called // when deallocating. other.set(other.store_, 0); other.clear(); } this->resize(size); } public: /** \rst Constructs a :class:`fmt::basic_memory_buffer` object moving the content of the other object to it. \endrst */ FMT_CONSTEXPR20 basic_memory_buffer(basic_memory_buffer&& other) noexcept { move(other); } /** \rst Moves the content of the other ``basic_memory_buffer`` object to this one. \endrst */ auto operator=(basic_memory_buffer&& other) noexcept -> basic_memory_buffer& { FMT_ASSERT(this != &other, ""); deallocate(); move(other); return *this; } // Returns a copy of the allocator associated with this buffer. auto get_allocator() const -> Allocator { return alloc_; } /** Resizes the buffer to contain *count* elements. If T is a POD type new elements may not be initialized. */ FMT_CONSTEXPR20 void resize(size_t count) { this->try_resize(count); } /** Increases the buffer capacity to *new_capacity*. */ void reserve(size_t new_capacity) { this->try_reserve(new_capacity); } // Directly append data into the buffer using detail::buffer::append; template void append(const ContiguousRange& range) { append(range.data(), range.data() + range.size()); } }; using memory_buffer = basic_memory_buffer; template struct is_contiguous> : std::true_type { }; FMT_END_EXPORT namespace detail { FMT_API bool write_console(std::FILE* f, string_view text); FMT_API void print(std::FILE*, string_view); } // namespace detail FMT_BEGIN_EXPORT // Suppress a misleading warning in older versions of clang. #if FMT_CLANG_VERSION # pragma clang diagnostic ignored "-Wweak-vtables" #endif /** An error reported from a formatting function. */ class FMT_VISIBILITY("default") format_error : public std::runtime_error { public: using std::runtime_error::runtime_error; }; namespace detail_exported { #if FMT_USE_NONTYPE_TEMPLATE_ARGS template struct fixed_string { constexpr fixed_string(const Char (&str)[N]) { detail::copy_str(static_cast(str), str + N, data); } Char data[N] = {}; }; #endif // Converts a compile-time string to basic_string_view. template constexpr auto compile_string_to_view(const Char (&s)[N]) -> basic_string_view { // Remove trailing NUL character if needed. Won't be present if this is used // with a raw character array (i.e. not defined as a string). return {s, N - (std::char_traits::to_int_type(s[N - 1]) == 0 ? 1 : 0)}; } template constexpr auto compile_string_to_view(detail::std_string_view s) -> basic_string_view { return {s.data(), s.size()}; } } // namespace detail_exported class loc_value { private: basic_format_arg value_; public: template ::value)> loc_value(T value) : value_(detail::make_arg(value)) {} template ::value)> loc_value(T) {} template auto visit(Visitor&& vis) -> decltype(vis(0)) { return visit_format_arg(vis, value_); } }; // A locale facet that formats values in UTF-8. // It is parameterized on the locale to avoid the heavy include. template class format_facet : public Locale::facet { private: std::string separator_; std::string grouping_; std::string decimal_point_; protected: virtual auto do_put(appender out, loc_value val, const format_specs<>& specs) const -> bool; public: static FMT_API typename Locale::id id; explicit format_facet(Locale& loc); explicit format_facet(string_view sep = "", std::initializer_list g = {3}, std::string decimal_point = ".") : separator_(sep.data(), sep.size()), grouping_(g.begin(), g.end()), decimal_point_(decimal_point) {} auto put(appender out, loc_value val, const format_specs<>& specs) const -> bool { return do_put(out, val, specs); } }; FMT_BEGIN_DETAIL_NAMESPACE // Returns true if value is negative, false otherwise. // Same as `value < 0` but doesn't produce warnings if T is an unsigned type. template ::value)> constexpr auto is_negative(T value) -> bool { return value < 0; } template ::value)> constexpr auto is_negative(T) -> bool { return false; } template FMT_CONSTEXPR auto is_supported_floating_point(T) -> bool { if (std::is_same()) return FMT_USE_FLOAT; if (std::is_same()) return FMT_USE_DOUBLE; if (std::is_same()) return FMT_USE_LONG_DOUBLE; return true; } // Smallest of uint32_t, uint64_t, uint128_t that is large enough to // represent all values of an integral type T. template using uint32_or_64_or_128_t = conditional_t() <= 32 && !FMT_REDUCE_INT_INSTANTIATIONS, uint32_t, conditional_t() <= 64, uint64_t, uint128_t>>; template using uint64_or_128_t = conditional_t() <= 64, uint64_t, uint128_t>; #define FMT_POWERS_OF_10(factor) \ factor * 10, (factor)*100, (factor)*1000, (factor)*10000, (factor)*100000, \ (factor)*1000000, (factor)*10000000, (factor)*100000000, \ (factor)*1000000000 // Converts value in the range [0, 100) to a string. constexpr const char* digits2(size_t value) { // GCC generates slightly better code when value is pointer-size. return &"0001020304050607080910111213141516171819" "2021222324252627282930313233343536373839" "4041424344454647484950515253545556575859" "6061626364656667686970717273747576777879" "8081828384858687888990919293949596979899"[value * 2]; } // Sign is a template parameter to workaround a bug in gcc 4.8. template constexpr Char sign(Sign s) { #if !FMT_GCC_VERSION || FMT_GCC_VERSION >= 604 static_assert(std::is_same::value, ""); #endif return static_cast("\0-+ "[s]); } template FMT_CONSTEXPR auto count_digits_fallback(T n) -> int { int count = 1; for (;;) { // Integer division is slow so do it for a group of four digits instead // of for every digit. The idea comes from the talk by Alexandrescu // "Three Optimization Tips for C++". See speed-test for a comparison. if (n < 10) return count; if (n < 100) return count + 1; if (n < 1000) return count + 2; if (n < 10000) return count + 3; n /= 10000u; count += 4; } } #if FMT_USE_INT128 FMT_CONSTEXPR inline auto count_digits(uint128_opt n) -> int { return count_digits_fallback(n); } #endif #ifdef FMT_BUILTIN_CLZLL // It is a separate function rather than a part of count_digits to workaround // the lack of static constexpr in constexpr functions. inline auto do_count_digits(uint64_t n) -> int { // This has comparable performance to the version by Kendall Willets // (https://github.com/fmtlib/format-benchmark/blob/master/digits10) // but uses smaller tables. // Maps bsr(n) to ceil(log10(pow(2, bsr(n) + 1) - 1)). static constexpr uint8_t bsr2log10[] = { 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 10, 10, 10, 10, 11, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 15, 15, 15, 16, 16, 16, 16, 17, 17, 17, 18, 18, 18, 19, 19, 19, 19, 20}; auto t = bsr2log10[FMT_BUILTIN_CLZLL(n | 1) ^ 63]; static constexpr const uint64_t zero_or_powers_of_10[] = { 0, 0, FMT_POWERS_OF_10(1U), FMT_POWERS_OF_10(1000000000ULL), 10000000000000000000ULL}; return t - (n < zero_or_powers_of_10[t]); } #endif // Returns the number of decimal digits in n. Leading zeros are not counted // except for n == 0 in which case count_digits returns 1. FMT_CONSTEXPR20 inline auto count_digits(uint64_t n) -> int { #ifdef FMT_BUILTIN_CLZLL if (!is_constant_evaluated()) { return do_count_digits(n); } #endif return count_digits_fallback(n); } // Counts the number of digits in n. BITS = log2(radix). template FMT_CONSTEXPR auto count_digits(UInt n) -> int { #ifdef FMT_BUILTIN_CLZ if (!is_constant_evaluated() && num_bits() == 32) return (FMT_BUILTIN_CLZ(static_cast(n) | 1) ^ 31) / BITS + 1; #endif // Lambda avoids unreachable code warnings from NVHPC. return [](UInt m) { int num_digits = 0; do { ++num_digits; } while ((m >>= BITS) != 0); return num_digits; }(n); } #ifdef FMT_BUILTIN_CLZ // It is a separate function rather than a part of count_digits to workaround // the lack of static constexpr in constexpr functions. FMT_INLINE auto do_count_digits(uint32_t n) -> int { // An optimization by Kendall Willets from https://bit.ly/3uOIQrB. // This increments the upper 32 bits (log10(T) - 1) when >= T is added. # define FMT_INC(T) (((sizeof(# T) - 1ull) << 32) - T) static constexpr uint64_t table[] = { FMT_INC(0), FMT_INC(0), FMT_INC(0), // 8 FMT_INC(10), FMT_INC(10), FMT_INC(10), // 64 FMT_INC(100), FMT_INC(100), FMT_INC(100), // 512 FMT_INC(1000), FMT_INC(1000), FMT_INC(1000), // 4096 FMT_INC(10000), FMT_INC(10000), FMT_INC(10000), // 32k FMT_INC(100000), FMT_INC(100000), FMT_INC(100000), // 256k FMT_INC(1000000), FMT_INC(1000000), FMT_INC(1000000), // 2048k FMT_INC(10000000), FMT_INC(10000000), FMT_INC(10000000), // 16M FMT_INC(100000000), FMT_INC(100000000), FMT_INC(100000000), // 128M FMT_INC(1000000000), FMT_INC(1000000000), FMT_INC(1000000000), // 1024M FMT_INC(1000000000), FMT_INC(1000000000) // 4B }; auto inc = table[FMT_BUILTIN_CLZ(n | 1) ^ 31]; return static_cast((n + inc) >> 32); } #endif // Optional version of count_digits for better performance on 32-bit platforms. FMT_CONSTEXPR20 inline auto count_digits(uint32_t n) -> int { #ifdef FMT_BUILTIN_CLZ if (!is_constant_evaluated()) { return do_count_digits(n); } #endif return count_digits_fallback(n); } template constexpr auto digits10() noexcept -> int { return std::numeric_limits::digits10; } template <> constexpr auto digits10() noexcept -> int { return 38; } template <> constexpr auto digits10() noexcept -> int { return 38; } template struct thousands_sep_result { std::string grouping; Char thousands_sep; }; template FMT_API auto thousands_sep_impl(locale_ref loc) -> thousands_sep_result; template inline auto thousands_sep(locale_ref loc) -> thousands_sep_result { auto result = thousands_sep_impl(loc); return {result.grouping, Char(result.thousands_sep)}; } template <> inline auto thousands_sep(locale_ref loc) -> thousands_sep_result { return thousands_sep_impl(loc); } template FMT_API auto decimal_point_impl(locale_ref loc) -> Char; template inline auto decimal_point(locale_ref loc) -> Char { return Char(decimal_point_impl(loc)); } template <> inline auto decimal_point(locale_ref loc) -> wchar_t { return decimal_point_impl(loc); } // Compares two characters for equality. template auto equal2(const Char* lhs, const char* rhs) -> bool { return lhs[0] == Char(rhs[0]) && lhs[1] == Char(rhs[1]); } inline auto equal2(const char* lhs, const char* rhs) -> bool { return memcmp(lhs, rhs, 2) == 0; } // Copies two characters from src to dst. template FMT_CONSTEXPR20 FMT_INLINE void copy2(Char* dst, const char* src) { if (!is_constant_evaluated() && sizeof(Char) == sizeof(char)) { memcpy(dst, src, 2); return; } *dst++ = static_cast(*src++); *dst = static_cast(*src); } template struct format_decimal_result { Iterator begin; Iterator end; }; // Formats a decimal unsigned integer value writing into out pointing to a // buffer of specified size. The caller must ensure that the buffer is large // enough. template FMT_CONSTEXPR20 auto format_decimal(Char* out, UInt value, int size) -> format_decimal_result { FMT_ASSERT(size >= count_digits(value), "invalid digit count"); out += size; Char* end = out; while (value >= 100) { // Integer division is slow so do it for a group of two digits instead // of for every digit. The idea comes from the talk by Alexandrescu // "Three Optimization Tips for C++". See speed-test for a comparison. out -= 2; copy2(out, digits2(static_cast(value % 100))); value /= 100; } if (value < 10) { *--out = static_cast('0' + value); return {out, end}; } out -= 2; copy2(out, digits2(static_cast(value))); return {out, end}; } template >::value)> FMT_CONSTEXPR inline auto format_decimal(Iterator out, UInt value, int size) -> format_decimal_result { // Buffer is large enough to hold all digits (digits10 + 1). Char buffer[digits10() + 1] = {}; auto end = format_decimal(buffer, value, size).end; return {out, detail::copy_str_noinline(buffer, end, out)}; } template FMT_CONSTEXPR auto format_uint(Char* buffer, UInt value, int num_digits, bool upper = false) -> Char* { buffer += num_digits; Char* end = buffer; do { const char* digits = upper ? "0123456789ABCDEF" : "0123456789abcdef"; unsigned digit = static_cast(value & ((1 << BASE_BITS) - 1)); *--buffer = static_cast(BASE_BITS < 4 ? static_cast('0' + digit) : digits[digit]); } while ((value >>= BASE_BITS) != 0); return end; } template inline auto format_uint(It out, UInt value, int num_digits, bool upper = false) -> It { if (auto ptr = to_pointer(out, to_unsigned(num_digits))) { format_uint(ptr, value, num_digits, upper); return out; } // Buffer should be large enough to hold all digits (digits / BASE_BITS + 1). char buffer[num_bits() / BASE_BITS + 1]; format_uint(buffer, value, num_digits, upper); return detail::copy_str_noinline(buffer, buffer + num_digits, out); } // A converter from UTF-8 to UTF-16. class utf8_to_utf16 { private: basic_memory_buffer buffer_; public: FMT_API explicit utf8_to_utf16(string_view s); operator basic_string_view() const { return {&buffer_[0], size()}; } auto size() const -> size_t { return buffer_.size() - 1; } auto c_str() const -> const wchar_t* { return &buffer_[0]; } auto str() const -> std::wstring { return {&buffer_[0], size()}; } }; // A converter from UTF-16/UTF-32 (host endian) to UTF-8. template class to_utf8 { private: Buffer buffer_; public: to_utf8() {} explicit to_utf8(basic_string_view s) { static_assert(sizeof(WChar) == 2 || sizeof(WChar) == 4, "Expect utf16 or utf32"); if (!convert(s)) FMT_THROW(std::runtime_error(sizeof(WChar) == 2 ? "invalid utf16" : "invalid utf32")); } operator string_view() const { return string_view(&buffer_[0], size()); } size_t size() const { return buffer_.size() - 1; } const char* c_str() const { return &buffer_[0]; } std::string str() const { return std::string(&buffer_[0], size()); } // Performs conversion returning a bool instead of throwing exception on // conversion error. This method may still throw in case of memory allocation // error. bool convert(basic_string_view s) { if (!convert(buffer_, s)) return false; buffer_.push_back(0); return true; } static bool convert(Buffer& buf, basic_string_view s) { for (auto p = s.begin(); p != s.end(); ++p) { uint32_t c = static_cast(*p); if (sizeof(WChar) == 2 && c >= 0xd800 && c <= 0xdfff) { // surrogate pair ++p; if (p == s.end() || (c & 0xfc00) != 0xd800 || (*p & 0xfc00) != 0xdc00) { return false; } c = (c << 10) + static_cast(*p) - 0x35fdc00; } if (c < 0x80) { buf.push_back(static_cast(c)); } else if (c < 0x800) { buf.push_back(static_cast(0xc0 | (c >> 6))); buf.push_back(static_cast(0x80 | (c & 0x3f))); } else if ((c >= 0x800 && c <= 0xd7ff) || (c >= 0xe000 && c <= 0xffff)) { buf.push_back(static_cast(0xe0 | (c >> 12))); buf.push_back(static_cast(0x80 | ((c & 0xfff) >> 6))); buf.push_back(static_cast(0x80 | (c & 0x3f))); } else if (c >= 0x10000 && c <= 0x10ffff) { buf.push_back(static_cast(0xf0 | (c >> 18))); buf.push_back(static_cast(0x80 | ((c & 0x3ffff) >> 12))); buf.push_back(static_cast(0x80 | ((c & 0xfff) >> 6))); buf.push_back(static_cast(0x80 | (c & 0x3f))); } else { return false; } } return true; } }; // Computes 128-bit result of multiplication of two 64-bit unsigned integers. inline uint128_fallback umul128(uint64_t x, uint64_t y) noexcept { #if FMT_USE_INT128 auto p = static_cast(x) * static_cast(y); return {static_cast(p >> 64), static_cast(p)}; #elif defined(_MSC_VER) && defined(_M_X64) auto result = uint128_fallback(); result.lo_ = _umul128(x, y, &result.hi_); return result; #else const uint64_t mask = static_cast(max_value()); uint64_t a = x >> 32; uint64_t b = x & mask; uint64_t c = y >> 32; uint64_t d = y & mask; uint64_t ac = a * c; uint64_t bc = b * c; uint64_t ad = a * d; uint64_t bd = b * d; uint64_t intermediate = (bd >> 32) + (ad & mask) + (bc & mask); return {ac + (intermediate >> 32) + (ad >> 32) + (bc >> 32), (intermediate << 32) + (bd & mask)}; #endif } namespace dragonbox { // Computes floor(log10(pow(2, e))) for e in [-2620, 2620] using the method from // https://fmt.dev/papers/Dragonbox.pdf#page=28, section 6.1. inline int floor_log10_pow2(int e) noexcept { FMT_ASSERT(e <= 2620 && e >= -2620, "too large exponent"); static_assert((-1 >> 1) == -1, "right shift is not arithmetic"); return (e * 315653) >> 20; } inline int floor_log2_pow10(int e) noexcept { FMT_ASSERT(e <= 1233 && e >= -1233, "too large exponent"); return (e * 1741647) >> 19; } // Computes upper 64 bits of multiplication of two 64-bit unsigned integers. inline uint64_t umul128_upper64(uint64_t x, uint64_t y) noexcept { #if FMT_USE_INT128 auto p = static_cast(x) * static_cast(y); return static_cast(p >> 64); #elif defined(_MSC_VER) && defined(_M_X64) return __umulh(x, y); #else return umul128(x, y).high(); #endif } // Computes upper 128 bits of multiplication of a 64-bit unsigned integer and a // 128-bit unsigned integer. inline uint128_fallback umul192_upper128(uint64_t x, uint128_fallback y) noexcept { uint128_fallback r = umul128(x, y.high()); r += umul128_upper64(x, y.low()); return r; } FMT_API uint128_fallback get_cached_power(int k) noexcept; // Type-specific information that Dragonbox uses. template struct float_info; template <> struct float_info { using carrier_uint = uint32_t; static const int exponent_bits = 8; static const int kappa = 1; static const int big_divisor = 100; static const int small_divisor = 10; static const int min_k = -31; static const int max_k = 46; static const int shorter_interval_tie_lower_threshold = -35; static const int shorter_interval_tie_upper_threshold = -35; }; template <> struct float_info { using carrier_uint = uint64_t; static const int exponent_bits = 11; static const int kappa = 2; static const int big_divisor = 1000; static const int small_divisor = 100; static const int min_k = -292; static const int max_k = 341; static const int shorter_interval_tie_lower_threshold = -77; static const int shorter_interval_tie_upper_threshold = -77; }; // An 80- or 128-bit floating point number. template struct float_info::digits == 64 || std::numeric_limits::digits == 113 || is_float128::value>> { using carrier_uint = detail::uint128_t; static const int exponent_bits = 15; }; // A double-double floating point number. template struct float_info::value>> { using carrier_uint = detail::uint128_t; }; template struct decimal_fp { using significand_type = typename float_info::carrier_uint; significand_type significand; int exponent; }; template FMT_API auto to_decimal(T x) noexcept -> decimal_fp; } // namespace dragonbox // Returns true iff Float has the implicit bit which is not stored. template constexpr bool has_implicit_bit() { // An 80-bit FP number has a 64-bit significand an no implicit bit. return std::numeric_limits::digits != 64; } // Returns the number of significand bits stored in Float. The implicit bit is // not counted since it is not stored. template constexpr int num_significand_bits() { // std::numeric_limits may not support __float128. return is_float128() ? 112 : (std::numeric_limits::digits - (has_implicit_bit() ? 1 : 0)); } template constexpr auto exponent_mask() -> typename dragonbox::float_info::carrier_uint { using float_uint = typename dragonbox::float_info::carrier_uint; return ((float_uint(1) << dragonbox::float_info::exponent_bits) - 1) << num_significand_bits(); } template constexpr auto exponent_bias() -> int { // std::numeric_limits may not support __float128. return is_float128() ? 16383 : std::numeric_limits::max_exponent - 1; } // Writes the exponent exp in the form "[+-]d{2,3}" to buffer. template FMT_CONSTEXPR auto write_exponent(int exp, It it) -> It { FMT_ASSERT(-10000 < exp && exp < 10000, "exponent out of range"); if (exp < 0) { *it++ = static_cast('-'); exp = -exp; } else { *it++ = static_cast('+'); } if (exp >= 100) { const char* top = digits2(to_unsigned(exp / 100)); if (exp >= 1000) *it++ = static_cast(top[0]); *it++ = static_cast(top[1]); exp %= 100; } const char* d = digits2(to_unsigned(exp)); *it++ = static_cast(d[0]); *it++ = static_cast(d[1]); return it; } // A floating-point number f * pow(2, e) where F is an unsigned type. template struct basic_fp { F f; int e; static constexpr const int num_significand_bits = static_cast(sizeof(F) * num_bits()); constexpr basic_fp() : f(0), e(0) {} constexpr basic_fp(uint64_t f_val, int e_val) : f(f_val), e(e_val) {} // Constructs fp from an IEEE754 floating-point number. template FMT_CONSTEXPR basic_fp(Float n) { assign(n); } // Assigns n to this and return true iff predecessor is closer than successor. template ::value)> FMT_CONSTEXPR auto assign(Float n) -> bool { static_assert(std::numeric_limits::digits <= 113, "unsupported FP"); // Assume Float is in the format [sign][exponent][significand]. using carrier_uint = typename dragonbox::float_info::carrier_uint; const auto num_float_significand_bits = detail::num_significand_bits(); const auto implicit_bit = carrier_uint(1) << num_float_significand_bits; const auto significand_mask = implicit_bit - 1; auto u = bit_cast(n); f = static_cast(u & significand_mask); auto biased_e = static_cast((u & exponent_mask()) >> num_float_significand_bits); // The predecessor is closer if n is a normalized power of 2 (f == 0) // other than the smallest normalized number (biased_e > 1). auto is_predecessor_closer = f == 0 && biased_e > 1; if (biased_e == 0) biased_e = 1; // Subnormals use biased exponent 1 (min exponent). else if (has_implicit_bit()) f += static_cast(implicit_bit); e = biased_e - exponent_bias() - num_float_significand_bits; if (!has_implicit_bit()) ++e; return is_predecessor_closer; } template ::value)> FMT_CONSTEXPR auto assign(Float n) -> bool { static_assert(std::numeric_limits::is_iec559, "unsupported FP"); return assign(static_cast(n)); } }; using fp = basic_fp; // Normalizes the value converted from double and multiplied by (1 << SHIFT). template FMT_CONSTEXPR basic_fp normalize(basic_fp value) { // Handle subnormals. const auto implicit_bit = F(1) << num_significand_bits(); const auto shifted_implicit_bit = implicit_bit << SHIFT; while ((value.f & shifted_implicit_bit) == 0) { value.f <<= 1; --value.e; } // Subtract 1 to account for hidden bit. const auto offset = basic_fp::num_significand_bits - num_significand_bits() - SHIFT - 1; value.f <<= offset; value.e -= offset; return value; } // Computes lhs * rhs / pow(2, 64) rounded to nearest with half-up tie breaking. FMT_CONSTEXPR inline uint64_t multiply(uint64_t lhs, uint64_t rhs) { #if FMT_USE_INT128 auto product = static_cast<__uint128_t>(lhs) * rhs; auto f = static_cast(product >> 64); return (static_cast(product) & (1ULL << 63)) != 0 ? f + 1 : f; #else // Multiply 32-bit parts of significands. uint64_t mask = (1ULL << 32) - 1; uint64_t a = lhs >> 32, b = lhs & mask; uint64_t c = rhs >> 32, d = rhs & mask; uint64_t ac = a * c, bc = b * c, ad = a * d, bd = b * d; // Compute mid 64-bit of result and round. uint64_t mid = (bd >> 32) + (ad & mask) + (bc & mask) + (1U << 31); return ac + (ad >> 32) + (bc >> 32) + (mid >> 32); #endif } FMT_CONSTEXPR inline fp operator*(fp x, fp y) { return {multiply(x.f, y.f), x.e + y.e + 64}; } template struct basic_data { // Normalized 64-bit significands of pow(10, k), for k = -348, -340, ..., 340. // These are generated by support/compute-powers.py. static constexpr uint64_t pow10_significands[87] = { 0xfa8fd5a0081c0288, 0xbaaee17fa23ebf76, 0x8b16fb203055ac76, 0xcf42894a5dce35ea, 0x9a6bb0aa55653b2d, 0xe61acf033d1a45df, 0xab70fe17c79ac6ca, 0xff77b1fcbebcdc4f, 0xbe5691ef416bd60c, 0x8dd01fad907ffc3c, 0xd3515c2831559a83, 0x9d71ac8fada6c9b5, 0xea9c227723ee8bcb, 0xaecc49914078536d, 0x823c12795db6ce57, 0xc21094364dfb5637, 0x9096ea6f3848984f, 0xd77485cb25823ac7, 0xa086cfcd97bf97f4, 0xef340a98172aace5, 0xb23867fb2a35b28e, 0x84c8d4dfd2c63f3b, 0xc5dd44271ad3cdba, 0x936b9fcebb25c996, 0xdbac6c247d62a584, 0xa3ab66580d5fdaf6, 0xf3e2f893dec3f126, 0xb5b5ada8aaff80b8, 0x87625f056c7c4a8b, 0xc9bcff6034c13053, 0x964e858c91ba2655, 0xdff9772470297ebd, 0xa6dfbd9fb8e5b88f, 0xf8a95fcf88747d94, 0xb94470938fa89bcf, 0x8a08f0f8bf0f156b, 0xcdb02555653131b6, 0x993fe2c6d07b7fac, 0xe45c10c42a2b3b06, 0xaa242499697392d3, 0xfd87b5f28300ca0e, 0xbce5086492111aeb, 0x8cbccc096f5088cc, 0xd1b71758e219652c, 0x9c40000000000000, 0xe8d4a51000000000, 0xad78ebc5ac620000, 0x813f3978f8940984, 0xc097ce7bc90715b3, 0x8f7e32ce7bea5c70, 0xd5d238a4abe98068, 0x9f4f2726179a2245, 0xed63a231d4c4fb27, 0xb0de65388cc8ada8, 0x83c7088e1aab65db, 0xc45d1df942711d9a, 0x924d692ca61be758, 0xda01ee641a708dea, 0xa26da3999aef774a, 0xf209787bb47d6b85, 0xb454e4a179dd1877, 0x865b86925b9bc5c2, 0xc83553c5c8965d3d, 0x952ab45cfa97a0b3, 0xde469fbd99a05fe3, 0xa59bc234db398c25, 0xf6c69a72a3989f5c, 0xb7dcbf5354e9bece, 0x88fcf317f22241e2, 0xcc20ce9bd35c78a5, 0x98165af37b2153df, 0xe2a0b5dc971f303a, 0xa8d9d1535ce3b396, 0xfb9b7cd9a4a7443c, 0xbb764c4ca7a44410, 0x8bab8eefb6409c1a, 0xd01fef10a657842c, 0x9b10a4e5e9913129, 0xe7109bfba19c0c9d, 0xac2820d9623bf429, 0x80444b5e7aa7cf85, 0xbf21e44003acdd2d, 0x8e679c2f5e44ff8f, 0xd433179d9c8cb841, 0x9e19db92b4e31ba9, 0xeb96bf6ebadf77d9, 0xaf87023b9bf0ee6b, }; #if FMT_GCC_VERSION && FMT_GCC_VERSION < 409 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wnarrowing" #endif // Binary exponents of pow(10, k), for k = -348, -340, ..., 340, corresponding // to significands above. static constexpr int16_t pow10_exponents[87] = { -1220, -1193, -1166, -1140, -1113, -1087, -1060, -1034, -1007, -980, -954, -927, -901, -874, -847, -821, -794, -768, -741, -715, -688, -661, -635, -608, -582, -555, -529, -502, -475, -449, -422, -396, -369, -343, -316, -289, -263, -236, -210, -183, -157, -130, -103, -77, -50, -24, 3, 30, 56, 83, 109, 136, 162, 189, 216, 242, 269, 295, 322, 348, 375, 402, 428, 455, 481, 508, 534, 561, 588, 614, 641, 667, 694, 720, 747, 774, 800, 827, 853, 880, 907, 933, 960, 986, 1013, 1039, 1066}; #if FMT_GCC_VERSION && FMT_GCC_VERSION < 409 # pragma GCC diagnostic pop #endif static constexpr uint64_t power_of_10_64[20] = { 1, FMT_POWERS_OF_10(1ULL), FMT_POWERS_OF_10(1000000000ULL), 10000000000000000000ULL}; // For checking rounding thresholds. // The kth entry is chosen to be the smallest integer such that the // upper 32-bits of 10^(k+1) times it is strictly bigger than 5 * 10^k. static constexpr uint32_t fractional_part_rounding_thresholds[8] = { 2576980378, // ceil(2^31 + 2^32/10^1) 2190433321, // ceil(2^31 + 2^32/10^2) 2151778616, // ceil(2^31 + 2^32/10^3) 2147913145, // ceil(2^31 + 2^32/10^4) 2147526598, // ceil(2^31 + 2^32/10^5) 2147487943, // ceil(2^31 + 2^32/10^6) 2147484078, // ceil(2^31 + 2^32/10^7) 2147483691 // ceil(2^31 + 2^32/10^8) }; }; #if FMT_CPLUSPLUS < 201703L template constexpr uint64_t basic_data::pow10_significands[]; template constexpr int16_t basic_data::pow10_exponents[]; template constexpr uint64_t basic_data::power_of_10_64[]; template constexpr uint32_t basic_data::fractional_part_rounding_thresholds[]; #endif // This is a struct rather than an alias to avoid shadowing warnings in gcc. struct data : basic_data<> {}; // Returns a cached power of 10 `c_k = c_k.f * pow(2, c_k.e)` such that its // (binary) exponent satisfies `min_exponent <= c_k.e <= min_exponent + 28`. FMT_CONSTEXPR inline fp get_cached_power(int min_exponent, int& pow10_exponent) { const int shift = 32; // log10(2) = 0x0.4d104d427de7fbcc... const int64_t significand = 0x4d104d427de7fbcc; int index = static_cast( ((min_exponent + fp::num_significand_bits - 1) * (significand >> shift) + ((int64_t(1) << shift) - 1)) // ceil >> 32 // arithmetic shift ); // Decimal exponent of the first (smallest) cached power of 10. const int first_dec_exp = -348; // Difference between 2 consecutive decimal exponents in cached powers of 10. const int dec_exp_step = 8; index = (index - first_dec_exp - 1) / dec_exp_step + 1; pow10_exponent = first_dec_exp + index * dec_exp_step; // Using *(x + index) instead of x[index] avoids an issue with some compilers // using the EDG frontend (e.g. nvhpc/22.3 in C++17 mode). return {*(data::pow10_significands + index), *(data::pow10_exponents + index)}; } template using convert_float_result = conditional_t::value || std::numeric_limits::digits == std::numeric_limits::digits, double, T>; template constexpr auto convert_float(T value) -> convert_float_result { return static_cast>(value); } template FMT_NOINLINE FMT_CONSTEXPR auto fill(OutputIt it, size_t n, const fill_t& fill) -> OutputIt { auto fill_size = fill.size(); if (fill_size == 1) return detail::fill_n(it, n, fill[0]); auto data = fill.data(); for (size_t i = 0; i < n; ++i) it = copy_str(data, data + fill_size, it); return it; } // Writes the output of f, padded according to format specifications in specs. // size: output size in code units. // width: output display width in (terminal) column positions. template FMT_CONSTEXPR auto write_padded(OutputIt out, const format_specs& specs, size_t size, size_t width, F&& f) -> OutputIt { static_assert(align == align::left || align == align::right, ""); unsigned spec_width = to_unsigned(specs.width); size_t padding = spec_width > width ? spec_width - width : 0; // Shifts are encoded as string literals because static constexpr is not // supported in constexpr functions. auto* shifts = align == align::left ? "\x1f\x1f\x00\x01" : "\x00\x1f\x00\x01"; size_t left_padding = padding >> shifts[specs.align]; size_t right_padding = padding - left_padding; auto it = reserve(out, size + padding * specs.fill.size()); if (left_padding != 0) it = fill(it, left_padding, specs.fill); it = f(it); if (right_padding != 0) it = fill(it, right_padding, specs.fill); return base_iterator(out, it); } template constexpr auto write_padded(OutputIt out, const format_specs& specs, size_t size, F&& f) -> OutputIt { return write_padded(out, specs, size, size, f); } template FMT_CONSTEXPR auto write_bytes(OutputIt out, string_view bytes, const format_specs& specs) -> OutputIt { return write_padded( out, specs, bytes.size(), [bytes](reserve_iterator it) { const char* data = bytes.data(); return copy_str(data, data + bytes.size(), it); }); } template auto write_ptr(OutputIt out, UIntPtr value, const format_specs* specs) -> OutputIt { int num_digits = count_digits<4>(value); auto size = to_unsigned(num_digits) + size_t(2); auto write = [=](reserve_iterator it) { *it++ = static_cast('0'); *it++ = static_cast('x'); return format_uint<4, Char>(it, value, num_digits); }; return specs ? write_padded(out, *specs, size, write) : base_iterator(out, write(reserve(out, size))); } // Returns true iff the code point cp is printable. FMT_API auto is_printable(uint32_t cp) -> bool; inline auto needs_escape(uint32_t cp) -> bool { return cp < 0x20 || cp == 0x7f || cp == '"' || cp == '\\' || !is_printable(cp); } template struct find_escape_result { const Char* begin; const Char* end; uint32_t cp; }; template using make_unsigned_char = typename conditional_t::value, std::make_unsigned, type_identity>::type; template auto find_escape(const Char* begin, const Char* end) -> find_escape_result { for (; begin != end; ++begin) { uint32_t cp = static_cast>(*begin); if (const_check(sizeof(Char) == 1) && cp >= 0x80) continue; if (needs_escape(cp)) return {begin, begin + 1, cp}; } return {begin, nullptr, 0}; } inline auto find_escape(const char* begin, const char* end) -> find_escape_result { if (!is_utf8()) return find_escape(begin, end); auto result = find_escape_result{end, nullptr, 0}; for_each_codepoint(string_view(begin, to_unsigned(end - begin)), [&](uint32_t cp, string_view sv) { if (needs_escape(cp)) { result = {sv.begin(), sv.end(), cp}; return false; } return true; }); return result; } #define FMT_STRING_IMPL(s, base, explicit) \ [] { \ /* Use the hidden visibility as a workaround for a GCC bug (#1973). */ \ /* Use a macro-like name to avoid shadowing warnings. */ \ struct FMT_VISIBILITY("hidden") FMT_COMPILE_STRING : base { \ using char_type FMT_MAYBE_UNUSED = fmt::remove_cvref_t; \ FMT_MAYBE_UNUSED FMT_CONSTEXPR explicit \ operator fmt::basic_string_view() const { \ return fmt::detail_exported::compile_string_to_view(s); \ } \ }; \ return FMT_COMPILE_STRING(); \ }() /** \rst Constructs a compile-time format string from a string literal *s*. **Example**:: // A compile-time error because 'd' is an invalid specifier for strings. std::string s = fmt::format(FMT_STRING("{:d}"), "foo"); \endrst */ #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string, ) template auto write_codepoint(OutputIt out, char prefix, uint32_t cp) -> OutputIt { *out++ = static_cast('\\'); *out++ = static_cast(prefix); Char buf[width]; fill_n(buf, width, static_cast('0')); format_uint<4>(buf, cp, width); return copy_str(buf, buf + width, out); } template auto write_escaped_cp(OutputIt out, const find_escape_result& escape) -> OutputIt { auto c = static_cast(escape.cp); switch (escape.cp) { case '\n': *out++ = static_cast('\\'); c = static_cast('n'); break; case '\r': *out++ = static_cast('\\'); c = static_cast('r'); break; case '\t': *out++ = static_cast('\\'); c = static_cast('t'); break; case '"': FMT_FALLTHROUGH; case '\'': FMT_FALLTHROUGH; case '\\': *out++ = static_cast('\\'); break; default: if (escape.cp < 0x100) { return write_codepoint<2, Char>(out, 'x', escape.cp); } if (escape.cp < 0x10000) { return write_codepoint<4, Char>(out, 'u', escape.cp); } if (escape.cp < 0x110000) { return write_codepoint<8, Char>(out, 'U', escape.cp); } for (Char escape_char : basic_string_view( escape.begin, to_unsigned(escape.end - escape.begin))) { out = write_codepoint<2, Char>(out, 'x', static_cast(escape_char) & 0xFF); } return out; } *out++ = c; return out; } template auto write_escaped_string(OutputIt out, basic_string_view str) -> OutputIt { *out++ = static_cast('"'); auto begin = str.begin(), end = str.end(); do { auto escape = find_escape(begin, end); out = copy_str(begin, escape.begin, out); begin = escape.end; if (!begin) break; out = write_escaped_cp(out, escape); } while (begin != end); *out++ = static_cast('"'); return out; } template auto write_escaped_char(OutputIt out, Char v) -> OutputIt { *out++ = static_cast('\''); if ((needs_escape(static_cast(v)) && v != static_cast('"')) || v == static_cast('\'')) { out = write_escaped_cp( out, find_escape_result{&v, &v + 1, static_cast(v)}); } else { *out++ = v; } *out++ = static_cast('\''); return out; } template FMT_CONSTEXPR auto write_char(OutputIt out, Char value, const format_specs& specs) -> OutputIt { bool is_debug = specs.type == presentation_type::debug; return write_padded(out, specs, 1, [=](reserve_iterator it) { if (is_debug) return write_escaped_char(it, value); *it++ = value; return it; }); } template FMT_CONSTEXPR auto write(OutputIt out, Char value, const format_specs& specs, locale_ref loc = {}) -> OutputIt { // char is formatted as unsigned char for consistency across platforms. using unsigned_type = conditional_t::value, unsigned char, unsigned>; return check_char_specs(specs) ? write_char(out, value, specs) : write(out, static_cast(value), specs, loc); } // Data for write_int that doesn't depend on output iterator type. It is used to // avoid template code bloat. template struct write_int_data { size_t size; size_t padding; FMT_CONSTEXPR write_int_data(int num_digits, unsigned prefix, const format_specs& specs) : size((prefix >> 24) + to_unsigned(num_digits)), padding(0) { if (specs.align == align::numeric) { auto width = to_unsigned(specs.width); if (width > size) { padding = width - size; size = width; } } else if (specs.precision > num_digits) { size = (prefix >> 24) + to_unsigned(specs.precision); padding = to_unsigned(specs.precision - num_digits); } } }; // Writes an integer in the format // // where are written by write_digits(it). // prefix contains chars in three lower bytes and the size in the fourth byte. template FMT_CONSTEXPR FMT_INLINE auto write_int(OutputIt out, int num_digits, unsigned prefix, const format_specs& specs, W write_digits) -> OutputIt { // Slightly faster check for specs.width == 0 && specs.precision == -1. if ((specs.width | (specs.precision + 1)) == 0) { auto it = reserve(out, to_unsigned(num_digits) + (prefix >> 24)); if (prefix != 0) { for (unsigned p = prefix & 0xffffff; p != 0; p >>= 8) *it++ = static_cast(p & 0xff); } return base_iterator(out, write_digits(it)); } auto data = write_int_data(num_digits, prefix, specs); return write_padded( out, specs, data.size, [=](reserve_iterator it) { for (unsigned p = prefix & 0xffffff; p != 0; p >>= 8) *it++ = static_cast(p & 0xff); it = detail::fill_n(it, data.padding, static_cast('0')); return write_digits(it); }); } template class digit_grouping { private: std::string grouping_; std::basic_string thousands_sep_; struct next_state { std::string::const_iterator group; int pos; }; next_state initial_state() const { return {grouping_.begin(), 0}; } // Returns the next digit group separator position. int next(next_state& state) const { if (thousands_sep_.empty()) return max_value(); if (state.group == grouping_.end()) return state.pos += grouping_.back(); if (*state.group <= 0 || *state.group == max_value()) return max_value(); state.pos += *state.group++; return state.pos; } public: explicit digit_grouping(locale_ref loc, bool localized = true) { if (!localized) return; auto sep = thousands_sep(loc); grouping_ = sep.grouping; if (sep.thousands_sep) thousands_sep_.assign(1, sep.thousands_sep); } digit_grouping(std::string grouping, std::basic_string sep) : grouping_(std::move(grouping)), thousands_sep_(std::move(sep)) {} bool has_separator() const { return !thousands_sep_.empty(); } int count_separators(int num_digits) const { int count = 0; auto state = initial_state(); while (num_digits > next(state)) ++count; return count; } // Applies grouping to digits and write the output to out. template Out apply(Out out, basic_string_view digits) const { auto num_digits = static_cast(digits.size()); auto separators = basic_memory_buffer(); separators.push_back(0); auto state = initial_state(); while (int i = next(state)) { if (i >= num_digits) break; separators.push_back(i); } for (int i = 0, sep_index = static_cast(separators.size() - 1); i < num_digits; ++i) { if (num_digits - i == separators[sep_index]) { out = copy_str(thousands_sep_.data(), thousands_sep_.data() + thousands_sep_.size(), out); --sep_index; } *out++ = static_cast(digits[to_unsigned(i)]); } return out; } }; // Writes a decimal integer with digit grouping. template auto write_int(OutputIt out, UInt value, unsigned prefix, const format_specs& specs, const digit_grouping& grouping) -> OutputIt { static_assert(std::is_same, UInt>::value, ""); int num_digits = count_digits(value); char digits[40]; format_decimal(digits, value, num_digits); unsigned size = to_unsigned((prefix != 0 ? 1 : 0) + num_digits + grouping.count_separators(num_digits)); return write_padded( out, specs, size, size, [&](reserve_iterator it) { if (prefix != 0) { char sign = static_cast(prefix); *it++ = static_cast(sign); } return grouping.apply(it, string_view(digits, to_unsigned(num_digits))); }); } // Writes a localized value. FMT_API auto write_loc(appender out, loc_value value, const format_specs<>& specs, locale_ref loc) -> bool; template inline auto write_loc(OutputIt, loc_value, const format_specs&, locale_ref) -> bool { return false; } FMT_CONSTEXPR inline void prefix_append(unsigned& prefix, unsigned value) { prefix |= prefix != 0 ? value << 8 : value; prefix += (1u + (value > 0xff ? 1 : 0)) << 24; } template struct write_int_arg { UInt abs_value; unsigned prefix; }; template FMT_CONSTEXPR auto make_write_int_arg(T value, sign_t sign) -> write_int_arg> { auto prefix = 0u; auto abs_value = static_cast>(value); if (is_negative(value)) { prefix = 0x01000000 | '-'; abs_value = 0 - abs_value; } else { constexpr const unsigned prefixes[4] = {0, 0, 0x1000000u | '+', 0x1000000u | ' '}; prefix = prefixes[sign]; } return {abs_value, prefix}; } template struct loc_writer { buffer_appender out; const format_specs& specs; std::basic_string sep; std::string grouping; std::basic_string decimal_point; template ::value)> auto operator()(T value) -> bool { auto arg = make_write_int_arg(value, specs.sign); write_int(out, static_cast>(arg.abs_value), arg.prefix, specs, digit_grouping(grouping, sep)); return true; } template ::value)> auto operator()(T) -> bool { return false; } }; template FMT_CONSTEXPR FMT_INLINE auto write_int(OutputIt out, write_int_arg arg, const format_specs& specs, locale_ref) -> OutputIt { static_assert(std::is_same>::value, ""); auto abs_value = arg.abs_value; auto prefix = arg.prefix; switch (specs.type) { case presentation_type::none: case presentation_type::dec: { auto num_digits = count_digits(abs_value); return write_int( out, num_digits, prefix, specs, [=](reserve_iterator it) { return format_decimal(it, abs_value, num_digits).end; }); } case presentation_type::hex_lower: case presentation_type::hex_upper: { bool upper = specs.type == presentation_type::hex_upper; if (specs.alt) prefix_append(prefix, unsigned(upper ? 'X' : 'x') << 8 | '0'); int num_digits = count_digits<4>(abs_value); return write_int( out, num_digits, prefix, specs, [=](reserve_iterator it) { return format_uint<4, Char>(it, abs_value, num_digits, upper); }); } case presentation_type::bin_lower: case presentation_type::bin_upper: { bool upper = specs.type == presentation_type::bin_upper; if (specs.alt) prefix_append(prefix, unsigned(upper ? 'B' : 'b') << 8 | '0'); int num_digits = count_digits<1>(abs_value); return write_int(out, num_digits, prefix, specs, [=](reserve_iterator it) { return format_uint<1, Char>(it, abs_value, num_digits); }); } case presentation_type::oct: { int num_digits = count_digits<3>(abs_value); // Octal prefix '0' is counted as a digit, so only add it if precision // is not greater than the number of digits. if (specs.alt && specs.precision <= num_digits && abs_value != 0) prefix_append(prefix, '0'); return write_int(out, num_digits, prefix, specs, [=](reserve_iterator it) { return format_uint<3, Char>(it, abs_value, num_digits); }); } case presentation_type::chr: return write_char(out, static_cast(abs_value), specs); default: throw_format_error("invalid format specifier"); } return out; } template FMT_CONSTEXPR FMT_NOINLINE auto write_int_noinline( OutputIt out, write_int_arg arg, const format_specs& specs, locale_ref loc) -> OutputIt { return write_int(out, arg, specs, loc); } template ::value && !std::is_same::value && std::is_same>::value)> FMT_CONSTEXPR FMT_INLINE auto write(OutputIt out, T value, const format_specs& specs, locale_ref loc) -> OutputIt { if (specs.localized && write_loc(out, value, specs, loc)) return out; return write_int_noinline(out, make_write_int_arg(value, specs.sign), specs, loc); } // An inlined version of write used in format string compilation. template ::value && !std::is_same::value && !std::is_same>::value)> FMT_CONSTEXPR FMT_INLINE auto write(OutputIt out, T value, const format_specs& specs, locale_ref loc) -> OutputIt { if (specs.localized && write_loc(out, value, specs, loc)) return out; return write_int(out, make_write_int_arg(value, specs.sign), specs, loc); } // An output iterator that counts the number of objects written to it and // discards them. class counting_iterator { private: size_t count_; public: using iterator_category = std::output_iterator_tag; using difference_type = std::ptrdiff_t; using pointer = void; using reference = void; FMT_UNCHECKED_ITERATOR(counting_iterator); struct value_type { template FMT_CONSTEXPR void operator=(const T&) {} }; FMT_CONSTEXPR counting_iterator() : count_(0) {} FMT_CONSTEXPR size_t count() const { return count_; } FMT_CONSTEXPR counting_iterator& operator++() { ++count_; return *this; } FMT_CONSTEXPR counting_iterator operator++(int) { auto it = *this; ++*this; return it; } FMT_CONSTEXPR friend counting_iterator operator+(counting_iterator it, difference_type n) { it.count_ += static_cast(n); return it; } FMT_CONSTEXPR value_type operator*() const { return {}; } }; template FMT_CONSTEXPR auto write(OutputIt out, basic_string_view s, const format_specs& specs) -> OutputIt { auto data = s.data(); auto size = s.size(); if (specs.precision >= 0 && to_unsigned(specs.precision) < size) size = code_point_index(s, to_unsigned(specs.precision)); bool is_debug = specs.type == presentation_type::debug; size_t width = 0; if (specs.width != 0) { if (is_debug) width = write_escaped_string(counting_iterator{}, s).count(); else width = compute_width(basic_string_view(data, size)); } return write_padded(out, specs, size, width, [=](reserve_iterator it) { if (is_debug) return write_escaped_string(it, s); return copy_str(data, data + size, it); }); } template FMT_CONSTEXPR auto write(OutputIt out, basic_string_view> s, const format_specs& specs, locale_ref) -> OutputIt { return write(out, s, specs); } template FMT_CONSTEXPR auto write(OutputIt out, const Char* s, const format_specs& specs, locale_ref) -> OutputIt { return specs.type != presentation_type::pointer ? write(out, basic_string_view(s), specs, {}) : write_ptr(out, bit_cast(s), &specs); } template ::value && !std::is_same::value && !std::is_same::value)> FMT_CONSTEXPR auto write(OutputIt out, T value) -> OutputIt { auto abs_value = static_cast>(value); bool negative = is_negative(value); // Don't do -abs_value since it trips unsigned-integer-overflow sanitizer. if (negative) abs_value = ~abs_value + 1; int num_digits = count_digits(abs_value); auto size = (negative ? 1 : 0) + static_cast(num_digits); auto it = reserve(out, size); if (auto ptr = to_pointer(it, size)) { if (negative) *ptr++ = static_cast('-'); format_decimal(ptr, abs_value, num_digits); return out; } if (negative) *it++ = static_cast('-'); it = format_decimal(it, abs_value, num_digits).end; return base_iterator(out, it); } // A floating-point presentation format. enum class float_format : unsigned char { general, // General: exponent notation or fixed point based on magnitude. exp, // Exponent notation with the default precision of 6, e.g. 1.2e-3. fixed, // Fixed point with the default precision of 6, e.g. 0.0012. hex }; struct float_specs { int precision; float_format format : 8; sign_t sign : 8; bool upper : 1; bool locale : 1; bool binary32 : 1; bool showpoint : 1; }; template FMT_CONSTEXPR auto parse_float_type_spec(const format_specs& specs, ErrorHandler&& eh = {}) -> float_specs { auto result = float_specs(); result.showpoint = specs.alt; result.locale = specs.localized; switch (specs.type) { case presentation_type::none: result.format = float_format::general; break; case presentation_type::general_upper: result.upper = true; FMT_FALLTHROUGH; case presentation_type::general_lower: result.format = float_format::general; break; case presentation_type::exp_upper: result.upper = true; FMT_FALLTHROUGH; case presentation_type::exp_lower: result.format = float_format::exp; result.showpoint |= specs.precision != 0; break; case presentation_type::fixed_upper: result.upper = true; FMT_FALLTHROUGH; case presentation_type::fixed_lower: result.format = float_format::fixed; result.showpoint |= specs.precision != 0; break; case presentation_type::hexfloat_upper: result.upper = true; FMT_FALLTHROUGH; case presentation_type::hexfloat_lower: result.format = float_format::hex; break; default: eh.on_error("invalid format specifier"); break; } return result; } template FMT_CONSTEXPR20 auto write_nonfinite(OutputIt out, bool isnan, format_specs specs, const float_specs& fspecs) -> OutputIt { auto str = isnan ? (fspecs.upper ? "NAN" : "nan") : (fspecs.upper ? "INF" : "inf"); constexpr size_t str_size = 3; auto sign = fspecs.sign; auto size = str_size + (sign ? 1 : 0); // Replace '0'-padding with space for non-finite values. const bool is_zero_fill = specs.fill.size() == 1 && *specs.fill.data() == static_cast('0'); if (is_zero_fill) specs.fill[0] = static_cast(' '); return write_padded(out, specs, size, [=](reserve_iterator it) { if (sign) *it++ = detail::sign(sign); return copy_str(str, str + str_size, it); }); } // A decimal floating-point number significand * pow(10, exp). struct big_decimal_fp { const char* significand; int significand_size; int exponent; }; constexpr auto get_significand_size(const big_decimal_fp& f) -> int { return f.significand_size; } template inline auto get_significand_size(const dragonbox::decimal_fp& f) -> int { return count_digits(f.significand); } template constexpr auto write_significand(OutputIt out, const char* significand, int significand_size) -> OutputIt { return copy_str(significand, significand + significand_size, out); } template inline auto write_significand(OutputIt out, UInt significand, int significand_size) -> OutputIt { return format_decimal(out, significand, significand_size).end; } template FMT_CONSTEXPR20 auto write_significand(OutputIt out, T significand, int significand_size, int exponent, const Grouping& grouping) -> OutputIt { if (!grouping.has_separator()) { out = write_significand(out, significand, significand_size); return detail::fill_n(out, exponent, static_cast('0')); } auto buffer = memory_buffer(); write_significand(appender(buffer), significand, significand_size); detail::fill_n(appender(buffer), exponent, '0'); return grouping.apply(out, string_view(buffer.data(), buffer.size())); } template ::value)> inline auto write_significand(Char* out, UInt significand, int significand_size, int integral_size, Char decimal_point) -> Char* { if (!decimal_point) return format_decimal(out, significand, significand_size).end; out += significand_size + 1; Char* end = out; int floating_size = significand_size - integral_size; for (int i = floating_size / 2; i > 0; --i) { out -= 2; copy2(out, digits2(static_cast(significand % 100))); significand /= 100; } if (floating_size % 2 != 0) { *--out = static_cast('0' + significand % 10); significand /= 10; } *--out = decimal_point; format_decimal(out - integral_size, significand, integral_size); return end; } template >::value)> inline auto write_significand(OutputIt out, UInt significand, int significand_size, int integral_size, Char decimal_point) -> OutputIt { // Buffer is large enough to hold digits (digits10 + 1) and a decimal point. Char buffer[digits10() + 2]; auto end = write_significand(buffer, significand, significand_size, integral_size, decimal_point); return detail::copy_str_noinline(buffer, end, out); } template FMT_CONSTEXPR auto write_significand(OutputIt out, const char* significand, int significand_size, int integral_size, Char decimal_point) -> OutputIt { out = detail::copy_str_noinline(significand, significand + integral_size, out); if (!decimal_point) return out; *out++ = decimal_point; return detail::copy_str_noinline(significand + integral_size, significand + significand_size, out); } template FMT_CONSTEXPR20 auto write_significand(OutputIt out, T significand, int significand_size, int integral_size, Char decimal_point, const Grouping& grouping) -> OutputIt { if (!grouping.has_separator()) { return write_significand(out, significand, significand_size, integral_size, decimal_point); } auto buffer = basic_memory_buffer(); write_significand(buffer_appender(buffer), significand, significand_size, integral_size, decimal_point); grouping.apply( out, basic_string_view(buffer.data(), to_unsigned(integral_size))); return detail::copy_str_noinline(buffer.data() + integral_size, buffer.end(), out); } template > FMT_CONSTEXPR20 auto do_write_float(OutputIt out, const DecimalFP& f, const format_specs& specs, float_specs fspecs, locale_ref loc) -> OutputIt { auto significand = f.significand; int significand_size = get_significand_size(f); const Char zero = static_cast('0'); auto sign = fspecs.sign; size_t size = to_unsigned(significand_size) + (sign ? 1 : 0); using iterator = reserve_iterator; Char decimal_point = fspecs.locale ? detail::decimal_point(loc) : static_cast('.'); int output_exp = f.exponent + significand_size - 1; auto use_exp_format = [=]() { if (fspecs.format == float_format::exp) return true; if (fspecs.format != float_format::general) return false; // Use the fixed notation if the exponent is in [exp_lower, exp_upper), // e.g. 0.0001 instead of 1e-04. Otherwise use the exponent notation. const int exp_lower = -4, exp_upper = 16; return output_exp < exp_lower || output_exp >= (fspecs.precision > 0 ? fspecs.precision : exp_upper); }; if (use_exp_format()) { int num_zeros = 0; if (fspecs.showpoint) { num_zeros = fspecs.precision - significand_size; if (num_zeros < 0) num_zeros = 0; size += to_unsigned(num_zeros); } else if (significand_size == 1) { decimal_point = Char(); } auto abs_output_exp = output_exp >= 0 ? output_exp : -output_exp; int exp_digits = 2; if (abs_output_exp >= 100) exp_digits = abs_output_exp >= 1000 ? 4 : 3; size += to_unsigned((decimal_point ? 1 : 0) + 2 + exp_digits); char exp_char = fspecs.upper ? 'E' : 'e'; auto write = [=](iterator it) { if (sign) *it++ = detail::sign(sign); // Insert a decimal point after the first digit and add an exponent. it = write_significand(it, significand, significand_size, 1, decimal_point); if (num_zeros > 0) it = detail::fill_n(it, num_zeros, zero); *it++ = static_cast(exp_char); return write_exponent(output_exp, it); }; return specs.width > 0 ? write_padded(out, specs, size, write) : base_iterator(out, write(reserve(out, size))); } int exp = f.exponent + significand_size; if (f.exponent >= 0) { // 1234e5 -> 123400000[.0+] size += to_unsigned(f.exponent); int num_zeros = fspecs.precision - exp; abort_fuzzing_if(num_zeros > 5000); if (fspecs.showpoint) { ++size; if (num_zeros <= 0 && fspecs.format != float_format::fixed) num_zeros = 0; if (num_zeros > 0) size += to_unsigned(num_zeros); } auto grouping = Grouping(loc, fspecs.locale); size += to_unsigned(grouping.count_separators(exp)); return write_padded(out, specs, size, [&](iterator it) { if (sign) *it++ = detail::sign(sign); it = write_significand(it, significand, significand_size, f.exponent, grouping); if (!fspecs.showpoint) return it; *it++ = decimal_point; return num_zeros > 0 ? detail::fill_n(it, num_zeros, zero) : it; }); } else if (exp > 0) { // 1234e-2 -> 12.34[0+] int num_zeros = fspecs.showpoint ? fspecs.precision - significand_size : 0; size += 1 + to_unsigned(num_zeros > 0 ? num_zeros : 0); auto grouping = Grouping(loc, fspecs.locale); size += to_unsigned(grouping.count_separators(exp)); return write_padded(out, specs, size, [&](iterator it) { if (sign) *it++ = detail::sign(sign); it = write_significand(it, significand, significand_size, exp, decimal_point, grouping); return num_zeros > 0 ? detail::fill_n(it, num_zeros, zero) : it; }); } // 1234e-6 -> 0.001234 int num_zeros = -exp; if (significand_size == 0 && fspecs.precision >= 0 && fspecs.precision < num_zeros) { num_zeros = fspecs.precision; } bool pointy = num_zeros != 0 || significand_size != 0 || fspecs.showpoint; size += 1 + (pointy ? 1 : 0) + to_unsigned(num_zeros); return write_padded(out, specs, size, [&](iterator it) { if (sign) *it++ = detail::sign(sign); *it++ = zero; if (!pointy) return it; *it++ = decimal_point; it = detail::fill_n(it, num_zeros, zero); return write_significand(it, significand, significand_size); }); } template class fallback_digit_grouping { public: constexpr fallback_digit_grouping(locale_ref, bool) {} constexpr bool has_separator() const { return false; } constexpr int count_separators(int) const { return 0; } template constexpr Out apply(Out out, basic_string_view) const { return out; } }; template FMT_CONSTEXPR20 auto write_float(OutputIt out, const DecimalFP& f, const format_specs& specs, float_specs fspecs, locale_ref loc) -> OutputIt { if (is_constant_evaluated()) { return do_write_float>(out, f, specs, fspecs, loc); } else { return do_write_float(out, f, specs, fspecs, loc); } } template constexpr bool isnan(T value) { return !(value >= value); // std::isnan doesn't support __float128. } template struct has_isfinite : std::false_type {}; template struct has_isfinite> : std::true_type {}; template ::value&& has_isfinite::value)> FMT_CONSTEXPR20 bool isfinite(T value) { constexpr T inf = T(std::numeric_limits::infinity()); if (is_constant_evaluated()) return !detail::isnan(value) && value < inf && value > -inf; return std::isfinite(value); } template ::value)> FMT_CONSTEXPR bool isfinite(T value) { T inf = T(std::numeric_limits::infinity()); // std::isfinite doesn't support __float128. return !detail::isnan(value) && value < inf && value > -inf; } template ::value)> FMT_INLINE FMT_CONSTEXPR bool signbit(T value) { if (is_constant_evaluated()) { #ifdef __cpp_if_constexpr if constexpr (std::numeric_limits::is_iec559) { auto bits = detail::bit_cast(static_cast(value)); return (bits >> (num_bits() - 1)) != 0; } #endif } return std::signbit(static_cast(value)); } enum class round_direction { unknown, up, down }; // Given the divisor (normally a power of 10), the remainder = v % divisor for // some number v and the error, returns whether v should be rounded up, down, or // whether the rounding direction can't be determined due to error. // error should be less than divisor / 2. FMT_CONSTEXPR inline round_direction get_round_direction(uint64_t divisor, uint64_t remainder, uint64_t error) { FMT_ASSERT(remainder < divisor, ""); // divisor - remainder won't overflow. FMT_ASSERT(error < divisor, ""); // divisor - error won't overflow. FMT_ASSERT(error < divisor - error, ""); // error * 2 won't overflow. // Round down if (remainder + error) * 2 <= divisor. if (remainder <= divisor - remainder && error * 2 <= divisor - remainder * 2) return round_direction::down; // Round up if (remainder - error) * 2 >= divisor. if (remainder >= error && remainder - error >= divisor - (remainder - error)) { return round_direction::up; } return round_direction::unknown; } namespace digits { enum result { more, // Generate more digits. done, // Done generating digits. error // Digit generation cancelled due to an error. }; } struct gen_digits_handler { char* buf; int size; int precision; int exp10; bool fixed; FMT_CONSTEXPR digits::result on_digit(char digit, uint64_t divisor, uint64_t remainder, uint64_t error, bool integral) { FMT_ASSERT(remainder < divisor, ""); buf[size++] = digit; if (!integral && error >= remainder) return digits::error; if (size < precision) return digits::more; if (!integral) { // Check if error * 2 < divisor with overflow prevention. // The check is not needed for the integral part because error = 1 // and divisor > (1 << 32) there. if (error >= divisor || error >= divisor - error) return digits::error; } else { FMT_ASSERT(error == 1 && divisor > 2, ""); } auto dir = get_round_direction(divisor, remainder, error); if (dir != round_direction::up) return dir == round_direction::down ? digits::done : digits::error; ++buf[size - 1]; for (int i = size - 1; i > 0 && buf[i] > '9'; --i) { buf[i] = '0'; ++buf[i - 1]; } if (buf[0] > '9') { buf[0] = '1'; if (fixed) buf[size++] = '0'; else ++exp10; } return digits::done; } }; inline FMT_CONSTEXPR20 void adjust_precision(int& precision, int exp10) { // Adjust fixed precision by exponent because it is relative to decimal // point. if (exp10 > 0 && precision > max_value() - exp10) FMT_THROW(format_error("number is too big")); precision += exp10; } // Generates output using the Grisu digit-gen algorithm. // error: the size of the region (lower, upper) outside of which numbers // definitely do not round to value (Delta in Grisu3). FMT_INLINE FMT_CONSTEXPR20 auto grisu_gen_digits(fp value, uint64_t error, int& exp, gen_digits_handler& handler) -> digits::result { const fp one(1ULL << -value.e, value.e); // The integral part of scaled value (p1 in Grisu) = value / one. It cannot be // zero because it contains a product of two 64-bit numbers with MSB set (due // to normalization) - 1, shifted right by at most 60 bits. auto integral = static_cast(value.f >> -one.e); FMT_ASSERT(integral != 0, ""); FMT_ASSERT(integral == value.f >> -one.e, ""); // The fractional part of scaled value (p2 in Grisu) c = value % one. uint64_t fractional = value.f & (one.f - 1); exp = count_digits(integral); // kappa in Grisu. // Non-fixed formats require at least one digit and no precision adjustment. if (handler.fixed) { adjust_precision(handler.precision, exp + handler.exp10); // Check if precision is satisfied just by leading zeros, e.g. // format("{:.2f}", 0.001) gives "0.00" without generating any digits. if (handler.precision <= 0) { if (handler.precision < 0) return digits::done; // Divide by 10 to prevent overflow. uint64_t divisor = data::power_of_10_64[exp - 1] << -one.e; auto dir = get_round_direction(divisor, value.f / 10, error * 10); if (dir == round_direction::unknown) return digits::error; handler.buf[handler.size++] = dir == round_direction::up ? '1' : '0'; return digits::done; } } // Generate digits for the integral part. This can produce up to 10 digits. do { uint32_t digit = 0; auto divmod_integral = [&](uint32_t divisor) { digit = integral / divisor; integral %= divisor; }; // This optimization by Milo Yip reduces the number of integer divisions by // one per iteration. switch (exp) { case 10: divmod_integral(1000000000); break; case 9: divmod_integral(100000000); break; case 8: divmod_integral(10000000); break; case 7: divmod_integral(1000000); break; case 6: divmod_integral(100000); break; case 5: divmod_integral(10000); break; case 4: divmod_integral(1000); break; case 3: divmod_integral(100); break; case 2: divmod_integral(10); break; case 1: digit = integral; integral = 0; break; default: FMT_ASSERT(false, "invalid number of digits"); } --exp; auto remainder = (static_cast(integral) << -one.e) + fractional; auto result = handler.on_digit(static_cast('0' + digit), data::power_of_10_64[exp] << -one.e, remainder, error, true); if (result != digits::more) return result; } while (exp > 0); // Generate digits for the fractional part. for (;;) { fractional *= 10; error *= 10; char digit = static_cast('0' + (fractional >> -one.e)); fractional &= one.f - 1; --exp; auto result = handler.on_digit(digit, one.f, fractional, error, false); if (result != digits::more) return result; } } class bigint { private: // A bigint is stored as an array of bigits (big digits), with bigit at index // 0 being the least significant one. using bigit = uint32_t; using double_bigit = uint64_t; enum { bigits_capacity = 32 }; basic_memory_buffer bigits_; int exp_; FMT_CONSTEXPR20 bigit operator[](int index) const { return bigits_[to_unsigned(index)]; } FMT_CONSTEXPR20 bigit& operator[](int index) { return bigits_[to_unsigned(index)]; } static constexpr const int bigit_bits = num_bits(); friend struct formatter; FMT_CONSTEXPR20 void subtract_bigits(int index, bigit other, bigit& borrow) { auto result = static_cast((*this)[index]) - other - borrow; (*this)[index] = static_cast(result); borrow = static_cast(result >> (bigit_bits * 2 - 1)); } FMT_CONSTEXPR20 void remove_leading_zeros() { int num_bigits = static_cast(bigits_.size()) - 1; while (num_bigits > 0 && (*this)[num_bigits] == 0) --num_bigits; bigits_.resize(to_unsigned(num_bigits + 1)); } // Computes *this -= other assuming aligned bigints and *this >= other. FMT_CONSTEXPR20 void subtract_aligned(const bigint& other) { FMT_ASSERT(other.exp_ >= exp_, "unaligned bigints"); FMT_ASSERT(compare(*this, other) >= 0, ""); bigit borrow = 0; int i = other.exp_ - exp_; for (size_t j = 0, n = other.bigits_.size(); j != n; ++i, ++j) subtract_bigits(i, other.bigits_[j], borrow); while (borrow > 0) subtract_bigits(i, 0, borrow); remove_leading_zeros(); } FMT_CONSTEXPR20 void multiply(uint32_t value) { const double_bigit wide_value = value; bigit carry = 0; for (size_t i = 0, n = bigits_.size(); i < n; ++i) { double_bigit result = bigits_[i] * wide_value + carry; bigits_[i] = static_cast(result); carry = static_cast(result >> bigit_bits); } if (carry != 0) bigits_.push_back(carry); } template ::value || std::is_same::value)> FMT_CONSTEXPR20 void multiply(UInt value) { using half_uint = conditional_t::value, uint64_t, uint32_t>; const int shift = num_bits() - bigit_bits; const UInt lower = static_cast(value); const UInt upper = value >> num_bits(); UInt carry = 0; for (size_t i = 0, n = bigits_.size(); i < n; ++i) { UInt result = lower * bigits_[i] + static_cast(carry); carry = (upper * bigits_[i] << shift) + (result >> bigit_bits) + (carry >> bigit_bits); bigits_[i] = static_cast(result); } while (carry != 0) { bigits_.push_back(static_cast(carry)); carry >>= bigit_bits; } } template ::value || std::is_same::value)> FMT_CONSTEXPR20 void assign(UInt n) { size_t num_bigits = 0; do { bigits_[num_bigits++] = static_cast(n); n >>= bigit_bits; } while (n != 0); bigits_.resize(num_bigits); exp_ = 0; } public: FMT_CONSTEXPR20 bigint() : exp_(0) {} explicit bigint(uint64_t n) { assign(n); } bigint(const bigint&) = delete; void operator=(const bigint&) = delete; FMT_CONSTEXPR20 void assign(const bigint& other) { auto size = other.bigits_.size(); bigits_.resize(size); auto data = other.bigits_.data(); std::copy(data, data + size, make_checked(bigits_.data(), size)); exp_ = other.exp_; } template FMT_CONSTEXPR20 void operator=(Int n) { FMT_ASSERT(n > 0, ""); assign(uint64_or_128_t(n)); } FMT_CONSTEXPR20 int num_bigits() const { return static_cast(bigits_.size()) + exp_; } FMT_NOINLINE FMT_CONSTEXPR20 bigint& operator<<=(int shift) { FMT_ASSERT(shift >= 0, ""); exp_ += shift / bigit_bits; shift %= bigit_bits; if (shift == 0) return *this; bigit carry = 0; for (size_t i = 0, n = bigits_.size(); i < n; ++i) { bigit c = bigits_[i] >> (bigit_bits - shift); bigits_[i] = (bigits_[i] << shift) + carry; carry = c; } if (carry != 0) bigits_.push_back(carry); return *this; } template FMT_CONSTEXPR20 bigint& operator*=(Int value) { FMT_ASSERT(value > 0, ""); multiply(uint32_or_64_or_128_t(value)); return *this; } friend FMT_CONSTEXPR20 int compare(const bigint& lhs, const bigint& rhs) { int num_lhs_bigits = lhs.num_bigits(), num_rhs_bigits = rhs.num_bigits(); if (num_lhs_bigits != num_rhs_bigits) return num_lhs_bigits > num_rhs_bigits ? 1 : -1; int i = static_cast(lhs.bigits_.size()) - 1; int j = static_cast(rhs.bigits_.size()) - 1; int end = i - j; if (end < 0) end = 0; for (; i >= end; --i, --j) { bigit lhs_bigit = lhs[i], rhs_bigit = rhs[j]; if (lhs_bigit != rhs_bigit) return lhs_bigit > rhs_bigit ? 1 : -1; } if (i != j) return i > j ? 1 : -1; return 0; } // Returns compare(lhs1 + lhs2, rhs). friend FMT_CONSTEXPR20 int add_compare(const bigint& lhs1, const bigint& lhs2, const bigint& rhs) { auto minimum = [](int a, int b) { return a < b ? a : b; }; auto maximum = [](int a, int b) { return a > b ? a : b; }; int max_lhs_bigits = maximum(lhs1.num_bigits(), lhs2.num_bigits()); int num_rhs_bigits = rhs.num_bigits(); if (max_lhs_bigits + 1 < num_rhs_bigits) return -1; if (max_lhs_bigits > num_rhs_bigits) return 1; auto get_bigit = [](const bigint& n, int i) -> bigit { return i >= n.exp_ && i < n.num_bigits() ? n[i - n.exp_] : 0; }; double_bigit borrow = 0; int min_exp = minimum(minimum(lhs1.exp_, lhs2.exp_), rhs.exp_); for (int i = num_rhs_bigits - 1; i >= min_exp; --i) { double_bigit sum = static_cast(get_bigit(lhs1, i)) + get_bigit(lhs2, i); bigit rhs_bigit = get_bigit(rhs, i); if (sum > rhs_bigit + borrow) return 1; borrow = rhs_bigit + borrow - sum; if (borrow > 1) return -1; borrow <<= bigit_bits; } return borrow != 0 ? -1 : 0; } // Assigns pow(10, exp) to this bigint. FMT_CONSTEXPR20 void assign_pow10(int exp) { FMT_ASSERT(exp >= 0, ""); if (exp == 0) return *this = 1; // Find the top bit. int bitmask = 1; while (exp >= bitmask) bitmask <<= 1; bitmask >>= 1; // pow(10, exp) = pow(5, exp) * pow(2, exp). First compute pow(5, exp) by // repeated squaring and multiplication. *this = 5; bitmask >>= 1; while (bitmask != 0) { square(); if ((exp & bitmask) != 0) *this *= 5; bitmask >>= 1; } *this <<= exp; // Multiply by pow(2, exp) by shifting. } FMT_CONSTEXPR20 void square() { int num_bigits = static_cast(bigits_.size()); int num_result_bigits = 2 * num_bigits; basic_memory_buffer n(std::move(bigits_)); bigits_.resize(to_unsigned(num_result_bigits)); auto sum = uint128_t(); for (int bigit_index = 0; bigit_index < num_bigits; ++bigit_index) { // Compute bigit at position bigit_index of the result by adding // cross-product terms n[i] * n[j] such that i + j == bigit_index. for (int i = 0, j = bigit_index; j >= 0; ++i, --j) { // Most terms are multiplied twice which can be optimized in the future. sum += static_cast(n[i]) * n[j]; } (*this)[bigit_index] = static_cast(sum); sum >>= num_bits(); // Compute the carry. } // Do the same for the top half. for (int bigit_index = num_bigits; bigit_index < num_result_bigits; ++bigit_index) { for (int j = num_bigits - 1, i = bigit_index - j; i < num_bigits;) sum += static_cast(n[i++]) * n[j--]; (*this)[bigit_index] = static_cast(sum); sum >>= num_bits(); } remove_leading_zeros(); exp_ *= 2; } // If this bigint has a bigger exponent than other, adds trailing zero to make // exponents equal. This simplifies some operations such as subtraction. FMT_CONSTEXPR20 void align(const bigint& other) { int exp_difference = exp_ - other.exp_; if (exp_difference <= 0) return; int num_bigits = static_cast(bigits_.size()); bigits_.resize(to_unsigned(num_bigits + exp_difference)); for (int i = num_bigits - 1, j = i + exp_difference; i >= 0; --i, --j) bigits_[j] = bigits_[i]; std::uninitialized_fill_n(bigits_.data(), exp_difference, 0); exp_ -= exp_difference; } // Divides this bignum by divisor, assigning the remainder to this and // returning the quotient. FMT_CONSTEXPR20 int divmod_assign(const bigint& divisor) { FMT_ASSERT(this != &divisor, ""); if (compare(*this, divisor) < 0) return 0; FMT_ASSERT(divisor.bigits_[divisor.bigits_.size() - 1u] != 0, ""); align(divisor); int quotient = 0; do { subtract_aligned(divisor); ++quotient; } while (compare(*this, divisor) >= 0); return quotient; } }; // format_dragon flags. enum dragon { predecessor_closer = 1, fixup = 2, // Run fixup to correct exp10 which can be off by one. fixed = 4, }; // Formats a floating-point number using a variation of the Fixed-Precision // Positive Floating-Point Printout ((FPP)^2) algorithm by Steele & White: // https://fmt.dev/papers/p372-steele.pdf. FMT_CONSTEXPR20 inline void format_dragon(basic_fp value, unsigned flags, int num_digits, buffer& buf, int& exp10) { bigint numerator; // 2 * R in (FPP)^2. bigint denominator; // 2 * S in (FPP)^2. // lower and upper are differences between value and corresponding boundaries. bigint lower; // (M^- in (FPP)^2). bigint upper_store; // upper's value if different from lower. bigint* upper = nullptr; // (M^+ in (FPP)^2). // Shift numerator and denominator by an extra bit or two (if lower boundary // is closer) to make lower and upper integers. This eliminates multiplication // by 2 during later computations. bool is_predecessor_closer = (flags & dragon::predecessor_closer) != 0; int shift = is_predecessor_closer ? 2 : 1; if (value.e >= 0) { numerator = value.f; numerator <<= value.e + shift; lower = 1; lower <<= value.e; if (is_predecessor_closer) { upper_store = 1; upper_store <<= value.e + 1; upper = &upper_store; } denominator.assign_pow10(exp10); denominator <<= shift; } else if (exp10 < 0) { numerator.assign_pow10(-exp10); lower.assign(numerator); if (is_predecessor_closer) { upper_store.assign(numerator); upper_store <<= 1; upper = &upper_store; } numerator *= value.f; numerator <<= shift; denominator = 1; denominator <<= shift - value.e; } else { numerator = value.f; numerator <<= shift; denominator.assign_pow10(exp10); denominator <<= shift - value.e; lower = 1; if (is_predecessor_closer) { upper_store = 1ULL << 1; upper = &upper_store; } } int even = static_cast((value.f & 1) == 0); if (!upper) upper = &lower; if ((flags & dragon::fixup) != 0) { if (add_compare(numerator, *upper, denominator) + even <= 0) { --exp10; numerator *= 10; if (num_digits < 0) { lower *= 10; if (upper != &lower) *upper *= 10; } } if ((flags & dragon::fixed) != 0) adjust_precision(num_digits, exp10 + 1); } // Invariant: value == (numerator / denominator) * pow(10, exp10). if (num_digits < 0) { // Generate the shortest representation. num_digits = 0; char* data = buf.data(); for (;;) { int digit = numerator.divmod_assign(denominator); bool low = compare(numerator, lower) - even < 0; // numerator <[=] lower. // numerator + upper >[=] pow10: bool high = add_compare(numerator, *upper, denominator) + even > 0; data[num_digits++] = static_cast('0' + digit); if (low || high) { if (!low) { ++data[num_digits - 1]; } else if (high) { int result = add_compare(numerator, numerator, denominator); // Round half to even. if (result > 0 || (result == 0 && (digit % 2) != 0)) ++data[num_digits - 1]; } buf.try_resize(to_unsigned(num_digits)); exp10 -= num_digits - 1; return; } numerator *= 10; lower *= 10; if (upper != &lower) *upper *= 10; } } // Generate the given number of digits. exp10 -= num_digits - 1; if (num_digits == 0) { denominator *= 10; auto digit = add_compare(numerator, numerator, denominator) > 0 ? '1' : '0'; buf.push_back(digit); return; } buf.try_resize(to_unsigned(num_digits)); for (int i = 0; i < num_digits - 1; ++i) { int digit = numerator.divmod_assign(denominator); buf[i] = static_cast('0' + digit); numerator *= 10; } int digit = numerator.divmod_assign(denominator); auto result = add_compare(numerator, numerator, denominator); if (result > 0 || (result == 0 && (digit % 2) != 0)) { if (digit == 9) { const auto overflow = '0' + 10; buf[num_digits - 1] = overflow; // Propagate the carry. for (int i = num_digits - 1; i > 0 && buf[i] == overflow; --i) { buf[i] = '0'; ++buf[i - 1]; } if (buf[0] == overflow) { buf[0] = '1'; ++exp10; } return; } ++digit; } buf[num_digits - 1] = static_cast('0' + digit); } // Formats a floating-point number using the hexfloat format. template ::value)> FMT_CONSTEXPR20 void format_hexfloat(Float value, int precision, float_specs specs, buffer& buf) { // float is passed as double to reduce the number of instantiations and to // simplify implementation. static_assert(!std::is_same::value, ""); using info = dragonbox::float_info; // Assume Float is in the format [sign][exponent][significand]. using carrier_uint = typename info::carrier_uint; constexpr auto num_float_significand_bits = detail::num_significand_bits(); basic_fp f(value); f.e += num_float_significand_bits; if (!has_implicit_bit()) --f.e; constexpr auto num_fraction_bits = num_float_significand_bits + (has_implicit_bit() ? 1 : 0); constexpr auto num_xdigits = (num_fraction_bits + 3) / 4; constexpr auto leading_shift = ((num_xdigits - 1) * 4); const auto leading_mask = carrier_uint(0xF) << leading_shift; const auto leading_xdigit = static_cast((f.f & leading_mask) >> leading_shift); if (leading_xdigit > 1) f.e -= (32 - countl_zero(leading_xdigit) - 1); int print_xdigits = num_xdigits - 1; if (precision >= 0 && print_xdigits > precision) { const int shift = ((print_xdigits - precision - 1) * 4); const auto mask = carrier_uint(0xF) << shift; const auto v = static_cast((f.f & mask) >> shift); if (v >= 8) { const auto inc = carrier_uint(1) << (shift + 4); f.f += inc; f.f &= ~(inc - 1); } // Check long double overflow if (!has_implicit_bit()) { const auto implicit_bit = carrier_uint(1) << num_float_significand_bits; if ((f.f & implicit_bit) == implicit_bit) { f.f >>= 4; f.e += 4; } } print_xdigits = precision; } char xdigits[num_bits() / 4]; detail::fill_n(xdigits, sizeof(xdigits), '0'); format_uint<4>(xdigits, f.f, num_xdigits, specs.upper); // Remove zero tail while (print_xdigits > 0 && xdigits[print_xdigits] == '0') --print_xdigits; buf.push_back('0'); buf.push_back(specs.upper ? 'X' : 'x'); buf.push_back(xdigits[0]); if (specs.showpoint || print_xdigits > 0 || print_xdigits < precision) buf.push_back('.'); buf.append(xdigits + 1, xdigits + 1 + print_xdigits); for (; print_xdigits < precision; ++print_xdigits) buf.push_back('0'); buf.push_back(specs.upper ? 'P' : 'p'); uint32_t abs_e; if (f.e < 0) { buf.push_back('-'); abs_e = static_cast(-f.e); } else { buf.push_back('+'); abs_e = static_cast(f.e); } format_decimal(appender(buf), abs_e, detail::count_digits(abs_e)); } template ::value)> FMT_CONSTEXPR20 void format_hexfloat(Float value, int precision, float_specs specs, buffer& buf) { format_hexfloat(static_cast(value), precision, specs, buf); } template FMT_CONSTEXPR20 auto format_float(Float value, int precision, float_specs specs, buffer& buf) -> int { // float is passed as double to reduce the number of instantiations. static_assert(!std::is_same::value, ""); FMT_ASSERT(value >= 0, "value is negative"); auto converted_value = convert_float(value); const bool fixed = specs.format == float_format::fixed; if (value <= 0) { // <= instead of == to silence a warning. if (precision <= 0 || !fixed) { buf.push_back('0'); return 0; } buf.try_resize(to_unsigned(precision)); fill_n(buf.data(), precision, '0'); return -precision; } int exp = 0; bool use_dragon = true; unsigned dragon_flags = 0; if (!is_fast_float()) { const auto inv_log2_10 = 0.3010299956639812; // 1 / log2(10) using info = dragonbox::float_info; const auto f = basic_fp(converted_value); // Compute exp, an approximate power of 10, such that // 10^(exp - 1) <= value < 10^exp or 10^exp <= value < 10^(exp + 1). // This is based on log10(value) == log2(value) / log2(10) and approximation // of log2(value) by e + num_fraction_bits idea from double-conversion. exp = static_cast( std::ceil((f.e + count_digits<1>(f.f) - 1) * inv_log2_10 - 1e-10)); dragon_flags = dragon::fixup; } else if (!is_constant_evaluated() && precision < 0) { // Use Dragonbox for the shortest format. if (specs.binary32) { auto dec = dragonbox::to_decimal(static_cast(value)); write(buffer_appender(buf), dec.significand); return dec.exponent; } auto dec = dragonbox::to_decimal(static_cast(value)); write(buffer_appender(buf), dec.significand); return dec.exponent; } else if (is_constant_evaluated()) { // Use Grisu + Dragon4 for the given precision: // https://www.cs.tufts.edu/~nr/cs257/archive/florian-loitsch/printf.pdf. const int min_exp = -60; // alpha in Grisu. int cached_exp10 = 0; // K in Grisu. fp normalized = normalize(fp(converted_value)); const auto cached_pow = get_cached_power( min_exp - (normalized.e + fp::num_significand_bits), cached_exp10); normalized = normalized * cached_pow; gen_digits_handler handler{buf.data(), 0, precision, -cached_exp10, fixed}; if (grisu_gen_digits(normalized, 1, exp, handler) != digits::error && !is_constant_evaluated()) { exp += handler.exp10; buf.try_resize(to_unsigned(handler.size)); use_dragon = false; } else { exp += handler.size - cached_exp10 - 1; precision = handler.precision; } } else { // Extract significand bits and exponent bits. using info = dragonbox::float_info; auto br = bit_cast(static_cast(value)); const uint64_t significand_mask = (static_cast(1) << num_significand_bits()) - 1; uint64_t significand = (br & significand_mask); int exponent = static_cast((br & exponent_mask()) >> num_significand_bits()); if (exponent != 0) { // Check if normal. exponent -= exponent_bias() + num_significand_bits(); significand |= (static_cast(1) << num_significand_bits()); significand <<= 1; } else { // Normalize subnormal inputs. FMT_ASSERT(significand != 0, "zeros should not appear hear"); int shift = countl_zero(significand); FMT_ASSERT(shift >= num_bits() - num_significand_bits(), ""); shift -= (num_bits() - num_significand_bits() - 2); exponent = (std::numeric_limits::min_exponent - num_significand_bits()) - shift; significand <<= shift; } // Compute the first several nonzero decimal significand digits. // We call the number we get the first segment. const int k = info::kappa - dragonbox::floor_log10_pow2(exponent); exp = -k; const int beta = exponent + dragonbox::floor_log2_pow10(k); uint64_t first_segment; bool has_more_segments; int digits_in_the_first_segment; { const auto r = dragonbox::umul192_upper128( significand << beta, dragonbox::get_cached_power(k)); first_segment = r.high(); has_more_segments = r.low() != 0; // The first segment can have 18 ~ 19 digits. if (first_segment >= 1000000000000000000ULL) { digits_in_the_first_segment = 19; } else { // When it is of 18-digits, we align it to 19-digits by adding a bogus // zero at the end. digits_in_the_first_segment = 18; first_segment *= 10; } } // Compute the actual number of decimal digits to print. if (fixed) { adjust_precision(precision, exp + digits_in_the_first_segment); } // Use Dragon4 only when there might be not enough digits in the first // segment. if (digits_in_the_first_segment > precision) { use_dragon = false; if (precision <= 0) { exp += digits_in_the_first_segment; if (precision < 0) { // Nothing to do, since all we have are just leading zeros. buf.try_resize(0); } else { // We may need to round-up. buf.try_resize(1); if ((first_segment | static_cast(has_more_segments)) > 5000000000000000000ULL) { buf[0] = '1'; } else { buf[0] = '0'; } } } // precision <= 0 else { exp += digits_in_the_first_segment - precision; // When precision > 0, we divide the first segment into three // subsegments, each with 9, 9, and 0 ~ 1 digits so that each fits // in 32-bits which usually allows faster calculation than in // 64-bits. Since some compiler (e.g. MSVC) doesn't know how to optimize // division-by-constant for large 64-bit divisors, we do it here // manually. The magic number 7922816251426433760 below is equal to // ceil(2^(64+32) / 10^10). const uint32_t first_subsegment = static_cast( dragonbox::umul128_upper64(first_segment, 7922816251426433760ULL) >> 32); const uint64_t second_third_subsegments = first_segment - first_subsegment * 10000000000ULL; uint64_t prod; uint32_t digits; bool should_round_up; int number_of_digits_to_print = precision > 9 ? 9 : precision; // Print a 9-digits subsegment, either the first or the second. auto print_subsegment = [&](uint32_t subsegment, char* buffer) { int number_of_digits_printed = 0; // If we want to print an odd number of digits from the subsegment, if ((number_of_digits_to_print & 1) != 0) { // Convert to 64-bit fixed-point fractional form with 1-digit // integer part. The magic number 720575941 is a good enough // approximation of 2^(32 + 24) / 10^8; see // https://jk-jeon.github.io/posts/2022/12/fixed-precision-formatting/#fixed-length-case // for details. prod = ((subsegment * static_cast(720575941)) >> 24) + 1; digits = static_cast(prod >> 32); *buffer = static_cast('0' + digits); number_of_digits_printed++; } // If we want to print an even number of digits from the // first_subsegment, else { // Convert to 64-bit fixed-point fractional form with 2-digits // integer part. The magic number 450359963 is a good enough // approximation of 2^(32 + 20) / 10^7; see // https://jk-jeon.github.io/posts/2022/12/fixed-precision-formatting/#fixed-length-case // for details. prod = ((subsegment * static_cast(450359963)) >> 20) + 1; digits = static_cast(prod >> 32); copy2(buffer, digits2(digits)); number_of_digits_printed += 2; } // Print all digit pairs. while (number_of_digits_printed < number_of_digits_to_print) { prod = static_cast(prod) * static_cast(100); digits = static_cast(prod >> 32); copy2(buffer + number_of_digits_printed, digits2(digits)); number_of_digits_printed += 2; } }; // Print first subsegment. print_subsegment(first_subsegment, buf.data()); // Perform rounding if the first subsegment is the last subsegment to // print. if (precision <= 9) { // Rounding inside the subsegment. // We round-up if: // - either the fractional part is strictly larger than 1/2, or // - the fractional part is exactly 1/2 and the last digit is odd. // We rely on the following observations: // - If fractional_part >= threshold, then the fractional part is // strictly larger than 1/2. // - If the MSB of fractional_part is set, then the fractional part // must be at least 1/2. // - When the MSB of fractional_part is set, either // second_third_subsegments being nonzero or has_more_segments // being true means there are further digits not printed, so the // fractional part is strictly larger than 1/2. if (precision < 9) { uint32_t fractional_part = static_cast(prod); should_round_up = fractional_part >= data::fractional_part_rounding_thresholds [8 - number_of_digits_to_print] || ((fractional_part >> 31) & ((digits & 1) | (second_third_subsegments != 0) | has_more_segments)) != 0; } // Rounding at the subsegment boundary. // In this case, the fractional part is at least 1/2 if and only if // second_third_subsegments >= 5000000000ULL, and is strictly larger // than 1/2 if we further have either second_third_subsegments > // 5000000000ULL or has_more_segments == true. else { should_round_up = second_third_subsegments > 5000000000ULL || (second_third_subsegments == 5000000000ULL && ((digits & 1) != 0 || has_more_segments)); } } // Otherwise, print the second subsegment. else { // Compilers are not aware of how to leverage the maximum value of // second_third_subsegments to find out a better magic number which // allows us to eliminate an additional shift. 1844674407370955162 = // ceil(2^64/10) < ceil(2^64*(10^9/(10^10 - 1))). const uint32_t second_subsegment = static_cast(dragonbox::umul128_upper64( second_third_subsegments, 1844674407370955162ULL)); const uint32_t third_subsegment = static_cast(second_third_subsegments) - second_subsegment * 10; number_of_digits_to_print = precision - 9; print_subsegment(second_subsegment, buf.data() + 9); // Rounding inside the subsegment. if (precision < 18) { // The condition third_subsegment != 0 implies that the segment was // of 19 digits, so in this case the third segment should be // consisting of a genuine digit from the input. uint32_t fractional_part = static_cast(prod); should_round_up = fractional_part >= data::fractional_part_rounding_thresholds [8 - number_of_digits_to_print] || ((fractional_part >> 31) & ((digits & 1) | (third_subsegment != 0) | has_more_segments)) != 0; } // Rounding at the subsegment boundary. else { // In this case, the segment must be of 19 digits, thus // the third subsegment should be consisting of a genuine digit from // the input. should_round_up = third_subsegment > 5 || (third_subsegment == 5 && ((digits & 1) != 0 || has_more_segments)); } } // Round-up if necessary. if (should_round_up) { ++buf[precision - 1]; for (int i = precision - 1; i > 0 && buf[i] > '9'; --i) { buf[i] = '0'; ++buf[i - 1]; } if (buf[0] > '9') { buf[0] = '1'; if (fixed) buf[precision++] = '0'; else ++exp; } } buf.try_resize(to_unsigned(precision)); } } // if (digits_in_the_first_segment > precision) else { // Adjust the exponent for its use in Dragon4. exp += digits_in_the_first_segment - 1; } } if (use_dragon) { auto f = basic_fp(); bool is_predecessor_closer = specs.binary32 ? f.assign(static_cast(value)) : f.assign(converted_value); if (is_predecessor_closer) dragon_flags |= dragon::predecessor_closer; if (fixed) dragon_flags |= dragon::fixed; // Limit precision to the maximum possible number of significant digits in // an IEEE754 double because we don't need to generate zeros. const int max_double_digits = 767; if (precision > max_double_digits) precision = max_double_digits; format_dragon(f, dragon_flags, precision, buf, exp); } if (!fixed && !specs.showpoint) { // Remove trailing zeros. auto num_digits = buf.size(); while (num_digits > 0 && buf[num_digits - 1] == '0') { --num_digits; ++exp; } buf.try_resize(num_digits); } return exp; } template FMT_CONSTEXPR20 auto write_float(OutputIt out, T value, format_specs specs, locale_ref loc) -> OutputIt { float_specs fspecs = parse_float_type_spec(specs); fspecs.sign = specs.sign; if (detail::signbit(value)) { // value < 0 is false for NaN so use signbit. fspecs.sign = sign::minus; value = -value; } else if (fspecs.sign == sign::minus) { fspecs.sign = sign::none; } if (!detail::isfinite(value)) return write_nonfinite(out, detail::isnan(value), specs, fspecs); if (specs.align == align::numeric && fspecs.sign) { auto it = reserve(out, 1); *it++ = detail::sign(fspecs.sign); out = base_iterator(out, it); fspecs.sign = sign::none; if (specs.width != 0) --specs.width; } memory_buffer buffer; if (fspecs.format == float_format::hex) { if (fspecs.sign) buffer.push_back(detail::sign(fspecs.sign)); format_hexfloat(convert_float(value), specs.precision, fspecs, buffer); return write_bytes(out, {buffer.data(), buffer.size()}, specs); } int precision = specs.precision >= 0 || specs.type == presentation_type::none ? specs.precision : 6; if (fspecs.format == float_format::exp) { if (precision == max_value()) throw_format_error("number is too big"); else ++precision; } else if (fspecs.format != float_format::fixed && precision == 0) { precision = 1; } if (const_check(std::is_same())) fspecs.binary32 = true; int exp = format_float(convert_float(value), precision, fspecs, buffer); fspecs.precision = precision; auto f = big_decimal_fp{buffer.data(), static_cast(buffer.size()), exp}; return write_float(out, f, specs, fspecs, loc); } template ::value)> FMT_CONSTEXPR20 auto write(OutputIt out, T value, format_specs specs, locale_ref loc = {}) -> OutputIt { if (const_check(!is_supported_floating_point(value))) return out; return specs.localized && write_loc(out, value, specs, loc) ? out : write_float(out, value, specs, loc); } template ::value)> FMT_CONSTEXPR20 auto write(OutputIt out, T value) -> OutputIt { if (is_constant_evaluated()) return write(out, value, format_specs()); if (const_check(!is_supported_floating_point(value))) return out; auto fspecs = float_specs(); if (detail::signbit(value)) { fspecs.sign = sign::minus; value = -value; } constexpr auto specs = format_specs(); using floaty = conditional_t::value, double, T>; using floaty_uint = typename dragonbox::float_info::carrier_uint; floaty_uint mask = exponent_mask(); if ((bit_cast(value) & mask) == mask) return write_nonfinite(out, std::isnan(value), specs, fspecs); auto dec = dragonbox::to_decimal(static_cast(value)); return write_float(out, dec, specs, fspecs, {}); } template ::value && !is_fast_float::value)> inline auto write(OutputIt out, T value) -> OutputIt { return write(out, value, format_specs()); } template auto write(OutputIt out, monostate, format_specs = {}, locale_ref = {}) -> OutputIt { FMT_ASSERT(false, ""); return out; } template FMT_CONSTEXPR auto write(OutputIt out, basic_string_view value) -> OutputIt { auto it = reserve(out, value.size()); it = copy_str_noinline(value.begin(), value.end(), it); return base_iterator(out, it); } template ::value)> constexpr auto write(OutputIt out, const T& value) -> OutputIt { return write(out, to_string_view(value)); } // FMT_ENABLE_IF() condition separated to workaround an MSVC bug. template < typename Char, typename OutputIt, typename T, bool check = std::is_enum::value && !std::is_same::value && mapped_type_constant>::value != type::custom_type, FMT_ENABLE_IF(check)> FMT_CONSTEXPR auto write(OutputIt out, T value) -> OutputIt { return write(out, static_cast>(value)); } template ::value)> FMT_CONSTEXPR auto write(OutputIt out, T value, const format_specs& specs = {}, locale_ref = {}) -> OutputIt { return specs.type != presentation_type::none && specs.type != presentation_type::string ? write(out, value ? 1 : 0, specs, {}) : write_bytes(out, value ? "true" : "false", specs); } template FMT_CONSTEXPR auto write(OutputIt out, Char value) -> OutputIt { auto it = reserve(out, 1); *it++ = value; return base_iterator(out, it); } template FMT_CONSTEXPR_CHAR_TRAITS auto write(OutputIt out, const Char* value) -> OutputIt { if (value) return write(out, basic_string_view(value)); throw_format_error("string pointer is null"); return out; } template ::value)> auto write(OutputIt out, const T* value, const format_specs& specs = {}, locale_ref = {}) -> OutputIt { return write_ptr(out, bit_cast(value), &specs); } // A write overload that handles implicit conversions. template > FMT_CONSTEXPR auto write(OutputIt out, const T& value) -> enable_if_t< std::is_class::value && !is_string::value && !is_floating_point::value && !std::is_same::value && !std::is_same().map( value))>>::value, OutputIt> { return write(out, arg_mapper().map(value)); } template > FMT_CONSTEXPR auto write(OutputIt out, const T& value) -> enable_if_t::value == type::custom_type, OutputIt> { auto ctx = Context(out, {}, {}); return typename Context::template formatter_type().format(value, ctx); } // An argument visitor that formats the argument and writes it via the output // iterator. It's a class and not a generic lambda for compatibility with C++11. template struct default_arg_formatter { using iterator = buffer_appender; using context = buffer_context; iterator out; basic_format_args args; locale_ref loc; template auto operator()(T value) -> iterator { return write(out, value); } auto operator()(typename basic_format_arg::handle h) -> iterator { basic_format_parse_context parse_ctx({}); context format_ctx(out, args, loc); h.format(parse_ctx, format_ctx); return format_ctx.out(); } }; template struct arg_formatter { using iterator = buffer_appender; using context = buffer_context; iterator out; const format_specs& specs; locale_ref locale; template FMT_CONSTEXPR FMT_INLINE auto operator()(T value) -> iterator { return detail::write(out, value, specs, locale); } auto operator()(typename basic_format_arg::handle) -> iterator { // User-defined types are handled separately because they require access // to the parse context. return out; } }; template struct custom_formatter { basic_format_parse_context& parse_ctx; buffer_context& ctx; void operator()( typename basic_format_arg>::handle h) const { h.format(parse_ctx, ctx); } template void operator()(T) const {} }; template class width_checker { public: explicit FMT_CONSTEXPR width_checker(ErrorHandler& eh) : handler_(eh) {} template ::value)> FMT_CONSTEXPR auto operator()(T value) -> unsigned long long { if (is_negative(value)) handler_.on_error("negative width"); return static_cast(value); } template ::value)> FMT_CONSTEXPR auto operator()(T) -> unsigned long long { handler_.on_error("width is not integer"); return 0; } private: ErrorHandler& handler_; }; template class precision_checker { public: explicit FMT_CONSTEXPR precision_checker(ErrorHandler& eh) : handler_(eh) {} template ::value)> FMT_CONSTEXPR auto operator()(T value) -> unsigned long long { if (is_negative(value)) handler_.on_error("negative precision"); return static_cast(value); } template ::value)> FMT_CONSTEXPR auto operator()(T) -> unsigned long long { handler_.on_error("precision is not integer"); return 0; } private: ErrorHandler& handler_; }; template (eh), arg); if (value > to_unsigned(max_value())) eh.on_error("number is too big"); return static_cast(value); } template FMT_CONSTEXPR auto get_arg(Context& ctx, ID id) -> decltype(ctx.arg(id)) { auto arg = ctx.arg(id); if (!arg) ctx.on_error("argument not found"); return arg; } template ref, Context& ctx) { switch (ref.kind) { case arg_id_kind::none: break; case arg_id_kind::index: value = detail::get_dynamic_spec(get_arg(ctx, ref.val.index), ctx.error_handler()); break; case arg_id_kind::name: value = detail::get_dynamic_spec(get_arg(ctx, ref.val.name), ctx.error_handler()); break; } } #if FMT_USE_USER_DEFINED_LITERALS template struct udl_formatter { basic_string_view str; template auto operator()(T&&... args) const -> std::basic_string { return vformat(str, fmt::make_format_args>(args...)); } }; # if FMT_USE_NONTYPE_TEMPLATE_ARGS template Str> struct statically_named_arg : view { static constexpr auto name = Str.data; const T& value; statically_named_arg(const T& v) : value(v) {} }; template Str> struct is_named_arg> : std::true_type {}; template Str> struct is_statically_named_arg> : std::true_type {}; template Str> struct udl_arg { template auto operator=(T&& value) const { return statically_named_arg(std::forward(value)); } }; # else template struct udl_arg { const Char* str; template auto operator=(T&& value) const -> named_arg { return {str, std::forward(value)}; } }; # endif #endif // FMT_USE_USER_DEFINED_LITERALS template auto vformat(const Locale& loc, basic_string_view fmt, basic_format_args>> args) -> std::basic_string { auto buf = basic_memory_buffer(); detail::vformat_to(buf, fmt, args, detail::locale_ref(loc)); return {buf.data(), buf.size()}; } using format_func = void (*)(detail::buffer&, int, const char*); FMT_API void format_error_code(buffer& out, int error_code, string_view message) noexcept; FMT_API void report_error(format_func func, int error_code, const char* message) noexcept; FMT_END_DETAIL_NAMESPACE FMT_API auto vsystem_error(int error_code, string_view format_str, format_args args) -> std::system_error; /** \rst Constructs :class:`std::system_error` with a message formatted with ``fmt::format(fmt, args...)``. *error_code* is a system error code as given by ``errno``. **Example**:: // This throws std::system_error with the description // cannot open file 'madeup': No such file or directory // or similar (system message may vary). const char* filename = "madeup"; std::FILE* file = std::fopen(filename, "r"); if (!file) throw fmt::system_error(errno, "cannot open file '{}'", filename); \endrst */ template auto system_error(int error_code, format_string fmt, T&&... args) -> std::system_error { return vsystem_error(error_code, fmt, fmt::make_format_args(args...)); } /** \rst Formats an error message for an error returned by an operating system or a language runtime, for example a file opening error, and writes it to *out*. The format is the same as the one used by ``std::system_error(ec, message)`` where ``ec`` is ``std::error_code(error_code, std::generic_category()})``. It is implementation-defined but normally looks like: .. parsed-literal:: **: ** where ** is the passed message and ** is the system message corresponding to the error code. *error_code* is a system error code as given by ``errno``. \endrst */ FMT_API void format_system_error(detail::buffer& out, int error_code, const char* message) noexcept; // Reports a system error without throwing an exception. // Can be used to report errors from destructors. FMT_API void report_system_error(int error_code, const char* message) noexcept; /** Fast integer formatter. */ class format_int { private: // Buffer should be large enough to hold all digits (digits10 + 1), // a sign and a null character. enum { buffer_size = std::numeric_limits::digits10 + 3 }; mutable char buffer_[buffer_size]; char* str_; template auto format_unsigned(UInt value) -> char* { auto n = static_cast>(value); return detail::format_decimal(buffer_, n, buffer_size - 1).begin; } template auto format_signed(Int value) -> char* { auto abs_value = static_cast>(value); bool negative = value < 0; if (negative) abs_value = 0 - abs_value; auto begin = format_unsigned(abs_value); if (negative) *--begin = '-'; return begin; } public: explicit format_int(int value) : str_(format_signed(value)) {} explicit format_int(long value) : str_(format_signed(value)) {} explicit format_int(long long value) : str_(format_signed(value)) {} explicit format_int(unsigned value) : str_(format_unsigned(value)) {} explicit format_int(unsigned long value) : str_(format_unsigned(value)) {} explicit format_int(unsigned long long value) : str_(format_unsigned(value)) {} /** Returns the number of characters written to the output buffer. */ auto size() const -> size_t { return detail::to_unsigned(buffer_ - str_ + buffer_size - 1); } /** Returns a pointer to the output buffer content. No terminating null character is appended. */ auto data() const -> const char* { return str_; } /** Returns a pointer to the output buffer content with terminating null character appended. */ auto c_str() const -> const char* { buffer_[buffer_size - 1] = '\0'; return str_; } /** \rst Returns the content of the output buffer as an ``std::string``. \endrst */ auto str() const -> std::string { return std::string(str_, size()); } }; template struct formatter::value>> : private formatter> { using base = formatter>; using base::parse; template auto format(const T& value, FormatContext& ctx) const -> decltype(ctx.out()) { return base::format(format_as(value), ctx); } }; template struct formatter : formatter { template auto format(void* val, FormatContext& ctx) const -> decltype(ctx.out()) { return formatter::format(val, ctx); } }; template struct formatter : formatter, Char> { template FMT_CONSTEXPR auto format(const Char* val, FormatContext& ctx) const -> decltype(ctx.out()) { return formatter, Char>::format(val, ctx); } }; /** \rst Converts ``p`` to ``const void*`` for pointer formatting. **Example**:: auto s = fmt::format("{}", fmt::ptr(p)); \endrst */ template auto ptr(T p) -> const void* { static_assert(std::is_pointer::value, ""); return detail::bit_cast(p); } template auto ptr(const std::unique_ptr& p) -> const void* { return p.get(); } template auto ptr(const std::shared_ptr& p) -> const void* { return p.get(); } /** \rst Converts ``e`` to the underlying type. **Example**:: enum class color { red, green, blue }; auto s = fmt::format("{}", fmt::underlying(color::red)); \endrst */ template constexpr auto underlying(Enum e) noexcept -> underlying_t { return static_cast>(e); } namespace enums { template ::value)> constexpr auto format_as(Enum e) noexcept -> underlying_t { return static_cast>(e); } } // namespace enums class bytes { private: string_view data_; friend struct formatter; public: explicit bytes(string_view data) : data_(data) {} }; template <> struct formatter { private: detail::dynamic_format_specs<> specs_; public: template FMT_CONSTEXPR auto parse(ParseContext& ctx) -> const char* { return parse_format_specs(ctx.begin(), ctx.end(), specs_, ctx, detail::type::string_type); } template auto format(bytes b, FormatContext& ctx) -> decltype(ctx.out()) { detail::handle_dynamic_spec(specs_.width, specs_.width_ref, ctx); detail::handle_dynamic_spec( specs_.precision, specs_.precision_ref, ctx); return detail::write_bytes(ctx.out(), b.data_, specs_); } }; // group_digits_view is not derived from view because it copies the argument. template struct group_digits_view { T value; }; /** \rst Returns a view that formats an integer value using ',' as a locale-independent thousands separator. **Example**:: fmt::print("{}", fmt::group_digits(12345)); // Output: "12,345" \endrst */ template auto group_digits(T value) -> group_digits_view { return {value}; } template struct formatter> : formatter { private: detail::dynamic_format_specs<> specs_; public: template FMT_CONSTEXPR auto parse(ParseContext& ctx) -> const char* { return parse_format_specs(ctx.begin(), ctx.end(), specs_, ctx, detail::type::int_type); } template auto format(group_digits_view t, FormatContext& ctx) -> decltype(ctx.out()) { detail::handle_dynamic_spec(specs_.width, specs_.width_ref, ctx); detail::handle_dynamic_spec( specs_.precision, specs_.precision_ref, ctx); return detail::write_int( ctx.out(), static_cast>(t.value), 0, specs_, detail::digit_grouping("\3", ",")); } }; // DEPRECATED! join_view will be moved to ranges.h. template struct join_view : detail::view { It begin; Sentinel end; basic_string_view sep; join_view(It b, Sentinel e, basic_string_view s) : begin(b), end(e), sep(s) {} }; template struct formatter, Char> { private: using value_type = #ifdef __cpp_lib_ranges std::iter_value_t; #else typename std::iterator_traits::value_type; #endif formatter, Char> value_formatter_; public: template FMT_CONSTEXPR auto parse(ParseContext& ctx) -> const Char* { return value_formatter_.parse(ctx); } template auto format(const join_view& value, FormatContext& ctx) const -> decltype(ctx.out()) { auto it = value.begin; auto out = ctx.out(); if (it != value.end) { out = value_formatter_.format(*it, ctx); ++it; while (it != value.end) { out = detail::copy_str(value.sep.begin(), value.sep.end(), out); ctx.advance_to(out); out = value_formatter_.format(*it, ctx); ++it; } } return out; } }; /** Returns a view that formats the iterator range `[begin, end)` with elements separated by `sep`. */ template auto join(It begin, Sentinel end, string_view sep) -> join_view { return {begin, end, sep}; } /** \rst Returns a view that formats `range` with elements separated by `sep`. **Example**:: std::vector v = {1, 2, 3}; fmt::print("{}", fmt::join(v, ", ")); // Output: "1, 2, 3" ``fmt::join`` applies passed format specifiers to the range elements:: fmt::print("{:02}", fmt::join(v, ", ")); // Output: "01, 02, 03" \endrst */ template auto join(Range&& range, string_view sep) -> join_view, detail::sentinel_t> { return join(std::begin(range), std::end(range), sep); } /** \rst Converts *value* to ``std::string`` using the default format for type *T*. **Example**:: #include std::string answer = fmt::to_string(42); \endrst */ template ::value)> inline auto to_string(const T& value) -> std::string { auto buffer = memory_buffer(); detail::write(appender(buffer), value); return {buffer.data(), buffer.size()}; } template ::value)> FMT_NODISCARD inline auto to_string(T value) -> std::string { // The buffer should be large enough to store the number including the sign // or "false" for bool. constexpr int max_size = detail::digits10() + 2; char buffer[max_size > 5 ? static_cast(max_size) : 5]; char* begin = buffer; return std::string(begin, detail::write(begin, value)); } template FMT_NODISCARD auto to_string(const basic_memory_buffer& buf) -> std::basic_string { auto size = buf.size(); detail::assume(size < std::basic_string().max_size()); return std::basic_string(buf.data(), size); } FMT_BEGIN_DETAIL_NAMESPACE template void vformat_to(buffer& buf, basic_string_view fmt, typename vformat_args::type args, locale_ref loc) { auto out = buffer_appender(buf); if (fmt.size() == 2 && equal2(fmt.data(), "{}")) { auto arg = args.get(0); if (!arg) error_handler().on_error("argument not found"); visit_format_arg(default_arg_formatter{out, args, loc}, arg); return; } struct format_handler : error_handler { basic_format_parse_context parse_context; buffer_context context; format_handler(buffer_appender p_out, basic_string_view str, basic_format_args> p_args, locale_ref p_loc) : parse_context(str), context(p_out, p_args, p_loc) {} void on_text(const Char* begin, const Char* end) { auto text = basic_string_view(begin, to_unsigned(end - begin)); context.advance_to(write(context.out(), text)); } FMT_CONSTEXPR auto on_arg_id() -> int { return parse_context.next_arg_id(); } FMT_CONSTEXPR auto on_arg_id(int id) -> int { return parse_context.check_arg_id(id), id; } FMT_CONSTEXPR auto on_arg_id(basic_string_view id) -> int { int arg_id = context.arg_id(id); if (arg_id < 0) on_error("argument not found"); return arg_id; } FMT_INLINE void on_replacement_field(int id, const Char*) { auto arg = get_arg(context, id); context.advance_to(visit_format_arg( default_arg_formatter{context.out(), context.args(), context.locale()}, arg)); } auto on_format_specs(int id, const Char* begin, const Char* end) -> const Char* { auto arg = get_arg(context, id); if (arg.type() == type::custom_type) { parse_context.advance_to(begin); visit_format_arg(custom_formatter{parse_context, context}, arg); return parse_context.begin(); } auto specs = detail::dynamic_format_specs(); begin = parse_format_specs(begin, end, specs, parse_context, arg.type()); detail::handle_dynamic_spec( specs.width, specs.width_ref, context); detail::handle_dynamic_spec( specs.precision, specs.precision_ref, context); if (begin == end || *begin != '}') on_error("missing '}' in format string"); auto f = arg_formatter{context.out(), specs, context.locale()}; context.advance_to(visit_format_arg(f, arg)); return begin; } }; detail::parse_format_string(fmt, format_handler(out, fmt, args, loc)); } #ifndef FMT_HEADER_ONLY extern template FMT_API void vformat_to(buffer&, string_view, typename vformat_args<>::type, locale_ref); extern template FMT_API auto thousands_sep_impl(locale_ref) -> thousands_sep_result; extern template FMT_API auto thousands_sep_impl(locale_ref) -> thousands_sep_result; extern template FMT_API auto decimal_point_impl(locale_ref) -> char; extern template FMT_API auto decimal_point_impl(locale_ref) -> wchar_t; #endif // FMT_HEADER_ONLY FMT_END_DETAIL_NAMESPACE #if FMT_USE_USER_DEFINED_LITERALS inline namespace literals { /** \rst User-defined literal equivalent of :func:`fmt::arg`. **Example**:: using namespace fmt::literals; fmt::print("Elapsed time: {s:.2f} seconds", "s"_a=1.23); \endrst */ # if FMT_USE_NONTYPE_TEMPLATE_ARGS template constexpr auto operator""_a() { using char_t = remove_cvref_t; return detail::udl_arg(); } # else constexpr auto operator"" _a(const char* s, size_t) -> detail::udl_arg { return {s}; } # endif } // namespace literals #endif // FMT_USE_USER_DEFINED_LITERALS template ::value)> inline auto vformat(const Locale& loc, string_view fmt, format_args args) -> std::string { return detail::vformat(loc, fmt, args); } template ::value)> inline auto format(const Locale& loc, format_string fmt, T&&... args) -> std::string { return fmt::vformat(loc, string_view(fmt), fmt::make_format_args(args...)); } template ::value&& detail::is_locale::value)> auto vformat_to(OutputIt out, const Locale& loc, string_view fmt, format_args args) -> OutputIt { using detail::get_buffer; auto&& buf = get_buffer(out); detail::vformat_to(buf, fmt, args, detail::locale_ref(loc)); return detail::get_iterator(buf, out); } template ::value&& detail::is_locale::value)> FMT_INLINE auto format_to(OutputIt out, const Locale& loc, format_string fmt, T&&... args) -> OutputIt { return vformat_to(out, loc, fmt, fmt::make_format_args(args...)); } template ::value)> FMT_NODISCARD FMT_INLINE auto formatted_size(const Locale& loc, format_string fmt, T&&... args) -> size_t { auto buf = detail::counting_buffer<>(); detail::vformat_to(buf, fmt, fmt::make_format_args(args...), detail::locale_ref(loc)); return buf.count(); } FMT_END_EXPORT template template FMT_CONSTEXPR FMT_INLINE auto formatter::value != detail::type::custom_type>>::format(const T& val, FormatContext& ctx) const -> decltype(ctx.out()) { if (specs_.width_ref.kind != detail::arg_id_kind::none || specs_.precision_ref.kind != detail::arg_id_kind::none) { auto specs = specs_; detail::handle_dynamic_spec(specs.width, specs.width_ref, ctx); detail::handle_dynamic_spec( specs.precision, specs.precision_ref, ctx); return detail::write(ctx.out(), val, specs, ctx.locale()); } return detail::write(ctx.out(), val, specs_, ctx.locale()); } FMT_END_NAMESPACE #ifdef FMT_HEADER_ONLY # define FMT_FUNC inline # include "format-inl.h" #else # define FMT_FUNC #endif #endif // FMT_FORMAT_H_ btop-1.3.0/include/fmt/os.h000066400000000000000000000314311454653170500154760ustar00rootroot00000000000000// Formatting library for C++ - optional OS-specific functionality // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_OS_H_ #define FMT_OS_H_ #include #include #include #include // std::system_error #if defined __APPLE__ || defined(__FreeBSD__) # include // for LC_NUMERIC_MASK on OS X #endif #include "format.h" #ifndef FMT_USE_FCNTL // UWP doesn't provide _pipe. # if FMT_HAS_INCLUDE("winapifamily.h") # include # endif # if (FMT_HAS_INCLUDE() || defined(__APPLE__) || \ defined(__linux__)) && \ (!defined(WINAPI_FAMILY) || \ (WINAPI_FAMILY == WINAPI_FAMILY_DESKTOP_APP)) # include // for O_RDONLY # define FMT_USE_FCNTL 1 # else # define FMT_USE_FCNTL 0 # endif #endif #ifndef FMT_POSIX # if defined(_WIN32) && !defined(__MINGW32__) // Fix warnings about deprecated symbols. # define FMT_POSIX(call) _##call # else # define FMT_POSIX(call) call # endif #endif // Calls to system functions are wrapped in FMT_SYSTEM for testability. #ifdef FMT_SYSTEM # define FMT_POSIX_CALL(call) FMT_SYSTEM(call) #else # define FMT_SYSTEM(call) ::call # ifdef _WIN32 // Fix warnings about deprecated symbols. # define FMT_POSIX_CALL(call) ::_##call # else # define FMT_POSIX_CALL(call) ::call # endif #endif // Retries the expression while it evaluates to error_result and errno // equals to EINTR. #ifndef _WIN32 # define FMT_RETRY_VAL(result, expression, error_result) \ do { \ (result) = (expression); \ } while ((result) == (error_result) && errno == EINTR) #else # define FMT_RETRY_VAL(result, expression, error_result) result = (expression) #endif #define FMT_RETRY(result, expression) FMT_RETRY_VAL(result, expression, -1) FMT_BEGIN_NAMESPACE FMT_BEGIN_EXPORT /** \rst A reference to a null-terminated string. It can be constructed from a C string or ``std::string``. You can use one of the following type aliases for common character types: +---------------+-----------------------------+ | Type | Definition | +===============+=============================+ | cstring_view | basic_cstring_view | +---------------+-----------------------------+ | wcstring_view | basic_cstring_view | +---------------+-----------------------------+ This class is most useful as a parameter type to allow passing different types of strings to a function, for example:: template std::string format(cstring_view format_str, const Args & ... args); format("{}", 42); format(std::string("{}"), 42); \endrst */ template class basic_cstring_view { private: const Char* data_; public: /** Constructs a string reference object from a C string. */ basic_cstring_view(const Char* s) : data_(s) {} /** \rst Constructs a string reference from an ``std::string`` object. \endrst */ basic_cstring_view(const std::basic_string& s) : data_(s.c_str()) {} /** Returns the pointer to a C string. */ const Char* c_str() const { return data_; } }; using cstring_view = basic_cstring_view; using wcstring_view = basic_cstring_view; #ifdef _WIN32 FMT_API const std::error_category& system_category() noexcept; FMT_BEGIN_DETAIL_NAMESPACE FMT_API void format_windows_error(buffer& out, int error_code, const char* message) noexcept; FMT_END_DETAIL_NAMESPACE FMT_API std::system_error vwindows_error(int error_code, string_view format_str, format_args args); /** \rst Constructs a :class:`std::system_error` object with the description of the form .. parsed-literal:: **: ** where ** is the formatted message and ** is the system message corresponding to the error code. *error_code* is a Windows error code as given by ``GetLastError``. If *error_code* is not a valid error code such as -1, the system message will look like "error -1". **Example**:: // This throws a system_error with the description // cannot open file 'madeup': The system cannot find the file specified. // or similar (system message may vary). const char *filename = "madeup"; LPOFSTRUCT of = LPOFSTRUCT(); HFILE file = OpenFile(filename, &of, OF_READ); if (file == HFILE_ERROR) { throw fmt::windows_error(GetLastError(), "cannot open file '{}'", filename); } \endrst */ template std::system_error windows_error(int error_code, string_view message, const Args&... args) { return vwindows_error(error_code, message, fmt::make_format_args(args...)); } // Reports a Windows error without throwing an exception. // Can be used to report errors from destructors. FMT_API void report_windows_error(int error_code, const char* message) noexcept; #else inline const std::error_category& system_category() noexcept { return std::system_category(); } #endif // _WIN32 // std::system is not available on some platforms such as iOS (#2248). #ifdef __OSX__ template > void say(const S& format_str, Args&&... args) { std::system(format("say \"{}\"", format(format_str, args...)).c_str()); } #endif // A buffered file. class buffered_file { private: FILE* file_; friend class file; explicit buffered_file(FILE* f) : file_(f) {} public: buffered_file(const buffered_file&) = delete; void operator=(const buffered_file&) = delete; // Constructs a buffered_file object which doesn't represent any file. buffered_file() noexcept : file_(nullptr) {} // Destroys the object closing the file it represents if any. FMT_API ~buffered_file() noexcept; public: buffered_file(buffered_file&& other) noexcept : file_(other.file_) { other.file_ = nullptr; } buffered_file& operator=(buffered_file&& other) { close(); file_ = other.file_; other.file_ = nullptr; return *this; } // Opens a file. FMT_API buffered_file(cstring_view filename, cstring_view mode); // Closes the file. FMT_API void close(); // Returns the pointer to a FILE object representing this file. FILE* get() const noexcept { return file_; } FMT_API int descriptor() const; void vprint(string_view format_str, format_args args) { fmt::vprint(file_, format_str, args); } template inline void print(string_view format_str, const Args&... args) { vprint(format_str, fmt::make_format_args(args...)); } }; #if FMT_USE_FCNTL // A file. Closed file is represented by a file object with descriptor -1. // Methods that are not declared with noexcept may throw // fmt::system_error in case of failure. Note that some errors such as // closing the file multiple times will cause a crash on Windows rather // than an exception. You can get standard behavior by overriding the // invalid parameter handler with _set_invalid_parameter_handler. class FMT_API file { private: int fd_; // File descriptor. // Constructs a file object with a given descriptor. explicit file(int fd) : fd_(fd) {} public: // Possible values for the oflag argument to the constructor. enum { RDONLY = FMT_POSIX(O_RDONLY), // Open for reading only. WRONLY = FMT_POSIX(O_WRONLY), // Open for writing only. RDWR = FMT_POSIX(O_RDWR), // Open for reading and writing. CREATE = FMT_POSIX(O_CREAT), // Create if the file doesn't exist. APPEND = FMT_POSIX(O_APPEND), // Open in append mode. TRUNC = FMT_POSIX(O_TRUNC) // Truncate the content of the file. }; // Constructs a file object which doesn't represent any file. file() noexcept : fd_(-1) {} // Opens a file and constructs a file object representing this file. file(cstring_view path, int oflag); public: file(const file&) = delete; void operator=(const file&) = delete; file(file&& other) noexcept : fd_(other.fd_) { other.fd_ = -1; } // Move assignment is not noexcept because close may throw. file& operator=(file&& other) { close(); fd_ = other.fd_; other.fd_ = -1; return *this; } // Destroys the object closing the file it represents if any. ~file() noexcept; // Returns the file descriptor. int descriptor() const noexcept { return fd_; } // Closes the file. void close(); // Returns the file size. The size has signed type for consistency with // stat::st_size. long long size() const; // Attempts to read count bytes from the file into the specified buffer. size_t read(void* buffer, size_t count); // Attempts to write count bytes from the specified buffer to the file. size_t write(const void* buffer, size_t count); // Duplicates a file descriptor with the dup function and returns // the duplicate as a file object. static file dup(int fd); // Makes fd be the copy of this file descriptor, closing fd first if // necessary. void dup2(int fd); // Makes fd be the copy of this file descriptor, closing fd first if // necessary. void dup2(int fd, std::error_code& ec) noexcept; // Creates a pipe setting up read_end and write_end file objects for reading // and writing respectively. static void pipe(file& read_end, file& write_end); // Creates a buffered_file object associated with this file and detaches // this file object from the file. buffered_file fdopen(const char* mode); # if defined(_WIN32) && !defined(__MINGW32__) // Opens a file and constructs a file object representing this file by // wcstring_view filename. Windows only. static file open_windows_file(wcstring_view path, int oflag); # endif }; // Returns the memory page size. long getpagesize(); FMT_BEGIN_DETAIL_NAMESPACE struct buffer_size { buffer_size() = default; size_t value = 0; buffer_size operator=(size_t val) const { auto bs = buffer_size(); bs.value = val; return bs; } }; struct ostream_params { int oflag = file::WRONLY | file::CREATE | file::TRUNC; size_t buffer_size = BUFSIZ > 32768 ? BUFSIZ : 32768; ostream_params() {} template ostream_params(T... params, int new_oflag) : ostream_params(params...) { oflag = new_oflag; } template ostream_params(T... params, detail::buffer_size bs) : ostream_params(params...) { this->buffer_size = bs.value; } // Intel has a bug that results in failure to deduce a constructor // for empty parameter packs. # if defined(__INTEL_COMPILER) && __INTEL_COMPILER < 2000 ostream_params(int new_oflag) : oflag(new_oflag) {} ostream_params(detail::buffer_size bs) : buffer_size(bs.value) {} # endif }; class file_buffer final : public buffer { file file_; FMT_API void grow(size_t) override; public: FMT_API file_buffer(cstring_view path, const ostream_params& params); FMT_API file_buffer(file_buffer&& other); FMT_API ~file_buffer(); void flush() { if (size() == 0) return; file_.write(data(), size() * sizeof(data()[0])); clear(); } void close() { flush(); file_.close(); } }; FMT_END_DETAIL_NAMESPACE // Added {} below to work around default constructor error known to // occur in Xcode versions 7.2.1 and 8.2.1. constexpr detail::buffer_size buffer_size{}; /** A fast output stream which is not thread-safe. */ class FMT_API ostream { private: FMT_MSC_WARNING(suppress : 4251) detail::file_buffer buffer_; ostream(cstring_view path, const detail::ostream_params& params) : buffer_(path, params) {} public: ostream(ostream&& other) : buffer_(std::move(other.buffer_)) {} ~ostream(); void flush() { buffer_.flush(); } template friend ostream output_file(cstring_view path, T... params); void close() { buffer_.close(); } /** Formats ``args`` according to specifications in ``fmt`` and writes the output to the file. */ template void print(format_string fmt, T&&... args) { vformat_to(detail::buffer_appender(buffer_), fmt, fmt::make_format_args(args...)); } }; /** \rst Opens a file for writing. Supported parameters passed in *params*: * ````: Flags passed to `open `_ (``file::WRONLY | file::CREATE | file::TRUNC`` by default) * ``buffer_size=``: Output buffer size **Example**:: auto out = fmt::output_file("guide.txt"); out.print("Don't {}", "Panic"); \endrst */ template inline ostream output_file(cstring_view path, T... params) { return {path, detail::ostream_params(params...)}; } #endif // FMT_USE_FCNTL FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_OS_H_ btop-1.3.0/include/fmt/ostream.h000066400000000000000000000146321454653170500165330ustar00rootroot00000000000000// Formatting library for C++ - std::ostream support // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_OSTREAM_H_ #define FMT_OSTREAM_H_ #include // std::filebuf #if defined(_WIN32) && defined(__GLIBCXX__) # include # include #elif defined(_WIN32) && defined(_LIBCPP_VERSION) # include <__std_stream> #endif #include "format.h" FMT_BEGIN_NAMESPACE namespace detail { // Generate a unique explicit instantion in every translation unit using a tag // type in an anonymous namespace. namespace { struct file_access_tag {}; } // namespace template class file_access { friend auto get_file(BufType& obj) -> FILE* { return obj.*FileMemberPtr; } }; #if FMT_MSC_VERSION template class file_access; auto get_file(std::filebuf&) -> FILE*; #elif defined(_WIN32) && defined(_LIBCPP_VERSION) template class file_access, &std::__stdoutbuf::__file_>; auto get_file(std::__stdoutbuf&) -> FILE*; #endif inline bool write_ostream_unicode(std::ostream& os, fmt::string_view data) { #if FMT_MSC_VERSION if (auto* buf = dynamic_cast(os.rdbuf())) if (FILE* f = get_file(*buf)) return write_console(f, data); #elif defined(_WIN32) && defined(__GLIBCXX__) auto* rdbuf = os.rdbuf(); FILE* c_file; if (auto* sfbuf = dynamic_cast<__gnu_cxx::stdio_sync_filebuf*>(rdbuf)) c_file = sfbuf->file(); else if (auto* fbuf = dynamic_cast<__gnu_cxx::stdio_filebuf*>(rdbuf)) c_file = fbuf->file(); else return false; if (c_file) return write_console(c_file, data); #elif defined(_WIN32) && defined(_LIBCPP_VERSION) if (auto* buf = dynamic_cast*>(os.rdbuf())) if (FILE* f = get_file(*buf)) return write_console(f, data); #else ignore_unused(os, data); #endif return false; } inline bool write_ostream_unicode(std::wostream&, fmt::basic_string_view) { return false; } // Write the content of buf to os. // It is a separate function rather than a part of vprint to simplify testing. template void write_buffer(std::basic_ostream& os, buffer& buf) { const Char* buf_data = buf.data(); using unsigned_streamsize = std::make_unsigned::type; unsigned_streamsize size = buf.size(); unsigned_streamsize max_size = to_unsigned(max_value()); do { unsigned_streamsize n = size <= max_size ? size : max_size; os.write(buf_data, static_cast(n)); buf_data += n; size -= n; } while (size != 0); } template void format_value(buffer& buf, const T& value, locale_ref loc = locale_ref()) { auto&& format_buf = formatbuf>(buf); auto&& output = std::basic_ostream(&format_buf); #if !defined(FMT_STATIC_THOUSANDS_SEPARATOR) if (loc) output.imbue(loc.get()); #endif output << value; output.exceptions(std::ios_base::failbit | std::ios_base::badbit); } template struct streamed_view { const T& value; }; } // namespace detail // Formats an object of type T that has an overloaded ostream operator<<. template struct basic_ostream_formatter : formatter, Char> { void set_debug_format() = delete; template auto format(const T& value, basic_format_context& ctx) const -> OutputIt { auto buffer = basic_memory_buffer(); detail::format_value(buffer, value, ctx.locale()); return formatter, Char>::format( {buffer.data(), buffer.size()}, ctx); } }; using ostream_formatter = basic_ostream_formatter; template struct formatter, Char> : basic_ostream_formatter { template auto format(detail::streamed_view view, basic_format_context& ctx) const -> OutputIt { return basic_ostream_formatter::format(view.value, ctx); } }; /** \rst Returns a view that formats `value` via an ostream ``operator<<``. **Example**:: fmt::print("Current thread id: {}\n", fmt::streamed(std::this_thread::get_id())); \endrst */ template auto streamed(const T& value) -> detail::streamed_view { return {value}; } namespace detail { inline void vprint_directly(std::ostream& os, string_view format_str, format_args args) { auto buffer = memory_buffer(); detail::vformat_to(buffer, format_str, args); detail::write_buffer(os, buffer); } } // namespace detail FMT_EXPORT template void vprint(std::basic_ostream& os, basic_string_view> format_str, basic_format_args>> args) { auto buffer = basic_memory_buffer(); detail::vformat_to(buffer, format_str, args); if (detail::write_ostream_unicode(os, {buffer.data(), buffer.size()})) return; detail::write_buffer(os, buffer); } /** \rst Prints formatted data to the stream *os*. **Example**:: fmt::print(cerr, "Don't {}!", "panic"); \endrst */ FMT_EXPORT template void print(std::ostream& os, format_string fmt, T&&... args) { const auto& vargs = fmt::make_format_args(args...); if (detail::is_utf8()) vprint(os, fmt, vargs); else detail::vprint_directly(os, fmt, vargs); } FMT_EXPORT template void print(std::wostream& os, basic_format_string...> fmt, Args&&... args) { vprint(os, fmt, fmt::make_format_args>(args...)); } FMT_EXPORT template void println(std::ostream& os, format_string fmt, T&&... args) { fmt::print(os, "{}\n", fmt::format(fmt, std::forward(args)...)); } FMT_EXPORT template void println(std::wostream& os, basic_format_string...> fmt, Args&&... args) { print(os, L"{}\n", fmt::format(fmt, std::forward(args)...)); } FMT_END_NAMESPACE #endif // FMT_OSTREAM_H_ btop-1.3.0/include/fmt/printf.h000066400000000000000000000503171454653170500163630ustar00rootroot00000000000000// Formatting library for C++ - legacy printf implementation // // Copyright (c) 2012 - 2016, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_PRINTF_H_ #define FMT_PRINTF_H_ #include // std::max #include // std::numeric_limits #include "format.h" FMT_BEGIN_NAMESPACE FMT_BEGIN_EXPORT template struct printf_formatter { printf_formatter() = delete; }; template class basic_printf_context { private: detail::buffer_appender out_; basic_format_args args_; public: using char_type = Char; using parse_context_type = basic_format_parse_context; template using formatter_type = printf_formatter; /** \rst Constructs a ``printf_context`` object. References to the arguments are stored in the context object so make sure they have appropriate lifetimes. \endrst */ basic_printf_context(detail::buffer_appender out, basic_format_args args) : out_(out), args_(args) {} auto out() -> detail::buffer_appender { return out_; } void advance_to(detail::buffer_appender) {} auto locale() -> detail::locale_ref { return {}; } auto arg(int id) const -> basic_format_arg { return args_.get(id); } FMT_CONSTEXPR void on_error(const char* message) { detail::error_handler().on_error(message); } }; FMT_BEGIN_DETAIL_NAMESPACE // Checks if a value fits in int - used to avoid warnings about comparing // signed and unsigned integers. template struct int_checker { template static auto fits_in_int(T value) -> bool { unsigned max = max_value(); return value <= max; } static auto fits_in_int(bool) -> bool { return true; } }; template <> struct int_checker { template static auto fits_in_int(T value) -> bool { return value >= (std::numeric_limits::min)() && value <= max_value(); } static auto fits_in_int(int) -> bool { return true; } }; struct printf_precision_handler { template ::value)> auto operator()(T value) -> int { if (!int_checker::is_signed>::fits_in_int(value)) throw_format_error("number is too big"); return (std::max)(static_cast(value), 0); } template ::value)> auto operator()(T) -> int { throw_format_error("precision is not integer"); return 0; } }; // An argument visitor that returns true iff arg is a zero integer. struct is_zero_int { template ::value)> auto operator()(T value) -> bool { return value == 0; } template ::value)> auto operator()(T) -> bool { return false; } }; template struct make_unsigned_or_bool : std::make_unsigned {}; template <> struct make_unsigned_or_bool { using type = bool; }; template class arg_converter { private: using char_type = typename Context::char_type; basic_format_arg& arg_; char_type type_; public: arg_converter(basic_format_arg& arg, char_type type) : arg_(arg), type_(type) {} void operator()(bool value) { if (type_ != 's') operator()(value); } template ::value)> void operator()(U value) { bool is_signed = type_ == 'd' || type_ == 'i'; using target_type = conditional_t::value, U, T>; if (const_check(sizeof(target_type) <= sizeof(int))) { // Extra casts are used to silence warnings. if (is_signed) { auto n = static_cast(static_cast(value)); arg_ = detail::make_arg(n); } else { using unsigned_type = typename make_unsigned_or_bool::type; auto n = static_cast(static_cast(value)); arg_ = detail::make_arg(n); } } else { if (is_signed) { // glibc's printf doesn't sign extend arguments of smaller types: // std::printf("%lld", -42); // prints "4294967254" // but we don't have to do the same because it's a UB. auto n = static_cast(value); arg_ = detail::make_arg(n); } else { auto n = static_cast::type>(value); arg_ = detail::make_arg(n); } } } template ::value)> void operator()(U) {} // No conversion needed for non-integral types. }; // Converts an integer argument to T for printf, if T is an integral type. // If T is void, the argument is converted to corresponding signed or unsigned // type depending on the type specifier: 'd' and 'i' - signed, other - // unsigned). template void convert_arg(basic_format_arg& arg, Char type) { visit_format_arg(arg_converter(arg, type), arg); } // Converts an integer argument to char for printf. template class char_converter { private: basic_format_arg& arg_; public: explicit char_converter(basic_format_arg& arg) : arg_(arg) {} template ::value)> void operator()(T value) { auto c = static_cast(value); arg_ = detail::make_arg(c); } template ::value)> void operator()(T) {} // No conversion needed for non-integral types. }; // An argument visitor that return a pointer to a C string if argument is a // string or null otherwise. template struct get_cstring { template auto operator()(T) -> const Char* { return nullptr; } auto operator()(const Char* s) -> const Char* { return s; } }; // Checks if an argument is a valid printf width specifier and sets // left alignment if it is negative. template class printf_width_handler { private: format_specs& specs_; public: explicit printf_width_handler(format_specs& specs) : specs_(specs) {} template ::value)> auto operator()(T value) -> unsigned { auto width = static_cast>(value); if (detail::is_negative(value)) { specs_.align = align::left; width = 0 - width; } unsigned int_max = max_value(); if (width > int_max) throw_format_error("number is too big"); return static_cast(width); } template ::value)> auto operator()(T) -> unsigned { throw_format_error("width is not integer"); return 0; } }; // Workaround for a bug with the XL compiler when initializing // printf_arg_formatter's base class. template auto make_arg_formatter(buffer_appender iter, format_specs& s) -> arg_formatter { return {iter, s, locale_ref()}; } // The ``printf`` argument formatter. template class printf_arg_formatter : public arg_formatter { private: using base = arg_formatter; using context_type = basic_printf_context; context_type& context_; void write_null_pointer(bool is_string = false) { auto s = this->specs; s.type = presentation_type::none; write_bytes(this->out, is_string ? "(null)" : "(nil)", s); } public: printf_arg_formatter(buffer_appender iter, format_specs& s, context_type& ctx) : base(make_arg_formatter(iter, s)), context_(ctx) {} void operator()(monostate value) { base::operator()(value); } template ::value)> void operator()(T value) { // MSVC2013 fails to compile separate overloads for bool and Char so use // std::is_same instead. if (!std::is_same::value) { base::operator()(value); return; } format_specs fmt_specs = this->specs; if (fmt_specs.type != presentation_type::none && fmt_specs.type != presentation_type::chr) { return (*this)(static_cast(value)); } fmt_specs.sign = sign::none; fmt_specs.alt = false; fmt_specs.fill[0] = ' '; // Ignore '0' flag for char types. // align::numeric needs to be overwritten here since the '0' flag is // ignored for non-numeric types if (fmt_specs.align == align::none || fmt_specs.align == align::numeric) fmt_specs.align = align::right; write(this->out, static_cast(value), fmt_specs); } template ::value)> void operator()(T value) { base::operator()(value); } /** Formats a null-terminated C string. */ void operator()(const char* value) { if (value) base::operator()(value); else write_null_pointer(this->specs.type != presentation_type::pointer); } /** Formats a null-terminated wide C string. */ void operator()(const wchar_t* value) { if (value) base::operator()(value); else write_null_pointer(this->specs.type != presentation_type::pointer); } void operator()(basic_string_view value) { base::operator()(value); } /** Formats a pointer. */ void operator()(const void* value) { if (value) base::operator()(value); else write_null_pointer(); } /** Formats an argument of a custom (user-defined) type. */ void operator()(typename basic_format_arg::handle handle) { auto parse_ctx = basic_format_parse_context({}); handle.format(parse_ctx, context_); } }; template void parse_flags(format_specs& specs, const Char*& it, const Char* end) { for (; it != end; ++it) { switch (*it) { case '-': specs.align = align::left; break; case '+': specs.sign = sign::plus; break; case '0': specs.fill[0] = '0'; break; case ' ': if (specs.sign != sign::plus) specs.sign = sign::space; break; case '#': specs.alt = true; break; default: return; } } } template auto parse_header(const Char*& it, const Char* end, format_specs& specs, GetArg get_arg) -> int { int arg_index = -1; Char c = *it; if (c >= '0' && c <= '9') { // Parse an argument index (if followed by '$') or a width possibly // preceded with '0' flag(s). int value = parse_nonnegative_int(it, end, -1); if (it != end && *it == '$') { // value is an argument index ++it; arg_index = value != -1 ? value : max_value(); } else { if (c == '0') specs.fill[0] = '0'; if (value != 0) { // Nonzero value means that we parsed width and don't need to // parse it or flags again, so return now. if (value == -1) throw_format_error("number is too big"); specs.width = value; return arg_index; } } } parse_flags(specs, it, end); // Parse width. if (it != end) { if (*it >= '0' && *it <= '9') { specs.width = parse_nonnegative_int(it, end, -1); if (specs.width == -1) throw_format_error("number is too big"); } else if (*it == '*') { ++it; specs.width = static_cast(visit_format_arg( detail::printf_width_handler(specs), get_arg(-1))); } } return arg_index; } inline auto parse_printf_presentation_type(char c, type t) -> presentation_type { using pt = presentation_type; constexpr auto integral_set = sint_set | uint_set | bool_set | char_set; switch (c) { case 'd': return in(t, integral_set) ? pt::dec : pt::none; case 'o': return in(t, integral_set) ? pt::oct : pt::none; case 'x': return in(t, integral_set) ? pt::hex_lower : pt::none; case 'X': return in(t, integral_set) ? pt::hex_upper : pt::none; case 'a': return in(t, float_set) ? pt::hexfloat_lower : pt::none; case 'A': return in(t, float_set) ? pt::hexfloat_upper : pt::none; case 'e': return in(t, float_set) ? pt::exp_lower : pt::none; case 'E': return in(t, float_set) ? pt::exp_upper : pt::none; case 'f': return in(t, float_set) ? pt::fixed_lower : pt::none; case 'F': return in(t, float_set) ? pt::fixed_upper : pt::none; case 'g': return in(t, float_set) ? pt::general_lower : pt::none; case 'G': return in(t, float_set) ? pt::general_upper : pt::none; case 'c': return in(t, integral_set) ? pt::chr : pt::none; case 's': return in(t, string_set | cstring_set) ? pt::string : pt::none; case 'p': return in(t, pointer_set | cstring_set) ? pt::pointer : pt::none; default: return pt::none; } } template void vprintf(buffer& buf, basic_string_view format, basic_format_args args) { using iterator = buffer_appender; auto out = iterator(buf); auto context = basic_printf_context(out, args); auto parse_ctx = basic_format_parse_context(format); // Returns the argument with specified index or, if arg_index is -1, the next // argument. auto get_arg = [&](int arg_index) { if (arg_index < 0) arg_index = parse_ctx.next_arg_id(); else parse_ctx.check_arg_id(--arg_index); return detail::get_arg(context, arg_index); }; const Char* start = parse_ctx.begin(); const Char* end = parse_ctx.end(); auto it = start; while (it != end) { if (!find(it, end, '%', it)) { it = end; // find leaves it == nullptr if it doesn't find '%'. break; } Char c = *it++; if (it != end && *it == c) { write(out, basic_string_view(start, to_unsigned(it - start))); start = ++it; continue; } write(out, basic_string_view(start, to_unsigned(it - 1 - start))); auto specs = format_specs(); specs.align = align::right; // Parse argument index, flags and width. int arg_index = parse_header(it, end, specs, get_arg); if (arg_index == 0) throw_format_error("argument not found"); // Parse precision. if (it != end && *it == '.') { ++it; c = it != end ? *it : 0; if ('0' <= c && c <= '9') { specs.precision = parse_nonnegative_int(it, end, 0); } else if (c == '*') { ++it; specs.precision = static_cast( visit_format_arg(printf_precision_handler(), get_arg(-1))); } else { specs.precision = 0; } } auto arg = get_arg(arg_index); // For d, i, o, u, x, and X conversion specifiers, if a precision is // specified, the '0' flag is ignored if (specs.precision >= 0 && arg.is_integral()) { // Ignore '0' for non-numeric types or if '-' present. specs.fill[0] = ' '; } if (specs.precision >= 0 && arg.type() == type::cstring_type) { auto str = visit_format_arg(get_cstring(), arg); auto str_end = str + specs.precision; auto nul = std::find(str, str_end, Char()); auto sv = basic_string_view( str, to_unsigned(nul != str_end ? nul - str : specs.precision)); arg = make_arg>(sv); } if (specs.alt && visit_format_arg(is_zero_int(), arg)) specs.alt = false; if (specs.fill[0] == '0') { if (arg.is_arithmetic() && specs.align != align::left) specs.align = align::numeric; else specs.fill[0] = ' '; // Ignore '0' flag for non-numeric types or if '-' // flag is also present. } // Parse length and convert the argument to the required type. c = it != end ? *it++ : 0; Char t = it != end ? *it : 0; switch (c) { case 'h': if (t == 'h') { ++it; t = it != end ? *it : 0; convert_arg(arg, t); } else { convert_arg(arg, t); } break; case 'l': if (t == 'l') { ++it; t = it != end ? *it : 0; convert_arg(arg, t); } else { convert_arg(arg, t); } break; case 'j': convert_arg(arg, t); break; case 'z': convert_arg(arg, t); break; case 't': convert_arg(arg, t); break; case 'L': // printf produces garbage when 'L' is omitted for long double, no // need to do the same. break; default: --it; convert_arg(arg, c); } // Parse type. if (it == end) throw_format_error("invalid format string"); char type = static_cast(*it++); if (arg.is_integral()) { // Normalize type. switch (type) { case 'i': case 'u': type = 'd'; break; case 'c': visit_format_arg(char_converter>(arg), arg); break; } } specs.type = parse_printf_presentation_type(type, arg.type()); if (specs.type == presentation_type::none) throw_format_error("invalid format specifier"); start = it; // Format argument. visit_format_arg(printf_arg_formatter(out, specs, context), arg); } write(out, basic_string_view(start, to_unsigned(it - start))); } FMT_END_DETAIL_NAMESPACE using printf_context = basic_printf_context; using wprintf_context = basic_printf_context; using printf_args = basic_format_args; using wprintf_args = basic_format_args; /** \rst Constructs an `~fmt::format_arg_store` object that contains references to arguments and can be implicitly converted to `~fmt::printf_args`. \endrst */ template inline auto make_printf_args(const T&... args) -> format_arg_store { return {args...}; } // DEPRECATED! template inline auto make_wprintf_args(const T&... args) -> format_arg_store { return {args...}; } template inline auto vsprintf( basic_string_view fmt, basic_format_args>> args) -> std::basic_string { auto buf = basic_memory_buffer(); detail::vprintf(buf, fmt, args); return to_string(buf); } /** \rst Formats arguments and returns the result as a string. **Example**:: std::string message = fmt::sprintf("The answer is %d", 42); \endrst */ template ::value, char_t>> inline auto sprintf(const S& fmt, const T&... args) -> std::basic_string { return vsprintf(detail::to_string_view(fmt), fmt::make_format_args>(args...)); } template inline auto vfprintf( std::FILE* f, basic_string_view fmt, basic_format_args>> args) -> int { auto buf = basic_memory_buffer(); detail::vprintf(buf, fmt, args); size_t size = buf.size(); return std::fwrite(buf.data(), sizeof(Char), size, f) < size ? -1 : static_cast(size); } /** \rst Prints formatted data to the file *f*. **Example**:: fmt::fprintf(stderr, "Don't %s!", "panic"); \endrst */ template > inline auto fprintf(std::FILE* f, const S& fmt, const T&... args) -> int { return vfprintf(f, detail::to_string_view(fmt), fmt::make_format_args>(args...)); } template FMT_DEPRECATED inline auto vprintf( basic_string_view fmt, basic_format_args>> args) -> int { return vfprintf(stdout, fmt, args); } /** \rst Prints formatted data to ``stdout``. **Example**:: fmt::printf("Elapsed time: %.2f seconds", 1.23); \endrst */ template inline auto printf(string_view fmt, const T&... args) -> int { return vfprintf(stdout, fmt, make_printf_args(args...)); } template FMT_DEPRECATED inline auto printf(basic_string_view fmt, const T&... args) -> int { return vfprintf(stdout, fmt, make_wprintf_args(args...)); } FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_PRINTF_H_ btop-1.3.0/include/fmt/ranges.h000066400000000000000000000570531454653170500163440ustar00rootroot00000000000000// Formatting library for C++ - experimental range support // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. // // Copyright (c) 2018 - present, Remotion (Igor Schulz) // All Rights Reserved // {fmt} support for ranges, containers and types tuple interface. #ifndef FMT_RANGES_H_ #define FMT_RANGES_H_ #include #include #include #include "format.h" FMT_BEGIN_NAMESPACE namespace detail { template auto copy(const Range& range, OutputIt out) -> OutputIt { for (auto it = range.begin(), end = range.end(); it != end; ++it) *out++ = *it; return out; } template auto copy(const char* str, OutputIt out) -> OutputIt { while (*str) *out++ = *str++; return out; } template auto copy(char ch, OutputIt out) -> OutputIt { *out++ = ch; return out; } template auto copy(wchar_t ch, OutputIt out) -> OutputIt { *out++ = ch; return out; } // Returns true if T has a std::string-like interface, like std::string_view. template class is_std_string_like { template static auto check(U* p) -> decltype((void)p->find('a'), p->length(), (void)p->data(), int()); template static void check(...); public: static constexpr const bool value = is_string::value || std::is_convertible>::value || !std::is_void(nullptr))>::value; }; template struct is_std_string_like> : std::true_type {}; template class is_map { template static auto check(U*) -> typename U::mapped_type; template static void check(...); public: #ifdef FMT_FORMAT_MAP_AS_LIST // DEPRECATED! static constexpr const bool value = false; #else static constexpr const bool value = !std::is_void(nullptr))>::value; #endif }; template class is_set { template static auto check(U*) -> typename U::key_type; template static void check(...); public: #ifdef FMT_FORMAT_SET_AS_LIST // DEPRECATED! static constexpr const bool value = false; #else static constexpr const bool value = !std::is_void(nullptr))>::value && !is_map::value; #endif }; template struct conditional_helper {}; template struct is_range_ : std::false_type {}; #if !FMT_MSC_VERSION || FMT_MSC_VERSION > 1800 # define FMT_DECLTYPE_RETURN(val) \ ->decltype(val) { return val; } \ static_assert( \ true, "") // This makes it so that a semicolon is required after the // macro, which helps clang-format handle the formatting. // C array overload template auto range_begin(const T (&arr)[N]) -> const T* { return arr; } template auto range_end(const T (&arr)[N]) -> const T* { return arr + N; } template struct has_member_fn_begin_end_t : std::false_type {}; template struct has_member_fn_begin_end_t().begin()), decltype(std::declval().end())>> : std::true_type {}; // Member function overload template auto range_begin(T&& rng) FMT_DECLTYPE_RETURN(static_cast(rng).begin()); template auto range_end(T&& rng) FMT_DECLTYPE_RETURN(static_cast(rng).end()); // ADL overload. Only participates in overload resolution if member functions // are not found. template auto range_begin(T&& rng) -> enable_if_t::value, decltype(begin(static_cast(rng)))> { return begin(static_cast(rng)); } template auto range_end(T&& rng) -> enable_if_t::value, decltype(end(static_cast(rng)))> { return end(static_cast(rng)); } template struct has_const_begin_end : std::false_type {}; template struct has_mutable_begin_end : std::false_type {}; template struct has_const_begin_end< T, void_t< decltype(detail::range_begin(std::declval&>())), decltype(detail::range_end(std::declval&>()))>> : std::true_type {}; template struct has_mutable_begin_end< T, void_t())), decltype(detail::range_end(std::declval())), // the extra int here is because older versions of MSVC don't // SFINAE properly unless there are distinct types int>> : std::true_type {}; template struct is_range_ : std::integral_constant::value || has_mutable_begin_end::value)> {}; # undef FMT_DECLTYPE_RETURN #endif // tuple_size and tuple_element check. template class is_tuple_like_ { template static auto check(U* p) -> decltype(std::tuple_size::value, int()); template static void check(...); public: static constexpr const bool value = !std::is_void(nullptr))>::value; }; // Check for integer_sequence #if defined(__cpp_lib_integer_sequence) || FMT_MSC_VERSION >= 1900 template using integer_sequence = std::integer_sequence; template using index_sequence = std::index_sequence; template using make_index_sequence = std::make_index_sequence; #else template struct integer_sequence { using value_type = T; static FMT_CONSTEXPR size_t size() { return sizeof...(N); } }; template using index_sequence = integer_sequence; template struct make_integer_sequence : make_integer_sequence {}; template struct make_integer_sequence : integer_sequence {}; template using make_index_sequence = make_integer_sequence; #endif template using tuple_index_sequence = make_index_sequence::value>; template ::value> class is_tuple_formattable_ { public: static constexpr const bool value = false; }; template class is_tuple_formattable_ { template static std::true_type check2(index_sequence, integer_sequence); static std::false_type check2(...); template static decltype(check2( index_sequence{}, integer_sequence< bool, (is_formattable::type, C>::value)...>{})) check(index_sequence); public: static constexpr const bool value = decltype(check(tuple_index_sequence{}))::value; }; template FMT_CONSTEXPR void for_each(index_sequence, Tuple&& t, F&& f) { using std::get; // Using a free function get(Tuple) now. const int unused[] = {0, ((void)f(get(t)), 0)...}; ignore_unused(unused); } template FMT_CONSTEXPR void for_each(Tuple&& t, F&& f) { for_each(tuple_index_sequence>(), std::forward(t), std::forward(f)); } template void for_each2(index_sequence, Tuple1&& t1, Tuple2&& t2, F&& f) { using std::get; const int unused[] = {0, ((void)f(get(t1), get(t2)), 0)...}; ignore_unused(unused); } template void for_each2(Tuple1&& t1, Tuple2&& t2, F&& f) { for_each2(tuple_index_sequence>(), std::forward(t1), std::forward(t2), std::forward(f)); } namespace tuple { // Workaround a bug in MSVC 2019 (v140). template using result_t = std::tuple, Char>...>; using std::get; template auto get_formatters(index_sequence) -> result_t(std::declval()))...>; } // namespace tuple #if FMT_MSC_VERSION && FMT_MSC_VERSION < 1920 // Older MSVC doesn't get the reference type correctly for arrays. template struct range_reference_type_impl { using type = decltype(*detail::range_begin(std::declval())); }; template struct range_reference_type_impl { using type = T&; }; template using range_reference_type = typename range_reference_type_impl::type; #else template using range_reference_type = decltype(*detail::range_begin(std::declval())); #endif // We don't use the Range's value_type for anything, but we do need the Range's // reference type, with cv-ref stripped. template using uncvref_type = remove_cvref_t>; template FMT_CONSTEXPR auto maybe_set_debug_format(Formatter& f, bool set) -> decltype(f.set_debug_format(set)) { f.set_debug_format(set); } template FMT_CONSTEXPR void maybe_set_debug_format(Formatter&, ...) {} // These are not generic lambdas for compatibility with C++11. template struct parse_empty_specs { template FMT_CONSTEXPR void operator()(Formatter& f) { f.parse(ctx); detail::maybe_set_debug_format(f, true); } ParseContext& ctx; }; template struct format_tuple_element { using char_type = typename FormatContext::char_type; template void operator()(const formatter& f, const T& v) { if (i > 0) ctx.advance_to(detail::copy_str(separator, ctx.out())); ctx.advance_to(f.format(v, ctx)); ++i; } int i; FormatContext& ctx; basic_string_view separator; }; } // namespace detail template struct is_tuple_like { static constexpr const bool value = detail::is_tuple_like_::value && !detail::is_range_::value; }; template struct is_tuple_formattable { static constexpr const bool value = detail::is_tuple_formattable_::value; }; template struct formatter::value && fmt::is_tuple_formattable::value>> { private: decltype(detail::tuple::get_formatters( detail::tuple_index_sequence())) formatters_; basic_string_view separator_ = detail::string_literal{}; basic_string_view opening_bracket_ = detail::string_literal{}; basic_string_view closing_bracket_ = detail::string_literal{}; public: FMT_CONSTEXPR formatter() {} FMT_CONSTEXPR void set_separator(basic_string_view sep) { separator_ = sep; } FMT_CONSTEXPR void set_brackets(basic_string_view open, basic_string_view close) { opening_bracket_ = open; closing_bracket_ = close; } template FMT_CONSTEXPR auto parse(ParseContext& ctx) -> decltype(ctx.begin()) { auto it = ctx.begin(); if (it != ctx.end() && *it != '}') FMT_THROW(format_error("invalid format specifier")); detail::for_each(formatters_, detail::parse_empty_specs{ctx}); return it; } template auto format(const Tuple& value, FormatContext& ctx) const -> decltype(ctx.out()) { ctx.advance_to(detail::copy_str(opening_bracket_, ctx.out())); detail::for_each2( formatters_, value, detail::format_tuple_element{0, ctx, separator_}); return detail::copy_str(closing_bracket_, ctx.out()); } }; template struct is_range { static constexpr const bool value = detail::is_range_::value && !detail::is_std_string_like::value && !std::is_convertible>::value && !std::is_convertible>::value; }; namespace detail { template struct range_mapper { using mapper = arg_mapper; template , Context>::value)> static auto map(T&& value) -> T&& { return static_cast(value); } template , Context>::value)> static auto map(T&& value) -> decltype(mapper().map(static_cast(value))) { return mapper().map(static_cast(value)); } }; template using range_formatter_type = formatter>{}.map( std::declval()))>, Char>; template using maybe_const_range = conditional_t::value, const R, R>; // Workaround a bug in MSVC 2015 and earlier. #if !FMT_MSC_VERSION || FMT_MSC_VERSION >= 1910 template struct is_formattable_delayed : is_formattable>, Char> {}; #endif } // namespace detail template struct range_formatter; template struct range_formatter< T, Char, enable_if_t>, is_formattable>::value>> { private: detail::range_formatter_type underlying_; basic_string_view separator_ = detail::string_literal{}; basic_string_view opening_bracket_ = detail::string_literal{}; basic_string_view closing_bracket_ = detail::string_literal{}; public: FMT_CONSTEXPR range_formatter() {} FMT_CONSTEXPR auto underlying() -> detail::range_formatter_type& { return underlying_; } FMT_CONSTEXPR void set_separator(basic_string_view sep) { separator_ = sep; } FMT_CONSTEXPR void set_brackets(basic_string_view open, basic_string_view close) { opening_bracket_ = open; closing_bracket_ = close; } template FMT_CONSTEXPR auto parse(ParseContext& ctx) -> decltype(ctx.begin()) { auto it = ctx.begin(); auto end = ctx.end(); if (it != end && *it == 'n') { set_brackets({}, {}); ++it; } if (it != end && *it != '}') { if (*it != ':') FMT_THROW(format_error("invalid format specifier")); ++it; } else { detail::maybe_set_debug_format(underlying_, true); } ctx.advance_to(it); return underlying_.parse(ctx); } template auto format(R&& range, FormatContext& ctx) const -> decltype(ctx.out()) { detail::range_mapper> mapper; auto out = ctx.out(); out = detail::copy_str(opening_bracket_, out); int i = 0; auto it = detail::range_begin(range); auto end = detail::range_end(range); for (; it != end; ++it) { if (i > 0) out = detail::copy_str(separator_, out); ctx.advance_to(out); out = underlying_.format(mapper.map(*it), ctx); ++i; } out = detail::copy_str(closing_bracket_, out); return out; } }; enum class range_format { disabled, map, set, sequence, string, debug_string }; namespace detail { template struct range_format_kind_ : std::integral_constant, T>::value ? range_format::disabled : is_map::value ? range_format::map : is_set::value ? range_format::set : range_format::sequence> {}; template struct range_default_formatter; template using range_format_constant = std::integral_constant; template struct range_default_formatter< K, R, Char, enable_if_t<(K == range_format::sequence || K == range_format::map || K == range_format::set)>> { using range_type = detail::maybe_const_range; range_formatter, Char> underlying_; FMT_CONSTEXPR range_default_formatter() { init(range_format_constant()); } FMT_CONSTEXPR void init(range_format_constant) { underlying_.set_brackets(detail::string_literal{}, detail::string_literal{}); } FMT_CONSTEXPR void init(range_format_constant) { underlying_.set_brackets(detail::string_literal{}, detail::string_literal{}); underlying_.underlying().set_brackets({}, {}); underlying_.underlying().set_separator( detail::string_literal{}); } FMT_CONSTEXPR void init(range_format_constant) {} template FMT_CONSTEXPR auto parse(ParseContext& ctx) -> decltype(ctx.begin()) { return underlying_.parse(ctx); } template auto format(range_type& range, FormatContext& ctx) const -> decltype(ctx.out()) { return underlying_.format(range, ctx); } }; } // namespace detail template struct range_format_kind : conditional_t< is_range::value, detail::range_format_kind_, std::integral_constant> {}; template struct formatter< R, Char, enable_if_t::value != range_format::disabled> // Workaround a bug in MSVC 2015 and earlier. #if !FMT_MSC_VERSION || FMT_MSC_VERSION >= 1910 , detail::is_formattable_delayed #endif >::value>> : detail::range_default_formatter::value, R, Char> { }; template struct tuple_join_view : detail::view { const std::tuple& tuple; basic_string_view sep; tuple_join_view(const std::tuple& t, basic_string_view s) : tuple(t), sep{s} {} }; // Define FMT_TUPLE_JOIN_SPECIFIERS to enable experimental format specifiers // support in tuple_join. It is disabled by default because of issues with // the dynamic width and precision. #ifndef FMT_TUPLE_JOIN_SPECIFIERS # define FMT_TUPLE_JOIN_SPECIFIERS 0 #endif template struct formatter, Char> { template FMT_CONSTEXPR auto parse(ParseContext& ctx) -> decltype(ctx.begin()) { return do_parse(ctx, std::integral_constant()); } template auto format(const tuple_join_view& value, FormatContext& ctx) const -> typename FormatContext::iterator { return do_format(value, ctx, std::integral_constant()); } private: std::tuple::type, Char>...> formatters_; template FMT_CONSTEXPR auto do_parse(ParseContext& ctx, std::integral_constant) -> decltype(ctx.begin()) { return ctx.begin(); } template FMT_CONSTEXPR auto do_parse(ParseContext& ctx, std::integral_constant) -> decltype(ctx.begin()) { auto end = ctx.begin(); #if FMT_TUPLE_JOIN_SPECIFIERS end = std::get(formatters_).parse(ctx); if (N > 1) { auto end1 = do_parse(ctx, std::integral_constant()); if (end != end1) FMT_THROW(format_error("incompatible format specs for tuple elements")); } #endif return end; } template auto do_format(const tuple_join_view&, FormatContext& ctx, std::integral_constant) const -> typename FormatContext::iterator { return ctx.out(); } template auto do_format(const tuple_join_view& value, FormatContext& ctx, std::integral_constant) const -> typename FormatContext::iterator { auto out = std::get(formatters_) .format(std::get(value.tuple), ctx); if (N > 1) { out = std::copy(value.sep.begin(), value.sep.end(), out); ctx.advance_to(out); return do_format(value, ctx, std::integral_constant()); } return out; } }; namespace detail { // Check if T has an interface like a container adaptor (e.g. std::stack, // std::queue, std::priority_queue). template class is_container_adaptor_like { template static auto check(U* p) -> typename U::container_type; template static void check(...); public: static constexpr const bool value = !std::is_void(nullptr))>::value; }; template struct all { const Container& c; auto begin() const -> typename Container::const_iterator { return c.begin(); } auto end() const -> typename Container::const_iterator { return c.end(); } }; } // namespace detail template struct formatter::value>> : formatter, Char> { using all = detail::all; template auto format(const T& t, FormatContext& ctx) const -> decltype(ctx.out()) { struct getter : T { static auto get(const T& t) -> all { return {t.*(&getter::c)}; // Access c through the derived class. } }; return formatter::format(getter::get(t), ctx); } }; FMT_BEGIN_EXPORT /** \rst Returns an object that formats `tuple` with elements separated by `sep`. **Example**:: std::tuple t = {1, 'a'}; fmt::print("{}", fmt::join(t, ", ")); // Output: "1, a" \endrst */ template FMT_CONSTEXPR auto join(const std::tuple& tuple, string_view sep) -> tuple_join_view { return {tuple, sep}; } template FMT_CONSTEXPR auto join(const std::tuple& tuple, basic_string_view sep) -> tuple_join_view { return {tuple, sep}; } /** \rst Returns an object that formats `initializer_list` with elements separated by `sep`. **Example**:: fmt::print("{}", fmt::join({1, 2, 3}, ", ")); // Output: "1, 2, 3" \endrst */ template auto join(std::initializer_list list, string_view sep) -> join_view { return join(std::begin(list), std::end(list), sep); } FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_RANGES_H_ btop-1.3.0/include/fmt/std.h000066400000000000000000000246521454653170500156560ustar00rootroot00000000000000// Formatting library for C++ - formatters for standard library types // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_STD_H_ #define FMT_STD_H_ #include #include #include #include #include #include #include #include "ostream.h" #if FMT_HAS_INCLUDE() # include #endif // Checking FMT_CPLUSPLUS for warning suppression in MSVC. #if FMT_CPLUSPLUS >= 201703L # if FMT_HAS_INCLUDE() # include # endif # if FMT_HAS_INCLUDE() # include # endif # if FMT_HAS_INCLUDE() # include # endif #endif // GCC 4 does not support FMT_HAS_INCLUDE. #if FMT_HAS_INCLUDE() || defined(__GLIBCXX__) # include // Android NDK with gabi++ library on some architectures does not implement // abi::__cxa_demangle(). # ifndef __GABIXX_CXXABI_H__ # define FMT_HAS_ABI_CXA_DEMANGLE # endif #endif #ifdef __cpp_lib_filesystem FMT_BEGIN_NAMESPACE namespace detail { template void write_escaped_path(basic_memory_buffer& quoted, const std::filesystem::path& p) { write_escaped_string(std::back_inserter(quoted), p.string()); } # ifdef _WIN32 template <> inline void write_escaped_path(memory_buffer& quoted, const std::filesystem::path& p) { auto buf = basic_memory_buffer(); write_escaped_string(std::back_inserter(buf), p.native()); // Convert UTF-16 to UTF-8. if (!to_utf8::convert(quoted, {buf.data(), buf.size()})) FMT_THROW(std::runtime_error("invalid utf16")); } # endif template <> inline void write_escaped_path( basic_memory_buffer& quoted, const std::filesystem::path& p) { write_escaped_string( std::back_inserter(quoted), p.native()); } } // namespace detail FMT_EXPORT template struct formatter : formatter> { template FMT_CONSTEXPR auto parse(ParseContext& ctx) { auto out = formatter>::parse(ctx); this->set_debug_format(false); return out; } template auto format(const std::filesystem::path& p, FormatContext& ctx) const -> typename FormatContext::iterator { auto quoted = basic_memory_buffer(); detail::write_escaped_path(quoted, p); return formatter>::format( basic_string_view(quoted.data(), quoted.size()), ctx); } }; FMT_END_NAMESPACE #endif FMT_BEGIN_NAMESPACE FMT_EXPORT template struct formatter : basic_ostream_formatter {}; FMT_END_NAMESPACE #ifdef __cpp_lib_optional FMT_BEGIN_NAMESPACE FMT_EXPORT template struct formatter, Char, std::enable_if_t::value>> { private: formatter underlying_; static constexpr basic_string_view optional = detail::string_literal{}; static constexpr basic_string_view none = detail::string_literal{}; template FMT_CONSTEXPR static auto maybe_set_debug_format(U& u, bool set) -> decltype(u.set_debug_format(set)) { u.set_debug_format(set); } template FMT_CONSTEXPR static void maybe_set_debug_format(U&, ...) {} public: template FMT_CONSTEXPR auto parse(ParseContext& ctx) { maybe_set_debug_format(underlying_, true); return underlying_.parse(ctx); } template auto format(std::optional const& opt, FormatContext& ctx) const -> decltype(ctx.out()) { if (!opt) return detail::write(ctx.out(), none); auto out = ctx.out(); out = detail::write(out, optional); ctx.advance_to(out); out = underlying_.format(*opt, ctx); return detail::write(out, ')'); } }; FMT_END_NAMESPACE #endif // __cpp_lib_optional #ifdef __cpp_lib_variant FMT_BEGIN_NAMESPACE FMT_EXPORT template struct formatter { template FMT_CONSTEXPR auto parse(ParseContext& ctx) -> decltype(ctx.begin()) { return ctx.begin(); } template auto format(const std::monostate&, FormatContext& ctx) const -> decltype(ctx.out()) { auto out = ctx.out(); out = detail::write(out, "monostate"); return out; } }; namespace detail { template using variant_index_sequence = std::make_index_sequence::value>; template struct is_variant_like_ : std::false_type {}; template struct is_variant_like_> : std::true_type {}; // formattable element check. template class is_variant_formattable_ { template static std::conjunction< is_formattable, C>...> check(std::index_sequence); public: static constexpr const bool value = decltype(check(variant_index_sequence{}))::value; }; template auto write_variant_alternative(OutputIt out, const T& v) -> OutputIt { if constexpr (is_string::value) return write_escaped_string(out, detail::to_string_view(v)); else if constexpr (std::is_same_v) return write_escaped_char(out, v); else return write(out, v); } } // namespace detail template struct is_variant_like { static constexpr const bool value = detail::is_variant_like_::value; }; template struct is_variant_formattable { static constexpr const bool value = detail::is_variant_formattable_::value; }; FMT_EXPORT template struct formatter< Variant, Char, std::enable_if_t, is_variant_formattable>>> { template FMT_CONSTEXPR auto parse(ParseContext& ctx) -> decltype(ctx.begin()) { return ctx.begin(); } template auto format(const Variant& value, FormatContext& ctx) const -> decltype(ctx.out()) { auto out = ctx.out(); out = detail::write(out, "variant("); try { std::visit( [&](const auto& v) { out = detail::write_variant_alternative(out, v); }, value); } catch (const std::bad_variant_access&) { detail::write(out, "valueless by exception"); } *out++ = ')'; return out; } }; FMT_END_NAMESPACE #endif // __cpp_lib_variant FMT_BEGIN_NAMESPACE FMT_EXPORT template struct formatter { template FMT_CONSTEXPR auto parse(ParseContext& ctx) -> decltype(ctx.begin()) { return ctx.begin(); } template FMT_CONSTEXPR auto format(const std::error_code& ec, FormatContext& ctx) const -> decltype(ctx.out()) { auto out = ctx.out(); out = detail::write_bytes(out, ec.category().name(), format_specs()); out = detail::write(out, Char(':')); out = detail::write(out, ec.value()); return out; } }; FMT_EXPORT template struct formatter< T, Char, typename std::enable_if::value>::type> { private: bool with_typename_ = false; public: FMT_CONSTEXPR auto parse(basic_format_parse_context& ctx) -> decltype(ctx.begin()) { auto it = ctx.begin(); auto end = ctx.end(); if (it == end || *it == '}') return it; if (*it == 't') { ++it; with_typename_ = true; } return it; } template auto format(const std::exception& ex, basic_format_context& ctx) const -> OutputIt { format_specs spec; auto out = ctx.out(); if (!with_typename_) return detail::write_bytes(out, string_view(ex.what()), spec); const std::type_info& ti = typeid(ex); #ifdef FMT_HAS_ABI_CXA_DEMANGLE int status = 0; std::size_t size = 0; std::unique_ptr demangled_name_ptr( abi::__cxa_demangle(ti.name(), nullptr, &size, &status), &std::free); string_view demangled_name_view; if (demangled_name_ptr) { demangled_name_view = demangled_name_ptr.get(); // Normalization of stdlib inline namespace names. // libc++ inline namespaces. // std::__1::* -> std::* // std::__1::__fs::* -> std::* // libstdc++ inline namespaces. // std::__cxx11::* -> std::* // std::filesystem::__cxx11::* -> std::filesystem::* if (demangled_name_view.starts_with("std::")) { char* begin = demangled_name_ptr.get(); char* to = begin + 5; // std:: for (char *from = to, *end = begin + demangled_name_view.size(); from < end;) { // This is safe, because demangled_name is NUL-terminated. if (from[0] == '_' && from[1] == '_') { char* next = from + 1; while (next < end && *next != ':') next++; if (next[0] == ':' && next[1] == ':') { from = next + 2; continue; } } *to++ = *from++; } demangled_name_view = {begin, detail::to_unsigned(to - begin)}; } } else { demangled_name_view = string_view(ti.name()); } out = detail::write_bytes(out, demangled_name_view, spec); #elif FMT_MSC_VERSION string_view demangled_name_view(ti.name()); if (demangled_name_view.starts_with("class ")) demangled_name_view.remove_prefix(6); else if (demangled_name_view.starts_with("struct ")) demangled_name_view.remove_prefix(7); out = detail::write_bytes(out, demangled_name_view, spec); #else out = detail::write_bytes(out, string_view(ti.name()), spec); #endif out = detail::write(out, Char(':')); out = detail::write(out, Char(' ')); out = detail::write_bytes(out, string_view(ex.what()), spec); return out; } }; FMT_END_NAMESPACE #endif // FMT_STD_H_ btop-1.3.0/include/fmt/xchar.h000066400000000000000000000232471454653170500161700ustar00rootroot00000000000000// Formatting library for C++ - optional wchar_t and exotic character support // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_XCHAR_H_ #define FMT_XCHAR_H_ #include #include "format.h" #ifndef FMT_STATIC_THOUSANDS_SEPARATOR # include #endif FMT_BEGIN_NAMESPACE namespace detail { template using is_exotic_char = bool_constant::value>; inline auto write_loc(std::back_insert_iterator> out, loc_value value, const format_specs& specs, locale_ref loc) -> bool { #ifndef FMT_STATIC_THOUSANDS_SEPARATOR auto& numpunct = std::use_facet>(loc.get()); auto separator = std::wstring(); auto grouping = numpunct.grouping(); if (!grouping.empty()) separator = std::wstring(1, numpunct.thousands_sep()); return value.visit(loc_writer{out, specs, separator, grouping, {}}); #endif return false; } } // namespace detail FMT_BEGIN_EXPORT using wstring_view = basic_string_view; using wformat_parse_context = basic_format_parse_context; using wformat_context = buffer_context; using wformat_args = basic_format_args; using wmemory_buffer = basic_memory_buffer; #if FMT_GCC_VERSION && FMT_GCC_VERSION < 409 // Workaround broken conversion on older gcc. template using wformat_string = wstring_view; inline auto runtime(wstring_view s) -> wstring_view { return s; } #else template using wformat_string = basic_format_string...>; inline auto runtime(wstring_view s) -> runtime_format_string { return {{s}}; } #endif template <> struct is_char : std::true_type {}; template <> struct is_char : std::true_type {}; template <> struct is_char : std::true_type {}; template <> struct is_char : std::true_type {}; template constexpr format_arg_store make_wformat_args( const T&... args) { return {args...}; } inline namespace literals { #if FMT_USE_USER_DEFINED_LITERALS && !FMT_USE_NONTYPE_TEMPLATE_ARGS constexpr detail::udl_arg operator"" _a(const wchar_t* s, size_t) { return {s}; } #endif } // namespace literals template auto join(It begin, Sentinel end, wstring_view sep) -> join_view { return {begin, end, sep}; } template auto join(Range&& range, wstring_view sep) -> join_view, detail::sentinel_t, wchar_t> { return join(std::begin(range), std::end(range), sep); } template auto join(std::initializer_list list, wstring_view sep) -> join_view { return join(std::begin(list), std::end(list), sep); } template ::value)> auto vformat(basic_string_view format_str, basic_format_args>> args) -> std::basic_string { auto buf = basic_memory_buffer(); detail::vformat_to(buf, format_str, args); return to_string(buf); } template auto format(wformat_string fmt, T&&... args) -> std::wstring { return vformat(fmt::wstring_view(fmt), fmt::make_wformat_args(args...)); } // Pass char_t as a default template parameter instead of using // std::basic_string> to reduce the symbol size. template , FMT_ENABLE_IF(!std::is_same::value && !std::is_same::value)> auto format(const S& format_str, T&&... args) -> std::basic_string { return vformat(detail::to_string_view(format_str), fmt::make_format_args>(args...)); } template , FMT_ENABLE_IF(detail::is_locale::value&& detail::is_exotic_char::value)> inline auto vformat( const Locale& loc, const S& format_str, basic_format_args>> args) -> std::basic_string { return detail::vformat(loc, detail::to_string_view(format_str), args); } template , FMT_ENABLE_IF(detail::is_locale::value&& detail::is_exotic_char::value)> inline auto format(const Locale& loc, const S& format_str, T&&... args) -> std::basic_string { return detail::vformat(loc, detail::to_string_view(format_str), fmt::make_format_args>(args...)); } template , FMT_ENABLE_IF(detail::is_output_iterator::value&& detail::is_exotic_char::value)> auto vformat_to(OutputIt out, const S& format_str, basic_format_args>> args) -> OutputIt { auto&& buf = detail::get_buffer(out); detail::vformat_to(buf, detail::to_string_view(format_str), args); return detail::get_iterator(buf, out); } template , FMT_ENABLE_IF(detail::is_output_iterator::value&& detail::is_exotic_char::value)> inline auto format_to(OutputIt out, const S& fmt, T&&... args) -> OutputIt { return vformat_to(out, detail::to_string_view(fmt), fmt::make_format_args>(args...)); } template , FMT_ENABLE_IF(detail::is_output_iterator::value&& detail::is_locale::value&& detail::is_exotic_char::value)> inline auto vformat_to( OutputIt out, const Locale& loc, const S& format_str, basic_format_args>> args) -> OutputIt { auto&& buf = detail::get_buffer(out); vformat_to(buf, detail::to_string_view(format_str), args, detail::locale_ref(loc)); return detail::get_iterator(buf, out); } template < typename OutputIt, typename Locale, typename S, typename... T, typename Char = char_t, bool enable = detail::is_output_iterator::value&& detail::is_locale::value&& detail::is_exotic_char::value> inline auto format_to(OutputIt out, const Locale& loc, const S& format_str, T&&... args) -> typename std::enable_if::type { return vformat_to(out, loc, detail::to_string_view(format_str), fmt::make_format_args>(args...)); } template ::value&& detail::is_exotic_char::value)> inline auto vformat_to_n( OutputIt out, size_t n, basic_string_view format_str, basic_format_args>> args) -> format_to_n_result { using traits = detail::fixed_buffer_traits; auto buf = detail::iterator_buffer(out, n); detail::vformat_to(buf, format_str, args); return {buf.out(), buf.count()}; } template , FMT_ENABLE_IF(detail::is_output_iterator::value&& detail::is_exotic_char::value)> inline auto format_to_n(OutputIt out, size_t n, const S& fmt, T&&... args) -> format_to_n_result { return vformat_to_n(out, n, detail::to_string_view(fmt), fmt::make_format_args>(args...)); } template , FMT_ENABLE_IF(detail::is_exotic_char::value)> inline auto formatted_size(const S& fmt, T&&... args) -> size_t { auto buf = detail::counting_buffer(); detail::vformat_to(buf, detail::to_string_view(fmt), fmt::make_format_args>(args...)); return buf.count(); } inline void vprint(std::FILE* f, wstring_view fmt, wformat_args args) { auto buf = wmemory_buffer(); detail::vformat_to(buf, fmt, args); buf.push_back(L'\0'); if (std::fputws(buf.data(), f) == -1) FMT_THROW(system_error(errno, FMT_STRING("cannot write to file"))); } inline void vprint(wstring_view fmt, wformat_args args) { vprint(stdout, fmt, args); } template void print(std::FILE* f, wformat_string fmt, T&&... args) { return vprint(f, wstring_view(fmt), fmt::make_wformat_args(args...)); } template void print(wformat_string fmt, T&&... args) { return vprint(wstring_view(fmt), fmt::make_wformat_args(args...)); } template void println(std::FILE* f, wformat_string fmt, T&&... args) { return print(f, L"{}\n", fmt::format(fmt, std::forward(args)...)); } template void println(wformat_string fmt, T&&... args) { return print(L"{}\n", fmt::format(fmt, std::forward(args)...)); } /** Converts *value* to ``std::wstring`` using the default format for type *T*. */ template inline auto to_wstring(const T& value) -> std::wstring { return format(FMT_STRING(L"{}"), value); } FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_XCHAR_H_ btop-1.3.0/include/widechar_width.hpp000066400000000000000000001073611454653170500176220ustar00rootroot00000000000000/** * widechar_width.h, generated on 2022-02-11. * See https://github.com/ridiculousfish/widecharwidth/ * * SHA1 file hashes: * UnicodeData.txt: 8a5c26bfb27df8cfab23cf2c34c62d8d3075ae4d * EastAsianWidth.txt: 8ec36ccac3852bf0c2f02e37c6151551cd14db72 * emoji-data.txt: 3f0ec08c001c4bc6df0b07d01068fc73808bfb4c */ #ifndef WIDECHAR_WIDTH_H #define WIDECHAR_WIDTH_H #include #include #include #include namespace utf8 { /* Special width values */ enum { widechar_nonprint = 0, // The character is not printable. widechar_combining = 0, // The character is a zero-width combiner. widechar_ambiguous = 1, // The character is East-Asian ambiguous width. widechar_private_use = 1, // The character is for private use. widechar_unassigned = 0, // The character is unassigned. widechar_widened_in_9 = 2, // Width is 1 in Unicode 8, 2 in Unicode 9+. widechar_non_character = 0 // The character is a noncharacter. }; /* An inclusive range of characters. */ struct widechar_range { uint32_t lo; uint32_t hi; }; /* Simple ASCII characters - used a lot, so we check them first. */ static const struct widechar_range widechar_ascii_table[] = { {0x00020, 0x0007E} }; /* Private usage range. */ static const struct widechar_range widechar_private_table[] = { {0x0E000, 0x0F8FF}, {0xF0000, 0xFFFFD}, {0x100000, 0x10FFFD} }; /* Nonprinting characters. */ static const struct widechar_range widechar_nonprint_table[] = { {0x00000, 0x0001F}, {0x0007F, 0x0009F}, {0x000AD, 0x000AD}, {0x00600, 0x00605}, {0x0061C, 0x0061C}, {0x006DD, 0x006DD}, {0x0070F, 0x0070F}, {0x00890, 0x00891}, {0x008E2, 0x008E2}, {0x0180E, 0x0180E}, {0x0200B, 0x0200F}, {0x02028, 0x0202E}, {0x02060, 0x02064}, {0x02066, 0x0206F}, {0x0D800, 0x0DFFF}, {0x0FEFF, 0x0FEFF}, {0x0FFF9, 0x0FFFB}, {0x110BD, 0x110BD}, {0x110CD, 0x110CD}, {0x13430, 0x13438}, {0x1BCA0, 0x1BCA3}, {0x1D173, 0x1D17A}, {0xE0001, 0xE0001}, {0xE0020, 0xE007F} }; /* Width 0 combining marks. */ static const struct widechar_range widechar_combining_table[] = { {0x00300, 0x0036F}, {0x00483, 0x00489}, {0x00591, 0x005BD}, {0x005BF, 0x005BF}, {0x005C1, 0x005C2}, {0x005C4, 0x005C5}, {0x005C7, 0x005C7}, {0x00610, 0x0061A}, {0x0064B, 0x0065F}, {0x00670, 0x00670}, {0x006D6, 0x006DC}, {0x006DF, 0x006E4}, {0x006E7, 0x006E8}, {0x006EA, 0x006ED}, {0x00711, 0x00711}, {0x00730, 0x0074A}, {0x007A6, 0x007B0}, {0x007EB, 0x007F3}, {0x007FD, 0x007FD}, {0x00816, 0x00819}, {0x0081B, 0x00823}, {0x00825, 0x00827}, {0x00829, 0x0082D}, {0x00859, 0x0085B}, {0x00898, 0x0089F}, {0x008CA, 0x008E1}, {0x008E3, 0x00903}, {0x0093A, 0x0093C}, {0x0093E, 0x0094F}, {0x00951, 0x00957}, {0x00962, 0x00963}, {0x00981, 0x00983}, {0x009BC, 0x009BC}, {0x009BE, 0x009C4}, {0x009C7, 0x009C8}, {0x009CB, 0x009CD}, {0x009D7, 0x009D7}, {0x009E2, 0x009E3}, {0x009FE, 0x009FE}, {0x00A01, 0x00A03}, {0x00A3C, 0x00A3C}, {0x00A3E, 0x00A42}, {0x00A47, 0x00A48}, {0x00A4B, 0x00A4D}, {0x00A51, 0x00A51}, {0x00A70, 0x00A71}, {0x00A75, 0x00A75}, {0x00A81, 0x00A83}, {0x00ABC, 0x00ABC}, {0x00ABE, 0x00AC5}, {0x00AC7, 0x00AC9}, {0x00ACB, 0x00ACD}, {0x00AE2, 0x00AE3}, {0x00AFA, 0x00AFF}, {0x00B01, 0x00B03}, {0x00B3C, 0x00B3C}, {0x00B3E, 0x00B44}, {0x00B47, 0x00B48}, {0x00B4B, 0x00B4D}, {0x00B55, 0x00B57}, {0x00B62, 0x00B63}, {0x00B82, 0x00B82}, {0x00BBE, 0x00BC2}, {0x00BC6, 0x00BC8}, {0x00BCA, 0x00BCD}, {0x00BD7, 0x00BD7}, {0x00C00, 0x00C04}, {0x00C3C, 0x00C3C}, {0x00C3E, 0x00C44}, {0x00C46, 0x00C48}, {0x00C4A, 0x00C4D}, {0x00C55, 0x00C56}, {0x00C62, 0x00C63}, {0x00C81, 0x00C83}, {0x00CBC, 0x00CBC}, {0x00CBE, 0x00CC4}, {0x00CC6, 0x00CC8}, {0x00CCA, 0x00CCD}, {0x00CD5, 0x00CD6}, {0x00CE2, 0x00CE3}, {0x00D00, 0x00D03}, {0x00D3B, 0x00D3C}, {0x00D3E, 0x00D44}, {0x00D46, 0x00D48}, {0x00D4A, 0x00D4D}, {0x00D57, 0x00D57}, {0x00D62, 0x00D63}, {0x00D81, 0x00D83}, {0x00DCA, 0x00DCA}, {0x00DCF, 0x00DD4}, {0x00DD6, 0x00DD6}, {0x00DD8, 0x00DDF}, {0x00DF2, 0x00DF3}, {0x00E31, 0x00E31}, {0x00E34, 0x00E3A}, {0x00E47, 0x00E4E}, {0x00EB1, 0x00EB1}, {0x00EB4, 0x00EBC}, {0x00EC8, 0x00ECD}, {0x00F18, 0x00F19}, {0x00F35, 0x00F35}, {0x00F37, 0x00F37}, {0x00F39, 0x00F39}, {0x00F3E, 0x00F3F}, {0x00F71, 0x00F84}, {0x00F86, 0x00F87}, {0x00F8D, 0x00F97}, {0x00F99, 0x00FBC}, {0x00FC6, 0x00FC6}, {0x0102B, 0x0103E}, {0x01056, 0x01059}, {0x0105E, 0x01060}, {0x01062, 0x01064}, {0x01067, 0x0106D}, {0x01071, 0x01074}, {0x01082, 0x0108D}, {0x0108F, 0x0108F}, {0x0109A, 0x0109D}, {0x0135D, 0x0135F}, {0x01712, 0x01715}, {0x01732, 0x01734}, {0x01752, 0x01753}, {0x01772, 0x01773}, {0x017B4, 0x017D3}, {0x017DD, 0x017DD}, {0x0180B, 0x0180D}, {0x0180F, 0x0180F}, {0x01885, 0x01886}, {0x018A9, 0x018A9}, {0x01920, 0x0192B}, {0x01930, 0x0193B}, {0x01A17, 0x01A1B}, {0x01A55, 0x01A5E}, {0x01A60, 0x01A7C}, {0x01A7F, 0x01A7F}, {0x01AB0, 0x01ACE}, {0x01B00, 0x01B04}, {0x01B34, 0x01B44}, {0x01B6B, 0x01B73}, {0x01B80, 0x01B82}, {0x01BA1, 0x01BAD}, {0x01BE6, 0x01BF3}, {0x01C24, 0x01C37}, {0x01CD0, 0x01CD2}, {0x01CD4, 0x01CE8}, {0x01CED, 0x01CED}, {0x01CF4, 0x01CF4}, {0x01CF7, 0x01CF9}, {0x01DC0, 0x01DFF}, {0x020D0, 0x020F0}, {0x02CEF, 0x02CF1}, {0x02D7F, 0x02D7F}, {0x02DE0, 0x02DFF}, {0x0302A, 0x0302F}, {0x03099, 0x0309A}, {0x0A66F, 0x0A672}, {0x0A674, 0x0A67D}, {0x0A69E, 0x0A69F}, {0x0A6F0, 0x0A6F1}, {0x0A802, 0x0A802}, {0x0A806, 0x0A806}, {0x0A80B, 0x0A80B}, {0x0A823, 0x0A827}, {0x0A82C, 0x0A82C}, {0x0A880, 0x0A881}, {0x0A8B4, 0x0A8C5}, {0x0A8E0, 0x0A8F1}, {0x0A8FF, 0x0A8FF}, {0x0A926, 0x0A92D}, {0x0A947, 0x0A953}, {0x0A980, 0x0A983}, {0x0A9B3, 0x0A9C0}, {0x0A9E5, 0x0A9E5}, {0x0AA29, 0x0AA36}, {0x0AA43, 0x0AA43}, {0x0AA4C, 0x0AA4D}, {0x0AA7B, 0x0AA7D}, {0x0AAB0, 0x0AAB0}, {0x0AAB2, 0x0AAB4}, {0x0AAB7, 0x0AAB8}, {0x0AABE, 0x0AABF}, {0x0AAC1, 0x0AAC1}, {0x0AAEB, 0x0AAEF}, {0x0AAF5, 0x0AAF6}, {0x0ABE3, 0x0ABEA}, {0x0ABEC, 0x0ABED}, {0x0FB1E, 0x0FB1E}, {0x0FE00, 0x0FE0F}, {0x0FE20, 0x0FE2F}, {0x101FD, 0x101FD}, {0x102E0, 0x102E0}, {0x10376, 0x1037A}, {0x10A01, 0x10A03}, {0x10A05, 0x10A06}, {0x10A0C, 0x10A0F}, {0x10A38, 0x10A3A}, {0x10A3F, 0x10A3F}, {0x10AE5, 0x10AE6}, {0x10D24, 0x10D27}, {0x10EAB, 0x10EAC}, {0x10F46, 0x10F50}, {0x10F82, 0x10F85}, {0x11000, 0x11002}, {0x11038, 0x11046}, {0x11070, 0x11070}, {0x11073, 0x11074}, {0x1107F, 0x11082}, {0x110B0, 0x110BA}, {0x110C2, 0x110C2}, {0x11100, 0x11102}, {0x11127, 0x11134}, {0x11145, 0x11146}, {0x11173, 0x11173}, {0x11180, 0x11182}, {0x111B3, 0x111C0}, {0x111C9, 0x111CC}, {0x111CE, 0x111CF}, {0x1122C, 0x11237}, {0x1123E, 0x1123E}, {0x112DF, 0x112EA}, {0x11300, 0x11303}, {0x1133B, 0x1133C}, {0x1133E, 0x11344}, {0x11347, 0x11348}, {0x1134B, 0x1134D}, {0x11357, 0x11357}, {0x11362, 0x11363}, {0x11366, 0x1136C}, {0x11370, 0x11374}, {0x11435, 0x11446}, {0x1145E, 0x1145E}, {0x114B0, 0x114C3}, {0x115AF, 0x115B5}, {0x115B8, 0x115C0}, {0x115DC, 0x115DD}, {0x11630, 0x11640}, {0x116AB, 0x116B7}, {0x1171D, 0x1172B}, {0x1182C, 0x1183A}, {0x11930, 0x11935}, {0x11937, 0x11938}, {0x1193B, 0x1193E}, {0x11940, 0x11940}, {0x11942, 0x11943}, {0x119D1, 0x119D7}, {0x119DA, 0x119E0}, {0x119E4, 0x119E4}, {0x11A01, 0x11A0A}, {0x11A33, 0x11A39}, {0x11A3B, 0x11A3E}, {0x11A47, 0x11A47}, {0x11A51, 0x11A5B}, {0x11A8A, 0x11A99}, {0x11C2F, 0x11C36}, {0x11C38, 0x11C3F}, {0x11C92, 0x11CA7}, {0x11CA9, 0x11CB6}, {0x11D31, 0x11D36}, {0x11D3A, 0x11D3A}, {0x11D3C, 0x11D3D}, {0x11D3F, 0x11D45}, {0x11D47, 0x11D47}, {0x11D8A, 0x11D8E}, {0x11D90, 0x11D91}, {0x11D93, 0x11D97}, {0x11EF3, 0x11EF6}, {0x16AF0, 0x16AF4}, {0x16B30, 0x16B36}, {0x16F4F, 0x16F4F}, {0x16F51, 0x16F87}, {0x16F8F, 0x16F92}, {0x16FE4, 0x16FE4}, {0x16FF0, 0x16FF1}, {0x1BC9D, 0x1BC9E}, {0x1CF00, 0x1CF2D}, {0x1CF30, 0x1CF46}, {0x1D165, 0x1D169}, {0x1D16D, 0x1D172}, {0x1D17B, 0x1D182}, {0x1D185, 0x1D18B}, {0x1D1AA, 0x1D1AD}, {0x1D242, 0x1D244}, {0x1DA00, 0x1DA36}, {0x1DA3B, 0x1DA6C}, {0x1DA75, 0x1DA75}, {0x1DA84, 0x1DA84}, {0x1DA9B, 0x1DA9F}, {0x1DAA1, 0x1DAAF}, {0x1E000, 0x1E006}, {0x1E008, 0x1E018}, {0x1E01B, 0x1E021}, {0x1E023, 0x1E024}, {0x1E026, 0x1E02A}, {0x1E130, 0x1E136}, {0x1E2AE, 0x1E2AE}, {0x1E2EC, 0x1E2EF}, {0x1E8D0, 0x1E8D6}, {0x1E944, 0x1E94A}, {0xE0100, 0xE01EF} }; /* Width 0 combining letters. */ static const struct widechar_range widechar_combiningletters_table[] = { {0x01160, 0x011FF}, {0x0D7B0, 0x0D7FF} }; /* Width 2 characters. */ static const struct widechar_range widechar_doublewide_table[] = { {0x01100, 0x0115F}, {0x02329, 0x0232A}, {0x02E80, 0x02E99}, {0x02E9B, 0x02EF3}, {0x02F00, 0x02FD5}, {0x02FF0, 0x02FFB}, {0x03000, 0x0303E}, {0x03041, 0x03096}, {0x03099, 0x030FF}, {0x03105, 0x0312F}, {0x03131, 0x0318E}, {0x03190, 0x031E3}, {0x031F0, 0x0321E}, {0x03220, 0x03247}, {0x03250, 0x04DBF}, {0x04E00, 0x0A48C}, {0x0A490, 0x0A4C6}, {0x0A960, 0x0A97C}, {0x0AC00, 0x0D7A3}, {0x0F900, 0x0FAFF}, {0x0FE10, 0x0FE19}, {0x0FE30, 0x0FE52}, {0x0FE54, 0x0FE66}, {0x0FE68, 0x0FE6B}, {0x0FF01, 0x0FF60}, {0x0FFE0, 0x0FFE6}, {0x16FE0, 0x16FE4}, {0x16FF0, 0x16FF1}, {0x17000, 0x187F7}, {0x18800, 0x18CD5}, {0x18D00, 0x18D08}, {0x1AFF0, 0x1AFF3}, {0x1AFF5, 0x1AFFB}, {0x1AFFD, 0x1AFFE}, {0x1B000, 0x1B122}, {0x1B150, 0x1B152}, {0x1B164, 0x1B167}, {0x1B170, 0x1B2FB}, {0x1F200, 0x1F200}, {0x1F202, 0x1F202}, {0x1F210, 0x1F219}, {0x1F21B, 0x1F22E}, {0x1F230, 0x1F231}, {0x1F237, 0x1F237}, {0x1F23B, 0x1F23B}, {0x1F240, 0x1F248}, {0x1F260, 0x1F265}, {0x1F57A, 0x1F57A}, {0x1F5A4, 0x1F5A4}, {0x1F6D1, 0x1F6D2}, {0x1F6D5, 0x1F6D7}, {0x1F6DD, 0x1F6DF}, {0x1F6F4, 0x1F6FC}, {0x1F7E0, 0x1F7EB}, {0x1F7F0, 0x1F7F0}, {0x1F90C, 0x1F90F}, {0x1F919, 0x1F93A}, {0x1F93C, 0x1F945}, {0x1F947, 0x1F97F}, {0x1F985, 0x1F9BF}, {0x1F9C1, 0x1F9FF}, {0x1FA70, 0x1FA74}, {0x1FA78, 0x1FA7C}, {0x1FA80, 0x1FA86}, {0x1FA90, 0x1FAAC}, {0x1FAB0, 0x1FABA}, {0x1FAC0, 0x1FAC5}, {0x1FAD0, 0x1FAD9}, {0x1FAE0, 0x1FAE7}, {0x1FAF0, 0x1FAF6}, {0x20000, 0x2FFFD}, {0x30000, 0x3FFFD} }; /* Ambiguous-width characters. */ static const struct widechar_range widechar_ambiguous_table[] = { {0x000A1, 0x000A1}, {0x000A4, 0x000A4}, {0x000A7, 0x000A8}, {0x000AA, 0x000AA}, {0x000AD, 0x000AE}, {0x000B0, 0x000B4}, {0x000B6, 0x000BA}, {0x000BC, 0x000BF}, {0x000C6, 0x000C6}, {0x000D0, 0x000D0}, {0x000D7, 0x000D8}, {0x000DE, 0x000E1}, {0x000E6, 0x000E6}, {0x000E8, 0x000EA}, {0x000EC, 0x000ED}, {0x000F0, 0x000F0}, {0x000F2, 0x000F3}, {0x000F7, 0x000FA}, {0x000FC, 0x000FC}, {0x000FE, 0x000FE}, {0x00101, 0x00101}, {0x00111, 0x00111}, {0x00113, 0x00113}, {0x0011B, 0x0011B}, {0x00126, 0x00127}, {0x0012B, 0x0012B}, {0x00131, 0x00133}, {0x00138, 0x00138}, {0x0013F, 0x00142}, {0x00144, 0x00144}, {0x00148, 0x0014B}, {0x0014D, 0x0014D}, {0x00152, 0x00153}, {0x00166, 0x00167}, {0x0016B, 0x0016B}, {0x001CE, 0x001CE}, {0x001D0, 0x001D0}, {0x001D2, 0x001D2}, {0x001D4, 0x001D4}, {0x001D6, 0x001D6}, {0x001D8, 0x001D8}, {0x001DA, 0x001DA}, {0x001DC, 0x001DC}, {0x00251, 0x00251}, {0x00261, 0x00261}, {0x002C4, 0x002C4}, {0x002C7, 0x002C7}, {0x002C9, 0x002CB}, {0x002CD, 0x002CD}, {0x002D0, 0x002D0}, {0x002D8, 0x002DB}, {0x002DD, 0x002DD}, {0x002DF, 0x002DF}, {0x00300, 0x0036F}, {0x00391, 0x003A1}, {0x003A3, 0x003A9}, {0x003B1, 0x003C1}, {0x003C3, 0x003C9}, {0x00401, 0x00401}, {0x00410, 0x0044F}, {0x00451, 0x00451}, {0x02010, 0x02010}, {0x02013, 0x02016}, {0x02018, 0x02019}, {0x0201C, 0x0201D}, {0x02020, 0x02022}, {0x02024, 0x02027}, {0x02030, 0x02030}, {0x02032, 0x02033}, {0x02035, 0x02035}, {0x0203B, 0x0203B}, {0x0203E, 0x0203E}, {0x02074, 0x02074}, {0x0207F, 0x0207F}, {0x02081, 0x02084}, {0x020AC, 0x020AC}, {0x02103, 0x02103}, {0x02105, 0x02105}, {0x02109, 0x02109}, {0x02113, 0x02113}, {0x02116, 0x02116}, {0x02121, 0x02122}, {0x02126, 0x02126}, {0x0212B, 0x0212B}, {0x02153, 0x02154}, {0x0215B, 0x0215E}, {0x02160, 0x0216B}, {0x02170, 0x02179}, {0x02189, 0x02189}, {0x02190, 0x02199}, {0x021B8, 0x021B9}, {0x021D2, 0x021D2}, {0x021D4, 0x021D4}, {0x021E7, 0x021E7}, {0x02200, 0x02200}, {0x02202, 0x02203}, {0x02207, 0x02208}, {0x0220B, 0x0220B}, {0x0220F, 0x0220F}, {0x02211, 0x02211}, {0x02215, 0x02215}, {0x0221A, 0x0221A}, {0x0221D, 0x02220}, {0x02223, 0x02223}, {0x02225, 0x02225}, {0x02227, 0x0222C}, {0x0222E, 0x0222E}, {0x02234, 0x02237}, {0x0223C, 0x0223D}, {0x02248, 0x02248}, {0x0224C, 0x0224C}, {0x02252, 0x02252}, {0x02260, 0x02261}, {0x02264, 0x02267}, {0x0226A, 0x0226B}, {0x0226E, 0x0226F}, {0x02282, 0x02283}, {0x02286, 0x02287}, {0x02295, 0x02295}, {0x02299, 0x02299}, {0x022A5, 0x022A5}, {0x022BF, 0x022BF}, {0x02312, 0x02312}, {0x02460, 0x024E9}, {0x024EB, 0x0254B}, {0x02550, 0x02573}, {0x02580, 0x0258F}, {0x02592, 0x02595}, {0x025A0, 0x025A1}, {0x025A3, 0x025A9}, {0x025B2, 0x025B3}, {0x025B6, 0x025B7}, {0x025BC, 0x025BD}, {0x025C0, 0x025C1}, {0x025C6, 0x025C8}, {0x025CB, 0x025CB}, {0x025CE, 0x025D1}, {0x025E2, 0x025E5}, {0x025EF, 0x025EF}, {0x02605, 0x02606}, {0x02609, 0x02609}, {0x0260E, 0x0260F}, {0x0261C, 0x0261C}, {0x0261E, 0x0261E}, {0x02640, 0x02640}, {0x02642, 0x02642}, {0x02660, 0x02661}, {0x02663, 0x02665}, {0x02667, 0x0266A}, {0x0266C, 0x0266D}, {0x0266F, 0x0266F}, {0x0269E, 0x0269F}, {0x026BF, 0x026BF}, {0x026C6, 0x026CD}, {0x026CF, 0x026D3}, {0x026D5, 0x026E1}, {0x026E3, 0x026E3}, {0x026E8, 0x026E9}, {0x026EB, 0x026F1}, {0x026F4, 0x026F4}, {0x026F6, 0x026F9}, {0x026FB, 0x026FC}, {0x026FE, 0x026FF}, {0x0273D, 0x0273D}, {0x02776, 0x0277F}, {0x02B56, 0x02B59}, {0x03248, 0x0324F}, {0x0E000, 0x0F8FF}, {0x0FE00, 0x0FE0F}, {0x0FFFD, 0x0FFFD}, {0x1F100, 0x1F10A}, {0x1F110, 0x1F12D}, {0x1F130, 0x1F169}, {0x1F170, 0x1F18D}, {0x1F18F, 0x1F190}, {0x1F19B, 0x1F1AC}, {0xE0100, 0xE01EF}, {0xF0000, 0xFFFFD}, {0x100000, 0x10FFFD} }; /* Unassigned characters. */ static const struct widechar_range widechar_unassigned_table[] = { {0x00378, 0x00379}, {0x00380, 0x00383}, {0x0038B, 0x0038B}, {0x0038D, 0x0038D}, {0x003A2, 0x003A2}, {0x00530, 0x00530}, {0x00557, 0x00558}, {0x0058B, 0x0058C}, {0x00590, 0x00590}, {0x005C8, 0x005CF}, {0x005EB, 0x005EE}, {0x005F5, 0x005FF}, {0x0070E, 0x0070E}, {0x0074B, 0x0074C}, {0x007B2, 0x007BF}, {0x007FB, 0x007FC}, {0x0082E, 0x0082F}, {0x0083F, 0x0083F}, {0x0085C, 0x0085D}, {0x0085F, 0x0085F}, {0x0086B, 0x0086F}, {0x0088F, 0x0088F}, {0x00892, 0x00897}, {0x00984, 0x00984}, {0x0098D, 0x0098E}, {0x00991, 0x00992}, {0x009A9, 0x009A9}, {0x009B1, 0x009B1}, {0x009B3, 0x009B5}, {0x009BA, 0x009BB}, {0x009C5, 0x009C6}, {0x009C9, 0x009CA}, {0x009CF, 0x009D6}, {0x009D8, 0x009DB}, {0x009DE, 0x009DE}, {0x009E4, 0x009E5}, {0x009FF, 0x00A00}, {0x00A04, 0x00A04}, {0x00A0B, 0x00A0E}, {0x00A11, 0x00A12}, {0x00A29, 0x00A29}, {0x00A31, 0x00A31}, {0x00A34, 0x00A34}, {0x00A37, 0x00A37}, {0x00A3A, 0x00A3B}, {0x00A3D, 0x00A3D}, {0x00A43, 0x00A46}, {0x00A49, 0x00A4A}, {0x00A4E, 0x00A50}, {0x00A52, 0x00A58}, {0x00A5D, 0x00A5D}, {0x00A5F, 0x00A65}, {0x00A77, 0x00A80}, {0x00A84, 0x00A84}, {0x00A8E, 0x00A8E}, {0x00A92, 0x00A92}, {0x00AA9, 0x00AA9}, {0x00AB1, 0x00AB1}, {0x00AB4, 0x00AB4}, {0x00ABA, 0x00ABB}, {0x00AC6, 0x00AC6}, {0x00ACA, 0x00ACA}, {0x00ACE, 0x00ACF}, {0x00AD1, 0x00ADF}, {0x00AE4, 0x00AE5}, {0x00AF2, 0x00AF8}, {0x00B00, 0x00B00}, {0x00B04, 0x00B04}, {0x00B0D, 0x00B0E}, {0x00B11, 0x00B12}, {0x00B29, 0x00B29}, {0x00B31, 0x00B31}, {0x00B34, 0x00B34}, {0x00B3A, 0x00B3B}, {0x00B45, 0x00B46}, {0x00B49, 0x00B4A}, {0x00B4E, 0x00B54}, {0x00B58, 0x00B5B}, {0x00B5E, 0x00B5E}, {0x00B64, 0x00B65}, {0x00B78, 0x00B81}, {0x00B84, 0x00B84}, {0x00B8B, 0x00B8D}, {0x00B91, 0x00B91}, {0x00B96, 0x00B98}, {0x00B9B, 0x00B9B}, {0x00B9D, 0x00B9D}, {0x00BA0, 0x00BA2}, {0x00BA5, 0x00BA7}, {0x00BAB, 0x00BAD}, {0x00BBA, 0x00BBD}, {0x00BC3, 0x00BC5}, {0x00BC9, 0x00BC9}, {0x00BCE, 0x00BCF}, {0x00BD1, 0x00BD6}, {0x00BD8, 0x00BE5}, {0x00BFB, 0x00BFF}, {0x00C0D, 0x00C0D}, {0x00C11, 0x00C11}, {0x00C29, 0x00C29}, {0x00C3A, 0x00C3B}, {0x00C45, 0x00C45}, {0x00C49, 0x00C49}, {0x00C4E, 0x00C54}, {0x00C57, 0x00C57}, {0x00C5B, 0x00C5C}, {0x00C5E, 0x00C5F}, {0x00C64, 0x00C65}, {0x00C70, 0x00C76}, {0x00C8D, 0x00C8D}, {0x00C91, 0x00C91}, {0x00CA9, 0x00CA9}, {0x00CB4, 0x00CB4}, {0x00CBA, 0x00CBB}, {0x00CC5, 0x00CC5}, {0x00CC9, 0x00CC9}, {0x00CCE, 0x00CD4}, {0x00CD7, 0x00CDC}, {0x00CDF, 0x00CDF}, {0x00CE4, 0x00CE5}, {0x00CF0, 0x00CF0}, {0x00CF3, 0x00CFF}, {0x00D0D, 0x00D0D}, {0x00D11, 0x00D11}, {0x00D45, 0x00D45}, {0x00D49, 0x00D49}, {0x00D50, 0x00D53}, {0x00D64, 0x00D65}, {0x00D80, 0x00D80}, {0x00D84, 0x00D84}, {0x00D97, 0x00D99}, {0x00DB2, 0x00DB2}, {0x00DBC, 0x00DBC}, {0x00DBE, 0x00DBF}, {0x00DC7, 0x00DC9}, {0x00DCB, 0x00DCE}, {0x00DD5, 0x00DD5}, {0x00DD7, 0x00DD7}, {0x00DE0, 0x00DE5}, {0x00DF0, 0x00DF1}, {0x00DF5, 0x00E00}, {0x00E3B, 0x00E3E}, {0x00E5C, 0x00E80}, {0x00E83, 0x00E83}, {0x00E85, 0x00E85}, {0x00E8B, 0x00E8B}, {0x00EA4, 0x00EA4}, {0x00EA6, 0x00EA6}, {0x00EBE, 0x00EBF}, {0x00EC5, 0x00EC5}, {0x00EC7, 0x00EC7}, {0x00ECE, 0x00ECF}, {0x00EDA, 0x00EDB}, {0x00EE0, 0x00EFF}, {0x00F48, 0x00F48}, {0x00F6D, 0x00F70}, {0x00F98, 0x00F98}, {0x00FBD, 0x00FBD}, {0x00FCD, 0x00FCD}, {0x00FDB, 0x00FFF}, {0x010C6, 0x010C6}, {0x010C8, 0x010CC}, {0x010CE, 0x010CF}, {0x01249, 0x01249}, {0x0124E, 0x0124F}, {0x01257, 0x01257}, {0x01259, 0x01259}, {0x0125E, 0x0125F}, {0x01289, 0x01289}, {0x0128E, 0x0128F}, {0x012B1, 0x012B1}, {0x012B6, 0x012B7}, {0x012BF, 0x012BF}, {0x012C1, 0x012C1}, {0x012C6, 0x012C7}, {0x012D7, 0x012D7}, {0x01311, 0x01311}, {0x01316, 0x01317}, {0x0135B, 0x0135C}, {0x0137D, 0x0137F}, {0x0139A, 0x0139F}, {0x013F6, 0x013F7}, {0x013FE, 0x013FF}, {0x0169D, 0x0169F}, {0x016F9, 0x016FF}, {0x01716, 0x0171E}, {0x01737, 0x0173F}, {0x01754, 0x0175F}, {0x0176D, 0x0176D}, {0x01771, 0x01771}, {0x01774, 0x0177F}, {0x017DE, 0x017DF}, {0x017EA, 0x017EF}, {0x017FA, 0x017FF}, {0x0181A, 0x0181F}, {0x01879, 0x0187F}, {0x018AB, 0x018AF}, {0x018F6, 0x018FF}, {0x0191F, 0x0191F}, {0x0192C, 0x0192F}, {0x0193C, 0x0193F}, {0x01941, 0x01943}, {0x0196E, 0x0196F}, {0x01975, 0x0197F}, {0x019AC, 0x019AF}, {0x019CA, 0x019CF}, {0x019DB, 0x019DD}, {0x01A1C, 0x01A1D}, {0x01A5F, 0x01A5F}, {0x01A7D, 0x01A7E}, {0x01A8A, 0x01A8F}, {0x01A9A, 0x01A9F}, {0x01AAE, 0x01AAF}, {0x01ACF, 0x01AFF}, {0x01B4D, 0x01B4F}, {0x01B7F, 0x01B7F}, {0x01BF4, 0x01BFB}, {0x01C38, 0x01C3A}, {0x01C4A, 0x01C4C}, {0x01C89, 0x01C8F}, {0x01CBB, 0x01CBC}, {0x01CC8, 0x01CCF}, {0x01CFB, 0x01CFF}, {0x01F16, 0x01F17}, {0x01F1E, 0x01F1F}, {0x01F46, 0x01F47}, {0x01F4E, 0x01F4F}, {0x01F58, 0x01F58}, {0x01F5A, 0x01F5A}, {0x01F5C, 0x01F5C}, {0x01F5E, 0x01F5E}, {0x01F7E, 0x01F7F}, {0x01FB5, 0x01FB5}, {0x01FC5, 0x01FC5}, {0x01FD4, 0x01FD5}, {0x01FDC, 0x01FDC}, {0x01FF0, 0x01FF1}, {0x01FF5, 0x01FF5}, {0x01FFF, 0x01FFF}, {0x02065, 0x02065}, {0x02072, 0x02073}, {0x0208F, 0x0208F}, {0x0209D, 0x0209F}, {0x020C1, 0x020CF}, {0x020F1, 0x020FF}, {0x0218C, 0x0218F}, {0x02427, 0x0243F}, {0x0244B, 0x0245F}, {0x02B74, 0x02B75}, {0x02B96, 0x02B96}, {0x02CF4, 0x02CF8}, {0x02D26, 0x02D26}, {0x02D28, 0x02D2C}, {0x02D2E, 0x02D2F}, {0x02D68, 0x02D6E}, {0x02D71, 0x02D7E}, {0x02D97, 0x02D9F}, {0x02DA7, 0x02DA7}, {0x02DAF, 0x02DAF}, {0x02DB7, 0x02DB7}, {0x02DBF, 0x02DBF}, {0x02DC7, 0x02DC7}, {0x02DCF, 0x02DCF}, {0x02DD7, 0x02DD7}, {0x02DDF, 0x02DDF}, {0x02E5E, 0x02E7F}, {0x02E9A, 0x02E9A}, {0x02EF4, 0x02EFF}, {0x02FD6, 0x02FEF}, {0x02FFC, 0x02FFF}, {0x03040, 0x03040}, {0x03097, 0x03098}, {0x03100, 0x03104}, {0x03130, 0x03130}, {0x0318F, 0x0318F}, {0x031E4, 0x031EF}, {0x0321F, 0x0321F}, {0x03401, 0x04DBE}, {0x04E01, 0x09FFE}, {0x0A48D, 0x0A48F}, {0x0A4C7, 0x0A4CF}, {0x0A62C, 0x0A63F}, {0x0A6F8, 0x0A6FF}, {0x0A7CB, 0x0A7CF}, {0x0A7D2, 0x0A7D2}, {0x0A7D4, 0x0A7D4}, {0x0A7DA, 0x0A7F1}, {0x0A82D, 0x0A82F}, {0x0A83A, 0x0A83F}, {0x0A878, 0x0A87F}, {0x0A8C6, 0x0A8CD}, {0x0A8DA, 0x0A8DF}, {0x0A954, 0x0A95E}, {0x0A97D, 0x0A97F}, {0x0A9CE, 0x0A9CE}, {0x0A9DA, 0x0A9DD}, {0x0A9FF, 0x0A9FF}, {0x0AA37, 0x0AA3F}, {0x0AA4E, 0x0AA4F}, {0x0AA5A, 0x0AA5B}, {0x0AAC3, 0x0AADA}, {0x0AAF7, 0x0AB00}, {0x0AB07, 0x0AB08}, {0x0AB0F, 0x0AB10}, {0x0AB17, 0x0AB1F}, {0x0AB27, 0x0AB27}, {0x0AB2F, 0x0AB2F}, {0x0AB6C, 0x0AB6F}, {0x0ABEE, 0x0ABEF}, {0x0ABFA, 0x0ABFF}, {0x0AC01, 0x0D7A2}, {0x0D7A4, 0x0D7AF}, {0x0D7C7, 0x0D7CA}, {0x0D7FC, 0x0D7FF}, {0x0FA6E, 0x0FA6F}, {0x0FADA, 0x0FAFF}, {0x0FB07, 0x0FB12}, {0x0FB18, 0x0FB1C}, {0x0FB37, 0x0FB37}, {0x0FB3D, 0x0FB3D}, {0x0FB3F, 0x0FB3F}, {0x0FB42, 0x0FB42}, {0x0FB45, 0x0FB45}, {0x0FBC3, 0x0FBD2}, {0x0FD90, 0x0FD91}, {0x0FDC8, 0x0FDCE}, {0x0FE1A, 0x0FE1F}, {0x0FE53, 0x0FE53}, {0x0FE67, 0x0FE67}, {0x0FE6C, 0x0FE6F}, {0x0FE75, 0x0FE75}, {0x0FEFD, 0x0FEFE}, {0x0FF00, 0x0FF00}, {0x0FFBF, 0x0FFC1}, {0x0FFC8, 0x0FFC9}, {0x0FFD0, 0x0FFD1}, {0x0FFD8, 0x0FFD9}, {0x0FFDD, 0x0FFDF}, {0x0FFE7, 0x0FFE7}, {0x0FFEF, 0x0FFF8}, {0x1000C, 0x1000C}, {0x10027, 0x10027}, {0x1003B, 0x1003B}, {0x1003E, 0x1003E}, {0x1004E, 0x1004F}, {0x1005E, 0x1007F}, {0x100FB, 0x100FF}, {0x10103, 0x10106}, {0x10134, 0x10136}, {0x1018F, 0x1018F}, {0x1019D, 0x1019F}, {0x101A1, 0x101CF}, {0x101FE, 0x1027F}, {0x1029D, 0x1029F}, {0x102D1, 0x102DF}, {0x102FC, 0x102FF}, {0x10324, 0x1032C}, {0x1034B, 0x1034F}, {0x1037B, 0x1037F}, {0x1039E, 0x1039E}, {0x103C4, 0x103C7}, {0x103D6, 0x103FF}, {0x1049E, 0x1049F}, {0x104AA, 0x104AF}, {0x104D4, 0x104D7}, {0x104FC, 0x104FF}, {0x10528, 0x1052F}, {0x10564, 0x1056E}, {0x1057B, 0x1057B}, {0x1058B, 0x1058B}, {0x10593, 0x10593}, {0x10596, 0x10596}, {0x105A2, 0x105A2}, {0x105B2, 0x105B2}, {0x105BA, 0x105BA}, {0x105BD, 0x105FF}, {0x10737, 0x1073F}, {0x10756, 0x1075F}, {0x10768, 0x1077F}, {0x10786, 0x10786}, {0x107B1, 0x107B1}, {0x107BB, 0x107FF}, {0x10806, 0x10807}, {0x10809, 0x10809}, {0x10836, 0x10836}, {0x10839, 0x1083B}, {0x1083D, 0x1083E}, {0x10856, 0x10856}, {0x1089F, 0x108A6}, {0x108B0, 0x108DF}, {0x108F3, 0x108F3}, {0x108F6, 0x108FA}, {0x1091C, 0x1091E}, {0x1093A, 0x1093E}, {0x10940, 0x1097F}, {0x109B8, 0x109BB}, {0x109D0, 0x109D1}, {0x10A04, 0x10A04}, {0x10A07, 0x10A0B}, {0x10A14, 0x10A14}, {0x10A18, 0x10A18}, {0x10A36, 0x10A37}, {0x10A3B, 0x10A3E}, {0x10A49, 0x10A4F}, {0x10A59, 0x10A5F}, {0x10AA0, 0x10ABF}, {0x10AE7, 0x10AEA}, {0x10AF7, 0x10AFF}, {0x10B36, 0x10B38}, {0x10B56, 0x10B57}, {0x10B73, 0x10B77}, {0x10B92, 0x10B98}, {0x10B9D, 0x10BA8}, {0x10BB0, 0x10BFF}, {0x10C49, 0x10C7F}, {0x10CB3, 0x10CBF}, {0x10CF3, 0x10CF9}, {0x10D28, 0x10D2F}, {0x10D3A, 0x10E5F}, {0x10E7F, 0x10E7F}, {0x10EAA, 0x10EAA}, {0x10EAE, 0x10EAF}, {0x10EB2, 0x10EFF}, {0x10F28, 0x10F2F}, {0x10F5A, 0x10F6F}, {0x10F8A, 0x10FAF}, {0x10FCC, 0x10FDF}, {0x10FF7, 0x10FFF}, {0x1104E, 0x11051}, {0x11076, 0x1107E}, {0x110C3, 0x110CC}, {0x110CE, 0x110CF}, {0x110E9, 0x110EF}, {0x110FA, 0x110FF}, {0x11135, 0x11135}, {0x11148, 0x1114F}, {0x11177, 0x1117F}, {0x111E0, 0x111E0}, {0x111F5, 0x111FF}, {0x11212, 0x11212}, {0x1123F, 0x1127F}, {0x11287, 0x11287}, {0x11289, 0x11289}, {0x1128E, 0x1128E}, {0x1129E, 0x1129E}, {0x112AA, 0x112AF}, {0x112EB, 0x112EF}, {0x112FA, 0x112FF}, {0x11304, 0x11304}, {0x1130D, 0x1130E}, {0x11311, 0x11312}, {0x11329, 0x11329}, {0x11331, 0x11331}, {0x11334, 0x11334}, {0x1133A, 0x1133A}, {0x11345, 0x11346}, {0x11349, 0x1134A}, {0x1134E, 0x1134F}, {0x11351, 0x11356}, {0x11358, 0x1135C}, {0x11364, 0x11365}, {0x1136D, 0x1136F}, {0x11375, 0x113FF}, {0x1145C, 0x1145C}, {0x11462, 0x1147F}, {0x114C8, 0x114CF}, {0x114DA, 0x1157F}, {0x115B6, 0x115B7}, {0x115DE, 0x115FF}, {0x11645, 0x1164F}, {0x1165A, 0x1165F}, {0x1166D, 0x1167F}, {0x116BA, 0x116BF}, {0x116CA, 0x116FF}, {0x1171B, 0x1171C}, {0x1172C, 0x1172F}, {0x11747, 0x117FF}, {0x1183C, 0x1189F}, {0x118F3, 0x118FE}, {0x11907, 0x11908}, {0x1190A, 0x1190B}, {0x11914, 0x11914}, {0x11917, 0x11917}, {0x11936, 0x11936}, {0x11939, 0x1193A}, {0x11947, 0x1194F}, {0x1195A, 0x1199F}, {0x119A8, 0x119A9}, {0x119D8, 0x119D9}, {0x119E5, 0x119FF}, {0x11A48, 0x11A4F}, {0x11AA3, 0x11AAF}, {0x11AF9, 0x11BFF}, {0x11C09, 0x11C09}, {0x11C37, 0x11C37}, {0x11C46, 0x11C4F}, {0x11C6D, 0x11C6F}, {0x11C90, 0x11C91}, {0x11CA8, 0x11CA8}, {0x11CB7, 0x11CFF}, {0x11D07, 0x11D07}, {0x11D0A, 0x11D0A}, {0x11D37, 0x11D39}, {0x11D3B, 0x11D3B}, {0x11D3E, 0x11D3E}, {0x11D48, 0x11D4F}, {0x11D5A, 0x11D5F}, {0x11D66, 0x11D66}, {0x11D69, 0x11D69}, {0x11D8F, 0x11D8F}, {0x11D92, 0x11D92}, {0x11D99, 0x11D9F}, {0x11DAA, 0x11EDF}, {0x11EF9, 0x11FAF}, {0x11FB1, 0x11FBF}, {0x11FF2, 0x11FFE}, {0x1239A, 0x123FF}, {0x1246F, 0x1246F}, {0x12475, 0x1247F}, {0x12544, 0x12F8F}, {0x12FF3, 0x12FFF}, {0x1342F, 0x1342F}, {0x13439, 0x143FF}, {0x14647, 0x167FF}, {0x16A39, 0x16A3F}, {0x16A5F, 0x16A5F}, {0x16A6A, 0x16A6D}, {0x16ABF, 0x16ABF}, {0x16ACA, 0x16ACF}, {0x16AEE, 0x16AEF}, {0x16AF6, 0x16AFF}, {0x16B46, 0x16B4F}, {0x16B5A, 0x16B5A}, {0x16B62, 0x16B62}, {0x16B78, 0x16B7C}, {0x16B90, 0x16E3F}, {0x16E9B, 0x16EFF}, {0x16F4B, 0x16F4E}, {0x16F88, 0x16F8E}, {0x16FA0, 0x16FDF}, {0x16FE5, 0x16FEF}, {0x16FF2, 0x16FFF}, {0x17001, 0x187F6}, {0x187F8, 0x187FF}, {0x18CD6, 0x18CFF}, {0x18D01, 0x18D07}, {0x18D09, 0x1AFEF}, {0x1AFF4, 0x1AFF4}, {0x1AFFC, 0x1AFFC}, {0x1AFFF, 0x1AFFF}, {0x1B123, 0x1B14F}, {0x1B153, 0x1B163}, {0x1B168, 0x1B16F}, {0x1B2FC, 0x1BBFF}, {0x1BC6B, 0x1BC6F}, {0x1BC7D, 0x1BC7F}, {0x1BC89, 0x1BC8F}, {0x1BC9A, 0x1BC9B}, {0x1BCA4, 0x1CEFF}, {0x1CF2E, 0x1CF2F}, {0x1CF47, 0x1CF4F}, {0x1CFC4, 0x1CFFF}, {0x1D0F6, 0x1D0FF}, {0x1D127, 0x1D128}, {0x1D1EB, 0x1D1FF}, {0x1D246, 0x1D2DF}, {0x1D2F4, 0x1D2FF}, {0x1D357, 0x1D35F}, {0x1D379, 0x1D3FF}, {0x1D455, 0x1D455}, {0x1D49D, 0x1D49D}, {0x1D4A0, 0x1D4A1}, {0x1D4A3, 0x1D4A4}, {0x1D4A7, 0x1D4A8}, {0x1D4AD, 0x1D4AD}, {0x1D4BA, 0x1D4BA}, {0x1D4BC, 0x1D4BC}, {0x1D4C4, 0x1D4C4}, {0x1D506, 0x1D506}, {0x1D50B, 0x1D50C}, {0x1D515, 0x1D515}, {0x1D51D, 0x1D51D}, {0x1D53A, 0x1D53A}, {0x1D53F, 0x1D53F}, {0x1D545, 0x1D545}, {0x1D547, 0x1D549}, {0x1D551, 0x1D551}, {0x1D6A6, 0x1D6A7}, {0x1D7CC, 0x1D7CD}, {0x1DA8C, 0x1DA9A}, {0x1DAA0, 0x1DAA0}, {0x1DAB0, 0x1DEFF}, {0x1DF1F, 0x1DFFF}, {0x1E007, 0x1E007}, {0x1E019, 0x1E01A}, {0x1E022, 0x1E022}, {0x1E025, 0x1E025}, {0x1E02B, 0x1E0FF}, {0x1E12D, 0x1E12F}, {0x1E13E, 0x1E13F}, {0x1E14A, 0x1E14D}, {0x1E150, 0x1E28F}, {0x1E2AF, 0x1E2BF}, {0x1E2FA, 0x1E2FE}, {0x1E300, 0x1E7DF}, {0x1E7E7, 0x1E7E7}, {0x1E7EC, 0x1E7EC}, {0x1E7EF, 0x1E7EF}, {0x1E7FF, 0x1E7FF}, {0x1E8C5, 0x1E8C6}, {0x1E8D7, 0x1E8FF}, {0x1E94C, 0x1E94F}, {0x1E95A, 0x1E95D}, {0x1E960, 0x1EC70}, {0x1ECB5, 0x1ED00}, {0x1ED3E, 0x1EDFF}, {0x1EE04, 0x1EE04}, {0x1EE20, 0x1EE20}, {0x1EE23, 0x1EE23}, {0x1EE25, 0x1EE26}, {0x1EE28, 0x1EE28}, {0x1EE33, 0x1EE33}, {0x1EE38, 0x1EE38}, {0x1EE3A, 0x1EE3A}, {0x1EE3C, 0x1EE41}, {0x1EE43, 0x1EE46}, {0x1EE48, 0x1EE48}, {0x1EE4A, 0x1EE4A}, {0x1EE4C, 0x1EE4C}, {0x1EE50, 0x1EE50}, {0x1EE53, 0x1EE53}, {0x1EE55, 0x1EE56}, {0x1EE58, 0x1EE58}, {0x1EE5A, 0x1EE5A}, {0x1EE5C, 0x1EE5C}, {0x1EE5E, 0x1EE5E}, {0x1EE60, 0x1EE60}, {0x1EE63, 0x1EE63}, {0x1EE65, 0x1EE66}, {0x1EE6B, 0x1EE6B}, {0x1EE73, 0x1EE73}, {0x1EE78, 0x1EE78}, {0x1EE7D, 0x1EE7D}, {0x1EE7F, 0x1EE7F}, {0x1EE8A, 0x1EE8A}, {0x1EE9C, 0x1EEA0}, {0x1EEA4, 0x1EEA4}, {0x1EEAA, 0x1EEAA}, {0x1EEBC, 0x1EEEF}, {0x1EEF2, 0x1EFFF}, {0x1F02C, 0x1F02F}, {0x1F094, 0x1F09F}, {0x1F0AF, 0x1F0B0}, {0x1F0C0, 0x1F0C0}, {0x1F0D0, 0x1F0D0}, {0x1F0F6, 0x1F0FF}, {0x1F1AE, 0x1F1E5}, {0x1F203, 0x1F20F}, {0x1F23C, 0x1F23F}, {0x1F249, 0x1F24F}, {0x1F252, 0x1F25F}, {0x1F266, 0x1F2FF}, {0x1F6D8, 0x1F6DC}, {0x1F6ED, 0x1F6EF}, {0x1F6FD, 0x1F6FF}, {0x1F774, 0x1F77F}, {0x1F7D9, 0x1F7DF}, {0x1F7EC, 0x1F7EF}, {0x1F7F1, 0x1F7FF}, {0x1F80C, 0x1F80F}, {0x1F848, 0x1F84F}, {0x1F85A, 0x1F85F}, {0x1F888, 0x1F88F}, {0x1F8AE, 0x1F8AF}, {0x1F8B2, 0x1F8FF}, {0x1FA54, 0x1FA5F}, {0x1FA6E, 0x1FA6F}, {0x1FA75, 0x1FA77}, {0x1FA7D, 0x1FA7F}, {0x1FA87, 0x1FA8F}, {0x1FAAD, 0x1FAAF}, {0x1FABB, 0x1FABF}, {0x1FAC6, 0x1FACF}, {0x1FADA, 0x1FADF}, {0x1FAE8, 0x1FAEF}, {0x1FAF7, 0x1FAFF}, {0x1FB93, 0x1FB93}, {0x1FBCB, 0x1FBEF}, {0x1FBFA, 0x1FFFD}, {0x20001, 0x2A6DE}, {0x2A6E0, 0x2A6FF}, {0x2A701, 0x2B737}, {0x2B739, 0x2B73F}, {0x2B741, 0x2B81C}, {0x2B81E, 0x2B81F}, {0x2B821, 0x2CEA0}, {0x2CEA2, 0x2CEAF}, {0x2CEB1, 0x2EBDF}, {0x2EBE1, 0x2F7FF}, {0x2FA1E, 0x2FFFD}, {0x30001, 0x31349}, {0x3134B, 0x3FFFD}, {0x40000, 0x4FFFD}, {0x50000, 0x5FFFD}, {0x60000, 0x6FFFD}, {0x70000, 0x7FFFD}, {0x80000, 0x8FFFD}, {0x90000, 0x9FFFD}, {0xA0000, 0xAFFFD}, {0xB0000, 0xBFFFD}, {0xC0000, 0xCFFFD}, {0xD0000, 0xDFFFD}, {0xE0000, 0xE0000}, {0xE0002, 0xE001F}, {0xE0080, 0xE00FF}, {0xE01F0, 0xEFFFD} }; /* Non-characters. */ static const struct widechar_range widechar_nonchar_table[] = { {0x0FDD0, 0x0FDEF}, {0x0FFFE, 0x0FFFF}, {0x1FFFE, 0x1FFFF}, {0x2FFFE, 0x2FFFF}, {0x3FFFE, 0x3FFFF}, {0x4FFFE, 0x4FFFF}, {0x5FFFE, 0x5FFFF}, {0x6FFFE, 0x6FFFF}, {0x7FFFE, 0x7FFFF}, {0x8FFFE, 0x8FFFF}, {0x9FFFE, 0x9FFFF}, {0xAFFFE, 0xAFFFF}, {0xBFFFE, 0xBFFFF}, {0xCFFFE, 0xCFFFF}, {0xDFFFE, 0xDFFFF}, {0xEFFFE, 0xEFFFF}, {0xFFFFE, 0xFFFFF}, {0x10FFFE, 0x10FFFF} }; /* Characters that were widened from width 1 to 2 in Unicode 9. */ static const struct widechar_range widechar_widened_table[] = { {0x0231A, 0x0231B}, {0x023E9, 0x023EC}, {0x023F0, 0x023F0}, {0x023F3, 0x023F3}, {0x025FD, 0x025FE}, {0x02614, 0x02615}, {0x02648, 0x02653}, {0x0267F, 0x0267F}, {0x02693, 0x02693}, {0x026A1, 0x026A1}, {0x026AA, 0x026AB}, {0x026BD, 0x026BE}, {0x026C4, 0x026C5}, {0x026CE, 0x026CE}, {0x026D4, 0x026D4}, {0x026EA, 0x026EA}, {0x026F2, 0x026F3}, {0x026F5, 0x026F5}, {0x026FA, 0x026FA}, {0x026FD, 0x026FD}, {0x02705, 0x02705}, {0x0270A, 0x0270B}, {0x02728, 0x02728}, {0x0274C, 0x0274C}, {0x0274E, 0x0274E}, {0x02753, 0x02755}, {0x02757, 0x02757}, {0x02795, 0x02797}, {0x027B0, 0x027B0}, {0x027BF, 0x027BF}, {0x02B1B, 0x02B1C}, {0x02B50, 0x02B50}, {0x02B55, 0x02B55}, {0x1F004, 0x1F004}, {0x1F0CF, 0x1F0CF}, {0x1F18E, 0x1F18E}, {0x1F191, 0x1F19A}, {0x1F201, 0x1F201}, {0x1F21A, 0x1F21A}, {0x1F22F, 0x1F22F}, {0x1F232, 0x1F236}, {0x1F238, 0x1F23A}, {0x1F250, 0x1F251}, {0x1F300, 0x1F320}, {0x1F32D, 0x1F335}, {0x1F337, 0x1F37C}, {0x1F37E, 0x1F393}, {0x1F3A0, 0x1F3CA}, {0x1F3CF, 0x1F3D3}, {0x1F3E0, 0x1F3F0}, {0x1F3F4, 0x1F3F4}, {0x1F3F8, 0x1F43E}, {0x1F440, 0x1F440}, {0x1F442, 0x1F4FC}, {0x1F4FF, 0x1F53D}, {0x1F54B, 0x1F54E}, {0x1F550, 0x1F567}, {0x1F595, 0x1F596}, {0x1F5FB, 0x1F64F}, {0x1F680, 0x1F6C5}, {0x1F6CC, 0x1F6CC}, {0x1F6D0, 0x1F6D0}, {0x1F6EB, 0x1F6EC}, {0x1F910, 0x1F918}, {0x1F980, 0x1F984}, {0x1F9C0, 0x1F9C0} }; template bool widechar_in_table(const Collection &arr, uint32_t c) { auto where = std::lower_bound(std::begin(arr), std::end(arr), c, [](widechar_range p, uint32_t c) { return p.hi < c; }); return where != std::end(arr) && where->lo <= c; } /* Return the width of character c, or a special negative value. */ int wcwidth(uint32_t c) { if (widechar_in_table(widechar_ascii_table, c)) return 1; if (widechar_in_table(widechar_private_table, c)) return widechar_private_use; if (widechar_in_table(widechar_nonprint_table, c)) return widechar_nonprint; if (widechar_in_table(widechar_nonchar_table, c)) return widechar_non_character; if (widechar_in_table(widechar_combining_table, c)) return widechar_combining; if (widechar_in_table(widechar_combiningletters_table, c)) return widechar_combining; if (widechar_in_table(widechar_doublewide_table, c)) return 2; if (widechar_in_table(widechar_ambiguous_table, c)) return widechar_ambiguous; if (widechar_in_table(widechar_unassigned_table, c)) return widechar_unassigned; if (widechar_in_table(widechar_widened_table, c)) return widechar_widened_in_9; return 1; } } // namespace #endif // WIDECHAR_WIDTH_H btop-1.3.0/snap/000077500000000000000000000000001454653170500134325ustar00rootroot00000000000000btop-1.3.0/snap/snapcraft.yaml000066400000000000000000000024221454653170500162770ustar00rootroot00000000000000name: btop adopt-info: btop summary: Resource monitor that shows usage and stats description: | Resource monitor that shows usage and stats for processor, memory, disks, network and processes. C++ version and continuation of bashtop and bpytop. license: Apache-2.0 base: core20 grade: stable confinement: strict compression: lzo architectures: - build-on: amd64 - build-on: arm64 - build-on: armhf - build-on: ppc64el - build-on: s390x package-repositories: - type: apt ppa: ubuntu-toolchain-r/test apps: btop: command: usr/local/bin/btop environment: LC_ALL: C.UTF-8 LANG: C.UTF-8 plugs: - mount-observe - process-control - system-observe - hardware-observe - network - network-observe - home - removable-media - opengl parts: btop: source: https://github.com/aristocratos/btop source-type: git plugin: make make-parameters: - CXX=g++-11 - PREFIX=/usr/local - STATIC=true - ADDFLAGS="-D SNAPPED" build-packages: - coreutils - sed - git - build-essential - gcc-11 - g++-11 override-pull: | snapcraftctl pull snapcraftctl set-version "$(git describe --tags | sed 's/^v//' | cut -d "-" -f1)" btop-1.3.0/src/000077500000000000000000000000001454653170500132605ustar00rootroot00000000000000btop-1.3.0/src/btop.cpp000066400000000000000000001043421454653170500147340ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include #include #include #include #ifdef __FreeBSD__ #include #endif #include #include #include #include #include #include #include #include #include #include #include #ifdef __APPLE__ #include #include #include #endif #if !defined(__clang__) && __GNUC__ < 11 #include #else #include #endif #include "btop_shared.hpp" #include "btop_tools.hpp" #include "btop_config.hpp" #include "btop_input.hpp" #include "btop_theme.hpp" #include "btop_draw.hpp" #include "btop_menu.hpp" #include "fmt/core.h" using std::atomic; using std::cout; using std::flush; using std::min; using std::string; using std::string_view; using std::to_string; using std::vector; namespace fs = std::filesystem; using namespace Tools; using namespace std::chrono_literals; using namespace std::literals; namespace Global { const vector> Banner_src = { {"#E62525", "██████╗ ████████╗ ██████╗ ██████╗"}, {"#CD2121", "██╔══██╗╚══██╔══╝██╔═══██╗██╔══██╗ ██╗ ██╗"}, {"#B31D1D", "██████╔╝ ██║ ██║ ██║██████╔╝ ██████╗██████╗"}, {"#9A1919", "██╔══██╗ ██║ ██║ ██║██╔═══╝ ╚═██╔═╝╚═██╔═╝"}, {"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"}, {"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"}, }; const string Version = "1.3.0"; int coreCount; string overlay; string clock; string bg_black = "\x1b[0;40m"; string fg_white = "\x1b[1;97m"; string fg_green = "\x1b[1;92m"; string fg_red = "\x1b[0;91m"; uid_t real_uid, set_uid; fs::path self_path; string exit_error_msg; atomic thread_exception (false); bool debuginit{}; bool debug{}; bool utf_force{}; uint64_t start_time; atomic resized (false); atomic quitting (false); atomic should_quit (false); atomic should_sleep (false); atomic _runner_started (false); atomic init_conf (false); bool arg_tty{}; bool arg_low_color{}; int arg_preset = -1; int arg_update = 0; } //* A simple argument parser void argumentParser(const int argc, char **argv) { for(int i = 1; i < argc; i++) { const string argument = argv[i]; if (is_in(argument, "-h", "--help")) { fmt::println( "usage: btop [-h] [-v] [-/+t] [-p ] [-u ] [--utf-force] [--debug]\n\n" "optional arguments:\n" " -h, --help show this help message and exit\n" " -v, --version show version info and exit\n" " -lc, --low-color disable truecolor, converts 24-bit colors to 256-color\n" " -t, --tty_on force (ON) tty mode, max 16 colors and tty friendly graph symbols\n" " +t, --tty_off force (OFF) tty mode\n" " -p, --preset start with preset, integer value between 0-9\n" " -u, --update set the program update rate in milliseconds\n" " --utf-force force start even if no UTF-8 locale was detected\n" " --debug start in DEBUG mode: shows microsecond timer for information collect\n" " and screen draw functions and sets loglevel to DEBUG" ); exit(0); } else if (is_in(argument, "-v", "--version")) { fmt::println("btop version: {}", Global::Version); exit(0); } else if (is_in(argument, "-lc", "--low-color")) { Global::arg_low_color = true; } else if (is_in(argument, "-t", "--tty_on")) { Config::set("tty_mode", true); Global::arg_tty = true; } else if (is_in(argument, "+t", "--tty_off")) { Config::set("tty_mode", false); Global::arg_tty = true; } else if (is_in(argument, "-p", "--preset")) { if (++i >= argc) { fmt::println("ERROR: Preset option needs an argument."); exit(1); } else if (const string val = argv[i]; isint(val) and val.size() == 1) { Global::arg_preset = std::clamp(stoi(val), 0, 9); } else { fmt::println("ERROR: Preset option only accepts an integer value between 0-9."); exit(1); } } else if (is_in(argument, "-u", "--update")) { if (++i >= argc) { fmt::println("ERROR: Update option needs an argument"); exit(1); } const std::string value = argv[i]; if (isint(value)) { Global::arg_update = std::clamp(std::stoi(value), 100, Config::ONE_DAY_MILLIS); } else { fmt::println("ERROR: Invalid update rate"); exit(1); } } else if (argument == "--utf-force") Global::utf_force = true; else if (argument == "--debug") Global::debug = true; else { fmt::println(" Unknown argument: {}\n" " Use -h or --help for help.", argument); exit(1); } } } //* Handler for SIGWINCH and general resizing events, does nothing if terminal hasn't been resized unless force=true void term_resize(bool force) { static atomic resizing (false); if (Input::polling) { Global::resized = true; Input::interrupt(); return; } atomic_lock lck(resizing, true); if (auto refreshed = Term::refresh(true); refreshed or force) { if (force and refreshed) force = false; } else return; #ifdef GPU_SUPPORT static const array all_boxes = {"gpu5", "cpu", "mem", "net", "proc", "gpu0", "gpu1", "gpu2", "gpu3", "gpu4"}; #else static const array all_boxes = {"", "cpu", "mem", "net", "proc"}; #endif Global::resized = true; if (Runner::active) Runner::stop(); Term::refresh(); Config::unlock(); auto boxes = Config::getS("shown_boxes"); auto min_size = Term::get_min_size(boxes); auto minWidth = min_size.at(0), minHeight = min_size.at(1); while (not force or (Term::width < minWidth or Term::height < minHeight)) { sleep_ms(100); if (Term::width < minWidth or Term::height < minHeight) { int width = Term::width, height = Term::height; cout << fmt::format("{clear}{bg_black}{fg_white}" "{mv1}Terminal size too small:" "{mv2} Width = {fg_width}{width} {fg_white}Height = {fg_height}{height}" "{mv3}{fg_white}Needed for current config:" "{mv4}Width = {minWidth} Height = {minHeight}", "clear"_a = Term::clear, "bg_black"_a = Global::bg_black, "fg_white"_a = Global::fg_white, "mv1"_a = Mv::to((height / 2) - 2, (width / 2) - 11), "mv2"_a = Mv::to((height / 2) - 1, (width / 2) - 10), "fg_width"_a = (width < minWidth ? Global::fg_red : Global::fg_green), "width"_a = width, "fg_height"_a = (height < minHeight ? Global::fg_red : Global::fg_green), "height"_a = height, "mv3"_a = Mv::to((height / 2) + 1, (width / 2) - 12), "mv4"_a = Mv::to((height / 2) + 2, (width / 2) - 10), "minWidth"_a = minWidth, "minHeight"_a = minHeight ) << std::flush; bool got_key = false; for (; not Term::refresh() and not got_key; got_key = Input::poll(10)); if (got_key) { auto key = Input::get(); if (key == "q") clean_quit(0); else if (key.size() == 1 and isint(key)) { auto intKey = stoi(key); #ifdef GPU_SUPPORT if ((intKey == 0 and Gpu::gpu_names.size() >= 5) or (intKey >= 5 and std::cmp_greater_equal(Gpu::gpu_names.size(), intKey - 4))) { #else if (intKey > 0 and intKey < 5) { #endif auto box = all_boxes.at(intKey); Config::current_preset = -1; Config::toggle_box(box); boxes = Config::getS("shown_boxes"); } } } min_size = Term::get_min_size(boxes); minWidth = min_size.at(0), minHeight = min_size.at(1); } else if (not Term::refresh()) break; } Input::interrupt(); } //* Exit handler; stops threads, restores terminal and saves config changes void clean_quit(int sig) { if (Global::quitting) return; Global::quitting = true; Runner::stop(); if (Global::_runner_started) { #if defined __APPLE__ || defined __OpenBSD__ if (pthread_join(Runner::runner_id, nullptr) != 0) { Logger::warning("Failed to join _runner thread on exit!"); pthread_cancel(Runner::runner_id); } #else struct timespec ts; ts.tv_sec = 5; if (pthread_timedjoin_np(Runner::runner_id, nullptr, &ts) != 0) { Logger::warning("Failed to join _runner thread on exit!"); pthread_cancel(Runner::runner_id); } #endif } #ifdef GPU_SUPPORT Gpu::Nvml::shutdown(); Gpu::Rsmi::shutdown(); #endif Config::write(); if (Term::initialized) { Input::clear(); Term::restore(); } if (not Global::exit_error_msg.empty()) { sig = 1; Logger::error(Global::exit_error_msg); fmt::println(std::cerr, "{}ERROR: {}{}{}", Global::fg_red, Global::fg_white, Global::exit_error_msg, Fx::reset); } Logger::info("Quitting! Runtime: " + sec_to_dhms(time_s() - Global::start_time)); const auto excode = (sig != -1 ? sig : 0); #if defined __APPLE__ || defined __OpenBSD__ _Exit(excode); #else quick_exit(excode); #endif } //* Handler for SIGTSTP; stops threads, restores terminal and sends SIGSTOP void _sleep() { Runner::stop(); Term::restore(); std::raise(SIGSTOP); } //* Handler for SIGCONT; re-initialize terminal and force a resize event void _resume() { Term::init(); term_resize(true); } void _exit_handler() { clean_quit(-1); } void _signal_handler(const int sig) { switch (sig) { case SIGINT: if (Runner::active) { Global::should_quit = true; Runner::stopping = true; Input::interrupt(); } else { clean_quit(0); } break; case SIGTSTP: if (Runner::active) { Global::should_sleep = true; Runner::stopping = true; Input::interrupt(); } else { _sleep(); } break; case SIGCONT: _resume(); break; case SIGWINCH: term_resize(); break; case SIGUSR1: // Input::poll interrupt break; } } //* Manages secondary thread for collection and drawing of boxes namespace Runner { atomic active (false); atomic stopping (false); atomic waiting (false); atomic redraw (false); atomic coreNum_reset (false); //* Setup semaphore for triggering thread to do work #if !defined(__clang__) && __GNUC__ < 11 sem_t do_work; inline void thread_sem_init() { sem_init(&do_work, 0, 0); } inline void thread_wait() { sem_wait(&do_work); } inline void thread_trigger() { sem_post(&do_work); } #else std::binary_semaphore do_work(0); inline void thread_sem_init() { ; } inline void thread_wait() { do_work.acquire(); } inline void thread_trigger() { do_work.release(); } #endif //* RAII wrapper for pthread_mutex locking class thread_lock { pthread_mutex_t& pt_mutex; public: int status; thread_lock(pthread_mutex_t& mtx) : pt_mutex(mtx) { pthread_mutex_init(&pt_mutex, nullptr); status = pthread_mutex_lock(&pt_mutex); } ~thread_lock() { if (status == 0) pthread_mutex_unlock(&pt_mutex); } }; //* Wrapper for raising priviliges when using SUID bit class gain_priv { int status = -1; public: gain_priv() { if (Global::real_uid != Global::set_uid) this->status = seteuid(Global::set_uid); } ~gain_priv() { if (status == 0) status = seteuid(Global::real_uid); } }; string output; string empty_bg; bool pause_output{}; sigset_t mask; pthread_t runner_id; pthread_mutex_t mtx; enum debug_actions { collect_begin, collect_done, draw_begin, draw_begin_only, draw_done }; enum debug_array { collect, draw }; string debug_bg; std::unordered_map> debug_times; class MyNumPunct : public std::numpunct { protected: virtual char do_thousands_sep() const { return '\''; } virtual std::string do_grouping() const { return "\03"; } }; struct runner_conf { vector boxes; bool no_update; bool force_redraw; bool background_update; string overlay; string clock; }; struct runner_conf current_conf; void debug_timer(const char* name, const int action) { switch (action) { case collect_begin: debug_times[name].at(collect) = time_micros(); return; case collect_done: debug_times[name].at(collect) = time_micros() - debug_times[name].at(collect); debug_times["total"].at(collect) += debug_times[name].at(collect); return; case draw_begin_only: debug_times[name].at(draw) = time_micros(); return; case draw_begin: debug_times[name].at(draw) = time_micros(); debug_times[name].at(collect) = debug_times[name].at(draw) - debug_times[name].at(collect); debug_times["total"].at(collect) += debug_times[name].at(collect); return; case draw_done: debug_times[name].at(draw) = time_micros() - debug_times[name].at(draw); debug_times["total"].at(draw) += debug_times[name].at(draw); return; } } //? ------------------------------- Secondary thread: async launcher and drawing ---------------------------------- void * _runner(void *) { //? Block some signals in this thread to avoid deadlock from any signal handlers trying to stop this thread sigemptyset(&mask); // sigaddset(&mask, SIGINT); // sigaddset(&mask, SIGTSTP); sigaddset(&mask, SIGWINCH); sigaddset(&mask, SIGTERM); pthread_sigmask(SIG_BLOCK, &mask, nullptr); //? pthread_mutex_lock to lock thread and monitor health from main thread thread_lock pt_lck(mtx); if (pt_lck.status != 0) { Global::exit_error_msg = "Exception in runner thread -> pthread_mutex_lock error id: " + to_string(pt_lck.status); Global::thread_exception = true; Input::interrupt(); stopping = true; } //* ----------------------------------------------- THREAD LOOP ----------------------------------------------- while (not Global::quitting) { thread_wait(); atomic_wait_for(active, true, 5000); if (active) { Global::exit_error_msg = "Runner thread failed to get active lock!"; Global::thread_exception = true; Input::interrupt(); stopping = true; } if (stopping or Global::resized) { sleep_ms(1); continue; } //? Atomic lock used for blocking non thread-safe actions in main thread atomic_lock lck(active); //? Set effective user if SUID bit is set gain_priv powers{}; auto& conf = current_conf; //! DEBUG stats if (Global::debug) { if (debug_bg.empty() or redraw) Runner::debug_bg = Draw::createBox(2, 2, 33, #ifdef GPU_SUPPORT 9, #else 8, #endif "", true, "μs"); debug_times.clear(); debug_times["total"] = {0, 0}; } output.clear(); //* Run collection and draw functions for all boxes try { #ifdef GPU_SUPPORT //? GPU data collection const bool gpu_in_cpu_panel = Gpu::gpu_names.size() > 0 and ( Config::getS("cpu_graph_lower").starts_with("gpu-") or Config::getS("cpu_graph_upper").starts_with("gpu-") or (Gpu::shown == 0 and Config::getS("show_gpu_info") != "Off") ); vector gpu_panels = {}; for (auto& box : conf.boxes) if (box.starts_with("gpu")) gpu_panels.push_back(box.back()-'0'); vector gpus; if (gpu_in_cpu_panel or not gpu_panels.empty()) { if (Global::debug) debug_timer("gpu", collect_begin); gpus = Gpu::collect(conf.no_update); if (Global::debug) debug_timer("gpu", collect_done); } auto& gpus_ref = gpus; #else vector gpus_ref{}; #endif //? CPU if (v_contains(conf.boxes, "cpu")) { try { if (Global::debug) debug_timer("cpu", collect_begin); //? Start collect auto cpu = Cpu::collect(conf.no_update); if (coreNum_reset) { coreNum_reset = false; Cpu::core_mapping = Cpu::get_core_mapping(); Global::resized = true; Input::interrupt(); continue; } if (Global::debug) debug_timer("cpu", draw_begin); //? Draw box if (not pause_output) output += Cpu::draw(cpu, gpus_ref, conf.force_redraw, conf.no_update); if (Global::debug) debug_timer("cpu", draw_done); } catch (const std::exception& e) { throw std::runtime_error("Cpu:: -> " + string{e.what()}); } } #ifdef GPU_SUPPORT //? GPU if (not gpu_panels.empty() and not gpus_ref.empty()) { try { if (Global::debug) debug_timer("gpu", draw_begin_only); //? Draw box if (not pause_output) for (unsigned long i = 0; i < gpu_panels.size(); ++i) output += Gpu::draw(gpus_ref[gpu_panels[i]], i, conf.force_redraw, conf.no_update); if (Global::debug) debug_timer("gpu", draw_done); } catch (const std::exception& e) { throw std::runtime_error("Gpu:: -> " + string{e.what()}); } } #endif //? MEM if (v_contains(conf.boxes, "mem")) { try { if (Global::debug) debug_timer("mem", collect_begin); //? Start collect auto mem = Mem::collect(conf.no_update); if (Global::debug) debug_timer("mem", draw_begin); //? Draw box if (not pause_output) output += Mem::draw(mem, conf.force_redraw, conf.no_update); if (Global::debug) debug_timer("mem", draw_done); } catch (const std::exception& e) { throw std::runtime_error("Mem:: -> " + string{e.what()}); } } //? NET if (v_contains(conf.boxes, "net")) { try { if (Global::debug) debug_timer("net", collect_begin); //? Start collect auto net = Net::collect(conf.no_update); if (Global::debug) debug_timer("net", draw_begin); //? Draw box if (not pause_output) output += Net::draw(net, conf.force_redraw, conf.no_update); if (Global::debug) debug_timer("net", draw_done); } catch (const std::exception& e) { throw std::runtime_error("Net:: -> " + string{e.what()}); } } //? PROC if (v_contains(conf.boxes, "proc")) { try { if (Global::debug) debug_timer("proc", collect_begin); //? Start collect auto proc = Proc::collect(conf.no_update); if (Global::debug) debug_timer("proc", draw_begin); //? Draw box if (not pause_output) output += Proc::draw(proc, conf.force_redraw, conf.no_update); if (Global::debug) debug_timer("proc", draw_done); } catch (const std::exception& e) { throw std::runtime_error("Proc:: -> " + string{e.what()}); } } } catch (const std::exception& e) { Global::exit_error_msg = "Exception in runner thread -> " + string{e.what()}; Global::thread_exception = true; Input::interrupt(); stopping = true; } if (stopping) { continue; } if (redraw or conf.force_redraw) { empty_bg.clear(); redraw = false; } if (not pause_output) output += conf.clock; if (not conf.overlay.empty() and not conf.background_update) pause_output = true; if (output.empty() and not pause_output) { if (empty_bg.empty()) { const int x = Term::width / 2 - 10, y = Term::height / 2 - 10; output += Term::clear; empty_bg = fmt::format( "{banner}" "{mv1}{titleFg}{b}No boxes shown!" "{mv2}{hiFg}1 {mainFg}| Show CPU box" "{mv3}{hiFg}2 {mainFg}| Show MEM box" "{mv4}{hiFg}3 {mainFg}| Show NET box" "{mv5}{hiFg}4 {mainFg}| Show PROC box" "{mv6}{hiFg}5-0 {mainFg}| Show GPU boxes" "{mv7}{hiFg}esc {mainFg}| Show menu" "{mv8}{hiFg}q {mainFg}| Quit", "banner"_a = Draw::banner_gen(y, 0, true), "titleFg"_a = Theme::c("title"), "b"_a = Fx::b, "hiFg"_a = Theme::c("hi_fg"), "mainFg"_a = Theme::c("main_fg"), "mv1"_a = Mv::to(y+6, x), "mv2"_a = Mv::to(y+8, x), "mv3"_a = Mv::to(y+9, x), "mv4"_a = Mv::to(y+10, x), "mv5"_a = Mv::to(y+11, x), "mv6"_a = Mv::to(y+12, x-2), "mv7"_a = Mv::to(y+13, x-2), "mv8"_a = Mv::to(y+14, x) ); } output += empty_bg; } //! DEBUG stats --> if (Global::debug and not Menu::active) { output += fmt::format("{pre}{box:5.5} {collect:>12.12} {draw:>12.12}{post}", "pre"_a = debug_bg + Theme::c("title") + Fx::b, "box"_a = "box", "collect"_a = "collect", "draw"_a = "draw", "post"_a = Theme::c("main_fg") + Fx::ub ); static auto loc = std::locale(std::locale::classic(), new MyNumPunct); #ifdef GPU_SUPPORT for (const string name : {"cpu", "mem", "net", "proc", "gpu", "total"}) { #else for (const string name : {"cpu", "mem", "net", "proc", "total"}) { #endif if (not debug_times.contains(name)) debug_times[name] = {0,0}; const auto& [time_collect, time_draw] = debug_times.at(name); if (name == "total") output += Fx::b; output += fmt::format(loc, "{mvLD}{name:5.5} {collect:12L} {draw:12L}", "mvLD"_a = Mv::l(31) + Mv::d(1), "name"_a = name, "collect"_a = time_collect, "draw"_a = time_draw ); } } //? If overlay isn't empty, print output without color and then print overlay on top cout << Term::sync_start << (conf.overlay.empty() ? output : (output.empty() ? "" : Fx::ub + Theme::c("inactive_fg") + Fx::uncolor(output)) + conf.overlay) << Term::sync_end << flush; } //* ----------------------------------------------- THREAD LOOP ----------------------------------------------- return {}; } //? ------------------------------------------ Secondary thread end ----------------------------------------------- //* Runs collect and draw in a secondary thread, unlocks and locks config to update cached values void run(const string& box, bool no_update, bool force_redraw) { atomic_wait_for(active, true, 5000); if (active) { Logger::error("Stall in Runner thread, restarting!"); active = false; // exit(1); pthread_cancel(Runner::runner_id); if (pthread_create(&Runner::runner_id, nullptr, &Runner::_runner, nullptr) != 0) { Global::exit_error_msg = "Failed to re-create _runner thread!"; clean_quit(1); } } if (stopping or Global::resized) return; if (box == "overlay") { cout << Term::sync_start << Global::overlay << Term::sync_end << flush; } else if (box == "clock") { cout << Term::sync_start << Global::clock << Term::sync_end << flush; } else { Config::unlock(); Config::lock(); current_conf = { (box == "all" ? Config::current_boxes : vector{box}), no_update, force_redraw, (not Config::getB("tty_mode") and Config::getB("background_update")), Global::overlay, Global::clock }; if (Menu::active and not current_conf.background_update) Global::overlay.clear(); thread_trigger(); atomic_wait_for(active, false, 10); } } //* Stops any work being done in runner thread and checks for thread errors void stop() { stopping = true; int ret = pthread_mutex_trylock(&mtx); if (ret != EBUSY and not Global::quitting) { if (active) active = false; Global::exit_error_msg = "Runner thread died unexpectedly!"; clean_quit(1); } else if (ret == EBUSY) { atomic_wait_for(active, true, 5000); if (active) { active = false; if (Global::quitting) { return; } else { Global::exit_error_msg = "No response from Runner thread, quitting!"; clean_quit(1); } } thread_trigger(); atomic_wait_for(active, false, 100); atomic_wait_for(active, true, 100); } stopping = false; } } //* --------------------------------------------- Main starts here! --------------------------------------------------- int main(int argc, char **argv) { //? ------------------------------------------------ INIT --------------------------------------------------------- Global::start_time = time_s(); //? Save real and effective userid's and drop priviliges until needed if running with SUID bit set Global::real_uid = getuid(); Global::set_uid = geteuid(); if (Global::real_uid != Global::set_uid) { if (seteuid(Global::real_uid) != 0) { Global::real_uid = Global::set_uid; Global::exit_error_msg = "Failed to change effective user ID. Unset btop SUID bit to ensure security on this system. Quitting!"; clean_quit(1); } } //? Call argument parser if launched with arguments if (argc > 1) argumentParser(argc, argv); { const auto config_dir = Config::get_config_dir(); if (config_dir.has_value()) { Config::conf_dir = config_dir.value(); Config::conf_file = Config::conf_dir / "btop.conf"; Logger::logfile = Config::conf_dir / "btop.log"; Theme::user_theme_dir = Config::conf_dir / "themes"; // If necessary create the user theme directory std::error_code error; if (not fs::exists(Theme::user_theme_dir, error) and not fs::create_directories(Theme::user_theme_dir, error)) { Theme::user_theme_dir.clear(); Logger::warning("Failed to create user theme directory: " + error.message()); } } } //? Try to find global btop theme path relative to binary path #ifdef __linux__ { std::error_code ec; Global::self_path = fs::read_symlink("/proc/self/exe", ec).remove_filename(); } #elif __APPLE__ { char buf [PATH_MAX]; uint32_t bufsize = PATH_MAX; if(!_NSGetExecutablePath(buf, &bufsize)) Global::self_path = fs::path(buf).remove_filename(); } #endif if (std::error_code ec; not Global::self_path.empty()) { Theme::theme_dir = fs::canonical(Global::self_path / "../share/btop/themes", ec); if (ec or not fs::is_directory(Theme::theme_dir) or access(Theme::theme_dir.c_str(), R_OK) == -1) Theme::theme_dir.clear(); } //? If relative path failed, check two most common absolute paths if (Theme::theme_dir.empty()) { for (auto theme_path : {"/usr/local/share/btop/themes", "/usr/share/btop/themes"}) { if (fs::is_directory(fs::path(theme_path)) and access(theme_path, R_OK) != -1) { Theme::theme_dir = fs::path(theme_path); break; } } } //? Config init { atomic_lock lck(Global::init_conf); vector load_warnings; Config::load(Config::conf_file, load_warnings); Config::set("lowcolor", (Global::arg_low_color ? true : not Config::getB("truecolor"))); if (Global::debug) { Logger::set("DEBUG"); Logger::debug("Starting in DEBUG mode!"); } else Logger::set(Config::getS("log_level")); Logger::info("Logger set to " + (Global::debug ? "DEBUG" : Config::getS("log_level"))); for (const auto& err_str : load_warnings) Logger::warning(err_str); } //? Try to find and set a UTF-8 locale if (std::setlocale(LC_ALL, "") != nullptr and not s_contains((string)std::setlocale(LC_ALL, ""), ";") and str_to_upper(s_replace((string)std::setlocale(LC_ALL, ""), "-", "")).ends_with("UTF8")) { Logger::debug("Using locale " + (string)std::setlocale(LC_ALL, "")); } else { string found; bool set_failure{}; for (const auto loc_env : array{"LANG", "LC_ALL"}) { if (std::getenv(loc_env) != nullptr and str_to_upper(s_replace((string)std::getenv(loc_env), "-", "")).ends_with("UTF8")) { found = std::getenv(loc_env); if (std::setlocale(LC_ALL, found.c_str()) == nullptr) { set_failure = true; Logger::warning("Failed to set locale " + found + " continuing anyway."); } } } if (found.empty()) { if (setenv("LC_ALL", "", 1) == 0 and setenv("LANG", "", 1) == 0) { try { if (const auto loc = std::locale("").name(); not loc.empty() and loc != "*") { for (auto& l : ssplit(loc, ';')) { if (str_to_upper(s_replace(l, "-", "")).ends_with("UTF8")) { found = l.substr(l.find('=') + 1); if (std::setlocale(LC_ALL, found.c_str()) != nullptr) { break; } } } } } catch (...) { found.clear(); } } } // #ifdef __APPLE__ if (found.empty()) { CFLocaleRef cflocale = CFLocaleCopyCurrent(); CFStringRef id_value = (CFStringRef)CFLocaleGetValue(cflocale, kCFLocaleIdentifier); auto loc_id = CFStringGetCStringPtr(id_value, kCFStringEncodingUTF8); CFRelease(cflocale); std::string cur_locale = (loc_id != nullptr ? loc_id : ""); if (cur_locale.empty()) { Logger::warning("No UTF-8 locale detected! Some symbols might not display correctly."); } else if (std::setlocale(LC_ALL, string(cur_locale + ".UTF-8").c_str()) != nullptr) { Logger::debug("Setting LC_ALL=" + cur_locale + ".UTF-8"); } else if(std::setlocale(LC_ALL, "en_US.UTF-8") != nullptr) { Logger::debug("Setting LC_ALL=en_US.UTF-8"); } else { Logger::warning("Failed to set macos locale, continuing anyway."); } } #else if (found.empty() and Global::utf_force) Logger::warning("No UTF-8 locale detected! Forcing start with --utf-force argument."); else if (found.empty()) { Global::exit_error_msg = "No UTF-8 locale detected!\nUse --utf-force argument to force start if you're sure your terminal can handle it."; clean_quit(1); } #endif else if (not set_failure) Logger::debug("Setting LC_ALL=" + found); } //? Initialize terminal and set options if (not Term::init()) { Global::exit_error_msg = "No tty detected!\nbtop++ needs an interactive shell to run."; clean_quit(1); } if (Term::current_tty != "unknown") Logger::info("Running on " + Term::current_tty); if (not Global::arg_tty and Config::getB("force_tty")) { Config::set("tty_mode", true); Logger::info("Forcing tty mode: setting 16 color mode and using tty friendly graph symbols"); } #if not defined __APPLE__ && not defined __OpenBSD__ else if (not Global::arg_tty and Term::current_tty.starts_with("/dev/tty")) { Config::set("tty_mode", true); Logger::info("Real tty detected: setting 16 color mode and using tty friendly graph symbols"); } #endif //? Check for valid terminal dimensions { int t_count = 0; while (Term::width <= 0 or Term::width > 10000 or Term::height <= 0 or Term::height > 10000) { sleep_ms(10); Term::refresh(); if (++t_count == 100) { Global::exit_error_msg = "Failed to get size of terminal!"; clean_quit(1); } } } //? Platform dependent init and error check try { Shared::init(); } catch (const std::exception& e) { Global::exit_error_msg = "Exception in Shared::init() -> " + string{e.what()}; clean_quit(1); } if (not Config::check_boxes(Config::getS("shown_boxes"))) { Config::check_boxes("cpu mem net proc"); Config::set("shown_boxes", "cpu mem net proc"s); } //? Update list of available themes and generate the selected theme Theme::updateThemes(); Theme::setTheme(); //? Setup signal handlers for CTRL-C, CTRL-Z, resume and terminal resize std::atexit(_exit_handler); std::signal(SIGINT, _signal_handler); std::signal(SIGTSTP, _signal_handler); std::signal(SIGCONT, _signal_handler); std::signal(SIGWINCH, _signal_handler); std::signal(SIGUSR1, _signal_handler); sigset_t mask; sigemptyset(&mask); sigaddset(&mask, SIGUSR1); pthread_sigmask(SIG_BLOCK, &mask, &Input::signal_mask); //? Start runner thread Runner::thread_sem_init(); if (pthread_create(&Runner::runner_id, nullptr, &Runner::_runner, nullptr) != 0) { Global::exit_error_msg = "Failed to create _runner thread!"; clean_quit(1); } else { Global::_runner_started = true; } //? Calculate sizes of all boxes Config::presetsValid(Config::getS("presets")); if (Global::arg_preset >= 0) { Config::current_preset = min(Global::arg_preset, (int)Config::preset_list.size() - 1); Config::apply_preset(Config::preset_list.at(Config::current_preset)); } { const auto [x, y] = Term::get_min_size(Config::getS("shown_boxes")); if (Term::height < y or Term::width < x) { pthread_sigmask(SIG_SETMASK, &Input::signal_mask, &mask); term_resize(true); pthread_sigmask(SIG_SETMASK, &mask, nullptr); Global::resized = false; } } Draw::calcSizes(); //? Print out box outlines cout << Term::sync_start << Cpu::box << Mem::box << Net::box << Proc::box << Term::sync_end << flush; //? ------------------------------------------------ MAIN LOOP ---------------------------------------------------- if (Global::arg_update != 0) { Config::set("update_ms", Global::arg_update); } uint64_t update_ms = Config::getI("update_ms"); auto future_time = time_ms(); try { while (not true not_eq not false) { //? Check for exceptions in secondary thread and exit with fail signal if true if (Global::thread_exception) clean_quit(1); else if (Global::should_quit) clean_quit(0); else if (Global::should_sleep) { Global::should_sleep = false; _sleep(); } //? Make sure terminal size hasn't changed (in case of SIGWINCH not working properly) term_resize(Global::resized); //? Trigger secondary thread to redraw if terminal has been resized if (Global::resized) { Draw::calcSizes(); Draw::update_clock(true); Global::resized = false; if (Menu::active) Menu::process(); else Runner::run("all", true, true); atomic_wait_for(Runner::active, true, 1000); } //? Update clock if needed if (Draw::update_clock() and not Menu::active) { Runner::run("clock"); } //? Start secondary collect & draw thread at the interval set by config value if (time_ms() >= future_time and not Global::resized) { Runner::run("all"); update_ms = Config::getI("update_ms"); future_time = time_ms() + update_ms; } //? Loop over input polling and input action processing for (auto current_time = time_ms(); current_time < future_time; current_time = time_ms()) { //? Check for external clock changes and for changes to the update timer if (std::cmp_not_equal(update_ms, Config::getI("update_ms"))) { update_ms = Config::getI("update_ms"); future_time = time_ms() + update_ms; } else if (future_time - current_time > update_ms) future_time = current_time; //? Poll for input and process any input detected else if (Input::poll(min((uint64_t)1000, future_time - current_time))) { if (not Runner::active) Config::unlock(); if (Menu::active) Menu::process(Input::get()); else Input::process(Input::get()); } //? Break the loop at 1000ms intervals or if input polling was interrupted else break; } } } catch (const std::exception& e) { Global::exit_error_msg = "Exception in main loop -> " + string{e.what()}; clean_quit(1); } } btop-1.3.0/src/btop_config.cpp000066400000000000000000000644271454653170500162720ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include #include #include #include #include #include #include #include #include "btop_config.hpp" #include "btop_shared.hpp" #include "btop_tools.hpp" using std::array; using std::atomic; using std::string_view; namespace fs = std::filesystem; namespace rng = std::ranges; using namespace std::literals; using namespace Tools; //* Functions and variables for reading and writing the btop config file namespace Config { atomic locked (false); atomic writelock (false); bool write_new; const vector> descriptions = { {"color_theme", "#* Name of a btop++/bpytop/bashtop formatted \".theme\" file, \"Default\" and \"TTY\" for builtin themes.\n" "#* Themes should be placed in \"../share/btop/themes\" relative to binary or \"$HOME/.config/btop/themes\""}, {"theme_background", "#* If the theme set background should be shown, set to False if you want terminal background transparency."}, {"truecolor", "#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false."}, {"force_tty", "#* Set to true to force tty mode regardless if a real tty has been detected or not.\n" "#* Will force 16-color mode and TTY theme, set all graph symbols to \"tty\" and swap out other non tty friendly symbols."}, {"presets", "#* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets.\n" "#* Format: \"box_name:P:G,box_name:P:G\" P=(0 or 1) for alternate positions, G=graph symbol to use for box.\n" "#* Use whitespace \" \" as separator between different presets.\n" "#* Example: \"cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty\""}, {"vim_keys", "#* Set to True to enable \"h,j,k,l,g,G\" keys for directional control in lists.\n" "#* Conflicting keys for h:\"help\" and k:\"kill\" is accessible while holding shift."}, {"rounded_corners", "#* Rounded corners on boxes, is ignored if TTY mode is ON."}, {"graph_symbol", "#* Default symbols to use for graph creation, \"braille\", \"block\" or \"tty\".\n" "#* \"braille\" offers the highest resolution but might not be included in all fonts.\n" "#* \"block\" has half the resolution of braille but uses more common characters.\n" "#* \"tty\" uses only 3 different symbols but will work with most fonts and should work in a real TTY.\n" "#* Note that \"tty\" only has half the horizontal resolution of the other two, so will show a shorter historical view."}, {"graph_symbol_cpu", "# Graph symbol to use for graphs in cpu box, \"default\", \"braille\", \"block\" or \"tty\"."}, #ifdef GPU_SUPPORT {"graph_symbol_gpu", "# Graph symbol to use for graphs in gpu box, \"default\", \"braille\", \"block\" or \"tty\"."}, #endif {"graph_symbol_mem", "# Graph symbol to use for graphs in cpu box, \"default\", \"braille\", \"block\" or \"tty\"."}, {"graph_symbol_net", "# Graph symbol to use for graphs in cpu box, \"default\", \"braille\", \"block\" or \"tty\"."}, {"graph_symbol_proc", "# Graph symbol to use for graphs in cpu box, \"default\", \"braille\", \"block\" or \"tty\"."}, {"shown_boxes", "#* Manually set which boxes to show. Available values are \"cpu mem net proc\" and \"gpu0\" through \"gpu5\", separate values with whitespace."}, {"update_ms", "#* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs."}, {"proc_sorting", "#* Processes sorting, \"pid\" \"program\" \"arguments\" \"threads\" \"user\" \"memory\" \"cpu lazy\" \"cpu direct\",\n" "#* \"cpu lazy\" sorts top process over time (easier to follow), \"cpu direct\" updates top process directly."}, {"proc_reversed", "#* Reverse sorting order, True or False."}, {"proc_tree", "#* Show processes as a tree."}, {"proc_colors", "#* Use the cpu graph colors in the process list."}, {"proc_gradient", "#* Use a darkening gradient in the process list."}, {"proc_per_core", "#* If process cpu usage should be of the core it's running on or usage of the total available cpu power."}, {"proc_mem_bytes", "#* Show process memory as bytes instead of percent."}, {"proc_cpu_graphs", "#* Show cpu graph for each process."}, {"proc_info_smaps", "#* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate)"}, {"proc_left", "#* Show proc box on left side of screen instead of right."}, {"proc_filter_kernel", "#* (Linux) Filter processes tied to the Linux kernel(similar behavior to htop)."}, {"proc_aggregate", "#* In tree-view, always accumulate child process resources in the parent process."}, {"cpu_graph_upper", "#* Sets the CPU stat shown in upper half of the CPU graph, \"total\" is always available.\n" "#* Select from a list of detected attributes from the options menu."}, {"cpu_graph_lower", "#* Sets the CPU stat shown in lower half of the CPU graph, \"total\" is always available.\n" "#* Select from a list of detected attributes from the options menu."}, #ifdef GPU_SUPPORT {"show_gpu_info", "#* If gpu info should be shown in the cpu box. Available values = \"Auto\", \"On\" and \"Off\"."}, #endif {"cpu_invert_lower", "#* Toggles if the lower CPU graph should be inverted."}, {"cpu_single_graph", "#* Set to True to completely disable the lower CPU graph."}, {"cpu_bottom", "#* Show cpu box at bottom of screen instead of top."}, {"show_uptime", "#* Shows the system uptime in the CPU box."}, {"check_temp", "#* Show cpu temperature."}, {"cpu_sensor", "#* Which sensor to use for cpu temperature, use options menu to select from list of available sensors."}, {"show_coretemp", "#* Show temperatures for cpu cores also if check_temp is True and sensors has been found."}, {"cpu_core_map", "#* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core.\n" "#* Use lm-sensors or similar to see which cores are reporting temperatures on your machine.\n" "#* Format \"x:y\" x=core with wrong temp, y=core with correct temp, use space as separator between multiple entries.\n" "#* Example: \"4:0 5:1 6:3\""}, {"temp_scale", "#* Which temperature scale to use, available values: \"celsius\", \"fahrenheit\", \"kelvin\" and \"rankine\"."}, {"base_10_sizes", "#* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024."}, {"show_cpu_freq", "#* Show CPU frequency."}, {"clock_format", "#* Draw a clock at top of screen, formatting according to strftime, empty string to disable.\n" "#* Special formatting: /host = hostname | /user = username | /uptime = system uptime"}, {"background_update", "#* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort."}, {"custom_cpu_name", "#* Custom cpu model name, empty string to disable."}, {"disks_filter", "#* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace \" \".\n" "#* Begin line with \"exclude=\" to change to exclude filter, otherwise defaults to \"most include\" filter. Example: disks_filter=\"exclude=/boot /home/user\"."}, {"mem_graphs", "#* Show graphs instead of meters for memory values."}, {"mem_below_net", "#* Show mem box below net box instead of above."}, {"zfs_arc_cached", "#* Count ZFS ARC in cached and available memory."}, {"show_swap", "#* If swap memory should be shown in memory box."}, {"swap_disk", "#* Show swap as a disk, ignores show_swap value above, inserts itself after first disk."}, {"show_disks", "#* If mem box should be split to also show disks info."}, {"only_physical", "#* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar."}, {"use_fstab", "#* Read disks list from /etc/fstab. This also disables only_physical."}, {"zfs_hide_datasets", "#* Setting this to True will hide all datasets, and only show ZFS pools. (IO stats will be calculated per-pool)"}, {"disk_free_priv", "#* Set to true to show available disk space for privileged users."}, {"show_io_stat", "#* Toggles if io activity % (disk busy time) should be shown in regular disk usage view."}, {"io_mode", "#* Toggles io mode for disks, showing big graphs for disk read/write speeds."}, {"io_graph_combined", "#* Set to True to show combined read/write io graphs in io mode."}, {"io_graph_speeds", "#* Set the top speed for the io graphs in MiB/s (100 by default), use format \"mountpoint:speed\" separate disks with whitespace \" \".\n" "#* Example: \"/mnt/media:100 /:20 /boot:1\"."}, {"net_download", "#* Set fixed values for network graphs in Mebibits. Is only used if net_auto is also set to False."}, {"net_upload", ""}, {"net_auto", "#* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest."}, {"net_sync", "#* Sync the auto scaling for download and upload to whichever currently has the highest scale."}, {"net_iface", "#* Starts with the Network Interface specified here."}, {"show_battery", "#* Show battery stats in top right if battery is present."}, {"selected_battery", "#* Which battery to use if multiple are present. \"Auto\" for auto detection."}, {"log_level", "#* Set loglevel for \"~/.config/btop/btop.log\" levels are: \"ERROR\" \"WARNING\" \"INFO\" \"DEBUG\".\n" "#* The level set includes all lower levels, i.e. \"DEBUG\" will show all logging info."}, #ifdef GPU_SUPPORT {"nvml_measure_pcie_speeds", "#* Measure PCIe throughput on NVIDIA cards, may impact performance on certain cards."}, {"gpu_mirror_graph", "#* Horizontally mirror the GPU graph."}, {"custom_gpu_name0", "#* Custom gpu0 model name, empty string to disable."}, {"custom_gpu_name1", "#* Custom gpu1 model name, empty string to disable."}, {"custom_gpu_name2", "#* Custom gpu2 model name, empty string to disable."}, {"custom_gpu_name3", "#* Custom gpu3 model name, empty string to disable."}, {"custom_gpu_name4", "#* Custom gpu4 model name, empty string to disable."}, {"custom_gpu_name5", "#* Custom gpu5 model name, empty string to disable."}, #endif }; std::unordered_map strings = { {"color_theme", "Default"}, {"shown_boxes", "cpu mem net proc"}, {"graph_symbol", "braille"}, {"presets", "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty"}, {"graph_symbol_cpu", "default"}, {"graph_symbol_gpu", "default"}, {"graph_symbol_mem", "default"}, {"graph_symbol_net", "default"}, {"graph_symbol_proc", "default"}, {"proc_sorting", "cpu lazy"}, {"cpu_graph_upper", "Auto"}, {"cpu_graph_lower", "Auto"}, {"cpu_sensor", "Auto"}, {"selected_battery", "Auto"}, {"cpu_core_map", ""}, {"temp_scale", "celsius"}, {"clock_format", "%X"}, {"custom_cpu_name", ""}, {"disks_filter", ""}, {"io_graph_speeds", ""}, {"net_iface", ""}, {"log_level", "WARNING"}, {"proc_filter", ""}, {"proc_command", ""}, {"selected_name", ""}, #ifdef GPU_SUPPORT {"custom_gpu_name0", ""}, {"custom_gpu_name1", ""}, {"custom_gpu_name2", ""}, {"custom_gpu_name3", ""}, {"custom_gpu_name4", ""}, {"custom_gpu_name5", ""}, {"show_gpu_info", "Auto"} #endif }; std::unordered_map stringsTmp; std::unordered_map bools = { {"theme_background", true}, {"truecolor", true}, {"rounded_corners", true}, {"proc_reversed", false}, {"proc_tree", false}, {"proc_colors", true}, {"proc_gradient", true}, {"proc_per_core", false}, {"proc_mem_bytes", true}, {"proc_cpu_graphs", true}, {"proc_info_smaps", false}, {"proc_left", false}, {"proc_filter_kernel", false}, {"cpu_invert_lower", true}, {"cpu_single_graph", false}, {"cpu_bottom", false}, {"show_uptime", true}, {"check_temp", true}, {"show_coretemp", true}, {"show_cpu_freq", true}, {"background_update", true}, {"mem_graphs", true}, {"mem_below_net", false}, {"zfs_arc_cached", true}, {"show_swap", true}, {"swap_disk", true}, {"show_disks", true}, {"only_physical", true}, {"use_fstab", true}, {"zfs_hide_datasets", false}, {"show_io_stat", true}, {"io_mode", false}, {"base_10_sizes", false}, {"io_graph_combined", false}, {"net_auto", true}, {"net_sync", true}, {"show_battery", true}, {"vim_keys", false}, {"tty_mode", false}, {"disk_free_priv", false}, {"force_tty", false}, {"lowcolor", false}, {"show_detailed", false}, {"proc_filtering", false}, {"proc_aggregate", false}, #ifdef GPU_SUPPORT {"nvml_measure_pcie_speeds", true}, {"gpu_mirror_graph", true}, #endif }; std::unordered_map boolsTmp; std::unordered_map ints = { {"update_ms", 2000}, {"net_download", 100}, {"net_upload", 100}, {"detailed_pid", 0}, {"selected_pid", 0}, {"selected_depth", 0}, {"proc_start", 0}, {"proc_selected", 0}, {"proc_last_selected", 0}, }; std::unordered_map intsTmp; // Returns a valid config dir or an empty optional // The config dir might be read only, a warning is printed, but a path is returned anyway [[nodiscard]] std::optional get_config_dir() noexcept { fs::path config_dir; { std::error_code error; if (const auto xdg_config_home = std::getenv("XDG_CONFIG_HOME"); xdg_config_home != nullptr) { if (fs::exists(xdg_config_home, error)) { config_dir = fs::path(xdg_config_home) / "btop"; } } else if (const auto home = std::getenv("HOME"); home != nullptr) { error.clear(); if (fs::exists(home, error)) { config_dir = fs::path(home) / ".config" / "btop"; } if (error) { fmt::print(stderr, "\033[0;31mWarning: \033[0m{} could not be accessed: {}\n", config_dir.string(), error.message()); config_dir = ""; } } } // FIXME: This warnings can be noisy if the user deliberately has a non-writable config dir // offer an alternative | disable messages by default | disable messages if config dir is not writable | disable messages with a flag // FIXME: Make happy path not branch if (not config_dir.empty()) { std::error_code error; if (fs::exists(config_dir, error)) { if (fs::is_directory(config_dir, error)) { struct statvfs stats {}; if ((fs::status(config_dir, error).permissions() & fs::perms::owner_write) == fs::perms::owner_write and statvfs(config_dir.c_str(), &stats) == 0 and (stats.f_flag & ST_RDONLY) == 0) { return config_dir; } else { fmt::print(stderr, "\033[0;31mWarning: \033[0m`{}` is not writable\n", fs::absolute(config_dir).string()); // If the config is readable we can still use the provided config, but changes will not be persistent if ((fs::status(config_dir, error).permissions() & fs::perms::owner_read) == fs::perms::owner_read) { fmt::print(stderr, "\033[0;31mWarning: \033[0mLogging is disabled, config changes are not persistent\n"); return config_dir; } } } else { fmt::print(stderr, "\033[0;31mWarning: \033[0m`{}` is not a directory\n", fs::absolute(config_dir).string()); } } else { // Doesn't exist if (fs::create_directories(config_dir, error)) { return config_dir; } else { fmt::print(stderr, "\033[0;31mWarning: \033[0m`{}` could not be created: {}\n", fs::absolute(config_dir).string(), error.message()); } } } else { fmt::print(stderr, "\033[0;31mWarning: \033[0mCould not determine config path: Make sure `$XDG_CONFIG_HOME` or `$HOME` is set\n"); } fmt::print(stderr, "\033[0;31mWarning: \033[0mLogging is disabled, config changes are not persistent\n"); return {}; } bool _locked(const std::string_view name) { atomic_wait(writelock, true); if (not write_new and rng::find_if(descriptions, [&name](const auto& a) { return a.at(0) == name; }) != descriptions.end()) write_new = true; return locked.load(); } fs::path conf_dir; fs::path conf_file; vector available_batteries = {"Auto"}; vector current_boxes; vector preset_list = {"cpu:0:default,mem:0:default,net:0:default,proc:0:default"}; int current_preset = -1; bool presetsValid(const string& presets) { vector new_presets = {preset_list.at(0)}; for (int x = 0; const auto& preset : ssplit(presets)) { if (++x > 9) { validError = "Too many presets entered!"; return false; } for (int y = 0; const auto& box : ssplit(preset, ',')) { if (++y > 4) { validError = "Too many boxes entered for preset!"; return false; } const auto& vals = ssplit(box, ':'); if (vals.size() != 3) { validError = "Malformatted preset in config value presets!"; return false; } if (not is_in(vals.at(0), "cpu", "mem", "net", "proc", "gpu0", "gpu1", "gpu2", "gpu3", "gpu4", "gpu5")) { validError = "Invalid box name in config value presets!"; return false; } if (not is_in(vals.at(1), "0", "1")) { validError = "Invalid position value in config value presets!"; return false; } if (not v_contains(valid_graph_symbols_def, vals.at(2))) { validError = "Invalid graph name in config value presets!"; return false; } } new_presets.push_back(preset); } preset_list = std::move(new_presets); return true; } //* Apply selected preset void apply_preset(const string& preset) { string boxes; for (const auto& box : ssplit(preset, ',')) { const auto& vals = ssplit(box, ':'); boxes += vals.at(0) + ' '; } if (not boxes.empty()) boxes.pop_back(); auto min_size = Term::get_min_size(boxes); if (Term::width < min_size.at(0) or Term::height < min_size.at(1)) { return; } for (const auto& box : ssplit(preset, ',')) { const auto& vals = ssplit(box, ':'); if (vals.at(0) == "cpu") set("cpu_bottom", (vals.at(1) == "0" ? false : true)); else if (vals.at(0) == "mem") set("mem_below_net", (vals.at(1) == "0" ? false : true)); else if (vals.at(0) == "proc") set("proc_left", (vals.at(1) == "0" ? false : true)); set("graph_symbol_" + vals.at(0), vals.at(2)); } if (check_boxes(boxes)) set("shown_boxes", boxes); } void lock() { atomic_wait(writelock); locked = true; } string validError; bool intValid(const std::string_view name, const string& value) { int i_value; try { i_value = stoi(value); } catch (const std::invalid_argument&) { validError = "Invalid numerical value!"; return false; } catch (const std::out_of_range&) { validError = "Value out of range!"; return false; } catch (const std::exception& e) { validError = string{e.what()}; return false; } if (name == "update_ms" and i_value < 100) validError = "Config value update_ms set too low (<100)."; else if (name == "update_ms" and i_value > ONE_DAY_MILLIS) validError = fmt::format("Config value update_ms set too high (>{}).", ONE_DAY_MILLIS); else return true; return false; } bool stringValid(const std::string_view name, const string& value) { if (name == "log_level" and not v_contains(Logger::log_levels, value)) validError = "Invalid log_level: " + value; else if (name == "graph_symbol" and not v_contains(valid_graph_symbols, value)) validError = "Invalid graph symbol identifier: " + value; else if (name.starts_with("graph_symbol_") and (value != "default" and not v_contains(valid_graph_symbols, value))) validError = fmt::format("Invalid graph symbol identifier for {}: {}", name, value); else if (name == "shown_boxes" and not Global::init_conf and not value.empty() and not check_boxes(value)) validError = "Invalid box name(s) in shown_boxes!"; #ifdef GPU_SUPPORT else if (name == "show_gpu_info" and not v_contains(show_gpu_values, value)) validError = "Invalid value for show_gpu_info: " + value; #endif else if (name == "presets" and not presetsValid(value)) return false; else if (name == "cpu_core_map") { const auto maps = ssplit(value); bool all_good = true; for (const auto& map : maps) { const auto map_split = ssplit(map, ':'); if (map_split.size() != 2) all_good = false; else if (not isint(map_split.at(0)) or not isint(map_split.at(1))) all_good = false; if (not all_good) { validError = "Invalid formatting of cpu_core_map!"; return false; } } return true; } else if (name == "io_graph_speeds") { const auto maps = ssplit(value); bool all_good = true; for (const auto& map : maps) { const auto map_split = ssplit(map, ':'); if (map_split.size() != 2) all_good = false; else if (map_split.at(0).empty() or not isint(map_split.at(1))) all_good = false; if (not all_good) { validError = "Invalid formatting of io_graph_speeds!"; return false; } } return true; } else return true; return false; } string getAsString(const std::string_view name) { if (bools.contains(name)) return (bools.at(name) ? "True" : "False"); else if (ints.contains(name)) return to_string(ints.at(name)); else if (strings.contains(name)) return strings.at(name); return ""; } void flip(const std::string_view name) { if (_locked(name)) { if (boolsTmp.contains(name)) boolsTmp.at(name) = not boolsTmp.at(name); else boolsTmp.insert_or_assign(name, (not bools.at(name))); } else bools.at(name) = not bools.at(name); } void unlock() { if (not locked) return; atomic_wait(Runner::active); atomic_lock lck(writelock, true); try { if (Proc::shown) { ints.at("selected_pid") = Proc::selected_pid; strings.at("selected_name") = Proc::selected_name; ints.at("proc_start") = Proc::start; ints.at("proc_selected") = Proc::selected; ints.at("selected_depth") = Proc::selected_depth; } for (auto& item : stringsTmp) { strings.at(item.first) = item.second; } stringsTmp.clear(); for (auto& item : intsTmp) { ints.at(item.first) = item.second; } intsTmp.clear(); for (auto& item : boolsTmp) { bools.at(item.first) = item.second; } boolsTmp.clear(); } catch (const std::exception& e) { Global::exit_error_msg = "Exception during Config::unlock() : " + string{e.what()}; clean_quit(1); } locked = false; } bool check_boxes(const string& boxes) { auto new_boxes = ssplit(boxes); for (auto& box : new_boxes) { if (not v_contains(valid_boxes, box)) return false; #ifdef GPU_SUPPORT if (box.starts_with("gpu")) { size_t gpu_num = stoi(box.substr(3)) + 1; if (std::cmp_greater(gpu_num, Gpu::gpu_names.size())) return false; } #endif } current_boxes = std::move(new_boxes); return true; } void toggle_box(const string& box) { auto old_boxes = current_boxes; auto box_pos = rng::find(current_boxes, box); if (box_pos == current_boxes.end()) current_boxes.push_back(box); else current_boxes.erase(box_pos); string new_boxes; if (not current_boxes.empty()) { for (const auto& b : current_boxes) new_boxes += b + ' '; new_boxes.pop_back(); } auto min_size = Term::get_min_size(new_boxes); if (Term::width < min_size.at(0) or Term::height < min_size.at(1)) { current_boxes = old_boxes; return; } Config::set("shown_boxes", new_boxes); } void load(const fs::path& conf_file, vector& load_warnings) { std::error_code error; if (conf_file.empty()) return; else if (not fs::exists(conf_file, error)) { write_new = true; return; } if (error) { return; } std::ifstream cread(conf_file); if (cread.good()) { vector valid_names; for (auto &n : descriptions) valid_names.push_back(n[0]); if (string v_string; cread.peek() != '#' or (getline(cread, v_string, '\n') and not s_contains(v_string, Global::Version))) write_new = true; while (not cread.eof()) { cread >> std::ws; if (cread.peek() == '#') { cread.ignore(SSmax, '\n'); continue; } string name, value; getline(cread, name, '='); if (name.ends_with(' ')) name = trim(name); if (not v_contains(valid_names, name)) { cread.ignore(SSmax, '\n'); continue; } cread >> std::ws; if (bools.contains(name)) { cread >> value; if (not isbool(value)) load_warnings.push_back("Got an invalid bool value for config name: " + name); else bools.at(name) = stobool(value); } else if (ints.contains(name)) { cread >> value; if (not isint(value)) load_warnings.push_back("Got an invalid integer value for config name: " + name); else if (not intValid(name, value)) { load_warnings.push_back(validError); } else ints.at(name) = stoi(value); } else if (strings.contains(name)) { if (cread.peek() == '"') { cread.ignore(1); getline(cread, value, '"'); } else cread >> value; if (not stringValid(name, value)) load_warnings.push_back(validError); else strings.at(name) = value; } cread.ignore(SSmax, '\n'); } if (not load_warnings.empty()) write_new = true; } } void write() { if (conf_file.empty() or not write_new) return; Logger::debug("Writing new config file"); if (geteuid() != Global::real_uid and seteuid(Global::real_uid) != 0) return; std::ofstream cwrite(conf_file, std::ios::trunc); if (cwrite.good()) { cwrite << "#? Config file for btop v. " << Global::Version; for (auto [name, description] : descriptions) { cwrite << "\n\n" << (description.empty() ? "" : description + "\n") << name << " = "; if (strings.contains(name)) cwrite << "\"" << strings.at(name) << "\""; else if (ints.contains(name)) cwrite << ints.at(name); else if (bools.contains(name)) cwrite << (bools.at(name) ? "True" : "False"); } } } } btop-1.3.0/src/btop_config.hpp000066400000000000000000000077631454653170500162770ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #pragma once #include #include #include #include #include using std::string; using std::vector; //* Functions and variables for reading and writing the btop config file namespace Config { extern std::filesystem::path conf_dir; extern std::filesystem::path conf_file; extern std::unordered_map strings; extern std::unordered_map stringsTmp; extern std::unordered_map bools; extern std::unordered_map boolsTmp; extern std::unordered_map ints; extern std::unordered_map intsTmp; const vector valid_graph_symbols = { "braille", "block", "tty" }; const vector valid_graph_symbols_def = { "default", "braille", "block", "tty" }; const vector valid_boxes = { "cpu", "mem", "net", "proc" #ifdef GPU_SUPPORT ,"gpu0", "gpu1", "gpu2", "gpu3", "gpu4", "gpu5" #endif }; const vector temp_scales = { "celsius", "fahrenheit", "kelvin", "rankine" }; #ifdef GPU_SUPPORT const vector show_gpu_values = { "Auto", "On", "Off" }; #endif extern vector current_boxes; extern vector preset_list; extern vector available_batteries; extern int current_preset; constexpr int ONE_DAY_MILLIS = 1000 * 60 * 60 * 24; [[nodiscard]] std::optional get_config_dir() noexcept; //* Check if string only contains space separated valid names for boxes bool check_boxes(const string& boxes); //* Toggle box and update config string shown_boxes void toggle_box(const string& box); //* Parse and setup config value presets bool presetsValid(const string& presets); //* Apply selected preset void apply_preset(const string& preset); bool _locked(const std::string_view name); //* Return bool for config key inline bool getB(const std::string_view name) { return bools.at(name); } //* Return integer for config key inline const int& getI(const std::string_view name) { return ints.at(name); } //* Return string for config key inline const string& getS(const std::string_view name) { return strings.at(name); } string getAsString(const std::string_view name); extern string validError; bool intValid(const std::string_view name, const string& value); bool stringValid(const std::string_view name, const string& value); //* Set config key to bool inline void set(const std::string_view name, bool value) { if (_locked(name)) boolsTmp.insert_or_assign(name, value); else bools.at(name) = value; } //* Set config key to int inline void set(const std::string_view name, const int value) { if (_locked(name)) intsTmp.insert_or_assign(name, value); else ints.at(name) = value; } //* Set config key to string inline void set(const std::string_view name, const string& value) { if (_locked(name)) stringsTmp.insert_or_assign(name, value); else strings.at(name) = value; } //* Flip config key bool void flip(const std::string_view name); //* Lock config and cache changes until unlocked void lock(); //* Unlock config and write any cached values to config void unlock(); //* Load the config file from disk void load(const std::filesystem::path& conf_file, vector& load_warnings); //* Write the config file to disk void write(); } btop-1.3.0/src/btop_draw.cpp000066400000000000000000002765511454653170500157650ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include #include #include #include #include #include #include #include "btop_draw.hpp" #include "btop_config.hpp" #include "btop_theme.hpp" #include "btop_shared.hpp" #include "btop_tools.hpp" #include "btop_input.hpp" #include "btop_menu.hpp" using std::array; using std::clamp; using std::cmp_equal; using std::cmp_greater; using std::cmp_less; using std::cmp_less_equal; using std::floor; using std::max; using std::min; using std::round; using std::to_string; using std::views::iota; using namespace Tools; using namespace std::literals; // for operator""s namespace rng = std::ranges; namespace Symbols { const string meter = "■"; const array superscript = { "⁰", "¹", "²", "³", "⁴", "⁵", "⁶", "⁷", "⁸", "⁹" }; const std::unordered_map> graph_symbols = { { "braille_up", { " ", "⢀", "⢠", "⢰", "⢸", "⡀", "⣀", "⣠", "⣰", "⣸", "⡄", "⣄", "⣤", "⣴", "⣼", "⡆", "⣆", "⣦", "⣶", "⣾", "⡇", "⣇", "⣧", "⣷", "⣿" }}, {"braille_down", { " ", "⠈", "⠘", "⠸", "⢸", "⠁", "⠉", "⠙", "⠹", "⢹", "⠃", "⠋", "⠛", "⠻", "⢻", "⠇", "⠏", "⠟", "⠿", "⢿", "⡇", "⡏", "⡟", "⡿", "⣿" }}, {"block_up", { " ", "▗", "▗", "▐", "▐", "▖", "▄", "▄", "▟", "▟", "▖", "▄", "▄", "▟", "▟", "▌", "▙", "▙", "█", "█", "▌", "▙", "▙", "█", "█" }}, {"block_down", { " ", "▝", "▝", "▐", "▐", "▘", "▀", "▀", "▜", "▜", "▘", "▀", "▀", "▜", "▜", "▌", "▛", "▛", "█", "█", "▌", "▛", "▛", "█", "█" }}, {"tty_up", { " ", "░", "░", "▒", "▒", "░", "░", "▒", "▒", "█", "░", "▒", "▒", "▒", "█", "▒", "▒", "▒", "█", "█", "▒", "█", "█", "█", "█" }}, {"tty_down", { " ", "░", "░", "▒", "▒", "░", "░", "▒", "▒", "█", "░", "▒", "▒", "▒", "█", "▒", "▒", "▒", "█", "█", "▒", "█", "█", "█", "█" }} }; } namespace Draw { string banner_gen(int y, int x, bool centered, bool redraw) { static string banner; static size_t width = 0; if (redraw) banner.clear(); if (banner.empty()) { string b_color, bg, fg, oc, letter; auto lowcolor = Config::getB("lowcolor"); auto tty_mode = Config::getB("tty_mode"); for (size_t z = 0; const auto& line : Global::Banner_src) { if (const auto w = ulen(line[1]); w > width) width = w; if (tty_mode) { fg = (z > 2) ? "\x1b[31m" : "\x1b[91m"; bg = (z > 2) ? "\x1b[90m" : "\x1b[37m"; } else { fg = Theme::hex_to_color(line[0], lowcolor); int bg_i = 120 - z * 12; bg = Theme::dec_to_color(bg_i, bg_i, bg_i, lowcolor); } for (size_t i = 0; i < line[1].size(); i += 3) { if (line[1][i] == ' ') { letter = Mv::r(1); i -= 2; } else letter = line[1].substr(i, 3); b_color = (letter == "█") ? fg : bg; if (b_color != oc) banner += b_color; banner += letter; oc = b_color; } if (++z < Global::Banner_src.size()) banner += Mv::l(ulen(line[1])) + Mv::d(1); } banner += Mv::r(18 - Global::Version.size()) + Theme::c("main_fg") + Fx::b + Fx::i + "v" + Global::Version + Fx::reset; } if (redraw) return ""; return (centered ? Mv::to(y, Term::width / 2 - width / 2) : Mv::to(y, x)) + banner; } TextEdit::TextEdit() {} TextEdit::TextEdit(string text, bool numeric) : numeric(numeric), text(text) { pos = this->text.size(); upos = ulen(this->text); } bool TextEdit::command(const string& key) { if (key == "left" and upos > 0) { upos--; pos = uresize(text, upos).size(); } else if (key == "right" and pos < text.size()) { upos++; pos = uresize(text, upos).size(); } else if (key == "home" and not text.empty() and pos > 0) { pos = upos = 0; } else if (key == "end" and not text.empty() and pos < text.size()) { pos = text.size(); upos = ulen(text); } else if (key == "backspace" and pos > 0) { if (pos == text.size()) { text = uresize(text, --upos); pos = text.size(); } else { const string first = uresize(text, --upos); pos = first.size(); text = first + luresize(text.substr(pos), ulen(text) - upos - 1); } } else if (key == "delete" and pos < text.size()) { const string first = uresize(text, upos + 1); text = uresize(first, ulen(first) - 1) + text.substr(first.size()); } else if (key == "space" and not numeric) { text.insert(pos++, 1, ' '); upos++; } else if (ulen(key) == 1 and text.size() < text.max_size() - 20) { if (numeric and not isint(key)) return false; if (key.size() == 1) { text.insert(pos++, 1, key.at(0)); upos++; } else { const string first = uresize(text, upos) + key; text = first + text.substr(pos); upos++; pos = first.size(); } } else return false; return true; } string TextEdit::operator()(const size_t limit) { string out; size_t c_upos = upos; if (text.empty()) return Fx::ul + " " + Fx::uul; if (limit > 0 and ulen(text) + 1 > limit) { try { const size_t half = (size_t)round((double)limit / 2); string first; if (upos + half > ulen(text)) first = luresize(text.substr(0, pos), limit - (ulen(text) - upos)); else if (upos - half < 1) first = text.substr(0, pos); else first = luresize(text.substr(0, pos), half); out = first + uresize(text.substr(pos), limit - ulen(first)); c_upos = ulen(first); } catch (const std::exception& e) { Logger::error("In TextEdit::operator() : " + string{e.what()}); return ""; } } else out = text; if (c_upos == 0) return Fx::ul + uresize(out, 1) + Fx::uul + luresize(out, ulen(out) - 1); else if (c_upos == ulen(out)) return out + Fx::ul + " " + Fx::uul; else return uresize(out, c_upos) + Fx::ul + luresize(uresize(out, c_upos + 1), 1) + Fx::uul + luresize(out, ulen(out) - c_upos - 1); } void TextEdit::clear() { this->text.clear(); } string createBox(const int x, const int y, const int width, const int height, string line_color, bool fill, const string title, const string title2, const int num) { string out; if (line_color.empty()) line_color = Theme::c("div_line"); auto tty_mode = Config::getB("tty_mode"); auto rounded = Config::getB("rounded_corners"); const string numbering = (num == 0) ? "" : Theme::c("hi_fg") + (tty_mode ? std::to_string(num) : Symbols::superscript.at(clamp(num, 0, 9))); const auto& right_up = (tty_mode or not rounded ? Symbols::right_up : Symbols::round_right_up); const auto& left_up = (tty_mode or not rounded ? Symbols::left_up : Symbols::round_left_up); const auto& right_down = (tty_mode or not rounded ? Symbols::right_down : Symbols::round_right_down); const auto& left_down = (tty_mode or not rounded ? Symbols::left_down : Symbols::round_left_down); out = Fx::reset + line_color; //? Draw horizontal lines for (const int& hpos : {y, y + height - 1}) { out += Mv::to(hpos, x) + Symbols::h_line * (width - 1); } //? Draw vertical lines and fill if enabled for (const int& hpos : iota(y + 1, y + height - 1)) { out += Mv::to(hpos, x) + Symbols::v_line + ((fill) ? string(width - 2, ' ') : Mv::r(width - 2)) + Symbols::v_line; } //? Draw corners out += Mv::to(y, x) + left_up + Mv::to(y, x + width - 1) + right_up + Mv::to(y + height - 1, x) +left_down + Mv::to(y + height - 1, x + width - 1) + right_down; //? Draw titles if defined if (not title.empty()) { out += Mv::to(y, x + 2) + Symbols::title_left + Fx::b + numbering + Theme::c("title") + title + Fx::ub + line_color + Symbols::title_right; } if (not title2.empty()) { out += Mv::to(y + height - 1, x + 2) + Symbols::title_left_down + Fx::b + numbering + Theme::c("title") + title2 + Fx::ub + line_color + Symbols::title_right_down; } return out + Fx::reset + Mv::to(y + 1, x + 1); } bool update_clock(bool force) { const auto& clock_format = Config::getS("clock_format"); if (not Cpu::shown or clock_format.empty()) { if (clock_format.empty() and not Global::clock.empty()) Global::clock.clear(); return false; } static const std::unordered_map clock_custom_format = { {"/user", Tools::username()}, {"/host", Tools::hostname()}, {"/uptime", ""} }; static time_t c_time{}; static size_t clock_len{}; static string clock_str; if (auto n_time = time(nullptr); not force and n_time == c_time) return false; else { c_time = n_time; const auto new_clock = Tools::strf_time(clock_format); if (not force and new_clock == clock_str) return false; clock_str = new_clock; } auto& out = Global::clock; auto cpu_bottom = Config::getB("cpu_bottom"); const auto& x = Cpu::x; const auto y = (cpu_bottom ? Cpu::y + Cpu::height - 1 : Cpu::y); const auto& width = Cpu::width; const auto& title_left = (cpu_bottom ? Symbols::title_left_down : Symbols::title_left); const auto& title_right = (cpu_bottom ? Symbols::title_right_down : Symbols::title_right); for (const auto& [c_format, replacement] : clock_custom_format) { if (s_contains(clock_str, c_format)) { if (c_format == "/uptime") { string upstr = sec_to_dhms(system_uptime()); if (upstr.size() > 8) upstr.resize(upstr.size() - 3); clock_str = s_replace(clock_str, c_format, upstr); } else { clock_str = s_replace(clock_str, c_format, replacement); } } } clock_str = uresize(clock_str, std::max(10, width - 66 - (Term::width >= 100 and Config::getB("show_battery") and Cpu::has_battery ? 22 : 0))); out.clear(); if (clock_str.size() != clock_len) { if (not Global::resized and clock_len > 0) out = Mv::to(y, x+(width / 2)-(clock_len / 2)) + Fx::ub + Theme::c("cpu_box") + Symbols::h_line * clock_len; clock_len = clock_str.size(); } out += Mv::to(y, x+(width / 2)-(clock_len / 2)) + Fx::ub + Theme::c("cpu_box") + title_left + Theme::c("title") + Fx::b + clock_str + Theme::c("cpu_box") + Fx::ub + title_right; return true; } //* Meter class ------------------------------------------------------------------------------------------------------------> Meter::Meter() {} Meter::Meter(const int width, const string& color_gradient, bool invert) : width(width), color_gradient(color_gradient), invert(invert) {} string Meter::operator()(int value) { if (width < 1) return ""; value = clamp(value, 0, 100); if (not cache.at(value).empty()) return cache.at(value); auto& out = cache.at(value); for (const int& i : iota(1, width + 1)) { int y = round((double)i * 100.0 / width); if (value >= y) out += Theme::g(color_gradient).at(invert ? 100 - y : y) + Symbols::meter; else { out += Theme::c("meter_bg") + Symbols::meter * (width + 1 - i); break; } } out += Fx::reset; return out; } //* Graph class ------------------------------------------------------------------------------------------------------------> void Graph::_create(const deque& data, int data_offset) { bool mult = (data.size() - data_offset > 1); const auto& graph_symbol = Symbols::graph_symbols.at(symbol + '_' + (invert ? "down" : "up")); array result; const float mod = (height == 1) ? 0.3 : 0.1; long long data_value = 0; if (mult and data_offset > 0) { last = data.at(data_offset - 1); if (max_value > 0) last = clamp((last + offset) * 100 / max_value, 0ll, 100ll); } //? Horizontal iteration over values in for (const int& i : iota(data_offset, (int)data.size())) { // if (tty_mode and mult and i % 2 != 0) continue; if (not tty_mode and mult) current = not current; if (i < 0) { data_value = 0; last = 0; } else { data_value = data.at(i); if (max_value > 0) data_value = clamp((data_value + offset) * 100 / max_value, 0ll, 100ll); } //? Vertical iteration over height of graph for (const int& horizon : iota(0, height)) { const int cur_high = (height > 1) ? round(100.0 * (height - horizon) / height) : 100; const int cur_low = (height > 1) ? round(100.0 * (height - (horizon + 1)) / height) : 0; //? Calculate previous + current value to fit two values in 1 braille character for (int ai = 0; const auto& value : {last, data_value}) { const int clamp_min = (no_zero and horizon == height - 1 and not (mult and i == data_offset and ai == 0)) ? 1 : 0; if (value >= cur_high) result[ai++] = 4; else if (value <= cur_low) result[ai++] = clamp_min; else { result[ai++] = clamp((int)round((float)(value - cur_low) * 4 / (cur_high - cur_low) + mod), clamp_min, 4); } } //? Generate graph symbol from 5x5 2D vector if (height == 1) { if (result.at(0) + result.at(1) == 0) graphs.at(current).at(horizon) += Mv::r(1); else { if (not color_gradient.empty()) graphs.at(current).at(horizon) += Theme::g(color_gradient).at(clamp(max(last, data_value), 0ll, 100ll)); graphs.at(current).at(horizon) += graph_symbol.at((result.at(0) * 5 + result.at(1))); } } else graphs.at(current).at(horizon) += graph_symbol.at((result.at(0) * 5 + result.at(1))); } if (mult and i >= 0) last = data_value; } last = data_value; out.clear(); if (height == 1) { //if (not color_gradient.empty()) // out += (last < 1 ? Theme::c("inactive_fg") : Theme::g(color_gradient).at(clamp(last, 0ll, 100ll))); out += graphs.at(current).at(0); } else { for (const int& i : iota(1, height + 1)) { if (i > 1) out += Mv::d(1) + Mv::l(width); if (not color_gradient.empty()) out += (invert) ? Theme::g(color_gradient).at(i * 100 / height) : Theme::g(color_gradient).at(100 - ((i - 1) * 100 / height)); out += (invert) ? graphs.at(current).at(height - i) : graphs.at(current).at(i-1); } } if (not color_gradient.empty()) out += Fx::reset; } Graph::Graph() {} Graph::Graph(int width, int height, const string& color_gradient, const deque& data, const string& symbol, bool invert, bool no_zero, long long max_value, long long offset) : width(width), height(height), color_gradient(color_gradient), invert(invert), no_zero(no_zero), offset(offset) { if (Config::getB("tty_mode") or symbol == "tty") this->symbol = "tty"; else if (symbol != "default") this->symbol = symbol; else this->symbol = Config::getS("graph_symbol"); if (this->symbol == "tty") tty_mode = true; if (max_value == 0 and offset > 0) max_value = 100; this->max_value = max_value; const int value_width = (tty_mode ? data.size() : ceil((double)data.size() / 2)); int data_offset = (value_width > width) ? data.size() - width * (tty_mode ? 1 : 2) : 0; if (not tty_mode and (data.size() - data_offset) % 2 != 0) { data_offset--; } //? Populate the two switching graph vectors and fill empty space if data size < width for (const int& i : iota(0, height * 2)) { if (tty_mode and i % 2 != current) continue; graphs[(i % 2 != 0)].push_back((value_width < width) ? ((height == 1) ? Mv::r(1) : " "s) * (width - value_width) : ""); } if (data.size() == 0) return; this->_create(data, data_offset); } string& Graph::operator()(const deque& data, bool data_same) { if (data_same) return out; //? Make room for new characters on graph if (not tty_mode) current = not current; for (const int& i : iota(0, height)) { if (height == 1 and graphs.at(current).at(i).at(1) == '[') { if (graphs.at(current).at(i).at(3) == 'C') graphs.at(current).at(i).erase(0, 4); else graphs.at(current).at(i).erase(0, graphs.at(current).at(i).find_first_of('m') + 4); } else if (graphs.at(current).at(i).at(0) == ' ') graphs.at(current).at(i).erase(0, 1); else graphs.at(current).at(i).erase(0, 3); } this->_create(data, (int)data.size() - 1); return out; } string& Graph::operator()() { return out; } //*-------------------------------------------------------------------------------------------------------------------------> } namespace Cpu { int width_p = 100, height_p = 32; int min_width = 60, min_height = 8; int x = 1, y = 1, width = 20, height; int b_columns, b_column_size; int b_x, b_y, b_width, b_height; long unsigned int lavg_str_len = 0; int graph_up_height, graph_low_height; int graph_up_width, graph_low_width; int gpu_meter_width; bool shown = true, redraw = true, mid_line = false; string box; vector graphs_upper; vector graphs_lower; Draw::Meter cpu_meter; vector gpu_meters; vector core_graphs; vector temp_graphs; vector gpu_temp_graphs; vector gpu_mem_graphs; string draw(const cpu_info& cpu, const vector& gpus, bool force_redraw, bool data_same) { if (Runner::stopping) return ""; if (force_redraw) redraw = true; bool show_temps = (Config::getB("check_temp") and got_sensors); auto single_graph = Config::getB("cpu_single_graph"); bool hide_cores = show_temps and (cpu_temp_only or not Config::getB("show_coretemp")); const int extra_width = (hide_cores ? max(6, 6 * b_column_size) : 0); #ifdef GPU_SUPPORT const auto& show_gpu_info = Config::getS("show_gpu_info"); const bool gpu_always = show_gpu_info == "On"; bool show_gpu = (gpus.size() > 0 and (gpu_always or (show_gpu_info == "Auto" and Gpu::shown == 0))); #else (void)gpus; #endif auto graph_up_field = Config::getS("cpu_graph_upper"); if (graph_up_field == "Auto" or not v_contains(Cpu::available_fields, graph_up_field)) graph_up_field = "total"; auto graph_lo_field = Config::getS("cpu_graph_lower"); if (graph_lo_field == "Auto" or not v_contains(Cpu::available_fields, graph_lo_field)) { #ifdef GPU_SUPPORT graph_lo_field = show_gpu ? "gpu-totals" : graph_up_field; #else graph_lo_field = graph_up_field; #endif } auto tty_mode = Config::getB("tty_mode"); auto& graph_symbol = (tty_mode ? "tty" : Config::getS("graph_symbol_cpu")); auto& graph_bg = Symbols::graph_symbols.at((graph_symbol == "default" ? Config::getS("graph_symbol") + "_up" : graph_symbol + "_up")).at(6); auto& temp_scale = Config::getS("temp_scale"); auto cpu_bottom = Config::getB("cpu_bottom"); const string& title_left = Theme::c("cpu_box") + (cpu_bottom ? Symbols::title_left_down : Symbols::title_left); const string& title_right = Theme::c("cpu_box") + (cpu_bottom ? Symbols::title_right_down : Symbols::title_right); static int bat_pos = 0, bat_len = 0; if (safeVal(cpu.cpu_percent, "total"s).empty() or safeVal(cpu.core_percent, 0).empty() or (show_temps and safeVal(cpu.temp, 0).empty())) return ""; if (safeVal(cpu.cpu_percent, "total"s).empty() or safeVal(cpu.core_percent, 0).empty() or (show_temps and safeVal(cpu.temp, 0).empty())) return ""; string out; out.reserve(width * height); //* Redraw elements not needed to be updated every cycle if (redraw) { mid_line = (not single_graph and graph_up_field != graph_lo_field); graph_up_height = (single_graph ? height - 2 : ceil((double)(height - 2) / 2) - (mid_line and height % 2 != 0)); graph_low_height = height - 2 - graph_up_height - mid_line; const int button_y = cpu_bottom ? y + height - 1 : y; out += box; //? Buttons on title out += Mv::to(button_y, x + 10) + title_left + Theme::c("hi_fg") + Fx::b + 'm' + Theme::c("title") + "enu" + Fx::ub + title_right; Input::mouse_mappings["m"] = {button_y, x + 11, 1, 4}; out += Mv::to(button_y, x + 16) + title_left + Theme::c("hi_fg") + Fx::b + 'p' + Theme::c("title") + "reset " + (Config::current_preset < 0 ? "*" : to_string(Config::current_preset)) + Fx::ub + title_right; Input::mouse_mappings["p"] = {button_y, x + 17, 1, 8}; const string update = to_string(Config::getI("update_ms")) + "ms"; out += Mv::to(button_y, x + width - update.size() - 8) + title_left + Fx::b + Theme::c("hi_fg") + "- " + Theme::c("title") + update + Theme::c("hi_fg") + " +" + Fx::ub + title_right; Input::mouse_mappings["-"] = {button_y, x + width - (int)update.size() - 7, 1, 2}; Input::mouse_mappings["+"] = {button_y, x + width - 5, 1, 2}; //? Graphs & meters const int graph_default_width = x + width - b_width - 3; auto init_graphs = [&](vector& graphs, const int graph_height, int& graph_width, const string& graph_field, bool invert) { #ifdef GPU_SUPPORT if (graph_field.starts_with("gpu")) { if (graph_field.find("totals") != string::npos) { graphs.resize(gpus.size()); gpu_temp_graphs.resize(gpus.size()); gpu_mem_graphs.resize(gpus.size()); gpu_meters.resize(gpus.size()); graph_width = graph_default_width/(int)gpus.size() - (int)gpus.size() + 1 + graph_default_width%gpus.size(); for (unsigned long i = 0;;) { auto& gpu = gpus[i]; auto& graph = graphs[i]; //? GPU graphs/meters if (gpu.supported_functions.temp_info) gpu_temp_graphs[i] = Draw::Graph{ 5, 1, "temp", gpu.temp, graph_symbol, false, false, gpu.temp_max, -23 }; if (gpu.supported_functions.mem_used and gpu.supported_functions.mem_total) gpu_mem_graphs[i] = Draw::Graph{ 5, 1, "used", safeVal(gpu.gpu_percent, "gpu-vram-totals"s), graph_symbol }; if (gpu.supported_functions.gpu_utilization) { gpu_meter_width = b_width - 12 - (int)floating_humanizer(gpu.mem_total, true).size() - (show_temps ? 24 : 12) - (int)to_string(i).size() + (gpus.size() == 1)*2 - (gpus.size() > 9 and i <= 9); gpu_meters[i] = Draw::Meter{gpu_meter_width, "cpu" }; } bool utilization_support = gpu.supported_functions.gpu_utilization; if (++i < gpus.size()) { if (utilization_support) graph = Draw::Graph{graph_width, graph_height, "cpu", safeVal(gpu.gpu_percent, graph_field), graph_symbol, invert, true}; } else { if (utilization_support) graph = Draw::Graph{ graph_width + graph_default_width%graph_width - (int)gpus.size() + 1, graph_height, "cpu", safeVal(gpu.gpu_percent, graph_field), graph_symbol, invert, true }; break; } } } else { graphs.resize(1); graph_width = graph_default_width; graphs[0] = Draw::Graph{ graph_width, graph_height, "cpu", safeVal(Gpu::shared_gpu_percent, graph_field), graph_symbol, invert, true }; gpu_temp_graphs.resize(gpus.size()); gpu_mem_graphs.resize(gpus.size()); gpu_meters.resize(gpus.size()); for (unsigned long i = 0; i < gpus.size(); ++i) { if (gpus[i].supported_functions.temp_info) gpu_temp_graphs[i] = Draw::Graph{ 5, 1, "temp", gpus[i].temp, graph_symbol, false, false, gpus[i].temp_max, -23 }; if (gpus[i].supported_functions.mem_used and gpus[i].supported_functions.mem_total) gpu_mem_graphs[i] = Draw::Graph{ 5, 1, "used", safeVal(gpus[i].gpu_percent, "gpu-vram-totals"s), graph_symbol }; if (gpus[i].supported_functions.gpu_utilization) { gpu_meter_width = b_width - 12 - (int)floating_humanizer(gpus[i].mem_total, true).size() - (show_temps ? 24 : 12) - (int)to_string(i).size() + (gpus.size() == 1)*2 - (gpus.size() > 9 and i <= 9); gpu_meters[i] = Draw::Meter{gpu_meter_width, "cpu" }; } } } } else { #endif graphs.resize(1); graph_width = graph_default_width; graphs[0] = Draw::Graph{ graph_width, graph_height, "cpu", safeVal(cpu.cpu_percent, graph_field), graph_symbol, invert, true }; #ifdef GPU_SUPPORT if (std::cmp_less(Gpu::shown, gpus.size())) { gpu_temp_graphs.resize(gpus.size()); gpu_mem_graphs.resize(gpus.size()); gpu_meters.resize(gpus.size()); for (unsigned long i = 0; i < gpus.size(); ++i) { if (gpus[i].supported_functions.temp_info) gpu_temp_graphs[i] = Draw::Graph{ 5, 1, "temp", gpus[i].temp, graph_symbol, false, false, gpus[i].temp_max, -23 }; if (gpus[i].supported_functions.mem_used and gpus[i].supported_functions.mem_total) gpu_mem_graphs[i] = Draw::Graph{ 5, 1, "used", safeVal(gpus[i].gpu_percent, "gpu-vram-totals"s), graph_symbol }; if (gpus[i].supported_functions.gpu_utilization) { gpu_meter_width = b_width - 12 - (int)floating_humanizer(gpus[i].mem_total, true).size() - (show_temps ? 24 : 12) - (int)to_string(i).size() + (gpus.size() == 1)*2 - (gpus.size() > 9 and i <= 9); gpu_meters[i] = Draw::Meter{gpu_meter_width, "cpu" }; } } } } #endif }; init_graphs(graphs_upper, graph_up_height, graph_up_width, graph_up_field, false); if (not single_graph) init_graphs(graphs_lower, graph_low_height, graph_low_width, graph_lo_field, Config::getB("cpu_invert_lower")); cpu_meter = Draw::Meter{b_width - (show_temps ? 23 - (b_column_size <= 1 and b_columns == 1 ? 6 : 0) : 11), "cpu"}; if (mid_line) { out += Mv::to(y + graph_up_height + 1, x) + Fx::ub + Theme::c("cpu_box") + Symbols::div_left + Theme::c("div_line") + Symbols::h_line * (width - b_width - 2) + Symbols::div_right + Mv::to(y + graph_up_height + 1, x + ((width - b_width) / 2) - ((graph_up_field.size() + graph_lo_field.size()) / 2) - 4) + Theme::c("main_fg") + graph_up_field + Mv::r(1) + "▲▼" + Mv::r(1) + graph_lo_field; } if (b_column_size > 0 or extra_width > 0) { core_graphs.clear(); for (const auto& core_data : cpu.core_percent) { core_graphs.emplace_back(5 * b_column_size + extra_width, 1, "cpu", core_data, graph_symbol); } } if (show_temps) { temp_graphs.clear(); temp_graphs.emplace_back(5, 1, "temp", safeVal(cpu.temp, 0), graph_symbol, false, false, cpu.temp_max, -23); if (not hide_cores and b_column_size > 1) { for (const auto& i : iota((size_t)1, cpu.temp.size())) { temp_graphs.emplace_back(5, 1, "temp", safeVal(cpu.temp, i), graph_symbol, false, false, cpu.temp_max, -23); } } } } //? Draw battery if enabled and present if (Config::getB("show_battery") and has_battery) { static int old_percent{}; // defaults to = 0 static long old_seconds{}; // defaults to = 0 static string old_status; static Draw::Meter bat_meter {10, "cpu", true}; static const std::unordered_map bat_symbols = { {"charging", "▲"}, {"discharging", "▼"}, {"full", "■"}, {"unknown", "○"} }; const auto& [percent, seconds, status] = current_bat; if (redraw or percent != old_percent or seconds != old_seconds or status != old_status) { old_percent = percent; old_seconds = seconds; old_status = status; const string str_time = (seconds > 0 ? sec_to_dhms(seconds, true, true) : ""); const string str_percent = to_string(percent) + '%'; const auto& bat_symbol = bat_symbols.at((bat_symbols.contains(status) ? status : "unknown")); const int current_len = (Term::width >= 100 ? 11 : 0) + str_time.size() + str_percent.size() + to_string(Config::getI("update_ms")).size(); const int current_pos = Term::width - current_len - 17; if ((bat_pos != current_pos or bat_len != current_len) and bat_pos > 0 and not redraw) out += Mv::to(y, bat_pos) + Fx::ub + Theme::c("cpu_box") + Symbols::h_line * (bat_len + 4); bat_pos = current_pos; bat_len = current_len; out += Mv::to(y, bat_pos) + title_left + Theme::c("title") + Fx::b + "BAT" + bat_symbol + ' ' + str_percent + (Term::width >= 100 ? Fx::ub + ' ' + bat_meter(percent) + Fx::b : "") + (not str_time.empty() ? ' ' + Theme::c("title") + str_time : " ") + Fx::ub + title_right; } } else if (bat_pos > 0) { out += Mv::to(y, bat_pos) + Fx::ub + Theme::c("cpu_box") + Symbols::h_line * (bat_len + 4); bat_pos = bat_len = 0; } try { //? Cpu/Gpu graphs out += Fx::ub + Mv::to(y + 1, x + 1); auto draw_graphs = [&](vector& graphs, const int graph_height, const int graph_width, const string& graph_field) { #ifdef GPU_SUPPORT if (graph_field.starts_with("gpu")) if (graph_field.find("totals") != string::npos) for (unsigned long i = 0;;) { out += graphs[i](safeVal(gpus[i].gpu_percent, graph_field), (data_same or redraw)); if (gpus.size() > 1) { auto i_str = to_string(i); out += Mv::l(graph_width-1) + Mv::u(graph_height/2) + (graph_width > 5 ? "GPU " : "") + i_str + Mv::d(graph_height/2) + Mv::r(graph_width - 1 - (graph_width > 5)*4 - i_str.size()); } if (++i < graphs.size()) out += Theme::c("div_line") + (Symbols::v_line + Mv::l(1) + Mv::u(1))*graph_height + Mv::r(1) + Mv::d(1); else break; } else out += graphs[0](safeVal(Gpu::shared_gpu_percent, graph_field), (data_same or redraw)); else #else (void)graph_height; (void)graph_width; #endif out += graphs[0](safeVal(cpu.cpu_percent, graph_field), (data_same or redraw)); }; draw_graphs(graphs_upper, graph_up_height, graph_up_width, graph_up_field); if (not single_graph) { out += Mv::to(y + graph_up_height + 1 + mid_line, x + 1); draw_graphs(graphs_lower, graph_low_height, graph_low_width, graph_lo_field); } //? Uptime if (Config::getB("show_uptime")) { string upstr = sec_to_dhms(system_uptime()); if (upstr.size() > 8) { upstr.resize(upstr.size() - 3); upstr = trans(upstr); } out += Mv::to(y + (single_graph or not Config::getB("cpu_invert_lower") ? 1 : height - 2), x + 2) + Theme::c("graph_text") + "up" + Mv::r(1) + upstr; } //? Cpu clock and cpu meter if (Config::getB("show_cpu_freq") and not cpuHz.empty()) out += Mv::to(b_y, b_x + b_width - 10) + Fx::ub + Theme::c("div_line") + Symbols::h_line * (7 - cpuHz.size()) + Symbols::title_left + Fx::b + Theme::c("title") + cpuHz + Fx::ub + Theme::c("div_line") + Symbols::title_right; out += Mv::to(b_y + 1, b_x + 1) + Theme::c("main_fg") + Fx::b + "CPU " + cpu_meter(safeVal(cpu.cpu_percent, "total"s).back()) + Theme::g("cpu").at(clamp(safeVal(cpu.cpu_percent, "total"s).back(), 0ll, 100ll)) + rjust(to_string(safeVal(cpu.cpu_percent, "total"s).back()), 4) + Theme::c("main_fg") + '%'; if (show_temps) { const auto [temp, unit] = celsius_to(safeVal(cpu.temp, 0).back(), temp_scale); const auto& temp_color = Theme::g("temp").at(clamp(safeVal(cpu.temp, 0).back() * 100 / cpu.temp_max, 0ll, 100ll)); if ((b_column_size > 1 or b_columns > 1) and temp_graphs.size() >= 1ll) out += ' ' + Theme::c("inactive_fg") + graph_bg * 5 + Mv::l(5) + temp_color + temp_graphs.at(0)(safeVal(cpu.temp, 0), data_same or redraw); out += rjust(to_string(temp), 4) + Theme::c("main_fg") + unit; } out += Theme::c("div_line") + Symbols::v_line; } catch (const std::exception& e) { throw std::runtime_error("graphs, clock, meter : " + string{e.what()}); } //? Core text and graphs int cx = 0, cy = 1, cc = 0, core_width = (b_column_size == 0 ? 2 : 3); if (Shared::coreCount >= 100) core_width++; for (const auto& n : iota(0, Shared::coreCount)) { if (cmp_less(core_graphs.size(), n+1)) break; out += Mv::to(b_y + cy + 1, b_x + cx + 1) + Theme::c("main_fg") + (Shared::coreCount < 100 ? Fx::b + 'C' + Fx::ub : "") + ljust(to_string(n), core_width); if (b_column_size > 0 or extra_width > 0) out += Theme::c("inactive_fg") + graph_bg * (5 * b_column_size + extra_width) + Mv::l(5 * b_column_size + extra_width) + core_graphs.at(n)(safeVal(cpu.core_percent, n), data_same or redraw); out += Theme::g("cpu").at(clamp(safeVal(cpu.core_percent, n).back(), 0ll, 100ll)); out += rjust(to_string(safeVal(cpu.core_percent, n).back()), (b_column_size < 2 ? 3 : 4)) + Theme::c("main_fg") + '%'; if (show_temps and not hide_cores and std::cmp_greater_equal(temp_graphs.size(), n)) { const auto [temp, unit] = celsius_to(safeVal(cpu.temp, n+1).back(), temp_scale); const auto& temp_color = Theme::g("temp").at(clamp(safeVal(cpu.temp, n+1).back() * 100 / cpu.temp_max, 0ll, 100ll)); if (b_column_size > 1) out += ' ' + Theme::c("inactive_fg") + graph_bg * 5 + Mv::l(5) + temp_graphs.at(n+1)(safeVal(cpu.temp, n+1), data_same or redraw); out += temp_color + rjust(to_string(temp), 4) + Theme::c("main_fg") + unit; } out += Theme::c("div_line") + Symbols::v_line; if ((++cy > ceil((double)Shared::coreCount / b_columns) or cy == b_height - 2) and n != Shared::coreCount - 1) { if (++cc >= b_columns) break; cy = 1; cx = (b_width / b_columns) * cc; } } //? Load average if (cy < b_height - 1 and cc <= b_columns) { string lavg_pre; int sep = 1; if (b_column_size == 2 and show_temps) { lavg_pre = "Load AVG:"; sep = 3; } else if (b_column_size == 2 or (b_column_size == 1 and show_temps)) { lavg_pre = "LAV:"; } else if (b_column_size == 1 or (b_column_size == 0 and show_temps)) { lavg_pre = "L"; } string lavg; for (const auto& val : cpu.load_avg) { lavg += string(sep, ' ') + (lavg_pre.size() < 3 ? to_string((int)round(val)) : to_string(val).substr(0, 4)); } string lavg_str = lavg_pre + lavg; // if previous load average string is longer than current // then right pad the current string with spaces until // the current string is the same length as the previous // otherwise set the lavg_str_len. // // When a shorter string gets written, the remaining characters // from the previous string get left behind. This "erases" the // leftover characters from the previous string. if (lavg_str_len > lavg_str.length()) { lavg_str += string(lavg_str_len - lavg_str.length(), ' '); } else { lavg_str_len = lavg_str.length(); } #ifdef GPU_SUPPORT cy = b_height - 2 - (show_gpu ? (gpus.size() - (gpu_always ? 0 : Gpu::shown)) : 0); #else cy = b_height - 2; #endif out += Mv::to(b_y + cy, b_x + cx + 1) + Theme::c("main_fg") + lavg_str; } #ifdef GPU_SUPPORT //? Gpu brief info if (show_gpu) { for (unsigned long i = 0; i < gpus.size(); ++i) { if (gpu_always or not v_contains(Gpu::shown_panels, i)) { out += Mv::to(b_y + ++cy, b_x + 1) + Theme::c("main_fg") + Fx::b + "GPU"; if (show_temps and gpus[i].supported_functions.temp_info and b_width < 34) { const auto [temp, unit] = celsius_to(gpus[i].temp.back(), temp_scale); if (temp < 100) out += " "; } if (gpus.size() > 1) out += rjust(to_string(i), 1 + (gpus.size() > 9)); if (gpus[i].supported_functions.gpu_utilization) { string meter = gpu_meters[i](safeVal(gpus[i].gpu_percent, "gpu-totals"s).back()); out += (meter.size() > 1 ? " " : "") + meter + Theme::g("cpu").at(clamp(safeVal(gpus[i].gpu_percent, "gpu-totals"s).back(), 0ll, 100ll)) + rjust(to_string(safeVal(gpus[i].gpu_percent, "gpu-totals"s).back()), 4) + Theme::c("main_fg") + '%'; } else out += Mv::r(gpu_meter_width); if (gpus[i].supported_functions.mem_used) { out += ' ' + Theme::c("inactive_fg") + graph_bg * 6 + Mv::l(6) + Theme::g("used").at(safeVal(gpus[i].gpu_percent, "gpu-vram-totals"s).back()) + gpu_mem_graphs[i](safeVal(gpus[i].gpu_percent, "gpu-vram-totals"s), data_same or redraw) + Theme::c("main_fg") + rjust(floating_humanizer(gpus[i].mem_used, true), 5); if (gpus[i].supported_functions.mem_total) out += Theme::c("inactive_fg") + '/' + Theme::c("main_fg") + floating_humanizer(gpus[i].mem_total, true); else out += Mv::r(5); } else out += Mv::r(17); if (show_temps and gpus[i].supported_functions.temp_info) { const auto [temp, unit] = celsius_to(gpus[i].temp.back(), temp_scale); if (b_width > 38) out += ' ' + Theme::c("inactive_fg") + graph_bg * 6 + Mv::l(6) + Theme::g("temp").at(clamp(gpus[i].temp.back() * 100 / gpus[i].temp_max, 0ll, 100ll)) + gpu_temp_graphs[i](gpus[i].temp, data_same or redraw); else out += Theme::g("temp").at(clamp(gpus[i].temp.back() * 100 / gpus[i].temp_max, 0ll, 100ll)); out += rjust(to_string(temp), 3 + (b_width >= 34 or temp > 99)) + Theme::c("main_fg") + unit; } } if (cy < b_height - 1) break; } } #endif redraw = false; return out + Fx::reset; } } #ifdef GPU_SUPPORT namespace Gpu { int width_p = 100, height_p = 32; int min_width = 41, min_height = 11; int width = 41, height; vector x_vec = {}, y_vec = {}, b_height_vec = {}; int b_width; vector b_x_vec = {}, b_y_vec = {}; vector redraw = {}; int shown = 0; vector shown_panels = {}; int graph_up_height; vector graph_upper_vec = {}, graph_lower_vec = {}; vector temp_graph_vec = {}; vector mem_used_graph_vec = {}, mem_util_graph_vec = {}; vector gpu_meter_vec = {}; vector pwr_meter_vec = {}; vector box = {}; string draw(const gpu_info& gpu, unsigned long index, bool force_redraw, bool data_same) { if (Runner::stopping) return ""; auto& b_x = b_x_vec[index]; auto& b_y = b_y_vec[index]; auto& x = x_vec[index]; auto& y = y_vec[index]; auto& graph_upper = graph_upper_vec[index]; auto& graph_lower = graph_lower_vec[index]; auto& temp_graph = temp_graph_vec[index]; auto& mem_used_graph = mem_used_graph_vec[index]; auto& mem_util_graph = mem_util_graph_vec[index]; auto& gpu_meter = gpu_meter_vec[index]; auto& pwr_meter = pwr_meter_vec[index]; if (force_redraw) redraw[index] = true; bool show_temps = gpu.supported_functions.temp_info and (Config::getB("check_temp")); auto tty_mode = Config::getB("tty_mode"); auto& temp_scale = Config::getS("temp_scale"); auto& graph_symbol = (tty_mode ? "tty" : Config::getS("graph_symbol_gpu")); auto& graph_bg = Symbols::graph_symbols.at((graph_symbol == "default" ? Config::getS("graph_symbol") + "_up" : graph_symbol + "_up")).at(6); auto single_graph = !Config::getB("gpu_mirror_graph"); string out; out.reserve(width * height); //* Redraw elements not needed to be updated every cycle if (redraw[index]) { graph_up_height = single_graph ? height - 2 : ceil((double)(height - 2) / 2); const int graph_low_height = height - 2 - graph_up_height; out += box[index]; if (gpu.supported_functions.gpu_utilization) { graph_upper = Draw::Graph{x + width - b_width - 3, graph_up_height, "cpu", safeVal(gpu.gpu_percent, "gpu-totals"s), graph_symbol, false, true}; // TODO cpu -> gpu if (not single_graph) { graph_lower = Draw::Graph{ x + width - b_width - 3, graph_low_height, "cpu", safeVal(gpu.gpu_percent, "gpu-totals"s), graph_symbol, Config::getB("cpu_invert_lower"), true }; } gpu_meter = Draw::Meter{b_width - (show_temps ? 24 : 11), "cpu"}; } if (gpu.supported_functions.temp_info) temp_graph = Draw::Graph{6, 1, "temp", gpu.temp, graph_symbol, false, false, gpu.temp_max, -23}; if (gpu.supported_functions.pwr_usage) pwr_meter = Draw::Meter{b_width - 24, "cached"}; if (gpu.supported_functions.mem_utilization) mem_util_graph = Draw::Graph{b_width/2 - 1, 2, "free", gpu.mem_utilization_percent, graph_symbol, 0, 0, 100, 4}; // offset so the graph isn't empty at 0-5% utilization if (gpu.supported_functions.mem_used and gpu.supported_functions.mem_total) mem_used_graph = Draw::Graph{b_width/2 - 2, 2 + 2*(gpu.supported_functions.mem_utilization), "used", safeVal(gpu.gpu_percent, "gpu-vram-totals"s), graph_symbol}; } //* General GPU info //? Gpu graph, meter & clock speed if (gpu.supported_functions.gpu_utilization) { out += Fx::ub + Mv::to(y + 1, x + 1) + graph_upper(safeVal(gpu.gpu_percent, "gpu-totals"s), (data_same or redraw[index])); if (not single_graph) out += Mv::to(y + graph_up_height + 1, x + 1) + graph_lower(safeVal(gpu.gpu_percent, "gpu-totals"s), (data_same or redraw[index])); out += Mv::to(b_y + 1, b_x + 1) + Theme::c("main_fg") + Fx::b + "GPU " + gpu_meter(safeVal(gpu.gpu_percent, "gpu-totals"s).back()) + Theme::g("cpu").at(clamp(safeVal(gpu.gpu_percent, "gpu-totals"s).back(), 0ll, 100ll)) + rjust(to_string(safeVal(gpu.gpu_percent, "gpu-totals"s).back()), 4) + Theme::c("main_fg") + '%'; //? Temperature graph, I assume the device supports utilization if it supports temperature if (show_temps) { const auto [temp, unit] = celsius_to(gpu.temp.back(), temp_scale); out += ' ' + Theme::c("inactive_fg") + graph_bg * 6 + Mv::l(6) + Theme::g("temp").at(clamp(gpu.temp.back() * 100 / gpu.temp_max, 0ll, 100ll)) + temp_graph(gpu.temp, data_same or redraw[index]); out += rjust(to_string(temp), 4) + Theme::c("main_fg") + unit; } out += Theme::c("div_line") + Symbols::v_line; } if (gpu.supported_functions.gpu_clock) { string clock_speed_string = to_string(gpu.gpu_clock_speed); out += Mv::to(b_y, b_x + b_width - 12) + Theme::c("div_line") + Symbols::h_line*(5-clock_speed_string.size()) + Symbols::title_left + Fx::b + Theme::c("title") + clock_speed_string + " Mhz" + Fx::ub + Theme::c("div_line") + Symbols::title_right; } //? Power usage meter, power state if (gpu.supported_functions.pwr_usage) { out += Mv::to(b_y + 2, b_x + 1) + Theme::c("main_fg") + Fx::b + "PWR " + pwr_meter(safeVal(gpu.gpu_percent, "gpu-pwr-totals"s).back()) + Theme::g("cached").at(clamp(safeVal(gpu.gpu_percent, "gpu-pwr-totals"s).back(), 0ll, 100ll)) + rjust(to_string(gpu.pwr_usage/1000), 4) + Theme::c("main_fg") + 'W'; if (gpu.supported_functions.pwr_state and gpu.pwr_state != 32) // NVML_PSTATE_UNKNOWN; unsupported or non-nvidia card out += std::string(" P-state: ") + (gpu.pwr_state > 9 ? "" : " ") + 'P' + Theme::g("cached").at(clamp(gpu.pwr_state, 0ll, 100ll)) + to_string(gpu.pwr_state); } if (gpu.supported_functions.mem_total or gpu.supported_functions.mem_used) { out += Mv::to(b_y + 3, b_x); if (gpu.supported_functions.mem_total and gpu.supported_functions.mem_used) { string used_memory_string = floating_humanizer(gpu.mem_used); auto offset = (gpu.supported_functions.mem_total or gpu.supported_functions.mem_used) * (1 + 2*(gpu.supported_functions.mem_total and gpu.supported_functions.mem_used) + 2*gpu.supported_functions.mem_utilization); //? Used graph, memory section header, total vram out += Theme::c("div_line") + Symbols::div_left + Symbols::h_line + Symbols::title_left + Fx::b + Theme::c("title") + "vram" + Theme::c("div_line") + Fx::ub + Symbols::title_right + Symbols::h_line*(b_width/2-8) + Symbols::div_up + Mv::d(offset)+Mv::l(1) + Symbols::div_down + Mv::l(1)+Mv::u(1) + (Symbols::v_line + Mv::l(1)+Mv::u(1))*(offset-1) + Symbols::div_up + Symbols::h_line + Theme::c("title") + "Used:" + Theme::c("div_line") + Symbols::h_line*(b_width/2+b_width%2-9-used_memory_string.size()) + Theme::c("title") + used_memory_string + Theme::c("div_line") + Symbols::h_line + Symbols::div_right + Mv::d(1) + Mv::l(b_width/2-1) + mem_used_graph(safeVal(gpu.gpu_percent, "gpu-vram-totals"s), (data_same or redraw[index])) + Mv::l(b_width-3) + Mv::u(1+2*gpu.supported_functions.mem_utilization) + Theme::c("main_fg") + Fx::b + "Total:" + rjust(floating_humanizer(gpu.mem_total), b_width/2-9) + Fx::ub + Mv::r(3) + rjust(to_string(safeVal(gpu.gpu_percent, "gpu-vram-totals"s).back()), 3) + '%'; //? Memory utilization if (gpu.supported_functions.mem_utilization) out += Mv::l(b_width/2+6) + Mv::d(1) + Theme::c("div_line") + Symbols::div_left+Symbols::h_line + Theme::c("title") + "Utilization:" + Theme::c("div_line") + Symbols::h_line*(b_width/2-14) + Symbols::div_right + Mv::l(b_width/2) + Mv::d(1) + mem_util_graph(gpu.mem_utilization_percent, (data_same or redraw[index])) + Mv::l(b_width/2-1) + Mv::u(1) + rjust(to_string(gpu.mem_utilization_percent.back()), 3) + '%'; //? Memory clock speed if (gpu.supported_functions.mem_clock) { string clock_speed_string = to_string(gpu.mem_clock_speed); out += Mv::to(b_y + 3, b_x + b_width/2 - 11) + Theme::c("div_line") + Symbols::h_line*(5-clock_speed_string.size()) + Symbols::title_left + Fx::b + Theme::c("title") + clock_speed_string + " Mhz" + Fx::ub + Theme::c("div_line") + Symbols::title_right; } } else { out += Theme::c("main_fg") + Mv::r(1); if (gpu.supported_functions.mem_total) out += "VRAM total:" + rjust(floating_humanizer(gpu.mem_total), b_width/(1 + gpu.supported_functions.mem_clock)-14); else out += "VRAM usage:" + rjust(floating_humanizer(gpu.mem_used), b_width/(1 + gpu.supported_functions.mem_clock)-14); if (gpu.supported_functions.mem_clock) out += " VRAM clock:" + rjust(to_string(gpu.mem_clock_speed) + " Mhz", b_width/2-13); } } //? Processes section header //out += Mv::to(b_y+8, b_x) + Theme::c("div_line") + Symbols::div_left + Symbols::h_line + Symbols::title_left + Theme::c("main_fg") + Fx::b + "gpu-proc" + Fx::ub + Theme::c("div_line") // + Symbols::title_right + Symbols::h_line*(b_width/2-12) + Symbols::div_down + Symbols::h_line*(b_width/2-2) + Symbols::div_right; //? PCIe link throughput if (gpu.supported_functions.pcie_txrx and Config::getB("nvml_measure_pcie_speeds")) { string tx_string = floating_humanizer(gpu.pcie_tx, 0, 1, 0, 1); string rx_string = floating_humanizer(gpu.pcie_rx, 0, 1, 0, 1); out += Mv::to(b_y + b_height_vec[index] - 1, b_x+2) + Theme::c("div_line") + Symbols::title_left_down + Theme::c("title") + Fx::b + "TX:" + Fx::ub + Theme::c("div_line") + Symbols::title_right_down + Symbols::h_line*(b_width/2-9-tx_string.size()) + Symbols::title_left_down + Theme::c("title") + Fx::b + tx_string + Fx::ub + Theme::c("div_line") + Symbols::title_right_down + (gpu.supported_functions.mem_total and gpu.supported_functions.mem_used ? Symbols::div_down : Symbols::h_line) + Symbols::title_left_down + Theme::c("title") + Fx::b + "RX:" + Fx::ub + Theme::c("div_line") + Symbols::title_right_down + Symbols::h_line*(b_width/2+b_width%2-9-rx_string.size()) + Symbols::title_left_down + Theme::c("title") + Fx::b + rx_string + Fx::ub + Theme::c("div_line") + Symbols::title_right_down + Symbols::round_right_down; } redraw[index] = false; return out + Fx::reset; } } #endif namespace Mem { int width_p = 45, height_p = 36; int min_width = 36, min_height = 10; int x = 1, y, width = 20, height; int mem_width, disks_width, divider, item_height, mem_size, mem_meter, graph_height, disk_meter; int disks_io_h = 0; int disks_io_half = 0; bool shown = true, redraw = true; string box; std::unordered_map mem_meters; std::unordered_map mem_graphs; std::unordered_map disk_meters_used; std::unordered_map disk_meters_free; std::unordered_map io_graphs; string draw(const mem_info& mem, bool force_redraw, bool data_same) { if (Runner::stopping) return ""; if (force_redraw) redraw = true; auto show_swap = Config::getB("show_swap"); auto swap_disk = Config::getB("swap_disk"); auto show_disks = Config::getB("show_disks"); auto show_io_stat = Config::getB("show_io_stat"); auto io_mode = Config::getB("io_mode"); auto io_graph_combined = Config::getB("io_graph_combined"); auto use_graphs = Config::getB("mem_graphs"); auto tty_mode = Config::getB("tty_mode"); auto& graph_symbol = (tty_mode ? "tty" : Config::getS("graph_symbol_mem")); auto& graph_bg = Symbols::graph_symbols.at((graph_symbol == "default" ? Config::getS("graph_symbol") + "_up" : graph_symbol + "_up")).at(6); auto totalMem = Mem::get_totalMem(); string out; out.reserve(height * width); //* Redraw elements not needed to be updated every cycle if (redraw) { out += box; mem_meters.clear(); mem_graphs.clear(); disk_meters_free.clear(); disk_meters_used.clear(); io_graphs.clear(); //? Mem graphs and meters for (const auto& name : mem_names) { if (use_graphs) mem_graphs[name] = Draw::Graph{mem_meter, graph_height, name, safeVal(mem.percent, name), graph_symbol}; else mem_meters[name] = Draw::Meter{mem_meter, name}; } if (show_swap and has_swap) { for (const auto& name : swap_names) { if (use_graphs) mem_graphs[name] = Draw::Graph{mem_meter, graph_height, name.substr(5), safeVal(mem.percent, name), graph_symbol}; else mem_meters[name] = Draw::Meter{mem_meter, name.substr(5)}; } } //? Disk meters and io graphs if (show_disks) { if (show_io_stat or io_mode) { std::unordered_map custom_speeds; int half_height = 0; if (io_mode) { disks_io_h = max((int)floor((double)(height - 2 - (disk_ios * 2)) / max(1, disk_ios)), (io_graph_combined ? 1 : 2)); half_height = ceil((double)disks_io_h / 2); if (not Config::getS("io_graph_speeds").empty()) { auto split = ssplit(Config::getS("io_graph_speeds")); for (const auto& entry : split) { auto vals = ssplit(entry); if (vals.size() == 2 and mem.disks.contains(vals.at(0)) and isint(vals.at(1))) try { custom_speeds[vals.at(0)] = std::stoi(vals.at(1)); } catch (const std::out_of_range&) { continue; } } } } for (const auto& [name, disk] : mem.disks) { if (disk.io_read.empty()) continue; io_graphs[name + "_activity"] = Draw::Graph{disks_width - 6, 1, "available", disk.io_activity, graph_symbol}; if (io_mode) { //? Create one combined graph for IO read/write if enabled long long speed = (custom_speeds.contains(name) ? custom_speeds.at(name) : 100) << 20; if (io_graph_combined) { deque combined(disk.io_read.size(), 0); rng::transform(disk.io_read, disk.io_write, combined.begin(), std::plus()); io_graphs[name] = Draw::Graph{ disks_width - (io_mode ? 0 : 6), disks_io_h, "available", combined, graph_symbol, false, true, speed}; } else { io_graphs[name + "_read"] = Draw::Graph{ disks_width, half_height, "free", disk.io_read, graph_symbol, false, true, speed}; io_graphs[name + "_write"] = Draw::Graph{ disks_width, disks_io_h - half_height, "used", disk.io_write, graph_symbol, true, true, speed}; } } } } for (int i = 0; const auto& [name, ignored] : mem.disks) { if (i * 2 > height - 2) break; disk_meters_used[name] = Draw::Meter{disk_meter, "used"}; if (cmp_less_equal(mem.disks.size() * 3, height - 1)) disk_meters_free[name] = Draw::Meter{disk_meter, "free"}; } out += Mv::to(y, x + width - 6) + Fx::ub + Theme::c("mem_box") + Symbols::title_left + (io_mode ? Fx::b : "") + Theme::c("hi_fg") + 'i' + Theme::c("title") + 'o' + Fx::ub + Theme::c("mem_box") + Symbols::title_right; Input::mouse_mappings["i"] = {y, x + width - 5, 1, 2}; } } //? Mem and swap int cx = 1, cy = 1; string divider = (graph_height > 0 ? Mv::l(2) + Theme::c("mem_box") + Symbols::div_left + Theme::c("div_line") + Symbols::h_line * (mem_width - 1) + (show_disks ? "" : Theme::c("mem_box")) + Symbols::div_right + Mv::l(mem_width - 1) + Theme::c("main_fg") : ""); string up = (graph_height >= 2 ? Mv::l(mem_width - 2) + Mv::u(graph_height - 1) : ""); bool big_mem = mem_width > 21; out += Mv::to(y + 1, x + 2) + Theme::c("title") + Fx::b + "Total:" + rjust(floating_humanizer(totalMem), mem_width - 9) + Fx::ub + Theme::c("main_fg"); vector comb_names (mem_names.begin(), mem_names.end()); if (show_swap and has_swap and not swap_disk) comb_names.insert(comb_names.end(), swap_names.begin(), swap_names.end()); for (auto name : comb_names) { if (cy > height - 4) break; string title; if (name == "swap_used") { if (cy > height - 5) break; if (height - cy > 6) { if (graph_height > 0) out += Mv::to(y+1+cy, x+1+cx) + divider; cy += 1; } out += Mv::to(y+1+cy, x+1+cx) + Theme::c("title") + Fx::b + "Swap:" + rjust(floating_humanizer(safeVal(mem.stats, "swap_total"s)), mem_width - 8) + Theme::c("main_fg") + Fx::ub; cy += 1; title = "Used"; } else if (name == "swap_free") title = "Free"; if (title.empty()) title = capitalize(name); const string humanized = floating_humanizer(safeVal(mem.stats, name)); const int offset = max(0, divider.empty() ? 9 - (int)humanized.size() : 0); const string graphics = ( use_graphs and mem_graphs.contains(name) ? mem_graphs.at(name)(safeVal(mem.percent, name), redraw or data_same) : mem_meters.contains(name) ? mem_meters.at(name)(safeVal(mem.percent, name).back()) : ""); if (mem_size > 2) { out += Mv::to(y+1+cy, x+1+cx) + divider + title.substr(0, big_mem ? 10 : 5) + ":" + Mv::to(y+1+cy, x+cx + mem_width - 2 - humanized.size()) + (divider.empty() ? Mv::l(offset) + string(" ") * offset + humanized : trans(humanized)) + Mv::to(y+2+cy, x+cx + (graph_height >= 2 ? 0 : 1)) + graphics + up + rjust(to_string(safeVal(mem.percent, name).back()) + "%", 4); cy += (graph_height == 0 ? 2 : graph_height + 1); } else { out += Mv::to(y+1+cy, x+1+cx) + ljust(title, (mem_size > 1 ? 5 : 1)) + (graph_height >= 2 ? "" : " ") + graphics + Theme::c("title") + rjust(humanized, (mem_size > 1 ? 9 : 7)); cy += (graph_height == 0 ? 1 : graph_height); } } if (graph_height > 0 and cy < height - 2) out += Mv::to(y+1+cy, x+1+cx) + divider; //? Disks if (show_disks) { const auto& disks = mem.disks; cx = mem_width; cy = 0; bool big_disk = disks_width >= 25; divider = Mv::l(1) + Theme::c("div_line") + Symbols::div_left + Symbols::h_line * disks_width + Theme::c("mem_box") + Fx::ub + Symbols::div_right + Mv::l(disks_width); const string hu_div = Theme::c("div_line") + Symbols::h_line + Theme::c("main_fg"); if (io_mode) { for (const auto& mount : mem.disks_order) { if (not disks.contains(mount)) continue; if (cy > height - 3) break; const auto& disk = safeVal(disks, mount); if (disk.io_read.empty()) continue; const string total = floating_humanizer(disk.total, not big_disk); out += Mv::to(y+1+cy, x+1+cx) + divider + Theme::c("title") + Fx::b + uresize(disk.name, disks_width - 8) + Mv::to(y+1+cy, x+cx + disks_width - total.size()) + trans(total) + Fx::ub; if (big_disk) { const string used_percent = to_string(disk.used_percent); out += Mv::to(y+1+cy, x+1+cx + round((double)disks_width / 2) - round((double)used_percent.size() / 2) - 1) + hu_div + used_percent + '%' + hu_div; } if (io_graphs.contains(mount + "_activity")) { out += Mv::to(y+2+cy++, x+1+cx) + (big_disk ? " IO% " : " IO " + Mv::l(2)) + Theme::c("inactive_fg") + graph_bg * (disks_width - 6) + Mv::l(disks_width - 6) + io_graphs.at(mount + "_activity")(disk.io_activity, redraw or data_same) + Theme::c("main_fg"); } if (++cy > height - 3) break; if (not io_graphs.contains(mount)) continue; if (io_graph_combined) { auto comb_val = disk.io_read.back() + disk.io_write.back(); const string humanized = (disk.io_write.back() > 0 ? "▼"s : ""s) + (disk.io_read.back() > 0 ? "▲"s : ""s) + (comb_val > 0 ? Mv::r(1) + floating_humanizer(comb_val, true) : "RW"); if (disks_io_h == 1) out += Mv::to(y+1+cy, x+1+cx) + string(5, ' '); out += Mv::to(y+1+cy, x+1+cx) + io_graphs.at(mount)({comb_val}, redraw or data_same) + Mv::to(y+1+cy, x+1+cx) + Theme::c("main_fg") + humanized; cy += disks_io_h; } else { const string human_read = (disk.io_read.back() > 0 ? "▲" + floating_humanizer(disk.io_read.back(), true) : "R"); const string human_write = (disk.io_write.back() > 0 ? "▼" + floating_humanizer(disk.io_write.back(), true) : "W"); if (disks_io_h <= 3) out += Mv::to(y+1+cy, x+1+cx) + string(5, ' ') + Mv::to(y+cy + disks_io_h, x+1+cx) + string(5, ' '); out += Mv::to(y+1+cy, x+1+cx) + io_graphs.at(mount + "_read")(disk.io_read, redraw or data_same) + Mv::l(disks_width) + Mv::d(1) + io_graphs.at(mount + "_write")(disk.io_write, redraw or data_same) + Mv::to(y+1+cy, x+1+cx) + human_read + Mv::to(y+cy + disks_io_h, x+1+cx) + human_write; cy += disks_io_h; } } } else { for (const auto& mount : mem.disks_order) { if (not disks.contains(mount)) continue; if (cy > height - 3) break; const auto& disk = safeVal(disks, mount); if (disk.name.empty() or not disk_meters_used.contains(mount)) continue; auto comb_val = (not disk.io_read.empty() ? disk.io_read.back() + disk.io_write.back() : 0ll); const string human_io = (comb_val > 0 ? (disk.io_write.back() > 0 and big_disk ? "▼"s : ""s) + (disk.io_read.back() > 0 and big_disk ? "▲"s : ""s) + floating_humanizer(comb_val, true) : ""); const string human_total = floating_humanizer(disk.total, not big_disk); const string human_used = floating_humanizer(disk.used, not big_disk); const string human_free = floating_humanizer(disk.free, not big_disk); out += Mv::to(y+1+cy, x+1+cx) + divider + Theme::c("title") + Fx::b + uresize(disk.name, disks_width - 8) + Mv::to(y+1+cy, x+cx + disks_width - human_total.size()) + trans(human_total) + Fx::ub + Theme::c("main_fg"); if (big_disk and not human_io.empty()) out += Mv::to(y+1+cy, x+1+cx + round((double)disks_width / 2) - round((double)human_io.size() / 2) - 1) + hu_div + human_io + hu_div; if (++cy > height - 3) break; if (show_io_stat and io_graphs.contains(mount + "_activity")) { out += Mv::to(y+1+cy, x+1+cx) + (big_disk ? " IO% " : " IO " + Mv::l(2)) + Theme::c("inactive_fg") + graph_bg * (disks_width - 6) + Theme::g("available").at(clamp(disk.io_activity.back(), 50ll, 100ll)) + Mv::l(disks_width - 6) + io_graphs.at(mount + "_activity")(disk.io_activity, redraw or data_same) + Theme::c("main_fg"); if (not big_disk) out += Mv::to(y+1+cy, x+cx+1) + Theme::c("main_fg") + human_io; if (++cy > height - 3) break; } out += Mv::to(y+1+cy, x+1+cx) + (big_disk ? " Used:" + rjust(to_string(disk.used_percent) + '%', 4) : "U") + ' ' + disk_meters_used.at(mount)(disk.used_percent) + rjust(human_used, (big_disk ? 9 : 5)); if (++cy > height - 3) break; if (disk_meters_free.contains(mount) and cmp_less_equal(disks.size() * 3 + (show_io_stat ? disk_ios : 0), height - 1)) { out += Mv::to(y+1+cy, x+1+cx) + (big_disk ? " Free:" + rjust(to_string(disk.free_percent) + '%', 4) : "F") + ' ' + disk_meters_free.at(mount)(disk.free_percent) + rjust(human_free, (big_disk ? 9 : 5)); cy++; if (cmp_less_equal(disks.size() * 4 + (show_io_stat ? disk_ios : 0), height - 1)) cy++; } } } if (cy < height - 2) out += Mv::to(y+1+cy, x+1+cx) + divider; } redraw = false; return out + Fx::reset; } } namespace Net { int width_p = 45, height_p = 32; int min_width = 36, min_height = 6; int x = 1, y, width = 20, height; int b_x, b_y, b_width, b_height, d_graph_height, u_graph_height; bool shown = true, redraw = true; string old_ip; std::unordered_map graphs; string box; string draw(const net_info& net, bool force_redraw, bool data_same) { if (Runner::stopping) return ""; if (force_redraw) redraw = true; auto net_sync = Config::getB("net_sync"); auto net_auto = Config::getB("net_auto"); auto tty_mode = Config::getB("tty_mode"); auto& graph_symbol = (tty_mode ? "tty" : Config::getS("graph_symbol_net")); string ip_addr = (net.ipv4.empty() ? net.ipv6 : net.ipv4); if (old_ip != ip_addr) { old_ip = ip_addr; redraw = true; } string out; out.reserve(width * height); const string title_left = Theme::c("net_box") + Fx::ub + Symbols::title_left; const string title_right = Theme::c("net_box") + Fx::ub + Symbols::title_right; const int i_size = min((int)selected_iface.size(), 10); const long long down_max = (net_auto ? safeVal(graph_max, "download"s) : ((long long)(Config::getI("net_download")) << 20) / 8); const long long up_max = (net_auto ? safeVal(graph_max, "upload"s) : ((long long)(Config::getI("net_upload")) << 20) / 8); //* Redraw elements not needed to be updated every cycle if (redraw) { out = box; //? Graphs graphs.clear(); if (safeVal(net.bandwidth, "download"s).empty() or safeVal(net.bandwidth, "upload"s).empty()) return out + Fx::reset; graphs["download"] = Draw::Graph{ width - b_width - 2, u_graph_height, "download", net.bandwidth.at("download"), graph_symbol, false, true, down_max}; graphs["upload"] = Draw::Graph{ width - b_width - 2, d_graph_height, "upload", net.bandwidth.at("upload"), graph_symbol, true, true, up_max}; //? Interface selector and buttons out += Mv::to(y, x+width - i_size - 9) + title_left + Fx::b + Theme::c("hi_fg") + "" + title_right + Mv::to(y, x+width - i_size - 15) + title_left + Theme::c("hi_fg") + (safeVal(net.stat, "download"s).offset + safeVal(net.stat, "upload"s).offset > 0 ? Fx::b : "") + 'z' + Theme::c("title") + "ero" + title_right; Input::mouse_mappings["b"] = {y, x+width - i_size - 8, 1, 3}; Input::mouse_mappings["n"] = {y, x+width - 6, 1, 3}; Input::mouse_mappings["z"] = {y, x+width - i_size - 14, 1, 4}; if (width - i_size - 20 > 6) { out += Mv::to(y, x+width - i_size - 21) + title_left + Theme::c("hi_fg") + (net_auto ? Fx::b : "") + 'a' + Theme::c("title") + "uto" + title_right; Input::mouse_mappings["a"] = {y, x+width - i_size - 20, 1, 4}; } if (width - i_size - 20 > 13) { out += Mv::to(y, x+width - i_size - 27) + title_left + Theme::c("title") + (net_sync ? Fx::b : "") + 's' + Theme::c("hi_fg") + 'y' + Theme::c("title") + "nc" + title_right; Input::mouse_mappings["y"] = {y, x+width - i_size - 26, 1, 4}; } } //? IP or device address if (not ip_addr.empty() and cmp_greater(width - i_size - 36, ip_addr.size())) { out += Mv::to(y, x + 8) + title_left + Theme::c("title") + Fx::b + ip_addr + title_right; } //? Graphs and stats int cy = 0; for (const string dir : {"download", "upload"}) { out += Mv::to(y+1 + (dir == "upload" ? u_graph_height : 0), x + 1) + graphs.at(dir)(safeVal(net.bandwidth, dir), redraw or data_same or not net.connected) + Mv::to(y+1 + (dir == "upload" ? height - 3: 0), x + 1) + Fx::ub + Theme::c("graph_text") + floating_humanizer((dir == "upload" ? up_max : down_max), true); const string speed = floating_humanizer(safeVal(net.stat, dir).speed, false, 0, false, true); const string speed_bits = (b_width >= 20 ? floating_humanizer(safeVal(net.stat, dir).speed, false, 0, true, true) : ""); const string top = floating_humanizer(safeVal(net.stat, dir).top, false, 0, true, true); const string total = floating_humanizer(safeVal(net.stat, dir).total); const string symbol = (dir == "upload" ? "▲" : "▼"); out += Mv::to(b_y+1+cy, b_x+1) + Fx::ub + Theme::c("main_fg") + symbol + ' ' + ljust(speed, 10) + (b_width >= 20 ? rjust('(' + speed_bits + ')', 13) : ""); cy += (b_height == 5 ? 2 : 1); if (b_height >= 8) { out += Mv::to(b_y+1+cy, b_x+1) + symbol + ' ' + "Top: " + rjust('(' + top, (b_width >= 20 ? 17 : 9)) + ')'; cy++; } if (b_height >= 6) { out += Mv::to(b_y+1+cy, b_x+1) + symbol + ' ' + "Total: " + rjust(total, (b_width >= 20 ? 16 : 8)); cy += (b_height > 6 and b_height % 2 ? 2 : 1); } } redraw = false; return out + Fx::reset; } } namespace Proc { int width_p = 55, height_p = 68; int min_width = 44, min_height = 16; int x, y, width = 20, height; int start, selected, select_max; bool shown = true, redraw = true; int selected_pid = 0, selected_depth = 0; string selected_name; std::unordered_map p_graphs; std::unordered_map p_wide_cmd; std::unordered_map p_counters; int counter = 0; Draw::TextEdit filter; Draw::Graph detailed_cpu_graph; Draw::Graph detailed_mem_graph; int user_size, thread_size, prog_size, cmd_size, tree_size; int dgraph_x, dgraph_width, d_width, d_x, d_y; string box; int selection(const string& cmd_key) { auto start = Config::getI("proc_start"); auto selected = Config::getI("proc_selected"); auto last_selected = Config::getI("proc_last_selected"); const int select_max = (Config::getB("show_detailed") ? Proc::select_max - 8 : Proc::select_max); auto vim_keys = Config::getB("vim_keys"); int numpids = Proc::numpids; if ((cmd_key == "up" or (vim_keys and cmd_key == "k")) and selected > 0) { if (start > 0 and selected == 1) start--; else selected--; if (Config::getI("proc_last_selected") > 0) Config::set("proc_last_selected", 0); } else if (cmd_key == "mouse_scroll_up" and start > 0) { start = max(0, start - 3); } else if (cmd_key == "mouse_scroll_down" and start < numpids - select_max) { start = min(numpids - select_max, start + 3); } else if (cmd_key == "down" or (vim_keys and cmd_key == "j")) { if (start < numpids - select_max and selected == select_max) start++; else if (selected == 0 and last_selected > 0) { selected = last_selected; Config::set("proc_last_selected", 0); } else selected++; } else if (cmd_key == "page_up") { if (selected > 0 and start == 0) selected = 0; else start = max(0, start - select_max); } else if (cmd_key == "page_down") { if (selected > 0 and start >= numpids - select_max) selected = select_max; else start = clamp(start + select_max, 0, max(0, numpids - select_max)); } else if (cmd_key == "home" or (vim_keys and cmd_key == "g")) { start = 0; if (selected > 0) selected = 1; } else if (cmd_key == "end" or (vim_keys and cmd_key == "G")) { start = max(0, numpids - select_max); if (selected > 0) selected = select_max; } else if (cmd_key.starts_with("mousey")) { int mouse_y = std::stoi(cmd_key.substr(6)); start = clamp((int)round((double)mouse_y * (numpids - select_max - 2) / (select_max - 2)), 0, max(0, numpids - select_max)); } bool changed = false; if (start != Config::getI("proc_start")) { Config::set("proc_start", start); changed = true; } if (selected != Config::getI("proc_selected")) { Config::set("proc_selected", selected); changed = true; } return (not changed ? -1 : selected); } string draw(const vector& plist, bool force_redraw, bool data_same) { if (Runner::stopping) return ""; auto proc_tree = Config::getB("proc_tree"); bool show_detailed = (Config::getB("show_detailed") and cmp_equal(Proc::detailed.last_pid, Config::getI("detailed_pid"))); bool proc_gradient = (Config::getB("proc_gradient") and not Config::getB("lowcolor") and Theme::gradients.contains("proc")); auto proc_colors = Config::getB("proc_colors"); auto tty_mode = Config::getB("tty_mode"); auto& graph_symbol = (tty_mode ? "tty" : Config::getS("graph_symbol_proc")); auto& graph_bg = Symbols::graph_symbols.at((graph_symbol == "default" ? Config::getS("graph_symbol") + "_up" : graph_symbol + "_up")).at(6); auto mem_bytes = Config::getB("proc_mem_bytes"); auto vim_keys = Config::getB("vim_keys"); auto show_graphs = Config::getB("proc_cpu_graphs"); start = Config::getI("proc_start"); selected = Config::getI("proc_selected"); const int y = show_detailed ? Proc::y + 8 : Proc::y; const int height = show_detailed ? Proc::height - 8 : Proc::height; const int select_max = show_detailed ? Proc::select_max - 8 : Proc::select_max; auto totalMem = Mem::get_totalMem(); int numpids = Proc::numpids; if (force_redraw) redraw = true; string out; out.reserve(width * height); //* Redraw elements not needed to be updated every cycle if (redraw) { out = box; const string title_left = Theme::c("proc_box") + Symbols::title_left; const string title_right = Theme::c("proc_box") + Symbols::title_right; const string title_left_down = Theme::c("proc_box") + Symbols::title_left_down; const string title_right_down = Theme::c("proc_box") + Symbols::title_right_down; for (const auto& key : {"T", "K", "S", "enter"}) if (Input::mouse_mappings.contains(key)) Input::mouse_mappings.erase(key); //? Adapt sizes of text fields user_size = (width < 75 ? 5 : 10); thread_size = (width < 75 ? - 1 : 4); prog_size = (width > 70 ? 16 : ( width > 55 ? 8 : width - user_size - thread_size - 33)); cmd_size = (width > 55 ? width - prog_size - user_size - thread_size - 33 : -1); tree_size = width - user_size - thread_size - 23; if (not show_graphs) { cmd_size += 5; tree_size += 5; } //? Detailed box if (show_detailed) { bool alive = detailed.status != "Dead"; dgraph_x = x; dgraph_width = max(width / 3, width - 121); d_width = width - dgraph_width - 1; d_x = x + dgraph_width + 1; d_y = Proc::y; //? Create cpu and mem graphs if process is alive if (alive) { detailed_cpu_graph = Draw::Graph{dgraph_width - 1, 7, "cpu", detailed.cpu_percent, graph_symbol, false, true}; detailed_mem_graph = Draw::Graph{d_width / 3, 1, "", detailed.mem_bytes, graph_symbol, false, false, detailed.first_mem}; } //? Draw structure of details box const string pid_str = to_string(detailed.entry.pid); out += Mv::to(y, x) + Theme::c("proc_box") + Symbols::div_left + Symbols::h_line + title_left + Theme::c("hi_fg") + Fx::b + (tty_mode ? "4" : Symbols::superscript.at(4)) + Theme::c("title") + "proc" + Fx::ub + title_right + Symbols::h_line * (width - 10) + Symbols::div_right + Mv::to(d_y, dgraph_x + 2) + title_left + Fx::b + Theme::c("title") + pid_str + Fx::ub + title_right + title_left + Fx::b + Theme::c("title") + uresize(detailed.entry.name, dgraph_width - pid_str.size() - 7, true) + Fx::ub + title_right; out += Mv::to(d_y, d_x - 1) + Theme::c("proc_box") + Symbols::div_up + Mv::to(y, d_x - 1) + Symbols::div_down + Theme::c("div_line"); for (const int& i : iota(1, 8)) out += Mv::to(d_y + i, d_x - 1) + Symbols::v_line; const string& t_color = (not alive or selected > 0 ? Theme::c("inactive_fg") : Theme::c("title")); const string& hi_color = (not alive or selected > 0 ? t_color : Theme::c("hi_fg")); const string hide = (selected > 0 ? t_color + "hide " : Theme::c("title") + "hide " + Theme::c("hi_fg")); int mouse_x = d_x + 2; out += Mv::to(d_y, d_x + 1); if (width > 55) { out += Fx::ub + title_left + hi_color + Fx::b + 't' + t_color + "erminate" + Fx::ub + title_right; if (alive and selected == 0) Input::mouse_mappings["t"] = {d_y, mouse_x, 1, 9}; mouse_x += 11; } out += title_left + hi_color + Fx::b + (vim_keys ? 'K' : 'k') + t_color + "ill" + Fx::ub + title_right + title_left + hi_color + Fx::b + 's' + t_color + "ignals" + Fx::ub + title_right + Mv::to(d_y, d_x + d_width - 10) + title_left + t_color + Fx::b + hide + Symbols::enter + Fx::ub + title_right; if (alive and selected == 0) { Input::mouse_mappings["k"] = {d_y, mouse_x, 1, 4}; mouse_x += 6; Input::mouse_mappings["s"] = {d_y, mouse_x, 1, 7}; } if (selected == 0) Input::mouse_mappings["enter"] = {d_y, d_x + d_width - 9, 1, 6}; //? Labels const int item_fit = floor((double)(d_width - 2) / 10); const int item_width = floor((double)(d_width - 2) / min(item_fit, 8)); out += Mv::to(d_y + 1, d_x + 1) + Fx::b + Theme::c("title") + cjust("Status:", item_width) + cjust("Elapsed:", item_width); if (item_fit >= 3) out += cjust("IO/R:", item_width); if (item_fit >= 4) out += cjust("IO/W:", item_width); if (item_fit >= 5) out += cjust("Parent:", item_width); if (item_fit >= 6) out += cjust("User:", item_width); if (item_fit >= 7) out += cjust("Threads:", item_width); if (item_fit >= 8) out += cjust("Nice:", item_width); //? Command line for (int i = 0; const auto& l : {'C', 'M', 'D'}) out += Mv::to(d_y + 5 + i++, d_x + 1) + l; out += Theme::c("main_fg") + Fx::ub; const int cmd_size = ulen(detailed.entry.cmd, true); for (int num_lines = min(3, (int)ceil((double)cmd_size / (d_width - 5))), i = 0; i < num_lines; i++) { out += Mv::to(d_y + 5 + (num_lines == 1 ? 1 : i), d_x + 3) + cjust(luresize(detailed.entry.cmd, cmd_size - (d_width - 5) * i, true), d_width - 5, true, true); } } //? Filter auto filtering = Config::getB("proc_filtering"); // ? filter(20) : Config::getS("proc_filter")) const auto filter_text = (filtering) ? filter(max(6, width - 58)) : uresize(Config::getS("proc_filter"), max(6, width - 58)); out += Mv::to(y, x+9) + title_left + (not filter_text.empty() ? Fx::b : "") + Theme::c("hi_fg") + 'f' + Theme::c("title") + (not filter_text.empty() ? ' ' + filter_text : "ilter") + (not filtering and not filter_text.empty() ? Theme::c("hi_fg") + " del" : "") + (filtering ? Theme::c("hi_fg") + ' ' + Symbols::enter : "") + Fx::ub + title_right; if (not filtering) { int f_len = (filter_text.empty() ? 6 : ulen(filter_text) + 2); Input::mouse_mappings["f"] = {y, x + 10, 1, f_len}; if (filter_text.empty() and Input::mouse_mappings.contains("delete")) Input::mouse_mappings.erase("delete"); else if (not filter_text.empty()) Input::mouse_mappings["delete"] = {y, x + 11 + f_len, 1, 3}; } //? per-core, reverse, tree and sorting const auto& sorting = Config::getS("proc_sorting"); const int sort_len = sorting.size(); const int sort_pos = x + width - sort_len - 8; if (width > 55 + sort_len) { out += Mv::to(y, sort_pos - 25) + title_left + (Config::getB("proc_per_core") ? Fx::b : "") + Theme::c("title") + "per-" + Theme::c("hi_fg") + 'c' + Theme::c("title") + "ore" + Fx::ub + title_right; Input::mouse_mappings["c"] = {y, sort_pos - 24, 1, 8}; } if (width > 45 + sort_len) { out += Mv::to(y, sort_pos - 15) + title_left + (Config::getB("proc_reversed") ? Fx::b : "") + Theme::c("hi_fg") + 'r' + Theme::c("title") + "everse" + Fx::ub + title_right; Input::mouse_mappings["r"] = {y, sort_pos - 14, 1, 7}; } if (width > 35 + sort_len) { out += Mv::to(y, sort_pos - 6) + title_left + (Config::getB("proc_tree") ? Fx::b : "") + Theme::c("title") + "tre" + Theme::c("hi_fg") + 'e' + Fx::ub + title_right; Input::mouse_mappings["e"] = {y, sort_pos - 5, 1, 4}; } out += Mv::to(y, sort_pos) + title_left + Fx::b + Theme::c("hi_fg") + "< " + Theme::c("title") + sorting + Theme::c("hi_fg") + " >" + Fx::ub + title_right; Input::mouse_mappings["left"] = {y, sort_pos + 1, 1, 2}; Input::mouse_mappings["right"] = {y, sort_pos + sort_len + 3, 1, 2}; //? select, info and signal buttons const string down_button = (selected == select_max and start == numpids - select_max ? Theme::c("inactive_fg") : Theme::c("hi_fg")) + Symbols::down; const string t_color = (selected == 0 ? Theme::c("inactive_fg") : Theme::c("title")); const string hi_color = (selected == 0 ? Theme::c("inactive_fg") : Theme::c("hi_fg")); int mouse_x = x + 14; out += Mv::to(y + height - 1, x + 1) + title_left_down + Fx::b + hi_color + Symbols::up + Theme::c("title") + " select " + down_button + Fx::ub + title_right_down + title_left_down + Fx::b + t_color + "info " + hi_color + Symbols::enter + Fx::ub + title_right_down; if (selected > 0) Input::mouse_mappings["enter"] = {y + height - 1, mouse_x, 1, 6}; mouse_x += 8; if (width > 60) { out += title_left_down + Fx::b + hi_color + 't' + t_color + "erminate" + Fx::ub + title_right_down; if (selected > 0) Input::mouse_mappings["t"] = {y + height - 1, mouse_x, 1, 9}; mouse_x += 11; } if (width > 55) { out += title_left_down + Fx::b + hi_color + (vim_keys ? 'K' : 'k') + t_color + "ill" + Fx::ub + title_right_down; if (selected > 0) Input::mouse_mappings["k"] = {y + height - 1, mouse_x, 1, 4}; mouse_x += 6; } out += title_left_down + Fx::b + hi_color + 's' + t_color + "ignals" + Fx::ub + title_right_down; if (selected > 0) Input::mouse_mappings["s"] = {y + height - 1, mouse_x, 1, 7}; //? Labels for fields in list if (not proc_tree) out += Mv::to(y+1, x+1) + Theme::c("title") + Fx::b + rjust("Pid:", 8) + ' ' + ljust("Program:", prog_size) + ' ' + (cmd_size > 0 ? ljust("Command:", cmd_size) : "") + ' '; else out += Mv::to(y+1, x+1) + Theme::c("title") + Fx::b + ljust("Tree:", tree_size) + ' '; out += (thread_size > 0 ? Mv::l(4) + "Threads: " : "") + ljust("User:", user_size) + ' ' + rjust((mem_bytes ? "MemB" : "Mem%"), 5) + ' ' + rjust("Cpu%", (show_graphs ? 10 : 5)) + Fx::ub; } //* End of redraw block //? Draw details box if shown if (show_detailed) { bool alive = detailed.status != "Dead"; const int item_fit = floor((double)(d_width - 2) / 10); const int item_width = floor((double)(d_width - 2) / min(item_fit, 8)); //? Graph part of box string cpu_str = (alive ? to_string(detailed.entry.cpu_p) : ""); if (alive) { cpu_str.resize((detailed.entry.cpu_p < 10 or detailed.entry.cpu_p >= 100 ? 3 : 4)); cpu_str += '%'; } out += Mv::to(d_y + 1, dgraph_x + 1) + Fx::ub + detailed_cpu_graph(detailed.cpu_percent, (redraw or data_same or not alive)) + Mv::to(d_y + 1, dgraph_x + 1) + Theme::c("title") + Fx::b + cpu_str; for (int i = 0; const auto& l : {'C', 'P', 'U'}) out += Mv::to(d_y + 3 + i++, dgraph_x + 1) + l; //? Info part of box const string stat_color = (not alive ? Theme::c("inactive_fg") : (detailed.status == "Running" ? Theme::c("proc_misc") : Theme::c("main_fg"))); out += Mv::to(d_y + 2, d_x + 1) + stat_color + Fx::ub + cjust(detailed.status, item_width) + Theme::c("main_fg") + cjust(detailed.elapsed, item_width); if (item_fit >= 3) out += cjust(detailed.io_read, item_width); if (item_fit >= 4) out += cjust(detailed.io_write, item_width); if (item_fit >= 5) out += cjust(detailed.parent, item_width, true); if (item_fit >= 6) out += cjust(detailed.entry.user, item_width, true); if (item_fit >= 7) out += cjust(to_string(detailed.entry.threads), item_width); if (item_fit >= 8) out += cjust(to_string(detailed.entry.p_nice), item_width); const double mem_p = (double)detailed.mem_bytes.back() * 100 / totalMem; string mem_str = to_string(mem_p); mem_str.resize((mem_p < 10 or mem_p >= 100 ? 3 : 4)); out += Mv::to(d_y + 4, d_x + 1) + Theme::c("title") + Fx::b + rjust((item_fit > 4 ? "Memory: " : "M:") + mem_str + "% ", (d_width / 3) - 2) + Theme::c("inactive_fg") + Fx::ub + graph_bg * (d_width / 3) + Mv::l(d_width / 3) + Theme::c("proc_misc") + detailed_mem_graph(detailed.mem_bytes, (redraw or data_same or not alive)) + ' ' + Theme::c("title") + Fx::b + detailed.memory; } //? Check bounds of current selection and view if (start > 0 and numpids <= select_max) start = 0; if (start > numpids - select_max) start = max(0, numpids - select_max); if (selected > select_max) selected = select_max; if (selected > numpids) selected = numpids; //* Iteration over processes int lc = 0; for (int n=0; auto& p : plist) { if (p.filtered or (proc_tree and p.tree_index == plist.size()) or n++ < start) continue; bool is_selected = (lc + 1 == selected); if (is_selected) { selected_pid = (int)p.pid; selected_name = p.name; selected_depth = p.depth; } //? Update graphs for processes with above 0.0% cpu usage, delete if below 0.1% 10x times bool has_graph = show_graphs ? p_counters.contains(p.pid) : false; if (show_graphs and ((p.cpu_p > 0 and not has_graph) or (not data_same and has_graph))) { if (not has_graph) { p_graphs[p.pid] = Draw::Graph{5, 1, "", {}, graph_symbol}; p_counters[p.pid] = 0; } else if (p.cpu_p < 0.1 and ++p_counters[p.pid] >= 10) { if (p_graphs.contains(p.pid)) p_graphs.erase(p.pid); p_counters.erase(p.pid); } else p_counters[p.pid] = 0; } out += Fx::reset; //? Set correct gradient colors if enabled string c_color, m_color, t_color, g_color, end; if (is_selected) { c_color = m_color = t_color = g_color = Fx::b; end = Fx::ub; out += Theme::c("selected_bg") + Theme::c("selected_fg") + Fx::b; } else { int calc = (selected > lc) ? selected - lc : lc - selected; if (proc_colors) { end = Theme::c("main_fg") + Fx::ub; array colors; for (int i = 0; int v : {(int)round(p.cpu_p), (int)round(p.mem * 100 / totalMem), (int)p.threads / 3}) { if (proc_gradient) { int val = (min(v, 100) + 100) - calc * 100 / select_max; if (val < 100) colors[i++] = Theme::g("proc_color").at(max(0, val)); else colors[i++] = Theme::g("process").at(clamp(val - 100, 0, 100)); } else colors[i++] = Theme::g("process").at(clamp(v, 0, 100)); } c_color = colors.at(0); m_color = colors.at(1); t_color = colors.at(2); } else { c_color = m_color = t_color = Fx::b; end = Fx::ub; } if (proc_gradient) { g_color = Theme::g("proc").at(clamp(calc * 100 / select_max, 0, 100)); } } if (not p_wide_cmd.contains(p.pid)) p_wide_cmd[p.pid] = ulen(p.cmd) != ulen(p.cmd, true); //? Normal view line if (not proc_tree) { out += Mv::to(y+2+lc, x+1) + g_color + rjust(to_string(p.pid), 8) + ' ' + c_color + ljust(p.name, prog_size, true) + ' ' + end + (cmd_size > 0 ? g_color + ljust(p.cmd, cmd_size, true, p_wide_cmd[p.pid]) + Mv::to(y+2+lc, x+11+prog_size+cmd_size) + ' ' : ""); } //? Tree view line else { const string prefix_pid = p.prefix + to_string(p.pid); int width_left = tree_size; out += Mv::to(y+2+lc, x+1) + g_color + uresize(prefix_pid, width_left) + ' '; width_left -= ulen(prefix_pid); if (width_left > 0) { out += c_color + uresize(p.name, width_left - 1) + end + ' '; width_left -= (ulen(p.name) + 1); } if (width_left > 7) { const string& cmd = width_left > 40 ? rtrim(p.cmd) : p.short_cmd; if (not cmd.empty() and cmd != p.name) { out += g_color + '(' + uresize(cmd, width_left - 3, p_wide_cmd[p.pid]) + ") "; width_left -= (ulen(cmd, true) + 3); } } out += string(max(0, width_left), ' ') + Mv::to(y+2+lc, x+2+tree_size); } //? Common end of line string cpu_str = to_string(p.cpu_p); if (p.cpu_p < 10 or (p.cpu_p >= 100 and p.cpu_p < 1000)) cpu_str.resize(3); else if (p.cpu_p >= 10'000) { cpu_str = to_string(p.cpu_p / 1000); cpu_str.resize(3); if (cpu_str.ends_with('.')) cpu_str.pop_back(); cpu_str += "k"; } string mem_str = (mem_bytes ? floating_humanizer(p.mem, true) : ""); if (not mem_bytes) { double mem_p = clamp((double)p.mem * 100 / totalMem, 0.0, 100.0); mem_str = to_string(mem_p); if (mem_str.size() < 4) mem_str = "0"; else mem_str.resize((mem_p < 10 or mem_p >= 100 ? 3 : 4)); mem_str += '%'; } // Shorten process thread representation when larger than 5 digits: 10000 -> 10K ... const std::string proc_threads_string = [&] { if (p.threads > 9999) { return std::to_string(p.threads / 1000) + 'K'; } else { return std::to_string(p.threads); } }(); out += (thread_size > 0 ? t_color + rjust(proc_threads_string, thread_size) + ' ' + end : "" ) + g_color + ljust((cmp_greater(p.user.size(), user_size) ? p.user.substr(0, user_size - 1) + '+' : p.user), user_size) + ' ' + m_color + rjust(mem_str, 5) + end + ' ' + (is_selected ? "" : Theme::c("inactive_fg")) + (show_graphs ? graph_bg * 5: "") + (p_graphs.contains(p.pid) ? Mv::l(5) + c_color + p_graphs.at(p.pid)({(p.cpu_p >= 0.1 and p.cpu_p < 5 ? 5ll : (long long)round(p.cpu_p))}, data_same) : "") + end + ' ' + c_color + rjust(cpu_str, 4) + " " + end; if (lc++ > height - 5) break; } out += Fx::reset; while (lc++ < height - 5) out += Mv::to(y+lc+1, x+1) + string(width - 2, ' '); //? Draw scrollbar if needed if (numpids > select_max) { const int scroll_pos = clamp((int)round((double)start * select_max / (numpids - select_max)), 0, height - 5); out += Mv::to(y + 1, x + width - 2) + Fx::b + Theme::c("main_fg") + Symbols::up + Mv::to(y + height - 2, x + width - 2) + Symbols::down; for (int i = y + 2; i < y + height - 2; i++) { out += Mv::to(i, x + width - 2) + ((i == y + 2 + scroll_pos) ? "█" : " "); } } //? Current selection and number of processes string location = to_string(start + selected) + '/' + to_string(numpids); string loc_clear = Symbols::h_line * max((size_t)0, 9 - location.size()); out += Mv::to(y + height - 1, x+width - 3 - max(9, (int)location.size())) + Fx::ub + Theme::c("proc_box") + loc_clear + Symbols::title_left_down + Theme::c("title") + Fx::b + location + Fx::ub + Theme::c("proc_box") + Symbols::title_right_down; //? Clear out left over graphs from dead processes at a regular interval if (not data_same and ++counter >= 100) { counter = 0; std::erase_if(p_graphs, [&](const auto& pair) { return rng::find(plist, pair.first, &proc_info::pid) == plist.end(); }); std::erase_if(p_counters, [&](const auto& pair) { return rng::find(plist, pair.first, &proc_info::pid) == plist.end(); }); std::erase_if(p_wide_cmd, [&](const auto& pair) { return rng::find(plist, pair.first, &proc_info::pid) == plist.end(); }); } if (selected == 0 and selected_pid != 0) { selected_pid = 0; selected_name.clear(); } redraw = false; return out + Fx::reset; } } namespace Draw { void calcSizes() { atomic_wait(Runner::active); Config::unlock(); auto boxes = Config::getS("shown_boxes"); auto cpu_bottom = Config::getB("cpu_bottom"); auto mem_below_net = Config::getB("mem_below_net"); auto proc_left = Config::getB("proc_left"); Cpu::box.clear(); Mem::box.clear(); Net::box.clear(); Proc::box.clear(); Global::clock.clear(); Global::overlay.clear(); Runner::pause_output = false; Runner::redraw = true; Proc::p_counters.clear(); Proc::p_graphs.clear(); if (Menu::active) Menu::redraw = true; Input::mouse_mappings.clear(); Cpu::x = Mem::x = Net::x = Proc::x = 1; Cpu::y = Mem::y = Net::y = Proc::y = 1; Cpu::width = Mem::width = Net::width = Proc::width = 0; Cpu::height = Mem::height = Net::height = Proc::height = 0; Cpu::redraw = Mem::redraw = Net::redraw = Proc::redraw = true; Cpu::shown = s_contains(boxes, "cpu"); #ifdef GPU_SUPPORT Gpu::box.clear(); Gpu::width = 0; Gpu::shown_panels.clear(); if (not Gpu::gpu_names.empty()) { std::istringstream iss(boxes, std::istringstream::in); string current; while (iss >> current) if ( current == "gpu0" or current == "gpu1" or current == "gpu2" or current == "gpu3" or current == "gpu4" or current == "gpu5" ) Gpu::shown_panels.push_back(current.back()-'0'); } Gpu::shown = Gpu::shown_panels.size(); #endif Mem::shown = s_contains(boxes, "mem"); Net::shown = s_contains(boxes, "net"); Proc::shown = s_contains(boxes, "proc"); //* Calculate and draw cpu box outlines if (Cpu::shown) { using namespace Cpu; #ifdef GPU_SUPPORT const bool show_gpu_on = Config::getS("show_gpu_info") == "On"; const bool gpus_shown_in_cpu_panel = Gpu::gpu_names.size() > 0 and ( show_gpu_on or (Config::getS("show_gpu_info") == "Auto" and Gpu::shown == 0) ); const int gpus_height_offset = (Gpu::gpu_names.size() - Gpu::shown)*gpus_shown_in_cpu_panel; int gpus_extra_height = gpus_shown_in_cpu_panel ? Gpu::gpu_names.size() - (show_gpu_on ? 0 : Gpu::shown) : 0; #endif const bool show_temp = (Config::getB("check_temp") and got_sensors); width = round((double)Term::width * width_p / 100); #ifdef GPU_SUPPORT if (Gpu::shown != 0 and not (Mem::shown or Net::shown or Proc::shown)) { height = Term::height - Gpu::min_height*Gpu::shown - gpus_height_offset; } else { height = max(8, (int)ceil((double)Term::height * (trim(boxes) == "cpu" ? 100 : height_p/(Gpu::shown+1) + (Gpu::shown != 0)*5) / 100)); } if (height <= Term::height-gpus_height_offset) height += gpus_height_offset; if (height - gpus_extra_height < 7) gpus_extra_height = height - 7; #else height = max(8, (int)ceil((double)Term::height * (trim(boxes) == "cpu" ? 100 : height_p) / 100)); #endif x = 1; y = cpu_bottom ? Term::height - height + 1 : 1; #ifdef GPU_SUPPORT b_columns = max(1, (int)ceil((double)(Shared::coreCount + 1) / (height - gpus_extra_height - 5))); #else b_columns = max(1, (int)ceil((double)(Shared::coreCount + 1) / (height - 5))); #endif if (b_columns * (21 + 12 * show_temp) < width - (width / 3)) { b_column_size = 2; b_width = (21 + 12 * show_temp) * b_columns - (b_columns - 1); } else if (b_columns * (15 + 6 * show_temp) < width - (width / 3)) { b_column_size = 1; b_width = (15 + 6 * show_temp) * b_columns - (b_columns - 1); } else if (b_columns * (8 + 6 * show_temp) < width - (width / 3)) { b_column_size = 0; } else { b_columns = (width - width / 3) / (8 + 6 * show_temp); b_column_size = 0; } if (b_column_size == 0) b_width = (8 + 6 * show_temp) * b_columns + 1; #ifdef GPU_SUPPORT b_height = min(height - 2, (int)ceil((double)Shared::coreCount / b_columns) + 4 + gpus_extra_height); #else b_height = min(height - 2, (int)ceil((double)Shared::coreCount / b_columns) + 4); #endif b_x = x + width - b_width - 1; b_y = y + ceil((double)(height - 2) / 2) - ceil((double)b_height / 2) + 1; box = createBox(x, y, width, height, Theme::c("cpu_box"), true, (cpu_bottom ? "" : "cpu"), (cpu_bottom ? "cpu" : ""), 1); auto& custom = Config::getS("custom_cpu_name"); static const bool hasCpuHz = not Cpu::get_cpuHz().empty(); const string cpu_title = uresize( (custom.empty() ? Cpu::cpuName : custom), b_width - (Config::getB("show_cpu_freq") and hasCpuHz ? 14 : 4) ); box += createBox(b_x, b_y, b_width, b_height, "", false, cpu_title); } #ifdef GPU_SUPPORT //* Calculate and draw gpu box outlines if (Gpu::shown != 0) { using namespace Gpu; x_vec.resize(shown); y_vec.resize(shown); b_x_vec.resize(shown); b_y_vec.resize(shown); b_height_vec.resize(shown); box.resize(shown); graph_upper_vec.resize(shown); graph_lower_vec.resize(shown); temp_graph_vec.resize(shown); mem_used_graph_vec.resize(shown); mem_util_graph_vec.resize(shown); gpu_meter_vec.resize(shown); pwr_meter_vec.resize(shown); redraw.resize(shown); for (auto i = 0; i < shown; ++i) { redraw[i] = true; width = Term::width; if (Cpu::shown) if (not (Mem::shown or Net::shown or Proc::shown)) height = min_height; else height = Cpu::height; else if (not (Mem::shown or Net::shown or Proc::shown)) height = Term::height/Gpu::shown + (i == 0)*(Term::height%Gpu::shown); else height = max(min_height, (int)ceil((double)Term::height * height_p/Gpu::shown / 100)); height += (height+Cpu::height == Term::height-1); x_vec[i] = 1; y_vec[i] = 1 + i*height + (not Config::getB("cpu_bottom"))*Cpu::shown*Cpu::height; box[i] = createBox(x_vec[i], y_vec[i], width, height, Theme::c("cpu_box"), true, std::string("gpu") + (char)(shown_panels[i]+'0'), "", (shown_panels[i]+5)%10); // TODO gpu_box b_height_vec[i] = 2 + gpu_b_height_offsets[shown_panels[i]]; b_width = clamp(width/2, min_width, 64); //? Main statistics box b_x_vec[i] = x_vec[i] + width - b_width - 1; b_y_vec[i] = y_vec[i] + ceil((double)(height - 2) / 2) - ceil((double)(b_height_vec[i]) / 2) + 1; string name = Config::getS(std::string("custom_gpu_name") + (char)(shown_panels[i]+'0')); if (name.empty()) name = gpu_names[shown_panels[i]]; box[i] += createBox(b_x_vec[i], b_y_vec[i], b_width, b_height_vec[i], "", false, name.substr(0, b_width-5)); } } #endif //* Calculate and draw mem box outlines if (Mem::shown) { using namespace Mem; auto show_disks = Config::getB("show_disks"); auto swap_disk = Config::getB("swap_disk"); auto mem_graphs = Config::getB("mem_graphs"); width = round((double)Term::width * (Proc::shown ? width_p : 100) / 100); #ifdef GPU_SUPPORT height = ceil((double)Term::height * (100 - Net::height_p * Net::shown*4 / ((Gpu::shown != 0 and Cpu::shown) + 4)) / 100) - Cpu::height - Gpu::height*Gpu::shown; #else height = ceil((double)Term::height * (100 - Cpu::height_p * Cpu::shown - Net::height_p * Net::shown) / 100) + 1; #endif x = (proc_left and Proc::shown) ? Term::width - width + 1: 1; if (mem_below_net and Net::shown) #ifdef GPU_SUPPORT y = Term::height - height + 1 - (cpu_bottom ? Cpu::height + Gpu::height*Gpu::shown : 0); else y = cpu_bottom ? 1 : Cpu::height + Gpu::height*Gpu::shown + 1; #else y = Term::height - height + 1 - (cpu_bottom ? Cpu::height : 0); else y = cpu_bottom ? 1 : Cpu::height + 1; #endif if (show_disks) { mem_width = ceil((double)(width - 3) / 2); mem_width += mem_width % 2; disks_width = width - mem_width - 2; divider = x + mem_width; } else mem_width = width - 1; item_height = has_swap and not swap_disk ? 6 : 4; if (height - (has_swap and not swap_disk ? 3 : 2) > 2 * item_height) mem_size = 3; else if (mem_width > 25) mem_size = 2; else mem_size = 1; mem_meter = max(0, mem_width - (mem_size > 2 ? 7 : 17)); if (mem_size == 1) mem_meter += 6; if (mem_graphs) { graph_height = max(1, (int)round((double)((height - (has_swap and not swap_disk ? 2 : 1)) - (mem_size == 3 ? 2 : 1) * item_height) / item_height)); if (graph_height > 1) mem_meter += 6; } else graph_height = 0; if (show_disks) { disk_meter = max(-14, width - mem_width - 23); if (disks_width < 25) disk_meter += 14; } box = createBox(x, y, width, height, Theme::c("mem_box"), true, "mem", "", 2); box += Mv::to(y, (show_disks ? divider + 2 : x + width - 9)) + Theme::c("mem_box") + Symbols::title_left + (show_disks ? Fx::b : "") + Theme::c("hi_fg") + 'd' + Theme::c("title") + "isks" + Fx::ub + Theme::c("mem_box") + Symbols::title_right; Input::mouse_mappings["d"] = {y, (show_disks ? divider + 3 : x + width - 8), 1, 5}; if (show_disks) { box += Mv::to(y, divider) + Symbols::div_up + Mv::to(y + height - 1, divider) + Symbols::div_down + Theme::c("div_line"); for (auto i : iota(1, height - 1)) box += Mv::to(y + i, divider) + Symbols::v_line; } } //* Calculate and draw net box outlines if (Net::shown) { using namespace Net; width = round((double)Term::width * (Proc::shown ? width_p : 100) / 100); #ifdef GPU_SUPPORT height = Term::height - Cpu::height - Gpu::height*Gpu::shown - Mem::height; #else height = Term::height - Cpu::height - Mem::height; #endif x = (proc_left and Proc::shown) ? Term::width - width + 1 : 1; if (mem_below_net and Mem::shown) #ifdef GPU_SUPPORT y = cpu_bottom ? 1 : Cpu::height + Gpu::height*Gpu::shown + 1; #else y = cpu_bottom ? 1 : Cpu::height + 1; #endif else y = Term::height - height + 1 - (cpu_bottom ? Cpu::height : 0); b_width = (width > 45) ? 27 : 19; b_height = (height > 10) ? 9 : height - 2; b_x = x + width - b_width - 1; b_y = y + ((height - 2) / 2) - b_height / 2 + 1; d_graph_height = round((double)(height - 2) / 2); u_graph_height = height - 2 - d_graph_height; box = createBox(x, y, width, height, Theme::c("net_box"), true, "net", "", 3); box += createBox(b_x, b_y, b_width, b_height, "", false, "download", "upload"); } //* Calculate and draw proc box outlines if (Proc::shown) { using namespace Proc; width = Term::width - (Mem::shown ? Mem::width : (Net::shown ? Net::width : 0)); #ifdef GPU_SUPPORT height = Term::height - Cpu::height - Gpu::height*Gpu::shown; #else height = Term::height - Cpu::height; #endif x = proc_left ? 1 : Term::width - width + 1; #ifdef GPU_SUPPORT y = (cpu_bottom and Cpu::shown) ? 1 : Cpu::height + Gpu::height*Gpu::shown + 1; #else y = (cpu_bottom and Cpu::shown) ? 1 : Cpu::height + 1; #endif select_max = height - 3; box = createBox(x, y, width, height, Theme::c("proc_box"), true, "proc", "", 4); } } } btop-1.3.0/src/btop_draw.hpp000066400000000000000000000075721454653170500157650ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #pragma once #include #include #include #include #include using std::array; using std::deque; using std::string; using std::vector; namespace Symbols { const string h_line = "─"; const string v_line = "│"; const string dotted_v_line = "╎"; const string left_up = "┌"; const string right_up = "┐"; const string left_down = "└"; const string right_down = "┘"; const string round_left_up = "╭"; const string round_right_up = "╮"; const string round_left_down = "╰"; const string round_right_down = "╯"; const string title_left_down = "┘"; const string title_right_down = "└"; const string title_left = "┐"; const string title_right = "┌"; const string div_right = "┤"; const string div_left = "├"; const string div_up = "┬"; const string div_down = "┴"; const string up = "↑"; const string down = "↓"; const string left = "←"; const string right = "→"; const string enter = "↵"; } namespace Draw { //* Generate if needed and return the btop++ banner string banner_gen(int y=0, int x=0, bool centered=false, bool redraw=false); //* An editable text field class TextEdit { size_t pos{}; size_t upos{}; bool numeric; public: string text; TextEdit(); TextEdit(string text, bool numeric=false); bool command(const string& key); string operator()(const size_t limit=0); void clear(); }; //* Create a box and return as a string string createBox(const int x, const int y, const int width, const int height, string line_color = "", bool fill = false, const string title = "", const string title2 = "", const int num = 0); bool update_clock(bool force = false); //* Class holding a percentage meter class Meter { int width; string color_gradient; bool invert; array cache; public: Meter(); Meter(const int width, const string& color_gradient, bool invert = false); //* Return a string representation of the meter with given value string operator()(int value); }; //* Class holding a percentage graph class Graph { int width, height; string color_gradient; string out, symbol = "default"; bool invert, no_zero; long long offset; long long last = 0, max_value = 0; bool current = true, tty_mode = false; std::unordered_map> graphs = { {true, {}}, {false, {}}}; //* Create two representations of the graph to switch between to represent two values for each braille character void _create(const deque& data, int data_offset); public: Graph(); Graph(int width, int height, const string& color_gradient, const deque& data, const string& symbol="default", bool invert=false, bool no_zero=false, long long max_value=0, long long offset=0); //* Add last value from back of and return string representation of graph string& operator()(const deque& data, bool data_same=false); //* Return string representation of graph string& operator()(); }; //* Calculate sizes of boxes, draw outlines and save to enabled boxes namespaces void calcSizes(); } namespace Proc { extern Draw::TextEdit filter; extern std::unordered_map p_graphs; extern std::unordered_map p_counters; } btop-1.3.0/src/btop_input.cpp000066400000000000000000000372051454653170500161560ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include #include #include #include #include #include #include #include #include "btop_input.hpp" #include "btop_tools.hpp" #include "btop_config.hpp" #include "btop_shared.hpp" #include "btop_menu.hpp" #include "btop_draw.hpp" using namespace Tools; using namespace std::literals; // for operator""s namespace rng = std::ranges; namespace Input { //* Map for translating key codes to readable values const std::unordered_map Key_escapes = { {"\033", "escape"}, {"\n", "enter"}, {" ", "space"}, {"\x7f", "backspace"}, {"\x08", "backspace"}, {"[A", "up"}, {"OA", "up"}, {"[B", "down"}, {"OB", "down"}, {"[D", "left"}, {"OD", "left"}, {"[C", "right"}, {"OC", "right"}, {"[2~", "insert"}, {"[4h", "insert"}, {"[3~", "delete"}, {"[P", "delete"}, {"[H", "home"}, {"[1~", "home"}, {"[F", "end"}, {"[4~", "end"}, {"[5~", "page_up"}, {"[6~", "page_down"}, {"\t", "tab"}, {"[Z", "shift_tab"}, {"OP", "f1"}, {"OQ", "f2"}, {"OR", "f3"}, {"OS", "f4"}, {"[15~", "f5"}, {"[17~", "f6"}, {"[18~", "f7"}, {"[19~", "f8"}, {"[20~", "f9"}, {"[21~", "f10"}, {"[23~", "f11"}, {"[24~", "f12"} }; sigset_t signal_mask; std::atomic polling (false); array mouse_pos; std::unordered_map mouse_mappings; deque history(50, ""); string old_filter; string input; bool poll(const uint64_t timeout) { atomic_lock lck(polling); fd_set fds; FD_ZERO(&fds); FD_SET(STDIN_FILENO, &fds); struct timespec wait; struct timespec *waitptr = nullptr; if(timeout != std::numeric_limits::max()) { wait.tv_sec = timeout / 1000; wait.tv_nsec = (timeout % 1000) * 1000000; waitptr = &wait; } if(pselect(STDIN_FILENO + 1, &fds, nullptr, nullptr, waitptr, &signal_mask) > 0) { input.clear(); char buf[1024]; ssize_t count = 0; while((count = read(STDIN_FILENO, buf, sizeof(buf))) > 0) { input.append(std::string_view(buf, count)); } return true; } return false; } string get() { string key = input; if (not key.empty()) { //? Remove escape code prefix if present if (key.substr(0, 2) == Fx::e) { key.erase(0, 1); } //? Detect if input is an mouse event if (key.starts_with("[<")) { std::string_view key_view = key; string mouse_event; if (key_view.starts_with("[<0;") and key_view.find('M') != std::string_view::npos) { mouse_event = "mouse_click"; key_view.remove_prefix(4); } // else if (key_view.starts_with("[<0;") and key_view.ends_with('m')) { // mouse_event = "mouse_release"; // key_view.remove_prefix(4); // } else if (key_view.starts_with("[<64;")) { mouse_event = "mouse_scroll_up"; key_view.remove_prefix(5); } else if (key_view.starts_with("[<65;")) { mouse_event = "mouse_scroll_down"; key_view.remove_prefix(5); } else key.clear(); if (Config::getB("proc_filtering")) { if (mouse_event == "mouse_click") return mouse_event; else return ""; } //? Get column and line position of mouse and check for any actions mapped to current position if (not key.empty()) { try { const auto delim = key_view.find(';'); mouse_pos[0] = stoi((string)key_view.substr(0, delim)); mouse_pos[1] = stoi((string)key_view.substr(delim + 1, key_view.find('M', delim))); } catch (const std::invalid_argument&) { mouse_event.clear(); } catch (const std::out_of_range&) { mouse_event.clear(); } key = mouse_event; if (key == "mouse_click") { const auto& [col, line] = mouse_pos; for (const auto& [mapped_key, pos] : (Menu::active ? Menu::mouse_mappings : mouse_mappings)) { if (col >= pos.col and col < pos.col + pos.width and line >= pos.line and line < pos.line + pos.height) { key = mapped_key; break; } } } } } else if (Key_escapes.contains(key)) key = Key_escapes.at(key); else if (ulen(key) > 1) key.clear(); if (not key.empty()) { history.push_back(key); history.pop_front(); } } return key; } string wait() { while(not poll(std::numeric_limits::max())) {} return get(); } void interrupt() { kill(getpid(), SIGUSR1); } void clear() { // do not need it, actually } void process(const string& key) { if (key.empty()) return; try { auto filtering = Config::getB("proc_filtering"); auto vim_keys = Config::getB("vim_keys"); auto help_key = (vim_keys ? "H" : "h"); auto kill_key = (vim_keys ? "K" : "k"); //? Global input actions if (not filtering) { bool keep_going = false; if (str_to_lower(key) == "q") { clean_quit(0); } else if (is_in(key, "escape", "m")) { Menu::show(Menu::Menus::Main); return; } else if (is_in(key, "F1", "?", help_key)) { Menu::show(Menu::Menus::Help); return; } else if (is_in(key, "F2", "o")) { Menu::show(Menu::Menus::Options); return; } else if (key.size() == 1 and isint(key)) { auto intKey = stoi(key); #ifdef GPU_SUPPORT static const array boxes = {"gpu5", "cpu", "mem", "net", "proc", "gpu0", "gpu1", "gpu2", "gpu3", "gpu4"}; if ((intKey == 0 and Gpu::gpu_names.size() < 5) or (intKey >= 5 and std::cmp_less(Gpu::gpu_names.size(), intKey - 4))) return; #else static const array boxes = {"", "cpu", "mem", "net", "proc"}; if (intKey == 0 or intKey > 4) return; #endif atomic_wait(Runner::active); Config::current_preset = -1; Config::toggle_box(boxes.at(intKey)); Draw::calcSizes(); Runner::run("all", false, true); return; } else if (is_in(key, "p", "P") and Config::preset_list.size() > 1) { if (key == "p") { if (++Config::current_preset >= (int)Config::preset_list.size()) Config::current_preset = 0; } else { if (--Config::current_preset < 0) Config::current_preset = Config::preset_list.size() - 1; } atomic_wait(Runner::active); Config::apply_preset(Config::preset_list.at(Config::current_preset)); Draw::calcSizes(); Runner::run("all", false, true); return; } else keep_going = true; if (not keep_going) return; } //? Input actions for proc box if (Proc::shown) { bool keep_going = false; bool no_update = true; bool redraw = true; if (filtering) { if (key == "enter" or key == "down") { Config::set("proc_filter", Proc::filter.text); Config::set("proc_filtering", false); old_filter.clear(); if(key == "down"){ process("down"); return; } } else if (key == "escape" or key == "mouse_click") { Config::set("proc_filter", old_filter); Config::set("proc_filtering", false); old_filter.clear(); } else if (Proc::filter.command(key)) { if (Config::getS("proc_filter") != Proc::filter.text) Config::set("proc_filter", Proc::filter.text); } else return; } else if (key == "left" or (vim_keys and key == "h")) { int cur_i = v_index(Proc::sort_vector, Config::getS("proc_sorting")); if (--cur_i < 0) cur_i = Proc::sort_vector.size() - 1; Config::set("proc_sorting", Proc::sort_vector.at(cur_i)); } else if (key == "right" or (vim_keys and key == "l")) { int cur_i = v_index(Proc::sort_vector, Config::getS("proc_sorting")); if (std::cmp_greater(++cur_i, Proc::sort_vector.size() - 1)) cur_i = 0; Config::set("proc_sorting", Proc::sort_vector.at(cur_i)); } else if (is_in(key, "f", "/")) { Config::flip("proc_filtering"); Proc::filter = { Config::getS("proc_filter") }; old_filter = Proc::filter.text; } else if (key == "e") { Config::flip("proc_tree"); no_update = false; } else if (key == "r") Config::flip("proc_reversed"); else if (key == "c") Config::flip("proc_per_core"); else if (key == "%") Config::flip("proc_mem_bytes"); else if (key == "delete" and not Config::getS("proc_filter").empty()) Config::set("proc_filter", ""s); else if (key.starts_with("mouse_")) { redraw = false; const auto& [col, line] = mouse_pos; const int y = (Config::getB("show_detailed") ? Proc::y + 8 : Proc::y); const int height = (Config::getB("show_detailed") ? Proc::height - 8 : Proc::height); if (col >= Proc::x + 1 and col < Proc::x + Proc::width and line >= y + 1 and line < y + height - 1) { if (key == "mouse_click") { if (col < Proc::x + Proc::width - 2) { const auto& current_selection = Config::getI("proc_selected"); if (current_selection == line - y - 1) { redraw = true; if (Config::getB("proc_tree")) { const int x_pos = col - Proc::x; const int offset = Config::getI("selected_depth") * 3; if (x_pos > offset and x_pos < 4 + offset) { process("space"); return; } } process("enter"); return; } else if (current_selection == 0 or line - y - 1 == 0) redraw = true; Config::set("proc_selected", line - y - 1); } else if (line == y + 1) { if (Proc::selection("page_up") == -1) return; } else if (line == y + height - 2) { if (Proc::selection("page_down") == -1) return; } else if (Proc::selection("mousey" + to_string(line - y - 2)) == -1) return; } else goto proc_mouse_scroll; } else if (key == "mouse_click" and Config::getI("proc_selected") > 0) { Config::set("proc_selected", 0); redraw = true; } else keep_going = true; } else if (key == "enter") { if (Config::getI("proc_selected") == 0 and not Config::getB("show_detailed")) { return; } else if (Config::getI("proc_selected") > 0 and Config::getI("detailed_pid") != Config::getI("selected_pid")) { Config::set("detailed_pid", Config::getI("selected_pid")); Config::set("proc_last_selected", Config::getI("proc_selected")); Config::set("proc_selected", 0); Config::set("show_detailed", true); } else if (Config::getB("show_detailed")) { if (Config::getI("proc_last_selected") > 0) Config::set("proc_selected", Config::getI("proc_last_selected")); Config::set("proc_last_selected", 0); Config::set("detailed_pid", 0); Config::set("show_detailed", false); } } else if (is_in(key, "+", "-", "space") and Config::getB("proc_tree") and Config::getI("proc_selected") > 0) { atomic_wait(Runner::active); auto& pid = Config::getI("selected_pid"); if (key == "+" or key == "space") Proc::expand = pid; if (key == "-" or key == "space") Proc::collapse = pid; no_update = false; } else if (is_in(key, "t", kill_key) and (Config::getB("show_detailed") or Config::getI("selected_pid") > 0)) { atomic_wait(Runner::active); if (Config::getB("show_detailed") and Config::getI("proc_selected") == 0 and Proc::detailed.status == "Dead") return; Menu::show(Menu::Menus::SignalSend, (key == "t" ? SIGTERM : SIGKILL)); return; } else if (key == "s" and (Config::getB("show_detailed") or Config::getI("selected_pid") > 0)) { atomic_wait(Runner::active); if (Config::getB("show_detailed") and Config::getI("proc_selected") == 0 and Proc::detailed.status == "Dead") return; Menu::show(Menu::Menus::SignalChoose); return; } else if (is_in(key, "up", "down", "page_up", "page_down", "home", "end") or (vim_keys and is_in(key, "j", "k", "g", "G"))) { proc_mouse_scroll: redraw = false; auto old_selected = Config::getI("proc_selected"); auto new_selected = Proc::selection(key); if (new_selected == -1) return; else if (old_selected != new_selected and (old_selected == 0 or new_selected == 0)) redraw = true; } else keep_going = true; if (not keep_going) { Runner::run("proc", no_update, redraw); return; } } //? Input actions for cpu box if (Cpu::shown) { bool keep_going = false; bool no_update = true; bool redraw = true; static uint64_t last_press = 0; if (key == "+" and Config::getI("update_ms") <= 86399900) { int add = (Config::getI("update_ms") <= 86399000 and last_press >= time_ms() - 200 and rng::all_of(Input::history, [](const auto& str){ return str == "+"; }) ? 1000 : 100); Config::set("update_ms", Config::getI("update_ms") + add); last_press = time_ms(); redraw = true; } else if (key == "-" and Config::getI("update_ms") >= 200) { int sub = (Config::getI("update_ms") >= 2000 and last_press >= time_ms() - 200 and rng::all_of(Input::history, [](const auto& str){ return str == "-"; }) ? 1000 : 100); Config::set("update_ms", Config::getI("update_ms") - sub); last_press = time_ms(); redraw = true; } else keep_going = true; if (not keep_going) { Runner::run("cpu", no_update, redraw); return; } } //? Input actions for mem box if (Mem::shown) { bool keep_going = false; bool no_update = true; bool redraw = true; if (key == "i") { Config::flip("io_mode"); } else if (key == "d") { Config::flip("show_disks"); no_update = false; Draw::calcSizes(); } else keep_going = true; if (not keep_going) { Runner::run("mem", no_update, redraw); return; } } //? Input actions for net box if (Net::shown) { bool keep_going = false; bool no_update = true; bool redraw = true; if (is_in(key, "b", "n")) { atomic_wait(Runner::active); int c_index = v_index(Net::interfaces, Net::selected_iface); if (c_index != (int)Net::interfaces.size()) { if (key == "b") { if (--c_index < 0) c_index = Net::interfaces.size() - 1; } else if (key == "n") { if (++c_index == (int)Net::interfaces.size()) c_index = 0; } Net::selected_iface = Net::interfaces.at(c_index); Net::rescale = true; } } else if (key == "y") { Config::flip("net_sync"); Net::rescale = true; } else if (key == "a") { Config::flip("net_auto"); Net::rescale = true; } else if (key == "z") { atomic_wait(Runner::active); auto& ndev = Net::current_net.at(Net::selected_iface); if (ndev.stat.at("download").offset + ndev.stat.at("upload").offset > 0) { ndev.stat.at("download").offset = 0; ndev.stat.at("upload").offset = 0; } else { ndev.stat.at("download").offset = ndev.stat.at("download").last + ndev.stat.at("download").rollover; ndev.stat.at("upload").offset = ndev.stat.at("upload").last + ndev.stat.at("upload").rollover; } no_update = false; } else keep_going = true; if (not keep_going) { Runner::run("net", no_update, redraw); return; } } } catch (const std::exception& e) { throw std::runtime_error("Input::process(\"" + key + "\") : " + string{e.what()}); } } } btop-1.3.0/src/btop_input.hpp000066400000000000000000000036121454653170500161560ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #pragma once #include #include #include #include #include using std::array; using std::atomic; using std::deque; using std::string; /* The input functions rely on the following termios parameters being set: Non-canonical mode (c_lflags & ~(ICANON)) VMIN and VTIME (c_cc) set to 0 These will automatically be set when running Term::init() from btop_tools.cpp */ //* Functions and variables for handling keyboard and mouse input namespace Input { struct Mouse_loc { int line, col, height, width; }; //? line, col, height, width extern std::unordered_map mouse_mappings; //* Signal mask used during polling read extern sigset_t signal_mask; extern atomic polling; //* Mouse column and line position extern array mouse_pos; //* Last entered key extern deque history; //* Poll keyboard & mouse input for ms and return input availabilty as a bool bool poll(const uint64_t timeout=0); //* Get a key or mouse action from input string get(); //* Wait until input is available and return key string wait(); //* Interrupt poll/wait void interrupt(); //* Clears last entered key void clear(); //* Process actions for input void process(const string& key); } btop-1.3.0/src/btop_menu.cpp000066400000000000000000001464551454653170500157730ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include #include #include #include #include #include #include #include "btop_menu.hpp" #include "btop_tools.hpp" #include "btop_config.hpp" #include "btop_theme.hpp" #include "btop_draw.hpp" #include "btop_shared.hpp" using std::array; using std::ceil; using std::max; using std::min; using std::ref; using std::views::iota; using namespace Tools; namespace fs = std::filesystem; namespace Menu { atomic active (false); string bg; bool redraw{true}; int currentMenu = -1; msgBox messageBox; int signalToSend{}; int signalKillRet{}; const array P_Signals = { "0", #ifdef __linux__ #if defined(__hppa__) "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGSTKFLT", "SIGFPE", "SIGKILL", "SIGBUS", "SIGSEGV", "SIGXCPU", "SIGPIPE", "SIGALRM", "SIGTERM", "SIGUSR1", "SIGUSR2", "SIGCHLD", "SIGPWR", "SIGVTALRM", "SIGPROF", "SIGIO", "SIGWINCH", "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGTTIN", "SIGTTOU", "SIGURG", "SIGXFSZ", "SIGSYS" #elif defined(__mips__) "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGEMT", "SIGFPE", "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", "SIGPIPE", "SIGALRM", "SIGTERM", "SIGUSR1", "SIGUSR2", "SIGCHLD", "SIGPWR", "SIGWINCH", "SIGURG", "SIGIO", "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGTTIN", "SIGTTOU", "SIGVTALRM", "SIGPROF", "SIGXCPU", "SIGXFSZ" #elif defined(__alpha__) "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGEMT", "SIGFPE", "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", "SIGPIPE", "SIGALRM", "SIGTERM", "SIGURG", "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGCHLD", "SIGTTIN", "SIGTTOU", "SIGIO", "SIGXCPU", "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH", "SIGPWR", "SIGUSR1", "SIGUSR2" #elif defined (__sparc__) "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGEMT", "SIGFPE", "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", "SIGPIPE", "SIGALRM", "SIGTERM", "SIGURG", "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGCHLD", "SIGTTIN", "SIGTTOU", "SIGIO", "SIGXCPU", "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH", "SIGLOST", "SIGUSR1", "SIGUSR2" #else "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGBUS", "SIGFPE", "SIGKILL", "SIGUSR1", "SIGSEGV", "SIGUSR2", "SIGPIPE", "SIGALRM", "SIGTERM", "SIGSTKFLT", "SIGCHLD", "SIGCONT", "SIGSTOP", "SIGTSTP", "SIGTTIN", "SIGTTOU", "SIGURG", "SIGXCPU", "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH", "SIGIO", "SIGPWR", "SIGSYS" #endif #elif defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__APPLE__) "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "SIGEMT", "SIGFPE", "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", "SIGPIPE", "SIGALRM", "SIGTERM", "SIGURG", "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGCHLD", "SIGTTIN", "SIGTTOU", "SIGIO", "SIGXCPU", "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH", "SIGINFO", "SIGUSR1", "SIGUSR2" #else "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", "SIGTRAP", "SIGABRT", "7", "SIGFPE", "SIGKILL", "10", "SIGSEGV", "12", "SIGPIPE", "SIGALRM", "SIGTERM", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31" #endif }; std::unordered_map mouse_mappings; const array, 3> menu_normal = { array{ "┌─┐┌─┐┌┬┐┬┌─┐┌┐┌┌─┐", "│ │├─┘ │ ││ ││││└─┐", "└─┘┴ ┴ ┴└─┘┘└┘└─┘" }, { "┬ ┬┌─┐┬ ┌─┐", "├─┤├┤ │ ├─┘", "┴ ┴└─┘┴─┘┴ " }, { "┌─┐ ┬ ┬ ┬┌┬┐", "│─┼┐│ │ │ │ ", "└─┘└└─┘ ┴ ┴ " } }; const array, 3> menu_selected = { array{ "╔═╗╔═╗╔╦╗╦╔═╗╔╗╔╔═╗", "║ ║╠═╝ ║ ║║ ║║║║╚═╗", "╚═╝╩ ╩ ╩╚═╝╝╚╝╚═╝" }, { "╦ ╦╔═╗╦ ╔═╗", "╠═╣║╣ ║ ╠═╝", "╩ ╩╚═╝╩═╝╩ " }, { "╔═╗ ╦ ╦ ╦╔╦╗ ", "║═╬╗║ ║ ║ ║ ", "╚═╝╚╚═╝ ╩ ╩ " } }; const array menu_width = {19, 12, 12}; const vector> help_text = { {"Mouse 1", "Clicks buttons and selects in process list."}, {"Mouse scroll", "Scrolls any scrollable list/text under cursor."}, {"Esc, m", "Toggles main menu."}, {"p", "Cycle view presets forwards."}, {"shift + p", "Cycle view presets backwards."}, {"1", "Toggle CPU box."}, {"2", "Toggle MEM box."}, {"3", "Toggle NET box."}, {"4", "Toggle PROC box."}, {"5", "Toggle GPU box."}, {"d", "Toggle disks view in MEM box."}, {"F2, o", "Shows options."}, {"F1, ?, h", "Shows this window."}, {"ctrl + z", "Sleep program and put in background."}, {"q, ctrl + c", "Quits program."}, {"+, -", "Add/Subtract 100ms to/from update timer."}, {"Up, Down", "Select in process list."}, {"Enter", "Show detailed information for selected process."}, {"Spacebar", "Expand/collapse the selected process in tree view."}, {"Pg Up, Pg Down", "Jump 1 page in process list."}, {"Home, End", "Jump to first or last page in process list."}, {"Left, Right", "Select previous/next sorting column."}, {"b, n", "Select previous/next network device."}, {"i", "Toggle disks io mode with big graphs."}, {"z", "Toggle totals reset for current network device"}, {"a", "Toggle auto scaling for the network graphs."}, {"y", "Toggle synced scaling mode for network graphs."}, {"f, /", "To enter a process filter."}, {"delete", "Clear any entered filter."}, {"c", "Toggle per-core cpu usage of processes."}, {"r", "Reverse sorting order in processes box."}, {"e", "Toggle processes tree view."}, {"%", "Toggles memory display mode in processes box."}, {"Selected +, -", "Expand/collapse the selected process in tree view."}, {"Selected t", "Terminate selected process with SIGTERM - 15."}, {"Selected k", "Kill selected process with SIGKILL - 9."}, {"Selected s", "Select or enter signal to send to process."}, {"", " "}, {"", "For bug reporting and project updates, visit:"}, {"", "https://github.com/aristocratos/btop"}, }; const vector>> categories = { { {"color_theme", "Set color theme.", "", "Choose from all theme files in (usually)", "\"/usr/[local/]share/btop/themes\" and", "\"~/.config/btop/themes\".", "", "\"Default\" for builtin default theme.", "\"TTY\" for builtin 16-color theme.", "", "For theme updates see:", "https://github.com/aristocratos/btop"}, {"theme_background", "If the theme set background should be shown.", "", "Set to False if you want terminal background", "transparency."}, {"truecolor", "Sets if 24-bit truecolor should be used.", "", "Will convert 24-bit colors to 256 color", "(6x6x6 color cube) if False.", "", "Set to False if your terminal doesn't have", "truecolor support and can't convert to", "256-color."}, {"force_tty", "TTY mode.", "", "Set to true to force tty mode regardless", "if a real tty has been detected or not.", "", "Will force 16-color mode and TTY theme,", "set all graph symbols to \"tty\" and swap", "out other non tty friendly symbols."}, {"vim_keys", "Enable vim keys.", "Set to True to enable \"h,j,k,l\" keys for", "directional control in lists.", "", "Conflicting keys for", "h (help) and k (kill)", "is accessible while holding shift."}, {"presets", "Define presets for the layout of the boxes.", "", "Preset 0 is always all boxes shown with", "default settings.", "Max 9 presets.", "", "Format: \"box_name:P:G,box_name:P:G\"", "P=(0 or 1) for alternate positions.", "G=graph symbol to use for box.", "", "Use whitespace \" \" as separator between", "different presets.", "", "Example:", "\"mem:0:tty,proc:1:default cpu:0:braille\""}, {"shown_boxes", "Manually set which boxes to show.", "", "Available values are \"cpu mem net proc\".", #ifdef GPU_SUPPORT "Or \"gpu0\" through \"gpu5\" for GPU boxes.", #endif "Separate values with whitespace.", "", "Toggle between presets with key \"p\"."}, {"update_ms", "Update time in milliseconds.", "", "Recommended 2000 ms or above for better", "sample times for graphs.", "", "Min value: 100 ms", "Max value: 86400000 ms = 24 hours."}, {"rounded_corners", "Rounded corners on boxes.", "", "True or False", "", "Is always False if TTY mode is ON."}, {"graph_symbol", "Default symbols to use for graph creation.", "", "\"braille\", \"block\" or \"tty\".", "", "\"braille\" offers the highest resolution but", "might not be included in all fonts.", "", "\"block\" has half the resolution of braille", "but uses more common characters.", "", "\"tty\" uses only 3 different symbols but will", "work with most fonts.", "", "Note that \"tty\" only has half the horizontal", "resolution of the other two,", "so will show a shorter historical view."}, {"clock_format", "Draw a clock at top of screen.", "(Only visible if cpu box is enabled!)", "", "Formatting according to strftime, empty", "string to disable.", "", "Custom formatting options:", "\"/host\" = hostname", "\"/user\" = username", "\"/uptime\" = system uptime", "", "Examples of strftime formats:", "\"%X\" = locale HH:MM:SS", "\"%H\" = 24h hour, \"%I\" = 12h hour", "\"%M\" = minute, \"%S\" = second", "\"%d\" = day, \"%m\" = month, \"%y\" = year"}, {"base_10_sizes", "Use base 10 for bits and bytes sizes.", "", "Uses KB = 1000 instead of KiB = 1024,", "MB = 1000KB instead of MiB = 1024KiB,", "and so on.", "", "True or False."}, {"background_update", "Update main ui when menus are showing.", "", "True or False.", "", "Set this to false if the menus is flickering", "too much for a comfortable experience."}, {"show_battery", "Show battery stats.", "(Only visible if cpu box is enabled!)", "", "Show battery stats in the top right corner", "if a battery is present."}, {"selected_battery", "Select battery.", "", "Which battery to use if multiple are present.", "Can be both batteries and UPS.", "", "\"Auto\" for auto detection."}, {"log_level", "Set loglevel for error.log", "", "\"ERROR\", \"WARNING\", \"INFO\" and \"DEBUG\".", "", "The level set includes all lower levels,", "i.e. \"DEBUG\" will show all logging info."} }, { {"cpu_bottom", "Cpu box location.", "", "Show cpu box at bottom of screen instead", "of top."}, {"graph_symbol_cpu", "Graph symbol to use for graphs in cpu box.", "", "\"default\", \"braille\", \"block\" or \"tty\".", "", "\"default\" for the general default symbol.",}, {"cpu_graph_upper", "Cpu upper graph.", "", "Sets the CPU/GPU stat shown in upper half of", "the CPU graph.", "", "CPU:", "\"total\" = Total cpu usage. (Auto)", "\"user\" = User mode cpu usage.", "\"system\" = Kernel mode cpu usage.", "+ more depending on kernel.", #ifdef GPU_SUPPORT "", "GPU:", "\"gpu-totals\" = GPU usage split by device.", "\"gpu-vram-totals\" = VRAM usage split by GPU.", "\"gpu-pwr-totals\" = Power usage split by GPU.", "\"gpu-average\" = Avg usage of all GPUs.", "\"gpu-vram-total\" = VRAM usage of all GPUs.", "\"gpu-pwr-total\" = Power usage of all GPUs.", "Not all stats are supported on all devices." #endif }, {"cpu_graph_lower", "Cpu lower graph.", "", "Sets the CPU/GPU stat shown in lower half of", "the CPU graph.", "", "CPU:", "\"total\" = Total cpu usage.", "\"user\" = User mode cpu usage.", "\"system\" = Kernel mode cpu usage.", "+ more depending on kernel.", #ifdef GPU_SUPPORT "", "GPU:", "\"gpu-totals\" = GPU usage split/device. (Auto)", "\"gpu-vram-totals\" = VRAM usage split by GPU.", "\"gpu-pwr-totals\" = Power usage split by GPU.", "\"gpu-average\" = Avg usage of all GPUs.", "\"gpu-vram-total\" = VRAM usage of all GPUs.", "\"gpu-pwr-total\" = Power usage of all GPUs.", "Not all stats are supported on all devices." #endif }, {"cpu_invert_lower", "Toggles orientation of the lower CPU graph.", "", "True or False."}, {"cpu_single_graph", "Completely disable the lower CPU graph.", "", "Shows only upper CPU graph and resizes it", "to fit to box height.", "", "True or False."}, #ifdef GPU_SUPPORT {"show_gpu_info", "Show gpu info in cpu box.", "", "Toggles gpu stats in cpu box and the", "gpu graph (if \"cpu_graph_lower\" is set to", "\"Auto\").", "", "\"Auto\" to show when no gpu box is shown.", "\"On\" to always show.", "\"Off\" to never show."}, #endif {"check_temp", "Enable cpu temperature reporting.", "", "True or False."}, {"cpu_sensor", "Cpu temperature sensor.", "", "Select the sensor that corresponds to", "your cpu temperature.", "", "Set to \"Auto\" for auto detection."}, {"show_coretemp", "Show temperatures for cpu cores.", "", "Only works if check_temp is True and", "the system is reporting core temps."}, {"cpu_core_map", "Custom mapping between core and coretemp.", "", "Can be needed on certain cpus to get correct", "temperature for correct core.", "", "Use lm-sensors or similar to see which cores", "are reporting temperatures on your machine.", "", "Format: \"X:Y\"", "X=core with wrong temp.", "Y=core with correct temp.", "Use space as separator between multiple", "entries.", "", "Example: \"4:0 5:1 6:3\""}, {"temp_scale", "Which temperature scale to use.", "", "Celsius, default scale.", "", "Fahrenheit, the american one.", "", "Kelvin, 0 = absolute zero, 1 degree change", "equals 1 degree change in Celsius.", "", "Rankine, 0 = abosulte zero, 1 degree change", "equals 1 degree change in Fahrenheit."}, {"show_cpu_freq", "Show CPU frequency.", "", "Can cause slowdowns on systems with many", "cores and certain kernel versions."}, {"custom_cpu_name", "Custom cpu model name in cpu percentage box.", "", "Empty string to disable."}, {"show_uptime", "Shows the system uptime in the CPU box.", "", "Can also be shown in the clock by using", "\"/uptime\" in the formatting.", "", "True or False."}, }, #ifdef GPU_SUPPORT { {"nvml_measure_pcie_speeds", "Measure PCIe throughput on NVIDIA cards.", "", "May impact performance on certain cards.", "", "True or False."}, {"graph_symbol_gpu", "Graph symbol to use for graphs in gpu box.", "", "\"default\", \"braille\", \"block\" or \"tty\".", "", "\"default\" for the general default symbol.",}, {"gpu_mirror_graph", "Horizontally mirror the GPU graph.", "", "True or False."}, {"custom_gpu_name0", "Custom gpu0 model name in gpu stats box.", "", "Empty string to disable."}, {"custom_gpu_name1", "Custom gpu1 model name in gpu stats box.", "", "Empty string to disable."}, {"custom_gpu_name2", "Custom gpu2 model name in gpu stats box.", "", "Empty string to disable."}, {"custom_gpu_name3", "Custom gpu3 model name in gpu stats box.", "", "Empty string to disable."}, {"custom_gpu_name4", "Custom gpu4 model name in gpu stats box.", "", "Empty string to disable."}, {"custom_gpu_name5", "Custom gpu5 model name in gpu stats box.", "", "Empty string to disable."}, }, #endif { {"mem_below_net", "Mem box location.", "", "Show mem box below net box instead of above."}, {"graph_symbol_mem", "Graph symbol to use for graphs in mem box.", "", "\"default\", \"braille\", \"block\" or \"tty\".", "", "\"default\" for the general default symbol.",}, {"mem_graphs", "Show graphs for memory values.", "", "True or False."}, {"show_disks", "Split memory box to also show disks.", "", "True or False."}, {"show_io_stat", "Toggle IO activity graphs.", "", "Show small IO graphs that for disk activity", "(disk busy time) when not in IO mode.", "", "True or False."}, {"io_mode", "Toggles io mode for disks.", "", "Shows big graphs for disk read/write speeds", "instead of used/free percentage meters.", "", "True or False."}, {"io_graph_combined", "Toggle combined read and write graphs.", "", "Only has effect if \"io mode\" is True.", "", "True or False."}, {"io_graph_speeds", "Set top speeds for the io graphs.", "", "Manually set which speed in MiB/s that", "equals 100 percent in the io graphs.", "(100 MiB/s by default).", "", "Format: \"device:speed\" separate disks with", "whitespace \" \".", "", "Example: \"/dev/sda:100, /dev/sdb:20\"."}, {"show_swap", "If swap memory should be shown in memory box.", "", "True or False."}, {"swap_disk", "Show swap as a disk.", "", "Ignores show_swap value above.", "Inserts itself after first disk."}, {"only_physical", "Filter out non physical disks.", "", "Set this to False to include network disks,", "RAM disks and similar.", "", "True or False."}, {"use_fstab", "(Linux) Read disks list from /etc/fstab.", "", "This also disables only_physical.", "", "True or False."}, {"zfs_hide_datasets", "(Linux) Hide ZFS datasets in disks list.", "", "Setting this to True will hide all datasets,", "and only show ZFS pools.", "", "(IO stats will be calculated per-pool)", "", "True or False."}, {"disk_free_priv", "(Linux) Type of available disk space.", "", "Set to true to show how much disk space is", "available for privileged users.", "", "Set to false to show available for normal", "users."}, {"disks_filter", "Optional filter for shown disks.", "", "Should be full path of a mountpoint.", "Separate multiple values with", "whitespace \" \".", "", "Begin line with \"exclude=\" to change to", "exclude filter.", "Oterwise defaults to \"most include\" filter.", "", "Example:", "\"exclude=/boot /home/user\""}, {"zfs_arc_cached", "(Linux) Count ZFS ARC as cached memory.", "", "Add ZFS ARC used to cached memory and", "ZFS ARC available to available memory.", "These are otherwise reported by the Linux", "kernel as used memory.", "", "True or False."}, }, { {"graph_symbol_net", "Graph symbol to use for graphs in net box.", "", "\"default\", \"braille\", \"block\" or \"tty\".", "", "\"default\" for the general default symbol.",}, {"net_download", "Fixed network graph download value.", "", "Value in Mebibits, default \"100\".", "", "Can be toggled with auto button."}, {"net_upload", "Fixed network graph upload value.", "", "Value in Mebibits, default \"100\".", "", "Can be toggled with auto button."}, {"net_auto", "Start in network graphs auto rescaling mode.", "", "Ignores any values set above at start and", "rescales down to 10Kibibytes at the lowest.", "", "True or False."}, {"net_sync", "Network scale sync.", "", "Syncs the scaling for download and upload to", "whichever currently has the highest scale.", "", "True or False."}, {"net_iface", "Network Interface.", "", "Manually set the starting Network Interface.", "", "Will otherwise automatically choose the NIC", "with the highest total download since boot."}, }, { {"proc_left", "Proc box location.", "", "Show proc box on left side of screen", "instead of right."}, {"graph_symbol_proc", "Graph symbol to use for graphs in proc box.", "", "\"default\", \"braille\", \"block\" or \"tty\".", "", "\"default\" for the general default symbol.",}, {"proc_sorting", "Processes sorting option.", "", "Possible values:", "\"pid\", \"program\", \"arguments\", \"threads\",", "\"user\", \"memory\", \"cpu lazy\" and", "\"cpu direct\".", "", "\"cpu lazy\" updates top process over time.", "\"cpu direct\" updates top process", "directly."}, {"proc_reversed", "Reverse processes sorting order.", "", "True or False."}, {"proc_tree", "Processes tree view.", "", "Set true to show processes grouped by", "parents with lines drawn between parent", "and child process."}, {"proc_aggregate", "Aggregate child's resources in parent.", "", "In tree-view, include all child resources", "with the parent even while expanded."}, {"proc_colors", "Enable colors in process view.", "", "True or False."}, {"proc_gradient", "Enable process view gradient fade.", "", "Fades from top or current selection.", "Max fade value is equal to current themes", "\"inactive_fg\" color value."}, {"proc_per_core", "Process usage per core.", "", "If process cpu usage should be of the core", "it's running on or usage of the total", "available cpu power.", "", "If true and process is multithreaded", "cpu usage can reach over 100%."}, {"proc_mem_bytes", "Show memory as bytes in process list.", " ", "Will show percentage of total memory", "if False."}, {"proc_cpu_graphs", "Show cpu graph for each process.", "", "True or False"}, {"proc_filter_kernel", "(Linux) Filter kernel processes from output.", "", "Set to 'True' to filter out internal", "processes started by the Linux kernel."}, } }; msgBox::msgBox() {} msgBox::msgBox(int width, int boxtype, vector content, string title) : width(width), boxtype(boxtype) { auto tty_mode = Config::getB("tty_mode"); auto rounded = Config::getB("rounded_corners"); const auto& right_up = (tty_mode or not rounded ? Symbols::right_up : Symbols::round_right_up); const auto& left_up = (tty_mode or not rounded ? Symbols::left_up : Symbols::round_left_up); const auto& right_down = (tty_mode or not rounded ? Symbols::right_down : Symbols::round_right_down); const auto& left_down = (tty_mode or not rounded ? Symbols::left_down : Symbols::round_left_down); height = content.size() + 7; x = Term::width / 2 - width / 2; y = Term::height/2 - height/2; if (boxtype == 2) selected = 1; button_left = left_up + Symbols::h_line * 6 + Mv::l(7) + Mv::d(2) + left_down + Symbols::h_line * 6 + Mv::l(7) + Mv::u(1) + Symbols::v_line; button_right = Symbols::v_line + Mv::l(7) + Mv::u(1) + Symbols::h_line * 6 + right_up + Mv::l(7) + Mv::d(2) + Symbols::h_line * 6 + right_down + Mv::u(2); box_contents = Draw::createBox(x, y, width, height, Theme::c("hi_fg"), true, title) + Mv::d(1); for (const auto& line : content) { box_contents += Mv::save + Mv::r(max((size_t)0, (width / 2) - (Fx::uncolor(line).size() / 2) - 1)) + line + Mv::restore + Mv::d(1); } } string msgBox::operator()() { string out; int pos = width / 2 - (boxtype == 0 ? 6 : 14); auto& first_color = (selected == 0 ? Theme::c("hi_fg") : Theme::c("div_line")); out = Mv::d(1) + Mv::r(pos) + Fx::b + first_color + button_left + (selected == 0 ? Theme::c("title") : Theme::c("main_fg") + Fx::ub) + (boxtype == 0 ? " Ok " : " Yes ") + first_color + button_right; mouse_mappings["button1"] = Input::Mouse_loc{y + height - 4, x + pos + 1, 3, 12 + (boxtype > 0 ? 1 : 0)}; if (boxtype > 0) { auto& second_color = (selected == 1 ? Theme::c("hi_fg") : Theme::c("div_line")); out += Mv::r(2) + second_color + button_left + (selected == 1 ? Theme::c("title") : Theme::c("main_fg") + Fx::ub) + " No " + second_color + button_right; mouse_mappings["button2"] = Input::Mouse_loc{y + height - 4, x + pos + 15 + (boxtype > 0 ? 1 : 0), 3, 12}; } return box_contents + out + Fx::reset; } //? Process input int msgBox::input(string key) { if (key.empty()) return Invalid; if (is_in(key, "escape", "backspace", "q") or key == "button2") { return No_Esc; } else if (key == "button1" or (boxtype == 0 and str_to_upper(key) == "O")) { return Ok_Yes; } else if (is_in(key, "enter", "space")) { return selected + 1; } else if (boxtype == 0) { return Invalid; } else if (str_to_upper(key) == "Y") { return Ok_Yes; } else if (str_to_upper(key) == "N") { return No_Esc; } else if (is_in(key, "right", "tab")) { if (++selected > 1) selected = 0; return Select; } else if (is_in(key, "left", "shift_tab")) { if (--selected < 0) selected = 1; return Select; } return Invalid; } void msgBox::clear() { box_contents.clear(); box_contents.shrink_to_fit(); button_left.clear(); button_left.shrink_to_fit(); button_right.clear(); button_right.shrink_to_fit(); if (mouse_mappings.contains("button1")) mouse_mappings.erase("button1"); if (mouse_mappings.contains("button2")) mouse_mappings.erase("button2"); } enum menuReturnCodes { NoChange, Changed, Closed, Switch }; int signalChoose(const string& key) { auto s_pid = (Config::getB("show_detailed") and Config::getI("selected_pid") == 0 ? Config::getI("detailed_pid") : Config::getI("selected_pid")); static int x{}; static int y{}; static int selected_signal = -1; if (bg.empty()) selected_signal = -1; auto& out = Global::overlay; int retval = Changed; if (redraw) { x = Term::width/2 - 40; y = Term::height/2 - 9; bg = Draw::createBox(x + 2, y, 78, 19, Theme::c("hi_fg"), true, "signals"); bg += Mv::to(y+2, x+3) + Theme::c("title") + Fx::b + cjust("Send signal to PID " + to_string(s_pid) + " (" + uresize((s_pid == Config::getI("detailed_pid") ? Proc::detailed.entry.name : Config::getS("selected_name")), 30) + ")", 76); } else if (is_in(key, "escape", "q")) { return Closed; } else if (key.starts_with("button_")) { if (int new_select = stoi(key.substr(7)); new_select == selected_signal) goto ChooseEntering; else selected_signal = new_select; } else if (is_in(key, "enter", "space") and selected_signal >= 0) { ChooseEntering: signalKillRet = 0; if (s_pid < 1) { signalKillRet = ESRCH; menuMask.set(SignalReturn); } else if (kill(s_pid, selected_signal) != 0) { signalKillRet = errno; menuMask.set(SignalReturn); } return Closed; } else if (key.size() == 1 and isdigit(key.at(0)) and selected_signal < 10) { selected_signal = std::min(std::stoi((selected_signal < 1 ? key : to_string(selected_signal) + key)), 64); } else if (key == "backspace" and selected_signal != -1) { selected_signal = (selected_signal < 10 ? -1 : selected_signal / 10); } else if (is_in(key, "up", "k") and selected_signal != 16) { if (selected_signal == 1) selected_signal = 31; else if (selected_signal < 6) selected_signal += 25; else { bool offset = (selected_signal > 16); selected_signal -= 5; if (selected_signal <= 16 and offset) selected_signal--; } } else if (is_in(key, "down", "j")) { if (selected_signal == 31) selected_signal = 1; else if (selected_signal < 1 or selected_signal == 16) selected_signal = 1; else if (selected_signal > 26) selected_signal -= 25; else { bool offset = (selected_signal < 16); selected_signal += 5; if (selected_signal >= 16 and offset) selected_signal++; if (selected_signal > 31) selected_signal = 31; } } else if (is_in(key, "left", "h") and selected_signal > 0 and selected_signal != 16) { if (--selected_signal < 1) selected_signal = 31; else if (selected_signal == 16) selected_signal--; } else if (is_in(key, "right", "l") and selected_signal <= 31 and selected_signal != 16) { if (++selected_signal > 31) selected_signal = 1; else if (selected_signal == 16) selected_signal++; } else { retval = NoChange; } if (retval == Changed) { int cy = y+4, cx = x+4; out = bg + Mv::to(cy++, x+3) + Theme::c("main_fg") + Fx::ub + rjust("Enter signal number: ", 48) + Theme::c("hi_fg") + (selected_signal >= 0 ? to_string(selected_signal) : "") + Theme::c("main_fg") + Fx::bl + "█" + Fx::ubl; auto sig_str = to_string(selected_signal); for (int count = 0, i = 0; const auto& sig : P_Signals) { if (count == 0 or count == 16) { count++; continue; } if (i++ % 5 == 0) { ++cy; cx = x+4; } out += Mv::to(cy, cx); if (count == selected_signal) out += Theme::c("selected_bg") + Theme::c("selected_fg") + Fx::b + ljust(to_string(count), 3) + ljust('(' + sig + ')', 12) + Fx::reset; else out += Theme::c("hi_fg") + ljust(to_string(count), 3) + Theme::c("main_fg") + ljust('(' + sig + ')', 12); if (redraw) mouse_mappings["button_" + to_string(count)] = {cy, cx, 1, 15}; count++; cx += 15; } cy++; out += Mv::to(++cy, x+3) + Fx::b + Theme::c("hi_fg") + rjust( "↑ ↓ ← →", 33, true) + Theme::c("main_fg") + Fx::ub + " | To choose signal."; out += Mv::to(++cy, x+3) + Fx::b + Theme::c("hi_fg") + rjust("0-9", 33) + Theme::c("main_fg") + Fx::ub + " | Enter manually."; out += Mv::to(++cy, x+3) + Fx::b + Theme::c("hi_fg") + rjust("ENTER", 33) + Theme::c("main_fg") + Fx::ub + " | To send signal."; mouse_mappings["enter"] = {cy, x, 1, 73}; out += Mv::to(++cy, x+3) + Fx::b + Theme::c("hi_fg") + rjust("ESC or \"q\"", 33) + Theme::c("main_fg") + Fx::ub + " | To abort."; mouse_mappings["escape"] = {cy, x, 1, 73}; out += Fx::reset; } return (redraw ? Changed : retval); } int sizeError(const string& key) { if (redraw) { vector cont_vec; cont_vec.push_back(Fx::b + Theme::g("used")[100] + "Error:" + Theme::c("main_fg") + Fx::ub); cont_vec.push_back("Terminal size to small to" + Fx::reset); cont_vec.push_back("display menu or box!" + Fx::reset); messageBox = Menu::msgBox{45, 0, cont_vec, "error"}; Global::overlay = messageBox(); } auto ret = messageBox.input(key); if (ret == msgBox::Ok_Yes or ret == msgBox::No_Esc) { messageBox.clear(); return Closed; } else if (redraw) { return Changed; } return NoChange; } int signalSend(const string& key) { auto s_pid = (Config::getB("show_detailed") and Config::getI("selected_pid") == 0 ? Config::getI("detailed_pid") : Config::getI("selected_pid")); if (s_pid == 0) return Closed; if (redraw) { atomic_wait(Runner::active); auto& p_name = (s_pid == Config::getI("detailed_pid") ? Proc::detailed.entry.name : Config::getS("selected_name")); vector cont_vec = { Fx::b + Theme::c("main_fg") + "Send signal: " + Fx::ub + Theme::c("hi_fg") + to_string(signalToSend) + (signalToSend > 0 and signalToSend <= 32 ? Theme::c("main_fg") + " (" + P_Signals.at(signalToSend) + ')' : ""), Fx::b + Theme::c("main_fg") + "To PID: " + Fx::ub + Theme::c("hi_fg") + to_string(s_pid) + Theme::c("main_fg") + " (" + uresize(p_name, 16) + ')' + Fx::reset, }; messageBox = Menu::msgBox{50, 1, cont_vec, (signalToSend > 1 and signalToSend <= 32 and signalToSend != 17 ? P_Signals.at(signalToSend) : "signal")}; Global::overlay = messageBox(); } auto ret = messageBox.input(key); if (ret == msgBox::Ok_Yes) { signalKillRet = 0; if (kill(s_pid, signalToSend) != 0) { signalKillRet = errno; menuMask.set(SignalReturn); } messageBox.clear(); return Closed; } else if (ret == msgBox::No_Esc) { messageBox.clear(); return Closed; } else if (ret == msgBox::Select) { Global::overlay = messageBox(); return Changed; } else if (redraw) { return Changed; } return NoChange; } int signalReturn(const string& key) { if (redraw) { vector cont_vec; cont_vec.push_back(Fx::b + Theme::g("used")[100] + "Failure:" + Theme::c("main_fg") + Fx::ub); if (signalKillRet == EINVAL) { cont_vec.push_back("Unsupported signal!" + Fx::reset); } else if (signalKillRet == EPERM) { cont_vec.push_back("Insufficient permissions to send signal!" + Fx::reset); } else if (signalKillRet == ESRCH) { cont_vec.push_back("Process not found!" + Fx::reset); } else { cont_vec.push_back("Unknown error! (errno: " + to_string(signalKillRet) + ')' + Fx::reset); } messageBox = Menu::msgBox{50, 0, cont_vec, "error"}; Global::overlay = messageBox(); } auto ret = messageBox.input(key); if (ret == msgBox::Ok_Yes or ret == msgBox::No_Esc) { messageBox.clear(); return Closed; } else if (redraw) { return Changed; } return NoChange; } int mainMenu(const string& key) { enum MenuItems { Options, Help, Quit }; static int y{}; static int selected{}; static vector colors_selected; static vector colors_normal; auto tty_mode = Config::getB("tty_mode"); if (bg.empty()) selected = 0; int retval = Changed; if (redraw) { y = Term::height/2 - 10; bg = Draw::banner_gen(y, 0, true); if (not tty_mode) { colors_selected = { Theme::hex_to_color(Global::Banner_src.at(0).at(0)), Theme::hex_to_color(Global::Banner_src.at(2).at(0)), Theme::hex_to_color(Global::Banner_src.at(4).at(0)) }; colors_normal = { Theme::hex_to_color("#CC"), Theme::hex_to_color("#AA"), Theme::hex_to_color("#80") }; } } else if (is_in(key, "escape", "q", "m", "mouse_click")) { return Closed; } else if (key.starts_with("button_")) { if (int new_select = key.back() - '0'; new_select == selected) goto MainEntering; else selected = new_select; } else if (is_in(key, "enter", "space")) { MainEntering: switch (selected) { case Options: menuMask.set(Menus::Options); currentMenu = Menus::Options; return Switch; case Help: menuMask.set(Menus::Help); currentMenu = Menus::Help; return Switch; case Quit: clean_quit(0); } } else if (is_in(key, "down", "tab", "mouse_scroll_down", "j")) { if (++selected > 2) selected = 0; } else if (is_in(key, "up", "shift_tab", "mouse_scroll_up", "k")) { if (--selected < 0) selected = 2; } else { retval = NoChange; } if (retval == Changed) { auto& out = Global::overlay; out = bg + Fx::reset + Fx::b; auto cy = y + 7; for (const auto& i : iota(0, 3)) { if (tty_mode) out += (i == selected ? Theme::c("hi_fg") : Theme::c("main_fg")); const auto& menu = (not tty_mode and i == selected ? menu_selected[i] : menu_normal[i]); const auto& colors = (i == selected ? colors_selected : colors_normal); if (redraw) mouse_mappings["button_" + to_string(i)] = {cy, Term::width/2 - menu_width[i]/2, 3, menu_width[i]}; for (int ic = 0; const auto& line : menu) { out += Mv::to(cy++, Term::width/2 - menu_width[i]/2) + (tty_mode ? "" : colors[ic++]) + line; } } out += Fx::reset; } return (redraw ? Changed : retval); } int optionsMenu(const string& key) { enum Predispositions { isBool, isInt, isString, is2D, isBrowseable, isEditable}; static int y{}; static int x{}; static int height{}; static int page{}; static int pages{}; static int selected{}; static int select_max{}; static int item_height{}; static int selected_cat{}; static int max_items{}; static int last_sel{}; static bool editing{}; static Draw::TextEdit editor; static string warnings; static bitset<8> selPred; static const std::unordered_map>> optionsList = { {"color_theme", std::cref(Theme::themes)}, {"log_level", std::cref(Logger::log_levels)}, {"temp_scale", std::cref(Config::temp_scales)}, {"proc_sorting", std::cref(Proc::sort_vector)}, {"graph_symbol", std::cref(Config::valid_graph_symbols)}, {"graph_symbol_cpu", std::cref(Config::valid_graph_symbols_def)}, {"graph_symbol_mem", std::cref(Config::valid_graph_symbols_def)}, {"graph_symbol_net", std::cref(Config::valid_graph_symbols_def)}, {"graph_symbol_proc", std::cref(Config::valid_graph_symbols_def)}, {"cpu_graph_upper", std::cref(Cpu::available_fields)}, {"cpu_graph_lower", std::cref(Cpu::available_fields)}, {"cpu_sensor", std::cref(Cpu::available_sensors)}, {"selected_battery", std::cref(Config::available_batteries)}, #ifdef GPU_SUPPORT {"show_gpu_info", std::cref(Config::show_gpu_values)}, {"graph_symbol_gpu", std::cref(Config::valid_graph_symbols_def)}, #endif }; auto tty_mode = Config::getB("tty_mode"); auto vim_keys = Config::getB("vim_keys"); if (max_items == 0) { for (const auto& cat : categories) { if ((int)cat.size() > max_items) max_items = cat.size(); } } if (bg.empty()) { page = selected = selected_cat = last_sel = 0; redraw = true; Theme::updateThemes(); } int retval = Changed; bool recollect{}; bool screen_redraw{}; bool theme_refresh{}; //? Draw background if needed else process input if (redraw) { mouse_mappings.clear(); selPred.reset(); y = max(1, Term::height/2 - 3 - max_items); x = Term::width/2 - 39; height = min(Term::height - 7, max_items * 2 + 4); if (height % 2 != 0) height--; bg = Draw::banner_gen(y, 0, true) + Draw::createBox(x, y + 6, 78, height, Theme::c("hi_fg"), true, "tab" + Symbols::right) + Mv::to(y+8, x) + Theme::c("hi_fg") + Symbols::div_left + Theme::c("div_line") + Symbols::h_line * 29 + Symbols::div_up + Symbols::h_line * (78 - 32) + Theme::c("hi_fg") + Symbols::div_right + Mv::to(y+6+height - 1, x+30) + Symbols::div_down + Theme::c("div_line"); for (const auto& i : iota(0, height - 4)) { bg += Mv::to(y+9 + i, x + 30) + Symbols::v_line; } } else if (not warnings.empty() and not key.empty()) { auto ret = messageBox.input(key); if (ret == msgBox::msgReturn::Ok_Yes or ret == msgBox::msgReturn::No_Esc) { warnings.clear(); messageBox.clear(); } } else if (editing and not key.empty()) { if (is_in(key, "escape", "mouse_click")) { editor.clear(); editing = false; } else if (key == "enter") { const auto& option = categories[selected_cat][item_height * page + selected][0]; if (selPred.test(isString) and Config::stringValid(option, editor.text)) { Config::set(option, editor.text); if (option == "custom_cpu_name" or option.starts_with("custom_gpu_name")) screen_redraw = true; else if (is_in(option, "shown_boxes", "presets")) { screen_redraw = true; Config::current_preset = -1; } else if (option == "clock_format") { Draw::update_clock(true); screen_redraw = true; } else if (option == "cpu_core_map") { atomic_wait(Runner::active); Cpu::core_mapping = Cpu::get_core_mapping(); } } else if (selPred.test(isInt) and Config::intValid(option, editor.text)) { Config::set(option, stoi(editor.text)); } else warnings = Config::validError; editor.clear(); editing = false; } else if (not editor.command(key)) retval = NoChange; } else if (key == "mouse_click") { const auto [mouse_x, mouse_y] = Input::mouse_pos; if (mouse_x < x or mouse_x > x + 80 or mouse_y < y + 6 or mouse_y > y + 6 + height) { return Closed; } else if (mouse_x < x + 30 and mouse_y > y + 8) { auto m_select = ceil((double)(mouse_y - y - 8) / 2) - 1; if (selected != m_select) selected = m_select; else if (selPred.test(isEditable)) goto mouseEnter; else retval = NoChange; } } else if (is_in(key, "enter", "e", "E") and selPred.test(isEditable)) { mouseEnter: const auto& option = categories[selected_cat][item_height * page + selected][0]; editor = Draw::TextEdit{Config::getAsString(option), selPred.test(isInt)}; editing = true; mouse_mappings.clear(); } else if (is_in(key, "escape", "q", "o", "backspace")) { return Closed; } else if (is_in(key, "down", "mouse_scroll_down") or (vim_keys and key == "j")) { if (++selected > select_max or selected >= item_height) { if (page < pages - 1) page++; else if (pages > 1) page = 0; selected = 0; } } else if (is_in(key, "up", "mouse_scroll_up") or (vim_keys and key == "k")) { if (--selected < 0) { if (page > 0) page--; else if (pages > 1) page = pages - 1; selected = item_height - 1; } } else if (pages > 1 and key == "page_down") { if (++page >= pages) page = 0; selected = 0; } else if (pages > 1 and key == "page_up") { if (--page < 0) page = pages - 1; selected = 0; } else if (key == "tab") { if (++selected_cat >= (int)categories.size()) selected_cat = 0; page = selected = 0; } else if (key == "shift_tab") { if (--selected_cat < 0) selected_cat = (int)categories.size() - 1; page = selected = 0; } else if (is_in(key, "1", "2", "3", "4", "5", "6") or key.starts_with("select_cat_")) { selected_cat = key.back() - '0' - 1; page = selected = 0; } else if (is_in(key, "left", "right") or (vim_keys and is_in(key, "h", "l"))) { const auto& option = categories[selected_cat][item_height * page + selected][0]; if (selPred.test(isInt)) { const int mod = (option == "update_ms" ? 100 : 1); long value = Config::getI(option); if (key == "right" or (vim_keys and key == "l")) value += mod; else value -= mod; if (Config::intValid(option, to_string(value))) Config::set(option, static_cast(value)); else { warnings = Config::validError; } } else if (selPred.test(isBool)) { Config::flip(option); screen_redraw = true; if (option == "truecolor") { theme_refresh = true; Config::flip("lowcolor"); } else if (option == "force_tty") { theme_refresh = true; Config::flip("tty_mode"); } else if (is_in(option, "rounded_corners", "theme_background")) theme_refresh = true; else if (option == "background_update") { Runner::pause_output = false; } else if (option == "base_10_sizes") { recollect = true; } } else if (selPred.test(isBrowseable)) { auto& optList = optionsList.at(option).get(); int i = v_index(optList, Config::getS(option)); if ((key == "right" or (vim_keys and key == "l")) and ++i >= (int)optList.size()) i = 0; else if ((key == "left" or (vim_keys and key == "h")) and --i < 0) i = optList.size() - 1; Config::set(option, optList.at(i)); if (option == "color_theme") theme_refresh = true; else if (option == "log_level") { Logger::set(optList.at(i)); Logger::info("Logger set to " + optList.at(i)); } else if (is_in(option, "proc_sorting", "cpu_sensor", "show_gpu_info") or option.starts_with("graph_symbol") or option.starts_with("cpu_graph_")) screen_redraw = true; } else retval = NoChange; } else { retval = NoChange; } //? Draw the menu if (retval == Changed) { Config::unlock(); auto& out = Global::overlay; out = bg; item_height = min((int)categories[selected_cat].size(), (int)floor((double)(height - 4) / 2)); pages = ceil((double)categories[selected_cat].size() / item_height); if (page > pages - 1) page = pages - 1; select_max = min(item_height - 1, (int)categories[selected_cat].size() - 1 - item_height * page); if (selected > select_max) { selected = select_max; } //? Get variable properties for currently selected option if (selPred.none() or last_sel != (selected_cat << 8) + selected) { selPred.reset(); last_sel = (selected_cat << 8) + selected; const auto& selOption = categories[selected_cat][item_height * page + selected][0]; if (Config::ints.contains(selOption)) selPred.set(isInt); else if (Config::bools.contains(selOption)) selPred.set(isBool); else selPred.set(isString); if (not selPred.test(isString)) selPred.set(is2D); else if (optionsList.contains(selOption)) { selPred.set(isBrowseable); } if (not selPred.test(isBrowseable) and (selPred.test(isString) or selPred.test(isInt))) selPred.set(isEditable); } //? Category buttons out += Mv::to(y+7, x+4); #ifdef GPU_SUPPORT for (int i = 0; const auto& m : {"general", "cpu", "gpu", "mem", "net", "proc"}) { #else for (int i = 0; const auto& m : {"general", "cpu", "mem", "net", "proc"}) { #endif out += Fx::b + (i == selected_cat ? Theme::c("hi_fg") + '[' + Theme::c("title") + m + Theme::c("hi_fg") + ']' : Theme::c("hi_fg") + to_string(i + 1) + Theme::c("title") + m + ' ') #ifdef GPU_SUPPORT + Mv::r(7); #else + Mv::r(10); #endif if (string button_name = "select_cat_" + to_string(i + 1); not editing and not mouse_mappings.contains(button_name)) mouse_mappings[button_name] = {y+6, x+2 + 15*i, 3, 15}; i++; } if (pages > 1) { out += Mv::to(y+6 + height - 1, x+2) + Theme::c("hi_fg") + Symbols::title_left_down + Fx::b + Symbols::up + Theme::c("title") + " page " + to_string(page+1) + '/' + to_string(pages) + ' ' + Theme::c("hi_fg") + Symbols::down + Fx::ub + Symbols::title_right_down; } //? Option name and value auto cy = y+9; for (int c = 0, i = max(0, item_height * page); c++ < item_height and i < (int)categories[selected_cat].size(); i++) { const auto& option = categories[selected_cat][i][0]; const auto& value = (option == "color_theme" ? (string) fs::path(Config::getS("color_theme")).stem() : Config::getAsString(option)); out += Mv::to(cy++, x + 1) + (c-1 == selected ? Theme::c("selected_bg") + Theme::c("selected_fg") : Theme::c("title")) + Fx::b + cjust(capitalize(s_replace(option, "_", " ")) + (c-1 == selected and selPred.test(isBrowseable) ? ' ' + to_string(v_index(optionsList.at(option).get(), (option == "color_theme" ? Config::getS("color_theme") : value)) + 1) + '/' + to_string(optionsList.at(option).get().size()) : ""), 29); out += Mv::to(cy++, x + 1) + (c-1 == selected ? "" : Theme::c("main_fg")) + Fx::ub + " " + (c-1 == selected and editing ? cjust(editor(24), 34, true) : cjust(value, 25, true)) + " "; if (c-1 == selected) { if (not editing and (selPred.test(is2D) or selPred.test(isBrowseable))) { out += Fx::b + Mv::to(cy-1, x+2) + Symbols::left + Mv::to(cy-1, x+28) + Symbols::right; mouse_mappings["left"] = {cy-2, x, 2, 5}; mouse_mappings["right"] = {cy-2, x+25, 2, 5}; } if (selPred.test(isEditable)) { out += Fx::b + Mv::to(cy-1, x+28 - (not editing and selPred.test(isInt) ? 2 : 0)) + (tty_mode ? "E" : Symbols::enter); } //? Description of selected option out += Fx::reset + Theme::c("title") + Fx::b; for (int cyy = y+7; const auto& desc : categories[selected_cat][i]) { if (cyy++ == y+7) continue; else if (cyy == y+10) out += Theme::c("main_fg") + Fx::ub; else if (cyy > y + height + 4) break; out += Mv::to(cyy, x+32) + desc; } } } if (not warnings.empty()) { messageBox = msgBox{min(78, (int)ulen(warnings) + 10), msgBox::BoxTypes::OK, {uresize(warnings, 74)}, "warning"}; out += messageBox(); } out += Fx::reset; } if (theme_refresh) { Theme::setTheme(); Draw::banner_gen(0, 0, false, true); screen_redraw = true; redraw = true; optionsMenu(""); } if (screen_redraw) { auto overlay_bkp = std::move(Global::overlay); auto clock_bkp = std::move(Global::clock); Draw::calcSizes(); Global::overlay = std::move(overlay_bkp); Global::clock = std::move(clock_bkp); recollect = true; } if (recollect) { Runner::run("all", false, true); retval = NoChange; } return (redraw ? Changed : retval); } int helpMenu(const string& key) { static int y{}; static int x{}; static int height{}; static int page{}; static int pages{}; if (bg.empty()) page = 0; int retval = Changed; if (redraw) { y = max(1, Term::height/2 - 4 - (int)(help_text.size() / 2)); x = Term::width/2 - 39; height = min(Term::height - 6, (int)help_text.size() + 3); pages = ceil((double)help_text.size() / (height - 3)); page = 0; bg = Draw::banner_gen(y, 0, true); bg += Draw::createBox(x, y + 6, 78, height, Theme::c("hi_fg"), true, "help"); } else if (is_in(key, "escape", "q", "h", "backspace", "space", "enter", "mouse_click")) { return Closed; } else if (pages > 1 and is_in(key, "down", "page_down", "tab", "mouse_scroll_down")) { if (++page >= pages) page = 0; } else if (pages > 1 and is_in(key, "up", "page_up", "shift_tab", "mouse_scroll_up")) { if (--page < 0) page = pages - 1; } else { retval = NoChange; } if (retval == Changed) { auto& out = Global::overlay; out = bg; if (pages > 1) { out += Mv::to(y+height+6, x + 2) + Theme::c("hi_fg") + Symbols::title_left_down + Fx::b + Symbols::up + Theme::c("title") + " page " + to_string(page+1) + '/' + to_string(pages) + ' ' + Theme::c("hi_fg") + Symbols::down + Fx::ub + Symbols::title_right_down; } auto cy = y+7; out += Mv::to(cy++, x + 1) + Theme::c("title") + Fx::b + cjust("Key:", 20) + "Description:"; for (int c = 0, i = max(0, (height - 3) * page); c++ < height - 3 and i < (int)help_text.size(); i++) { out += Mv::to(cy++, x + 1) + Theme::c("hi_fg") + Fx::b + cjust(help_text[i][0], 20) + Theme::c("main_fg") + Fx::ub + help_text[i][1]; } out += Fx::reset; } return (redraw ? Changed : retval); } //* Add menus here and update enum Menus in header const auto menuFunc = vector{ ref(sizeError), ref(signalChoose), ref(signalSend), ref(signalReturn), ref(optionsMenu), ref(helpMenu), ref(mainMenu), }; bitset<8> menuMask; void process(string key) { if (menuMask.none()) { Menu::active = false; Global::overlay.clear(); Global::overlay.shrink_to_fit(); Runner::pause_output = false; bg.clear(); bg.shrink_to_fit(); currentMenu = -1; Runner::run("all", true, true); mouse_mappings.clear(); return; } if (currentMenu < 0 or not menuMask.test(currentMenu)) { Menu::active = true; redraw = true; if (((menuMask.test(Main) or menuMask.test(Options) or menuMask.test(Help) or menuMask.test(SignalChoose)) and (Term::width < 80 or Term::height < 24)) or (Term::width < 50 or Term::height < 20)) { menuMask.reset(); menuMask.set(SizeError); } for (const auto& i : iota(0, (int)menuMask.size())) { if (menuMask.test(i)) currentMenu = i; } } auto retCode = menuFunc.at(currentMenu)(key); if (retCode == Closed) { menuMask.reset(currentMenu); mouse_mappings.clear(); bg.clear(); Runner::pause_output = false; process(); } else if (redraw) { redraw = false; Runner::run("all", true, true); } else if (retCode == Changed) Runner::run("overlay"); else if (retCode == Switch) { Runner::pause_output = false; bg.clear(); redraw = true; mouse_mappings.clear(); process(); } } void show(int menu, int signal) { menuMask.set(menu); signalToSend = signal; process(); } } btop-1.3.0/src/btop_menu.hpp000066400000000000000000000043061454653170500157640ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #pragma once #include #include #include #include #include "btop_input.hpp" using std::atomic; using std::bitset; using std::string; using std::vector; namespace Menu { extern atomic active; extern string output; extern int signalToSend; extern bool redraw; //? line, col, height, width extern std::unordered_map mouse_mappings; //* Creates a message box centered on screen //? Height of box is determined by size of content vector //? Boxtypes: 0 = OK button | 1 = YES and NO with YES selected | 2 = Same as 1 but with NO selected //? Strings in content vector is not checked for box width overflow class msgBox { string box_contents, button_left, button_right; int height{}; int width{}; int boxtype{}; int selected{}; int x{}; int y{}; public: enum BoxTypes { OK, YES_NO, NO_YES }; enum msgReturn { Invalid, Ok_Yes, No_Esc, Select }; msgBox(); msgBox(int width, int boxtype, vector content, string title); //? Draw and return box as a string string operator()(); //? Process input and returns value from enum Ret int input(string key); //? Clears content vector and private strings void clear(); }; extern bitset<8> menuMask; //* Enum for functions in vector menuFuncs enum Menus { SizeError, SignalChoose, SignalSend, SignalReturn, Options, Help, Main }; //* Handles redirection of input for menu functions and handles return codes void process(string key=""); //* Show a menu from enum Menu::Menus void show(int menu, int signal=-1); } btop-1.3.0/src/btop_shared.cpp000066400000000000000000000175151454653170500162670ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include #include "btop_config.hpp" #include "btop_shared.hpp" #include "btop_tools.hpp" namespace rng = std::ranges; using namespace Tools; #ifdef GPU_SUPPORT namespace Gpu { vector gpu_names; vector gpu_b_height_offsets; std::unordered_map> shared_gpu_percent = { {"gpu-average", {}}, {"gpu-vram-total", {}}, {"gpu-pwr-total", {}}, }; long long gpu_pwr_total_max; } #endif namespace Proc { void proc_sorter(vector& proc_vec, const string& sorting, bool reverse, bool tree) { if (reverse) { switch (v_index(sort_vector, sorting)) { case 0: rng::stable_sort(proc_vec, rng::less{}, &proc_info::pid); break; case 1: rng::stable_sort(proc_vec, rng::less{}, &proc_info::name); break; case 2: rng::stable_sort(proc_vec, rng::less{}, &proc_info::cmd); break; case 3: rng::stable_sort(proc_vec, rng::less{}, &proc_info::threads); break; case 4: rng::stable_sort(proc_vec, rng::less{}, &proc_info::user); break; case 5: rng::stable_sort(proc_vec, rng::less{}, &proc_info::mem); break; case 6: rng::stable_sort(proc_vec, rng::less{}, &proc_info::cpu_p); break; case 7: rng::stable_sort(proc_vec, rng::less{}, &proc_info::cpu_c); break; } } else { switch (v_index(sort_vector, sorting)) { case 0: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::pid); break; case 1: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::name); break; case 2: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::cmd); break; case 3: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::threads); break; case 4: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::user); break; case 5: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::mem); break; case 6: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::cpu_p); break; case 7: rng::stable_sort(proc_vec, rng::greater{}, &proc_info::cpu_c); break; } } //* When sorting with "cpu lazy" push processes over threshold cpu usage to the front regardless of cumulative usage if (not tree and not reverse and sorting == "cpu lazy") { double max = 10.0, target = 30.0; for (size_t i = 0, x = 0, offset = 0; i < proc_vec.size(); i++) { if (i <= 5 and proc_vec.at(i).cpu_p > max) max = proc_vec.at(i).cpu_p; else if (i == 6) target = (max > 30.0) ? max : 10.0; if (i == offset and proc_vec.at(i).cpu_p > 30.0) offset++; else if (proc_vec.at(i).cpu_p > target) { rotate(proc_vec.begin() + offset, proc_vec.begin() + i, proc_vec.begin() + i + 1); if (++x > 10) break; } } } } void tree_sort(vector& proc_vec, const string& sorting, bool reverse, int& c_index, const int index_max, bool collapsed) { if (proc_vec.size() > 1) { if (reverse) { switch (v_index(sort_vector, sorting)) { case 3: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().threads < b.entry.get().threads; }); break; case 5: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().mem < b.entry.get().mem; }); break; case 6: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().cpu_p < b.entry.get().cpu_p; }); break; case 7: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().cpu_c < b.entry.get().cpu_c; }); break; } } else { switch (v_index(sort_vector, sorting)) { case 3: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().threads > b.entry.get().threads; }); break; case 5: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().mem > b.entry.get().mem; }); break; case 6: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().cpu_p > b.entry.get().cpu_p; }); break; case 7: rng::stable_sort(proc_vec, [](const auto& a, const auto& b) { return a.entry.get().cpu_c > b.entry.get().cpu_c; }); break; } } } for (auto& r : proc_vec) { r.entry.get().tree_index = (collapsed or r.entry.get().filtered ? index_max : c_index++); if (not r.children.empty()) { tree_sort(r.children, sorting, reverse, c_index, (collapsed or r.entry.get().collapsed or r.entry.get().tree_index == (size_t)index_max)); } } } void _tree_gen(proc_info& cur_proc, vector& in_procs, vector& out_procs, int cur_depth, bool collapsed, const string& filter, bool found, bool no_update, bool should_filter) { auto cur_pos = out_procs.size(); bool filtering = false; //? If filtering, include children of matching processes if (not found and (should_filter or not filter.empty())) { if (not s_contains(std::to_string(cur_proc.pid), filter) and not s_contains_ic(cur_proc.name, filter) and not s_contains_ic(cur_proc.cmd, filter) and not s_contains_ic(cur_proc.user, filter)) { filtering = true; cur_proc.filtered = true; filter_found++; } else { found = true; cur_depth = 0; } } else if (cur_proc.filtered) cur_proc.filtered = false; cur_proc.depth = cur_depth; //? Set tree index position for process if not filtered out or currently in a collapsed sub-tree out_procs.push_back({ cur_proc, {} }); if (not collapsed and not filtering) { cur_proc.tree_index = out_procs.size() - 1; //? Try to find name of the binary file and append to program name if not the same if (cur_proc.short_cmd.empty() and not cur_proc.cmd.empty()) { std::string_view cmd_view = cur_proc.cmd; cmd_view = cmd_view.substr((size_t)0, std::min(cmd_view.find(' '), cmd_view.size())); cmd_view = cmd_view.substr(std::min(cmd_view.find_last_of('/') + 1, cmd_view.size())); cur_proc.short_cmd = string{cmd_view}; } } else { cur_proc.tree_index = in_procs.size(); } //? Recursive iteration over all children for (auto& p : rng::equal_range(in_procs, cur_proc.pid, rng::less{}, &proc_info::ppid)) { if (collapsed and not filtering) { cur_proc.filtered = true; } _tree_gen(p, in_procs, out_procs.back().children, cur_depth + 1, (collapsed or cur_proc.collapsed), filter, found, no_update, should_filter); if (not no_update and not filtering and (collapsed or cur_proc.collapsed)) { //auto& parent = cur_proc; cur_proc.cpu_p += p.cpu_p; cur_proc.cpu_c += p.cpu_c; cur_proc.mem += p.mem; cur_proc.threads += p.threads; filter_found++; p.filtered = true; } else if (Config::getB("proc_aggregate")) { cur_proc.cpu_p += p.cpu_p; cur_proc.cpu_c += p.cpu_c; cur_proc.mem += p.mem; cur_proc.threads += p.threads; } } if (collapsed or filtering) { return; } //? Add tree terminator symbol if it's the last child in a sub-tree if (out_procs.back().children.size() > 0 and out_procs.back().children.back().entry.get().prefix.size() >= 8 and not out_procs.back().children.back().entry.get().prefix.ends_with("]─")) out_procs.back().children.back().entry.get().prefix.replace(out_procs.back().children.back().entry.get().prefix.size() - 8, 8, " └─ "); //? Add collapse/expand symbols if process have any children out_procs.at(cur_pos).entry.get().prefix = " │ "s * cur_depth + (out_procs.at(cur_pos).children.size() > 0 ? (cur_proc.collapsed ? "[+]─" : "[-]─") : " ├─ "); } } btop-1.3.0/src/btop_shared.hpp000066400000000000000000000253121454653170500162660ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #pragma once #include #include #include #include #include #include #include #include #include #include using std::array; using std::atomic; using std::deque; using std::string; using std::tuple; using std::vector; using namespace std::literals; // for operator""s void term_resize(bool force=false); void banner_gen(); extern void clean_quit(int sig); namespace Global { extern const vector> Banner_src; extern const string Version; extern atomic quitting; extern string exit_error_msg; extern atomic thread_exception; extern string banner; extern atomic resized; extern string overlay; extern string clock; extern uid_t real_uid, set_uid; extern atomic init_conf; } namespace Runner { extern atomic active; extern atomic reading; extern atomic stopping; extern atomic redraw; extern atomic coreNum_reset; extern pthread_t runner_id; extern bool pause_output; extern string debug_bg; void run(const string& box="", bool no_update = false, bool force_redraw = false); void stop(); } namespace Tools { //* Platform specific function for system_uptime (seconds since last restart) double system_uptime(); } namespace Shared { //* Initialize platform specific needed variables and check for errors void init(); extern long coreCount, page_size, clk_tck; } namespace Gpu { #ifdef GPU_SUPPORT extern vector box; extern int width, height, min_width, min_height; extern vector x_vec, y_vec; extern vector redraw; extern int shown; extern vector shown_panels; extern vector gpu_names; extern vector gpu_b_height_offsets; extern long long gpu_pwr_total_max; extern std::unordered_map> shared_gpu_percent; // averages, power/vram total const array mem_names { "used"s, "free"s }; //* Container for process information // TODO /*struct proc_info { unsigned int pid; unsigned long long mem; };*/ //* Container for supported Gpu::*::collect() functions struct gpu_info_supported { bool gpu_utilization = true, mem_utilization = true, gpu_clock = true, mem_clock = true, pwr_usage = true, pwr_state = true, temp_info = true, mem_total = true, mem_used = true, pcie_txrx = true; }; //* Per-device container for GPU info struct gpu_info { std::unordered_map> gpu_percent = { {"gpu-totals", {}}, {"gpu-vram-totals", {}}, {"gpu-pwr-totals", {}}, }; unsigned int gpu_clock_speed; // MHz long long pwr_usage; // mW long long pwr_max_usage = 255000; long long pwr_state; deque temp = {0}; long long temp_max = 110; long long mem_total = 0; long long mem_used = 0; deque mem_utilization_percent = {0}; // TODO: properly handle GPUs that can't report some stats long long mem_clock_speed = 0; // MHz long long pcie_tx = 0; // KB/s long long pcie_rx = 0; gpu_info_supported supported_functions; // vector graphics_processes = {}; // TODO // vector compute_processes = {}; }; namespace Nvml { extern bool shutdown(); } namespace Rsmi { extern bool shutdown(); } //* Collect gpu stats and temperatures auto collect(bool no_update = false) -> vector&; //* Draw contents of gpu box using as source string draw(const gpu_info& gpu, unsigned long index, bool force_redraw, bool data_same); #else struct gpu_info { bool supported = false; }; #endif } namespace Cpu { extern string box; extern int x, y, width, height, min_width, min_height; extern bool shown, redraw, got_sensors, cpu_temp_only, has_battery; extern string cpuName, cpuHz; extern vector available_fields; extern vector available_sensors; extern tuple current_bat; struct cpu_info { std::unordered_map> cpu_percent = { {"total", {}}, {"user", {}}, {"nice", {}}, {"system", {}}, {"idle", {}}, {"iowait", {}}, {"irq", {}}, {"softirq", {}}, {"steal", {}}, {"guest", {}}, {"guest_nice", {}} }; vector> core_percent; vector> temp; long long temp_max = 0; array load_avg; }; //* Collect cpu stats and temperatures auto collect(bool no_update = false) -> cpu_info&; //* Draw contents of cpu box using as source string draw(const cpu_info& cpu, const vector& gpu, bool force_redraw = false, bool data_same = false); //* Parse /proc/cpu info for mapping of core ids auto get_core_mapping() -> std::unordered_map; extern std::unordered_map core_mapping; auto get_cpuHz() -> string; //* Get battery info from /sys auto get_battery() -> tuple; } namespace Mem { extern string box; extern int x, y, width, height, min_width, min_height; extern bool has_swap, shown, redraw; const array mem_names { "used"s, "available"s, "cached"s, "free"s }; const array swap_names { "swap_used"s, "swap_free"s }; extern int disk_ios; struct disk_info { std::filesystem::path dev; string name; string fstype{}; // defaults to "" std::filesystem::path stat{}; // defaults to "" int64_t total{}; int64_t used{}; int64_t free{}; int used_percent{}; int free_percent{}; array old_io = {0, 0, 0}; deque io_read = {}; deque io_write = {}; deque io_activity = {}; }; struct mem_info { std::unordered_map stats = {{"used", 0}, {"available", 0}, {"cached", 0}, {"free", 0}, {"swap_total", 0}, {"swap_used", 0}, {"swap_free", 0}}; std::unordered_map> percent = {{"used", {}}, {"available", {}}, {"cached", {}}, {"free", {}}, {"swap_total", {}}, {"swap_used", {}}, {"swap_free", {}}}; std::unordered_map disks; vector disks_order; }; //?* Get total system memory uint64_t get_totalMem(); //* Collect mem & disks stats auto collect(bool no_update = false) -> mem_info&; //* Draw contents of mem box using as source string draw(const mem_info& mem, bool force_redraw = false, bool data_same = false); } namespace Net { extern string box; extern int x, y, width, height, min_width, min_height; extern bool shown, redraw; extern string selected_iface; extern vector interfaces; extern bool rescale; extern std::unordered_map graph_max; struct net_stat { uint64_t speed{}; uint64_t top{}; uint64_t total{}; uint64_t last{}; uint64_t offset{}; uint64_t rollover{}; }; struct net_info { std::unordered_map> bandwidth = { {"download", {}}, {"upload", {}} }; std::unordered_map stat = { {"download", {}}, {"upload", {}} }; string ipv4{}; // defaults to "" string ipv6{}; // defaults to "" bool connected{}; }; extern std::unordered_map current_net; //* Collect net upload/download stats auto collect(bool no_update=false) -> net_info&; //* Draw contents of net box using as source string draw(const net_info& net, bool force_redraw = false, bool data_same = false); } namespace Proc { extern atomic numpids; extern string box; extern int x, y, width, height, min_width, min_height; extern bool shown, redraw; extern int select_max; extern atomic detailed_pid; extern int selected_pid, start, selected, collapse, expand, filter_found, selected_depth; extern string selected_name; //? Contains the valid sorting options for processes const vector sort_vector = { "pid", "name", "command", "threads", "user", "memory", "cpu direct", "cpu lazy", }; //? Translation from process state char to explanative string const std::unordered_map proc_states = { {'R', "Running"}, {'S', "Sleeping"}, {'D', "Waiting"}, {'Z', "Zombie"}, {'T', "Stopped"}, {'t', "Tracing"}, {'X', "Dead"}, {'x', "Dead"}, {'K', "Wakekill"}, {'W', "Unknown"}, {'P', "Parked"} }; //* Container for process information struct proc_info { size_t pid{}; string name{}; // defaults to "" string cmd{}; // defaults to "" string short_cmd{}; // defaults to "" size_t threads{}; int name_offset{}; string user{}; // defaults to "" uint64_t mem{}; double cpu_p{}; // defaults to = 0.0 double cpu_c{}; // defaults to = 0.0 char state = '0'; int64_t p_nice{}; uint64_t ppid{}; uint64_t cpu_s{}; uint64_t cpu_t{}; string prefix{}; // defaults to "" size_t depth{}; size_t tree_index{}; bool collapsed{}; bool filtered{}; }; //* Container for process info box struct detail_container { size_t last_pid{}; bool skip_smaps{}; proc_info entry; string elapsed, parent, status, io_read, io_write, memory; long long first_mem = -1; deque cpu_percent; deque mem_bytes; }; //? Contains all info for proc detailed box extern detail_container detailed; //* Collect and sort process information from /proc auto collect(bool no_update = false) -> vector&; //* Update current selection and view, returns -1 if no change otherwise the current selection int selection(const string& cmd_key); //* Draw contents of proc box using as data source string draw(const vector& plist, bool force_redraw = false, bool data_same = false); struct tree_proc { std::reference_wrapper entry; vector children; }; //* Sort vector of proc_info's void proc_sorter(vector& proc_vec, const string& sorting, bool reverse, bool tree = false); //* Recursive sort of process tree void tree_sort(vector& proc_vec, const string& sorting, bool reverse, int& c_index, const int index_max, bool collapsed = false); //* Generate process tree list void _tree_gen(proc_info& cur_proc, vector& in_procs, vector& out_procs, int cur_depth, bool collapsed, const string& filter, bool found = false, bool no_update = false, bool should_filter = false); } btop-1.3.0/src/btop_theme.cpp000066400000000000000000000333401454653170500161150ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include #include #include #include "btop_tools.hpp" #include "btop_config.hpp" #include "btop_theme.hpp" using std::round; using std::stoi; using std::to_string; using std::vector; using std::views::iota; using namespace Tools; namespace fs = std::filesystem; string Term::fg, Term::bg; string Fx::reset = reset_base; namespace Theme { fs::path theme_dir; fs::path user_theme_dir; vector themes; std::unordered_map colors; std::unordered_map> rgbs; std::unordered_map> gradients; const std::unordered_map Default_theme = { { "main_bg", "#00" }, { "main_fg", "#cc" }, { "title", "#ee" }, { "hi_fg", "#b54040" }, { "selected_bg", "#6a2f2f" }, { "selected_fg", "#ee" }, { "inactive_fg", "#40" }, { "graph_text", "#60" }, { "meter_bg", "#40" }, { "proc_misc", "#0de756" }, { "cpu_box", "#556d59" }, { "mem_box", "#6c6c4b" }, { "net_box", "#5c588d" }, { "proc_box", "#805252" }, { "div_line", "#30" }, { "temp_start", "#4897d4" }, { "temp_mid", "#5474e8" }, { "temp_end", "#ff40b6" }, { "cpu_start", "#77ca9b" }, { "cpu_mid", "#cbc06c" }, { "cpu_end", "#dc4c4c" }, { "free_start", "#384f21" }, { "free_mid", "#b5e685" }, { "free_end", "#dcff85" }, { "cached_start", "#163350" }, { "cached_mid", "#74e6fc" }, { "cached_end", "#26c5ff" }, { "available_start", "#4e3f0e" }, { "available_mid", "#ffd77a" }, { "available_end", "#ffb814" }, { "used_start", "#592b26" }, { "used_mid", "#d9626d" }, { "used_end", "#ff4769" }, { "download_start", "#291f75" }, { "download_mid", "#4f43a3" }, { "download_end", "#b0a9de" }, { "upload_start", "#620665" }, { "upload_mid", "#7d4180" }, { "upload_end", "#dcafde" }, { "process_start", "#80d0a3" }, { "process_mid", "#dcd179" }, { "process_end", "#d45454" } }; const std::unordered_map TTY_theme = { { "main_bg", "\x1b[0;40m" }, { "main_fg", "\x1b[37m" }, { "title", "\x1b[97m" }, { "hi_fg", "\x1b[91m" }, { "selected_bg", "\x1b[41m" }, { "selected_fg", "\x1b[97m" }, { "inactive_fg", "\x1b[90m" }, { "graph_text", "\x1b[90m" }, { "meter_bg", "\x1b[90m" }, { "proc_misc", "\x1b[92m" }, { "cpu_box", "\x1b[32m" }, { "mem_box", "\x1b[33m" }, { "net_box", "\x1b[35m" }, { "proc_box", "\x1b[31m" }, { "div_line", "\x1b[90m" }, { "temp_start", "\x1b[94m" }, { "temp_mid", "\x1b[96m" }, { "temp_end", "\x1b[95m" }, { "cpu_start", "\x1b[92m" }, { "cpu_mid", "\x1b[93m" }, { "cpu_end", "\x1b[91m" }, { "free_start", "\x1b[32m" }, { "free_mid", "" }, { "free_end", "\x1b[92m" }, { "cached_start", "\x1b[36m" }, { "cached_mid", "" }, { "cached_end", "\x1b[96m" }, { "available_start", "\x1b[33m" }, { "available_mid", "" }, { "available_end", "\x1b[93m" }, { "used_start", "\x1b[31m" }, { "used_mid", "" }, { "used_end", "\x1b[91m" }, { "download_start", "\x1b[34m" }, { "download_mid", "" }, { "download_end", "\x1b[94m" }, { "upload_start", "\x1b[35m" }, { "upload_mid", "" }, { "upload_end", "\x1b[95m" }, { "process_start", "\x1b[32m" }, { "process_mid", "\x1b[33m" }, { "process_end", "\x1b[31m" } }; namespace { //* Convert 24-bit colors to 256 colors int truecolor_to_256(const int& r, const int& g, const int& b) { //? Use upper 232-255 greyscale values if the downscaled red, green and blue are the same value if (const int red = round((double)r / 11); red == round((double)g / 11) and red == round((double)b / 11)) { return 232 + red; } //? Else use 6x6x6 color cube to calculate approximate colors else { return round((double)r / 51) * 36 + round((double)g / 51) * 6 + round((double)b / 51) + 16; } } } string hex_to_color(string hexa, bool t_to_256, const string& depth) { if (hexa.size() > 1) { hexa.erase(0, 1); for (auto& c : hexa) { if (not isxdigit(c)) { Logger::error("Invalid hex value: " + hexa); return ""; } } string pre = Fx::e + (depth == "fg" ? "38" : "48") + ";" + (t_to_256 ? "5;" : "2;"); if (hexa.size() == 2) { int h_int = stoi(hexa, nullptr, 16); if (t_to_256) { return pre + to_string(truecolor_to_256(h_int, h_int, h_int)) + "m"; } else { string h_str = to_string(h_int); return pre + h_str + ";" + h_str + ";" + h_str + "m"; } } else if (hexa.size() == 6) { if (t_to_256) { return pre + to_string(truecolor_to_256( stoi(hexa.substr(0, 2), nullptr, 16), stoi(hexa.substr(2, 2), nullptr, 16), stoi(hexa.substr(4, 2), nullptr, 16))) + "m"; } else { return pre + to_string(stoi(hexa.substr(0, 2), nullptr, 16)) + ";" + to_string(stoi(hexa.substr(2, 2), nullptr, 16)) + ";" + to_string(stoi(hexa.substr(4, 2), nullptr, 16)) + "m"; } } else Logger::error("Invalid size of hex value: " + hexa); } else Logger::error("Hex value missing: " + hexa); return ""; } string dec_to_color(int r, int g, int b, bool t_to_256, const string& depth) { string pre = Fx::e + (depth == "fg" ? "38" : "48") + ";" + (t_to_256 ? "5;" : "2;"); r = std::clamp(r, 0, 255); g = std::clamp(g, 0, 255); b = std::clamp(b, 0, 255); if (t_to_256) return pre + to_string(truecolor_to_256(r, g, b)) + "m"; else return pre + to_string(r) + ";" + to_string(g) + ";" + to_string(b) + "m"; } namespace { //* Convert hex color to a array of decimals array hex_to_dec(string hexa) { if (hexa.size() > 1) { hexa.erase(0, 1); for (auto& c : hexa) { if (not isxdigit(c)) return array{-1, -1, -1}; } if (hexa.size() == 2) { int h_int = stoi(hexa, nullptr, 16); return array{h_int, h_int, h_int}; } else if (hexa.size() == 6) { return array{ stoi(hexa.substr(0, 2), nullptr, 16), stoi(hexa.substr(2, 2), nullptr, 16), stoi(hexa.substr(4, 2), nullptr, 16) }; } } return {-1 ,-1 ,-1}; } //* Generate colors and rgb decimal vectors for the theme void generateColors(const std::unordered_map& source) { vector t_rgb; string depth; bool t_to_256 = Config::getB("lowcolor"); colors.clear(); rgbs.clear(); for (const auto& [name, color] : Default_theme) { if (name == "main_bg" and not Config::getB("theme_background")) { colors[name] = "\x1b[49m"; rgbs[name] = {-1, -1, -1}; continue; } depth = (name.ends_with("bg") and name != "meter_bg") ? "bg" : "fg"; if (source.contains(name)) { if (name == "main_bg" and source.at(name).empty()) { colors[name] = "\x1b[49m"; rgbs[name] = {-1, -1, -1}; continue; } else if (source.at(name).empty() and (name.ends_with("_mid") or name.ends_with("_end"))) { colors[name] = ""; rgbs[name] = {-1, -1, -1}; continue; } else if (source.at(name).starts_with('#')) { colors[name] = hex_to_color(source.at(name), t_to_256, depth); rgbs[name] = hex_to_dec(source.at(name)); } else if (not source.at(name).empty()) { t_rgb = ssplit(source.at(name)); if (t_rgb.size() != 3) { Logger::error("Invalid RGB decimal value: \"" + source.at(name) + "\""); } else { colors[name] = dec_to_color(stoi(t_rgb[0]), stoi(t_rgb[1]), stoi(t_rgb[2]), t_to_256, depth); rgbs[name] = array{stoi(t_rgb[0]), stoi(t_rgb[1]), stoi(t_rgb[2])}; } } } if (not colors.contains(name) and not is_in(name, "meter_bg", "process_start", "process_mid", "process_end", "graph_text")) { Logger::debug("Missing color value for \"" + name + "\". Using value from default."); colors[name] = hex_to_color(color, t_to_256, depth); rgbs[name] = hex_to_dec(color); } } //? Set fallback values for optional colors not defined in theme file if (not colors.contains("meter_bg")) { colors["meter_bg"] = colors.at("inactive_fg"); rgbs["meter_bg"] = rgbs.at("inactive_fg"); } if (not colors.contains("process_start")) { colors["process_start"] = colors.at("cpu_start"); colors["process_mid"] = colors.at("cpu_mid"); colors["process_end"] = colors.at("cpu_end"); rgbs["process_start"] = rgbs.at("cpu_start"); rgbs["process_mid"] = rgbs.at("cpu_mid"); rgbs["process_end"] = rgbs.at("cpu_end"); } if (not colors.contains("graph_text")) { colors["graph_text"] = colors.at("inactive_fg"); rgbs["graph_text"] = rgbs.at("inactive_fg"); } } //* Generate color gradients from two or three colors, 101 values indexed 0-100 void generateGradients() { gradients.clear(); bool t_to_256 = Config::getB("lowcolor"); //? Insert values for processes greyscale gradient and processes color gradient rgbs.insert({ { "proc_start", rgbs["main_fg"] }, { "proc_mid", {-1, -1, -1} }, { "proc_end", rgbs["inactive_fg"] }, { "proc_color_start", rgbs["inactive_fg"] }, { "proc_color_mid", {-1, -1, -1} }, { "proc_color_end", rgbs["process_start"] }, }); for (const auto& [name, source_arr] : rgbs) { if (not name.ends_with("_start")) continue; const string color_name = rtrim(name, "_start"); //? input_colors[start,mid,end][red,green,blue] const array, 3> input_colors = { source_arr, rgbs[color_name + "_mid"], rgbs[color_name + "_end"] }; //? output_colors[red,green,blue][0-100] array, 101> output_colors; output_colors[0][0] = -1; //? Only start iteration if gradient has an end color defined if (input_colors[2][0] >= 0) { //? Split iteration in two passes of 50 + 51 instead of one pass of 101 if gradient has start, mid and end values defined int current_range = (input_colors[1][0] >= 0) ? 50 : 100; for (int rgb : iota(0, 3)) { int start = 0, offset = 0; int end = (current_range == 50) ? 1 : 2; for (int i : iota(0, 101)) { output_colors[i][rgb] = input_colors[start][rgb] + (i - offset) * (input_colors[end][rgb] - input_colors[start][rgb]) / current_range; //? Switch source arrays from start->mid to mid->end at 50 passes if mid is defined if (i == current_range) { ++start; ++end; offset = 50; } } } } //? Generate color escape codes for the generated rgb decimals array color_gradient; if (output_colors[0][0] != -1) { for (int y = 0; const auto& [red, green, blue] : output_colors) color_gradient[y++] = dec_to_color(red, green, blue, t_to_256); } else { //? If only start was defined fill array with start color color_gradient.fill(colors[name]); } gradients[color_name] = std::move(color_gradient); } } //* Set colors and generate gradients for the TTY theme void generateTTYColors() { rgbs.clear(); gradients.clear(); colors = TTY_theme; if (not Config::getB("theme_background")) colors["main_bg"] = "\x1b[49m"; for (const auto& c : colors) { if (not c.first.ends_with("_start")) continue; const string base_name = rtrim(c.first, "_start"); string section = "_start"; int split = colors.at(base_name + "_mid").empty() ? 50 : 33; for (int i : iota(0, 101)) { gradients[base_name][i] = colors.at(base_name + section); if (i == split) { section = (split == 33) ? "_mid" : "_end"; split *= 2; } } } } //* Load a .theme file from disk auto loadFile(const string& filename) { std::unordered_map theme_out; const fs::path filepath = filename; if (not fs::exists(filepath)) return Default_theme; std::ifstream themefile(filepath); if (themefile.good()) { Logger::debug("Loading theme file: " + filename); while (not themefile.bad()) { themefile.ignore(SSmax, '['); if (themefile.eof()) break; string name, value; getline(themefile, name, ']'); if (not Default_theme.contains(name)) { continue; } themefile.ignore(SSmax, '='); themefile >> std::ws; if (themefile.eof()) break; if (themefile.peek() == '"') { themefile.ignore(1); getline(themefile, value, '"'); } else getline(themefile, value, '\n'); theme_out[name] = value; } return theme_out; } return Default_theme; } } void updateThemes() { themes.clear(); themes.push_back("Default"); themes.push_back("TTY"); for (const auto& path : { user_theme_dir, theme_dir } ) { if (path.empty()) continue; for (auto& file : fs::directory_iterator(path)) { if (file.path().extension() == ".theme" and access(file.path().c_str(), R_OK) != -1 and not v_contains(themes, file.path().c_str())) { themes.push_back(file.path().c_str()); } } } } void setTheme() { const auto& theme = Config::getS("color_theme"); fs::path theme_path; for (const fs::path p : themes) { if (p == theme or p.stem() == theme or p.filename() == theme) { theme_path = p; break; } } if (theme == "TTY" or Config::getB("tty_mode")) generateTTYColors(); else { generateColors((theme == "Default" or theme_path.empty() ? Default_theme : loadFile(theme_path))); generateGradients(); } Term::fg = colors.at("main_fg"); Term::bg = colors.at("main_bg"); Fx::reset = Fx::reset_base + Term::fg + Term::bg; } } btop-1.3.0/src/btop_theme.hpp000066400000000000000000000047151454653170500161260ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #pragma once #include #include #include #include #include using std::array; using std::string; using std::vector; namespace Theme { extern std::filesystem::path theme_dir; extern std::filesystem::path user_theme_dir; //* Contains "Default" and "TTY" at indeces 0 and 1, otherwise full paths to theme files extern vector themes; //* Generate escape sequence for 24-bit or 256 color and return as a string //* Args hexa: ["#000000"-"#ffffff"] for color, ["#00"-"#ff"] for greyscale //* t_to_256: [true|false] convert 24bit value to 256 color value //* depth: ["fg"|"bg"] for either a foreground color or a background color string hex_to_color(string hexa, bool t_to_256=false, const string& depth="fg"); //* Generate escape sequence for 24-bit or 256 color and return as a string //* Args r: [0-255], g: [0-255], b: [0-255] //* t_to_256: [true|false] convert 24bit value to 256 color value //* depth: ["fg"|"bg"] for either a foreground color or a background color string dec_to_color(int r, int g, int b, bool t_to_256=false, const string& depth="fg"); //* Update list of paths for available themes void updateThemes(); //* Set current theme from current "color_theme" value in config void setTheme(); extern std::unordered_map colors; extern std::unordered_map> rgbs; extern std::unordered_map> gradients; //* Return escape code for color inline const string& c(const string& name) { return colors.at(name); } //* Return array of escape codes for color gradient inline const array& g(string name) { return gradients.at(name); } //* Return array of red, green and blue in decimal for color inline const std::array& dec(string name) { return rgbs.at(name); } } btop-1.3.0/src/btop_tools.cpp000066400000000000000000000444401454653170500161560ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include "unordered_map" #include "widechar_width.hpp" #include "btop_shared.hpp" #include "btop_tools.hpp" #include "btop_config.hpp" using std::cout; using std::floor; using std::flush; using std::max; using std::string_view; using std::to_string; using namespace std::literals; // to use operator""s namespace fs = std::filesystem; namespace rng = std::ranges; //? ------------------------------------------------- NAMESPACES ------------------------------------------------------ //* Collection of escape codes and functions for terminal manipulation namespace Term { atomic initialized{}; atomic width{}; atomic height{}; string current_tty; namespace { struct termios initial_settings; //* Toggle terminal input echo bool echo(bool on=true) { struct termios settings; if (tcgetattr(STDIN_FILENO, &settings)) return false; if (on) settings.c_lflag |= ECHO; else settings.c_lflag &= ~(ECHO); return 0 == tcsetattr(STDIN_FILENO, TCSANOW, &settings); } //* Toggle need for return key when reading input bool linebuffered(bool on=true) { struct termios settings; if (tcgetattr(STDIN_FILENO, &settings)) return false; if (on) settings.c_lflag |= ICANON; else { settings.c_lflag &= ~(ICANON); settings.c_cc[VMIN] = 0; settings.c_cc[VTIME] = 0; } if (tcsetattr(STDIN_FILENO, TCSANOW, &settings)) return false; if (on) setlinebuf(stdin); else setbuf(stdin, nullptr); return true; } } bool refresh(bool only_check) { // Query dimensions of '/dev/tty' of the 'STDOUT_FILENO' isn't avaiable. // This variable is set in those cases to avoid calls to ioctl constinit static bool uses_dev_tty = false; struct winsize wsize {}; if (uses_dev_tty || ioctl(STDOUT_FILENO, TIOCGWINSZ, &wsize) < 0 || (wsize.ws_col == 0 && wsize.ws_row == 0)) { Logger::error(R"(Couldn't determine terminal size of "STDOUT_FILENO"!)"); auto dev_tty = open("/dev/tty", O_RDONLY); if (dev_tty != -1) { ioctl(dev_tty, TIOCGWINSZ, &wsize); close(dev_tty); } else { Logger::error(R"(Couldn't determine terminal size of "/dev/tty"!)"); return false; } uses_dev_tty = true; } if (width != wsize.ws_col or height != wsize.ws_row) { if (not only_check) { width = wsize.ws_col; height = wsize.ws_row; } return true; } return false; } auto get_min_size(const string& boxes) -> array { bool cpu = boxes.find("cpu") != string::npos; bool mem = boxes.find("mem") != string::npos; bool net = boxes.find("net") != string::npos; bool proc = boxes.find("proc") != string::npos; #ifdef GPU_SUPPORT int gpu = 0; if (not Gpu::gpu_names.empty()) for (char i = '0'; i <= '5'; ++i) gpu += (boxes.find(std::string("gpu") + i) != string::npos); #endif int width = 0; if (mem) width = Mem::min_width; else if (net) width = Mem::min_width; width += (proc ? Proc::min_width : 0); if (cpu and width < Cpu::min_width) width = Cpu::min_width; #ifdef GPU_SUPPORT if (gpu != 0 and width < Gpu::min_width) width = Gpu::min_width; #endif int height = (cpu ? Cpu::min_height : 0); if (proc) height += Proc::min_height; else height += (mem ? Mem::min_height : 0) + (net ? Net::min_height : 0); #ifdef GPU_SUPPORT height += Gpu::min_height*gpu; #endif return { width, height }; } bool init() { if (not initialized) { initialized = (bool)isatty(STDIN_FILENO); if (initialized) { tcgetattr(STDIN_FILENO, &initial_settings); current_tty = (ttyname(STDIN_FILENO) != nullptr ? static_cast(ttyname(STDIN_FILENO)) : "unknown"); //? Disable stream sync - this does not seem to work on OpenBSD #ifndef __OpenBSD__ cout.sync_with_stdio(false); #endif //? Disable stream ties cout.tie(nullptr); echo(false); linebuffered(false); refresh(); cout << alt_screen << hide_cursor << mouse_on << flush; Global::resized = false; } } return initialized; } void restore() { if (initialized) { tcsetattr(STDIN_FILENO, TCSANOW, &initial_settings); cout << mouse_off << clear << Fx::reset << normal_screen << show_cursor << flush; initialized = false; } } } //? --------------------------------------------------- FUNCTIONS ----------------------------------------------------- // ! Disabled due to issue when compiling with musl, reverted back to using regex // namespace Fx { // string uncolor(const string& s) { // string out = s; // for (size_t offset = 0, start_pos = 0, end_pos = 0;;) { // start_pos = (offset == 0) ? out.find('\x1b') : offset; // if (start_pos == string::npos) // break; // offset = start_pos + 1; // end_pos = out.find('m', offset); // if (end_pos == string::npos) // break; // else if (auto next_pos = out.find('\x1b', offset); not isdigit(out[end_pos - 1]) or end_pos > next_pos) { // offset = next_pos; // continue; // } // out.erase(start_pos, (end_pos - start_pos)+1); // offset = 0; // } // out.shrink_to_fit(); // return out; // } // } namespace Tools { size_t wide_ulen(const string& str) { unsigned int chars = 0; try { std::wstring_convert> conv; auto w_str = conv.from_bytes((str.size() > 10000 ? str.substr(0, 10000).c_str() : str.c_str())); for (auto c : w_str) { chars += utf8::wcwidth(c); } } catch (...) { return ulen(str); } return chars; } size_t wide_ulen(const std::wstring& w_str) { unsigned int chars = 0; for (auto c : w_str) { chars += utf8::wcwidth(c); } return chars; } string uresize(string str, const size_t len, bool wide) { if (len < 1 or str.empty()) return ""; if (wide) { try { std::wstring_convert> conv; auto w_str = conv.from_bytes((str.size() > 10000 ? str.substr(0, 10000).c_str() : str.c_str())); while (wide_ulen(w_str) > len) w_str.pop_back(); string n_str = conv.to_bytes(w_str); return n_str; } catch (...) { return uresize(str, len, false); } } else { for (size_t x = 0, i = 0; i < str.size(); i++) { if ((static_cast(str.at(i)) & 0xC0) != 0x80) x++; if (x >= len + 1) { str.resize(i); break; } } } str.shrink_to_fit(); return str; } string luresize(string str, const size_t len, bool wide) { if (len < 1 or str.empty()) return ""; for (size_t x = 0, last_pos = 0, i = str.size() - 1; i > 0 ; i--) { if (wide and static_cast(str.at(i)) > 0xef) { x += 2; last_pos = max((size_t)0, i - 1); } else if ((static_cast(str.at(i)) & 0xC0) != 0x80) { x++; last_pos = i; } if (x >= len) { str = str.substr(last_pos); str.shrink_to_fit(); break; } } return str; } string s_replace(const string& str, const string& from, const string& to) { string out = str; for (size_t start_pos = out.find(from); start_pos != std::string::npos; start_pos = out.find(from)) { out.replace(start_pos, from.length(), to); } return out; } string ltrim(const string& str, const string& t_str) { std::string_view str_v{str}; while (str_v.starts_with(t_str)) str_v.remove_prefix(t_str.size()); return string{str_v}; } string rtrim(const string& str, const string& t_str) { std::string_view str_v{str}; while (str_v.ends_with(t_str)) str_v.remove_suffix(t_str.size()); return string{str_v}; } auto ssplit(const string& str, const char& delim) -> vector { vector out; for (const auto& s : str | rng::views::split(delim) | rng::views::transform([](auto &&rng) { return std::string_view(&*rng.begin(), rng::distance(rng)); })) { if (not s.empty()) out.emplace_back(s); } return out; } string ljust(string str, const size_t x, bool utf, bool wide, bool limit) { if (utf) { if (limit and ulen(str, wide) > x) return uresize(str, x, wide); return str + string(max((int)(x - ulen(str)), 0), ' '); } else { if (limit and str.size() > x) { str.resize(x); return str; } return str + string(max((int)(x - str.size()), 0), ' '); } } string rjust(string str, const size_t x, bool utf, bool wide, bool limit) { if (utf) { if (limit and ulen(str, wide) > x) return uresize(str, x, wide); return string(max((int)(x - ulen(str)), 0), ' ') + str; } else { if (limit and str.size() > x) { str.resize(x); return str; }; return string(max((int)(x - str.size()), 0), ' ') + str; } } string cjust(string str, const size_t x, bool utf, bool wide, bool limit) { if (utf) { if (limit and ulen(str, wide) > x) return uresize(str, x, wide); return string(max((int)ceil((double)(x - ulen(str)) / 2), 0), ' ') + str + string(max((int)floor((double)(x - ulen(str)) / 2), 0), ' '); } else { if (limit and str.size() > x) { str.resize(x); return str; } return string(max((int)ceil((double)(x - str.size()) / 2), 0), ' ') + str + string(max((int)floor((double)(x - str.size()) / 2), 0), ' '); } } string trans(const string& str) { std::string_view oldstr{str}; string newstr; newstr.reserve(str.size()); for (size_t pos; (pos = oldstr.find(' ')) != string::npos;) { newstr.append(oldstr.substr(0, pos)); size_t x = 0; while (pos + x < oldstr.size() and oldstr.at(pos + x) == ' ') x++; newstr.append(Mv::r(x)); oldstr.remove_prefix(pos + x); } return (newstr.empty()) ? str : newstr + string{oldstr}; } string sec_to_dhms(size_t seconds, bool no_days, bool no_seconds) { size_t days = seconds / 86400; seconds %= 86400; size_t hours = seconds / 3600; seconds %= 3600; size_t minutes = seconds / 60; seconds %= 60; string out = (not no_days and days > 0 ? to_string(days) + "d " : "") + (hours < 10 ? "0" : "") + to_string(hours) + ':' + (minutes < 10 ? "0" : "") + to_string(minutes) + (not no_seconds ? ":" + string(std::cmp_less(seconds, 10) ? "0" : "") + to_string(seconds) : ""); return out; } string floating_humanizer(uint64_t value, bool shorten, size_t start, bool bit, bool per_second) { string out; const size_t mult = (bit) ? 8 : 1; bool mega = Config::getB("base_10_sizes"); // taking advantage of type deduction for array creation (since C++17) // combined with string literals (operator""s) static const array mebiUnits_bit { "bit"s, "Kib"s, "Mib"s, "Gib"s, "Tib"s, "Pib"s, "Eib"s, "Zib"s, "Yib"s, "Bib"s, "GEb"s }; static const array mebiUnits_byte { "Byte"s, "KiB"s, "MiB"s, "GiB"s, "TiB"s, "PiB"s, "EiB"s, "ZiB"s, "YiB"s, "BiB"s, "GEB"s }; static const array megaUnits_bit { "bit"s, "Kb"s, "Mb"s, "Gb"s, "Tb"s, "Pb"s, "Eb"s, "Zb"s, "Yb"s, "Bb"s, "Gb"s }; static const array megaUnits_byte { "Byte"s, "KB"s, "MB"s, "GB"s, "TB"s, "PB"s, "EB"s, "ZB"s, "YB"s, "BB"s, "GB"s }; const auto& units = (bit) ? ( mega ? megaUnits_bit : mebiUnits_bit) : ( mega ? megaUnits_byte : mebiUnits_byte); value *= 100 * mult; if (mega) { while (value >= 100000) { value /= 1000; if (value < 100) { out = to_string(value); break; } start++; } } else { while (value >= 102400) { value >>= 10; if (value < 100) { out = to_string(value); break; } start++; } } if (out.empty()) { out = to_string(value); if (not mega and out.size() == 4 and start > 0) { out.pop_back(); out.insert(2, "."); } else if (out.size() == 3 and start > 0) { out.insert(1, "."); } else if (out.size() >= 2) { out.resize(out.size() - 2); } } if (shorten) { auto f_pos = out.find('.'); if (f_pos == 1 and out.size() > 3) { out = to_string(round(stod(out) * 10) / 10).substr(0,3); } else if (f_pos != string::npos) { out = to_string((int)round(stod(out))); } if (out.size() > 3) { out = to_string((int)(out[0] - '0')) + ".0"; start++; } out.push_back(units[start][0]); } else out += " " + units[start]; if (per_second) out += (bit) ? "ps" : "/s"; return out; } std::string operator*(const string& str, int64_t n) { if (n < 1 or str.empty()) { return ""; } else if (n == 1) { return str; } string new_str; new_str.reserve(str.size() * n); for (; n > 0; n--) new_str.append(str); return new_str; } string strf_time(const string& strf) { auto in_time_t = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now()); std::tm bt {}; std::stringstream ss; ss << std::put_time(localtime_r(&in_time_t, &bt), strf.c_str()); return ss.str(); } void atomic_wait(const atomic& atom, bool old) noexcept { while (atom.load(std::memory_order_relaxed) == old ) busy_wait(); } void atomic_wait_for(const atomic& atom, bool old, const uint64_t wait_ms) noexcept { const uint64_t start_time = time_ms(); while (atom.load(std::memory_order_relaxed) == old and (time_ms() - start_time < wait_ms)) sleep_ms(1); } atomic_lock::atomic_lock(atomic& atom, bool wait) : atom(atom) { if (wait) while (not this->atom.compare_exchange_strong(this->not_true, true)); else this->atom.store(true); } atomic_lock::~atomic_lock() { this->atom.store(false); } string readfile(const std::filesystem::path& path, const string& fallback) { if (not fs::exists(path)) return fallback; string out; try { std::ifstream file(path); for (string readstr; getline(file, readstr); out += readstr); } catch (const std::exception& e) { Logger::error("readfile() : Exception when reading " + string{path} + " : " + e.what()); return fallback; } return (out.empty() ? fallback : out); } auto celsius_to(const long long& celsius, const string& scale) -> tuple { if (scale == "celsius") return {celsius, "°C"}; else if (scale == "fahrenheit") return {(long long)round((double)celsius * 1.8 + 32), "°F"}; else if (scale == "kelvin") return {(long long)round((double)celsius + 273.15), "K "}; else if (scale == "rankine") return {(long long)round((double)celsius * 1.8 + 491.67), "°R"}; return {0, ""}; } string hostname() { char host[HOST_NAME_MAX]; gethostname(host, HOST_NAME_MAX); return string{host}; } string username() { auto user = getenv("LOGNAME"); if (user == nullptr or strlen(user) == 0) user = getenv("USER"); return (user != nullptr ? user : ""); } DebugTimer::DebugTimer(const string name, bool start, bool delayed_report) : name(name), delayed_report(delayed_report) { if (start) this->start(); } DebugTimer::~DebugTimer() { if (running) this->stop(true); this->force_report(); } void DebugTimer::start() { if (running) return; running = true; start_time = time_micros(); } void DebugTimer::stop(bool report) { if (not running) return; running = false; elapsed_time = time_micros() - start_time; if (report) this->report(); } void DebugTimer::reset(bool restart) { running = false; start_time = 0; elapsed_time = 0; if (restart) this->start(); } void DebugTimer::stop_rename_reset(const string &new_name, bool report, bool restart) { this->stop(report); name = new_name; this->reset(restart); } void DebugTimer::report() { string report_line; if (start_time == 0 and elapsed_time == 0) report_line = fmt::format("DebugTimer::report() warning -> Timer [{}] has not been started!", name); else if (running) report_line = fmt::format(custom_locale, "Timer [{}] (running) currently at {:L} μs", name, time_micros() - start_time); else report_line = fmt::format(custom_locale, "Timer [{}] took {:L} μs", name, elapsed_time); if (delayed_report) report_buffer.emplace_back(report_line); else Logger::log_write(log_level, report_line); } void DebugTimer::force_report() { if (report_buffer.empty()) return; for (const auto& line : report_buffer) Logger::log_write(log_level, line); report_buffer.clear(); } uint64_t DebugTimer::elapsed() { if (running) return time_micros() - start_time; return elapsed_time; } bool DebugTimer::is_running() { return running; } } namespace Logger { using namespace Tools; std::atomic busy (false); bool first = true; const string tdf = "%Y/%m/%d (%T) | "; size_t loglevel; fs::path logfile; //* Wrapper for lowering priviliges if using SUID bit and currently isn't using real userid class lose_priv { int status = -1; public: lose_priv() { if (geteuid() != Global::real_uid) { this->status = seteuid(Global::real_uid); } } ~lose_priv() { if (status == 0) { status = seteuid(Global::set_uid); } } }; void set(const string& level) { loglevel = v_index(log_levels, level); } void log_write(const Level level, const string& msg) { if (loglevel < level or logfile.empty()) return; atomic_lock lck(busy, true); lose_priv neutered{}; std::error_code ec; try { // NOTE: `exist()` could throw but since we return with an empty logfile we don't care if (fs::exists(logfile) and fs::file_size(logfile, ec) > 1024 << 10 and not ec) { auto old_log = logfile; old_log += ".1"; if (fs::exists(old_log)) fs::remove(old_log, ec); if (not ec) fs::rename(logfile, old_log, ec); } if (not ec) { std::ofstream lwrite(logfile, std::ios::app); if (first) { first = false; lwrite << "\n" << strf_time(tdf) << "===> btop++ v." << Global::Version << "\n"; } lwrite << strf_time(tdf) << log_levels.at(level) << ": " << msg << "\n"; } else logfile.clear(); } catch (const std::exception& e) { logfile.clear(); throw std::runtime_error("Exception in Logger::log_write() : " + string{e.what()}); } } } btop-1.3.0/src/btop_tools.hpp000066400000000000000000000376431454653170500161720ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #pragma once #include // for std::ranges::count_if #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef BTOP_DEBUG #include #endif #ifndef HOST_NAME_MAX #ifdef __APPLE__ #define HOST_NAME_MAX 255 #else #define HOST_NAME_MAX 64 #endif #endif #define FMT_HEADER_ONLY #include "fmt/core.h" #include "fmt/format.h" #include "fmt/ostream.h" #include "fmt/ranges.h" using std::array; using std::atomic; using std::string; using std::to_string; using std::tuple; using std::vector; using namespace fmt::literals; //? ------------------------------------------------- NAMESPACES ------------------------------------------------------ //* Collection of escape codes for text style and formatting namespace Fx { const string e = "\x1b["; //* Escape sequence start const string b = e + "1m"; //* Bold on/off const string ub = e + "22m"; //* Bold off const string d = e + "2m"; //* Dark on const string ud = e + "22m"; //* Dark off const string i = e + "3m"; //* Italic on const string ui = e + "23m"; //* Italic off const string ul = e + "4m"; //* Underline on const string uul = e + "24m"; //* Underline off const string bl = e + "5m"; //* Blink on const string ubl = e + "25m"; //* Blink off const string s = e + "9m"; //* Strike/crossed-out on const string us = e + "29m"; //* Strike/crossed-out on/off //* Reset foreground/background color and text effects const string reset_base = e + "0m"; //* Reset text effects and restore theme foregrund and background color extern string reset; //* Regex for matching color, style and cursor move escape sequences const std::regex escape_regex("\033\\[\\d+;?\\d?;?\\d*;?\\d*;?\\d*(m|f|s|u|C|D|A|B){1}"); //* Regex for matching only color and style escape sequences const std::regex color_regex("\033\\[\\d+;?\\d?;?\\d*;?\\d*;?\\d*(m){1}"); //* Return a string with all colors and text styling removed inline string uncolor(const string& s) { return std::regex_replace(s, color_regex, ""); } // string uncolor(const string& s); } //* Collection of escape codes and functions for cursor manipulation namespace Mv { //* Move cursor to , inline string to(int line, int col) { return Fx::e + to_string(line) + ';' + to_string(col) + 'f'; } //* Move cursor right columns inline string r(int x) { return Fx::e + to_string(x) + 'C'; } //* Move cursor left columns inline string l(int x) { return Fx::e + to_string(x) + 'D'; } //* Move cursor up x lines inline string u(int x) { return Fx::e + to_string(x) + 'A'; } //* Move cursor down x lines inline string d(int x) { return Fx::e + to_string(x) + 'B'; } //* Save cursor position const string save = Fx::e + "s"; //* Restore saved cursor postion const string restore = Fx::e + "u"; } //* Collection of escape codes and functions for terminal manipulation namespace Term { extern atomic initialized; extern atomic width; extern atomic height; extern string fg, bg, current_tty; const string hide_cursor = Fx::e + "?25l"; const string show_cursor = Fx::e + "?25h"; const string alt_screen = Fx::e + "?1049h"; const string normal_screen = Fx::e + "?1049l"; const string clear = Fx::e + "2J" + Fx::e + "0;0f"; const string clear_end = Fx::e + "0J"; const string clear_begin = Fx::e + "1J"; const string mouse_on = Fx::e + "?1002h" + Fx::e + "?1015h" + Fx::e + "?1006h"; //? Enable reporting of mouse position on click and release const string mouse_off = Fx::e + "?1002l" + Fx::e + "?1015l" + Fx::e + "?1006l"; const string mouse_direct_on = Fx::e + "?1003h"; //? Enable reporting of mouse position at any movement const string mouse_direct_off = Fx::e + "?1003l"; const string sync_start = Fx::e + "?2026h"; //? Start of terminal synchronized output const string sync_end = Fx::e + "?2026l"; //? End of terminal synchronized output //* Returns true if terminal has been resized and updates width and height bool refresh(bool only_check=false); //* Returns an array with the lowest possible width, height with current box config auto get_min_size(const string& boxes) -> array; //* Check for a valid tty, save terminal options and set new options bool init(); //* Restore terminal options void restore(); } //* Simple logging implementation namespace Logger { const vector log_levels = { "DISABLED", "ERROR", "WARNING", "INFO", "DEBUG", }; extern std::filesystem::path logfile; enum Level : size_t { DISABLED = 0, ERROR = 1, WARNING = 2, INFO = 3, DEBUG = 4, }; //* Set log level, valid arguments: "DISABLED", "ERROR", "WARNING", "INFO" and "DEBUG" void set(const string& level); void log_write(const Level level, const string& msg); inline void error(const string msg) { log_write(ERROR, msg); } inline void warning(const string msg) { log_write(WARNING, msg); } inline void info(const string msg) { log_write(INFO, msg); } inline void debug(const string msg) { log_write(DEBUG, msg); } } //? --------------------------------------------------- FUNCTIONS ----------------------------------------------------- namespace Tools { constexpr auto SSmax = std::numeric_limits::max(); class MyNumPunct : public std::numpunct { protected: virtual char do_thousands_sep() const { return '\''; } virtual std::string do_grouping() const { return "\03"; } }; size_t wide_ulen(const string& str); size_t wide_ulen(const std::wstring& w_str); //* Return number of UTF8 characters in a string (wide=true for column size needed on terminal) inline size_t ulen(const string& str, bool wide = false) { return (wide ? wide_ulen(str) : std::ranges::count_if(str, [](char c) { return (static_cast(c) & 0xC0) != 0x80; })); } //* Resize a string consisting of UTF8 characters (only reduces size) string uresize(const string str, const size_t len, bool wide = false); //* Resize a string consisting of UTF8 characters from left (only reduces size) string luresize(const string str, const size_t len, bool wide = false); //* Replace in with and return new string string s_replace(const string& str, const string& from, const string& to); //* Capatilize inline string capitalize(string str) { str.at(0) = toupper(str.at(0)); return str; } //* Return with only uppercase characters inline string str_to_upper(string str) { std::ranges::for_each(str, [](auto& c) { c = ::toupper(c); } ); return str; } //* Return with only lowercase characters inline string str_to_lower(string str) { std::ranges::for_each(str, [](char& c) { c = ::tolower(c); } ); return str; } //* Check if vector contains value template inline bool v_contains(const vector& vec, const T2& find_val) { return std::ranges::find(vec, find_val) != vec.end(); } //* Check if string contains value template inline bool s_contains(const string& str, const T& find_val) { return str.find(find_val) != string::npos; } //* Check if string contains string , while ignoring case inline bool s_contains_ic(const string& str, const string& find_val) { auto it = std::search( str.begin(), str.end(), find_val.begin(), find_val.end(), [](char ch1, char ch2) { return std::toupper(ch1) == std::toupper(ch2); } ); return it != str.end(); } //* Return index of from vector , returns size of if is not present template inline size_t v_index(const vector& vec, const T& find_val) { return std::ranges::distance(vec.begin(), std::ranges::find(vec, find_val)); } //* Compare with all following values template inline bool is_in(const First& first, const T& ... t) { return ((first == t) or ...); } //* Return current time since epoch in seconds inline uint64_t time_s() { return std::chrono::duration_cast(std::chrono::system_clock::now().time_since_epoch()).count(); } //* Return current time since epoch in milliseconds inline uint64_t time_ms() { return std::chrono::duration_cast(std::chrono::system_clock::now().time_since_epoch()).count(); } //* Return current time since epoch in microseconds inline uint64_t time_micros() { return std::chrono::duration_cast(std::chrono::system_clock::now().time_since_epoch()).count(); } //* Check if a string is a valid bool value inline bool isbool(const string& str) { return is_in(str, "true", "false", "True", "False"); } //* Convert string to bool, returning any value not equal to "true" or "True" as false inline bool stobool(const string& str) { return is_in(str, "true", "True"); } //* Check if a string is a valid integer value (only postive) inline bool isint(const string& str) { return all_of(str.begin(), str.end(), ::isdigit); } //* Left-trim from and return new string string ltrim(const string& str, const string& t_str = " "); //* Right-trim from and return new string string rtrim(const string& str, const string& t_str = " "); //* Left/right-trim from and return new string inline string trim(const string& str, const string& t_str = " ") { return ltrim(rtrim(str, t_str), t_str); } //* Split at all occurrences of and return as vector of strings auto ssplit(const string& str, const char& delim = ' ') -> vector; //* Put current thread to sleep for milliseconds inline void sleep_ms(const size_t& ms) { std::this_thread::sleep_for(std::chrono::milliseconds(ms)); } //* Put current thread to sleep for microseconds inline void sleep_micros(const size_t& micros) { std::this_thread::sleep_for(std::chrono::microseconds(micros)); } //* Left justify string if is greater than length, limit return size to by default string ljust(string str, const size_t x, bool utf = false, bool wide = false, bool limit = true); //* Right justify string if is greater than length, limit return size to by default string rjust(string str, const size_t x, bool utf = false, bool wide = false, bool limit = true); //* Center justify string if is greater than length, limit return size to by default string cjust(string str, const size_t x, bool utf = false, bool wide = false, bool limit = true); //* Replace whitespaces " " with escape code for move right string trans(const string& str); //* Convert seconds to format "d ::" and return string string sec_to_dhms(size_t seconds, bool no_days = false, bool no_seconds = false); //* Scales up in steps of 1024 to highest positive value unit and returns string with unit suffixed //* bit=True or defaults to bytes //* start=int to set 1024 multiplier starting unit //* short=True always returns 0 decimals and shortens unit to 1 character string floating_humanizer(uint64_t value, bool shorten = false, size_t start = 0, bool bit = false, bool per_second = false); //* Add std::string operator * : Repeat string number of times std::string operator*(const string& str, int64_t n); template #ifdef BTOP_DEBUG const T& safeVal(const std::unordered_map& map, const K& key, const T& fallback = T{}, std::source_location loc = std::source_location::current()) { if (map.contains(key)) { return map.at(key); } else { Logger::error(fmt::format("safeVal() called with invalid key: [{}] in file: {} on line: {}", key, loc.file_name(), loc.line())); return fallback; } }; #else const T& safeVal(const std::unordered_map& map, const K& key, const T& fallback = T{}) { if (map.contains(key)) { return map.at(key); } else { Logger::error(fmt::format("safeVal() called with invalid key: [{}] (Compile btop with DEBUG=true for more extensive logging!)", key)); return fallback; } }; #endif template #ifdef BTOP_DEBUG const T& safeVal(const std::vector& vec, const size_t& index, const T& fallback = T{}, std::source_location loc = std::source_location::current()) { if (index < vec.size()) { return vec.at(index); } else { Logger::error(fmt::format("safeVal() called with invalid index: [{}] in file: {} on line: {}", index, loc.file_name(), loc.line())); return fallback; } }; #else const T& safeVal(const std::vector& vec, const size_t& index, const T& fallback = T{}) { if (index < vec.size()) { return vec.at(index); } else { Logger::error(fmt::format("safeVal() called with invalid index: [{}] (Compile btop with DEBUG=true for more extensive logging!)", index)); return fallback; } }; #endif //* Return current time in format string strf_time(const string& strf); string hostname(); string username(); static inline void busy_wait (void) { #if defined __i386__ || defined __x86_64__ __builtin_ia32_pause(); #elif defined __ia64__ __asm volatile("hint @pause" : : : "memory"); #elif defined __sparc__ && (defined __arch64__ || defined __sparc_v9__) __asm volatile("membar #LoadLoad" : : : "memory"); #else __asm volatile("" : : : "memory"); #endif } void atomic_wait(const atomic& atom, bool old = true) noexcept; void atomic_wait_for(const atomic& atom, bool old = true, const uint64_t wait_ms = 0) noexcept; //* Sets atomic to true on construct, sets to false on destruct class atomic_lock { atomic& atom; bool not_true{}; public: atomic_lock(atomic& atom, bool wait = false); ~atomic_lock(); }; //* Read a complete file and return as a string string readfile(const std::filesystem::path& path, const string& fallback = ""); //* Convert a celsius value to celsius, fahrenheit, kelvin or rankin and return tuple with new value and unit. auto celsius_to(const long long& celsius, const string& scale) -> tuple; } namespace Tools { //* Creates a named timer that is started on construct (by default) and reports elapsed time in microseconds to Logger::debug() on destruct if running //* Unless delayed_report is set to false, all reporting is buffered and delayed until DebugTimer is destructed or .force_report() is called //* Usage example: Tools::DebugTimer timer(name:"myTimer", [start:true], [delayed_report:true]) // Create timer and start //* timer.stop(); // Stop timer and report elapsed time //* timer.stop_rename_reset("myTimer2"); // Stop timer, report elapsed time, rename timer, reset and restart class DebugTimer { uint64_t start_time{}; uint64_t elapsed_time{}; bool running{}; std::locale custom_locale = std::locale(std::locale::classic(), new Tools::MyNumPunct); vector report_buffer{}; public: string name{}; bool delayed_report{}; Logger::Level log_level = Logger::DEBUG; DebugTimer() = default; DebugTimer(const string name, bool start = true, bool delayed_report = true); ~DebugTimer(); void start(); void stop(bool report = true); void reset(bool restart = true); //* Stops and reports (default), renames timer then resets and restarts (default) void stop_rename_reset(const string& new_name, bool report = true, bool restart = true); void report(); void force_report(); uint64_t elapsed(); bool is_running(); }; } btop-1.3.0/src/freebsd/000077500000000000000000000000001454653170500146725ustar00rootroot00000000000000btop-1.3.0/src/freebsd/btop_collect.cpp000066400000000000000000001327071454653170500200610ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include #include #include #include #include // man 3 getifaddrs: "BUGS: If both and are being included, must be included before " #include #include #include #include #include #include #include // for inet_ntop stuff #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "../btop_config.hpp" #include "../btop_shared.hpp" #include "../btop_tools.hpp" using std::clamp, std::string_literals::operator""s, std::cmp_equal, std::cmp_less, std::cmp_greater; using std::ifstream, std::numeric_limits, std::streamsize, std::round, std::max, std::min; namespace fs = std::filesystem; namespace rng = std::ranges; using namespace Tools; //? --------------------------------------------------- FUNCTIONS ----------------------------------------------------- namespace Cpu { vector core_old_totals; vector core_old_idles; vector available_fields = {"Auto", "total"}; vector available_sensors = {"Auto"}; cpu_info current_cpu; bool got_sensors = false, cpu_temp_only = false; //* Populate found_sensors map bool get_sensors(); //* Get current cpu clock speed string get_cpuHz(); //* Search /proc/cpuinfo for a cpu name string get_cpuName(); struct Sensor { fs::path path; string label; int64_t temp = 0; int64_t high = 0; int64_t crit = 0; }; string cpu_sensor; vector core_sensors; std::unordered_map core_mapping; } // namespace Cpu namespace Mem { double old_uptime; std::vector zpools; void get_zpools(); } namespace Shared { fs::path passwd_path; uint64_t totalMem; long pageSize, clkTck, coreCount, physicalCoreCount, arg_max; int totalMem_len, kfscale; long bootTime; void init() { //? Shared global variables init int mib[2]; mib[0] = CTL_HW; mib[1] = HW_NCPU; int ncpu; size_t len = sizeof(ncpu); if (sysctl(mib, 2, &ncpu, &len, nullptr, 0) == -1) { Logger::warning("Could not determine number of cores, defaulting to 1."); } else { coreCount = ncpu; } pageSize = sysconf(_SC_PAGE_SIZE); if (pageSize <= 0) { pageSize = 4096; Logger::warning("Could not get system page size. Defaulting to 4096, processes memory usage might be incorrect."); } clkTck = sysconf(_SC_CLK_TCK); if (clkTck <= 0) { clkTck = 100; Logger::warning("Could not get system clock ticks per second. Defaulting to 100, processes cpu usage might be incorrect."); } int64_t memsize = 0; size_t size = sizeof(memsize); if (sysctlbyname("hw.physmem", &memsize, &size, nullptr, 0) < 0) { Logger::warning("Could not get memory size"); } totalMem = memsize; struct timeval result; size = sizeof(result); if (sysctlbyname("kern.boottime", &result, &size, nullptr, 0) < 0) { Logger::warning("Could not get boot time"); } else { bootTime = result.tv_sec; } size = sizeof(kfscale); if (sysctlbyname("kern.fscale", &kfscale, &size, nullptr, 0) == -1) { kfscale = 2048; } //* Get maximum length of process arguments arg_max = sysconf(_SC_ARG_MAX); //? Init for namespace Cpu Cpu::current_cpu.core_percent.insert(Cpu::current_cpu.core_percent.begin(), Shared::coreCount, {}); Cpu::current_cpu.temp.insert(Cpu::current_cpu.temp.begin(), Shared::coreCount + 1, {}); Cpu::core_old_totals.insert(Cpu::core_old_totals.begin(), Shared::coreCount, 0); Cpu::core_old_idles.insert(Cpu::core_old_idles.begin(), Shared::coreCount, 0); Logger::debug("Init -> Cpu::collect()"); Cpu::collect(); for (auto &[field, vec] : Cpu::current_cpu.cpu_percent) { if (not vec.empty() and not v_contains(Cpu::available_fields, field)) Cpu::available_fields.push_back(field); } Logger::debug("Init -> Cpu::get_cpuName()"); Cpu::cpuName = Cpu::get_cpuName(); Logger::debug("Init -> Cpu::get_sensors()"); Cpu::got_sensors = Cpu::get_sensors(); Logger::debug("Init -> Cpu::get_core_mapping()"); Cpu::core_mapping = Cpu::get_core_mapping(); //? Init for namespace Mem Mem::old_uptime = system_uptime(); Logger::debug("Init -> Mem::collect()"); Mem::collect(); Logger::debug("Init -> Mem::get_zpools()"); Mem::get_zpools(); } //* RAII wrapper for kvm_openfiles class kvm_openfiles_wrapper { kvm_t* kd = nullptr; public: kvm_openfiles_wrapper(const char* execf, const char* coref, const char* swapf, int flags, char* err) { this->kd = kvm_openfiles(execf, coref, swapf, flags, err); } ~kvm_openfiles_wrapper() { kvm_close(kd); } auto operator()() -> kvm_t* { return kd; } }; } // namespace Shared namespace Cpu { string cpuName; string cpuHz; bool has_battery = true; tuple current_bat; const array time_names = {"user", "nice", "system", "idle"}; std::unordered_map cpu_old = { {"totals", 0}, {"idles", 0}, {"user", 0}, {"nice", 0}, {"system", 0}, {"idle", 0} }; string get_cpuName() { string name; char buffer[1024]; size_t size = sizeof(buffer); if (sysctlbyname("hw.model", &buffer, &size, nullptr, 0) < 0) { Logger::error("Failed to get CPU name"); return name; } name = string(buffer); auto name_vec = ssplit(name); if ((s_contains(name, "Xeon"s) or v_contains(name_vec, "Duo"s)) and v_contains(name_vec, "CPU"s)) { auto cpu_pos = v_index(name_vec, "CPU"s); if (cpu_pos < name_vec.size() - 1 and not name_vec.at(cpu_pos + 1).ends_with(')')) name = name_vec.at(cpu_pos + 1); else name.clear(); } else if (v_contains(name_vec, "Ryzen"s)) { auto ryz_pos = v_index(name_vec, "Ryzen"s); name = "Ryzen" + (ryz_pos < name_vec.size() - 1 ? ' ' + name_vec.at(ryz_pos + 1) : "") + (ryz_pos < name_vec.size() - 2 ? ' ' + name_vec.at(ryz_pos + 2) : ""); } else if (s_contains(name, "Intel"s) and v_contains(name_vec, "CPU"s)) { auto cpu_pos = v_index(name_vec, "CPU"s); if (cpu_pos < name_vec.size() - 1 and not name_vec.at(cpu_pos + 1).ends_with(')') and name_vec.at(cpu_pos + 1) != "@") name = name_vec.at(cpu_pos + 1); else name.clear(); } else name.clear(); if (name.empty() and not name_vec.empty()) { for (const auto &n : name_vec) { if (n == "@") break; name += n + ' '; } name.pop_back(); for (const auto& replace : {"Processor", "CPU", "(R)", "(TM)", "Intel", "AMD", "Core"}) { name = s_replace(name, replace, ""); name = s_replace(name, " ", " "); } name = trim(name); } return name; } bool get_sensors() { got_sensors = false; if (Config::getB("show_coretemp") and Config::getB("check_temp")) { int32_t temp; size_t size = sizeof(temp); if (sysctlbyname("dev.cpu.0.temperature", &temp, &size, nullptr, 0) < 0) { Logger::warning("Could not get temp sensor - maybe you need to load the coretemp module"); } else { got_sensors = true; int temp; size_t size = sizeof(temp); sysctlbyname("dev.cpu.0.coretemp.tjmax", &temp, &size, nullptr, 0); //asuming the max temp is same for all cores temp = (temp - 2732) / 10; // since it's an int, it's multiplied by 10, and offset to absolute zero... current_cpu.temp_max = temp; } } return got_sensors; } void update_sensors() { int temp = 0; int p_temp = 0; int found = 0; bool got_package = false; size_t size = sizeof(p_temp); if (sysctlbyname("hw.acpi.thermal.tz0.temperature", &p_temp, &size, nullptr, 0) >= 0) { got_package = true; p_temp = (p_temp - 2732) / 10; // since it's an int, it's multiplied by 10, and offset to absolute zero... } size = sizeof(temp); for (int i = 0; i < Shared::coreCount; i++) { string s = "dev.cpu." + std::to_string(i) + ".temperature"; if (sysctlbyname(s.c_str(), &temp, &size, nullptr, 0) >= 0) { temp = (temp - 2732) / 10; if (not got_package) { p_temp += temp; found++; } if (cmp_less(i + 1, current_cpu.temp.size())) { current_cpu.temp.at(i + 1).push_back(temp); if (current_cpu.temp.at(i + 1).size() > 20) current_cpu.temp.at(i + 1).pop_front(); } } } if (not got_package) p_temp /= found; current_cpu.temp.at(0).push_back(p_temp); if (current_cpu.temp.at(0).size() > 20) current_cpu.temp.at(0).pop_front(); } string get_cpuHz() { unsigned int freq = 1; size_t size = sizeof(freq); if (sysctlbyname("dev.cpu.0.freq", &freq, &size, nullptr, 0) < 0) { return ""; } return std::to_string(freq / 1000.0 ).substr(0, 3); // seems to be in MHz } auto get_core_mapping() -> std::unordered_map { std::unordered_map core_map; if (cpu_temp_only) return core_map; for (long i = 0; i < Shared::coreCount; i++) { core_map[i] = i; } //? If core mapping from cpuinfo was incomplete try to guess remainder, if missing completely, map 0-0 1-1 2-2 etc. if (cmp_less(core_map.size(), Shared::coreCount)) { if (Shared::coreCount % 2 == 0 and (long) core_map.size() == Shared::coreCount / 2) { for (int i = 0, n = 0; i < Shared::coreCount / 2; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[Shared::coreCount / 2 + i] = n++; } } else { core_map.clear(); for (int i = 0, n = 0; i < Shared::coreCount; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[i] = n++; } } } //? Apply user set custom mapping if any const auto &custom_map = Config::getS("cpu_core_map"); if (not custom_map.empty()) { try { for (const auto &split : ssplit(custom_map)) { const auto vals = ssplit(split, ':'); if (vals.size() != 2) continue; int change_id = std::stoi(vals.at(0)); int new_id = std::stoi(vals.at(1)); if (not core_map.contains(change_id) or cmp_greater(new_id, core_sensors.size())) continue; core_map.at(change_id) = new_id; } } catch (...) { } } return core_map; } auto get_battery() -> tuple { if (not has_battery) return {0, 0, ""}; long seconds = -1; uint32_t percent = -1; size_t size = sizeof(percent); string status = "discharging"; if (sysctlbyname("hw.acpi.battery.life", &percent, &size, nullptr, 0) < 0) { has_battery = false; } else { has_battery = true; size_t size = sizeof(seconds); if (sysctlbyname("hw.acpi.battery.time", &seconds, &size, nullptr, 0) < 0) { seconds = 0; } int state; size = sizeof(state); if (sysctlbyname("hw.acpi.battery.state", &state, &size, nullptr, 0) < 0) { status = "unknown"; } else { if (state == 2) { status = "charging"; } } if (percent == 100) { status = "full"; } } return {percent, seconds, status}; } auto collect(bool no_update) -> cpu_info & { if (Runner::stopping or (no_update and not current_cpu.cpu_percent.at("total").empty())) return current_cpu; auto &cpu = current_cpu; if (getloadavg(cpu.load_avg.data(), cpu.load_avg.size()) < 0) { Logger::error("failed to get load averages"); } vector> cpu_time(Shared::coreCount); size_t size = sizeof(long) * CPUSTATES * Shared::coreCount; if (sysctlbyname("kern.cp_times", &cpu_time[0], &size, nullptr, 0) == -1) { Logger::error("failed to get CPU times"); } long long global_totals = 0; long long global_idles = 0; vector times_summed = {0, 0, 0, 0}; for (long i = 0; i < Shared::coreCount; i++) { vector times; //? 0=user, 1=nice, 2=system, 3=idle for (int x = 0; const unsigned int c_state : {CP_USER, CP_NICE, CP_SYS, CP_IDLE}) { auto val = cpu_time[i][c_state]; times.push_back(val); times_summed.at(x++) += val; } try { //? All values const long long totals = std::accumulate(times.begin(), times.end(), 0ll); //? Idle time const long long idles = times.at(3); global_totals += totals; global_idles += idles; //? Calculate cpu total for each core if (i > Shared::coreCount) break; const long long calc_totals = max(0ll, totals - core_old_totals.at(i)); const long long calc_idles = max(0ll, idles - core_old_idles.at(i)); core_old_totals.at(i) = totals; core_old_idles.at(i) = idles; cpu.core_percent.at(i).push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph if (cpu.core_percent.at(i).size() > 40) cpu.core_percent.at(i).pop_front(); } catch (const std::exception &e) { Logger::error("Cpu::collect() : " + (string)e.what()); throw std::runtime_error("collect() : " + (string)e.what()); } } const long long calc_totals = max(1ll, global_totals - cpu_old.at("totals")); const long long calc_idles = max(1ll, global_idles - cpu_old.at("idles")); //? Populate cpu.cpu_percent with all fields from syscall for (int ii = 0; const auto &val : times_summed) { cpu.cpu_percent.at(time_names.at(ii)).push_back(clamp((long long)round((double)(val - cpu_old.at(time_names.at(ii))) * 100 / calc_totals), 0ll, 100ll)); cpu_old.at(time_names.at(ii)) = val; //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at(time_names.at(ii)).size(), width * 2)) cpu.cpu_percent.at(time_names.at(ii)).pop_front(); ii++; } cpu_old.at("totals") = global_totals; cpu_old.at("idles") = global_idles; //? Total usage of cpu cpu.cpu_percent.at("total").push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at("total").size(), width * 2)) cpu.cpu_percent.at("total").pop_front(); if (Config::getB("show_cpu_freq")) { auto hz = get_cpuHz(); if (hz != "") { cpuHz = hz; } } if (Config::getB("check_temp") and got_sensors) update_sensors(); if (Config::getB("show_battery") and has_battery) current_bat = get_battery(); return cpu; } } // namespace Cpu namespace Mem { bool has_swap = false; vector fstab; fs::file_time_type fstab_time; int disk_ios = 0; vector last_found; mem_info current_mem{}; uint64_t get_totalMem() { return Shared::totalMem; } void assign_values(struct disk_info& disk, int64_t readBytes, int64_t writeBytes) { disk_ios++; if (disk.io_read.empty()) { disk.io_read.push_back(0); } else { disk.io_read.push_back(max((int64_t)0, (readBytes - disk.old_io.at(0)))); } disk.old_io.at(0) = readBytes; while (cmp_greater(disk.io_read.size(), width * 2)) disk.io_read.pop_front(); if (disk.io_write.empty()) { disk.io_write.push_back(0); } else { disk.io_write.push_back(max((int64_t)0, (writeBytes - disk.old_io.at(1)))); } disk.old_io.at(1) = writeBytes; while (cmp_greater(disk.io_write.size(), width * 2)) disk.io_write.pop_front(); // no io times - need to push something anyway or we'll get an ABORT if (disk.io_activity.empty()) disk.io_activity.push_back(0); else disk.io_activity.push_back(clamp((long)round((double)(disk.io_write.back() + disk.io_read.back()) / (1 << 20)), 0l, 100l)); while (cmp_greater(disk.io_activity.size(), width * 2)) disk.io_activity.pop_front(); } class PipeWrapper { public: PipeWrapper(const char *file, const char *mode) {fd = popen(file, mode);} virtual ~PipeWrapper() {if (fd) pclose(fd);} auto operator()() -> FILE* { return fd;}; private: FILE *fd; }; // find all zpools in the system. Do this only at startup. void get_zpools() { std::regex toReplace("\\."); PipeWrapper poolPipe = PipeWrapper("zpool list -H -o name", "r"); while (not std::feof(poolPipe())) { char poolName[512]; size_t len = 512; if (fgets(poolName, len, poolPipe())) { poolName[strcspn(poolName, "\n")] = 0; Logger::debug("zpool found: " + string(poolName)); Mem::zpools.push_back(std::regex_replace(poolName, toReplace, "%25")); } } } void collect_disk(std::unordered_map &disks, std::unordered_map &mapping) { // this bit is for 'regular' mounts static struct statinfo cur; long double etime = 0; uint64_t total_bytes_read; uint64_t total_bytes_write; static std::unique_ptr curDevInfo (reinterpret_cast(std::calloc(1, sizeof(struct devinfo))), std::free); cur.dinfo = curDevInfo.get(); if (devstat_getdevs(nullptr, &cur) != -1) { for (int i = 0; i < cur.dinfo->numdevs; i++) { auto d = cur.dinfo->devices[i]; string devStatName = "/dev/" + string(d.device_name) + std::to_string(d.unit_number); for (auto& [ignored, disk] : disks) { // find matching mountpoints - could be multiple as d.device_name is only ada (and d.unit_number is the device number), while the disk.dev is like /dev/ada0s1 if (disk.dev.string().rfind(devStatName, 0) == 0 and mapping.contains(disk.dev)) { devstat_compute_statistics(&d, nullptr, etime, DSM_TOTAL_BYTES_READ, &total_bytes_read, DSM_TOTAL_BYTES_WRITE, &total_bytes_write, DSM_NONE); assign_values(disk, total_bytes_read, total_bytes_write); string mountpoint = mapping.at(disk.dev); Logger::debug("dev " + devStatName + " -> " + mountpoint + " read=" + std::to_string(total_bytes_read) + " write=" + std::to_string(total_bytes_write)); } } } } // this code is for ZFS mounts for (const auto &poolName : Mem::zpools) { char sysCtl[1024]; snprintf(sysCtl, sizeof(sysCtl), "sysctl kstat.zfs.%s.dataset | egrep \'dataset_name|nread|nwritten\'", poolName.c_str()); PipeWrapper f = PipeWrapper(sysCtl, "r"); if (f()) { char buf[512]; size_t len = 512; uint64_t nread = 0, nwritten = 0; while (not std::feof(f())) { if (fgets(buf, len, f())) { char *name = std::strtok(buf, ": \n"); char *value = std::strtok(nullptr, ": \n"); if (string(name).find("dataset_name") != string::npos) { // create entry if datasetname matches with anything in mapping // relies on the fact that the dataset name is last value in the list // alternatively you could parse the objset-0x... when this changes, you have a new entry string datasetname = string(value);// this is the zfs volume, like 'zroot/usr/home' -> this maps onto the device we get back from getmntinfo(3) if (mapping.contains(datasetname)) { string mountpoint = mapping.at(datasetname); if (disks.contains(mountpoint)) { auto& disk = disks.at(mountpoint); assign_values(disk, nread, nwritten); } } } else if (string(name).find("nread") != string::npos) { nread = atoll(value); } else if (string(name).find("nwritten") != string::npos) { nwritten = atoll(value); } } } } } } auto collect(bool no_update) -> mem_info & { if (Runner::stopping or (no_update and not current_mem.percent.at("used").empty())) return current_mem; auto show_swap = Config::getB("show_swap"); auto show_disks = Config::getB("show_disks"); auto swap_disk = Config::getB("swap_disk"); auto &mem = current_mem; static bool snapped = (getenv("BTOP_SNAPPED") != nullptr); int mib[4]; u_int memActive, memWire, cachedMem, freeMem; size_t len; len = 4; sysctlnametomib("vm.stats.vm.v_active_count", mib, &len); len = sizeof(memActive); sysctl(mib, 4, &(memActive), &len, nullptr, 0); memActive *= Shared::pageSize; len = 4; sysctlnametomib("vm.stats.vm.v_wire_count", mib, &len); len = sizeof(memWire); sysctl(mib, 4, &(memWire), &len, nullptr, 0); memWire *= Shared::pageSize; mem.stats.at("used") = memWire + memActive; mem.stats.at("available") = Shared::totalMem - memActive - memWire; len = sizeof(cachedMem); len = 4; sysctlnametomib("vm.stats.vm.v_cache_count", mib, &len); sysctl(mib, 4, &(cachedMem), &len, nullptr, 0); cachedMem *= Shared::pageSize; mem.stats.at("cached") = cachedMem; len = sizeof(freeMem); len = 4; sysctlnametomib("vm.stats.vm.v_free_count", mib, &len); sysctl(mib, 4, &(freeMem), &len, nullptr, 0); freeMem *= Shared::pageSize; mem.stats.at("free") = freeMem; if (show_swap) { char buf[_POSIX2_LINE_MAX]; Shared::kvm_openfiles_wrapper kd(nullptr, _PATH_DEVNULL, nullptr, O_RDONLY, buf); struct kvm_swap swap[16]; int nswap = kvm_getswapinfo(kd(), swap, 16, 0); int totalSwap = 0, usedSwap = 0; for (int i = 0; i < nswap; i++) { totalSwap += swap[i].ksw_total; usedSwap += swap[i].ksw_used; } mem.stats.at("swap_total") = totalSwap * Shared::pageSize; mem.stats.at("swap_used") = usedSwap * Shared::pageSize; } if (show_swap and mem.stats.at("swap_total") > 0) { for (const auto &name : swap_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / mem.stats.at("swap_total"))); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } has_swap = true; } else has_swap = false; //? Calculate percentages for (const auto &name : mem_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / Shared::totalMem)); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } if (show_disks) { std::unordered_map mapping; // keep mapping from device -> mountpoint, since IOKit doesn't give us the mountpoint double uptime = system_uptime(); auto &disks_filter = Config::getS("disks_filter"); bool filter_exclude = false; // auto only_physical = Config::getB("only_physical"); auto &disks = mem.disks; vector filter; if (not disks_filter.empty()) { filter = ssplit(disks_filter); if (filter.at(0).starts_with("exclude=")) { filter_exclude = true; filter.at(0) = filter.at(0).substr(8); } } struct statfs *stfs; int count = getmntinfo(&stfs, MNT_WAIT); vector found; found.reserve(last_found.size()); for (int i = 0; i < count; i++) { auto fstype = string(stfs[i].f_fstypename); if (fstype == "autofs" || fstype == "devfs" || fstype == "linprocfs" || fstype == "procfs" || fstype == "tmpfs" || fstype == "linsysfs" || fstype == "fdesckfs") { // in memory filesystems -> not useful to show continue; } std::error_code ec; string mountpoint = stfs[i].f_mntonname; string dev = stfs[i].f_mntfromname; mapping[dev] = mountpoint; //? Match filter if not empty if (not filter.empty()) { bool match = v_contains(filter, mountpoint); if ((filter_exclude and match) or (not filter_exclude and not match)) continue; } found.push_back(mountpoint); if (not disks.contains(mountpoint)) { disks[mountpoint] = disk_info{fs::canonical(dev, ec), fs::path(mountpoint).filename()}; if (disks.at(mountpoint).dev.empty()) disks.at(mountpoint).dev = dev; if (disks.at(mountpoint).name.empty()) disks.at(mountpoint).name = (mountpoint == "/" ? "root" : mountpoint); } if (not v_contains(last_found, mountpoint)) redraw = true; disks.at(mountpoint).free = stfs[i].f_bfree; disks.at(mountpoint).total = stfs[i].f_iosize; } //? Remove disks no longer mounted or filtered out if (swap_disk and has_swap) found.push_back("swap"); for (auto it = disks.begin(); it != disks.end();) { if (not v_contains(found, it->first)) it = disks.erase(it); else it++; } if (found.size() != last_found.size()) redraw = true; last_found = std::move(found); //? Get disk/partition stats for (auto &[mountpoint, disk] : disks) { if (std::error_code ec; not fs::exists(mountpoint, ec)) continue; struct statvfs vfs; if (statvfs(mountpoint.c_str(), &vfs) < 0) { Logger::warning("Failed to get disk/partition stats with statvfs() for: " + mountpoint); continue; } disk.total = vfs.f_blocks * vfs.f_frsize; disk.free = vfs.f_bfree * vfs.f_frsize; disk.used = disk.total - disk.free; disk.used_percent = round((double)disk.used * 100 / disk.total); disk.free_percent = 100 - disk.used_percent; } //? Setup disks order in UI and add swap if enabled mem.disks_order.clear(); if (snapped and disks.contains("/mnt")) mem.disks_order.push_back("/mnt"); else if (disks.contains("/")) mem.disks_order.push_back("/"); if (swap_disk and has_swap) { mem.disks_order.push_back("swap"); if (not disks.contains("swap")) disks["swap"] = {"", "swap"}; disks.at("swap").total = mem.stats.at("swap_total"); disks.at("swap").used = mem.stats.at("swap_used"); disks.at("swap").free = mem.stats.at("swap_free"); disks.at("swap").used_percent = mem.percent.at("swap_used").back(); disks.at("swap").free_percent = mem.percent.at("swap_free").back(); } for (const auto &name : last_found) if (not is_in(name, "/", "swap", "/dev")) mem.disks_order.push_back(name); disk_ios = 0; collect_disk(disks, mapping); old_uptime = uptime; } return mem; } } // namespace Mem namespace Net { std::unordered_map current_net; net_info empty_net = {}; vector interfaces; string selected_iface; int errors = 0; std::unordered_map graph_max = {{"download", {}}, {"upload", {}}}; std::unordered_map> max_count = {{"download", {}}, {"upload", {}}}; bool rescale = true; uint64_t timestamp = 0; //* RAII wrapper for getifaddrs class getifaddr_wrapper { struct ifaddrs *ifaddr; public: int status; getifaddr_wrapper() { status = getifaddrs(&ifaddr); } ~getifaddr_wrapper() { freeifaddrs(ifaddr); } auto operator()() -> struct ifaddrs * { return ifaddr; } }; auto collect(bool no_update) -> net_info & { auto &net = current_net; auto &config_iface = Config::getS("net_iface"); auto net_sync = Config::getB("net_sync"); auto net_auto = Config::getB("net_auto"); auto new_timestamp = time_ms(); if (not no_update and errors < 3) { //? Get interface list using getifaddrs() wrapper getifaddr_wrapper if_wrap{}; if (if_wrap.status != 0) { errors++; Logger::error("Net::collect() -> getifaddrs() failed with id " + to_string(if_wrap.status)); redraw = true; return empty_net; } int family = 0; static_assert(INET6_ADDRSTRLEN >= INET_ADDRSTRLEN); // 46 >= 16, compile-time assurance. enum { IPBUFFER_MAXSIZE = INET6_ADDRSTRLEN }; // manually using the known biggest value, guarded by the above static_assert char ip[IPBUFFER_MAXSIZE]; interfaces.clear(); string ipv4, ipv6; //? Iteration over all items in getifaddrs() list for (auto *ifa = if_wrap(); ifa != nullptr; ifa = ifa->ifa_next) { if (ifa->ifa_addr == nullptr) continue; family = ifa->ifa_addr->sa_family; const auto &iface = ifa->ifa_name; //? Update available interfaces vector and get status of interface if (not v_contains(interfaces, iface)) { interfaces.push_back(iface); net[iface].connected = (ifa->ifa_flags & IFF_RUNNING); // An interface can have more than one IP of the same family associated with it, // but we pick only the first one to show in the NET box. // Note: Interfaces without any IPv4 and IPv6 set are still valid and monitorable! net[iface].ipv4.clear(); net[iface].ipv6.clear(); } //? Get IPv4 address if (family == AF_INET) { if (net[iface].ipv4.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv4 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv4 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //? Get IPv6 address else if (family == AF_INET6) { if (net[iface].ipv6.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin6_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv6 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv6 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //else, ignoring family==AF_LINK (see man 3 getifaddrs) } std::unordered_map> ifstats; int mib[] = {CTL_NET, PF_ROUTE, 0, 0, NET_RT_IFLIST, 0}; size_t len; if (sysctl(mib, 6, nullptr, &len, nullptr, 0) < 0) { Logger::error("failed getting network interfaces"); } else { std::unique_ptr buf(new char[len]); if (sysctl(mib, 6, buf.get(), &len, nullptr, 0) < 0) { Logger::error("failed getting network interfaces"); } else { char *lim = buf.get() + len; char *next = nullptr; for (next = buf.get(); next < lim;) { struct if_msghdr *ifm = (struct if_msghdr *)next; next += ifm->ifm_msglen; struct if_data ifm_data = ifm->ifm_data; if (ifm->ifm_addrs & RTA_IFP) { struct sockaddr_dl *sdl = (struct sockaddr_dl *)(ifm + 1); char iface[32]; strncpy(iface, sdl->sdl_data, sdl->sdl_nlen); iface[sdl->sdl_nlen] = 0; ifstats[iface] = std::tuple(ifm_data.ifi_ibytes, ifm_data.ifi_obytes); } } } } //? Get total recieved and transmitted bytes + device address if no ip was found for (const auto &iface : interfaces) { for (const string dir : {"download", "upload"}) { auto &saved_stat = net.at(iface).stat.at(dir); auto &bandwidth = net.at(iface).bandwidth.at(dir); uint64_t val = dir == "download" ? std::get<0>(ifstats[iface]) : std::get<1>(ifstats[iface]); //? Update speed, total and top values if (val < saved_stat.last) { saved_stat.rollover += saved_stat.last; saved_stat.last = 0; } if (cmp_greater((unsigned long long)saved_stat.rollover + (unsigned long long)val, numeric_limits::max())) { saved_stat.rollover = 0; saved_stat.last = 0; } saved_stat.speed = round((double)(val - saved_stat.last) / ((double)(new_timestamp - timestamp) / 1000)); if (saved_stat.speed > saved_stat.top) saved_stat.top = saved_stat.speed; if (saved_stat.offset > val + saved_stat.rollover) saved_stat.offset = 0; saved_stat.total = (val + saved_stat.rollover) - saved_stat.offset; saved_stat.last = val; //? Add values to graph bandwidth.push_back(saved_stat.speed); while (cmp_greater(bandwidth.size(), width * 2)) bandwidth.pop_front(); //? Set counters for auto scaling if (net_auto and selected_iface == iface) { if (saved_stat.speed > graph_max[dir]) { ++max_count[dir][0]; if (max_count[dir][1] > 0) --max_count[dir][1]; } else if (graph_max[dir] > 10 << 10 and saved_stat.speed < graph_max[dir] / 10) { ++max_count[dir][1]; if (max_count[dir][0] > 0) --max_count[dir][0]; } } } } //? Clean up net map if needed if (net.size() > interfaces.size()) { for (auto it = net.begin(); it != net.end();) { if (not v_contains(interfaces, it->first)) it = net.erase(it); else it++; } } timestamp = new_timestamp; } //? Return empty net_info struct if no interfaces was found if (net.empty()) return empty_net; //? Find an interface to display if selected isn't set or valid if (selected_iface.empty() or not v_contains(interfaces, selected_iface)) { max_count["download"][0] = max_count["download"][1] = max_count["upload"][0] = max_count["upload"][1] = 0; redraw = true; if (net_auto) rescale = true; if (not config_iface.empty() and v_contains(interfaces, config_iface)) selected_iface = config_iface; else { //? Sort interfaces by total upload + download bytes auto sorted_interfaces = interfaces; rng::sort(sorted_interfaces, [&](const auto &a, const auto &b) { return cmp_greater(net.at(a).stat["download"].total + net.at(a).stat["upload"].total, net.at(b).stat["download"].total + net.at(b).stat["upload"].total); }); selected_iface.clear(); //? Try to set to a connected interface for (const auto &iface : sorted_interfaces) { if (net.at(iface).connected) selected_iface = iface; break; } //? If no interface is connected set to first available if (selected_iface.empty() and not sorted_interfaces.empty()) selected_iface = sorted_interfaces.at(0); else if (sorted_interfaces.empty()) return empty_net; } } //? Calculate max scale for graphs if needed if (net_auto) { bool sync = false; for (const auto &dir : {"download", "upload"}) { for (const auto &sel : {0, 1}) { if (rescale or max_count[dir][sel] >= 5) { const long long avg_speed = (net[selected_iface].bandwidth[dir].size() > 5 ? std::accumulate(net.at(selected_iface).bandwidth.at(dir).rbegin(), net.at(selected_iface).bandwidth.at(dir).rbegin() + 5, 0ll) / 5 : net[selected_iface].stat[dir].speed); graph_max[dir] = max(uint64_t(avg_speed * (sel == 0 ? 1.3 : 3.0)), (uint64_t)10 << 10); max_count[dir][0] = max_count[dir][1] = 0; redraw = true; if (net_sync) sync = true; break; } } //? Sync download/upload graphs if enabled if (sync) { const auto other = (string(dir) == "upload" ? "download" : "upload"); graph_max[other] = graph_max[dir]; max_count[other][0] = max_count[other][1] = 0; break; } } } rescale = false; return net.at(selected_iface); } } // namespace Net namespace Proc { vector current_procs; std::unordered_map uid_user; string current_sort; string current_filter; bool current_rev = false; fs::file_time_type passwd_time; uint64_t cputimes; int collapse = -1, expand = -1; uint64_t old_cputimes = 0; atomic numpids = 0; int filter_found = 0; detail_container detailed; string get_status(char s) { if (s & SRUN) return "Running"; if (s & SSLEEP) return "Sleeping"; if (s & SIDL) return "Idle"; if (s & SSTOP) return "Stopped"; if (s & SZOMB) return "Zombie"; return "Unknown"; } //* Get detailed info for selected process void _collect_details(const size_t pid, vector &procs) { if (pid != detailed.last_pid) { detailed = {}; detailed.last_pid = pid; detailed.skip_smaps = not Config::getB("proc_info_smaps"); } //? Copy proc_info for process from proc vector auto p_info = rng::find(procs, pid, &proc_info::pid); detailed.entry = *p_info; //? Update cpu percent deque for process cpu graph if (not Config::getB("proc_per_core")) detailed.entry.cpu_p *= Shared::coreCount; detailed.cpu_percent.push_back(clamp((long long)round(detailed.entry.cpu_p), 0ll, 100ll)); while (cmp_greater(detailed.cpu_percent.size(), width)) detailed.cpu_percent.pop_front(); //? Process runtime : current time - start time (both in unix time - seconds since epoch) struct timeval currentTime; gettimeofday(¤tTime, nullptr); detailed.elapsed = sec_to_dhms(currentTime.tv_sec - detailed.entry.cpu_s); // only interested in second granularity, so ignoring tc_usec if (detailed.elapsed.size() > 8) detailed.elapsed.resize(detailed.elapsed.size() - 3); //? Get parent process name if (detailed.parent.empty()) { auto p_entry = rng::find(procs, detailed.entry.ppid, &proc_info::pid); if (p_entry != procs.end()) detailed.parent = p_entry->name; } //? Expand process status from single char to explanative string detailed.status = get_status(detailed.entry.state); detailed.mem_bytes.push_back(detailed.entry.mem); detailed.memory = floating_humanizer(detailed.entry.mem); if (detailed.first_mem == -1 or detailed.first_mem < detailed.mem_bytes.back() / 2 or detailed.first_mem > detailed.mem_bytes.back() * 4) { detailed.first_mem = min((uint64_t)detailed.mem_bytes.back() * 2, Mem::get_totalMem()); redraw = true; } while (cmp_greater(detailed.mem_bytes.size(), width)) detailed.mem_bytes.pop_front(); // rusage_info_current rusage; // if (proc_pid_rusage(pid, RUSAGE_INFO_CURRENT, (void **)&rusage) == 0) { // // this fails for processes we don't own - same as in Linux // detailed.io_read = floating_humanizer(rusage.ri_diskio_bytesread); // detailed.io_write = floating_humanizer(rusage.ri_diskio_byteswritten); // } } //* Collects and sorts process information from /proc auto collect(bool no_update) -> vector & { const auto &sorting = Config::getS("proc_sorting"); auto reverse = Config::getB("proc_reversed"); const auto &filter = Config::getS("proc_filter"); auto per_core = Config::getB("proc_per_core"); auto tree = Config::getB("proc_tree"); auto show_detailed = Config::getB("show_detailed"); const size_t detailed_pid = Config::getI("detailed_pid"); bool should_filter = current_filter != filter; if (should_filter) current_filter = filter; bool sorted_change = (sorting != current_sort or reverse != current_rev or should_filter); if (sorted_change) { current_sort = sorting; current_rev = reverse; } const int cmult = (per_core) ? Shared::coreCount : 1; bool got_detailed = false; static vector found; vector> cpu_time(Shared::coreCount); size_t size = sizeof(long) * CPUSTATES * Shared::coreCount; if (sysctlbyname("kern.cp_times", &cpu_time[0], &size, nullptr, 0) == -1) { Logger::error("failed to get CPU times"); } cputimes = 0; for (const auto core : cpu_time) { for (const unsigned int c_state : {CP_USER, CP_NICE, CP_SYS, CP_IDLE}) { cputimes += core[c_state]; } } //* Use pids from last update if only changing filter, sorting or tree options if (no_update and not current_procs.empty()) { if (show_detailed and detailed_pid != detailed.last_pid) _collect_details(detailed_pid, current_procs); } else { //* ---------------------------------------------Collection start---------------------------------------------- should_filter = true; found.clear(); struct timeval currentTime; gettimeofday(¤tTime, nullptr); const double timeNow = currentTime.tv_sec + (currentTime.tv_usec / 1'000'000); int count = 0; char buf[_POSIX2_LINE_MAX]; Shared::kvm_openfiles_wrapper kd(nullptr, _PATH_DEVNULL, nullptr, O_RDONLY, buf); const struct kinfo_proc* kprocs = kvm_getprocs(kd(), KERN_PROC_PROC, 0, &count); for (int i = 0; i < count; i++) { const struct kinfo_proc* kproc = &kprocs[i]; const size_t pid = (size_t)kproc->ki_pid; if (pid < 1) continue; found.push_back(pid); //? Check if pid already exists in current_procs bool no_cache = false; auto find_old = rng::find(current_procs, pid, &proc_info::pid); if (find_old == current_procs.end()) { current_procs.push_back({pid}); find_old = current_procs.end() - 1; no_cache = true; } auto &new_proc = *find_old; //? Get program name, command, username, parent pid, nice and status if (no_cache) { if (string(kproc->ki_comm) == "idle"s) { current_procs.pop_back(); found.pop_back(); continue; } new_proc.name = kproc->ki_comm; char** argv = kvm_getargv(kd(), kproc, 0); if (argv) { for (int i = 0; argv[i] and cmp_less(new_proc.cmd.size(), 1000); i++) { new_proc.cmd += argv[i] + " "s; } if (not new_proc.cmd.empty()) new_proc.cmd.pop_back(); } if (new_proc.cmd.empty()) new_proc.cmd = new_proc.name; if (new_proc.cmd.size() > 1000) { new_proc.cmd.resize(1000); new_proc.cmd.shrink_to_fit(); } new_proc.ppid = kproc->ki_ppid; new_proc.cpu_s = round(kproc->ki_start.tv_sec); struct passwd *pwd = getpwuid(kproc->ki_uid); if (pwd) new_proc.user = pwd->pw_name; } new_proc.p_nice = kproc->ki_nice; new_proc.state = kproc->ki_stat; int cpu_t = 0; cpu_t = kproc->ki_rusage.ru_utime.tv_sec * 1'000'000 + kproc->ki_rusage.ru_utime.tv_usec + kproc->ki_rusage.ru_stime.tv_sec * 1'000'000 + kproc->ki_rusage.ru_stime.tv_usec; new_proc.mem = kproc->ki_rssize * Shared::pageSize; new_proc.threads = kproc->ki_numthreads; //? Process cpu usage since last update new_proc.cpu_p = clamp((100.0 * kproc->ki_pctcpu / Shared::kfscale) * cmult, 0.0, 100.0 * Shared::coreCount); //? Process cumulative cpu usage since process start new_proc.cpu_c = (double)(cpu_t * Shared::clkTck / 1'000'000) / max(1.0, timeNow - new_proc.cpu_s); //? Update cached value with latest cpu times new_proc.cpu_t = cpu_t; if (show_detailed and not got_detailed and new_proc.pid == detailed_pid) { got_detailed = true; } } //? Clear dead processes from current_procs auto eraser = rng::remove_if(current_procs, [&](const auto &element) { return not v_contains(found, element.pid); }); current_procs.erase(eraser.begin(), eraser.end()); //? Update the details info box for process if active if (show_detailed and got_detailed) { _collect_details(detailed_pid, current_procs); } else if (show_detailed and not got_detailed and detailed.status != "Dead") { detailed.status = "Dead"; redraw = true; } old_cputimes = cputimes; } //* ---------------------------------------------Collection done----------------------------------------------- //* Match filter if defined if (should_filter) { filter_found = 0; for (auto& p : current_procs) { if (not tree and not filter.empty()) { if (not s_contains_ic(to_string(p.pid), filter) and not s_contains_ic(p.name, filter) and not s_contains_ic(p.cmd, filter) and not s_contains_ic(p.user, filter)) { p.filtered = true; filter_found++; } else { p.filtered = false; } } else { p.filtered = false; } } } //* Sort processes if (sorted_change or not no_update) { proc_sorter(current_procs, sorting, reverse, tree); } //* Generate tree view if enabled if (tree and (not no_update or should_filter or sorted_change)) { bool locate_selection = false; if (auto find_pid = (collapse != -1 ? collapse : expand); find_pid != -1) { auto collapser = rng::find(current_procs, find_pid, &proc_info::pid); if (collapser != current_procs.end()) { if (collapse == expand) { collapser->collapsed = not collapser->collapsed; } else if (collapse > -1) { collapser->collapsed = true; } else if (expand > -1) { collapser->collapsed = false; } if (Config::ints.at("proc_selected") > 0) locate_selection = true; } collapse = expand = -1; } if (should_filter or not filter.empty()) filter_found = 0; vector tree_procs; tree_procs.reserve(current_procs.size()); for (auto& p : current_procs) { if (not v_contains(found, p.ppid)) p.ppid = 0; } //? Stable sort to retain selected sorting among processes with the same parent rng::stable_sort(current_procs, rng::less{}, & proc_info::ppid); //? Start recursive iteration over processes with the lowest shared parent pids for (auto& p : rng::equal_range(current_procs, current_procs.at(0).ppid, rng::less{}, &proc_info::ppid)) { _tree_gen(p, current_procs, tree_procs, 0, false, filter, false, no_update, should_filter); } //? Recursive sort over tree structure to account for collapsed processes in the tree int index = 0; tree_sort(tree_procs, sorting, reverse, index, current_procs.size()); //? Add tree begin symbol to first item if childless if (tree_procs.front().children.empty()) tree_procs.front().entry.get().prefix.replace(tree_procs.front().entry.get().prefix.size() - 8, 8, " ┌─ "); //? Add tree terminator symbol to last item if childless if (tree_procs.back().children.empty()) tree_procs.back().entry.get().prefix.replace(tree_procs.back().entry.get().prefix.size() - 8, 8, " └─ "); //? Final sort based on tree index rng::sort(current_procs, rng::less{}, & proc_info::tree_index); //? Move current selection/view to the selected process when collapsing/expanding in the tree if (locate_selection) { int loc = rng::find(current_procs, Proc::selected_pid, &proc_info::pid)->tree_index; if (Config::ints.at("proc_start") >= loc or Config::ints.at("proc_start") <= loc - Proc::select_max) Config::ints.at("proc_start") = max(0, loc - 1); Config::ints.at("proc_selected") = loc - Config::ints.at("proc_start") + 1; } } numpids = (int)current_procs.size() - filter_found; return current_procs; } } // namespace Proc namespace Tools { double system_uptime() { struct timeval ts, currTime; std::size_t len = sizeof(ts); int mib[2] = {CTL_KERN, KERN_BOOTTIME}; if (sysctl(mib, 2, &ts, &len, nullptr, 0) != -1) { gettimeofday(&currTime, nullptr); return currTime.tv_sec - ts.tv_sec; } return 0.0; } } // namespace Tools btop-1.3.0/src/linux/000077500000000000000000000000001454653170500144175ustar00rootroot00000000000000btop-1.3.0/src/linux/btop_collect.cpp000066400000000000000000003054271454653170500176070ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include #include #include #include #include #include #include #include #include #include #include #include #include // for inet_ntop() #include #include #include #include #include #if defined(RSMI_STATIC) #include #endif #if !(defined(STATIC_BUILD) && defined(__GLIBC__)) #include #endif #include "../btop_shared.hpp" #include "../btop_config.hpp" #include "../btop_tools.hpp" using std::clamp; using std::cmp_greater; using std::cmp_less; using std::ifstream; using std::max; using std::min; using std::numeric_limits; using std::round; using std::streamsize; using std::vector; using std::future; using std::async; using std::pair; namespace fs = std::filesystem; namespace rng = std::ranges; using namespace Tools; using namespace std::literals; // for operator""s using namespace std::chrono_literals; //? --------------------------------------------------- FUNCTIONS ----------------------------------------------------- namespace Cpu { vector core_old_totals; vector core_old_idles; vector available_fields = {"Auto", "total"}; vector available_sensors = {"Auto"}; cpu_info current_cpu; fs::path freq_path = "/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq"; bool got_sensors{}; bool cpu_temp_only{}; //* Populate found_sensors map bool get_sensors(); //* Get current cpu clock speed string get_cpuHz(); //* Search /proc/cpuinfo for a cpu name string get_cpuName(); struct Sensor { fs::path path; string label; int64_t temp{}; int64_t high{}; int64_t crit{}; }; std::unordered_map found_sensors; string cpu_sensor; vector core_sensors; std::unordered_map core_mapping; } namespace Gpu { vector gpus; #ifdef GPU_SUPPORT //? NVIDIA data collection namespace Nvml { //? NVML defines, structs & typedefs #define NVML_DEVICE_NAME_BUFFER_SIZE 64 #define NVML_SUCCESS 0 #define NVML_TEMPERATURE_THRESHOLD_SHUTDOWN 0 #define NVML_CLOCK_GRAPHICS 0 #define NVML_CLOCK_MEM 2 #define NVML_TEMPERATURE_GPU 0 #define NVML_PCIE_UTIL_TX_BYTES 0 #define NVML_PCIE_UTIL_RX_BYTES 1 typedef void* nvmlDevice_t; // we won't be accessing any of the underlying struct's properties, so this is fine typedef int nvmlReturn_t, // enums are basically ints nvmlTemperatureThresholds_t, nvmlClockType_t, nvmlPstates_t, nvmlTemperatureSensors_t, nvmlPcieUtilCounter_t; struct nvmlUtilization_t {unsigned int gpu, memory;}; struct nvmlMemory_t {unsigned long long total, free, used;}; //? Function pointers const char* (*nvmlErrorString)(nvmlReturn_t); nvmlReturn_t (*nvmlInit)(); nvmlReturn_t (*nvmlShutdown)(); nvmlReturn_t (*nvmlDeviceGetCount)(unsigned int*); nvmlReturn_t (*nvmlDeviceGetHandleByIndex)(unsigned int, nvmlDevice_t*); nvmlReturn_t (*nvmlDeviceGetName)(nvmlDevice_t, char*, unsigned int); nvmlReturn_t (*nvmlDeviceGetPowerManagementLimit)(nvmlDevice_t, unsigned int*); nvmlReturn_t (*nvmlDeviceGetTemperatureThreshold)(nvmlDevice_t, nvmlTemperatureThresholds_t, unsigned int*); nvmlReturn_t (*nvmlDeviceGetUtilizationRates)(nvmlDevice_t, nvmlUtilization_t*); nvmlReturn_t (*nvmlDeviceGetClockInfo)(nvmlDevice_t, nvmlClockType_t, unsigned int*); nvmlReturn_t (*nvmlDeviceGetPowerUsage)(nvmlDevice_t, unsigned int*); nvmlReturn_t (*nvmlDeviceGetPowerState)(nvmlDevice_t, nvmlPstates_t*); nvmlReturn_t (*nvmlDeviceGetTemperature)(nvmlDevice_t, nvmlTemperatureSensors_t, unsigned int*); nvmlReturn_t (*nvmlDeviceGetMemoryInfo)(nvmlDevice_t, nvmlMemory_t*); nvmlReturn_t (*nvmlDeviceGetPcieThroughput)(nvmlDevice_t, nvmlPcieUtilCounter_t, unsigned int*); //? Data void* nvml_dl_handle; bool initialized = false; bool init(); bool shutdown(); template bool collect(gpu_info* gpus_slice); vector devices; unsigned int device_count = 0; } //? AMD data collection namespace Rsmi { #if !defined(RSMI_STATIC) //? RSMI defines, structs & typedefs #define RSMI_MAX_NUM_FREQUENCIES 32 #define RSMI_STATUS_SUCCESS 0 #define RSMI_MEM_TYPE_VRAM 0 #define RSMI_TEMP_CURRENT 0 #define RSMI_TEMP_TYPE_EDGE 0 #define RSMI_CLK_TYPE_MEM 4 #define RSMI_CLK_TYPE_SYS 0 #define RSMI_TEMP_MAX 1 typedef int rsmi_status_t, rsmi_temperature_metric_t, rsmi_clk_type_t, rsmi_memory_type_t; struct rsmi_frequencies_t {uint32_t num_supported, current, frequency[RSMI_MAX_NUM_FREQUENCIES];}; //? Function pointers rsmi_status_t (*rsmi_init)(uint64_t); rsmi_status_t (*rsmi_shut_down)(); rsmi_status_t (*rsmi_num_monitor_devices)(uint32_t*); rsmi_status_t (*rsmi_dev_name_get)(uint32_t, char*, size_t); rsmi_status_t (*rsmi_dev_power_cap_get)(uint32_t, uint32_t, uint64_t*); rsmi_status_t (*rsmi_dev_temp_metric_get)(uint32_t, uint32_t, rsmi_temperature_metric_t, int64_t*); rsmi_status_t (*rsmi_dev_busy_percent_get)(uint32_t, uint32_t*); rsmi_status_t (*rsmi_dev_memory_busy_percent_get)(uint32_t, uint32_t*); rsmi_status_t (*rsmi_dev_gpu_clk_freq_get)(uint32_t, rsmi_clk_type_t, rsmi_frequencies_t*); rsmi_status_t (*rsmi_dev_power_ave_get)(uint32_t, uint32_t, uint64_t*); rsmi_status_t (*rsmi_dev_memory_total_get)(uint32_t, rsmi_memory_type_t, uint64_t*); rsmi_status_t (*rsmi_dev_memory_usage_get)(uint32_t, rsmi_memory_type_t, uint64_t*); rsmi_status_t (*rsmi_dev_pci_throughput_get)(uint32_t, uint64_t*, uint64_t*, uint64_t*); //? Data void* rsmi_dl_handle; #endif bool initialized = false; bool init(); bool shutdown(); template bool collect(gpu_info* gpus_slice); uint32_t device_count = 0; } #endif } namespace Mem { double old_uptime; } namespace Shared { fs::path procPath, passwd_path; long pageSize, clkTck, coreCount; void init() { //? Shared global variables init procPath = (fs::is_directory(fs::path("/proc")) and access("/proc", R_OK) != -1) ? "/proc" : ""; if (procPath.empty()) throw std::runtime_error("Proc filesystem not found or no permission to read from it!"); passwd_path = (fs::is_regular_file(fs::path("/etc/passwd")) and access("/etc/passwd", R_OK) != -1) ? "/etc/passwd" : ""; if (passwd_path.empty()) Logger::warning("Could not read /etc/passwd, will show UID instead of username."); coreCount = sysconf(_SC_NPROCESSORS_ONLN); if (coreCount < 1) { coreCount = sysconf(_SC_NPROCESSORS_CONF); if (coreCount < 1) { coreCount = 1; Logger::warning("Could not determine number of cores, defaulting to 1."); } } pageSize = sysconf(_SC_PAGE_SIZE); if (pageSize <= 0) { pageSize = 4096; Logger::warning("Could not get system page size. Defaulting to 4096, processes memory usage might be incorrect."); } clkTck = sysconf(_SC_CLK_TCK); if (clkTck <= 0) { clkTck = 100; Logger::warning("Could not get system clock ticks per second. Defaulting to 100, processes cpu usage might be incorrect."); } //? Init for namespace Cpu if (not fs::exists(Cpu::freq_path) or access(Cpu::freq_path.c_str(), R_OK) == -1) Cpu::freq_path.clear(); Cpu::current_cpu.core_percent.insert(Cpu::current_cpu.core_percent.begin(), Shared::coreCount, {}); Cpu::current_cpu.temp.insert(Cpu::current_cpu.temp.begin(), Shared::coreCount + 1, {}); Cpu::core_old_totals.insert(Cpu::core_old_totals.begin(), Shared::coreCount, 0); Cpu::core_old_idles.insert(Cpu::core_old_idles.begin(), Shared::coreCount, 0); Cpu::collect(); if (Runner::coreNum_reset) Runner::coreNum_reset = false; for (auto& [field, vec] : Cpu::current_cpu.cpu_percent) { if (not vec.empty() and not v_contains(Cpu::available_fields, field)) Cpu::available_fields.push_back(field); } Cpu::cpuName = Cpu::get_cpuName(); Cpu::got_sensors = Cpu::get_sensors(); for (const auto& [sensor, ignored] : Cpu::found_sensors) { Cpu::available_sensors.push_back(sensor); } Cpu::core_mapping = Cpu::get_core_mapping(); //? Init for namespace Gpu #ifdef GPU_SUPPORT Gpu::Nvml::init(); Gpu::Rsmi::init(); if (not Gpu::gpu_names.empty()) { for (auto const& [key, _] : Gpu::gpus[0].gpu_percent) Cpu::available_fields.push_back(key); for (auto const& [key, _] : Gpu::shared_gpu_percent) Cpu::available_fields.push_back(key); using namespace Gpu; gpu_b_height_offsets.resize(gpus.size()); for (size_t i = 0; i < gpu_b_height_offsets.size(); ++i) gpu_b_height_offsets[i] = gpus[i].supported_functions.gpu_utilization + gpus[i].supported_functions.pwr_usage + (gpus[i].supported_functions.mem_total or gpus[i].supported_functions.mem_used) * (1 + 2*(gpus[i].supported_functions.mem_total and gpus[i].supported_functions.mem_used) + 2*gpus[i].supported_functions.mem_utilization); } #endif //? Init for namespace Mem Mem::old_uptime = system_uptime(); Mem::collect(); Logger::debug("Shared::init() : Initialized."); } } namespace Cpu { string cpuName; string cpuHz; bool has_battery = true; tuple current_bat; const array time_names { "user"s, "nice"s, "system"s, "idle"s, "iowait"s, "irq"s, "softirq"s, "steal"s, "guest"s, "guest_nice"s }; std::unordered_map cpu_old = { {"totals", 0}, {"idles", 0}, {"user", 0}, {"nice", 0}, {"system", 0}, {"idle", 0}, {"iowait", 0}, {"irq", 0}, {"softirq", 0}, {"steal", 0}, {"guest", 0}, {"guest_nice", 0} }; string get_cpuName() { string name; ifstream cpuinfo(Shared::procPath / "cpuinfo"); if (cpuinfo.good()) { for (string instr; getline(cpuinfo, instr, ':') and not instr.starts_with("model name");) cpuinfo.ignore(SSmax, '\n'); if (cpuinfo.bad()) return name; else if (not cpuinfo.eof()) { cpuinfo.ignore(1); getline(cpuinfo, name); } else if (fs::exists("/sys/devices")) { for (const auto& d : fs::directory_iterator("/sys/devices")) { if (string(d.path().filename()).starts_with("arm")) { name = d.path().filename(); break; } } if (not name.empty()) { auto name_vec = ssplit(name, '_'); if (name_vec.size() < 2) return capitalize(name); else return capitalize(name_vec.at(1)) + (name_vec.size() > 2 ? ' ' + capitalize(name_vec.at(2)) : ""); } } auto name_vec = ssplit(name, ' '); if ((s_contains(name, "Xeon"s) or v_contains(name_vec, "Duo"s)) and v_contains(name_vec, "CPU"s)) { auto cpu_pos = v_index(name_vec, "CPU"s); if (cpu_pos < name_vec.size() - 1 and not name_vec.at(cpu_pos + 1).ends_with(')')) name = name_vec.at(cpu_pos + 1); else name.clear(); } else if (v_contains(name_vec, "Ryzen"s)) { auto ryz_pos = v_index(name_vec, "Ryzen"s); name = "Ryzen" + (ryz_pos < name_vec.size() - 1 ? ' ' + name_vec.at(ryz_pos + 1) : "") + (ryz_pos < name_vec.size() - 2 ? ' ' + name_vec.at(ryz_pos + 2) : ""); } else if (s_contains(name, "Intel"s) and v_contains(name_vec, "CPU"s)) { auto cpu_pos = v_index(name_vec, "CPU"s); if (cpu_pos < name_vec.size() - 1 and not name_vec.at(cpu_pos + 1).ends_with(')') and name_vec.at(cpu_pos + 1).size() != 1) name = name_vec.at(cpu_pos + 1); else name.clear(); } else name.clear(); if (name.empty() and not name_vec.empty()) { for (const auto& n : name_vec) { if (n == "@") break; name += n + ' '; } name.pop_back(); for (const auto& replace : {"Processor", "CPU", "(R)", "(TM)", "Intel", "AMD", "Core"}) { name = s_replace(name, replace, ""); name = s_replace(name, " ", " "); } name = trim(name); } } return name; } bool get_sensors() { bool got_cpu = false, got_coretemp = false; vector search_paths; try { //? Setup up paths to search for sensors if (fs::exists(fs::path("/sys/class/hwmon")) and access("/sys/class/hwmon", R_OK) != -1) { for (const auto& dir : fs::directory_iterator(fs::path("/sys/class/hwmon"))) { fs::path add_path = fs::canonical(dir.path()); if (v_contains(search_paths, add_path) or v_contains(search_paths, add_path / "device")) continue; if (s_contains(add_path, "coretemp")) got_coretemp = true; for (const auto & file : fs::directory_iterator(add_path)) { if (string(file.path().filename()) == "device") { for (const auto & dev_file : fs::directory_iterator(file.path())) { string dev_filename = dev_file.path().filename(); if (dev_filename.starts_with("temp") and dev_filename.ends_with("_input")) { search_paths.push_back(file.path()); break; } } } string filename = file.path().filename(); if (filename.starts_with("temp") and filename.ends_with("_input")) { search_paths.push_back(add_path); break; } } } } if (not got_coretemp and fs::exists(fs::path("/sys/devices/platform/coretemp.0/hwmon"))) { for (auto& d : fs::directory_iterator(fs::path("/sys/devices/platform/coretemp.0/hwmon"))) { fs::path add_path = fs::canonical(d.path()); for (const auto & file : fs::directory_iterator(add_path)) { string filename = file.path().filename(); if (filename.starts_with("temp") and filename.ends_with("_input") and not v_contains(search_paths, add_path)) { search_paths.push_back(add_path); got_coretemp = true; break; } } } } //? Scan any found directories for temperature sensors if (not search_paths.empty()) { for (const auto& path : search_paths) { const string pname = readfile(path / "name", path.filename()); for (const auto & file : fs::directory_iterator(path)) { const string file_suffix = "input"; const int file_id = atoi(file.path().filename().c_str() + 4); // skip "temp" prefix string file_path = file.path(); if (!s_contains(file_path, file_suffix)) { continue; } const string basepath = file_path.erase(file_path.find(file_suffix), file_suffix.length()); const string label = readfile(fs::path(basepath + "label"), "temp" + to_string(file_id)); const string sensor_name = pname + "/" + label; const int64_t temp = stol(readfile(fs::path(basepath + "input"), "0")) / 1000; const int64_t high = stol(readfile(fs::path(basepath + "max"), "80000")) / 1000; const int64_t crit = stol(readfile(fs::path(basepath + "crit"), "95000")) / 1000; found_sensors[sensor_name] = {fs::path(basepath + "input"), label, temp, high, crit}; if (not got_cpu and (label.starts_with("Package id") or label.starts_with("Tdie"))) { got_cpu = true; cpu_sensor = sensor_name; } else if (label.starts_with("Core") or label.starts_with("Tccd")) { got_coretemp = true; if (not v_contains(core_sensors, sensor_name)) core_sensors.push_back(sensor_name); } } } } //? If no good candidate for cpu temp has been found scan /sys/class/thermal if (not got_cpu and fs::exists(fs::path("/sys/class/thermal"))) { const string rootpath = fs::path("/sys/class/thermal/thermal_zone"); for (int i = 0; fs::exists(fs::path(rootpath + to_string(i))); i++) { const fs::path basepath = rootpath + to_string(i); if (not fs::exists(basepath / "temp")) continue; const string label = readfile(basepath / "type", "temp" + to_string(i)); const string sensor_name = "thermal" + to_string(i) + "/" + label; const int64_t temp = stol(readfile(basepath / "temp", "0")) / 1000; int64_t high, crit; for (int ii = 0; fs::exists(basepath / string("trip_point_" + to_string(ii) + "_temp")); ii++) { const string trip_type = readfile(basepath / string("trip_point_" + to_string(ii) + "_type")); if (not is_in(trip_type, "high", "critical")) continue; auto& val = (trip_type == "high" ? high : crit); val = stol(readfile(basepath / string("trip_point_" + to_string(ii) + "_temp"), "0")) / 1000; } if (high < 1) high = 80; if (crit < 1) crit = 95; found_sensors[sensor_name] = {basepath / "temp", label, temp, high, crit}; } } } catch (...) {} if (not got_coretemp or core_sensors.empty()) { cpu_temp_only = true; } else { rng::sort(core_sensors, rng::less{}); rng::stable_sort(core_sensors, [](const auto& a, const auto& b){ return a.size() < b.size(); }); } if (cpu_sensor.empty() and not found_sensors.empty()) { for (const auto& [name, sensor] : found_sensors) { if (s_contains(str_to_lower(name), "cpu") or s_contains(str_to_lower(name), "k10temp")) { cpu_sensor = name; break; } } if (cpu_sensor.empty()) { cpu_sensor = found_sensors.begin()->first; Logger::warning("No good candidate for cpu sensor found, using random from all found sensors."); } } return not found_sensors.empty(); } void update_sensors() { if (cpu_sensor.empty()) return; const auto& cpu_sensor = (not Config::getS("cpu_sensor").empty() and found_sensors.contains(Config::getS("cpu_sensor")) ? Config::getS("cpu_sensor") : Cpu::cpu_sensor); found_sensors.at(cpu_sensor).temp = stol(readfile(found_sensors.at(cpu_sensor).path, "0")) / 1000; current_cpu.temp.at(0).push_back(found_sensors.at(cpu_sensor).temp); current_cpu.temp_max = found_sensors.at(cpu_sensor).crit; if (current_cpu.temp.at(0).size() > 20) current_cpu.temp.at(0).pop_front(); if (Config::getB("show_coretemp") and not cpu_temp_only) { vector done; for (const auto& sensor : core_sensors) { if (v_contains(done, sensor)) continue; found_sensors.at(sensor).temp = stol(readfile(found_sensors.at(sensor).path, "0")) / 1000; done.push_back(sensor); } for (const auto& [core, temp] : core_mapping) { if (cmp_less(core + 1, current_cpu.temp.size()) and cmp_less(temp, core_sensors.size())) { current_cpu.temp.at(core + 1).push_back(found_sensors.at(core_sensors.at(temp)).temp); if (current_cpu.temp.at(core + 1).size() > 20) current_cpu.temp.at(core + 1).pop_front(); } } } } string get_cpuHz() { static int failed{}; if (failed > 4) return ""s; string cpuhz; try { double hz{}; //? Try to get freq from /sys/devices/system/cpu/cpufreq/policy first (faster) if (not freq_path.empty()) { hz = stod(readfile(freq_path, "0.0")) / 1000; if (hz <= 0.0 and ++failed >= 2) freq_path.clear(); } //? If freq from /sys failed or is missing try to use /proc/cpuinfo if (hz <= 0.0) { ifstream cpufreq(Shared::procPath / "cpuinfo"); if (cpufreq.good()) { while (cpufreq.ignore(SSmax, '\n')) { if (cpufreq.peek() == 'c') { cpufreq.ignore(SSmax, ' '); if (cpufreq.peek() == 'M') { cpufreq.ignore(SSmax, ':'); cpufreq.ignore(1); cpufreq >> hz; break; } } } } } if (hz <= 1 or hz >= 1000000) throw std::runtime_error("Failed to read /sys/devices/system/cpu/cpufreq/policy and /proc/cpuinfo."); if (hz >= 1000) { if (hz >= 10000) cpuhz = to_string((int)round(hz / 1000)); // Future proof until we reach THz speeds :) else cpuhz = to_string(round(hz / 100) / 10.0).substr(0, 3); cpuhz += " GHz"; } else if (hz > 0) cpuhz = to_string((int)round(hz)) + " MHz"; } catch (const std::exception& e) { if (++failed < 5) return ""s; else { Logger::warning("get_cpuHZ() : " + string{e.what()}); return ""s; } } return cpuhz; } auto get_core_mapping() -> std::unordered_map { std::unordered_map core_map; if (cpu_temp_only) return core_map; //? Try to get core mapping from /proc/cpuinfo ifstream cpuinfo(Shared::procPath / "cpuinfo"); if (cpuinfo.good()) { int cpu{}; int core{}; int n{}; for (string instr; cpuinfo >> instr;) { if (instr == "processor") { cpuinfo.ignore(SSmax, ':'); cpuinfo >> cpu; } else if (instr.starts_with("core")) { cpuinfo.ignore(SSmax, ':'); cpuinfo >> core; if (std::cmp_greater_equal(core, core_sensors.size())) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[cpu] = n++; } else core_map[cpu] = core; } cpuinfo.ignore(SSmax, '\n'); } } //? If core mapping from cpuinfo was incomplete try to guess remainder, if missing completely, map 0-0 1-1 2-2 etc. if (cmp_less(core_map.size(), Shared::coreCount)) { if (Shared::coreCount % 2 == 0 and (long)core_map.size() == Shared::coreCount / 2) { for (int i = 0, n = 0; i < Shared::coreCount / 2; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[Shared::coreCount / 2 + i] = n++; } } else { core_map.clear(); for (int i = 0, n = 0; i < Shared::coreCount; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[i] = n++; } } } //? Apply user set custom mapping if any const auto& custom_map = Config::getS("cpu_core_map"); if (not custom_map.empty()) { try { for (const auto& split : ssplit(custom_map)) { const auto vals = ssplit(split, ':'); if (vals.size() != 2) continue; int change_id = std::stoi(vals.at(0)); int new_id = std::stoi(vals.at(1)); if (not core_map.contains(change_id) or cmp_greater(new_id, core_sensors.size())) continue; core_map.at(change_id) = new_id; } } catch (...) {} } return core_map; } struct battery { fs::path base_dir, energy_now, energy_full, power_now, status, online; string device_type; bool use_energy = true; }; auto get_battery() -> tuple { if (not has_battery) return {0, 0, ""}; static string auto_sel; static std::unordered_map batteries; //? Get paths to needed files and check for valid values on first run if (batteries.empty() and has_battery) { try { if (fs::exists("/sys/class/power_supply")) { for (const auto& d : fs::directory_iterator("/sys/class/power_supply")) { //? Only consider online power supplies of type Battery or UPS //? see kernel docs for details on the file structure and contents //? https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-power battery new_bat; fs::path bat_dir; try { if (not d.is_directory() or not fs::exists(d.path() / "type") or not fs::exists(d.path() / "present") or stoi(readfile(d.path() / "present")) != 1) continue; string dev_type = readfile(d.path() / "type"); if (is_in(dev_type, "Battery", "UPS")) { bat_dir = d.path(); new_bat.base_dir = d.path(); new_bat.device_type = dev_type; } } catch (...) { //? skip power supplies not conforming to the kernel standard continue; } if (fs::exists(bat_dir / "energy_now")) new_bat.energy_now = bat_dir / "energy_now"; else if (fs::exists(bat_dir / "charge_now")) new_bat.energy_now = bat_dir / "charge_now"; else new_bat.use_energy = false; if (fs::exists(bat_dir / "energy_full")) new_bat.energy_full = bat_dir / "energy_full"; else if (fs::exists(bat_dir / "charge_full")) new_bat.energy_full = bat_dir / "charge_full"; else new_bat.use_energy = false; if (not new_bat.use_energy and not fs::exists(bat_dir / "capacity")) { continue; } if (fs::exists(bat_dir / "power_now")) new_bat.power_now = bat_dir / "power_now"; else if (fs::exists(bat_dir / "current_now")) new_bat.power_now = bat_dir / "current_now"; if (fs::exists(bat_dir / "AC0/online")) new_bat.online = bat_dir / "AC0/online"; else if (fs::exists(bat_dir / "AC/online")) new_bat.online = bat_dir / "AC/online"; batteries[bat_dir.filename()] = new_bat; Config::available_batteries.push_back(bat_dir.filename()); } } } catch (...) { batteries.clear(); } if (batteries.empty()) { has_battery = false; return {0, 0, ""}; } } auto& battery_sel = Config::getS("selected_battery"); if (auto_sel.empty()) { for (auto& [name, bat] : batteries) { if (bat.device_type == "Battery") { auto_sel = name; break; } } if (auto_sel.empty()) auto_sel = batteries.begin()->first; } auto& b = (battery_sel != "Auto" and batteries.contains(battery_sel) ? batteries.at(battery_sel) : batteries.at(auto_sel)); int percent = -1; long seconds = -1; //? Try to get battery percentage if (b.use_energy) { try { percent = round(100.0 * stoll(readfile(b.energy_now, "-1")) / stoll(readfile(b.energy_full, "1"))); } catch (const std::invalid_argument&) { } catch (const std::out_of_range&) { } } if (percent < 0) { try { percent = stoll(readfile(b.base_dir / "capacity", "-1")); } catch (const std::invalid_argument&) { } catch (const std::out_of_range&) { } } if (percent < 0) { has_battery = false; return {0, 0, ""}; } //? Get charging/discharging status string status = str_to_lower(readfile(b.base_dir / "status", "unknown")); if (status == "unknown" and not b.online.empty()) { const auto online = readfile(b.online, "0"); if (online == "1" and percent < 100) status = "charging"; else if (online == "1") status = "full"; else status = "discharging"; } //? Get seconds to empty if (not is_in(status, "charging", "full")) { if (b.use_energy and not b.power_now.empty()) { try { seconds = round((double)stoll(readfile(b.energy_now, "0")) / stoll(readfile(b.power_now, "1")) * 3600); } catch (const std::invalid_argument&) { } catch (const std::out_of_range&) { } } if (seconds < 0 and fs::exists(b.base_dir / "time_to_empty")) { try { seconds = stoll(readfile(b.base_dir / "time_to_empty", "0")) * 60; } catch (const std::invalid_argument&) { } catch (const std::out_of_range&) { } } } return {percent, seconds, status}; } auto collect(bool no_update) -> cpu_info& { if (Runner::stopping or (no_update and not current_cpu.cpu_percent.at("total").empty())) return current_cpu; auto& cpu = current_cpu; if (Config::getB("show_cpu_freq")) cpuHz = get_cpuHz(); if (getloadavg(cpu.load_avg.data(), cpu.load_avg.size()) < 0) { Logger::error("failed to get load averages"); } ifstream cread; try { //? Get cpu total times for all cores from /proc/stat string cpu_name; cread.open(Shared::procPath / "stat"); int i = 0; int target = Shared::coreCount; for (; i <= target or (cread.good() and cread.peek() == 'c'); i++) { //? Make sure to add zero value for missing core values if at end of file if ((not cread.good() or cread.peek() != 'c') and i <= target) { if (i == 0) throw std::runtime_error("Failed to parse /proc/stat"); else { //? Fix container sizes if new cores are detected while (cmp_less(cpu.core_percent.size(), i)) { core_old_totals.push_back(0); core_old_idles.push_back(0); cpu.core_percent.emplace_back(); } cpu.core_percent.at(i-1).push_back(0); } } else { if (i == 0) cread.ignore(SSmax, ' '); else { cread >> cpu_name; int cpuNum = std::stoi(cpu_name.substr(3)); if (cpuNum >= target - 1) target = cpuNum + (cread.peek() == 'c' ? 2 : 1); //? Add zero value for core if core number is missing from /proc/stat while (i - 1 < cpuNum) { //? Fix container sizes if new cores are detected while (cmp_less(cpu.core_percent.size(), i)) { core_old_totals.push_back(0); core_old_idles.push_back(0); cpu.core_percent.emplace_back(); } cpu.core_percent[i-1].push_back(0); if (cpu.core_percent.at(i-1).size() > 40) cpu.core_percent.at(i-1).pop_front(); i++; } } //? Expected on kernel 2.6.3> : 0=user, 1=nice, 2=system, 3=idle, 4=iowait, 5=irq, 6=softirq, 7=steal, 8=guest, 9=guest_nice vector times; long long total_sum = 0; for (uint64_t val; cread >> val; total_sum += val) { times.push_back(val); } cread.clear(); if (times.size() < 4) throw std::runtime_error("Malformed /proc/stat"); //? Subtract fields 8-9 and any future unknown fields const long long totals = max(0ll, total_sum - (times.size() > 8 ? std::accumulate(times.begin() + 8, times.end(), 0ll) : 0)); //? Add iowait field if present const long long idles = max(0ll, times.at(3) + (times.size() > 4 ? times.at(4) : 0)); //? Calculate values for totals from first line of stat if (i == 0) { const long long calc_totals = max(1ll, totals - cpu_old.at("totals")); const long long calc_idles = max(1ll, idles - cpu_old.at("idles")); cpu_old.at("totals") = totals; cpu_old.at("idles") = idles; //? Total usage of cpu cpu.cpu_percent.at("total").push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at("total").size(), width * 2)) cpu.cpu_percent.at("total").pop_front(); //? Populate cpu.cpu_percent with all fields from stat for (int ii = 0; const auto& val : times) { cpu.cpu_percent.at(time_names.at(ii)).push_back(clamp((long long)round((double)(val - cpu_old.at(time_names.at(ii))) * 100 / calc_totals), 0ll, 100ll)); cpu_old.at(time_names.at(ii)) = val; //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at(time_names.at(ii)).size(), width * 2)) cpu.cpu_percent.at(time_names.at(ii)).pop_front(); if (++ii == 10) break; } continue; } //? Calculate cpu total for each core else { //? Fix container sizes if new cores are detected while (cmp_less(cpu.core_percent.size(), i)) { core_old_totals.push_back(0); core_old_idles.push_back(0); cpu.core_percent.emplace_back(); } const long long calc_totals = max(0ll, totals - core_old_totals.at(i-1)); const long long calc_idles = max(0ll, idles - core_old_idles.at(i-1)); core_old_totals.at(i-1) = totals; core_old_idles.at(i-1) = idles; cpu.core_percent.at(i-1).push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); } } //? Reduce size if there are more values than needed for graph if (cpu.core_percent.at(i-1).size() > 40) cpu.core_percent.at(i-1).pop_front(); } //? Notify main thread to redraw screen if we found more cores than previously detected if (cmp_greater(cpu.core_percent.size(), Shared::coreCount)) { Logger::debug("Changing CPU max corecount from " + to_string(Shared::coreCount) + " to " + to_string(cpu.core_percent.size()) + "."); Runner::coreNum_reset = true; Shared::coreCount = cpu.core_percent.size(); while (cmp_less(current_cpu.temp.size(), cpu.core_percent.size() + 1)) current_cpu.temp.push_back({0}); } } catch (const std::exception& e) { Logger::debug("Cpu::collect() : " + string{e.what()}); if (cread.bad()) throw std::runtime_error("Failed to read /proc/stat"); else throw std::runtime_error("Cpu::collect() : " + string{e.what()}); } if (Config::getB("check_temp") and got_sensors) update_sensors(); if (Config::getB("show_battery") and has_battery) current_bat = get_battery(); return cpu; } } #ifdef GPU_SUPPORT namespace Gpu { //? NVIDIA namespace Nvml { bool init() { if (initialized) return false; //? Dynamic loading & linking //? Try possible library names for libnvidia-ml.so const array libNvAlts = { "libnvidia-ml.so", "libnvidia-ml.so.1", }; for (const auto& l : libNvAlts) { nvml_dl_handle = dlopen(l, RTLD_LAZY); if (nvml_dl_handle != nullptr) { break; } } if (!nvml_dl_handle) { Logger::info("Failed to load libnvidia-ml.so, NVIDIA GPUs will not be detected: "s + dlerror()); return false; } auto load_nvml_sym = [&](const char sym_name[]) { auto sym = dlsym(nvml_dl_handle, sym_name); auto err = dlerror(); if (err != nullptr) { Logger::error(string("NVML: Couldn't find function ") + sym_name + ": " + err); return (void*)nullptr; } else return sym; }; #define LOAD_SYM(NAME) if ((NAME = (decltype(NAME))load_nvml_sym(#NAME)) == nullptr) return false LOAD_SYM(nvmlErrorString); LOAD_SYM(nvmlInit); LOAD_SYM(nvmlShutdown); LOAD_SYM(nvmlDeviceGetCount); LOAD_SYM(nvmlDeviceGetHandleByIndex); LOAD_SYM(nvmlDeviceGetName); LOAD_SYM(nvmlDeviceGetPowerManagementLimit); LOAD_SYM(nvmlDeviceGetTemperatureThreshold); LOAD_SYM(nvmlDeviceGetUtilizationRates); LOAD_SYM(nvmlDeviceGetClockInfo); LOAD_SYM(nvmlDeviceGetPowerUsage); LOAD_SYM(nvmlDeviceGetPowerState); LOAD_SYM(nvmlDeviceGetTemperature); LOAD_SYM(nvmlDeviceGetMemoryInfo); LOAD_SYM(nvmlDeviceGetPcieThroughput); #undef LOAD_SYM //? Function calls nvmlReturn_t result = nvmlInit(); if (result != NVML_SUCCESS) { Logger::debug(std::string("Failed to initialize NVML, NVIDIA GPUs will not be detected: ") + nvmlErrorString(result)); return false; } //? Device count result = nvmlDeviceGetCount(&device_count); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get device count: ") + nvmlErrorString(result)); return false; } if (device_count > 0) { devices.resize(device_count); gpus.resize(device_count); gpu_names.resize(device_count); initialized = true; //? Check supported functions & get maximums Nvml::collect<1>(gpus.data()); return true; } else {initialized = true; shutdown(); return false;} } bool shutdown() { if (!initialized) return false; nvmlReturn_t result = nvmlShutdown(); if (NVML_SUCCESS == result) { initialized = false; dlclose(nvml_dl_handle); } else Logger::warning(std::string("Failed to shutdown NVML: ") + nvmlErrorString(result)); return !initialized; } template // collect<1> is called in Nvml::init(), and populates gpus.supported_functions bool collect(gpu_info* gpus_slice) { // raw pointer to vector data, size == device_count if (!initialized) return false; nvmlReturn_t result; std::thread pcie_tx_thread, pcie_rx_thread; // DebugTimer nvTotalTimer("Nvidia Total"); for (unsigned int i = 0; i < device_count; ++i) { if constexpr(is_init) { //? Device Handle result = nvmlDeviceGetHandleByIndex(i, devices.data() + i); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get device handle: ") + nvmlErrorString(result)); gpus[i].supported_functions = {false, false, false, false, false, false, false, false}; continue; } //? Device name char name[NVML_DEVICE_NAME_BUFFER_SIZE]; result = nvmlDeviceGetName(devices[i], name, NVML_DEVICE_NAME_BUFFER_SIZE); if (result != NVML_SUCCESS) Logger::warning(std::string("NVML: Failed to get device name: ") + nvmlErrorString(result)); else { gpu_names[i] = string(name); for (const auto& brand : {"NVIDIA", "Nvidia", "(R)", "(TM)"}) { gpu_names[i] = s_replace(gpu_names[i], brand, ""); } gpu_names[i] = trim(gpu_names[i]); } //? Power usage unsigned int max_power; result = nvmlDeviceGetPowerManagementLimit(devices[i], &max_power); if (result != NVML_SUCCESS) Logger::warning(std::string("NVML: Failed to get maximum GPU power draw, defaulting to 225W: ") + nvmlErrorString(result)); else { gpus[i].pwr_max_usage = max_power; // RSMI reports power in microWatts gpu_pwr_total_max += max_power; } //? Get temp_max unsigned int temp_max; result = nvmlDeviceGetTemperatureThreshold(devices[i], NVML_TEMPERATURE_THRESHOLD_SHUTDOWN, &temp_max); if (result != NVML_SUCCESS) Logger::warning(std::string("NVML: Failed to get maximum GPU temperature, defaulting to 110°C: ") + nvmlErrorString(result)); else gpus[i].temp_max = (long long)temp_max; } //? PCIe link speeds, the data collection takes >=20ms each call so they run on separate threads if (gpus_slice[i].supported_functions.pcie_txrx and (Config::getB("nvml_measure_pcie_speeds") or is_init)) { pcie_tx_thread = std::thread([gpus_slice, i]() { unsigned int tx; nvmlReturn_t result = nvmlDeviceGetPcieThroughput(devices[i], NVML_PCIE_UTIL_TX_BYTES, &tx); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get PCIe TX throughput: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.pcie_txrx = false; } else gpus_slice[i].pcie_tx = (long long)tx; }); pcie_rx_thread = std::thread([gpus_slice, i]() { unsigned int rx; nvmlReturn_t result = nvmlDeviceGetPcieThroughput(devices[i], NVML_PCIE_UTIL_RX_BYTES, &rx); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get PCIe RX throughput: ") + nvmlErrorString(result)); } else gpus_slice[i].pcie_rx = (long long)rx; }); } // DebugTimer nvTimer("Nv utilization"); //? GPU & memory utilization if (gpus_slice[i].supported_functions.gpu_utilization) { nvmlUtilization_t utilization; result = nvmlDeviceGetUtilizationRates(devices[i], &utilization); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get GPU utilization: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.gpu_utilization = false; if constexpr(is_init) gpus_slice[i].supported_functions.mem_utilization = false; } else { gpus_slice[i].gpu_percent.at("gpu-totals").push_back((long long)utilization.gpu); gpus_slice[i].mem_utilization_percent.push_back((long long)utilization.memory); } } // nvTimer.stop_rename_reset("Nv clock"); //? Clock speeds if (gpus_slice[i].supported_functions.gpu_clock) { unsigned int gpu_clock; result = nvmlDeviceGetClockInfo(devices[i], NVML_CLOCK_GRAPHICS, &gpu_clock); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get GPU clock speed: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.gpu_clock = false; } else gpus_slice[i].gpu_clock_speed = (long long)gpu_clock; } if (gpus_slice[i].supported_functions.mem_clock) { unsigned int mem_clock; result = nvmlDeviceGetClockInfo(devices[i], NVML_CLOCK_MEM, &mem_clock); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get VRAM clock speed: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.mem_clock = false; } else gpus_slice[i].mem_clock_speed = (long long)mem_clock; } // nvTimer.stop_rename_reset("Nv power"); //? Power usage & state if (gpus_slice[i].supported_functions.pwr_usage) { unsigned int power; result = nvmlDeviceGetPowerUsage(devices[i], &power); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get GPU power usage: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.pwr_usage = false; } else { gpus_slice[i].pwr_usage = (long long)power; gpus_slice[i].gpu_percent.at("gpu-pwr-totals").push_back(clamp((long long)round((double)gpus_slice[i].pwr_usage * 100.0 / (double)gpus_slice[i].pwr_max_usage), 0ll, 100ll)); } } if (gpus_slice[i].supported_functions.pwr_state) { nvmlPstates_t pState; result = nvmlDeviceGetPowerState(devices[i], &pState); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get GPU power state: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.pwr_state = false; } else gpus_slice[i].pwr_state = static_cast(pState); } // nvTimer.stop_rename_reset("Nv temp"); //? GPU temperature if (gpus_slice[i].supported_functions.temp_info) { if (Config::getB("check_temp")) { unsigned int temp; nvmlReturn_t result = nvmlDeviceGetTemperature(devices[i], NVML_TEMPERATURE_GPU, &temp); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get GPU temperature: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.temp_info = false; } else gpus_slice[i].temp.push_back((long long)temp); } } // nvTimer.stop_rename_reset("Nv mem"); //? Memory info if (gpus_slice[i].supported_functions.mem_total) { nvmlMemory_t memory; result = nvmlDeviceGetMemoryInfo(devices[i], &memory); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get VRAM info: ") + nvmlErrorString(result)); if constexpr(is_init) gpus_slice[i].supported_functions.mem_total = false; if constexpr(is_init) gpus_slice[i].supported_functions.mem_used = false; } else { gpus_slice[i].mem_total = memory.total; gpus_slice[i].mem_used = memory.used; //gpu.mem_free = memory.free; auto used_percent = (long long)round((double)memory.used * 100.0 / (double)memory.total); gpus_slice[i].gpu_percent.at("gpu-vram-totals").push_back(used_percent); } } //? TODO: Processes using GPU /*unsigned int proc_info_len; nvmlProcessInfo_t* proc_info = 0; result = nvmlDeviceGetComputeRunningProcesses_v3(device, &proc_info_len, proc_info); if (result != NVML_SUCCESS) { Logger::warning(std::string("NVML: Failed to get compute processes: ") + nvmlErrorString(result)); } else { for (unsigned int i = 0; i < proc_info_len; ++i) gpus_slice[i].graphics_processes.push_back({proc_info[i].pid, proc_info[i].usedGpuMemory}); }*/ // nvTimer.stop_rename_reset("Nv pcie thread join"); //? Join PCIE TX/RX threads if constexpr(is_init) { // there doesn't seem to be a better way to do this, but this should be fine considering it's just 2 lines pcie_tx_thread.join(); pcie_rx_thread.join(); } else if (gpus_slice[i].supported_functions.pcie_txrx and Config::getB("nvml_measure_pcie_speeds")) { pcie_tx_thread.join(); pcie_rx_thread.join(); } } return true; } } //? AMD namespace Rsmi { bool init() { if (initialized) return false; //? Dynamic loading & linking #if !defined(RSMI_STATIC) //? Try possible library paths and names for librocm_smi64.so const array libRocAlts = { "/opt/rocm/lib/librocm_smi64.so", "librocm_smi64.so", "librocm_smi64.so.5", // fedora "librocm_smi64.so.1.0", // debian }; for (const auto& l : libRocAlts) { rsmi_dl_handle = dlopen(l, RTLD_LAZY); if (rsmi_dl_handle != nullptr) { break; } } if (!rsmi_dl_handle) { Logger::info("Failed to load librocm_smi64.so, AMD GPUs will not be detected: "s + dlerror()); return false; } auto load_rsmi_sym = [&](const char sym_name[]) { auto sym = dlsym(rsmi_dl_handle, sym_name); auto err = dlerror(); if (err != nullptr) { Logger::error(string("ROCm SMI: Couldn't find function ") + sym_name + ": " + err); return (void*)nullptr; } else return sym; }; #define LOAD_SYM(NAME) if ((NAME = (decltype(NAME))load_rsmi_sym(#NAME)) == nullptr) return false LOAD_SYM(rsmi_init); LOAD_SYM(rsmi_shut_down); LOAD_SYM(rsmi_num_monitor_devices); LOAD_SYM(rsmi_dev_name_get); LOAD_SYM(rsmi_dev_power_cap_get); LOAD_SYM(rsmi_dev_temp_metric_get); LOAD_SYM(rsmi_dev_busy_percent_get); LOAD_SYM(rsmi_dev_memory_busy_percent_get); LOAD_SYM(rsmi_dev_gpu_clk_freq_get); LOAD_SYM(rsmi_dev_power_ave_get); LOAD_SYM(rsmi_dev_memory_total_get); LOAD_SYM(rsmi_dev_memory_usage_get); LOAD_SYM(rsmi_dev_pci_throughput_get); #undef LOAD_SYM #endif //? Function calls rsmi_status_t result = rsmi_init(0); if (result != RSMI_STATUS_SUCCESS) { Logger::debug("Failed to initialize ROCm SMI, AMD GPUs will not be detected"); return false; } //? Device count result = rsmi_num_monitor_devices(&device_count); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to fetch number of devices"); return false; } if (device_count > 0) { gpus.resize(gpus.size() + device_count); gpu_names.resize(gpus.size() + device_count); initialized = true; //? Check supported functions & get maximums Rsmi::collect<1>(gpus.data() + Nvml::device_count); return true; } else {initialized = true; shutdown(); return false;} } bool shutdown() { if (!initialized) return false; if (rsmi_shut_down() == RSMI_STATUS_SUCCESS) { initialized = false; #if !defined(RSMI_STATIC) dlclose(rsmi_dl_handle); #endif } else Logger::warning("Failed to shutdown ROCm SMI"); return true; } template bool collect(gpu_info* gpus_slice) { // raw pointer to vector data, size == device_count, offset by Nvml::device_count elements if (!initialized) return false; rsmi_status_t result; for (uint32_t i = 0; i < device_count; ++i) { if constexpr(is_init) { //? Device name char name[NVML_DEVICE_NAME_BUFFER_SIZE]; // ROCm SMI does not provide a constant for this as far as I can tell, this should be good enough result = rsmi_dev_name_get(i, name, NVML_DEVICE_NAME_BUFFER_SIZE); if (result != RSMI_STATUS_SUCCESS) Logger::warning("ROCm SMI: Failed to get device name"); else gpu_names[Nvml::device_count + i] = string(name); //? Power usage uint64_t max_power; result = rsmi_dev_power_cap_get(i, 0, &max_power); if (result != RSMI_STATUS_SUCCESS) Logger::warning("ROCm SMI: Failed to get maximum GPU power draw, defaulting to 225W"); else { gpus_slice[i].pwr_max_usage = (long long)(max_power/1000); // RSMI reports power in microWatts gpu_pwr_total_max += gpus_slice[i].pwr_max_usage; } //? Get temp_max int64_t temp_max; result = rsmi_dev_temp_metric_get(i, RSMI_TEMP_TYPE_EDGE, RSMI_TEMP_MAX, &temp_max); if (result != RSMI_STATUS_SUCCESS) Logger::warning("ROCm SMI: Failed to get maximum GPU temperature, defaulting to 110°C"); else gpus_slice[i].temp_max = (long long)temp_max; } //? GPU utilization if (gpus_slice[i].supported_functions.gpu_utilization) { uint32_t utilization; result = rsmi_dev_busy_percent_get(i, &utilization); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get GPU utilization"); if constexpr(is_init) gpus_slice[i].supported_functions.gpu_utilization = false; } else gpus_slice[i].gpu_percent.at("gpu-totals").push_back((long long)utilization); } //? Memory utilization if (gpus_slice[i].supported_functions.mem_utilization) { uint32_t utilization; result = rsmi_dev_memory_busy_percent_get(i, &utilization); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get VRAM utilization"); if constexpr(is_init) gpus_slice[i].supported_functions.mem_utilization = false; } else gpus_slice[i].mem_utilization_percent.push_back((long long)utilization); } //? Clock speeds if (gpus_slice[i].supported_functions.gpu_clock) { rsmi_frequencies_t frequencies; result = rsmi_dev_gpu_clk_freq_get(i, RSMI_CLK_TYPE_SYS, &frequencies); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get GPU clock speed: "); if constexpr(is_init) gpus_slice[i].supported_functions.gpu_clock = false; } else gpus_slice[i].gpu_clock_speed = (long long)frequencies.frequency[frequencies.current]/1000000; // Hz to MHz } if (gpus_slice[i].supported_functions.mem_clock) { rsmi_frequencies_t frequencies; result = rsmi_dev_gpu_clk_freq_get(i, RSMI_CLK_TYPE_MEM, &frequencies); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get VRAM clock speed: "); if constexpr(is_init) gpus_slice[i].supported_functions.mem_clock = false; } else gpus_slice[i].mem_clock_speed = (long long)frequencies.frequency[frequencies.current]/1000000; // Hz to MHz } //? Power usage & state if (gpus_slice[i].supported_functions.pwr_usage) { uint64_t power; result = rsmi_dev_power_ave_get(i, 0, &power); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get GPU power usage"); if constexpr(is_init) gpus_slice[i].supported_functions.pwr_usage = false; } else gpus_slice[i].gpu_percent.at("gpu-pwr-totals").push_back(clamp((long long)round((double)gpus_slice[i].pwr_usage * 100.0 / (double)gpus_slice[i].pwr_max_usage), 0ll, 100ll)); if constexpr(is_init) gpus_slice[i].supported_functions.pwr_state = false; } //? GPU temperature if (gpus_slice[i].supported_functions.temp_info) { if (Config::getB("check_temp") or is_init) { int64_t temp; result = rsmi_dev_temp_metric_get(i, RSMI_TEMP_TYPE_EDGE, RSMI_TEMP_CURRENT, &temp); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get GPU temperature"); if constexpr(is_init) gpus_slice[i].supported_functions.temp_info = false; } else gpus_slice[i].temp.push_back((long long)temp/1000); } } //? Memory info if (gpus_slice[i].supported_functions.mem_total) { uint64_t total; result = rsmi_dev_memory_total_get(i, RSMI_MEM_TYPE_VRAM, &total); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get total VRAM"); if constexpr(is_init) gpus_slice[i].supported_functions.mem_total = false; } else gpus_slice[i].mem_total = total; } if (gpus_slice[i].supported_functions.mem_used) { uint64_t used; result = rsmi_dev_memory_usage_get(i, RSMI_MEM_TYPE_VRAM, &used); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get VRAM usage"); if constexpr(is_init) gpus_slice[i].supported_functions.mem_used = false; } else { gpus_slice[i].mem_used = used; if (gpus_slice[i].supported_functions.mem_total) gpus_slice[i].gpu_percent.at("gpu-vram-totals").push_back((long long)round((double)used * 100.0 / (double)gpus_slice[i].mem_total)); } } //? PCIe link speeds if (gpus_slice[i].supported_functions.pcie_txrx) { uint64_t tx, rx; result = rsmi_dev_pci_throughput_get(i, &tx, &rx, 0); if (result != RSMI_STATUS_SUCCESS) { Logger::warning("ROCm SMI: Failed to get PCIe throughput"); if constexpr(is_init) gpus_slice[i].supported_functions.pcie_txrx = false; } else { gpus_slice[i].pcie_tx = (long long)tx; gpus_slice[i].pcie_rx = (long long)rx; } } } return true; } } // TODO: Intel //? Collect data from GPU-specific libraries auto collect(bool no_update) -> vector& { if (Runner::stopping or (no_update and not gpus.empty())) return gpus; // DebugTimer gpu_timer("GPU Total"); //* Collect data Nvml::collect<0>(gpus.data()); // raw pointer to vector data, size == Nvml::device_count Rsmi::collect<0>(gpus.data() + Nvml::device_count); // size = Rsmi::device_count //* Calculate average usage long long avg = 0; long long mem_usage_total = 0; long long mem_total = 0; long long pwr_total = 0; for (auto& gpu : gpus) { if (gpu.supported_functions.gpu_utilization) avg += gpu.gpu_percent.at("gpu-totals").back(); if (gpu.supported_functions.mem_used) mem_usage_total += gpu.mem_used; if (gpu.supported_functions.mem_total) mem_total += gpu.mem_total; if (gpu.supported_functions.pwr_usage) mem_total += gpu.pwr_usage; //* Trim vectors if there are more values than needed for graphs if (width != 0) { //? GPU & memory utilization while (cmp_greater(gpu.gpu_percent.at("gpu-totals").size(), width * 2)) gpu.gpu_percent.at("gpu-totals").pop_front(); while (cmp_greater(gpu.mem_utilization_percent.size(), width)) gpu.mem_utilization_percent.pop_front(); //? Power usage while (cmp_greater(gpu.gpu_percent.at("gpu-pwr-totals").size(), width)) gpu.gpu_percent.at("gpu-pwr-totals").pop_front(); //? Temperature while (cmp_greater(gpu.temp.size(), 18)) gpu.temp.pop_front(); //? Memory usage while (cmp_greater(gpu.gpu_percent.at("gpu-vram-totals").size(), width/2)) gpu.gpu_percent.at("gpu-vram-totals").pop_front(); } } shared_gpu_percent.at("gpu-average").push_back(avg / gpus.size()); if (mem_total != 0) shared_gpu_percent.at("gpu-vram-total").push_back(mem_usage_total / mem_total); if (gpu_pwr_total_max != 0) shared_gpu_percent.at("gpu-pwr-total").push_back(pwr_total / gpu_pwr_total_max); if (width != 0) { while (cmp_greater(shared_gpu_percent.at("gpu-average").size(), width * 2)) shared_gpu_percent.at("gpu-average").pop_front(); while (cmp_greater(shared_gpu_percent.at("gpu-pwr-total").size(), width * 2)) shared_gpu_percent.at("gpu-pwr-total").pop_front(); while (cmp_greater(shared_gpu_percent.at("gpu-vram-total").size(), width * 2)) shared_gpu_percent.at("gpu-vram-total").pop_front(); } return gpus; } } #endif namespace Mem { bool has_swap{}; vector fstab; fs::file_time_type fstab_time; int disk_ios{}; vector last_found; //?* Find the filepath to the specified ZFS object's stat file fs::path get_zfs_stat_file(const string& device_name, size_t dataset_name_start, bool zfs_hide_datasets); //?* Collect total ZFS pool io stats bool zfs_collect_pool_total_stats(struct disk_info &disk); mem_info current_mem {}; uint64_t get_totalMem() { ifstream meminfo(Shared::procPath / "meminfo"); int64_t totalMem; if (meminfo.good()) { meminfo.ignore(SSmax, ':'); meminfo >> totalMem; totalMem <<= 10; } if (not meminfo.good() or totalMem == 0) throw std::runtime_error("Could not get total memory size from /proc/meminfo"); return totalMem; } auto collect(bool no_update) -> mem_info& { if (Runner::stopping or (no_update and not current_mem.percent.at("used").empty())) return current_mem; auto show_swap = Config::getB("show_swap"); auto swap_disk = Config::getB("swap_disk"); auto show_disks = Config::getB("show_disks"); auto zfs_arc_cached = Config::getB("zfs_arc_cached"); auto totalMem = get_totalMem(); auto& mem = current_mem; mem.stats.at("swap_total") = 0; //? Read ZFS ARC info from /proc/spl/kstat/zfs/arcstats uint64_t arc_size = 0, arc_min_size = 0; if (zfs_arc_cached) { ifstream arcstats(Shared::procPath / "spl/kstat/zfs/arcstats"); if (arcstats.good()) { for (string label; arcstats >> label;) { if (label == "c_min") { arcstats >> arc_min_size >> arc_min_size; // double read skips type column } else if (label == "size") { arcstats >> arc_size >> arc_size; break; } } } arcstats.close(); } //? Read memory info from /proc/meminfo ifstream meminfo(Shared::procPath / "meminfo"); if (meminfo.good()) { bool got_avail = false; for (string label; meminfo.peek() != 'D' and meminfo >> label;) { if (label == "MemFree:") { meminfo >> mem.stats.at("free"); mem.stats.at("free") <<= 10; } else if (label == "MemAvailable:") { meminfo >> mem.stats.at("available"); mem.stats.at("available") <<= 10; got_avail = true; } else if (label == "Cached:") { meminfo >> mem.stats.at("cached"); mem.stats.at("cached") <<= 10; if (not show_swap and not swap_disk) break; } else if (label == "SwapTotal:") { meminfo >> mem.stats.at("swap_total"); mem.stats.at("swap_total") <<= 10; } else if (label == "SwapFree:") { meminfo >> mem.stats.at("swap_free"); mem.stats.at("swap_free") <<= 10; break; } meminfo.ignore(SSmax, '\n'); } if (not got_avail) mem.stats.at("available") = mem.stats.at("free") + mem.stats.at("cached"); if (zfs_arc_cached) { mem.stats.at("cached") += arc_size; // The ARC will not shrink below arc_min_size, so that memory is not available if (arc_size > arc_min_size) mem.stats.at("available") += arc_size - arc_min_size; } mem.stats.at("used") = totalMem - (mem.stats.at("available") <= totalMem ? mem.stats.at("available") : mem.stats.at("free")); if (mem.stats.at("swap_total") > 0) mem.stats.at("swap_used") = mem.stats.at("swap_total") - mem.stats.at("swap_free"); } else throw std::runtime_error("Failed to read /proc/meminfo"); meminfo.close(); //? Calculate percentages for (const auto& name : mem_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / totalMem)); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } if (show_swap and mem.stats.at("swap_total") > 0) { for (const auto& name : swap_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / mem.stats.at("swap_total"))); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } has_swap = true; } else has_swap = false; //? Get disks stats if (show_disks) { static vector ignore_list; double uptime = system_uptime(); auto free_priv = Config::getB("disk_free_priv"); try { auto& disks_filter = Config::getS("disks_filter"); bool filter_exclude = false; auto use_fstab = Config::getB("use_fstab"); auto only_physical = Config::getB("only_physical"); auto zfs_hide_datasets = Config::getB("zfs_hide_datasets"); auto& disks = mem.disks; static std::unordered_map>> disks_stats_promises; ifstream diskread; vector filter; if (not disks_filter.empty()) { filter = ssplit(disks_filter); if (filter.at(0).starts_with("exclude=")) { filter_exclude = true; filter.at(0) = filter.at(0).substr(8); } } //? Get list of "real" filesystems from /proc/filesystems vector fstypes; if (only_physical and not use_fstab) { fstypes = {"zfs", "wslfs", "drvfs"}; diskread.open(Shared::procPath / "filesystems"); if (diskread.good()) { for (string fstype; diskread >> fstype;) { if (not is_in(fstype, "nodev", "squashfs", "nullfs")) fstypes.push_back(fstype); diskread.ignore(SSmax, '\n'); } } else throw std::runtime_error("Failed to read /proc/filesystems"); diskread.close(); } //? Get disk list to use from fstab if enabled if (use_fstab and fs::last_write_time("/etc/fstab") != fstab_time) { fstab.clear(); fstab_time = fs::last_write_time("/etc/fstab"); diskread.open("/etc/fstab"); if (diskread.good()) { for (string instr; diskread >> instr;) { if (not instr.starts_with('#')) { diskread >> instr; #ifdef SNAPPED if (instr == "/") fstab.push_back("/mnt"); else if (not is_in(instr, "none", "swap")) fstab.push_back(instr); #else if (not is_in(instr, "none", "swap")) fstab.push_back(instr); #endif } diskread.ignore(SSmax, '\n'); } } else throw std::runtime_error("Failed to read /etc/fstab"); diskread.close(); } //? Get mounts from /etc/mtab or /proc/self/mounts diskread.open((fs::exists("/etc/mtab") ? fs::path("/etc/mtab") : Shared::procPath / "self/mounts")); if (diskread.good()) { vector found; found.reserve(last_found.size()); string dev, mountpoint, fstype; while (not diskread.eof()) { std::error_code ec; diskread >> dev >> mountpoint >> fstype; diskread.ignore(SSmax, '\n'); if (v_contains(ignore_list, mountpoint) or v_contains(found, mountpoint)) continue; //? Match filter if not empty if (not filter.empty()) { bool match = v_contains(filter, mountpoint); if ((filter_exclude and match) or (not filter_exclude and not match)) continue; } //? Skip ZFS datasets if zfs_hide_datasets option is enabled size_t zfs_dataset_name_start = 0; if (fstype == "zfs" && (zfs_dataset_name_start = dev.find('/')) != std::string::npos && zfs_hide_datasets) continue; if ((not use_fstab and not only_physical) or (use_fstab and v_contains(fstab, mountpoint)) or (not use_fstab and only_physical and v_contains(fstypes, fstype))) { found.push_back(mountpoint); if (not v_contains(last_found, mountpoint)) redraw = true; //? Save mountpoint, name, fstype, dev path and path to /sys/block stat file if (not disks.contains(mountpoint)) { disks[mountpoint] = disk_info{fs::canonical(dev, ec), fs::path(mountpoint).filename(), fstype}; if (disks.at(mountpoint).dev.empty()) disks.at(mountpoint).dev = dev; #ifdef SNAPPED if (mountpoint == "/mnt") disks.at(mountpoint).name = "root"; #endif if (disks.at(mountpoint).name.empty()) disks.at(mountpoint).name = (mountpoint == "/" ? "root" : mountpoint); string devname = disks.at(mountpoint).dev.filename(); int c = 0; while (devname.size() >= 2) { if (fs::exists("/sys/block/" + devname + "/stat", ec) and access(string("/sys/block/" + devname + "/stat").c_str(), R_OK) == 0) { if (c > 0 and fs::exists("/sys/block/" + devname + '/' + disks.at(mountpoint).dev.filename().string() + "/stat", ec)) disks.at(mountpoint).stat = "/sys/block/" + devname + '/' + disks.at(mountpoint).dev.filename().string() + "/stat"; else disks.at(mountpoint).stat = "/sys/block/" + devname + "/stat"; break; //? Set ZFS stat filepath } else if (fstype == "zfs") { disks.at(mountpoint).stat = get_zfs_stat_file(dev, zfs_dataset_name_start, zfs_hide_datasets); if (disks.at(mountpoint).stat.empty()) { Logger::debug("Failed to get ZFS stat file for device " + dev); } break; } devname.resize(devname.size() - 1); c++; } } //? If zfs_hide_datasets option was switched, refresh stat filepath if (fstype == "zfs" && ((zfs_hide_datasets && !is_directory(disks.at(mountpoint).stat)) || (!zfs_hide_datasets && is_directory(disks.at(mountpoint).stat)))) { disks.at(mountpoint).stat = get_zfs_stat_file(dev, zfs_dataset_name_start, zfs_hide_datasets); if (disks.at(mountpoint).stat.empty()) { Logger::debug("Failed to get ZFS stat file for device " + dev); } } } } //? Remove disks no longer mounted or filtered out if (swap_disk and has_swap) found.push_back("swap"); for (auto it = disks.begin(); it != disks.end();) { if (not v_contains(found, it->first)) it = disks.erase(it); else it++; } if (found.size() != last_found.size()) redraw = true; last_found = std::move(found); } else throw std::runtime_error("Failed to get mounts from /etc/mtab and /proc/self/mounts"); diskread.close(); //? Get disk/partition stats for (auto it = disks.begin(); it != disks.end(); ) { auto &[mountpoint, disk] = *it; if (v_contains(ignore_list, mountpoint) or disk.name == "swap") { it = disks.erase(it); continue; } if(auto promises_it = disks_stats_promises.find(mountpoint); promises_it != disks_stats_promises.end()){ auto& promise = promises_it->second; if(promise.valid() && promise.wait_for(0s) == std::future_status::timeout) { ++it; continue; } auto promise_res = promises_it->second.get(); if(promise_res.second != -1){ ignore_list.push_back(mountpoint); Logger::warning("Failed to get disk/partition stats for mount \""+ mountpoint + "\" with statvfs error code: " + to_string(promise_res.second) + ". Ignoring..."); it = disks.erase(it); continue; } auto &updated_stats = promise_res.first; disk.total = updated_stats.total; disk.free = updated_stats.free; disk.used = updated_stats.used; disk.used_percent = updated_stats.used_percent; disk.free_percent = updated_stats.free_percent; } disks_stats_promises[mountpoint] = async(std::launch::async, [mountpoint, &free_priv]() -> pair { struct statvfs vfs; disk_info disk; if (statvfs(mountpoint.c_str(), &vfs) < 0) { return pair{disk, errno}; } disk.total = vfs.f_blocks * vfs.f_frsize; disk.free = (free_priv ? vfs.f_bfree : vfs.f_bavail) * vfs.f_frsize; disk.used = disk.total - disk.free; disk.used_percent = round((double)disk.used * 100 / disk.total); disk.free_percent = 100 - disk.used_percent; return pair{disk, -1}; }); ++it; } //? Setup disks order in UI and add swap if enabled mem.disks_order.clear(); #ifdef SNAPPED if (disks.contains("/mnt")) mem.disks_order.push_back("/mnt"); #else if (disks.contains("/")) mem.disks_order.push_back("/"); #endif if (swap_disk and has_swap) { mem.disks_order.push_back("swap"); if (not disks.contains("swap")) disks["swap"] = {"", "swap", "swap"}; disks.at("swap").total = mem.stats.at("swap_total"); disks.at("swap").used = mem.stats.at("swap_used"); disks.at("swap").free = mem.stats.at("swap_free"); disks.at("swap").used_percent = mem.percent.at("swap_used").back(); disks.at("swap").free_percent = mem.percent.at("swap_free").back(); } for (const auto& name : last_found) #ifdef SNAPPED if (not is_in(name, "/mnt", "swap")) mem.disks_order.push_back(name); #else if (not is_in(name, "/", "swap")) mem.disks_order.push_back(name); #endif //? Get disks IO int64_t sectors_read, sectors_write, io_ticks, io_ticks_temp; disk_ios = 0; for (auto& [ignored, disk] : disks) { if (disk.stat.empty() or access(disk.stat.c_str(), R_OK) != 0) continue; if (disk.fstype == "zfs" && zfs_hide_datasets && zfs_collect_pool_total_stats(disk)) { disk_ios++; continue; } diskread.open(disk.stat); if (diskread.good()) { disk_ios++; //? ZFS Pool Support if (disk.fstype == "zfs") { // skip first three lines for (int i = 0; i < 3; i++) diskread.ignore(numeric_limits::max(), '\n'); // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> io_ticks; // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> sectors_write; // nbytes written if (disk.io_write.empty()) disk.io_write.push_back(0); else disk.io_write.push_back(max((int64_t)0, (sectors_write - disk.old_io.at(1)))); disk.old_io.at(1) = sectors_write; while (cmp_greater(disk.io_write.size(), width * 2)) disk.io_write.pop_front(); // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> io_ticks_temp; io_ticks += io_ticks_temp; // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> sectors_read; // nbytes read if (disk.io_read.empty()) disk.io_read.push_back(0); else disk.io_read.push_back(max((int64_t)0, (sectors_read - disk.old_io.at(0)))); disk.old_io.at(0) = sectors_read; while (cmp_greater(disk.io_read.size(), width * 2)) disk.io_read.pop_front(); if (disk.io_activity.empty()) disk.io_activity.push_back(0); else disk.io_activity.push_back(max((int64_t)0, (io_ticks - disk.old_io.at(2)))); disk.old_io.at(2) = io_ticks; while (cmp_greater(disk.io_activity.size(), width * 2)) disk.io_activity.pop_front(); } else { for (int i = 0; i < 2; i++) { diskread >> std::ws; diskread.ignore(SSmax, ' '); } diskread >> sectors_read; if (disk.io_read.empty()) disk.io_read.push_back(0); else disk.io_read.push_back(max((int64_t)0, (sectors_read - disk.old_io.at(0)) * 512)); disk.old_io.at(0) = sectors_read; while (cmp_greater(disk.io_read.size(), width * 2)) disk.io_read.pop_front(); for (int i = 0; i < 3; i++) { diskread >> std::ws; diskread.ignore(SSmax, ' '); } diskread >> sectors_write; if (disk.io_write.empty()) disk.io_write.push_back(0); else disk.io_write.push_back(max((int64_t)0, (sectors_write - disk.old_io.at(1)) * 512)); disk.old_io.at(1) = sectors_write; while (cmp_greater(disk.io_write.size(), width * 2)) disk.io_write.pop_front(); for (int i = 0; i < 2; i++) { diskread >> std::ws; diskread.ignore(SSmax, ' '); } diskread >> io_ticks; if (disk.io_activity.empty()) disk.io_activity.push_back(0); else disk.io_activity.push_back(clamp((long)round((double)(io_ticks - disk.old_io.at(2)) / (uptime - old_uptime) / 10), 0l, 100l)); disk.old_io.at(2) = io_ticks; while (cmp_greater(disk.io_activity.size(), width * 2)) disk.io_activity.pop_front(); } } else { Logger::debug("Error in Mem::collect() : when opening " + string{disk.stat}); } diskread.close(); } old_uptime = uptime; } catch (const std::exception& e) { Logger::warning("Error in Mem::collect() : " + string{e.what()}); } } return mem; } fs::path get_zfs_stat_file(const string& device_name, size_t dataset_name_start, bool zfs_hide_datasets) { fs::path zfs_pool_stat_path; if (zfs_hide_datasets) { zfs_pool_stat_path = Shared::procPath / "spl/kstat/zfs" / device_name; if (access(zfs_pool_stat_path.c_str(), R_OK) == 0) { return zfs_pool_stat_path; } else { Logger::debug("Cant access folder: " + zfs_pool_stat_path.string()); return ""; } } ifstream filestream; string filename; string name_compare; if (dataset_name_start != std::string::npos) { // device is a dataset zfs_pool_stat_path = Shared::procPath / "spl/kstat/zfs" / device_name.substr(0, dataset_name_start); } else { // device is a pool zfs_pool_stat_path = Shared::procPath / "spl/kstat/zfs" / device_name; } // looking through all files that start with 'objset' to find the one containing `device_name` object stats try { for (const auto& file: fs::directory_iterator(zfs_pool_stat_path)) { filename = file.path().filename(); if (filename.starts_with("objset")) { filestream.open(file.path()); if (filestream.good()) { // skip first two lines for (int i = 0; i < 2; i++) filestream.ignore(numeric_limits::max(), '\n'); // skip characters until '7' is reached, indicating data type 7, next value will be object name filestream.ignore(numeric_limits::max(), '7'); filestream >> name_compare; if (name_compare == device_name) { filestream.close(); if (access(file.path().c_str(), R_OK) == 0) { return file.path(); } else { Logger::debug("Can't access file: " + file.path().string()); return ""; } } } filestream.close(); } } } catch (fs::filesystem_error& e) {} Logger::debug("Could not read directory: " + zfs_pool_stat_path.string()); return ""; } bool zfs_collect_pool_total_stats(struct disk_info &disk) { ifstream diskread; int64_t bytes_read; int64_t bytes_write; int64_t io_ticks; int64_t bytes_read_total{}; int64_t bytes_write_total{}; int64_t io_ticks_total{}; int64_t objects_read{}; // looking through all files that start with 'objset' for (const auto& file: fs::directory_iterator(disk.stat)) { if ((file.path().filename()).string().starts_with("objset")) { diskread.open(file.path()); if (diskread.good()) { try { // skip first three lines for (int i = 0; i < 3; i++) diskread.ignore(numeric_limits::max(), '\n'); // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> io_ticks; io_ticks_total += io_ticks; // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> bytes_write; bytes_write_total += bytes_write; // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> io_ticks; io_ticks_total += io_ticks; // skip characters until '4' is reached, indicating data type 4, next value will be out target diskread.ignore(numeric_limits::max(), '4'); diskread >> bytes_read; bytes_read_total += bytes_read; } catch (const std::exception& e) { continue; } // increment read objects counter if no errors were encountered objects_read++; } else { Logger::debug("Could not read file: " + file.path().string()); } diskread.close(); } } // if for some reason no objects were read if (objects_read == 0) return false; if (disk.io_write.empty()) disk.io_write.push_back(0); else disk.io_write.push_back(max((int64_t)0, (bytes_write_total - disk.old_io.at(1)))); disk.old_io.at(1) = bytes_write_total; while (cmp_greater(disk.io_write.size(), width * 2)) disk.io_write.pop_front(); if (disk.io_read.empty()) disk.io_read.push_back(0); else disk.io_read.push_back(max((int64_t)0, (bytes_read_total - disk.old_io.at(0)))); disk.old_io.at(0) = bytes_read_total; while (cmp_greater(disk.io_read.size(), width * 2)) disk.io_read.pop_front(); if (disk.io_activity.empty()) disk.io_activity.push_back(0); else disk.io_activity.push_back(max((int64_t)0, (io_ticks_total - disk.old_io.at(2)))); disk.old_io.at(2) = io_ticks_total; while (cmp_greater(disk.io_activity.size(), width * 2)) disk.io_activity.pop_front(); return true; } } namespace Net { std::unordered_map current_net; net_info empty_net = {}; vector interfaces; string selected_iface; int errors{}; std::unordered_map graph_max = { {"download", {}}, {"upload", {}} }; std::unordered_map> max_count = { {"download", {}}, {"upload", {}} }; bool rescale{true}; uint64_t timestamp{}; //* RAII wrapper for getifaddrs class getifaddr_wrapper { struct ifaddrs* ifaddr; public: int status; getifaddr_wrapper() { status = getifaddrs(&ifaddr); } ~getifaddr_wrapper() { freeifaddrs(ifaddr); } auto operator()() -> struct ifaddrs* { return ifaddr; } }; auto collect(bool no_update) -> net_info& { if (Runner::stopping) return empty_net; auto& net = current_net; auto& config_iface = Config::getS("net_iface"); auto net_sync = Config::getB("net_sync"); auto net_auto = Config::getB("net_auto"); auto new_timestamp = time_ms(); if (not no_update and errors < 3) { //? Get interface list using getifaddrs() wrapper getifaddr_wrapper if_wrap {}; if (if_wrap.status != 0) { errors++; Logger::error("Net::collect() -> getifaddrs() failed with id " + to_string(if_wrap.status)); redraw = true; return empty_net; } int family = 0; static_assert(INET6_ADDRSTRLEN >= INET_ADDRSTRLEN); // 46 >= 16, compile-time assurance. enum { IPBUFFER_MAXSIZE = INET6_ADDRSTRLEN }; // manually using the known biggest value, guarded by the above static_assert char ip[IPBUFFER_MAXSIZE]; interfaces.clear(); string ipv4, ipv6; //? Iteration over all items in getifaddrs() list for (auto* ifa = if_wrap(); ifa != nullptr; ifa = ifa->ifa_next) { if (ifa->ifa_addr == nullptr) continue; family = ifa->ifa_addr->sa_family; const auto& iface = ifa->ifa_name; //? Update available interfaces vector and get status of interface if (not v_contains(interfaces, iface)) { interfaces.push_back(iface); net[iface].connected = (ifa->ifa_flags & IFF_RUNNING); // An interface can have more than one IP of the same family associated with it, // but we pick only the first one to show in the NET box. // Note: Interfaces without any IPv4 and IPv6 set are still valid and monitorable! net[iface].ipv4.clear(); net[iface].ipv6.clear(); } //? Get IPv4 address if (family == AF_INET) { if (net[iface].ipv4.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv4 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv4 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //? Get IPv6 address else if (family == AF_INET6) { if (net[iface].ipv6.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin6_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv6 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv6 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //else, ignoring family==AF_PACKET (see man 3 getifaddrs) which is the first one in the `for` loop. } //? Get total recieved and transmitted bytes + device address if no ip was found for (const auto& iface : interfaces) { if (net.at(iface).ipv4.empty() and net.at(iface).ipv6.empty()) net.at(iface).ipv4 = readfile("/sys/class/net/" + iface + "/address"); for (const string dir : {"download", "upload"}) { const fs::path sys_file = "/sys/class/net/" + iface + "/statistics/" + (dir == "download" ? "rx_bytes" : "tx_bytes"); auto& saved_stat = net.at(iface).stat.at(dir); auto& bandwidth = net.at(iface).bandwidth.at(dir); uint64_t val{}; try { val = (uint64_t)stoull(readfile(sys_file, "0")); } catch (const std::invalid_argument&) {} catch (const std::out_of_range&) {} //? Update speed, total and top values if (val < saved_stat.last) { saved_stat.rollover += saved_stat.last; saved_stat.last = 0; } if (cmp_greater((unsigned long long)saved_stat.rollover + (unsigned long long)val, numeric_limits::max())) { saved_stat.rollover = 0; saved_stat.last = 0; } saved_stat.speed = round((double)(val - saved_stat.last) / ((double)(new_timestamp - timestamp) / 1000)); if (saved_stat.speed > saved_stat.top) saved_stat.top = saved_stat.speed; if (saved_stat.offset > val + saved_stat.rollover) saved_stat.offset = 0; saved_stat.total = (val + saved_stat.rollover) - saved_stat.offset; saved_stat.last = val; //? Add values to graph bandwidth.push_back(saved_stat.speed); while (cmp_greater(bandwidth.size(), width * 2)) bandwidth.pop_front(); //? Set counters for auto scaling if (net_auto and selected_iface == iface) { if (net_sync and saved_stat.speed < net.at(iface).stat.at(dir == "download" ? "upload" : "download").speed) continue; if (saved_stat.speed > graph_max[dir]) { ++max_count[dir][0]; if (max_count[dir][1] > 0) --max_count[dir][1]; } else if (graph_max[dir] > 10 << 10 and saved_stat.speed < graph_max[dir] / 10) { ++max_count[dir][1]; if (max_count[dir][0] > 0) --max_count[dir][0]; } } } } //? Clean up net map if needed if (net.size() > interfaces.size()) { for (auto it = net.begin(); it != net.end();) { if (not v_contains(interfaces, it->first)) it = net.erase(it); else it++; } } timestamp = new_timestamp; } //? Return empty net_info struct if no interfaces was found if (net.empty()) return empty_net; //? Find an interface to display if selected isn't set or valid if (selected_iface.empty() or not v_contains(interfaces, selected_iface)) { max_count["download"][0] = max_count["download"][1] = max_count["upload"][0] = max_count["upload"][1] = 0; redraw = true; if (net_auto) rescale = true; if (not config_iface.empty() and v_contains(interfaces, config_iface)) selected_iface = config_iface; else { //? Sort interfaces by total upload + download bytes auto sorted_interfaces = interfaces; rng::sort(sorted_interfaces, [&](const auto& a, const auto& b){ return cmp_greater(net.at(a).stat["download"].total + net.at(a).stat["upload"].total, net.at(b).stat["download"].total + net.at(b).stat["upload"].total); }); selected_iface.clear(); //? Try to set to a connected interface for (const auto& iface : sorted_interfaces) { if (net.at(iface).connected) selected_iface = iface; break; } //? If no interface is connected set to first available if (selected_iface.empty() and not sorted_interfaces.empty()) selected_iface = sorted_interfaces.at(0); else if (sorted_interfaces.empty()) return empty_net; } } //? Calculate max scale for graphs if needed if (net_auto) { bool sync = false; for (const auto& dir: {"download", "upload"}) { for (const auto& sel : {0, 1}) { if (rescale or max_count[dir][sel] >= 5) { const long long avg_speed = (net[selected_iface].bandwidth[dir].size() > 5 ? std::accumulate(net.at(selected_iface).bandwidth.at(dir).rbegin(), net.at(selected_iface).bandwidth.at(dir).rbegin() + 5, 0ll) / 5 : net[selected_iface].stat[dir].speed); graph_max[dir] = max(uint64_t(avg_speed * (sel == 0 ? 1.3 : 3.0)), (uint64_t)10 << 10); max_count[dir][0] = max_count[dir][1] = 0; redraw = true; if (net_sync) sync = true; break; } } //? Sync download/upload graphs if enabled if (sync) { const auto other = (string(dir) == "upload" ? "download" : "upload"); graph_max[other] = graph_max[dir]; max_count[other][0] = max_count[other][1] = 0; break; } } } rescale = false; return net.at(selected_iface); } } namespace Proc { vector current_procs; std::unordered_map uid_user; string current_sort; string current_filter; bool current_rev{}; fs::file_time_type passwd_time; uint64_t cputimes; int collapse = -1, expand = -1; uint64_t old_cputimes{}; atomic numpids{}; int filter_found{}; detail_container detailed; constexpr size_t KTHREADD = 2; static std::unordered_set kernels_procs = {KTHREADD}; //* Get detailed info for selected process void _collect_details(const size_t pid, const uint64_t uptime, vector& procs) { fs::path pid_path = Shared::procPath / std::to_string(pid); if (pid != detailed.last_pid) { detailed = {}; detailed.last_pid = pid; detailed.skip_smaps = not Config::getB("proc_info_smaps"); } //? Copy proc_info for process from proc vector auto p_info = rng::find(procs, pid, &proc_info::pid); detailed.entry = *p_info; //? Update cpu percent deque for process cpu graph if (not Config::getB("proc_per_core")) detailed.entry.cpu_p *= Shared::coreCount; detailed.cpu_percent.push_back(clamp((long long)round(detailed.entry.cpu_p), 0ll, 100ll)); while (cmp_greater(detailed.cpu_percent.size(), width)) detailed.cpu_percent.pop_front(); //? Process runtime detailed.elapsed = sec_to_dhms(uptime - (detailed.entry.cpu_s / Shared::clkTck)); if (detailed.elapsed.size() > 8) detailed.elapsed.resize(detailed.elapsed.size() - 3); //? Get parent process name if (detailed.parent.empty()) { auto p_entry = rng::find(procs, detailed.entry.ppid, &proc_info::pid); if (p_entry != procs.end()) detailed.parent = p_entry->name; } //? Expand process status from single char to explanative string detailed.status = (proc_states.contains(detailed.entry.state)) ? proc_states.at(detailed.entry.state) : "Unknown"; ifstream d_read; string short_str; //? Try to get RSS mem from proc/[pid]/smaps detailed.memory.clear(); if (not detailed.skip_smaps and fs::exists(pid_path / "smaps")) { d_read.open(pid_path / "smaps"); uint64_t rss = 0; try { while (d_read.good()) { d_read.ignore(SSmax, 'R'); if (d_read.peek() == 's') { d_read.ignore(SSmax, ':'); getline(d_read, short_str, 'k'); rss += stoull(short_str); } } if (rss == detailed.entry.mem >> 10) detailed.skip_smaps = true; else { detailed.mem_bytes.push_back(rss << 10); detailed.memory = floating_humanizer(rss, false, 1); } } catch (const std::invalid_argument&) {} catch (const std::out_of_range&) {} d_read.close(); } if (detailed.memory.empty()) { detailed.mem_bytes.push_back(detailed.entry.mem); detailed.memory = floating_humanizer(detailed.entry.mem); } if (detailed.first_mem == -1 or detailed.first_mem < detailed.mem_bytes.back() / 2 or detailed.first_mem > detailed.mem_bytes.back() * 4) { detailed.first_mem = min((uint64_t)detailed.mem_bytes.back() * 2, Mem::get_totalMem()); redraw = true; } while (cmp_greater(detailed.mem_bytes.size(), width)) detailed.mem_bytes.pop_front(); //? Get bytes read and written from proc/[pid]/io if (fs::exists(pid_path / "io")) { d_read.open(pid_path / "io"); try { string name; while (d_read.good()) { getline(d_read, name, ':'); if (name.ends_with("read_bytes")) { getline(d_read, short_str); detailed.io_read = floating_humanizer(stoull(short_str)); } else if (name.ends_with("write_bytes")) { getline(d_read, short_str); detailed.io_write = floating_humanizer(stoull(short_str)); break; } else d_read.ignore(SSmax, '\n'); } } catch (const std::invalid_argument&) {} catch (const std::out_of_range&) {} d_read.close(); } } //* Collects and sorts process information from /proc auto collect(bool no_update) -> vector& { if (Runner::stopping) return current_procs; const auto& sorting = Config::getS("proc_sorting"); auto reverse = Config::getB("proc_reversed"); const auto& filter = Config::getS("proc_filter"); auto per_core = Config::getB("proc_per_core"); auto should_filter_kernel = Config::getB("proc_filter_kernel"); auto tree = Config::getB("proc_tree"); auto show_detailed = Config::getB("show_detailed"); const size_t detailed_pid = Config::getI("detailed_pid"); bool should_filter = current_filter != filter; if (should_filter) current_filter = filter; bool sorted_change = (sorting != current_sort or reverse != current_rev or should_filter); if (sorted_change) { current_sort = sorting; current_rev = reverse; } ifstream pread; string long_string; string short_str; static vector found; const double uptime = system_uptime(); const int cmult = (per_core) ? Shared::coreCount : 1; bool got_detailed = false; static size_t proc_clear_count{}; //* Use pids from last update if only changing filter, sorting or tree options if (no_update and not current_procs.empty()) { if (show_detailed and detailed_pid != detailed.last_pid) _collect_details(detailed_pid, round(uptime), current_procs); } //* ---------------------------------------------Collection start---------------------------------------------- else { should_filter = true; found.clear(); //? First make sure kernel proc cache is cleared. if (should_filter_kernel and ++proc_clear_count >= 256) { //? Clearing the cache is used in the event of a pid wrap around. //? In that event processes that acquire old kernel pids would also be filtered out so we need to manually clean the cache every now and then. kernels_procs.clear(); kernels_procs.emplace(KTHREADD); proc_clear_count = 0; } auto totalMem = Mem::get_totalMem(); int totalMem_len = to_string(totalMem >> 10).size(); //? Update uid_user map if /etc/passwd changed since last run if (not Shared::passwd_path.empty() and fs::last_write_time(Shared::passwd_path) != passwd_time) { string r_uid, r_user; passwd_time = fs::last_write_time(Shared::passwd_path); uid_user.clear(); pread.open(Shared::passwd_path); if (pread.good()) { while (pread.good()) { getline(pread, r_user, ':'); pread.ignore(SSmax, ':'); getline(pread, r_uid, ':'); if (uid_user.contains(r_uid)) break; uid_user[r_uid] = r_user; pread.ignore(SSmax, '\n'); } } else { Shared::passwd_path.clear(); } pread.close(); } //? Get cpu total times from /proc/stat cputimes = 0; pread.open(Shared::procPath / "stat"); if (pread.good()) { pread.ignore(SSmax, ' '); for (uint64_t times; pread >> times; cputimes += times); } else throw std::runtime_error("Failure to read /proc/stat"); pread.close(); //? Iterate over all pids in /proc for (const auto& d: fs::directory_iterator(Shared::procPath)) { if (Runner::stopping) return current_procs; if (pread.is_open()) pread.close(); const string pid_str = d.path().filename(); if (not isdigit(pid_str[0])) continue; const size_t pid = stoul(pid_str); if (should_filter_kernel and kernels_procs.contains(pid)) { continue; } found.push_back(pid); //? Check if pid already exists in current_procs auto find_old = rng::find(current_procs, pid, &proc_info::pid); bool no_cache{}; if (find_old == current_procs.end()) { current_procs.push_back({pid}); find_old = current_procs.end() - 1; no_cache = true; } auto& new_proc = *find_old; //? Get program name, command and username if (no_cache) { pread.open(d.path() / "comm"); if (not pread.good()) continue; getline(pread, new_proc.name); pread.close(); //? Check for whitespace characters in name and set offset to get correct fields from stat file new_proc.name_offset = rng::count(new_proc.name, ' '); pread.open(d.path() / "cmdline"); if (not pread.good()) continue; long_string.clear(); while(getline(pread, long_string, '\0')) { new_proc.cmd += long_string + ' '; if (new_proc.cmd.size() > 1000) { new_proc.cmd.resize(1000); break; } } pread.close(); if (not new_proc.cmd.empty()) new_proc.cmd.pop_back(); pread.open(d.path() / "status"); if (not pread.good()) continue; string uid; string line; while (pread.good()) { getline(pread, line, ':'); if (line == "Uid") { pread.ignore(); getline(pread, uid, '\t'); break; } else { pread.ignore(SSmax, '\n'); } } pread.close(); if (uid_user.contains(uid)) { new_proc.user = uid_user.at(uid); } else { #if !(defined(STATIC_BUILD) && defined(__GLIBC__)) try { struct passwd* udet; udet = getpwuid(stoi(uid)); if (udet != nullptr and udet->pw_name != nullptr) { new_proc.user = string(udet->pw_name); } else { new_proc.user = uid; } } catch (...) { new_proc.user = uid; } #else new_proc.user = uid; #endif } } //? Parse /proc/[pid]/stat pread.open(d.path() / "stat"); if (not pread.good()) continue; const auto& offset = new_proc.name_offset; short_str.clear(); int x = 0, next_x = 3; uint64_t cpu_t = 0; try { for (;;) { while (pread.good() and ++x < next_x + offset) pread.ignore(SSmax, ' '); if (not pread.good()) break; else getline(pread, short_str, ' '); switch (x-offset) { case 3: //? Process state new_proc.state = short_str.at(0); if (new_proc.ppid != 0) next_x = 14; continue; case 4: //? Parent pid new_proc.ppid = stoull(short_str); next_x = 14; continue; case 14: //? Process utime cpu_t = stoull(short_str); continue; case 15: //? Process stime cpu_t += stoull(short_str); next_x = 19; continue; case 19: //? Nice value new_proc.p_nice = stoll(short_str); continue; case 20: //? Number of threads new_proc.threads = stoull(short_str); if (new_proc.cpu_s == 0) { next_x = 22; new_proc.cpu_t = cpu_t; } else next_x = 24; continue; case 22: //? Get cpu seconds if missing new_proc.cpu_s = stoull(short_str); next_x = 24; continue; case 24: //? RSS memory (can be inaccurate, but parsing smaps increases total cpu usage by ~20x) if (cmp_greater(short_str.size(), totalMem_len)) new_proc.mem = totalMem; else new_proc.mem = stoull(short_str) * Shared::pageSize; } break; } } catch (const std::invalid_argument&) { continue; } catch (const std::out_of_range&) { continue; } pread.close(); if (should_filter_kernel and new_proc.ppid == KTHREADD) { kernels_procs.emplace(new_proc.pid); found.pop_back(); } if (x-offset < 24) continue; //? Get RSS memory from /proc/[pid]/statm if value from /proc/[pid]/stat looks wrong if (new_proc.mem >= totalMem) { pread.open(d.path() / "statm"); if (not pread.good()) continue; pread.ignore(SSmax, ' '); pread >> new_proc.mem; new_proc.mem *= Shared::pageSize; pread.close(); } //? Process cpu usage since last update new_proc.cpu_p = clamp(round(cmult * 1000 * (cpu_t - new_proc.cpu_t) / max((uint64_t)1, cputimes - old_cputimes)) / 10.0, 0.0, 100.0 * Shared::coreCount); //? Process cumulative cpu usage since process start new_proc.cpu_c = (double)cpu_t / max(1.0, (uptime * Shared::clkTck) - new_proc.cpu_s); //? Update cached value with latest cpu times new_proc.cpu_t = cpu_t; if (show_detailed and not got_detailed and new_proc.pid == detailed_pid) { got_detailed = true; } } //? Clear dead processes from current_procs and remove kernel processes if enabled auto eraser = rng::remove_if(current_procs, [&](const auto& element){ return not v_contains(found, element.pid); }); current_procs.erase(eraser.begin(), eraser.end()); //? Update the details info box for process if active if (show_detailed and got_detailed) { _collect_details(detailed_pid, round(uptime), current_procs); } else if (show_detailed and not got_detailed and detailed.status != "Dead") { detailed.status = "Dead"; redraw = true; } old_cputimes = cputimes; } //* ---------------------------------------------Collection done----------------------------------------------- //* Match filter if defined if (should_filter) { filter_found = 0; for (auto& p : current_procs) { if (not tree and not filter.empty()) { if (not s_contains_ic(to_string(p.pid), filter) and not s_contains_ic(p.name, filter) and not s_contains_ic(p.cmd, filter) and not s_contains_ic(p.user, filter)) { p.filtered = true; filter_found++; } else { p.filtered = false; } } else { p.filtered = false; } } } //* Sort processes if (sorted_change or not no_update) { proc_sorter(current_procs, sorting, reverse, tree); } //* Generate tree view if enabled if (tree and (not no_update or should_filter or sorted_change)) { bool locate_selection = false; if (auto find_pid = (collapse != -1 ? collapse : expand); find_pid != -1) { auto collapser = rng::find(current_procs, find_pid, &proc_info::pid); if (collapser != current_procs.end()) { if (collapse == expand) { collapser->collapsed = not collapser->collapsed; } else if (collapse > -1) { collapser->collapsed = true; } else if (expand > -1) { collapser->collapsed = false; } if (Config::ints.at("proc_selected") > 0) locate_selection = true; } collapse = expand = -1; } if (should_filter or not filter.empty()) filter_found = 0; vector tree_procs; tree_procs.reserve(current_procs.size()); for (auto& p : current_procs) { if (not v_contains(found, p.ppid)) p.ppid = 0; } //? Stable sort to retain selected sorting among processes with the same parent rng::stable_sort(current_procs, rng::less{}, & proc_info::ppid); //? Start recursive iteration over processes with the lowest shared parent pids for (auto& p : rng::equal_range(current_procs, current_procs.at(0).ppid, rng::less{}, &proc_info::ppid)) { _tree_gen(p, current_procs, tree_procs, 0, false, filter, false, no_update, should_filter); } //? Recursive sort over tree structure to account for collapsed processes in the tree int index = 0; tree_sort(tree_procs, sorting, reverse, index, current_procs.size()); //? Add tree begin symbol to first item if childless if (tree_procs.size() > 0 and tree_procs.front().children.empty() and tree_procs.front().entry.get().prefix.size() >= 8) tree_procs.front().entry.get().prefix.replace(tree_procs.front().entry.get().prefix.size() - 8, 8, " ┌─ "); //? Add tree terminator symbol to last item if childless if (tree_procs.size() > 0 and tree_procs.back().children.empty() and tree_procs.back().entry.get().prefix.size() >= 8) tree_procs.back().entry.get().prefix.replace(tree_procs.back().entry.get().prefix.size() - 8, 8, " └─ "); //? Final sort based on tree index rng::sort(current_procs, rng::less{}, & proc_info::tree_index); //? Move current selection/view to the selected process when collapsing/expanding in the tree if (locate_selection) { int loc = rng::find(current_procs, Proc::selected_pid, &proc_info::pid)->tree_index; if (Config::ints.at("proc_start") >= loc or Config::ints.at("proc_start") <= loc - Proc::select_max) Config::ints.at("proc_start") = max(0, loc - 1); Config::ints.at("proc_selected") = loc - Config::ints.at("proc_start") + 1; } } numpids = (int)current_procs.size() - filter_found; return current_procs; } } namespace Tools { double system_uptime() { string upstr; ifstream pread(Shared::procPath / "uptime"); if (pread.good()) { try { getline(pread, upstr, ' '); pread.close(); return stod(upstr); } catch (const std::invalid_argument&) {} catch (const std::out_of_range&) {} } throw std::runtime_error("Failed to get uptime from " + string{Shared::procPath} + "/uptime"); } } btop-1.3.0/src/openbsd/000077500000000000000000000000001454653170500147125ustar00rootroot00000000000000btop-1.3.0/src/openbsd/btop_collect.cpp000066400000000000000000001234441454653170500200770ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include #include #include #include #include // man 3 getifaddrs: "BUGS: If both and are being included, must be included before " #include #include #include #include #include #include #include // for inet_ntop stuff #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "../btop_config.hpp" #include "../btop_shared.hpp" #include "../btop_tools.hpp" #include "./sysctlbyname.h" using std::clamp, std::string_literals::operator""s, std::cmp_equal, std::cmp_less, std::cmp_greater; using std::ifstream, std::numeric_limits, std::streamsize, std::round, std::max, std::min; namespace fs = std::filesystem; namespace rng = std::ranges; using namespace Tools; //? --------------------------------------------------- FUNCTIONS ----------------------------------------------------- namespace Cpu { vector core_old_totals; vector core_old_idles; vector available_fields = {"total"}; vector available_sensors = {"Auto"}; cpu_info current_cpu; bool got_sensors = false, cpu_temp_only = false; //* Populate found_sensors map bool get_sensors(); //* Get current cpu clock speed string get_cpuHz(); //* Search /proc/cpuinfo for a cpu name string get_cpuName(); struct Sensor { fs::path path; string label; int64_t temp = 0; int64_t high = 0; int64_t crit = 0; }; string cpu_sensor; vector core_sensors; std::unordered_map core_mapping; } // namespace Cpu namespace Mem { double old_uptime; } namespace Shared { fs::path passwd_path; uint64_t totalMem; long pageSize, clkTck, coreCount, physicalCoreCount, arg_max; int totalMem_len, kfscale; long bootTime; void init() { //? Shared global variables init int mib[2]; mib[0] = CTL_HW; mib[1] = HW_NCPU; int ncpu; size_t len = sizeof(ncpu); if (sysctl(mib, 2, &ncpu, &len, nullptr, 0) == -1) { Logger::warning("Could not determine number of cores, defaulting to 1."); } else { coreCount = ncpu; } pageSize = sysconf(_SC_PAGE_SIZE); if (pageSize <= 0) { pageSize = 4096; Logger::warning("Could not get system page size. Defaulting to 4096, processes memory usage might be incorrect."); } clkTck = sysconf(_SC_CLK_TCK); if (clkTck <= 0) { clkTck = 100; Logger::warning("Could not get system clock ticks per second. Defaulting to 100, processes cpu usage might be incorrect."); } int64_t memsize = 0; size_t size = sizeof(memsize); if (sysctlbyname("hw.physmem", &memsize, &size, nullptr, 0) < 0) { Logger::warning("Could not get memory size"); } totalMem = memsize; struct timeval result; size = sizeof(result); if (sysctlbyname("kern.boottime", &result, &size, nullptr, 0) < 0) { Logger::warning("Could not get boot time"); } else { bootTime = result.tv_sec; } size = sizeof(kfscale); if (sysctlbyname("kern.fscale", &kfscale, &size, nullptr, 0) == -1) { kfscale = 2048; } //* Get maximum length of process arguments arg_max = sysconf(_SC_ARG_MAX); //? Init for namespace Cpu Cpu::current_cpu.core_percent.insert(Cpu::current_cpu.core_percent.begin(), Shared::coreCount, {}); Cpu::current_cpu.temp.insert(Cpu::current_cpu.temp.begin(), Shared::coreCount + 1, {}); Cpu::core_old_totals.insert(Cpu::core_old_totals.begin(), Shared::coreCount, 0); Cpu::core_old_idles.insert(Cpu::core_old_idles.begin(), Shared::coreCount, 0); Cpu::collect(); for (auto &[field, vec] : Cpu::current_cpu.cpu_percent) { if (not vec.empty() and not v_contains(Cpu::available_fields, field)) Cpu::available_fields.push_back(field); } Cpu::cpuName = Cpu::get_cpuName(); Cpu::got_sensors = Cpu::get_sensors(); Cpu::core_mapping = Cpu::get_core_mapping(); //? Init for namespace Mem Mem::old_uptime = system_uptime(); Mem::collect(); } //* RAII wrapper for kvm_openfiles class kvm_openfiles_wrapper { kvm_t* kd = nullptr; public: kvm_openfiles_wrapper(const char* execf, const char* coref, const char* swapf, int flags, char* err) { this->kd = kvm_openfiles(execf, coref, swapf, flags, err); } ~kvm_openfiles_wrapper() { kvm_close(kd); } auto operator()() -> kvm_t* { return kd; } }; } // namespace Shared namespace Cpu { string cpuName; string cpuHz; bool has_battery = true; tuple current_bat; const array time_names = {"user", "nice", "system", "idle"}; std::unordered_map cpu_old = { {"totals", 0}, {"idles", 0}, {"user", 0}, {"nice", 0}, {"system", 0}, {"idle", 0} }; string get_cpuName() { string name; char buffer[1024]; size_t size = sizeof(buffer); if (sysctlbyname("hw.model", &buffer, &size, nullptr, 0) < 0) { Logger::error("Failed to get CPU name"); return name; } name = string(buffer); auto name_vec = ssplit(name); if ((s_contains(name, "Xeon"s) or v_contains(name_vec, "Duo"s)) and v_contains(name_vec, "CPU"s)) { auto cpu_pos = v_index(name_vec, "CPU"s); if (cpu_pos < name_vec.size() - 1 and not name_vec.at(cpu_pos + 1).ends_with(')')) name = name_vec.at(cpu_pos + 1); else name.clear(); } else if (v_contains(name_vec, "Ryzen"s)) { auto ryz_pos = v_index(name_vec, "Ryzen"s); name = "Ryzen" + (ryz_pos < name_vec.size() - 1 ? ' ' + name_vec.at(ryz_pos + 1) : "") + (ryz_pos < name_vec.size() - 2 ? ' ' + name_vec.at(ryz_pos + 2) : ""); } else if (s_contains(name, "Intel"s) and v_contains(name_vec, "CPU"s)) { auto cpu_pos = v_index(name_vec, "CPU"s); if (cpu_pos < name_vec.size() - 1 and not name_vec.at(cpu_pos + 1).ends_with(')') and name_vec.at(cpu_pos + 1) != "@") name = name_vec.at(cpu_pos + 1); else name.clear(); } else name.clear(); if (name.empty() and not name_vec.empty()) { for (const auto &n : name_vec) { if (n == "@") break; name += n + ' '; } name.pop_back(); for (const auto& replace : {"Processor", "CPU", "(R)", "(TM)", "Intel", "AMD", "Core"}) { name = s_replace(name, replace, ""); name = s_replace(name, " ", " "); } name = trim(name); } return name; } int64_t get_sensor(string device, sensor_type type, int num) { int64_t temp = -1; struct sensordev sensordev; struct sensor sensor; size_t sdlen, slen; int dev; int mib[] = {CTL_HW, HW_SENSORS, 0, 0, 0}; sdlen = sizeof(sensordev); slen = sizeof(sensor); for (dev = 0;; dev++) { mib[2] = dev; if (sysctl(mib, 3, &sensordev, &sdlen, NULL, 0) == -1) { if (errno == ENXIO) continue; if (errno == ENOENT) break; } if (strstr(sensordev.xname, device.c_str())) { mib[3] = type; mib[4] = num; if (sysctl(mib, 5, &sensor, &slen, NULL, 0) == -1) { if (errno != ENOENT) { Logger::warning("sysctl"); continue; } } temp = sensor.value; break; } } return temp; } bool get_sensors() { got_sensors = false; if (Config::getB("show_coretemp") and Config::getB("check_temp")) { if (get_sensor(string("cpu0") , SENSOR_TEMP, 0) > 0) { got_sensors = true; current_cpu.temp_max = 100; // we don't have this info } else { Logger::warning("Could not get temp sensor"); } } return got_sensors; } #define MUKTOC(v) ((v - 273150000) / 1000000.0) void update_sensors() { int temp = 0; int p_temp = 0; temp = get_sensor(string("cpu0"), SENSOR_TEMP, 0); if (temp > -1) { temp = MUKTOC(temp); p_temp = temp; for (int i = 0; i < Shared::coreCount; i++) { if (cmp_less(i + 1, current_cpu.temp.size())) { current_cpu.temp.at(i + 1).push_back(temp); if (current_cpu.temp.at(i + 1).size() > 20) current_cpu.temp.at(i + 1).pop_front(); } } current_cpu.temp.at(0).push_back(p_temp); if (current_cpu.temp.at(0).size() > 20) current_cpu.temp.at(0).pop_front(); } } string get_cpuHz() { unsigned int freq = 1; size_t size = sizeof(freq); if (sysctlbyname("hw.cpuspeed", &freq, &size, nullptr, 0) < 0) { return ""; } return std::to_string(freq / 1000.0 ).substr(0, 3); // seems to be in MHz } auto get_core_mapping() -> std::unordered_map { std::unordered_map core_map; if (cpu_temp_only) return core_map; for (long i = 0; i < Shared::coreCount; i++) { core_map[i] = i; } //? If core mapping from cpuinfo was incomplete try to guess remainder, if missing completely, map 0-0 1-1 2-2 etc. if (cmp_less(core_map.size(), Shared::coreCount)) { if (Shared::coreCount % 2 == 0 and (long) core_map.size() == Shared::coreCount / 2) { for (int i = 0, n = 0; i < Shared::coreCount / 2; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[Shared::coreCount / 2 + i] = n++; } } else { core_map.clear(); for (int i = 0, n = 0; i < Shared::coreCount; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[i] = n++; } } } //? Apply user set custom mapping if any const auto &custom_map = Config::getS("cpu_core_map"); if (not custom_map.empty()) { try { for (const auto &split : ssplit(custom_map)) { const auto vals = ssplit(split, ':'); if (vals.size() != 2) continue; int change_id = std::stoi(vals.at(0)); int new_id = std::stoi(vals.at(1)); if (not core_map.contains(change_id) or cmp_greater(new_id, core_sensors.size())) continue; core_map.at(change_id) = new_id; } } catch (...) { } } return core_map; } auto get_battery() -> tuple { if (not has_battery) return {0, 0, ""}; long seconds = -1; uint32_t percent = -1; string status = "discharging"; int64_t full, remaining; full = get_sensor("acpibat0", SENSOR_AMPHOUR, 0); remaining = get_sensor("acpibat0", SENSOR_AMPHOUR, 3); int64_t state = get_sensor("acpibat0", SENSOR_INTEGER, 0); if (full < 0) { has_battery = false; Logger::warning("failed to get battery"); } else { float_t f = full / 1000; float_t r = remaining / 1000; has_battery = true; percent = r / f * 100; if (percent == 100) { status = "full"; } switch (state) { case 0: status = "full"; percent = 100; break; case 2: status = "charging"; break; } } return {percent, seconds, status}; } auto collect(bool no_update) -> cpu_info & { if (Runner::stopping or (no_update and not current_cpu.cpu_percent.at("total").empty())) return current_cpu; auto &cpu = current_cpu; if (getloadavg(cpu.load_avg.data(), cpu.load_avg.size()) < 0) { Logger::error("failed to get load averages"); } auto cp_time = std::unique_ptr{ new struct cpustats[Shared::coreCount] }; size_t size = Shared::coreCount * sizeof(struct cpustats); static int cpustats_mib[] = {CTL_KERN, KERN_CPUSTATS, /*fillme*/0}; for (int i = 0; i < Shared::coreCount; i++) { cpustats_mib[2] = i / 2; if (sysctl(cpustats_mib, 3, &cp_time[i], &size, NULL, 0) == -1) { Logger::error("sysctl kern.cpustats failed"); } } long long global_totals = 0; long long global_idles = 0; vector times_summed = {0, 0, 0, 0}; for (long i = 0; i < Shared::coreCount; i++) { vector times; //? 0=user, 1=nice, 2=system, 3=idle for (int x = 0; const unsigned int c_state : {CP_USER, CP_NICE, CP_SYS, CP_IDLE}) { auto val = cp_time[i].cs_time[c_state]; times.push_back(val); times_summed.at(x++) += val; } try { //? All values const long long totals = std::accumulate(times.begin(), times.end(), 0ll); //? Idle time const long long idles = times.at(3); global_totals += totals; global_idles += idles; //? Calculate cpu total for each core if (i > Shared::coreCount) break; const long long calc_totals = max(0ll, totals - core_old_totals.at(i)); const long long calc_idles = max(0ll, idles - core_old_idles.at(i)); core_old_totals.at(i) = totals; core_old_idles.at(i) = idles; cpu.core_percent.at(i).push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph if (cpu.core_percent.at(i).size() > 40) cpu.core_percent.at(i).pop_front(); } catch (const std::exception &e) { Logger::error("Cpu::collect() : " + (string)e.what()); throw std::runtime_error("collect() : " + (string)e.what()); } } const long long calc_totals = max(1ll, global_totals - cpu_old.at("totals")); const long long calc_idles = max(1ll, global_idles - cpu_old.at("idles")); //? Populate cpu.cpu_percent with all fields from syscall for (int ii = 0; const auto &val : times_summed) { cpu.cpu_percent.at(time_names.at(ii)).push_back(clamp((long long)round((double)(val - cpu_old.at(time_names.at(ii))) * 100 / calc_totals), 0ll, 100ll)); cpu_old.at(time_names.at(ii)) = val; //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at(time_names.at(ii)).size(), width * 2)) cpu.cpu_percent.at(time_names.at(ii)).pop_front(); ii++; } cpu_old.at("totals") = global_totals; cpu_old.at("idles") = global_idles; //? Total usage of cpu cpu.cpu_percent.at("total").push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at("total").size(), width * 2)) cpu.cpu_percent.at("total").pop_front(); if (Config::getB("show_cpu_freq")) { auto hz = get_cpuHz(); if (hz != "") { cpuHz = hz; } } if (Config::getB("check_temp") and got_sensors) update_sensors(); if (Config::getB("show_battery") and has_battery) current_bat = get_battery(); return cpu; } } // namespace Cpu namespace Mem { bool has_swap = false; vector fstab; fs::file_time_type fstab_time; int disk_ios = 0; vector last_found; mem_info current_mem{}; uint64_t get_totalMem() { return Shared::totalMem; } void assign_values(struct disk_info& disk, int64_t readBytes, int64_t writeBytes) { disk_ios++; if (disk.io_read.empty()) { disk.io_read.push_back(0); } else { disk.io_read.push_back(max((int64_t)0, (readBytes - disk.old_io.at(0)))); } disk.old_io.at(0) = readBytes; while (cmp_greater(disk.io_read.size(), width * 2)) disk.io_read.pop_front(); if (disk.io_write.empty()) { disk.io_write.push_back(0); } else { disk.io_write.push_back(max((int64_t)0, (writeBytes - disk.old_io.at(1)))); } disk.old_io.at(1) = writeBytes; while (cmp_greater(disk.io_write.size(), width * 2)) disk.io_write.pop_front(); // no io times - need to push something anyway or we'll get an ABORT if (disk.io_activity.empty()) disk.io_activity.push_back(0); else disk.io_activity.push_back(clamp((long)round((double)(disk.io_write.back() + disk.io_read.back()) / (1 << 20)), 0l, 100l)); while (cmp_greater(disk.io_activity.size(), width * 2)) disk.io_activity.pop_front(); } void collect_disk(std::unordered_map &disks, std::unordered_map &mapping) { uint64_t total_bytes_read = 0; uint64_t total_bytes_write = 0; int num_drives = 0; int mib[2] = { CTL_HW, HW_DISKCOUNT }; size_t size; if (sysctl(mib, 2, &num_drives, &size, NULL, 0) >= 0) { mib[0] = CTL_HW; mib[1] = HW_DISKSTATS; size = num_drives * sizeof(struct diskstats); auto p = std::unique_ptr { reinterpret_cast(malloc(size)), free }; if (sysctl(mib, 2, p.get(), &size, NULL, 0) == -1) { Logger::error("failed to get disk stats"); return; } for (int i = 0; i < num_drives; i++) { for (auto& [ignored, disk] : disks) { if (disk.dev.string().find(p[i].ds_name) != string::npos) { string mountpoint = mapping.at(disk.dev); total_bytes_read = p[i].ds_rbytes; total_bytes_write = p[i].ds_wbytes; assign_values(disk, total_bytes_read, total_bytes_write); } } } } } auto collect(bool no_update) -> mem_info & { if (Runner::stopping or (no_update and not current_mem.percent.at("used").empty())) return current_mem; auto show_swap = Config::getB("show_swap"); auto show_disks = Config::getB("show_disks"); auto swap_disk = Config::getB("swap_disk"); auto &mem = current_mem; static bool snapped = (getenv("BTOP_SNAPPED") != nullptr); u_int memActive, memWire, cachedMem; // u_int freeMem; size_t size; static int uvmexp_mib[] = {CTL_VM, VM_UVMEXP}; static int bcstats_mib[] = {CTL_VFS, VFS_GENERIC, VFS_BCACHESTAT}; struct uvmexp uvmexp; struct bcachestats bcstats; size = sizeof(uvmexp); if (sysctl(uvmexp_mib, 2, &uvmexp, &size, NULL, 0) == -1) { Logger::error("sysctl failed"); bzero(&uvmexp, sizeof(uvmexp)); } size = sizeof(bcstats); if (sysctl(bcstats_mib, 3, &bcstats, &size, NULL, 0) == -1) { Logger::error("sysctl failed"); bzero(&bcstats, sizeof(bcstats)); } memActive = uvmexp.active * Shared::pageSize; memWire = uvmexp.wired; // freeMem = uvmexp.free * Shared::pageSize; cachedMem = bcstats.numbufpages * Shared::pageSize; mem.stats.at("used") = memActive; mem.stats.at("available") = Shared::totalMem - memActive - memWire; mem.stats.at("cached") = cachedMem; mem.stats.at("free") = Shared::totalMem - memActive - memWire; if (show_swap) { int total = uvmexp.swpages * Shared::pageSize; mem.stats.at("swap_total") = total; int swapped = uvmexp.swpgonly * Shared::pageSize; mem.stats.at("swap_used") = swapped; mem.stats.at("swap_free") = total - swapped; } if (show_swap and mem.stats.at("swap_total") > 0) { for (const auto &name : swap_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / mem.stats.at("swap_total"))); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } has_swap = true; } else has_swap = false; //? Calculate percentages for (const auto &name : mem_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / Shared::totalMem)); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } if (show_disks) { std::unordered_map mapping; // keep mapping from device -> mountpoint, since IOKit doesn't give us the mountpoint double uptime = system_uptime(); auto &disks_filter = Config::getS("disks_filter"); bool filter_exclude = false; // auto only_physical = Config::getB("only_physical"); auto &disks = mem.disks; vector filter; if (not disks_filter.empty()) { filter = ssplit(disks_filter); if (filter.at(0).starts_with("exclude=")) { filter_exclude = true; filter.at(0) = filter.at(0).substr(8); } } struct statfs *stfs; int count = getmntinfo(&stfs, MNT_WAIT); vector found; found.reserve(last_found.size()); for (int i = 0; i < count; i++) { auto fstype = string(stfs[i].f_fstypename); if (fstype == "autofs" || fstype == "devfs" || fstype == "linprocfs" || fstype == "procfs" || fstype == "tmpfs" || fstype == "linsysfs" || fstype == "fdesckfs") { // in memory filesystems -> not useful to show continue; } std::error_code ec; string mountpoint = stfs[i].f_mntonname; string dev = stfs[i].f_mntfromname; mapping[dev] = mountpoint; //? Match filter if not empty if (not filter.empty()) { bool match = v_contains(filter, mountpoint); if ((filter_exclude and match) or (not filter_exclude and not match)) continue; } found.push_back(mountpoint); if (not disks.contains(mountpoint)) { disks[mountpoint] = disk_info{fs::canonical(dev, ec), fs::path(mountpoint).filename()}; if (disks.at(mountpoint).dev.empty()) disks.at(mountpoint).dev = dev; if (disks.at(mountpoint).name.empty()) disks.at(mountpoint).name = (mountpoint == "/" ? "root" : mountpoint); } if (not v_contains(last_found, mountpoint)) redraw = true; disks.at(mountpoint).free = stfs[i].f_bfree; disks.at(mountpoint).total = stfs[i].f_iosize; } //? Remove disks no longer mounted or filtered out if (swap_disk and has_swap) found.push_back("swap"); for (auto it = disks.begin(); it != disks.end();) { if (not v_contains(found, it->first)) it = disks.erase(it); else it++; } if (found.size() != last_found.size()) redraw = true; last_found = std::move(found); //? Get disk/partition stats for (auto &[mountpoint, disk] : disks) { if (std::error_code ec; not fs::exists(mountpoint, ec)) continue; struct statvfs vfs; if (statvfs(mountpoint.c_str(), &vfs) < 0) { Logger::warning("Failed to get disk/partition stats with statvfs() for: " + mountpoint); continue; } disk.total = vfs.f_blocks * vfs.f_frsize; disk.free = vfs.f_bfree * vfs.f_frsize; disk.used = disk.total - disk.free; disk.used_percent = round((double)disk.used * 100 / disk.total); disk.free_percent = 100 - disk.used_percent; } //? Setup disks order in UI and add swap if enabled mem.disks_order.clear(); if (snapped and disks.contains("/mnt")) mem.disks_order.push_back("/mnt"); else if (disks.contains("/")) mem.disks_order.push_back("/"); if (swap_disk and has_swap) { mem.disks_order.push_back("swap"); if (not disks.contains("swap")) disks["swap"] = {"", "swap"}; disks.at("swap").total = mem.stats.at("swap_total"); disks.at("swap").used = mem.stats.at("swap_used"); disks.at("swap").free = mem.stats.at("swap_free"); disks.at("swap").used_percent = mem.percent.at("swap_used").back(); disks.at("swap").free_percent = mem.percent.at("swap_free").back(); } for (const auto &name : last_found) if (not is_in(name, "/", "swap", "/dev")) mem.disks_order.push_back(name); disk_ios = 0; collect_disk(disks, mapping); old_uptime = uptime; } return mem; } } // namespace Mem namespace Net { std::unordered_map current_net; net_info empty_net = {}; vector interfaces; string selected_iface; int errors = 0; std::unordered_map graph_max = {{"download", {}}, {"upload", {}}}; std::unordered_map> max_count = {{"download", {}}, {"upload", {}}}; bool rescale = true; uint64_t timestamp = 0; //* RAII wrapper for getifaddrs class getifaddr_wrapper { struct ifaddrs *ifaddr; public: int status; getifaddr_wrapper() { status = getifaddrs(&ifaddr); } ~getifaddr_wrapper() { freeifaddrs(ifaddr); } auto operator()() -> struct ifaddrs * { return ifaddr; } }; auto collect(bool no_update) -> net_info & { auto &net = current_net; auto &config_iface = Config::getS("net_iface"); auto net_sync = Config::getB("net_sync"); auto net_auto = Config::getB("net_auto"); auto new_timestamp = time_ms(); if (not no_update and errors < 3) { //? Get interface list using getifaddrs() wrapper getifaddr_wrapper if_wrap{}; if (if_wrap.status != 0) { errors++; Logger::error("Net::collect() -> getifaddrs() failed with id " + to_string(if_wrap.status)); redraw = true; return empty_net; } int family = 0; static_assert(INET6_ADDRSTRLEN >= INET_ADDRSTRLEN); // 46 >= 16, compile-time assurance. enum { IPBUFFER_MAXSIZE = INET6_ADDRSTRLEN }; // manually using the known biggest value, guarded by the above static_assert char ip[IPBUFFER_MAXSIZE]; interfaces.clear(); string ipv4, ipv6; //? Iteration over all items in getifaddrs() list for (auto *ifa = if_wrap(); ifa != nullptr; ifa = ifa->ifa_next) { if (ifa->ifa_addr == nullptr) continue; family = ifa->ifa_addr->sa_family; const auto &iface = ifa->ifa_name; //? Update available interfaces vector and get status of interface if (not v_contains(interfaces, iface)) { interfaces.push_back(iface); net[iface].connected = (ifa->ifa_flags & IFF_RUNNING); // An interface can have more than one IP of the same family associated with it, // but we pick only the first one to show in the NET box. // Note: Interfaces without any IPv4 and IPv6 set are still valid and monitorable! net[iface].ipv4.clear(); net[iface].ipv6.clear(); } //? Get IPv4 address if (family == AF_INET) { if (net[iface].ipv4.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv4 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv4 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //? Get IPv6 address else if (family == AF_INET6) { if (net[iface].ipv6.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin6_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv6 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv6 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //else, ignoring family==AF_LINK (see man 3 getifaddrs) } std::unordered_map> ifstats; int mib[] = {CTL_NET, PF_ROUTE, 0, 0, NET_RT_IFLIST, 0}; size_t len; if (sysctl(mib, 6, nullptr, &len, nullptr, 0) < 0) { Logger::error("failed getting network interfaces"); } else { std::unique_ptr buf(new char[len]); if (sysctl(mib, 6, buf.get(), &len, nullptr, 0) < 0) { Logger::error("failed getting network interfaces"); } else { char *lim = buf.get() + len; char *next = nullptr; for (next = buf.get(); next < lim;) { struct if_msghdr *ifm = (struct if_msghdr *)next; next += ifm->ifm_msglen; struct if_data ifm_data = ifm->ifm_data; if (ifm->ifm_addrs & RTA_IFP) { struct sockaddr_dl *sdl = (struct sockaddr_dl *)(ifm + 1); char iface[32]; strncpy(iface, sdl->sdl_data, sdl->sdl_nlen); iface[sdl->sdl_nlen] = 0; ifstats[iface] = std::tuple(ifm_data.ifi_ibytes, ifm_data.ifi_obytes); } } } } //? Get total recieved and transmitted bytes + device address if no ip was found for (const auto &iface : interfaces) { for (const string dir : {"download", "upload"}) { auto &saved_stat = net.at(iface).stat.at(dir); auto &bandwidth = net.at(iface).bandwidth.at(dir); uint64_t val = dir == "download" ? std::get<0>(ifstats[iface]) : std::get<1>(ifstats[iface]); //? Update speed, total and top values if (val < saved_stat.last) { saved_stat.rollover += saved_stat.last; saved_stat.last = 0; } if (cmp_greater((unsigned long long)saved_stat.rollover + (unsigned long long)val, numeric_limits::max())) { saved_stat.rollover = 0; saved_stat.last = 0; } saved_stat.speed = round((double)(val - saved_stat.last) / ((double)(new_timestamp - timestamp) / 1000)); if (saved_stat.speed > saved_stat.top) saved_stat.top = saved_stat.speed; if (saved_stat.offset > val + saved_stat.rollover) saved_stat.offset = 0; saved_stat.total = (val + saved_stat.rollover) - saved_stat.offset; saved_stat.last = val; //? Add values to graph bandwidth.push_back(saved_stat.speed); while (cmp_greater(bandwidth.size(), width * 2)) bandwidth.pop_front(); //? Set counters for auto scaling if (net_auto and selected_iface == iface) { if (saved_stat.speed > graph_max[dir]) { ++max_count[dir][0]; if (max_count[dir][1] > 0) --max_count[dir][1]; } else if (graph_max[dir] > 10 << 10 and saved_stat.speed < graph_max[dir] / 10) { ++max_count[dir][1]; if (max_count[dir][0] > 0) --max_count[dir][0]; } } } } //? Clean up net map if needed if (net.size() > interfaces.size()) { for (auto it = net.begin(); it != net.end();) { if (not v_contains(interfaces, it->first)) it = net.erase(it); else it++; } } timestamp = new_timestamp; } //? Return empty net_info struct if no interfaces was found if (net.empty()) return empty_net; //? Find an interface to display if selected isn't set or valid if (selected_iface.empty() or not v_contains(interfaces, selected_iface)) { max_count["download"][0] = max_count["download"][1] = max_count["upload"][0] = max_count["upload"][1] = 0; redraw = true; if (net_auto) rescale = true; if (not config_iface.empty() and v_contains(interfaces, config_iface)) selected_iface = config_iface; else { //? Sort interfaces by total upload + download bytes auto sorted_interfaces = interfaces; rng::sort(sorted_interfaces, [&](const auto &a, const auto &b) { return cmp_greater(net.at(a).stat["download"].total + net.at(a).stat["upload"].total, net.at(b).stat["download"].total + net.at(b).stat["upload"].total); }); selected_iface.clear(); //? Try to set to a connected interface for (const auto &iface : sorted_interfaces) { if (net.at(iface).connected) selected_iface = iface; break; } //? If no interface is connected set to first available if (selected_iface.empty() and not sorted_interfaces.empty()) selected_iface = sorted_interfaces.at(0); else if (sorted_interfaces.empty()) return empty_net; } } //? Calculate max scale for graphs if needed if (net_auto) { bool sync = false; for (const auto &dir : {"download", "upload"}) { for (const auto &sel : {0, 1}) { if (rescale or max_count[dir][sel] >= 5) { const long long avg_speed = (net[selected_iface].bandwidth[dir].size() > 5 ? std::accumulate(net.at(selected_iface).bandwidth.at(dir).rbegin(), net.at(selected_iface).bandwidth.at(dir).rbegin() + 5, 0ll) / 5 : net[selected_iface].stat[dir].speed); graph_max[dir] = max(uint64_t(avg_speed * (sel == 0 ? 1.3 : 3.0)), (uint64_t)10 << 10); max_count[dir][0] = max_count[dir][1] = 0; redraw = true; if (net_sync) sync = true; break; } } //? Sync download/upload graphs if enabled if (sync) { const auto other = (string(dir) == "upload" ? "download" : "upload"); graph_max[other] = graph_max[dir]; max_count[other][0] = max_count[other][1] = 0; break; } } } rescale = false; return net.at(selected_iface); } } // namespace Net namespace Proc { vector current_procs; std::unordered_map uid_user; string current_sort; string current_filter; bool current_rev = false; fs::file_time_type passwd_time; uint64_t cputimes; int collapse = -1, expand = -1; uint64_t old_cputimes = 0; atomic numpids = 0; int filter_found = 0; detail_container detailed; string get_status(char s) { if (s & SRUN) return "Running"; if (s & SSLEEP) return "Sleeping"; if (s & SIDL) return "Idle"; if (s & SSTOP) return "Stopped"; if (s & SZOMB) return "Zombie"; return "Unknown"; } //* Get detailed info for selected process void _collect_details(const size_t pid, vector &procs) { if (pid != detailed.last_pid) { detailed = {}; detailed.last_pid = pid; detailed.skip_smaps = not Config::getB("proc_info_smaps"); } //? Copy proc_info for process from proc vector auto p_info = rng::find(procs, pid, &proc_info::pid); detailed.entry = *p_info; //? Update cpu percent deque for process cpu graph if (not Config::getB("proc_per_core")) detailed.entry.cpu_p *= Shared::coreCount; detailed.cpu_percent.push_back(clamp((long long)round(detailed.entry.cpu_p), 0ll, 100ll)); while (cmp_greater(detailed.cpu_percent.size(), width)) detailed.cpu_percent.pop_front(); //? Process runtime : current time - start time (both in unix time - seconds since epoch) struct timeval currentTime; gettimeofday(¤tTime, nullptr); detailed.elapsed = sec_to_dhms(currentTime.tv_sec - detailed.entry.cpu_s); // only interested in second granularity, so ignoring tc_usec if (detailed.elapsed.size() > 8) detailed.elapsed.resize(detailed.elapsed.size() - 3); //? Get parent process name if (detailed.parent.empty()) { auto p_entry = rng::find(procs, detailed.entry.ppid, &proc_info::pid); if (p_entry != procs.end()) detailed.parent = p_entry->name; } //? Expand process status from single char to explanative string detailed.status = get_status(detailed.entry.state); detailed.mem_bytes.push_back(detailed.entry.mem); detailed.memory = floating_humanizer(detailed.entry.mem); if (detailed.first_mem == -1 or detailed.first_mem < detailed.mem_bytes.back() / 2 or detailed.first_mem > detailed.mem_bytes.back() * 4) { detailed.first_mem = min((uint64_t)detailed.mem_bytes.back() * 2, Mem::get_totalMem()); redraw = true; } while (cmp_greater(detailed.mem_bytes.size(), width)) detailed.mem_bytes.pop_front(); } //* Collects and sorts process information from /proc auto collect(bool no_update) -> vector & { const auto &sorting = Config::getS("proc_sorting"); auto reverse = Config::getB("proc_reversed"); const auto &filter = Config::getS("proc_filter"); auto per_core = Config::getB("proc_per_core"); auto tree = Config::getB("proc_tree"); auto show_detailed = Config::getB("show_detailed"); const size_t detailed_pid = Config::getI("detailed_pid"); bool should_filter = current_filter != filter; if (should_filter) current_filter = filter; bool sorted_change = (sorting != current_sort or reverse != current_rev or should_filter); if (sorted_change) { current_sort = sorting; current_rev = reverse; } const int cmult = (per_core) ? Shared::coreCount : 1; bool got_detailed = false; static vector found; //* Use pids from last update if only changing filter, sorting or tree options if (no_update and not current_procs.empty()) { if (show_detailed and detailed_pid != detailed.last_pid) _collect_details(detailed_pid, current_procs); } else { //* ---------------------------------------------Collection start---------------------------------------------- should_filter = true; found.clear(); struct timeval currentTime; gettimeofday(¤tTime, nullptr); const double timeNow = currentTime.tv_sec + (currentTime.tv_usec / 1'000'000); int count = 0; char buf[_POSIX2_LINE_MAX]; Shared::kvm_openfiles_wrapper kd(nullptr, nullptr, nullptr, KVM_NO_FILES, buf); const struct kinfo_proc* kprocs = kvm_getprocs(kd(), KERN_PROC_ALL, 0, sizeof(struct kinfo_proc), &count); for (int i = 0; i < count; i++) { const struct kinfo_proc* kproc = &kprocs[i]; const size_t pid = (size_t)kproc->p_pid; if (pid < 1) continue; found.push_back(pid); //? Check if pid already exists in current_procs bool no_cache = false; auto find_old = rng::find(current_procs, pid, &proc_info::pid); if (find_old == current_procs.end()) { current_procs.push_back({pid}); find_old = current_procs.end() - 1; no_cache = true; } auto &new_proc = *find_old; //? Get program name, command, username, parent pid, nice and status if (no_cache) { if (string(kproc->p_comm) == "idle"s) { current_procs.pop_back(); found.pop_back(); continue; } new_proc.name = kproc->p_comm; char** argv = kvm_getargv(kd(), kproc, 0); if (argv) { for (int i = 0; argv[i] and cmp_less(new_proc.cmd.size(), 1000); i++) { new_proc.cmd += argv[i] + " "s; } if (not new_proc.cmd.empty()) new_proc.cmd.pop_back(); } if (new_proc.cmd.empty()) new_proc.cmd = new_proc.name; if (new_proc.cmd.size() > 1000) { new_proc.cmd.resize(1000); new_proc.cmd.shrink_to_fit(); } new_proc.ppid = kproc->p_ppid; new_proc.cpu_s = round(kproc->p_ustart_sec); struct passwd *pwd = getpwuid(kproc->p_uid); if (pwd) new_proc.user = pwd->pw_name; } new_proc.p_nice = kproc->p_nice; new_proc.state = kproc->p_stat; int cpu_t = 0; cpu_t = kproc->p_uctime_usec * 1'000'000 + kproc->p_uctime_sec; new_proc.mem = kproc->p_vm_rssize * Shared::pageSize; new_proc.threads = 1; // can't seem to find this in kinfo_proc //? Process cpu usage since last update new_proc.cpu_p = clamp((100.0 * kproc->p_pctcpu / Shared::kfscale) * cmult, 0.0, 100.0 * Shared::coreCount); //? Process cumulative cpu usage since process start new_proc.cpu_c = (double)(cpu_t * Shared::clkTck / 1'000'000) / max(1.0, timeNow - new_proc.cpu_s); //? Update cached value with latest cpu times new_proc.cpu_t = cpu_t; if (show_detailed and not got_detailed and new_proc.pid == detailed_pid) { got_detailed = true; } } //? Clear dead processes from current_procs auto eraser = rng::remove_if(current_procs, [&](const auto &element) { return not v_contains(found, element.pid); }); current_procs.erase(eraser.begin(), eraser.end()); //? Update the details info box for process if active if (show_detailed and got_detailed) { _collect_details(detailed_pid, current_procs); } else if (show_detailed and not got_detailed and detailed.status != "Dead") { detailed.status = "Dead"; redraw = true; } old_cputimes = cputimes; } //* ---------------------------------------------Collection done----------------------------------------------- //* Match filter if defined if (should_filter) { filter_found = 0; for (auto& p : current_procs) { if (not tree and not filter.empty()) { if (not s_contains_ic(to_string(p.pid), filter) and not s_contains_ic(p.name, filter) and not s_contains_ic(p.cmd, filter) and not s_contains_ic(p.user, filter)) { p.filtered = true; filter_found++; } else { p.filtered = false; } } else { p.filtered = false; } } } //* Sort processes if (sorted_change or not no_update) { proc_sorter(current_procs, sorting, reverse, tree); } //* Generate tree view if enabled if (tree and (not no_update or should_filter or sorted_change)) { bool locate_selection = false; if (auto find_pid = (collapse != -1 ? collapse : expand); find_pid != -1) { auto collapser = rng::find(current_procs, find_pid, &proc_info::pid); if (collapser != current_procs.end()) { if (collapse == expand) { collapser->collapsed = not collapser->collapsed; } else if (collapse > -1) { collapser->collapsed = true; } else if (expand > -1) { collapser->collapsed = false; } if (Config::ints.at("proc_selected") > 0) locate_selection = true; } collapse = expand = -1; } if (should_filter or not filter.empty()) filter_found = 0; vector tree_procs; tree_procs.reserve(current_procs.size()); for (auto& p : current_procs) { if (not v_contains(found, p.ppid)) p.ppid = 0; } //? Stable sort to retain selected sorting among processes with the same parent rng::stable_sort(current_procs, rng::less{}, & proc_info::ppid); //? Start recursive iteration over processes with the lowest shared parent pids for (auto& p : rng::equal_range(current_procs, current_procs.at(0).ppid, rng::less{}, &proc_info::ppid)) { _tree_gen(p, current_procs, tree_procs, 0, false, filter, false, no_update, should_filter); } //? Recursive sort over tree structure to account for collapsed processes in the tree int index = 0; tree_sort(tree_procs, sorting, reverse, index, current_procs.size()); //? Add tree begin symbol to first item if childless if (tree_procs.front().children.empty()) tree_procs.front().entry.get().prefix.replace(tree_procs.front().entry.get().prefix.size() - 8, 8, " ┌─ "); //? Add tree terminator symbol to last item if childless if (tree_procs.back().children.empty()) tree_procs.back().entry.get().prefix.replace(tree_procs.back().entry.get().prefix.size() - 8, 8, " └─ "); //? Final sort based on tree index rng::sort(current_procs, rng::less{}, & proc_info::tree_index); //? Move current selection/view to the selected process when collapsing/expanding in the tree if (locate_selection) { int loc = rng::find(current_procs, Proc::selected_pid, &proc_info::pid)->tree_index; if (Config::ints.at("proc_start") >= loc or Config::ints.at("proc_start") <= loc - Proc::select_max) Config::ints.at("proc_start") = max(0, loc - 1); Config::ints.at("proc_selected") = loc - Config::ints.at("proc_start") + 1; } } numpids = (int)current_procs.size() - filter_found; return current_procs; } } // namespace Proc namespace Tools { double system_uptime() { struct timeval ts, currTime; std::size_t len = sizeof(ts); int mib[2] = {CTL_KERN, KERN_BOOTTIME}; if (sysctl(mib, 2, &ts, &len, nullptr, 0) != -1) { gettimeofday(&currTime, nullptr); return currTime.tv_sec - ts.tv_sec; } return 0.0; } } // namespace Tools btop-1.3.0/src/openbsd/internal.h000066400000000000000000000165141454653170500167060ustar00rootroot00000000000000/* * Copyright (c) 2019-2021 Brian Callahan * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ struct sysctls { const char *name; int mib0; int mib1; int mib2; } sysctlnames[] = { { "hw.machine", CTL_HW, HW_MACHINE, 0 }, { "hw.model", CTL_HW, HW_MODEL, 0 }, { "hw.ncpu", CTL_HW, HW_NCPU, 0 }, { "hw.byteorder", CTL_HW, HW_BYTEORDER, 0 }, { "hw.pagesize", CTL_HW, HW_PAGESIZE, 0 }, { "hw.disknames", CTL_HW, HW_DISKNAMES, 0 }, { "hw.diskcount", CTL_HW, HW_DISKCOUNT, 0 }, { "hw.sensors", CTL_HW, HW_SENSORS, 0 }, { "hw.model", CTL_HW, HW_MODEL, 0 }, { "hw.ncpu", CTL_HW, HW_NCPU, 0 }, { "hw.byteorder", CTL_HW, HW_BYTEORDER, 0 }, { "hw.pagesize", CTL_HW, HW_PAGESIZE, 0 }, { "hw.disknames", CTL_HW, HW_DISKNAMES, 0 }, { "hw.diskcount", CTL_HW, HW_DISKCOUNT, 0 }, { "hw.sensors", CTL_HW, HW_SENSORS, 0 }, { "hw.cpuspeed", CTL_HW, HW_CPUSPEED, 0 }, { "hw.setperf", CTL_HW, HW_SETPERF, 0 }, { "hw.vendor", CTL_HW, HW_VENDOR, 0 }, { "hw.product", CTL_HW, HW_PRODUCT, 0 }, { "hw.serialno", CTL_HW, HW_SERIALNO, 0 }, { "hw.uuid", CTL_HW, HW_UUID, 0 }, { "hw.physmem", CTL_HW, HW_PHYSMEM64, 0 }, { "hw.usermem", CTL_HW, HW_USERMEM64, 0 }, { "hw.ncpufound", CTL_HW, HW_NCPUFOUND, 0 }, { "hw.allowpowerdown", CTL_HW, HW_ALLOWPOWERDOWN, 0 }, { "hw.perfpolicy", CTL_HW, HW_PERFPOLICY, 0 }, { "hw.smt", CTL_HW, HW_SMT, 0 }, { "hw.ncpuonline", CTL_HW, HW_NCPUONLINE, 0 }, { "hw.cpuspeed", CTL_HW, HW_CPUSPEED, 0 }, { "hw.setperf", CTL_HW, HW_SETPERF, 0 }, { "hw.vendor", CTL_HW, HW_VENDOR, 0 }, { "hw.product", CTL_HW, HW_PRODUCT, 0 }, { "hw.serialno", CTL_HW, HW_SERIALNO, 0 }, { "hw.uuid", CTL_HW, HW_UUID, 0 }, { "hw.physmem", CTL_HW, HW_PHYSMEM64, 0 }, { "hw.usermem", CTL_HW, HW_USERMEM64, 0 }, { "hw.ncpufound", CTL_HW, HW_NCPUFOUND, 0 }, { "hw.allowpowerdown", CTL_HW, HW_ALLOWPOWERDOWN, 0 }, { "hw.perfpolicy", CTL_HW, HW_PERFPOLICY, 0 }, { "hw.smt", CTL_HW, HW_SMT, 0 }, { "hw.ncpuonline", CTL_HW, HW_NCPUONLINE, 0 }, { "kern.ostype", CTL_KERN, KERN_OSTYPE, 0 }, { "kern.osrelease", CTL_KERN, KERN_OSRELEASE, 0 }, { "kern.osrevision", CTL_KERN, KERN_OSREV, 0 }, { "kern.version", CTL_KERN, KERN_VERSION, 0 }, { "kern.maxvnodes", CTL_KERN, KERN_MAXVNODES, 0 }, { "kern.maxproc", CTL_KERN, KERN_MAXPROC, 0 }, { "kern.maxfiles", CTL_KERN, KERN_MAXFILES, 0 }, { "kern.argmax", CTL_KERN, KERN_ARGMAX, 0 }, { "kern.securelevel", CTL_KERN, KERN_SECURELVL, 0 }, { "kern.hostname", CTL_KERN, KERN_HOSTNAME, 0 }, { "kern.hostid", CTL_KERN, KERN_HOSTID, 0 }, { "kern.clockrate", CTL_KERN, KERN_CLOCKRATE, 0 }, { "kern.profiling", CTL_KERN, KERN_PROF, 0 }, { "kern.posix1version", CTL_KERN, KERN_POSIX1, 0 }, { "kern.ngroups", CTL_KERN, KERN_NGROUPS, 0 }, { "kern.job_control", CTL_KERN, KERN_JOB_CONTROL, 0 }, { "kern.saved_ids", CTL_KERN, KERN_SAVED_IDS, 0 }, { "kern.boottime", CTL_KERN, KERN_BOOTTIME, 0 }, { "kern.domainname", CTL_KERN, KERN_DOMAINNAME, 0 }, { "kern.maxpartitions", CTL_KERN, KERN_MAXPARTITIONS, 0 }, { "kern.rawpartition", CTL_KERN, KERN_RAWPARTITION, 0 }, { "kern.maxthread", CTL_KERN, KERN_MAXTHREAD, 0 }, { "kern.nthreads", CTL_KERN, KERN_NTHREADS, 0 }, { "kern.osversion", CTL_KERN, KERN_OSVERSION, 0 }, { "kern.somaxconn", CTL_KERN, KERN_SOMAXCONN, 0 }, { "kern.sominconn", CTL_KERN, KERN_SOMINCONN, 0 }, { "kern.nosuidcoredump", CTL_KERN, KERN_NOSUIDCOREDUMP, 0 }, { "kern.fsync", CTL_KERN, KERN_FSYNC, 0 }, { "kern.sysvmsg", CTL_KERN, KERN_SYSVMSG, 0 }, { "kern.sysvsem", CTL_KERN, KERN_SYSVSEM, 0 }, { "kern.sysvshm", CTL_KERN, KERN_SYSVSHM, 0 }, { "kern.msgbufsize", CTL_KERN, KERN_MSGBUFSIZE, 0 }, { "kern.malloc", CTL_KERN, KERN_MALLOCSTATS, 0 }, { "kern.cp_time", CTL_KERN, KERN_CPTIME, 0 }, { "kern.nchstats", CTL_KERN, KERN_NCHSTATS, 0 }, { "kern.forkstat", CTL_KERN, KERN_FORKSTAT, 0 }, { "kern.tty", CTL_KERN, KERN_TTY, 0 }, { "kern.ccpu", CTL_KERN, KERN_CCPU, 0 }, { "kern.fscale", CTL_KERN, KERN_FSCALE, 0 }, { "kern.nprocs", CTL_KERN, KERN_NPROCS, 0 }, { "kern.msgbuf", CTL_KERN, KERN_MSGBUF, 0 }, { "kern.pool", CTL_KERN, KERN_POOL, 0 }, { "kern.stackgap_random", CTL_KERN, KERN_STACKGAPRANDOM, 0 }, { "kern.sysvipc_info", CTL_KERN, KERN_SYSVIPC_INFO, 0 }, { "kern.allowkmem", CTL_KERN, KERN_ALLOWKMEM, 0 }, { "kern.witnesswatch", CTL_KERN, KERN_WITNESSWATCH, 0 }, { "kern.splassert", CTL_KERN, KERN_SPLASSERT, 0 }, { "kern.procargs", CTL_KERN, KERN_PROC_ARGS, 0 }, { "kern.nfiles", CTL_KERN, KERN_NFILES, 0 }, { "kern.ttycount", CTL_KERN, KERN_TTYCOUNT, 0 }, { "kern.numvnodes", CTL_KERN, KERN_NUMVNODES, 0 }, { "kern.mbstat", CTL_KERN, KERN_MBSTAT, 0 }, { "kern.witness", CTL_KERN, KERN_WITNESS, 0 }, { "kern.seminfo", CTL_KERN, KERN_SEMINFO, 0 }, { "kern.shminfo", CTL_KERN, KERN_SHMINFO, 0 }, { "kern.intrcnt", CTL_KERN, KERN_INTRCNT, 0 }, { "kern.watchdog", CTL_KERN, KERN_WATCHDOG, 0 }, { "kern.proc", CTL_KERN, KERN_PROC, 0 }, { "kern.maxclusters", CTL_KERN, KERN_MAXCLUSTERS, 0 }, { "kern.evcount", CTL_KERN, KERN_EVCOUNT, 0 }, { "kern.timecounter", CTL_KERN, KERN_TIMECOUNTER, 0 }, { "kern.maxlocksperuid", CTL_KERN, KERN_MAXLOCKSPERUID, 0 }, { "kern.cp_time2", CTL_KERN, KERN_CPTIME2, 0 }, { "kern.bufcachepercent", CTL_KERN, KERN_CACHEPCT, 0 }, { "kern.file", CTL_KERN, KERN_FILE, 0 }, { "kern.wxabort", CTL_KERN, KERN_WXABORT, 0 }, { "kern.consdev", CTL_KERN, KERN_CONSDEV, 0 }, { "kern.netlivelocks", CTL_KERN, KERN_NETLIVELOCKS, 0 }, { "kern.pool_debug", CTL_KERN, KERN_POOL_DEBUG, 0 }, { "kern.proc_cwd", CTL_KERN, KERN_PROC_CWD, 0 }, { "kern.proc_nobroadcastkill", CTL_KERN, KERN_PROC_NOBROADCASTKILL, 0 }, { "kern.proc_vmap", CTL_KERN, KERN_PROC_VMMAP, 0 }, { "kern.global_ptrace", CTL_KERN, KERN_GLOBAL_PTRACE, 0 }, { "kern.consbufsize", CTL_KERN, KERN_CONSBUFSIZE, 0 }, { "kern.consbuf", CTL_KERN, KERN_CONSBUF, 0 }, { "kern.audio", CTL_KERN, KERN_AUDIO, 0 }, { "kern.cpustats", CTL_KERN, KERN_CPUSTATS, 0 }, { "kern.pfstatus", CTL_KERN, KERN_PFSTATUS, 0 }, { "kern.timeout_stats", CTL_KERN, KERN_TIMEOUT_STATS, 0 }, { "kern.utc_offset", CTL_KERN, KERN_UTC_OFFSET, 0 }, { "vm.vmmeter", CTL_VM, VM_METER, 0 }, { "vm.loadavg", CTL_VM, VM_LOADAVG, 0 }, { "vm.psstrings", CTL_VM, VM_PSSTRINGS, 0 }, { "vm.uvmexp", CTL_VM, VM_UVMEXP, 0 }, { "vm.swapencrypt", CTL_VM, VM_SWAPENCRYPT, 0 }, { "vm.nkmempages", CTL_VM, VM_NKMEMPAGES, 0 }, { "vm.anonmin", CTL_VM, VM_ANONMIN, 0 }, { "vm.vtextmin", CTL_VM, VM_VTEXTMIN, 0 }, { "vm.vnodemin", CTL_VM, VM_VNODEMIN, 0 }, { "vm.maxslp", CTL_VM, VM_MAXSLP, 0 }, { "vm.uspace", CTL_VM, VM_USPACE, 0 }, { "vm.malloc_conf", CTL_VM, VM_MALLOC_CONF, 0 }, { NULL, 0, 0, 0 }, }; btop-1.3.0/src/openbsd/sysctlbyname.cpp000066400000000000000000000025501454653170500201350ustar00rootroot00000000000000/* * Copyright (c) 2019-2021 Brian Callahan * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include #include #include #include #include "internal.h" #include "../btop_tools.hpp" int sysctlbyname(const char *name, void *oldp, size_t *oldlenp, void *newp, size_t newlen) { int i, mib[2]; for (i = 0; i < 132; i++) { // for (i = 0; i < sizeof(sysctlnames) / sizeof(sysctlnames[0]); i++) { if (!strcmp(name, sysctlnames[i].name)) { mib[0] = sysctlnames[i].mib0; mib[1] = sysctlnames[i].mib1; return sysctl(mib, 2, oldp, oldlenp, newp, newlen); } } errno = ENOENT; return (-1); } btop-1.3.0/src/openbsd/sysctlbyname.h000066400000000000000000000016251454653170500176040ustar00rootroot00000000000000/* * Copyright (c) 2019 Brian Callahan * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include extern int sysctlbyname(const char *, void *, size_t *, void *, size_t); btop-1.3.0/src/osx/000077500000000000000000000000001454653170500140715ustar00rootroot00000000000000btop-1.3.0/src/osx/btop_collect.cpp000066400000000000000000001374151454653170500172610ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include #include #include #include #include #include #include #include #include #include #include #include // BUGS // If both and are being included, must be // included before . // from: https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man3/getifaddrs.3.html #include #include #include #include #include #include #include #include #include #include #include // for inet_ntop #include #include #include #include #include #include #include #include #include #include "../btop_config.hpp" #include "../btop_shared.hpp" #include "../btop_tools.hpp" #if __MAC_OS_X_VERSION_MIN_REQUIRED > 101504 #include "sensors.hpp" #endif #include "smc.hpp" using std::clamp, std::string_literals::operator""s, std::cmp_equal, std::cmp_less, std::cmp_greater; using std::ifstream, std::numeric_limits, std::streamsize, std::round, std::max, std::min; namespace fs = std::filesystem; namespace rng = std::ranges; using namespace Tools; //? --------------------------------------------------- FUNCTIONS ----------------------------------------------------- namespace Cpu { vector core_old_totals; vector core_old_idles; vector available_fields = {"Auto", "total"}; vector available_sensors = {"Auto"}; cpu_info current_cpu; bool got_sensors = false, cpu_temp_only = false; int core_offset = 0; //* Populate found_sensors map bool get_sensors(); //* Get current cpu clock speed string get_cpuHz(); //* Search /proc/cpuinfo for a cpu name string get_cpuName(); struct Sensor { fs::path path; string label; int64_t temp = 0; int64_t high = 0; int64_t crit = 0; }; string cpu_sensor; vector core_sensors; std::unordered_map core_mapping; } // namespace Cpu namespace Mem { double old_uptime; } class MachProcessorInfo { public: processor_info_array_t info_array; mach_msg_type_number_t info_count; MachProcessorInfo() {} virtual ~MachProcessorInfo() {vm_deallocate(mach_task_self(), (vm_address_t)info_array, (vm_size_t)sizeof(processor_info_array_t) * info_count);} }; namespace Shared { fs::path passwd_path; uint64_t totalMem; long pageSize, coreCount, clkTck, physicalCoreCount, arg_max; double machTck; int totalMem_len; void init() { //? Shared global variables init coreCount = sysconf(_SC_NPROCESSORS_ONLN); // this returns all logical cores (threads) if (coreCount < 1) { coreCount = 1; Logger::warning("Could not determine number of cores, defaulting to 1."); } size_t physicalCoreCountSize = sizeof(physicalCoreCount); if (sysctlbyname("hw.physicalcpu", &physicalCoreCount, &physicalCoreCountSize, nullptr, 0) < 0) { Logger::error("Could not get physical core count"); } pageSize = sysconf(_SC_PAGE_SIZE); if (pageSize <= 0) { pageSize = 4096; Logger::warning("Could not get system page size. Defaulting to 4096, processes memory usage might be incorrect."); } mach_timebase_info_data_t convf; if (mach_timebase_info(&convf) == KERN_SUCCESS) { machTck = convf.numer / convf.denom; } else { Logger::warning("Could not get mach clock tick conversion factor. Defaulting to 100, processes cpu usage might be incorrect."); machTck = 100; } clkTck = sysconf(_SC_CLK_TCK); if (clkTck <= 0) { clkTck = 100; Logger::warning("Could not get system clock ticks per second. Defaulting to 100, processes cpu usage might be incorrect."); } int64_t memsize = 0; size_t size = sizeof(memsize); if (sysctlbyname("hw.memsize", &memsize, &size, nullptr, 0) < 0) { Logger::warning("Could not get memory size"); } totalMem = memsize; //* Get maximum length of process arguments arg_max = sysconf(_SC_ARG_MAX); //? Init for namespace Cpu Cpu::current_cpu.core_percent.insert(Cpu::current_cpu.core_percent.begin(), Shared::coreCount, {}); Cpu::current_cpu.temp.insert(Cpu::current_cpu.temp.begin(), Shared::coreCount + 1, {}); Cpu::core_old_totals.insert(Cpu::core_old_totals.begin(), Shared::coreCount, 0); Cpu::core_old_idles.insert(Cpu::core_old_idles.begin(), Shared::coreCount, 0); Cpu::collect(); for (auto &[field, vec] : Cpu::current_cpu.cpu_percent) { if (not vec.empty() and not v_contains(Cpu::available_fields, field)) Cpu::available_fields.push_back(field); } Cpu::cpuName = Cpu::get_cpuName(); Cpu::got_sensors = Cpu::get_sensors(); Cpu::core_mapping = Cpu::get_core_mapping(); //? Init for namespace Mem Mem::old_uptime = system_uptime(); Mem::collect(); } } // namespace Shared namespace Cpu { string cpuName; string cpuHz; bool has_battery = true; bool macM1 = false; tuple current_bat; const array time_names = {"user", "nice", "system", "idle"}; std::unordered_map cpu_old = { {"totals", 0}, {"idles", 0}, {"user", 0}, {"nice", 0}, {"system", 0}, {"idle", 0} }; string get_cpuName() { string name; char buffer[1024]; size_t size = sizeof(buffer); if (sysctlbyname("machdep.cpu.brand_string", &buffer, &size, nullptr, 0) < 0) { Logger::error("Failed to get CPU name"); return name; } name = string(buffer); auto name_vec = ssplit(name); if ((s_contains(name, "Xeon"s) or v_contains(name_vec, "Duo"s)) and v_contains(name_vec, "CPU"s)) { auto cpu_pos = v_index(name_vec, "CPU"s); if (cpu_pos < name_vec.size() - 1 and not name_vec.at(cpu_pos + 1).ends_with(')')) name = name_vec.at(cpu_pos + 1); else name.clear(); } else if (v_contains(name_vec, "Ryzen"s)) { auto ryz_pos = v_index(name_vec, "Ryzen"s); name = "Ryzen" + (ryz_pos < name_vec.size() - 1 ? ' ' + name_vec.at(ryz_pos + 1) : "") + (ryz_pos < name_vec.size() - 2 ? ' ' + name_vec.at(ryz_pos + 2) : ""); } else if (s_contains(name, "Intel"s) and v_contains(name_vec, "CPU"s)) { auto cpu_pos = v_index(name_vec, "CPU"s); if (cpu_pos < name_vec.size() - 1 and not name_vec.at(cpu_pos + 1).ends_with(')') and name_vec.at(cpu_pos + 1) != "@") name = name_vec.at(cpu_pos + 1); else name.clear(); } else name.clear(); if (name.empty() and not name_vec.empty()) { for (const auto &n : name_vec) { if (n == "@") break; name += n + ' '; } name.pop_back(); for (const auto& replace : {"Processor", "CPU", "(R)", "(TM)", "Intel", "AMD", "Apple", "Core"}) { name = s_replace(name, replace, ""); name = s_replace(name, " ", " "); } name = trim(name); } return name; } bool get_sensors() { Logger::debug("get_sensors(): show_coretemp=" + std::to_string(Config::getB("show_coretemp")) + " check_temp=" + std::to_string(Config::getB("check_temp"))); got_sensors = false; if (Config::getB("show_coretemp") and Config::getB("check_temp")) { #if __MAC_OS_X_VERSION_MIN_REQUIRED > 101504 ThermalSensors sensors; if (sensors.getSensors() > 0) { Logger::debug("M1 sensors found"); got_sensors = true; cpu_temp_only = true; macM1 = true; } else { #endif // try SMC (intel) Logger::debug("checking intel"); SMCConnection smcCon; try { long long t = smcCon.getTemp(-1); // check if we have package T if (t > -1) { Logger::debug("intel sensors found"); got_sensors = true; t = smcCon.getTemp(0); if (t == -1) { // for some macs the core offset is 1 - check if we get a sane value with 1 if (smcCon.getTemp(1) > -1) { Logger::debug("intel sensors with offset 1"); core_offset = 1; } } } else { Logger::debug("no intel sensors found"); got_sensors = false; } } catch (std::runtime_error &e) { // ignore, we don't have temp got_sensors = false; } #if __MAC_OS_X_VERSION_MIN_REQUIRED > 101504 } #endif } return got_sensors; } void update_sensors() { current_cpu.temp_max = 95; // we have no idea how to get the critical temp try { if (macM1) { #if __MAC_OS_X_VERSION_MIN_REQUIRED > 101504 ThermalSensors sensors; current_cpu.temp.at(0).push_back(sensors.getSensors()); if (current_cpu.temp.at(0).size() > 20) current_cpu.temp.at(0).pop_front(); #endif } else { SMCConnection smcCon; int threadsPerCore = Shared::coreCount / Shared::physicalCoreCount; long long packageT = smcCon.getTemp(-1); // -1 returns package T current_cpu.temp.at(0).push_back(packageT); for (int core = 0; core < Shared::coreCount; core++) { long long temp = smcCon.getTemp((core / threadsPerCore) + core_offset); // same temp for all threads of same physical core if (cmp_less(core + 1, current_cpu.temp.size())) { current_cpu.temp.at(core + 1).push_back(temp); if (current_cpu.temp.at(core + 1).size() > 20) current_cpu.temp.at(core + 1).pop_front(); } } } } catch (std::runtime_error &e) { got_sensors = false; Logger::error("failed getting CPU temp"); } } string get_cpuHz() { unsigned int freq = 1; size_t size = sizeof(freq); int mib[] = {CTL_HW, HW_CPU_FREQ}; if (sysctl(mib, 2, &freq, &size, nullptr, 0) < 0) { // this fails on Apple Silicon macs. Apparently you're not allowed to know return ""; } return std::to_string(freq / 1000.0 / 1000.0 / 1000.0).substr(0, 3); } auto get_core_mapping() -> std::unordered_map { std::unordered_map core_map; if (cpu_temp_only) return core_map; natural_t cpu_count; natural_t i; MachProcessorInfo info {}; kern_return_t error; error = host_processor_info(mach_host_self(), PROCESSOR_CPU_LOAD_INFO, &cpu_count, &info.info_array, &info.info_count); if (error != KERN_SUCCESS) { Logger::error("Failed getting CPU info"); return core_map; } for (i = 0; i < cpu_count; i++) { core_map[i] = i; } //? If core mapping from cpuinfo was incomplete try to guess remainder, if missing completely, map 0-0 1-1 2-2 etc. if (cmp_less(core_map.size(), Shared::coreCount)) { if (Shared::coreCount % 2 == 0 and (long) core_map.size() == Shared::coreCount / 2) { for (int i = 0, n = 0; i < Shared::coreCount / 2; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[Shared::coreCount / 2 + i] = n++; } } else { core_map.clear(); for (int i = 0, n = 0; i < Shared::coreCount; i++) { if (std::cmp_greater_equal(n, core_sensors.size())) n = 0; core_map[i] = n++; } } } //? Apply user set custom mapping if any const auto &custom_map = Config::getS("cpu_core_map"); if (not custom_map.empty()) { try { for (const auto &split : ssplit(custom_map)) { const auto vals = ssplit(split, ':'); if (vals.size() != 2) continue; int change_id = std::stoi(vals.at(0)); int new_id = std::stoi(vals.at(1)); if (not core_map.contains(change_id) or cmp_greater(new_id, core_sensors.size())) continue; core_map.at(change_id) = new_id; } } catch (...) { } } return core_map; } class IOPSInfo_Wrap { CFTypeRef data; public: IOPSInfo_Wrap() { data = IOPSCopyPowerSourcesInfo(); } CFTypeRef& operator()() { return data; } ~IOPSInfo_Wrap() { CFRelease(data); } }; class IOPSList_Wrap { CFArrayRef data; public: IOPSList_Wrap(CFTypeRef cft_ref) { data = IOPSCopyPowerSourcesList(cft_ref); } CFArrayRef& operator()() { return data; } ~IOPSList_Wrap() { CFRelease(data); } }; auto get_battery() -> tuple { if (not has_battery) return {0, 0, ""}; uint32_t percent = -1; long seconds = -1; string status = "discharging"; IOPSInfo_Wrap ps_info{}; if (ps_info()) { IOPSList_Wrap one_ps_descriptor(ps_info()); if (one_ps_descriptor()) { if (CFArrayGetCount(one_ps_descriptor())) { CFDictionaryRef one_ps = IOPSGetPowerSourceDescription(ps_info(), CFArrayGetValueAtIndex(one_ps_descriptor(), 0)); has_battery = true; CFNumberRef remaining = (CFNumberRef)CFDictionaryGetValue(one_ps, CFSTR(kIOPSTimeToEmptyKey)); int32_t estimatedMinutesRemaining; if (remaining) { CFNumberGetValue(remaining, kCFNumberSInt32Type, &estimatedMinutesRemaining); seconds = estimatedMinutesRemaining * 60; } CFNumberRef charge = (CFNumberRef)CFDictionaryGetValue(one_ps, CFSTR(kIOPSCurrentCapacityKey)); if (charge) { CFNumberGetValue(charge, kCFNumberSInt32Type, &percent); } CFBooleanRef charging = (CFBooleanRef)CFDictionaryGetValue(one_ps, CFSTR(kIOPSIsChargingKey)); if (charging) { bool isCharging = CFBooleanGetValue(charging); if (isCharging) { status = "charging"; } } if (percent == 100) { status = "full"; } } else { has_battery = false; } } else { has_battery = false; } } return {percent, seconds, status}; } auto collect(bool no_update) -> cpu_info & { if (Runner::stopping or (no_update and not current_cpu.cpu_percent.at("total").empty())) return current_cpu; auto &cpu = current_cpu; if (getloadavg(cpu.load_avg.data(), cpu.load_avg.size()) < 0) { Logger::error("failed to get load averages"); } natural_t cpu_count; natural_t i; kern_return_t error; processor_cpu_load_info_data_t *cpu_load_info = nullptr; MachProcessorInfo info{}; error = host_processor_info(mach_host_self(), PROCESSOR_CPU_LOAD_INFO, &cpu_count, &info.info_array, &info.info_count); if (error != KERN_SUCCESS) { Logger::error("Failed getting CPU load info"); } cpu_load_info = (processor_cpu_load_info_data_t *)info.info_array; long long global_totals = 0; long long global_idles = 0; vector times_summed = {0, 0, 0, 0}; for (i = 0; i < cpu_count; i++) { vector times; //? 0=user, 1=nice, 2=system, 3=idle for (int x = 0; const unsigned int c_state : {CPU_STATE_USER, CPU_STATE_NICE, CPU_STATE_SYSTEM, CPU_STATE_IDLE}) { auto val = cpu_load_info[i].cpu_ticks[c_state]; times.push_back(val); times_summed.at(x++) += val; } try { //? All values const long long totals = std::accumulate(times.begin(), times.end(), 0ll); //? Idle time const long long idles = times.at(3); global_totals += totals; global_idles += idles; //? Calculate cpu total for each core if (i > Shared::coreCount) break; const long long calc_totals = max(0ll, totals - core_old_totals.at(i)); const long long calc_idles = max(0ll, idles - core_old_idles.at(i)); core_old_totals.at(i) = totals; core_old_idles.at(i) = idles; cpu.core_percent.at(i).push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph if (cpu.core_percent.at(i).size() > 40) cpu.core_percent.at(i).pop_front(); } catch (const std::exception &e) { Logger::error("Cpu::collect() : " + (string)e.what()); throw std::runtime_error("collect() : " + (string)e.what()); } } const long long calc_totals = max(1ll, global_totals - cpu_old.at("totals")); const long long calc_idles = max(1ll, global_idles - cpu_old.at("idles")); //? Populate cpu.cpu_percent with all fields from syscall for (int ii = 0; const auto &val : times_summed) { cpu.cpu_percent.at(time_names.at(ii)).push_back(clamp((long long)round((double)(val - cpu_old.at(time_names.at(ii))) * 100 / calc_totals), 0ll, 100ll)); cpu_old.at(time_names.at(ii)) = val; //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at(time_names.at(ii)).size(), width * 2)) cpu.cpu_percent.at(time_names.at(ii)).pop_front(); ii++; } cpu_old.at("totals") = global_totals; cpu_old.at("idles") = global_idles; //? Total usage of cpu cpu.cpu_percent.at("total").push_back(clamp((long long)round((double)(calc_totals - calc_idles) * 100 / calc_totals), 0ll, 100ll)); //? Reduce size if there are more values than needed for graph while (cmp_greater(cpu.cpu_percent.at("total").size(), width * 2)) cpu.cpu_percent.at("total").pop_front(); if (Config::getB("show_cpu_freq")) { auto hz = get_cpuHz(); if (hz != "") { cpuHz = hz; } } if (Config::getB("check_temp") and got_sensors) update_sensors(); if (Config::getB("show_battery") and has_battery) current_bat = get_battery(); return cpu; } } // namespace Cpu namespace Mem { bool has_swap = false; vector fstab; fs::file_time_type fstab_time; int disk_ios = 0; vector last_found; mem_info current_mem{}; uint64_t get_totalMem() { return Shared::totalMem; } int64_t getCFNumber(CFDictionaryRef dict, const void *key) { CFNumberRef ref = (CFNumberRef)CFDictionaryGetValue(dict, key); if (ref) { int64_t value; CFNumberGetValue(ref, kCFNumberSInt64Type, &value); return value; } return 0; } string getCFString(io_registry_entry_t volumeRef, CFStringRef key) { CFStringRef bsdNameRef = (CFStringRef)IORegistryEntryCreateCFProperty(volumeRef, key, kCFAllocatorDefault, 0); if (bsdNameRef) { char buf[200]; CFStringGetCString(bsdNameRef, buf, 200, kCFStringEncodingASCII); CFRelease(bsdNameRef); return string(buf); } return ""; } bool isWhole(io_registry_entry_t volumeRef) { CFBooleanRef isWhole = (CFBooleanRef)IORegistryEntryCreateCFProperty(volumeRef, CFSTR("Whole"), kCFAllocatorDefault, 0); Boolean val = CFBooleanGetValue(isWhole); CFRelease(isWhole); return bool(val); } class IOObject { public: IOObject(string name, io_object_t& obj) : name(name), object(obj) {} virtual ~IOObject() { IOObjectRelease(object); } private: string name; io_object_t &object; }; void collect_disk(std::unordered_map &disks, std::unordered_map &mapping) { io_registry_entry_t drive; io_iterator_t drive_list; mach_port_t libtop_master_port; if (IOMasterPort(bootstrap_port, &libtop_master_port)) { Logger::error("errot getting master port"); return; } /* Get the list of all drive objects. */ if (IOServiceGetMatchingServices(libtop_master_port, IOServiceMatching("IOMediaBSDClient"), &drive_list)) { Logger::error("Error in IOServiceGetMatchingServices()"); return; } auto d = IOObject("drive list", drive_list); // dummy var so it gets destroyed while ((drive = IOIteratorNext(drive_list)) != 0) { auto dr = IOObject("drive", drive); io_registry_entry_t volumeRef; IORegistryEntryGetParentEntry(drive, kIOServicePlane, &volumeRef); if (volumeRef) { if (!isWhole(volumeRef)) { string bsdName = getCFString(volumeRef, CFSTR("BSD Name")); string device = getCFString(volumeRef, CFSTR("VolGroupMntFromName")); if (!mapping.contains(device)) { device = "/dev/" + bsdName; // try again with BSD name - not all volumes seem to have VolGroupMntFromName property } if (device != "") { if (mapping.contains(device)) { string mountpoint = mapping.at(device); if (disks.contains(mountpoint)) { auto& disk = disks.at(mountpoint); CFDictionaryRef properties; IORegistryEntryCreateCFProperties(volumeRef, (CFMutableDictionaryRef *)&properties, kCFAllocatorDefault, 0); if (properties) { CFDictionaryRef statistics = (CFDictionaryRef)CFDictionaryGetValue(properties, CFSTR("Statistics")); if (statistics) { disk_ios++; int64_t readBytes = getCFNumber(statistics, CFSTR("Bytes read from block device")); if (disk.io_read.empty()) disk.io_read.push_back(0); else disk.io_read.push_back(max((int64_t)0, (readBytes - disk.old_io.at(0)))); disk.old_io.at(0) = readBytes; while (cmp_greater(disk.io_read.size(), width * 2)) disk.io_read.pop_front(); int64_t writeBytes = getCFNumber(statistics, CFSTR("Bytes written to block device")); if (disk.io_write.empty()) disk.io_write.push_back(0); else disk.io_write.push_back(max((int64_t)0, (writeBytes - disk.old_io.at(1)))); disk.old_io.at(1) = writeBytes; while (cmp_greater(disk.io_write.size(), width * 2)) disk.io_write.pop_front(); // IOKit does not give us IO times, (use IO read + IO write with 1 MiB being 100% to get some activity indication) if (disk.io_activity.empty()) disk.io_activity.push_back(0); else disk.io_activity.push_back(clamp((long)round((double)(disk.io_write.back() + disk.io_read.back()) / (1 << 20)), 0l, 100l)); while (cmp_greater(disk.io_activity.size(), width * 2)) disk.io_activity.pop_front(); } } CFRelease(properties); } } } } } } } auto collect(bool no_update) -> mem_info & { if (Runner::stopping or (no_update and not current_mem.percent.at("used").empty())) return current_mem; auto show_swap = Config::getB("show_swap"); auto show_disks = Config::getB("show_disks"); auto swap_disk = Config::getB("swap_disk"); auto &mem = current_mem; static bool snapped = (getenv("BTOP_SNAPPED") != nullptr); vm_statistics64 p; mach_msg_type_number_t info_size = HOST_VM_INFO64_COUNT; if (host_statistics64(mach_host_self(), HOST_VM_INFO64, (host_info64_t)&p, &info_size) == 0) { mem.stats.at("free") = p.free_count * Shared::pageSize; mem.stats.at("cached") = p.external_page_count * Shared::pageSize; mem.stats.at("used") = (p.active_count + p.inactive_count + p.wire_count) * Shared::pageSize; mem.stats.at("available") = Shared::totalMem - mem.stats.at("used"); } int mib[2] = {CTL_VM, VM_SWAPUSAGE}; struct xsw_usage swap; size_t len = sizeof(struct xsw_usage); if (sysctl(mib, 2, &swap, &len, nullptr, 0) == 0) { mem.stats.at("swap_total") = swap.xsu_total; mem.stats.at("swap_free") = swap.xsu_avail; mem.stats.at("swap_used") = swap.xsu_used; } if (show_swap and mem.stats.at("swap_total") > 0) { for (const auto &name : swap_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / mem.stats.at("swap_total"))); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } has_swap = true; } else has_swap = false; //? Calculate percentages for (const auto &name : mem_names) { mem.percent.at(name).push_back(round((double)mem.stats.at(name) * 100 / Shared::totalMem)); while (cmp_greater(mem.percent.at(name).size(), width * 2)) mem.percent.at(name).pop_front(); } if (show_disks) { std::unordered_map mapping; // keep mapping from device -> mountpoint, since IOKit doesn't give us the mountpoint double uptime = system_uptime(); auto &disks_filter = Config::getS("disks_filter"); bool filter_exclude = false; // auto only_physical = Config::getB("only_physical"); auto &disks = mem.disks; vector filter; if (not disks_filter.empty()) { filter = ssplit(disks_filter); if (filter.at(0).starts_with("exclude=")) { filter_exclude = true; filter.at(0) = filter.at(0).substr(8); } } struct statfs *stfs; int count = getmntinfo(&stfs, MNT_WAIT); vector found; found.reserve(last_found.size()); for (int i = 0; i < count; i++) { std::error_code ec; string mountpoint = stfs[i].f_mntonname; string dev = stfs[i].f_mntfromname; mapping[dev] = mountpoint; if (string(stfs[i].f_fstypename) == "autofs") { continue; } //? Match filter if not empty if (not filter.empty()) { bool match = v_contains(filter, mountpoint); if ((filter_exclude and match) or (not filter_exclude and not match)) continue; } found.push_back(mountpoint); if (not disks.contains(mountpoint)) { disks[mountpoint] = disk_info{fs::canonical(dev, ec), fs::path(mountpoint).filename()}; if (disks.at(mountpoint).dev.empty()) disks.at(mountpoint).dev = dev; if (disks.at(mountpoint).name.empty()) disks.at(mountpoint).name = (mountpoint == "/" ? "root" : mountpoint); } if (not v_contains(last_found, mountpoint)) redraw = true; disks.at(mountpoint).free = stfs[i].f_bfree; disks.at(mountpoint).total = stfs[i].f_iosize; } //? Remove disks no longer mounted or filtered out if (swap_disk and has_swap) found.push_back("swap"); for (auto it = disks.begin(); it != disks.end();) { if (not v_contains(found, it->first)) it = disks.erase(it); else it++; } if (found.size() != last_found.size()) redraw = true; last_found = std::move(found); //? Get disk/partition stats for (auto &[mountpoint, disk] : disks) { if (std::error_code ec; not fs::exists(mountpoint, ec)) continue; struct statvfs vfs; if (statvfs(mountpoint.c_str(), &vfs) < 0) { Logger::warning("Failed to get disk/partition stats with statvfs() for: " + mountpoint); continue; } disk.total = vfs.f_blocks * vfs.f_frsize; disk.free = vfs.f_bfree * vfs.f_frsize; disk.used = disk.total - disk.free; disk.used_percent = round((double)disk.used * 100 / disk.total); disk.free_percent = 100 - disk.used_percent; } //? Setup disks order in UI and add swap if enabled mem.disks_order.clear(); if (snapped and disks.contains("/mnt")) mem.disks_order.push_back("/mnt"); else if (disks.contains("/")) mem.disks_order.push_back("/"); if (swap_disk and has_swap) { mem.disks_order.push_back("swap"); if (not disks.contains("swap")) disks["swap"] = {"", "swap"}; disks.at("swap").total = mem.stats.at("swap_total"); disks.at("swap").used = mem.stats.at("swap_used"); disks.at("swap").free = mem.stats.at("swap_free"); disks.at("swap").used_percent = mem.percent.at("swap_used").back(); disks.at("swap").free_percent = mem.percent.at("swap_free").back(); } for (const auto &name : last_found) if (not is_in(name, "/", "swap", "/dev")) mem.disks_order.push_back(name); disk_ios = 0; collect_disk(disks, mapping); old_uptime = uptime; } return mem; } } // namespace Mem namespace Net { std::unordered_map current_net; net_info empty_net = {}; vector interfaces; string selected_iface; int errors = 0; std::unordered_map graph_max = {{"download", {}}, {"upload", {}}}; std::unordered_map> max_count = {{"download", {}}, {"upload", {}}}; bool rescale = true; uint64_t timestamp = 0; //* RAII wrapper for getifaddrs class getifaddr_wrapper { struct ifaddrs *ifaddr; public: int status; getifaddr_wrapper() { status = getifaddrs(&ifaddr); } ~getifaddr_wrapper() { freeifaddrs(ifaddr); } auto operator()() -> struct ifaddrs * { return ifaddr; } }; auto collect(bool no_update) -> net_info & { auto &net = current_net; auto &config_iface = Config::getS("net_iface"); auto net_sync = Config::getB("net_sync"); auto net_auto = Config::getB("net_auto"); auto new_timestamp = time_ms(); if (not no_update and errors < 3) { //? Get interface list using getifaddrs() wrapper getifaddr_wrapper if_wrap{}; if (if_wrap.status != 0) { errors++; Logger::error("Net::collect() -> getifaddrs() failed with id " + to_string(if_wrap.status)); redraw = true; return empty_net; } int family = 0; static_assert(INET6_ADDRSTRLEN >= INET_ADDRSTRLEN); // 46 >= 16, compile-time assurance. enum { IPBUFFER_MAXSIZE = INET6_ADDRSTRLEN }; // manually using the known biggest value, guarded by the above static_assert char ip[IPBUFFER_MAXSIZE]; interfaces.clear(); string ipv4, ipv6; //? Iteration over all items in getifaddrs() list for (auto *ifa = if_wrap(); ifa != nullptr; ifa = ifa->ifa_next) { if (ifa->ifa_addr == nullptr) continue; family = ifa->ifa_addr->sa_family; const auto &iface = ifa->ifa_name; //? Update available interfaces vector and get status of interface if (not v_contains(interfaces, iface)) { interfaces.push_back(iface); net[iface].connected = (ifa->ifa_flags & IFF_RUNNING); // An interface can have more than one IP of the same family associated with it, // but we pick only the first one to show in the NET box. // Note: Interfaces without any IPv4 and IPv6 set are still valid and monitorable! net[iface].ipv4.clear(); net[iface].ipv6.clear(); } //? Get IPv4 address if (family == AF_INET) { if (net[iface].ipv4.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv4 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv4 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } //? Get IPv6 address else if (family == AF_INET6) { if (net[iface].ipv6.empty()) { if (nullptr != inet_ntop(family, &(reinterpret_cast(ifa->ifa_addr)->sin6_addr), ip, IPBUFFER_MAXSIZE)) { net[iface].ipv6 = ip; } else { int errsv = errno; Logger::error("Net::collect() -> Failed to convert IPv6 to string for iface " + string(iface) + ", errno: " + strerror(errsv)); } } } // else, ignoring family==AF_LINK (see man 3 getifaddrs) } std::unordered_map> ifstats; int mib[] = {CTL_NET, PF_ROUTE, 0, 0, NET_RT_IFLIST2, 0}; size_t len; if (sysctl(mib, 6, nullptr, &len, nullptr, 0) < 0) { Logger::error("failed getting network interfaces"); } else { std::unique_ptr buf(new char[len]); if (sysctl(mib, 6, buf.get(), &len, nullptr, 0) < 0) { Logger::error("failed getting network interfaces"); } else { char *lim = buf.get() + len; char *next = nullptr; for (next = buf.get(); next < lim;) { struct if_msghdr *ifm = (struct if_msghdr *)next; next += ifm->ifm_msglen; if (ifm->ifm_type == RTM_IFINFO2) { struct if_msghdr2 *if2m = (struct if_msghdr2 *)ifm; struct sockaddr_dl *sdl = (struct sockaddr_dl *)(if2m + 1); char iface[32]; strncpy(iface, sdl->sdl_data, sdl->sdl_nlen); iface[sdl->sdl_nlen] = 0; ifstats[iface] = std::tuple(if2m->ifm_data.ifi_ibytes, if2m->ifm_data.ifi_obytes); } } } } //? Get total recieved and transmitted bytes + device address if no ip was found for (const auto &iface : interfaces) { for (const string dir : {"download", "upload"}) { auto &saved_stat = net.at(iface).stat.at(dir); auto &bandwidth = net.at(iface).bandwidth.at(dir); uint64_t val = dir == "download" ? std::get<0>(ifstats[iface]) : std::get<1>(ifstats[iface]); //? Update speed, total and top values if (val < saved_stat.last) { saved_stat.rollover += saved_stat.last; saved_stat.last = 0; } if (cmp_greater((unsigned long long)saved_stat.rollover + (unsigned long long)val, numeric_limits::max())) { saved_stat.rollover = 0; saved_stat.last = 0; } saved_stat.speed = round((double)(val - saved_stat.last) / ((double)(new_timestamp - timestamp) / 1000)); if (saved_stat.speed > saved_stat.top) saved_stat.top = saved_stat.speed; if (saved_stat.offset > val + saved_stat.rollover) saved_stat.offset = 0; saved_stat.total = (val + saved_stat.rollover) - saved_stat.offset; saved_stat.last = val; //? Add values to graph bandwidth.push_back(saved_stat.speed); while (cmp_greater(bandwidth.size(), width * 2)) bandwidth.pop_front(); //? Set counters for auto scaling if (net_auto and selected_iface == iface) { if (saved_stat.speed > graph_max[dir]) { ++max_count[dir][0]; if (max_count[dir][1] > 0) --max_count[dir][1]; } else if (graph_max[dir] > 10 << 10 and saved_stat.speed < graph_max[dir] / 10) { ++max_count[dir][1]; if (max_count[dir][0] > 0) --max_count[dir][0]; } } } } //? Clean up net map if needed if (net.size() > interfaces.size()) { for (auto it = net.begin(); it != net.end();) { if (not v_contains(interfaces, it->first)) it = net.erase(it); else it++; } } timestamp = new_timestamp; } //? Return empty net_info struct if no interfaces was found if (net.empty()) return empty_net; //? Find an interface to display if selected isn't set or valid if (selected_iface.empty() or not v_contains(interfaces, selected_iface)) { max_count["download"][0] = max_count["download"][1] = max_count["upload"][0] = max_count["upload"][1] = 0; redraw = true; if (net_auto) rescale = true; if (not config_iface.empty() and v_contains(interfaces, config_iface)) selected_iface = config_iface; else { //? Sort interfaces by total upload + download bytes auto sorted_interfaces = interfaces; rng::sort(sorted_interfaces, [&](const auto &a, const auto &b) { return cmp_greater(net.at(a).stat["download"].total + net.at(a).stat["upload"].total, net.at(b).stat["download"].total + net.at(b).stat["upload"].total); }); selected_iface.clear(); //? Try to set to a connected interface for (const auto &iface : sorted_interfaces) { if (net.at(iface).connected) selected_iface = iface; break; } //? If no interface is connected set to first available if (selected_iface.empty() and not sorted_interfaces.empty()) selected_iface = sorted_interfaces.at(0); else if (sorted_interfaces.empty()) return empty_net; } } //? Calculate max scale for graphs if needed if (net_auto) { bool sync = false; for (const auto &dir : {"download", "upload"}) { for (const auto &sel : {0, 1}) { if (rescale or max_count[dir][sel] >= 5) { const long long avg_speed = (net[selected_iface].bandwidth[dir].size() > 5 ? std::accumulate(net.at(selected_iface).bandwidth.at(dir).rbegin(), net.at(selected_iface).bandwidth.at(dir).rbegin() + 5, 0ll) / 5 : net[selected_iface].stat[dir].speed); graph_max[dir] = max(uint64_t(avg_speed * (sel == 0 ? 1.3 : 3.0)), (uint64_t)10 << 10); max_count[dir][0] = max_count[dir][1] = 0; redraw = true; if (net_sync) sync = true; break; } } //? Sync download/upload graphs if enabled if (sync) { const auto other = (string(dir) == "upload" ? "download" : "upload"); graph_max[other] = graph_max[dir]; max_count[other][0] = max_count[other][1] = 0; break; } } } rescale = false; return net.at(selected_iface); } } // namespace Net namespace Proc { vector current_procs; std::unordered_map uid_user; string current_sort; string current_filter; bool current_rev = false; fs::file_time_type passwd_time; uint64_t cputimes; int collapse = -1, expand = -1; uint64_t old_cputimes = 0; atomic numpids = 0; int filter_found = 0; detail_container detailed; string get_status(char s) { if (s & SRUN) return "Running"; if (s & SSLEEP) return "Sleeping"; if (s & SIDL) return "Idle"; if (s & SSTOP) return "Stopped"; if (s & SZOMB) return "Zombie"; return "Unknown"; } //* Get detailed info for selected process void _collect_details(const size_t pid, vector &procs) { if (pid != detailed.last_pid) { detailed = {}; detailed.last_pid = pid; detailed.skip_smaps = not Config::getB("proc_info_smaps"); } //? Copy proc_info for process from proc vector auto p_info = rng::find(procs, pid, &proc_info::pid); detailed.entry = *p_info; //? Update cpu percent deque for process cpu graph if (not Config::getB("proc_per_core")) detailed.entry.cpu_p *= Shared::coreCount; detailed.cpu_percent.push_back(clamp((long long)round(detailed.entry.cpu_p), 0ll, 100ll)); while (cmp_greater(detailed.cpu_percent.size(), width)) detailed.cpu_percent.pop_front(); //? Process runtime : current time - start time (both in unix time - seconds since epoch) struct timeval currentTime; gettimeofday(¤tTime, nullptr); detailed.elapsed = sec_to_dhms(currentTime.tv_sec - (detailed.entry.cpu_s / 1'000'000)); if (detailed.elapsed.size() > 8) detailed.elapsed.resize(detailed.elapsed.size() - 3); //? Get parent process name if (detailed.parent.empty()) { auto p_entry = rng::find(procs, detailed.entry.ppid, &proc_info::pid); if (p_entry != procs.end()) detailed.parent = p_entry->name; } //? Expand process status from single char to explanative string detailed.status = get_status(detailed.entry.state); detailed.mem_bytes.push_back(detailed.entry.mem); detailed.memory = floating_humanizer(detailed.entry.mem); if (detailed.first_mem == -1 or detailed.first_mem < detailed.mem_bytes.back() / 2 or detailed.first_mem > detailed.mem_bytes.back() * 4) { detailed.first_mem = min((uint64_t)detailed.mem_bytes.back() * 2, Mem::get_totalMem()); redraw = true; } while (cmp_greater(detailed.mem_bytes.size(), width)) detailed.mem_bytes.pop_front(); rusage_info_current rusage; if (proc_pid_rusage(pid, RUSAGE_INFO_CURRENT, (void **)&rusage) == 0) { // this fails for processes we don't own - same as in Linux detailed.io_read = floating_humanizer(rusage.ri_diskio_bytesread); detailed.io_write = floating_humanizer(rusage.ri_diskio_byteswritten); } } //* Collects and sorts process information from /proc auto collect(bool no_update) -> vector & { const auto &sorting = Config::getS("proc_sorting"); auto reverse = Config::getB("proc_reversed"); const auto &filter = Config::getS("proc_filter"); auto per_core = Config::getB("proc_per_core"); auto tree = Config::getB("proc_tree"); auto show_detailed = Config::getB("show_detailed"); const size_t detailed_pid = Config::getI("detailed_pid"); bool should_filter = current_filter != filter; if (should_filter) current_filter = filter; bool sorted_change = (sorting != current_sort or reverse != current_rev or should_filter); if (sorted_change) { current_sort = sorting; current_rev = reverse; } const int cmult = (per_core) ? Shared::coreCount : 1; bool got_detailed = false; static vector found; //* Use pids from last update if only changing filter, sorting or tree options if (no_update and not current_procs.empty()) { if (show_detailed and detailed_pid != detailed.last_pid) _collect_details(detailed_pid, current_procs); } else { //* ---------------------------------------------Collection start---------------------------------------------- { //* Get CPU totals natural_t cpu_count; kern_return_t error; processor_cpu_load_info_data_t *cpu_load_info = nullptr; MachProcessorInfo info{}; error = host_processor_info(mach_host_self(), PROCESSOR_CPU_LOAD_INFO, &cpu_count, &info.info_array, &info.info_count); if (error != KERN_SUCCESS) { Logger::error("Failed getting CPU load info"); } cpu_load_info = (processor_cpu_load_info_data_t *)info.info_array; cputimes = 0; for (natural_t i = 0; i < cpu_count; i++) { cputimes += (cpu_load_info[i].cpu_ticks[CPU_STATE_USER] + cpu_load_info[i].cpu_ticks[CPU_STATE_NICE] + cpu_load_info[i].cpu_ticks[CPU_STATE_SYSTEM] + cpu_load_info[i].cpu_ticks[CPU_STATE_IDLE]); } } should_filter = true; int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL, 0}; found.clear(); size_t size = 0; const auto timeNow = time_micros(); if (sysctl(mib, 4, nullptr, &size, nullptr, 0) < 0 || size == 0) { Logger::error("Unable to get size of kproc_infos"); } uint64_t cpu_t = 0; std::unique_ptr processes(new kinfo_proc[size / sizeof(kinfo_proc)]); if (sysctl(mib, 4, processes.get(), &size, nullptr, 0) == 0) { size_t count = size / sizeof(struct kinfo_proc); for (size_t i = 0; i < count; i++) { //* iterate over all processes in kinfo_proc struct kinfo_proc& kproc = processes.get()[i]; const size_t pid = (size_t)kproc.kp_proc.p_pid; if (pid < 1) continue; found.push_back(pid); //? Check if pid already exists in current_procs bool no_cache = false; auto find_old = rng::find(current_procs, pid, &proc_info::pid); if (find_old == current_procs.end()) { current_procs.push_back({pid}); find_old = current_procs.end() - 1; no_cache = true; } auto &new_proc = *find_old; //? Get program name, command, username, parent pid, nice and status if (no_cache) { char fullname[PROC_PIDPATHINFO_MAXSIZE]; proc_pidpath(pid, fullname, sizeof(fullname)); const string f_name = std::string(fullname); size_t lastSlash = f_name.find_last_of('/'); new_proc.name = f_name.substr(lastSlash + 1); //? Get process arguments if possible, fallback to process path in case of failure if (Shared::arg_max > 0) { std::unique_ptr proc_chars(new char[Shared::arg_max]); int mib[] = {CTL_KERN, KERN_PROCARGS2, (int)pid}; size_t argmax = Shared::arg_max; if (sysctl(mib, 3, proc_chars.get(), &argmax, nullptr, 0) == 0) { int argc = 0; memcpy(&argc, &proc_chars.get()[0], sizeof(argc)); std::string_view proc_args(proc_chars.get(), argmax); if (size_t null_pos = proc_args.find('\0', sizeof(argc)); null_pos != string::npos) { if (size_t start_pos = proc_args.find_first_not_of('\0', null_pos); start_pos != string::npos) { while (argc-- > 0 and null_pos != string::npos and cmp_less(new_proc.cmd.size(), 1000)) { null_pos = proc_args.find('\0', start_pos); new_proc.cmd += (string)proc_args.substr(start_pos, null_pos - start_pos) + ' '; start_pos = null_pos + 1; } } } if (not new_proc.cmd.empty()) new_proc.cmd.pop_back(); } } if (new_proc.cmd.empty()) new_proc.cmd = f_name; if (new_proc.cmd.size() > 1000) { new_proc.cmd.resize(1000); new_proc.cmd.shrink_to_fit(); } new_proc.ppid = kproc.kp_eproc.e_ppid; new_proc.cpu_s = kproc.kp_proc.p_starttime.tv_sec * 1'000'000 + kproc.kp_proc.p_starttime.tv_usec; struct passwd *pwd = getpwuid(kproc.kp_eproc.e_ucred.cr_uid); new_proc.user = pwd->pw_name; } new_proc.p_nice = kproc.kp_proc.p_nice; new_proc.state = kproc.kp_proc.p_stat; //? Get threads, mem and cpu usage struct proc_taskinfo pti; if (sizeof(pti) == proc_pidinfo(new_proc.pid, PROC_PIDTASKINFO, 0, &pti, sizeof(pti))) { new_proc.threads = pti.pti_threadnum; new_proc.mem = pti.pti_resident_size; cpu_t = pti.pti_total_user + pti.pti_total_system; if (new_proc.cpu_t == 0) new_proc.cpu_t = cpu_t; } //? Process cpu usage since last update new_proc.cpu_p = clamp(round(((cpu_t - new_proc.cpu_t) * Shared::machTck) / ((cputimes - old_cputimes) * Shared::clkTck)) * cmult / 1000.0, 0.0, 100.0 * Shared::coreCount); //? Process cumulative cpu usage since process start new_proc.cpu_c = (double)(cpu_t * Shared::machTck) / (timeNow - new_proc.cpu_s); //? Update cached value with latest cpu times new_proc.cpu_t = cpu_t; if (show_detailed and not got_detailed and new_proc.pid == detailed_pid) { got_detailed = true; } } // //? Clear dead processes from current_procs auto eraser = rng::remove_if(current_procs, [&](const auto &element) { return not v_contains(found, element.pid); }); current_procs.erase(eraser.begin(), eraser.end()); //? Update the details info box for process if active if (show_detailed and got_detailed) { _collect_details(detailed_pid, current_procs); } else if (show_detailed and not got_detailed and detailed.status != "Dead") { detailed.status = "Dead"; redraw = true; } old_cputimes = cputimes; } } //* ---------------------------------------------Collection done----------------------------------------------- //* Match filter if defined if (should_filter) { filter_found = 0; for (auto &p : current_procs) { if (not tree and not filter.empty()) { if (not s_contains_ic(to_string(p.pid), filter) and not s_contains_ic(p.name, filter) and not s_contains_ic(p.cmd, filter) and not s_contains_ic(p.user, filter)) { p.filtered = true; filter_found++; } else { p.filtered = false; } } else { p.filtered = false; } } } //* Sort processes if (sorted_change or not no_update) { proc_sorter(current_procs, sorting, reverse, tree); } //* Generate tree view if enabled if (tree and (not no_update or should_filter or sorted_change)) { bool locate_selection = false; if (auto find_pid = (collapse != -1 ? collapse : expand); find_pid != -1) { auto collapser = rng::find(current_procs, find_pid, &proc_info::pid); if (collapser != current_procs.end()) { if (collapse == expand) { collapser->collapsed = not collapser->collapsed; } else if (collapse > -1) { collapser->collapsed = true; } else if (expand > -1) { collapser->collapsed = false; } if (Config::ints.at("proc_selected") > 0) locate_selection = true; } collapse = expand = -1; } if (should_filter or not filter.empty()) filter_found = 0; vector tree_procs; tree_procs.reserve(current_procs.size()); for (auto& p : current_procs) { if (not v_contains(found, p.ppid)) p.ppid = 0; } //? Stable sort to retain selected sorting among processes with the same parent rng::stable_sort(current_procs, rng::less{}, & proc_info::ppid); //? Start recursive iteration over processes with the lowest shared parent pids for (auto& p : rng::equal_range(current_procs, current_procs.at(0).ppid, rng::less{}, &proc_info::ppid)) { _tree_gen(p, current_procs, tree_procs, 0, false, filter, false, no_update, should_filter); } //? Recursive sort over tree structure to account for collapsed processes in the tree int index = 0; tree_sort(tree_procs, sorting, reverse, index, current_procs.size()); //? Add tree begin symbol to first item if childless if (tree_procs.front().children.empty()) tree_procs.front().entry.get().prefix.replace(tree_procs.front().entry.get().prefix.size() - 8, 8, " ┌─ "); //? Add tree terminator symbol to last item if childless if (tree_procs.back().children.empty()) tree_procs.back().entry.get().prefix.replace(tree_procs.back().entry.get().prefix.size() - 8, 8, " └─ "); //? Final sort based on tree index rng::sort(current_procs, rng::less{}, & proc_info::tree_index); //? Move current selection/view to the selected process when collapsing/expanding in the tree if (locate_selection) { int loc = rng::find(current_procs, Proc::selected_pid, &proc_info::pid)->tree_index; if (Config::ints.at("proc_start") >= loc or Config::ints.at("proc_start") <= loc - Proc::select_max) Config::ints.at("proc_start") = max(0, loc - 1); Config::ints.at("proc_selected") = loc - Config::ints.at("proc_start") + 1; } } numpids = (int)current_procs.size() - filter_found; return current_procs; } } // namespace Proc namespace Tools { double system_uptime() { struct timeval ts, currTime; std::size_t len = sizeof(ts); int mib[2] = {CTL_KERN, KERN_BOOTTIME}; if (sysctl(mib, 2, &ts, &len, nullptr, 0) != -1) { gettimeofday(&currTime, nullptr); return currTime.tv_sec - ts.tv_sec; } return 0.0; } } // namespace Tools btop-1.3.0/src/osx/sensors.cpp000066400000000000000000000103611454653170500162720ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include #if __MAC_OS_X_VERSION_MIN_REQUIRED > 101504 #include "sensors.hpp" #include #include #include #include #include extern "C" { typedef struct __IOHIDEvent *IOHIDEventRef; typedef struct __IOHIDServiceClient *IOHIDServiceClientRef; #ifdef __LP64__ typedef double IOHIDFloat; #else typedef float IOHIDFloat; #endif #define IOHIDEventFieldBase(type) (type << 16) #define kIOHIDEventTypeTemperature 15 IOHIDEventSystemClientRef IOHIDEventSystemClientCreate(CFAllocatorRef allocator); int IOHIDEventSystemClientSetMatching(IOHIDEventSystemClientRef client, CFDictionaryRef match); int IOHIDEventSystemClientSetMatchingMultiple(IOHIDEventSystemClientRef client, CFArrayRef match); IOHIDEventRef IOHIDServiceClientCopyEvent(IOHIDServiceClientRef, int64_t, int32_t, int64_t); CFStringRef IOHIDServiceClientCopyProperty(IOHIDServiceClientRef service, CFStringRef property); IOHIDFloat IOHIDEventGetFloatValue(IOHIDEventRef event, int32_t field); // create a dict ref, like for temperature sensor {"PrimaryUsagePage":0xff00, "PrimaryUsage":0x5} CFDictionaryRef matching(int page, int usage) { CFNumberRef nums[2]; CFStringRef keys[2]; keys[0] = CFStringCreateWithCString(0, "PrimaryUsagePage", 0); keys[1] = CFStringCreateWithCString(0, "PrimaryUsage", 0); nums[0] = CFNumberCreate(0, kCFNumberSInt32Type, &page); nums[1] = CFNumberCreate(0, kCFNumberSInt32Type, &usage); CFDictionaryRef dict = CFDictionaryCreate(0, (const void **)keys, (const void **)nums, 2, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks); CFRelease(keys[0]); CFRelease(keys[1]); return dict; } double getValue(IOHIDServiceClientRef sc) { IOHIDEventRef event = IOHIDServiceClientCopyEvent(sc, kIOHIDEventTypeTemperature, 0, 0); // here we use ...CopyEvent IOHIDFloat temp = 0.0; if (event != 0) { temp = IOHIDEventGetFloatValue(event, IOHIDEventFieldBase(kIOHIDEventTypeTemperature)); CFRelease(event); } return temp; } } // extern C long long Cpu::ThermalSensors::getSensors() { CFDictionaryRef thermalSensors = matching(0xff00, 5); // 65280_10 = FF00_16 // thermalSensors's PrimaryUsagePage should be 0xff00 for M1 chip, instead of 0xff05 // can be checked by ioreg -lfx IOHIDEventSystemClientRef system = IOHIDEventSystemClientCreate(kCFAllocatorDefault); IOHIDEventSystemClientSetMatching(system, thermalSensors); CFArrayRef matchingsrvs = IOHIDEventSystemClientCopyServices(system); std::vector temps; if (matchingsrvs) { long count = CFArrayGetCount(matchingsrvs); for (int i = 0; i < count; i++) { IOHIDServiceClientRef sc = (IOHIDServiceClientRef)CFArrayGetValueAtIndex(matchingsrvs, i); if (sc) { CFStringRef name = IOHIDServiceClientCopyProperty(sc, CFSTR("Product")); // here we use ...CopyProperty if (name) { char buf[200]; CFStringGetCString(name, buf, 200, kCFStringEncodingASCII); std::string n(buf); // this is just a guess, nobody knows which sensors mean what // on my system PMU tdie 3 and 9 are missing... // there is also PMU tdev1-8 but it has negative values?? // there is also eACC for efficiency package but it only has 2 entries // and pACC for performance but it has 7 entries (2 - 9) WTF if (n.starts_with("eACC") or n.starts_with("pACC")) { temps.push_back(getValue(sc)); } CFRelease(name); } } } CFRelease(matchingsrvs); } CFRelease(system); CFRelease(thermalSensors); if (temps.empty()) return 0ll; return round(std::accumulate(temps.begin(), temps.end(), 0ll) / temps.size()); } #endif btop-1.3.0/src/osx/sensors.hpp000066400000000000000000000014541454653170500163020ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include #if __MAC_OS_X_VERSION_MIN_REQUIRED > 101504 namespace Cpu { class ThermalSensors { public: long long getSensors(); }; } // namespace Cpu #endif btop-1.3.0/src/osx/smc.cpp000066400000000000000000000113071454653170500153610ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #include "smc.hpp" static constexpr size_t MaxIndexCount = sizeof("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ") - 1; static constexpr const char *KeyIndexes = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; static UInt32 _strtoul(char *str, int size, int base) { UInt32 total = 0; int i; for (i = 0; i < size; i++) { if (base == 16) { total += str[i] << (size - 1 - i) * 8; } else { total += (unsigned char)(str[i] << (size - 1 - i) * 8); } } return total; } static void _ultostr(char *str, UInt32 val) { str[0] = '\0'; snprintf(str, 5, "%c%c%c%c", (unsigned int)val >> 24, (unsigned int)val >> 16, (unsigned int)val >> 8, (unsigned int)val); } namespace Cpu { SMCConnection::SMCConnection() { CFMutableDictionaryRef matchingDictionary = IOServiceMatching("AppleSMC"); result = IOServiceGetMatchingServices(0, matchingDictionary, &iterator); if (result != kIOReturnSuccess) { throw std::runtime_error("failed to get AppleSMC"); } device = IOIteratorNext(iterator); IOObjectRelease(iterator); if (device == 0) { throw std::runtime_error("failed to get SMC device"); } result = IOServiceOpen(device, mach_task_self(), 0, &conn); IOObjectRelease(device); if (result != kIOReturnSuccess) { throw std::runtime_error("failed to get SMC connection"); } } SMCConnection::~SMCConnection() { IOServiceClose(conn); } long long SMCConnection::getSMCTemp(char *key) { SMCVal_t val; kern_return_t result; result = SMCReadKey(key, &val); if (result == kIOReturnSuccess) { if (val.dataSize > 0) { if (strcmp(val.dataType, DATATYPE_SP78) == 0) { // convert sp78 value to temperature int intValue = val.bytes[0] * 256 + (unsigned char)val.bytes[1]; return static_cast(intValue / 256.0); } } } return -1; } // core means physical core in SMC, while in core map it's cpu threads :-/ Only an issue on hackintosh? // this means we can only get the T per physical core // another issue with the SMC API is that the key is always 4 chars -> what with systems with more than 9 physical cores? // no Mac models with more than 18 threads are released, so no problem so far // according to VirtualSMC docs (hackintosh fake SMC) the enumeration follows with alphabetic chars - not implemented yet here (nor in VirtualSMC) long long SMCConnection::getTemp(int core) { char key[] = SMC_KEY_CPU_TEMP; if (core >= 0) { if ((size_t)core > MaxIndexCount) { return -1; } snprintf(key, 5, "TC%1cc", KeyIndexes[core]); } long long result = getSMCTemp(key); if (result == -1) { // try again with C snprintf(key, 5, "TC%1dC", KeyIndexes[core]); result = getSMCTemp(key); } return result; } kern_return_t SMCConnection::SMCReadKey(UInt32Char_t key, SMCVal_t *val) { kern_return_t result; SMCKeyData_t inputStructure; SMCKeyData_t outputStructure; memset(&inputStructure, 0, sizeof(SMCKeyData_t)); memset(&outputStructure, 0, sizeof(SMCKeyData_t)); memset(val, 0, sizeof(SMCVal_t)); inputStructure.key = _strtoul(key, 4, 16); inputStructure.data8 = SMC_CMD_READ_KEYINFO; result = SMCCall(KERNEL_INDEX_SMC, &inputStructure, &outputStructure); if (result != kIOReturnSuccess) return result; val->dataSize = outputStructure.keyInfo.dataSize; _ultostr(val->dataType, outputStructure.keyInfo.dataType); inputStructure.keyInfo.dataSize = val->dataSize; inputStructure.data8 = SMC_CMD_READ_BYTES; result = SMCCall(KERNEL_INDEX_SMC, &inputStructure, &outputStructure); if (result != kIOReturnSuccess) return result; memcpy(val->bytes, outputStructure.bytes, sizeof(outputStructure.bytes)); return kIOReturnSuccess; } kern_return_t SMCConnection::SMCCall(int index, SMCKeyData_t *inputStructure, SMCKeyData_t *outputStructure) { size_t structureInputSize; size_t structureOutputSize; structureInputSize = sizeof(SMCKeyData_t); structureOutputSize = sizeof(SMCKeyData_t); return IOConnectCallStructMethod(conn, index, // inputStructure inputStructure, structureInputSize, // ouputStructure outputStructure, &structureOutputSize); } } // namespace Cpu btop-1.3.0/src/osx/smc.hpp000066400000000000000000000051761454653170500153750ustar00rootroot00000000000000/* Copyright 2021 Aristocratos (jakob@qvantnet.com) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. indent = tab tab-size = 4 */ #pragma once #include #include #include #include #include #define VERSION "0.01" #define KERNEL_INDEX_SMC 2 #define SMC_CMD_READ_BYTES 5 #define SMC_CMD_WRITE_BYTES 6 #define SMC_CMD_READ_INDEX 8 #define SMC_CMD_READ_KEYINFO 9 #define SMC_CMD_READ_PLIMIT 11 #define SMC_CMD_READ_VERS 12 #define DATATYPE_FPE2 "fpe2" #define DATATYPE_UINT8 "ui8 " #define DATATYPE_UINT16 "ui16" #define DATATYPE_UINT32 "ui32" #define DATATYPE_SP78 "sp78" // key values #define SMC_KEY_CPU_TEMP "TC0P" // proximity temp? #define SMC_KEY_CPU_DIODE_TEMP "TC0D" // diode temp? #define SMC_KEY_CPU_DIE_TEMP "TC0F" // die temp? #define SMC_KEY_CPU1_TEMP "TC1C" #define SMC_KEY_CPU2_TEMP "TC2C" // etc #define SMC_KEY_FAN0_RPM_CUR "F0Ac" typedef struct { char major; char minor; char build; char reserved[1]; UInt16 release; } SMCKeyData_vers_t; typedef struct { UInt16 version; UInt16 length; UInt32 cpuPLimit; UInt32 gpuPLimit; UInt32 memPLimit; } SMCKeyData_pLimitData_t; typedef struct { UInt32 dataSize; UInt32 dataType; char dataAttributes; } SMCKeyData_keyInfo_t; typedef char SMCBytes_t[32]; typedef struct { UInt32 key; SMCKeyData_vers_t vers; SMCKeyData_pLimitData_t pLimitData; SMCKeyData_keyInfo_t keyInfo; char result; char status; char data8; UInt32 data32; SMCBytes_t bytes; } SMCKeyData_t; typedef char UInt32Char_t[5]; typedef struct { UInt32Char_t key; UInt32 dataSize; UInt32Char_t dataType; SMCBytes_t bytes; } SMCVal_t; namespace Cpu { class SMCConnection { public: SMCConnection(); virtual ~SMCConnection(); long long getTemp(int core); private: kern_return_t SMCReadKey(UInt32Char_t key, SMCVal_t *val); long long getSMCTemp(char *key); kern_return_t SMCCall(int index, SMCKeyData_t *inputStructure, SMCKeyData_t *outputStructure); io_connect_t conn; kern_return_t result; mach_port_t masterPort; io_iterator_t iterator; io_object_t device; }; } // namespace Cpu btop-1.3.0/themes/000077500000000000000000000000001454653170500137565ustar00rootroot00000000000000btop-1.3.0/themes/HotPurpleTrafficLight.theme000066400000000000000000000044771454653170500212270ustar00rootroot00000000000000#HotPurpleTrafficLight #by Pete Allebone - mess with the best... you know the rest. #Designed to flash up bright red with danger when loads are high and attention is needed. # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#000000" # Main text color theme[main_fg]="#d1d1e0" # Title color for boxes theme[title]="#d1d1e0" # Highlight color for keyboard shortcuts theme[hi_fg]="#9933ff" # Background color of selected item in processes box theme[selected_bg]="#6666ff" # Foreground color of selected item in processes box theme[selected_fg]="#d1d1e0" # Color of inactive/disabled text theme[inactive_fg]="#9999ff" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#9933ff" # Background color of the percentage meters theme[meter_bg]="#4d4dff" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#9933ff" # Cpu box outline color theme[cpu_box]="#a64dff" # Memory/disks box outline color theme[mem_box]="#a64dff" # Net up/down box outline color theme[net_box]="#a64dff" # Processes box outline color theme[proc_box]="#a64dff" # Box divider line and small boxes line color theme[div_line]="#4d4dff" # Temperature graph colors theme[temp_start]="#00ff00" theme[temp_mid]="#ff9933" theme[temp_end]="#ff0000" # CPU graph colors theme[cpu_start]="#00ff00" theme[cpu_mid]="#ccff66" theme[cpu_end]="#ff0000" # Mem/Disk free meter theme[free_end]="#00ff00" theme[free_mid]="#ccff66" theme[free_start]="#ff0000" # Mem/Disk cached meter theme[cached_start]="#00ff00" theme[cached_mid]="#ccff66" theme[cached_end]="#ff0000" # Mem/Disk available meter theme[available_start]="#ff0000" theme[available_mid]="#ccff66" theme[available_end]="#00ff00" # Mem/Disk used meter theme[used_start]="#00ff00" theme[used_mid]="#ccff66" theme[used_end]="#ff0000" # Download graph colors theme[download_start]="#00ff00" theme[download_mid]="#ff9933" theme[download_end]="#ff0000" # Upload graph colors theme[upload_start]="#00ff00" theme[upload_mid]="#ff9933" theme[upload_end]="#ff0000" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#9999ff" theme[process_mid]="#4d4dff" theme[process_end]="#a64dff" btop-1.3.0/themes/adapta.theme000066400000000000000000000042471454653170500162430ustar00rootroot00000000000000#Bashtop Adapta theme #by olokelo # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#ffffff", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="" # Main text color theme[main_fg]="#cfd8dc" # Title color for boxes theme[title]="#ff" # Higlight color for keyboard shortcuts theme[hi_fg]="#90" # Background color of selected item in processes box theme[selected_bg]="#bb0040" # Foreground color of selected item in processes box theme[selected_fg]="#ff" # Color of inactive/disabled text theme[inactive_fg]="#40" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#55bcea" # Cpu box outline color theme[cpu_box]="#00bcd4" # Memory/disks box outline color theme[mem_box]="#00bcd4" # Net up/down box outline color theme[net_box]="#00bcd4" # Processes box outline color theme[proc_box]="#00bcd4" # Box divider line and small boxes line color theme[div_line]="#50" # Temperature graph colors theme[temp_start]="#00bcd4" theme[temp_mid]="#d4d400" theme[temp_end]="#ff0040" # CPU graph colors theme[cpu_start]="#00bcd4" theme[cpu_mid]="#d4d400" theme[cpu_end]="#ff0040" # Mem/Disk free meter theme[free_start]="#00bcd4" theme[free_mid]="#1090a0" theme[free_end]="#206f79" # Mem/Disk cached meter theme[cached_start]="#991199" theme[cached_mid]="#770a55" theme[cached_end]="#550055" # Mem/Disk available meter theme[available_start]="#00b0ff" theme[available_mid]="#1099cc" theme[available_end]="#2070aa" # Mem/Disk used meter theme[used_start]="#ff0040" theme[used_mid]="#ff2060" theme[used_end]="#ff4080" # Download graph colors theme[download_start]="#00bcd4" theme[download_mid]="#991199" theme[download_end]="#ff0040" # Upload graph colors theme[upload_start]="#00bcd4" theme[upload_mid]="#991199" theme[upload_end]="#ff0040" btop-1.3.0/themes/adwaita.theme000066400000000000000000000043101454653170500164120ustar00rootroot00000000000000#Bashtop Adwaita theme #by flipflop133 # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#f6f5f4" # Main text color theme[main_fg]="#2e3436" # Title color for boxes theme[title]="#2e3436" # Higlight color for keyboard shortcuts theme[hi_fg]="#1a5fb4" # Background color of selected item in processes box theme[selected_bg]="#1c71d8" # Foreground color of selected item in processes box theme[selected_fg]="#ffffff" # Color of inactive/disabled text theme[inactive_fg]="#5e5c64" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#1a5fb4" # Cpu box outline color theme[cpu_box]="#2e3436" # Memory/disks box outline color theme[mem_box]="#3d3c14" # Net up/down box outline color theme[net_box]="#2e3436" # Processes box outline color theme[proc_box]="#2e3436" # Box divider line and small boxes line color theme[div_line]="#2e3436" # Temperature graph colors theme[temp_start]="#1a5fb4" theme[temp_mid]="#1a5fb4" theme[temp_end]="#c01c28" # CPU graph colors theme[cpu_start]="#1a5fb4" theme[cpu_mid]="#1a5fb4" theme[cpu_end]="#c01c28" # Mem/Disk free meter theme[free_start]="#1a5fb4" theme[free_mid]="#1a5fb4" theme[free_end]="#c01c28" # Mem/Disk cached meter theme[cached_start]="#1a5fb4" theme[cached_mid]="#1a5fb4" theme[cached_end]="#c01c28" # Mem/Disk available meter theme[available_start]="#1a5fb4" theme[available_mid]="#1a5fb4" theme[available_end]="#c01c28" # Mem/Disk used meter theme[used_start]="#1a5fb4" theme[used_mid]="#1a5fb4" theme[used_end]="#c01c28" # Download graph colors theme[download_start]="#1a5fb4" theme[download_mid]="#1a5fb4" theme[download_end]="#c01c28" # Upload graph colors theme[upload_start]="#1a5fb4" theme[upload_mid]="#1a5fb4" theme[upload_end]="#c01c28" btop-1.3.0/themes/ayu.theme000066400000000000000000000041461454653170500156050ustar00rootroot00000000000000# Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#0B0E14" # Main text color theme[main_fg]="#BFBDB6" # Title color for boxes theme[title]="#BFBDB6" # Highlight color for keyboard shortcuts theme[hi_fg]="#E6B450" # Background color of selected item in processes box theme[selected_bg]="#E6B450" # Foreground color of selected item in processes box theme[selected_fg]="#f8f8f2" # Color of inactive/disabled text theme[inactive_fg]="#565B66" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#BFBDB6" # Background color of the percentage meters theme[meter_bg]="#565B66" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#DFBFFF" # Cpu box outline color theme[cpu_box]="#DFBFFF" # Memory/disks box outline color theme[mem_box]="#95E6CB" # Net up/down box outline color theme[net_box]="#F28779" # Processes box outline color theme[proc_box]="#E6B673" # Box divider line and small boxes line color theme[div_line]="#565B66" # Temperature graph colors theme[temp_start]="#DFBFFF" theme[temp_mid]="#D2A6FF" theme[temp_end]="#A37ACC" # CPU graph colors theme[cpu_start]="#DFBFFF" theme[cpu_mid]="#D2A6FF" theme[cpu_end]="#A37ACC" # Mem/Disk free meter theme[free_start]="#95E6CB" theme[free_mid]="#95E6CB" theme[free_end]="#4CBF99" # Mem/Disk cached meter theme[cached_start]="#95E6CB" theme[cached_mid]="#95E6CB" theme[cached_end]="#4CBF99" # Mem/Disk available meter theme[available_start]="#95E6CB" theme[available_mid]="#95E6CB" theme[available_end]="#4CBF99" # Mem/Disk used meter theme[used_start]="#95E6CB" theme[used_mid]="#95E6CB" theme[used_end]="#4CBF99" # Download graph colors theme[download_start]="#F28779" theme[download_mid]="#F07178" theme[download_end]="#F07171" # Upload graph colors theme[upload_start]="#73D0FF" theme[upload_mid]="#59C2FF" theme[upload_end]="#399EE6" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#FFCC66" theme[process_mid]="#E6B450" theme[process_end]="#FFAA33" btop-1.3.0/themes/dracula.theme000066400000000000000000000041461454653170500164220ustar00rootroot00000000000000# Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#282a36" # Main text color theme[main_fg]="#f8f8f2" # Title color for boxes theme[title]="#f8f8f2" # Highlight color for keyboard shortcuts theme[hi_fg]="#6272a4" # Background color of selected item in processes box theme[selected_bg]="#ff79c6" # Foreground color of selected item in processes box theme[selected_fg]="#f8f8f2" # Color of inactive/disabled text theme[inactive_fg]="#44475a" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#f8f8f2" # Background color of the percentage meters theme[meter_bg]="#44475a" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#bd93f9" # Cpu box outline color theme[cpu_box]="#bd93f9" # Memory/disks box outline color theme[mem_box]="#50fa7b" # Net up/down box outline color theme[net_box]="#ff5555" # Processes box outline color theme[proc_box]="#8be9fd" # Box divider line and small boxes line color theme[div_line]="#44475a" # Temperature graph colors theme[temp_start]="#bd93f9" theme[temp_mid]="#ff79c6" theme[temp_end]="#ff33a8" # CPU graph colors theme[cpu_start]="#bd93f9" theme[cpu_mid]="#8be9fd" theme[cpu_end]="#50fa7b" # Mem/Disk free meter theme[free_start]="#ffa6d9" theme[free_mid]="#ff79c6" theme[free_end]="#ff33a8" # Mem/Disk cached meter theme[cached_start]="#b1f0fd" theme[cached_mid]="#8be9fd" theme[cached_end]="#26d7fd" # Mem/Disk available meter theme[available_start]="#ffd4a6" theme[available_mid]="#ffb86c" theme[available_end]="#ff9c33" # Mem/Disk used meter theme[used_start]="#96faaf" theme[used_mid]="#50fa7b" theme[used_end]="#0dfa49" # Download graph colors theme[download_start]="#bd93f9" theme[download_mid]="#50fa7b" theme[download_end]="#8be9fd" # Upload graph colors theme[upload_start]="#8c42ab" theme[upload_mid]="#ff79c6" theme[upload_end]="#ff33a8" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#50fa7b" theme[process_mid]="#59b690" theme[process_end]="#6272a4" btop-1.3.0/themes/dusklight.theme000066400000000000000000000045431454653170500170060ustar00rootroot00000000000000#Bpytop theme comprised of blues, oranges, cyan, and yellow. #by Drazil100 # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#04142E" # Main text color theme[main_fg]="#99DFFF" # Title color for boxes theme[title]="#99FFFF" # Higlight color for keyboard shortcuts theme[hi_fg]="#FF7F00" # Background color of selected item in processes box theme[selected_bg]="#722B01" # Foreground color of selected item in processes box theme[selected_fg]="#99FFFF" # Color of inactive/disabled text theme[inactive_fg]="#052E51" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#79A1B4" # Background color of the percentage meters theme[meter_bg]="#052E51" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#B46718" # Cpu box outline color theme[cpu_box]="#00FFFF" # Memory/disks box outline color theme[mem_box]="#00FFFF" # Net up/down box outline color theme[net_box]="#00FFFF" # Processes box outline color theme[proc_box]="#00FFFF" # Box divider line and small boxes line color theme[div_line]="#A55800" # Temperature graph colors theme[temp_start]="#00ADFF" theme[temp_mid]="#00FFFF" theme[temp_end]="#FFF86B" # CPU graph colors theme[cpu_start]="#00D4FF" theme[cpu_mid]="#FFF86B" theme[cpu_end]="#FF7F00" # Mem/Disk free meter theme[free_start]="#0187CB" theme[free_mid]="" theme[free_end]="" # Mem/Disk cached meter theme[cached_start]="#B4BB63" theme[cached_mid]="" theme[cached_end]="" # Mem/Disk available meter theme[available_start]="#01C0CB" theme[available_mid]="" theme[available_end]="" # Mem/Disk used meter theme[used_start]="#B46718" theme[used_mid]="" theme[used_end]="" # Download graph colors theme[download_start]="#009EFF" theme[download_mid]="" theme[download_end]="#00FFFF" # Upload graph colors theme[upload_start]="#FF7F00" theme[upload_mid]="" theme[upload_end]="#FFF86B" btop-1.3.0/themes/elementarish.theme000066400000000000000000000034001454653170500174570ustar00rootroot00000000000000# Theme: Elementarish # (inspired by Elementary OS) # By: Dennis Mayr # Main bg theme[main_bg]="#333333" # Main text color theme[main_fg]="#eee8d5" # Title color for boxes theme[title]="#eee8d5" # Higlight color for keyboard shortcuts theme[hi_fg]="#d1302c" # Background color of selected item in processes box theme[selected_bg]="#268ad0" # Foreground color of selected item in processes box theme[selected_fg]="#eee8d5" # Color of inactive/disabled text theme[inactive_fg]="#657b83" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#268ad0" # Cpu box outline color theme[cpu_box]="#657b83" # Memory/disks box outline color theme[mem_box]="#657b83" # Net up/down box outline color theme[net_box]="#657b83" # Processes box outline color theme[proc_box]="#657b83" # Box divider line and small boxes line color theme[div_line]="#657b83" # Temperature graph colors theme[temp_start]="#859900" theme[temp_mid]="#b28602" theme[temp_end]="#d1302c" # CPU graph colors theme[cpu_start]="#859900" theme[cpu_mid]="#b28602" theme[cpu_end]="#d1302c" # Mem/Disk free meter theme[free_start]="#268ad0" theme[free_mid]="#6c71c4" theme[free_end]="#2a9d95" # Mem/Disk cached meter theme[cached_start]="#268ad0" theme[cached_mid]="#6c71c4" theme[cached_end]="#d1302c" # Mem/Disk available meter theme[available_start]="#268ad0" theme[available_mid]="#6c71c4" theme[available_end]="#d1302c" # Mem/Disk used meter theme[used_start]="#859900" theme[used_mid]="#b28602" theme[used_end]="#d1302c" # Download graph colors theme[download_start]="#268ad0" theme[download_mid]="#6c71c4" theme[download_end]="#d1302c" # Upload graph colors theme[upload_start]="#268ad0" theme[upload_mid]="#6c71c4" theme[upload_end]="#d1302c" btop-1.3.0/themes/everforest-dark-hard.theme000066400000000000000000000043341454653170500210250ustar00rootroot00000000000000# All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#272e33" # Main text color theme[main_fg]="#d3c6aa" # Title color for boxes theme[title]="#d3c6aa" # Highlight color for keyboard shortcuts theme[hi_fg]="#e67e80" # Background color of selected items theme[selected_bg]="#374145" # Foreground color of selected items theme[selected_fg]="#dbbc7f" # Color of inactive/disabled text theme[inactive_fg]="#272e33" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#d3c6aa" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#a7c080" # Cpu box outline color theme[cpu_box]="#374145" # Memory/disks box outline color theme[mem_box]="#374145" # Net up/down box outline color theme[net_box]="#374145" # Processes box outline color theme[proc_box]="#374145" # Box divider line and small boxes line color theme[div_line]="#374145" # Temperature graph colors theme[temp_start]="#a7c080" theme[temp_mid]="#dbbc7f" theme[temp_end]="#f85552" # CPU graph colors theme[cpu_start]="#a7c080" theme[cpu_mid]="#dbbc7f" theme[cpu_end]="#f85552" # Mem/Disk free meter theme[free_start]="#f85552" theme[free_mid]="#dbbc7f" theme[free_end]="#a7c080" # Mem/Disk cached meter theme[cached_start]="#7fbbb3" theme[cached_mid]="#83c092" theme[cached_end]="#a7c080" # Mem/Disk available meter theme[available_start]="#f85552" theme[available_mid]="#dbbc7f" theme[available_end]="#a7c080" # Mem/Disk used meter theme[used_start]="#a7c080" theme[used_mid]="#dbbc7f" theme[used_end]="#f85552" # Download graph colors theme[download_start]="#a7c080" theme[download_mid]="#83c092" theme[download_end]="#7fbbb3" # Upload graph colors theme[upload_start]="#dbbc7f" theme[upload_mid]="#e69875" theme[upload_end]="#e67e80" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#a7c080" theme[process_mid]="#f85552" theme[process_end]="#CC241D" btop-1.3.0/themes/flat-remix-light.theme000066400000000000000000000043471454653170500201670ustar00rootroot00000000000000#Bashtop theme with flat-remix colors #by Daniel Ruiz de Alegría # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#ffffff", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#e4e4e7" # Main text color theme[main_fg]="#737680" # Title color for boxes theme[title]="#272a34" # Higlight color for keyboard shortcuts theme[hi_fg]="#90" # Background color of selected item in processes box theme[selected_bg]="#b8174c" # Foreground color of selected item in processes box theme[selected_fg]="#ff" # Color of inactive/disabled text theme[inactive_fg]="#40" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#367bf0" # Cpu box outline color theme[cpu_box]="#367bf0" # Memory/disks box outline color theme[mem_box]="#19a187" # Net up/down box outline color theme[net_box]="#fd3535" # Processes box outline color theme[proc_box]="#4aaee6" # Box divider line and small boxes line color theme[div_line]="#50" # Temperature graph colors theme[temp_start]="#367bf0" theme[temp_mid]="#b8174c" theme[temp_end]="#d41919" # CPU graph colors theme[cpu_start]="#367bf0" theme[cpu_mid]="#4aaee6" theme[cpu_end]="#54bd8e" # Mem/Disk free meter theme[free_start]="#811035" theme[free_mid]="#b8174c" theme[free_end]="#d41919" # Mem/Disk cached meter theme[cached_start]="#2656a8" theme[cached_mid]="#4aaee6" theme[cached_end]="#23bac2" # Mem/Disk available meter theme[available_start]="#fea44c" theme[available_mid]="#fd7d00" theme[available_end]="#fe7171" # Mem/Disk used meter theme[used_start]="#12715f" theme[used_mid]="#19a187" theme[used_end]="#23bac2" # Download graph colors theme[download_start]="#367bf0" theme[download_mid]="#19a187" theme[download_end]="#4aaee6" # Upload graph colors theme[upload_start]="#8c42ab" theme[upload_mid]="#b8174c" theme[upload_end]="#d41919" btop-1.3.0/themes/flat-remix.theme000066400000000000000000000043341454653170500170560ustar00rootroot00000000000000#Bashtop theme with flat-remix colors #by Daniel Ruiz de Alegría # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#ffffff", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="" # Main text color theme[main_fg]="#E6E6E6" # Title color for boxes theme[title]="#ff" # Higlight color for keyboard shortcuts theme[hi_fg]="#90" # Background color of selected item in processes box theme[selected_bg]="#b8174c" # Foreground color of selected item in processes box theme[selected_fg]="#ff" # Color of inactive/disabled text theme[inactive_fg]="#40" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#367bf0" # Cpu box outline color theme[cpu_box]="#367bf0" # Memory/disks box outline color theme[mem_box]="#19a187" # Net up/down box outline color theme[net_box]="#fd3535" # Processes box outline color theme[proc_box]="#4aaee6" # Box divider line and small boxes line color theme[div_line]="#50" # Temperature graph colors theme[temp_start]="#367bf0" theme[temp_mid]="#b8174c" theme[temp_end]="#d41919" # CPU graph colors theme[cpu_start]="#367bf0" theme[cpu_mid]="#4aaee6" theme[cpu_end]="#54bd8e" # Mem/Disk free meter theme[free_start]="#811035" theme[free_mid]="#b8174c" theme[free_end]="#d41919" # Mem/Disk cached meter theme[cached_start]="#2656a8" theme[cached_mid]="#4aaee6" theme[cached_end]="#23bac2" # Mem/Disk available meter theme[available_start]="#fea44c" theme[available_mid]="#fd7d00" theme[available_end]="#fe7171" # Mem/Disk used meter theme[used_start]="#12715f" theme[used_mid]="#19a187" theme[used_end]="#23bac2" # Download graph colors theme[download_start]="#367bf0" theme[download_mid]="#19a187" theme[download_end]="#4aaee6" # Upload graph colors theme[upload_start]="#8c42ab" theme[upload_mid]="#b8174c" theme[upload_end]="#d41919" btop-1.3.0/themes/greyscale.theme000066400000000000000000000040361454653170500167630ustar00rootroot00000000000000#Bashtop grayscale theme #by aristocratos # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#00" # Main text color theme[main_fg]="#bb" # Title color for boxes theme[title]="#cc" # Higlight color for keyboard shortcuts theme[hi_fg]="#90" # Background color of selected item in processes box theme[selected_bg]="#ff" # Foreground color of selected item in processes box theme[selected_fg]="#00" # Color of inactive/disabled text theme[inactive_fg]="#30" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#90" # Cpu box outline color theme[cpu_box]="#90" # Memory/disks box outline color theme[mem_box]="#90" # Net up/down box outline color theme[net_box]="#90" # Processes box outline color theme[proc_box]="#90" # Box divider line and small boxes line color theme[div_line]="#30" # Temperature graph colors theme[temp_start]="#50" theme[temp_mid]="" theme[temp_end]="#ff" # CPU graph colors theme[cpu_start]="#50" theme[cpu_mid]="" theme[cpu_end]="#ff" # Mem/Disk free meter theme[free_start]="#50" theme[free_mid]="" theme[free_end]="#ff" # Mem/Disk cached meter theme[cached_start]="#50" theme[cached_mid]="" theme[cached_end]="#ff" # Mem/Disk available meter theme[available_start]="#50" theme[available_mid]="" theme[available_end]="#ff" # Mem/Disk used meter theme[used_start]="#50" theme[used_mid]="" theme[used_end]="#ff" # Download graph colors theme[download_start]="#30" theme[download_mid]="" theme[download_end]="#ff" # Upload graph colors theme[upload_start]="#30" theme[upload_mid]="" theme[upload_end]="#ff"btop-1.3.0/themes/gruvbox_dark.theme000066400000000000000000000044451454653170500175060ustar00rootroot00000000000000#Bashtop gruvbox (https://github.com/morhetz/gruvbox) theme #by BachoSeven # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#1d2021" # Main text color theme[main_fg]="#a89984" # Title color for boxes theme[title]="#ebdbb2" # Higlight color for keyboard shortcuts theme[hi_fg]="#d79921" # Background color of selected items theme[selected_bg]="#282828" # Foreground color of selected items theme[selected_fg]="#fabd2f" # Color of inactive/disabled text theme[inactive_fg]="#282828" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#585858" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#98971a" # Cpu box outline color theme[cpu_box]="#a89984" # Memory/disks box outline color theme[mem_box]="#a89984" # Net up/down box outline color theme[net_box]="#a89984" # Processes box outline color theme[proc_box]="#a89984" # Box divider line and small boxes line color theme[div_line]="#a89984" # Temperature graph colors theme[temp_start]="#458588" theme[temp_mid]="#d3869b" theme[temp_end]="#fb4394" # CPU graph colors theme[cpu_start]="#b8bb26" theme[cpu_mid]="#d79921" theme[cpu_end]="#fb4934" # Mem/Disk free meter theme[free_start]="#4e5900" theme[free_mid]="" theme[free_end]="#98971a" # Mem/Disk cached meter theme[cached_start]="#458588" theme[cached_mid]="" theme[cached_end]="#83a598" # Mem/Disk available meter theme[available_start]="#d79921" theme[available_mid]="" theme[available_end]="#fabd2f" # Mem/Disk used meter theme[used_start]="#cc241d" theme[used_mid]="" theme[used_end]="#fb4934" # Download graph colors theme[download_start]="#3d4070" theme[download_mid]="#6c71c4" theme[download_end]="#a3a8f7" # Upload graph colors theme[upload_start]="#701c45" theme[upload_mid]="#b16286" theme[upload_end]="#d3869b" btop-1.3.0/themes/gruvbox_dark_v2.theme000066400000000000000000000050711454653170500201110ustar00rootroot00000000000000# Bashtop gruvbox (https://github.com/morhetz/gruvbox) theme # First version created By BachoSeven # Adjustments to proper colors by Pietryszak (https://github.com/pietryszak/) # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#282828" # Main text color theme[main_fg]="#EBDBB2" # Title color for boxes theme[title]="#EBDBB2" # Highlight color for keyboard shortcuts theme[hi_fg]="#CC241D" # Background color of selected items theme[selected_bg]="#32302F" # Foreground color of selected items theme[selected_fg]="#D3869B" # Color of inactive/disabled text theme[inactive_fg]="#3C3836" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#A89984" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#98971A" # Cpu box outline color theme[cpu_box]="#A89984" # Memory/disks box outline color theme[mem_box]="#A89984" # Net up/down box outline color theme[net_box]="#A89984" # Processes box outline color theme[proc_box]="#A89984" # Box divider line and small boxes line color theme[div_line]="#A89984" # Temperature graph colors theme[temp_start]="#98971A" theme[temp_mid]="" theme[temp_end]="#CC241D" # CPU graph colors theme[cpu_start]="#8EC07C" theme[cpu_mid]="#D79921" theme[cpu_end]="#CC241D" # Mem/Disk free meter theme[free_start]="#CC241D" theme[free_mid]="#D79921" theme[free_end]="#8EC07C" # Mem/Disk cached meter theme[cached_start]="#458588" theme[cached_mid]="#83A598" theme[cached_end]="#8EC07C" # Mem/Disk available meter theme[available_start]="#CC241D" theme[available_mid]="#D65D0E" theme[available_end]="#FABD2F" # Mem/Disk used meter theme[used_start]="#8EC07C" theme[used_mid]="#D65D0E" theme[used_end]="#CC241D" # Download graph colors theme[download_start]="#98971A" theme[download_mid]="#689d6A" theme[download_end]="#B8BB26" # Upload graph colors theme[upload_start]="#CC241D" theme[upload_mid]="#D65d0E" theme[upload_end]="#FABF2F" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#8EC07C" theme[process_mid]="#FE8019" theme[process_end]="#CC241D" btop-1.3.0/themes/gruvbox_material_dark.theme000066400000000000000000000044101454653170500213540ustar00rootroot00000000000000# Btop gruvbox material dark (https://github.com/sainnhe/gruvbox-material) theme # by Marco Radocchia # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#282828" # Main text color theme[main_fg]="#d4be98" # Title color for boxes theme[title]="#d4be98" # Higlight color for keyboard shortcuts theme[hi_fg]="#ea6962" # Background color of selected items theme[selected_bg]="#d8a657" # Foreground color of selected items theme[selected_fg]="#282828" # Color of inactive/disabled text theme[inactive_fg]="#282828" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#665c54" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#a9b665" # Cpu box outline color theme[cpu_box]="#7c6f64" # Memory/disks box outline color theme[mem_box]="#7c6f64" # Net up/down box outline color theme[net_box]="#7c6f64" # Processes box outline color theme[proc_box]="#7c6f64" # Box divider line and small boxes line color theme[div_line]="#7c6f64" # Temperature graph colors theme[temp_start]="#7daea3" theme[temp_mid]="#e78a4e" theme[temp_end]="#ea6962" # CPU graph colors theme[cpu_start]="#a9b665" theme[cpu_mid]="#d8a657" theme[cpu_end]="#ea6962" # Mem/Disk free meter theme[free_start]="#89b482" theme[free_mid]="" theme[free_end]="" # Mem/Disk cached meter theme[cached_start]="#7daea3" theme[cached_mid]="" theme[cached_end]="" # Mem/Disk available meter theme[available_start]="#d8a657" theme[available_mid]="" theme[available_end]="" # Mem/Disk used meter theme[used_start]="#ea6962" theme[used_mid]="" theme[used_end]="" # Download graph colors theme[download_start]="#e78a4e" theme[download_mid]="" theme[download_end]="" # Upload graph colors theme[upload_start]="#d3869b" theme[upload_mid]="" theme[upload_end]="" btop-1.3.0/themes/horizon.theme000066400000000000000000000041041454653170500164710ustar00rootroot00000000000000# All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#1C1E26" # Main text color theme[main_fg]="#f8f8f2" # Title color for boxes theme[title]="#f8f8f2" # Highlight color for keyboard shortcuts theme[hi_fg]="#B877DB" # Background color of selected items theme[selected_bg]="#282b37" # Foreground color of selected items theme[selected_fg]="#f8f8f2" # Color of inactive/disabled text theme[inactive_fg]="#272e33" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#f8f8f2" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#27D796" # Cpu box outline color theme[cpu_box]="#B877DB" # Memory/disks box outline color theme[mem_box]="#27D796" # Net up/down box outline color theme[net_box]="#E95678" # Processes box outline color theme[proc_box]="#25B2BC" # Box divider line and small boxes line color theme[div_line]="#272e33" # Temperature graph colors theme[temp_start]="#27D796" theme[temp_mid]="#FAC29A" theme[temp_end]="#E95678" # CPU graph colors theme[cpu_start]="#27D796" theme[cpu_mid]="#FAC29A" theme[cpu_end]="#E95678" # Mem/Disk free meter theme[free_start]="#E95678" theme[free_mid]="#FAC29A" theme[free_end]="#27D796" # Mem/Disk cached meter theme[cached_start]="#27D796" theme[cached_mid]="#FAC29A" theme[cached_end]="#E95678" # Mem/Disk available meter theme[available_start]="#27D796" theme[available_mid]="#FAC29A" theme[available_end]="#E95678" # Mem/Disk used meter theme[used_start]="#27D796" theme[used_mid]="#FAC29A" theme[used_end]="#E95678" # Download graph colors theme[download_start]="#27D796" theme[download_mid]="#FAC29A" theme[download_end]="#E95678" # Upload graph colors theme[upload_start]="#27D796" theme[upload_mid]="#FAC29A" theme[upload_end]="#E95678" btop-1.3.0/themes/kyli0x.theme000066400000000000000000000042371454653170500162300ustar00rootroot00000000000000#Bashtop Kyli0x Theme #by Kyli0x # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#222222" # Main text color theme[main_fg]="#e8f6f5" # Title color for boxes theme[title]="#e8f6f5" # Highlight color for keyboard shortcuts theme[hi_fg]="#21d6c9" # Background color of selected item in processes box theme[selected_bg]="#1aaba0" # Foreground color of selected item in processes box theme[selected_fg]="#e8f6f5" # Color of inactive/disabled text theme[inactive_fg]="#5ec4bc" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#ba1a84" # Background color of the percentage meters theme[meter_bg]="#5ec4bc" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#21d6c9" # Cpu box outline color theme[cpu_box]="#d486d4" # Memory/disks box outline color theme[mem_box]="#d486d4" # Net up/down box outline color theme[net_box]="#d486d4" # Processes box outline color theme[proc_box]="#d486d4" # Box divider line and small boxes line color theme[div_line]="#80638e" # Temperature graph colors theme[temp_start]="#21d6c9" theme[temp_mid]="#1aaba0" theme[temp_end]="#5ec4bc" # CPU graph colors theme[cpu_start]="#21d6c9" theme[cpu_mid]="#1aaba0" theme[cpu_end]="#5ec4bc" # Mem/Disk free meter theme[free_start]="#21d6c9" theme[free_mid]="#1aaba0" theme[free_end]="#5ec4bc" # Mem/Disk cached meter theme[cached_start]="#21d6c9" theme[cached_mid]="#1aaba0" theme[cached_end]="#5ec4bc" # Mem/Disk available meter theme[available_start]="#21d6c9" theme[available_mid]="#1aaba0" theme[available_end]="#5ec4bc" # Mem/Disk used meter theme[used_start]="#21d6c9" theme[used_mid]="#1aaba0" theme[used_end]="#5ec4bc" # Download graph colors theme[download_start]="#21d6c9" theme[download_mid]="#1aaba0" theme[download_end]="#5ec4bc" # Upload graph colors theme[upload_start]="#ec95ec" theme[upload_mid]="#1aaba0" theme[upload_end]="#5ec4bc" # Process box color gradient for threads, mem and cpu usage theme[process_start]="#21d6c9" theme[process_mid]="#1aaba0" theme[process_end]="#ba1a84" btop-1.3.0/themes/matcha-dark-sea.theme000066400000000000000000000045121454653170500177260ustar00rootroot00000000000000#Bashtop matcha-dark-sea theme #by TheCynicalTeam # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="" # Main text color theme[main_fg]="#F8F8F2" # Title color for boxes theme[title]="#F8F8F2" # Higlight color for keyboard shortcuts theme[hi_fg]="#2eb398" # Background color of selected item in processes box theme[selected_bg]="#0d493d" # Foreground color of selected item in processes box theme[selected_fg]="#F8F8F2" # Color of inactive/disabled text theme[inactive_fg]="#595647" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#797667" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#33b165" # Cpu box outline color theme[cpu_box]="#75715E" # Memory/disks box outline color theme[mem_box]="#75715E" # Net up/down box outline color theme[net_box]="#75715E" # Processes box outline color theme[proc_box]="#75715E" # Box divider line and small boxes line color theme[div_line]="#595647" # Temperature graph colors theme[temp_start]="#7976B7" theme[temp_mid]="#D8B8B2" theme[temp_end]="#33b165" # CPU graph colors theme[cpu_start]="#33b165" theme[cpu_mid]="#F8F8F2" #2eb398" theme[cpu_end]="#2eb398" # Mem/Disk free meter theme[free_start]="#75715E" theme[free_mid]="#a9c474" theme[free_end]="#e2f5bc" # Mem/Disk cached meter theme[cached_start]="#75715E" theme[cached_mid]="#66D9EF" theme[cached_end]="#aae7f2" # Mem/Disk available meter theme[available_start]="#75715E" theme[available_mid]="#E6DB74" theme[available_end]="#f2ecb6" # Mem/Disk used meter theme[used_start]="#75715E" theme[used_mid]="#2eb398" theme[used_end]="#33b165" # Download graph colors theme[download_start]="#2d2042" theme[download_mid]="#2eb398" theme[download_end]="#33b165" # Upload graph colors theme[upload_start]="#0d493d" theme[upload_mid]="#2eb398" theme[upload_end]="#33b165" btop-1.3.0/themes/monokai.theme000066400000000000000000000045071454653170500164450ustar00rootroot00000000000000#Bashtop monokai theme #by aristocratos # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#060604" # Main text color theme[main_fg]="#F8F8F2" # Title color for boxes theme[title]="#F8F8F2" # Higlight color for keyboard shortcuts theme[hi_fg]="#F92672" # Background color of selected item in processes box theme[selected_bg]="#7a1137" # Foreground color of selected item in processes box theme[selected_fg]="#F8F8F2" # Color of inactive/disabled text theme[inactive_fg]="#595647" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#797667" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#A6E22E" # Cpu box outline color theme[cpu_box]="#75715E" # Memory/disks box outline color theme[mem_box]="#75715E" # Net up/down box outline color theme[net_box]="#75715E" # Processes box outline color theme[proc_box]="#75715E" # Box divider line and small boxes line color theme[div_line]="#595647" # Temperature graph colors theme[temp_start]="#7976B7" theme[temp_mid]="#D8B8B2" theme[temp_end]="#F92672" # CPU graph colors theme[cpu_start]="#A6E22E" theme[cpu_mid]="#F8F8F2" #b05475" theme[cpu_end]="#F92672" # Mem/Disk free meter theme[free_start]="#75715E" theme[free_mid]="#a9c474" theme[free_end]="#e2f5bc" # Mem/Disk cached meter theme[cached_start]="#75715E" theme[cached_mid]="#66D9EF" theme[cached_end]="#aae7f2" # Mem/Disk available meter theme[available_start]="#75715E" theme[available_mid]="#E6DB74" theme[available_end]="#f2ecb6" # Mem/Disk used meter theme[used_start]="#75715E" theme[used_mid]="#F92672" theme[used_end]="#ff87b2" # Download graph colors theme[download_start]="#2d2042" theme[download_mid]="#7352a8" theme[download_end]="#ccaefc" # Upload graph colors theme[upload_start]="#570d33" theme[upload_mid]="#cf277d" theme[upload_end]="#fa91c7" btop-1.3.0/themes/night-owl.theme000066400000000000000000000044151454653170500167160ustar00rootroot00000000000000#Bashtop theme with night-owl colors #by zkourouma # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#ffffff", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#011627" # Main text color theme[main_fg]="#d6deeb" # Title color for boxes theme[title]="#ffffff" # Higlight color for keyboard shortcuts theme[hi_fg]="#addb67" # Background color of selected items theme[selected_bg]="#000000" # Foreground color of selected items theme[selected_fg]="#ffeb95" # Color of inactive/disabled text theme[inactive_fg]="#575656" # Color of text appearing on top of graphs, i.e uptime and current network graph scaling theme[graph_text]="#585858" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#22da6e" # Cpu box outline color theme[cpu_box]="#ffffff" # Memory/disks box outline color theme[mem_box]="#ffffff" # Net up/down box outline color theme[net_box]="#ffffff" # Processes box outline color theme[proc_box]="#ffffff" # Box divider line and small boxes line color theme[div_line]="#ffffff" # Temperature graph colors theme[temp_start]="#82aaff" theme[temp_mid]="#c792ea" theme[temp_end]="#fb4394" # CPU graph colors theme[cpu_start]="#22da6e" theme[cpu_mid]="#addb67" theme[cpu_end]="#ef5350" # Mem/Disk free meter theme[free_start]="#4e5900" theme[free_mid]="" theme[free_end]="#22da6e" # Mem/Disk cached meter theme[cached_start]="#82aaff" theme[cached_mid]="" theme[cached_end]="#82aaff" # Mem/Disk available meter theme[available_start]="#addb67" theme[available_mid]="" theme[available_end]="#ffeb95" # Mem/Disk used meter theme[used_start]="#ef5350" theme[used_mid]="" theme[used_end]="#ef5350" # Download graph colors theme[download_start]="#3d4070" theme[download_mid]="#6c71c4" theme[download_end]="#a3a8f7" # Upload graph colors theme[upload_start]="#701c45" theme[upload_mid]="#c792ea" theme[upload_end]="#c792ea" btop-1.3.0/themes/nord.theme000066400000000000000000000044071454653170500157510ustar00rootroot00000000000000#Bashtop theme with nord palette (https://www.nordtheme.com) #by Justin Zobel # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#ffffff", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#2E3440" # Main text color theme[main_fg]="#D8DEE9" # Title color for boxes theme[title]="#8FBCBB" # Higlight color for keyboard shortcuts theme[hi_fg]="#5E81AC" # Background color of selected item in processes box theme[selected_bg]="#4C566A" # Foreground color of selected item in processes box theme[selected_fg]="#ECEFF4" # Color of inactive/disabled text theme[inactive_fg]="#4C566A" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#5E81AC" # Cpu box outline color theme[cpu_box]="#4C566A" # Memory/disks box outline color theme[mem_box]="#4C566A" # Net up/down box outline color theme[net_box]="#4C566A" # Processes box outline color theme[proc_box]="#4C566A" # Box divider line and small boxes line color theme[div_line]="#4C566A" # Temperature graph colors theme[temp_start]="#81A1C1" theme[temp_mid]="#88C0D0" theme[temp_end]="#ECEFF4" # CPU graph colors theme[cpu_start]="#81A1C1" theme[cpu_mid]="#88C0D0" theme[cpu_end]="#ECEFF4" # Mem/Disk free meter theme[free_start]="#81A1C1" theme[free_mid]="#88C0D0" theme[free_end]="#ECEFF4" # Mem/Disk cached meter theme[cached_start]="#81A1C1" theme[cached_mid]="#88C0D0" theme[cached_end]="#ECEFF4" # Mem/Disk available meter theme[available_start]="#81A1C1" theme[available_mid]="#88C0D0" theme[available_end]="#ECEFF4" # Mem/Disk used meter theme[used_start]="#81A1C1" theme[used_mid]="#88C0D0" theme[used_end]="#ECEFF4" # Download graph colors theme[download_start]="#81A1C1" theme[download_mid]="#88C0D0" theme[download_end]="#ECEFF4" # Upload graph colors theme[upload_start]="#81A1C1" theme[upload_mid]="#88C0D0" theme[upload_end]="#ECEFF4" btop-1.3.0/themes/onedark.theme000066400000000000000000000033341454653170500164300ustar00rootroot00000000000000# Theme: OneDark # By: Vitor Melo # Main bg theme[main_bg]="#282c34" # Main text color theme[main_fg]="#abb2bf" # Title color for boxes theme[title]="#abb2bf" # Higlight color for keyboard shortcuts theme[hi_fg]="#61afef" # Background color of selected item in processes box theme[selected_bg]="#2c313c" # Foreground color of selected item in processes box theme[selected_fg]="#abb2bf" # Color of inactive/disabled text theme[inactive_fg]="#5c6370" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#61afef" # Cpu box outline color theme[cpu_box]="#5c6370" # Memory/disks box outline color theme[mem_box]="#5c6370" # Net up/down box outline color theme[net_box]="#5c6370" # Processes box outline color theme[proc_box]="#5c6370" # Box divider line and small boxes line color theme[div_line]="#5c6370" # Temperature graph colors theme[temp_start]="#98c379" theme[temp_mid]="#e5c07b" theme[temp_end]="#e06c75" # CPU graph colors theme[cpu_start]="#98c379" theme[cpu_mid]="#e5c07b" theme[cpu_end]="#e06c75" # Mem/Disk free meter theme[free_start]="#98c379" theme[free_mid]="#e5c07b" theme[free_end]="#e06c75" # Mem/Disk cached meter theme[cached_start]="#98c379" theme[cached_mid]="#e5c07b" theme[cached_end]="#e06c75" # Mem/Disk available meter theme[available_start]="#98c379" theme[available_mid]="#e5c07b" theme[available_end]="#e06c75" # Mem/Disk used meter theme[used_start]="#98c379" theme[used_mid]="#e5c07b" theme[used_end]="#e06c75" # Download graph colors theme[download_start]="#98c379" theme[download_mid]="#e5c07b" theme[download_end]="#e06c75" # Upload graph colors theme[upload_start]="#98c379" theme[upload_mid]="#e5c07b" theme[upload_end]="#e06c75" btop-1.3.0/themes/paper.theme000066400000000000000000000034661454653170500161220ustar00rootroot00000000000000# Bashtop Paper theme # c/o @s6muel # inspired by @yorickpeterse's vim-paper theme at https://gitlab.com/yorickpeterse/vim-paper # # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#F2EEDE" # Main text color theme[main_fg]="#00" # Title color for boxes theme[title]="#00" # Higlight color for keyboard shortcuts theme[hi_fg]="#CC3E28" # Background color of selected item in processes box theme[selected_bg]="#D8D5C7" # Foreground color of selected item in processes box theme[selected_fg]="#00" # Color of inactive/disabled text theme[inactive_fg]="#d8d5c7" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#00" # Cpu box outline color theme[cpu_box]="#00" # Memory/disks box outline color theme[mem_box]="#00" # Net up/down box outline color theme[net_box]="#00" # Processes box outline color theme[proc_box]="#00" # Box divider line and small boxes line color theme[div_line]="#00" # Temperature graph colors theme[temp_start]="#55" theme[temp_mid]="#00" theme[temp_end]="#CC3E28" # CPU graph colors theme[cpu_start]="#55" theme[cpu_mid]="#00" theme[cpu_end]="#CC3E28" # Mem/Disk free meter theme[free_start]="#216609" theme[free_mid]="" theme[free_end]="#216609" # Mem/Disk cached meter theme[cached_start]="#1e6fcc" theme[cached_mid]="" theme[cached_end]="#1e6fcc" # Mem/Disk available meter theme[available_start]="#216609" theme[available_mid]="" theme[available_end]="#216609" # Mem/Disk used meter theme[used_start]="#CC3E28" theme[used_mid]="" theme[used_end]="#CC3E28" # Download graph colors theme[download_start]="#55" theme[download_mid]="#00" theme[download_end]="#CC3E28" # Upload graph colors theme[upload_start]="#55" theme[upload_mid]="#00" theme[upload_end]="#CC3E28" btop-1.3.0/themes/solarized_dark.theme000066400000000000000000000042161454653170500200020ustar00rootroot00000000000000#Bashtop solarized theme #by aristocratos # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#002b36" # Main text color theme[main_fg]="#eee8d5" # Title color for boxes theme[title]="#fdf6e3" # Higlight color for keyboard shortcuts theme[hi_fg]="#b58900" # Background color of selected items theme[selected_bg]="#073642" # Foreground color of selected items theme[selected_fg]="#d6a200" # Color of inactive/disabled text theme[inactive_fg]="#073642" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#bad600" # Cpu box outline color theme[cpu_box]="#586e75" # Memory/disks box outline color theme[mem_box]="#586e75" # Net up/down box outline color theme[net_box]="#586e75" # Processes box outline color theme[proc_box]="#586e75" # Box divider line and small boxes line color theme[div_line]="#586e75" # Temperature graph colors theme[temp_start]="#268bd2" theme[temp_mid]="#ccb5f7" theme[temp_end]="#fc5378" # CPU graph colors theme[cpu_start]="#adc700" theme[cpu_mid]="#d6a200" theme[cpu_end]="#e65317" # Mem/Disk free meter theme[free_start]="#4e5900" theme[free_mid]="" theme[free_end]="#bad600" # Mem/Disk cached meter theme[cached_start]="#114061" theme[cached_mid]="" theme[cached_end]="#268bd2" # Mem/Disk available meter theme[available_start]="#705500" theme[available_mid]="" theme[available_end]="#edb400" # Mem/Disk used meter theme[used_start]="#6e1718" theme[used_mid]="" theme[used_end]="#e02f30" # Download graph colors theme[download_start]="#3d4070" theme[download_mid]="#6c71c4" theme[download_end]="#a3a8f7" # Upload graph colors theme[upload_start]="#701c45" theme[upload_mid]="#d33682" theme[upload_end]="#f56caf"btop-1.3.0/themes/solarized_light.theme000066400000000000000000000042401454653170500201650ustar00rootroot00000000000000#solarized_light theme #modified from solarized_dark theme # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#fdf6e3" # Main text color theme[main_fg]="#586e75" # Title color for boxes theme[title]="#002b36" # Higlight color for keyboard shortcuts theme[hi_fg]="#b58900" # Background color of selected items theme[selected_bg]="#eee8d5" # Foreground color of selected items theme[selected_fg]="#b58900" # Color of inactive/disabled text theme[inactive_fg]="#eee8d5" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#d33682" # Cpu box outline color theme[cpu_box]="#93a1a1" # Memory/disks box outline color theme[mem_box]="#93a1a1" # Net up/down box outline color theme[net_box]="#93a1a1" # Processes box outline color theme[proc_box]="#93a1a1" # Box divider line and small boxes line color theme[div_line]="#93a1a1" # Temperature graph colors theme[temp_start]="#268bd2" theme[temp_mid]="#ccb5f7" theme[temp_end]="#fc5378" # CPU graph colors theme[cpu_start]="#adc700" theme[cpu_mid]="#d6a200" theme[cpu_end]="#e65317" # Mem/Disk free meter theme[free_start]="#4e5900" theme[free_mid]="" theme[free_end]="#bad600" # Mem/Disk cached meter theme[cached_start]="#114061" theme[cached_mid]="" theme[cached_end]="#268bd2" # Mem/Disk available meter theme[available_start]="#705500" theme[available_mid]="" theme[available_end]="#edb400" # Mem/Disk used meter theme[used_start]="#6e1718" theme[used_mid]="" theme[used_end]="#e02f30" # Download graph colors theme[download_start]="#3d4070" theme[download_mid]="#6c71c4" theme[download_end]="#a3a8f7" # Upload graph colors theme[upload_start]="#701c45" theme[upload_mid]="#d33682" theme[upload_end]="#f56caf" btop-1.3.0/themes/tokyo-night.theme000066400000000000000000000033431454653170500172610ustar00rootroot00000000000000# Theme: tokyo-night # By: Pascal Jaeger # Main bg theme[main_bg]="#1a1b26" # Main text color theme[main_fg]="#cfc9c2" # Title color for boxes theme[title]="#cfc9c2" # Higlight color for keyboard shortcuts theme[hi_fg]="#7dcfff" # Background color of selected item in processes box theme[selected_bg]="#414868" # Foreground color of selected item in processes box theme[selected_fg]="#cfc9c2" # Color of inactive/disabled text theme[inactive_fg]="#565f89" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#7dcfff" # Cpu box outline color theme[cpu_box]="#565f89" # Memory/disks box outline color theme[mem_box]="#565f89" # Net up/down box outline color theme[net_box]="#565f89" # Processes box outline color theme[proc_box]="#565f89" # Box divider line and small boxes line color theme[div_line]="#565f89" # Temperature graph colors theme[temp_start]="#9ece6a" theme[temp_mid]="#e0af68" theme[temp_end]="#f7768e" # CPU graph colors theme[cpu_start]="#9ece6a" theme[cpu_mid]="#e0af68" theme[cpu_end]="#f7768e" # Mem/Disk free meter theme[free_start]="#9ece6a" theme[free_mid]="#e0af68" theme[free_end]="#f7768e" # Mem/Disk cached meter theme[cached_start]="#9ece6a" theme[cached_mid]="#e0af68" theme[cached_end]="#f7768e" # Mem/Disk available meter theme[available_start]="#9ece6a" theme[available_mid]="#e0af68" theme[available_end]="#f7768e" # Mem/Disk used meter theme[used_start]="#9ece6a" theme[used_mid]="#e0af68" theme[used_end]="#f7768e" # Download graph colors theme[download_start]="#9ece6a" theme[download_mid]="#e0af68" theme[download_end]="#f7768e" # Upload graph colors theme[upload_start]="#9ece6a" theme[upload_mid]="#e0af68" theme[upload_end]="#f7768e" btop-1.3.0/themes/tokyo-storm.theme000066400000000000000000000033431454653170500173140ustar00rootroot00000000000000# Theme: tokyo-storm # By: Pascal Jaeger # Main bg theme[main_bg]="#24283b" # Main text color theme[main_fg]="#cfc9c2" # Title color for boxes theme[title]="#cfc9c2" # Higlight color for keyboard shortcuts theme[hi_fg]="#7dcfff" # Background color of selected item in processes box theme[selected_bg]="#414868" # Foreground color of selected item in processes box theme[selected_fg]="#cfc9c2" # Color of inactive/disabled text theme[inactive_fg]="#565f89" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#7dcfff" # Cpu box outline color theme[cpu_box]="#565f89" # Memory/disks box outline color theme[mem_box]="#565f89" # Net up/down box outline color theme[net_box]="#565f89" # Processes box outline color theme[proc_box]="#565f89" # Box divider line and small boxes line color theme[div_line]="#565f89" # Temperature graph colors theme[temp_start]="#9ece6a" theme[temp_mid]="#e0af68" theme[temp_end]="#f7768e" # CPU graph colors theme[cpu_start]="#9ece6a" theme[cpu_mid]="#e0af68" theme[cpu_end]="#f7768e" # Mem/Disk free meter theme[free_start]="#9ece6a" theme[free_mid]="#e0af68" theme[free_end]="#f7768e" # Mem/Disk cached meter theme[cached_start]="#9ece6a" theme[cached_mid]="#e0af68" theme[cached_end]="#f7768e" # Mem/Disk available meter theme[available_start]="#9ece6a" theme[available_mid]="#e0af68" theme[available_end]="#f7768e" # Mem/Disk used meter theme[used_start]="#9ece6a" theme[used_mid]="#e0af68" theme[used_end]="#f7768e" # Download graph colors theme[download_start]="#9ece6a" theme[download_mid]="#e0af68" theme[download_end]="#f7768e" # Upload graph colors theme[upload_start]="#9ece6a" theme[upload_mid]="#e0af68" theme[upload_end]="#f7768e" btop-1.3.0/themes/tomorrow-night.theme000066400000000000000000000043611454653170500200050ustar00rootroot00000000000000#Nord theme but using the Tomorrow Night palette #by Appuchia # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#ffffff", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#1d1f21" # Main text color theme[main_fg]="#c5c8c6" # Title color for boxes theme[title]="#c5c8c6" # Higlight color for keyboard shortcuts theme[hi_fg]="#81beb7" # Background color of selected item in processes box theme[selected_bg]="#282a2e" # Foreground color of selected item in processes box theme[selected_fg]="#c5c8c6" # Color of inactive/disabled text theme[inactive_fg]="#373b41" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#969896" # Cpu box outline color theme[cpu_box]="#81a2be" # Memory/disks box outline color theme[mem_box]="#81a2be" # Net up/down box outline color theme[net_box]="#81a2be" # Processes box outline color theme[proc_box]="#81a2be" # Box divider line and small boxes line color theme[div_line]="#81a2be" # Temperature graph colors theme[temp_start]="#b5bd68" theme[temp_mid]="#f0c674" theme[temp_end]="#cc6666" # CPU graph colors theme[cpu_start]="#b5bd68" theme[cpu_mid]="#f0c674" theme[cpu_end]="#cc6666" # Mem/Disk free meter theme[free_start]="#b5bd68" theme[free_mid]="#f0c674" theme[free_end]="#cc6666" # Mem/Disk cached meter theme[cached_start]="#b5bd68" theme[cached_mid]="#f0c674" theme[cached_end]="#cc6666" # Mem/Disk available meter theme[available_start]="#b5bd68" theme[available_mid]="#f0c674" theme[available_end]="#cc6666" # Mem/Disk used meter theme[used_start]="#b5bd68" theme[used_mid]="#f0c674" theme[used_end]="#cc6666" # Download graph colors theme[download_start]="#b5bd68" theme[download_mid]="#f0c674" theme[download_end]="#cc6666" # Upload graph colors theme[upload_start]="#b5bd68" theme[upload_mid]="#f0c674" theme[upload_end]="#cc6666" btop-1.3.0/themes/whiteout.theme000066400000000000000000000042631454653170500166570ustar00rootroot00000000000000#Bashtop "whiteout" theme #by aristocratos # Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" # example for white: "#FFFFFF", "#ff" or "255 255 255". # All graphs and meters can be gradients # For single color graphs leave "mid" and "end" variable empty. # Use "start" and "end" variables for two color gradient # Use "start", "mid" and "end" for three color gradient # Main background, empty for terminal default, need to be empty if you want transparent background theme[main_bg]="#ff" # Main text color theme[main_fg]="#30" # Title color for boxes theme[title]="#10" # Higlight color for keyboard shortcuts theme[hi_fg]="#284d75" # Background color of selected item in processes box theme[selected_bg]="#15283d" # Foreground color of selected item in processes box theme[selected_fg]="#ff" # Color of inactive/disabled text theme[inactive_fg]="#dd" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text theme[proc_misc]="#03521d" # Cpu box outline color theme[cpu_box]="#1a361e" # Memory/disks box outline color theme[mem_box]="#3d3c14" # Net up/down box outline color theme[net_box]="#1a1742" # Processes box outline color theme[proc_box]="#3b1515" # Box divider line and small boxes line color theme[div_line]="#80" # Temperature graph colors theme[temp_start]="#184567" theme[temp_mid]="#122c87" theme[temp_end]="#9e0061" # CPU graph colors theme[cpu_start]="#0b8e44" theme[cpu_mid]="#a49104" theme[cpu_end]="#8d0202" # Mem/Disk free meter theme[free_start]="#b0d090" theme[free_mid]="#70ba26" theme[free_end]="#496600" # Mem/Disk cached meter theme[cached_start]="#26c5ff" theme[cached_mid]="#74e6fc" theme[cached_end]="#0b1a29" # Mem/Disk available meter theme[available_start]="#ffb814" theme[available_mid]="#ffd77a" theme[available_end]="#292107" # Mem/Disk used meter theme[used_start]="#ff4769" theme[used_mid]="#d9626d" theme[used_end]="#3b1f1c" # Download graph colors theme[download_start]="#8d82de" theme[download_mid]="#413786" theme[download_end]="#130f29" # Upload graph colors theme[upload_start]="#f590f9" theme[upload_mid]="#722e76" theme[upload_end]="#2b062d"