diff options
| author | Mohammad Reza Karimi <m.r.karimi.j@gmail.com> | 2025-12-16 13:27:11 -0500 |
|---|---|---|
| committer | Mohammad Reza Karimi <m.r.karimi.j@gmail.com> | 2025-12-16 13:27:11 -0500 |
| commit | 5a41da5881a11ba3fdc3890c342aa3b7eb53e0cf (patch) | |
| tree | 92b7f7af29ed4a9dcc0eab33490c6225cce9b14a | |
| parent | 856e361d56c201cbb1b1521c8b93b747163b1376 (diff) | |
add initial version (incomplete)
109 files changed, 17520 insertions, 0 deletions
diff --git a/alacritty/dot-config/alacritty/alacritty.toml b/alacritty/dot-config/alacritty/alacritty.toml new file mode 100644 index 0000000..6e906f5 --- /dev/null +++ b/alacritty/dot-config/alacritty/alacritty.toml @@ -0,0 +1,48 @@ +[general] +live_config_reload = true + +[window] +opacity = 0.95 +padding = { x = 3, y = 3 } +dynamic_title = true + +[font] +normal = { family = "Comic Code" } +# normal = { family = "IosevkaInput" } +# italic = { family = "IosevkaInput", style = "W360 Oblique" } +size = 11 + +[scrolling] +history = 5000 +multiplier = 3 + +[selection] +save_to_clipboard = false + +[cursor] +unfocused_hollow = true + +[mouse] +hide_when_typing = true + +[keyboard] +bindings = [ + { key = "C", mods = "Alt", mode = "~Vi", action = "Copy" }, + { key = "V", mods = "Alt", mode = "~Vi", action = "Paste" }, + { key = "J", mods = "Alt|Shift", mode = "~Vi", action = "DecreaseFontSize" }, + { key = "K", mods = "Alt|Shift", mode = "~Vi", action = "IncreaseFontSize" }, + { key = "J", mods = "Alt", mode = "~Vi", action = "ScrollLineDown" }, + { key = "K", mods = "Alt", mode = "~Vi", action = "ScrollLineUp" }, + { key = "F11", action = "ToggleFullscreen" }, + { key = "F5", command = { program = "alacritty", args = [ + "msg", + "config", + "font.size=25", + ] } }, + { key = "F5", mods = "Shift", command = { program = "alacritty", args = [ + "msg", + "config", + "--reset", + ] } }, + { key = "N", mods = "Control|Shift", mode = "~Vi", action = "CreateNewWindow" }, +] diff --git a/bash/.stow-local-ignore b/bash/.stow-local-ignore new file mode 100644 index 0000000..b43bf86 --- /dev/null +++ b/bash/.stow-local-ignore @@ -0,0 +1 @@ +README.md diff --git a/bash/README.md b/bash/README.md new file mode 100644 index 0000000..7262dbf --- /dev/null +++ b/bash/README.md @@ -0,0 +1,64 @@ +# Notes for using bash as root + +You can copy the gentoo color script to the root user: + +```sh +sudo cp ~/dotfiles/bash/dot-config/bash/gentoo-color.bash /root/.gentoo-color.bash +sudo cp /etc/skel/.bash_profile /root/ +``` + +and set its `bashrc` as follows: + +```bash +# +# /root/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +source "$HOME"/.gentoo-color.bash + +ls() +{ + if ((gentoo_color > 0)); then + command ls --color=auto "$@" + else + command ls "$@" + fi +} + +# coreutils +alias cp='cp -riv' +alias la='ls -la' +alias ll='ls -lah' +alias l='ls -l' +alias ls='ls -p -hN --group-directories-first' +alias mkdir='mkdir -pv' +alias mv='mv -iv' +alias rm='rm -iv' +alias ..='echo "cd .."; cd ..' +alias ...='echo "cd ../.."; cd ../..' + +alias SS='systemctl' +alias p='pacman' +alias v='nvim' + +lf() +{ + export LF_CD_FILE=/tmp/.lfcd-root-$$ + command lf "$@" + if [ -s "$LF_CD_FILE" ]; then + local DIR + DIR="$(realpath "$(cat "$LF_CD_FILE")")" + if [ "$DIR" != "$PWD" ]; then + echo "cd to $DIR" + cd "$DIR" || exit + fi + command rm "$LF_CD_FILE" + fi + unset LF_CD_FILE +} + +bind '"\C-o":"\C-ulf\C-m"' +``` diff --git a/bash/dot-bash_completion b/bash/dot-bash_completion new file mode 100644 index 0000000..7637c12 --- /dev/null +++ b/bash/dot-bash_completion @@ -0,0 +1 @@ +. $HOME/.config/bash/complete_alias diff --git a/bash/dot-bash_profile b/bash/dot-bash_profile new file mode 100644 index 0000000..f91cff9 --- /dev/null +++ b/bash/dot-bash_profile @@ -0,0 +1,7 @@ +# +# ~/.bash_profile +# + +[[ -f ~/.bashrc ]] && . ~/.bashrc + +[[ -f ~/.profile ]] && . ~/.profile diff --git a/bash/dot-bashrc b/bash/dot-bashrc new file mode 100644 index 0000000..678235f --- /dev/null +++ b/bash/dot-bashrc @@ -0,0 +1,69 @@ +# ~/.bashrc +# vim: ft=bash + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +export HISTCONTROL='ignoredups' +export HISTIGNORE='ls *':'history':'cd':'sudo -i':'yay':'lf':'cd ..':'nvim':'v':'cvim' +export HISTFILESIZE=100000 +export HISTSIZE=10000 + +shopt -s autocd +shopt -s checkwinsize + +source "${XDG_CONFIG_HOME:-$HOME/.config}"/bash/gentoo-color.bash + +ls() +{ + if ((gentoo_color > 0)); then + command ls --color=auto "$@" + else + command ls "$@" + fi +} + +# coreutils +alias cp='cp -riv' +alias la='ls -la' +alias ll='ls -lah' +alias l='ls -l' +alias ls='ls -p -hN --group-directories-first' +alias mkdir='mkdir -pv' +alias mv='mv -iv' +alias rm='rm -iv' +alias ..='echo "cd .."; cd ..' +alias ...='echo "cd ../.."; cd ../..' + +# program aliases +alias m='neomutt' +alias p='sudo pacman' +alias SS='sudo systemctl' +alias Su='systemctl --user' +alias v='nvim' +alias z='setsid runapp -- zathura' + +# source: https://wiki.archlinux.org/title/GnuPG#Configure_pinentry_to_use_the_correct_TTY +GPG_TTY="$(tty)" +export GPG_TTY +gpg-connect-agent updatestartuptty /bye >/dev/null + +# cp and mv but with rsync +# source: https://wiki.archlinux.org/title/Rsync#As_cp/mv_alternative +cpr() { + rsync --archive -hh --partial --info=stats1,progress2 --modify-window=1 "$@" +} + +mvr() { + rsync --archive -hh --partial --info=stats1,progress2 --modify-window=1 --remove-source-files "$@" +} + +source "${XDG_CONFIG_HOME:-$HOME/.config}"/bash/functions.bash + +bind '"\C-o":"\C-ulf\C-m"' + +export FZF_DEFAULT_COMMAND='fd --type f --strip-cwd-prefix --hidden --follow --exclude .git' +export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND" +eval "$(fzf --bash)" + +stty -ixon diff --git a/bash/dot-config/bash/complete_alias b/bash/dot-config/bash/complete_alias new file mode 100644 index 0000000..a7bf661 --- /dev/null +++ b/bash/dot-config/bash/complete_alias @@ -0,0 +1,1062 @@ +#!/bin/bash + +## :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: +## automagical shell alias completion; +## :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: + +## ============================================================================ +## Copyright (C) 2016-2021 Cyker Way +## +## This program is free software: you can redistribute it and/or modify it +## under the terms of the GNU General Public License as published by the Free +## Software Foundation, either version 3 of the License, or (at your option) +## any later version. +## +## This program is distributed in the hope that it will be useful, but WITHOUT +## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +## more details. +## +## You should have received a copy of the GNU General Public License along with +## this program. If not, see <http://www.gnu.org/licenses/>. +## ============================================================================ + +## ============================================================================ +## # environment variables +## +## these are envars read by this script; users are advised to set these envars +## before sourcing this script to customize its behavior, even though some may +## still work if set after sourcing this script; these envar names must follow +## this naming convention: all letters uppercase, no leading underscore, words +## separated by one underscore; +## ============================================================================ + +## bool: true iff auto unmask alias commands; set it to false if auto unmask +## feels too slow, or custom unmask is necessary to make an unusual behavior; +COMPAL_AUTO_UNMASK="${COMPAL_AUTO_UNMASK:-0}" + +## ============================================================================ +## # variables +## ============================================================================ + +## register for keeping function return value; +__compal__retval= + +## refcnt for alias expansion; expand aliases iff `_refcnt == 0`; +__compal__refcnt=0 + +## an associative array of vanilla completions, keyed by command names; +## +## when we say this array stores "parsed" cspecs, we actually mean the cspecs +## have been parsed and indexed by command names in this array; cspec strings +## themselves have no difference between this array and `_raw_vanilla_cspecs`; +## +## example: +## +## _vanilla_cspecs["tee"]="complete -F _longopt tee" +## _vanilla_cspecs["type"]="complete -c type" +## _vanilla_cspecs["unalias"]="complete -a unalias" +## ... +## +declare -A __compal__vanilla_cspecs + +## a set of raw vanilla completions, keyed by cspec; these raw cspecs will be +## parsed and loaded into `_vanilla_cspecs` on use; we need this lazy loading +## because parsing all cspecs on sourcing incurs a large performance overhead; +## +## vanilla completions are alias-free and fetched before `_complete_alias` is +## set as the completion function for alias commands; the way we enforce this +## partial order is to init this array on source; the sourcing happens before +## `complete -F _complete_alias ...` for obvious reasons; +## +## this is made a set, not an array, to avoid duplication when this script is +## sourced repeatedly; each sourcing overwrites previous ones on duplication; +## +## example: +## +## _raw_vanilla_cspecs["complete -F _longopt tee"]="" +## _raw_vanilla_cspecs["complete -c type"]="" +## _raw_vanilla_cspecs["complete -a unalias"]="" +## ... +## +declare -A __compal__raw_vanilla_cspecs + +## ============================================================================ +## # functions +## ============================================================================ + +## debug bash programmable completion variables; +__compal__debug() { + echo + echo "#COMP_WORDS=${#COMP_WORDS[@]}" + echo "COMP_WORDS=(" + for x in "${COMP_WORDS[@]}"; do + echo "'$x'" + done + echo ")" + echo "COMP_CWORD=${COMP_CWORD}" + echo "COMP_LINE='${COMP_LINE}'" + echo "COMP_POINT=${COMP_POINT}" + echo +} + +## debug vanilla cspecs; +## +## $1 +## : if "key" dump keys, else dump values; +__compal__debug_vanilla_cspecs() { + if [[ "$1" == "key" ]]; then + for x in "${!__compal__vanilla_cspecs[@]}"; do + echo "$x" + done + else + for x in "${__compal__vanilla_cspecs[@]}"; do + echo "$x" + done + fi +} + +## debug raw vanilla cspecs; +__compal__debug_raw_vanilla_cspecs() { + for x in "${!__compal__raw_vanilla_cspecs[@]}"; do + echo "$x" + done +} + +## debug `_split_cmd_line`; +## +## this function is very easy to use; just call it with a string argument in an +## interactive shell and look at the result; some interesting string arguments: +## +## - (fail) `&> /dev/null ping` +## - (fail) `2> /dev/null ping` +## - (fail) `2>&1 > /dev/null ping` +## - (fail) `> /dev/null ping` +## - (work) `&>/dev/null ping` +## - (work) `2>&1 >/dev/null ping` +## - (work) `2>&1 ping` +## - (work) `2>/dev/null ping` +## - (work) `>/dev/null ping` +## - (work) `FOO=foo true && BAR=bar ping` +## - (work) `echo & echo & ping` +## - (work) `echo ; echo ; ping` +## - (work) `echo | echo | ping` +## - (work) `ping &> /dev/null` +## - (work) `ping &>/dev/null` +## - (work) `ping 2> /dev/null` +## - (work) `ping 2>&1 > /dev/null` +## - (work) `ping 2>&1 >/dev/null` +## - (work) `ping 2>&1` +## - (work) `ping 2>/dev/null` +## - (work) `ping > /dev/null` +## - (work) `ping >/dev/null` +## +## these failed examples are not an emergency because you can easily find their +## equivalents in those working ones; and we will check for emergency on failed +## examples added in the future; +## +## $1 +## : command line string; +__compal__debug_split_cmd_line() { + ## command line string; + local str="$1" + + __compal__split_cmd_line "$str" + + for x in "${__compal__retval[@]}"; do + echo "'$x'" + done +} + +## print an error message; +## +## $1 +## : error message; +__compal__error() { + printf "error: %s\n" "$1" >&2 +} + +## test whether an element is in array; +## +## $@ +## : ( elem arr[0] arr[1] ... ) +__compal__inarr() { + for e in "${@:2}"; do + [[ "$e" == "$1" ]] && return 0 + done + return 1 +} + +## get alias body from alias name; +## +## this is made a separate function so that users can override this function to +## provide alternate alias body for specific aliases; such aliases would run as +## one thing but complete as another; this could be weird and confusing so this +## is not formally documented; +## +## $1 +## : alias name; +## $? +## : alias body; +__compal__get_alias_body() { + local cmd; cmd="$1" + + local body; body="$(alias "$cmd")" + echo "${body#*=}" | command xargs +} + +## split command line into words; +## +## the `bash` reference implementation shows how bash splits command line into +## word list `COMP_WORDS`: +## +## - git repo <https://git.savannah.gnu.org/cgit/bash.git>; +## - commit `ce23728687ce9e584333367075c9deef413553fa`; +## - function `bashline.c:attempt_shell_completion`; +## - function `bashline.c:find_cmd_end`; +## - function `bashline.c:find_cmd_start`; +## - function `pcomplete.c:command_line_to_word_list`; +## - function `pcomplete.c:programmable_completions`; +## - function `subst.c:skip_to_delim`; +## - function `subst.c:split_at_delims`; +## +## this function shall give similar result as `bash` reference implementation +## for common use cases, but will not strive for full compatibility, which is +## too complicated when written in bash; we will support additional use cases +## as they show up and prove worthy; +## +## another reason we not pursue full compatibility is, even bash itself fails +## on some use cases, such as `ping 2>&1` and `ping &>/dev/null`; ironically, +## if we define an alias and complete using `_complete_alias`, then it works: +## +## $ alias ping='ping 2>&1' +## $ complete -F _complete_alias ping +## $ ping <tab> +## {ip} +## {ip} +## {ip} +## +## backslash: a non-quoted backslash (`\`) preserves the literal value of the +## next character that follows with the exception of `<newline>`; a backslash +## enclosed in single quotes loses such special meaning; a backslash enclosed +## in double quotes retains such special meaning only when followed by one of +## the following (5) characters: +## +## $ ` " \ <newline> +## +## we do not allow `<newline>` in alias body; this simplifies our argument: a +## non-quoted backslash always preserves next character; a backslash enclosed +## in double quotes only preserves the above 4 characters (minus `<newline>`); +## +## when a command substitution is enclosed in double quotes, backslash within +## the command substitution may retain such special meaning, despite whatever +## bash manual says; compare: +## +## "`\"`" +## "$(\")" +## +## in the first form the backslash is not literal even though not followed by +## characters mentioned in section command substitution, bash manual; we will +## not handle backquote correctly in this case; as an advice, avoid backquote; +## +## warn: the output of this function is *not* a faithful split of the input; +## this function drops redirections and assignments, and only keeps the last +## command in the last pipeline; +## +## warn: this function is made for alias body expansion; as such it does not +## support commmand substitutions, etc.; if you run its output as argv, then +## you run at your own risk; quotes and escapes may also disturb the result; +## +## $1 +## : command line string; +__compal__split_cmd_line() { + ## command line string; + local str="$1" + + ## an array that will contain words after split; + local words=() + + ## alloc a temp stack to track open and close chars when splitting; + local sta=() + + ## we adopt some bool flags to handle redirections and assignments at the + ## beginning of the command line, if any; we can simply drop redirections + ## and assignments for sake of alias completion; for detail, read `SIMPLE + ## COMMAND EXPANSION` in `man bash`; + + ## bool: check (outmost) redirection or assignment; + local check_redass=1 + + ## bool: found (outmost) redirection or assignment in current word; + local found_redass=0 + + ## examine each char of `str`; test branches are ordered; this order has + ## two importances: first is to respect substring relationship (eg: `&&` + ## must be tested before `&`); second is to test in optimistic order for + ## speeding up the testing; the first importance is compulsory and takes + ## precedence; + local i=0 j=0 + for (( ; j < ${#str}; j++ )); do + if (( ${#sta[@]} == 0 )); then + if [[ "${str:j:1}" =~ [_a-zA-Z0-9] ]]; then + : + elif [[ $' \t\n' == *"${str:j:1}"* ]]; then + if (( i < j )); then + if (( $found_redass == 1 )); then + if (( $check_redass == 0 )); then + words+=( "${str:i:j-i}" ) + fi + found_redass=0 + else + ## no redass in current word; stop checking; + check_redass=0 + words+=( "${str:i:j-i}" ) + fi + fi + (( i = j + 1 )) + elif [[ ":" == *"${str:j:1}"* ]]; then + if (( i < j )); then + if (( $found_redass == 1 )); then + if (( $check_redass == 0 )); then + words+=( "${str:i:j-i}" ) + fi + found_redass=0 + else + ## no redass in current word; stop checking; + check_redass=0 + words+=( "${str:i:j-i}" ) + fi + fi + words+=( "${str:j:1}" ) + (( i = j + 1 )) + elif [[ '$(' == "${str:j:2}" ]]; then + sta+=( ')' ) + (( j++ )) + elif [[ '`' == "${str:j:1}" ]]; then + sta+=( '`' ) + elif [[ '(' == "${str:j:1}" ]]; then + sta+=( ')' ) + elif [[ '{' == "${str:j:1}" ]]; then + sta+=( '}' ) + elif [[ '"' == "${str:j:1}" ]]; then + sta+=( '"' ) + elif [[ "'" == "${str:j:1}" ]]; then + sta+=( "'" ) + elif [[ '\' == "${str:j:1}" ]]; then + (( j++ )) + elif [[ '&>' == "${str:j:2}" ]]; then + found_redass=1 + (( j++ )) + elif [[ '>&' == "${str:j:2}" ]]; then + found_redass=1 + (( j++ )) + elif [[ "><=" == *"${str:j:1}"* ]]; then + found_redass=1 + elif [[ '&&' == "${str:j:2}" ]]; then + words=() + check_redass=1 + (( i = j + 2 )) + elif [[ '||' == "${str:j:2}" ]]; then + words=() + check_redass=1 + (( i = j + 2 )) + elif [[ '&' == "${str:j:1}" ]]; then + words=() + check_redass=1 + (( i = j + 1 )) + elif [[ '|' == "${str:j:1}" ]]; then + words=() + check_redass=1 + (( i = j + 1 )) + elif [[ ';' == "${str:j:1}" ]]; then + words=() + check_redass=1 + (( i = j + 1 )) + fi + elif [[ "${sta[-1]}" == ')' ]]; then + if [[ ')' == "${str:j:1}" ]]; then + unset sta[-1] + elif [[ '$(' == "${str:j:2}" ]]; then + sta+=( ')' ) + (( j++ )) + elif [[ '`' == "${str:j:1}" ]]; then + sta+=( '`' ) + elif [[ '(' == "${str:j:1}" ]]; then + sta+=( ')' ) + elif [[ '{' == "${str:j:1}" ]]; then + sta+=( '}' ) + elif [[ '"' == "${str:j:1}" ]]; then + sta+=( '"' ) + elif [[ "'" == "${str:j:1}" ]]; then + sta+=( "'" ) + elif [[ '\' == "${str:j:1}" ]]; then + (( j++ )) + fi + elif [[ "${sta[-1]}" == '}' ]]; then + if [[ '}' == "${str:j:1}" ]]; then + unset sta[-1] + elif [[ '$(' == "${str:j:2}" ]]; then + sta+=( ')' ) + (( j++ )) + elif [[ '`' == "${str:j:1}" ]]; then + sta+=( '`' ) + elif [[ '(' == "${str:j:1}" ]]; then + sta+=( ')' ) + elif [[ '{' == "${str:j:1}" ]]; then + sta+=( '}' ) + elif [[ '"' == "${str:j:1}" ]]; then + sta+=( '"' ) + elif [[ "'" == "${str:j:1}" ]]; then + sta+=( "'" ) + elif [[ '\' == "${str:j:1}" ]]; then + (( j++ )) + fi + elif [[ "${sta[-1]}" == '`' ]]; then + if [[ '`' == "${str:j:1}" ]]; then + unset sta[-1] + elif [[ '$(' == "${str:j:2}" ]]; then + sta+=( ')' ) + (( j++ )) + elif [[ '(' == "${str:j:1}" ]]; then + sta+=( ')' ) + elif [[ '{' == "${str:j:1}" ]]; then + sta+=( '}' ) + elif [[ '"' == "${str:j:1}" ]]; then + sta+=( '"' ) + elif [[ "'" == "${str:j:1}" ]]; then + sta+=( "'" ) + elif [[ '\' == "${str:j:1}" ]]; then + (( j++ )) + fi + elif [[ "${sta[-1]}" == "'" ]]; then + if [[ "'" == "${str:j:1}" ]]; then + unset sta[-1] + fi + elif [[ "${sta[-1]}" == '"' ]]; then + if [[ '"' == "${str:j:1}" ]]; then + unset sta[-1] + elif [[ '$(' == "${str:j:2}" ]]; then + sta+=( ')' ) + (( j++ )) + elif [[ '`' == "${str:j:1}" ]]; then + sta+=( '`' ) + elif [[ '\$' == "${str:j:2}" ]]; then + (( j++ )) + elif [[ '\`' == "${str:j:2}" ]]; then + (( j++ )) + elif [[ '\"' == "${str:j:2}" ]]; then + (( j++ )) + elif [[ '\\' == "${str:j:2}" ]]; then + (( j++ )) + fi + fi + done + + ## append the last word; + if (( i < j )); then + if (( $found_redass == 1 )); then + if (( $check_redass == 0 )); then + words+=( "${str:i:j-i}" ) + fi + found_redass=0 + else + ## no redass in current word; stop checking; + check_redass=0 + words+=( "${str:i:j-i}" ) + fi + fi + + ## unset the temp stack; + unset sta + + ## return value; + __compal__retval=( "${words[@]}" ) +} + +## expand aliases in command line; +## +## $1 +## : beg word index; +## $2 +## : end word index; +## $3 +## : ignored word index (can be null); +## $4 +## : number of used aliases; +## ${@:4} +## : used aliases; +## $? +## : difference of `${#COMP_WORDS}` before and after expansion; +__compal__expand_alias() { + local beg="$1" end="$2" ignore="$3" n_used="$4"; shift 4 + local used=( "${@:1:$n_used}" ); shift "$n_used" + + if (( $beg == $end )) ; then + ## case 1: range is empty; + __compal__retval=0 + elif [[ -n "$ignore" ]] && (( $beg == $ignore )); then + ## case 2: beg index is ignored; pass it; + __compal__expand_alias \ + "$(( $beg + 1 ))" \ + "$end" \ + "$ignore" \ + "${#used[@]}" \ + "${used[@]}" + elif ! alias "${COMP_WORDS[$beg]}" &>/dev/null; then + ## case 3: command is not an alias; + __compal__retval=0 + elif ( __compal__inarr "${COMP_WORDS[$beg]}" "${used[@]}" ); then + ## case 4: command is an used alias; + __compal__retval=0 + else + ## case 5: command is an unused alias; + + ## get alias name; + local cmd="${COMP_WORDS[$beg]}" + + ## get alias body; + local str0; str0="$(__compal__get_alias_body "$cmd")" + + ## split alias body into words; + __compal__split_cmd_line "$str0" + local words0=( "${__compal__retval[@]}" ) + + ## rebuild alias body; we need this because function `_split_cmd_line` + ## drops redirections and assignments, and only keeps the last command + ## in the last pipeline, in `words0`; therefore `str0` is not a simple + ## concat of `words0`; we rebuild this simple concat as `nstr0`; maybe + ## it is easier to view `str0` as raw and `nstr0` as genuine; + local nstr0="${words0[*]}" + + ## find index range of word `$COMP_WORDS[$beg]` in string `$COMP_LINE`; + local i=0 j=0 + for (( i = 0; i <= $beg; i++ )); do + for (( ; j <= ${#COMP_LINE}; j++ )); do + [[ "${COMP_LINE:j}" == "${COMP_WORDS[i]}"* ]] && break + done + (( i == $beg )) && break + (( j += ${#COMP_WORDS[i]} )) + done + + ## now `j` is at the beginning of word `$COMP_WORDS[$beg]`; and we know + ## the index range is `[j, j+${#cmd})`; + + ## update `$COMP_LINE` and `$COMP_POINT`; + COMP_LINE="${COMP_LINE:0:j}${nstr0}${COMP_LINE:j+${#cmd}}" + if (( $COMP_POINT < j )); then + : + elif (( $COMP_POINT < j + ${#cmd} )); then + ## set current cursor position to the end of replacement string; + (( COMP_POINT = j + ${#nstr0} )) + else + (( COMP_POINT += ${#nstr0} - ${#cmd} )) + fi + + ## update `$COMP_WORDS` and `$COMP_CWORD`; + COMP_WORDS=( + "${COMP_WORDS[@]:0:beg}" + "${words0[@]}" + "${COMP_WORDS[@]:beg+1}" + ) + if (( $COMP_CWORD < $beg )); then + : + elif (( $COMP_CWORD < $beg + 1 )); then + ## set current word index to the last of replacement words; + (( COMP_CWORD = $beg + ${#words0[@]} - 1 )) + else + (( COMP_CWORD += ${#words0[@]} - 1 )) + fi + + ## update `$ignore` if it is not empty; if so, we know `$ignore` is not + ## equal to `$beg` because we checked that in case 2; we need to update + ## `$ignore` only when `$ignore > $beg`; save this condition in a local + ## var `$ignore_gt_beg` because we need it later; + if [[ -n "$ignore" ]]; then + local ignore_gt_beg=0 + if (( $ignore > $beg )); then + ignore_gt_beg=1 + (( ignore += ${#words0[@]} - 1 )) + fi + fi + + ## recursively expand part 0; + local used0=( "${used[@]}" "$cmd" ) + __compal__expand_alias \ + "$beg" \ + "$(( $beg + ${#words0[@]} ))" \ + "$ignore" \ + "${#used0[@]}" \ + "${used0[@]}" + local diff0="$__compal__retval" + + ## update `$ignore` if it is not empty and `$ignore_gt_beg` is true; + if [[ -n "$ignore" ]] && (( $ignore_gt_beg == 1 )); then + (( ignore += $diff0 )) + fi + + ## recursively expand part 1; must check `str0` not `nstr0`; + if [[ -n "$str0" ]] && [[ "${str0: -1}" == ' ' ]]; then + local used1=( "${used[@]}" ) + __compal__expand_alias \ + "$(( $beg + ${#words0[@]} + $diff0 ))" \ + "$(( $end + ${#words0[@]} - 1 + $diff0 ))" \ + "$ignore" \ + "${#used1[@]}" \ + "${used1[@]}" + local diff1="$__compal__retval" + else + local diff1=0 + fi + + ## return value; + __compal__retval=$(( ${#words0[@]} - 1 + diff0 + diff1 )) + fi +} + +## run a cspec using its args in argv fashion; +## +## despite as described in `man bash`, `complete -p` does not always print an +## existing completion in a way that can be reused as input; what complicates +## the matter here are quotes and escapes; +## +## as an example, when `complete -p` prints: +## +## $ complete -p +## complete -F _known_hosts "/tmp/aaa bbb" +## +## copy-paste running the above output gives wrong result: +## +## $ complete -F _known_hosts "/tmp/aaa bbb" +## $ complete -p +## complete -F _known_hosts /tmp/aaa bbb +## +## the correct command to give the same `complete -p` result is: +## +## $ complete -F _known_hosts '"/tmp/aaa bbb"' +## $ complete -p +## complete -F _known_hosts "/tmp/aaa bbb" +## +## to see another issue, this command gives a different result: +## +## $ complete -F _known_hosts '/tmp/aaa\ \ \ bbb' +## $ complete -p +## complete -F _known_hosts /tmp/aaa\ \ \ bbb +## +## note that these two `complete -p` results are *not* the same: +## +## complete -F _known_hosts "/tmp/aaa bbb" +## complete -F _known_hosts /tmp/aaa\ \ \ bbb +## +## despite this is true: +## +## [[ "/tmp/aaa bbb" == /tmp/aaa\ \ \ bbb ]] +## +## so we must parse the `complete -p` result and run parsed result; +## +## using `_split_cmd_line` to parse a cspec should be ok, because a cspec has +## only one command without redirections or assignments, also without command +## substitutions, etc.; we can then rerun this cspec in an argv fashion using +## this function; +## +## $@ +## : cspec args; +__compal__run_cspec_args() { + local cspec_args=( "$@" ) + + ## ensure this is indeed a cspec; + if [[ "${cspec_args[0]}" == "complete" ]]; then + ## run parsed completion command; + "${cspec_args[@]}" + else + __compal__error "not a complete command: ${cspec_args[*]}" + fi +} + +## the "auto" implementation of `_unmask_alias`; +## +## this function is called only when using auto unmask; +## +## $1 +## : alias command; +__compal__unmask_alias_auto() { + local cmd="$1" + + ## load vanilla completion of this command; + local cspec="${__compal__vanilla_cspecs[$cmd]}" + + if [[ -n "$cspec" ]]; then + ## a vanilla cspec for this command is found; due to some issues with + ## `complete -p` we cannot eval this cspec directly; instead, we need + ## to parse and run it in argv fashion; see `_run_cspec_args` comment; + __compal__split_cmd_line "$cspec" + local cspec_args=( "${__compal__retval[@]}" ) + __compal__run_cspec_args "${cspec_args[@]}" + else + ## a (parsed) vanilla cspec for this command is not found; search raw + ## vanilla cspecs for this command; if a matched raw vanilla cspec is + ## found, then parse, save and run it; search is a loop because these + ## raw cspecs are not parsed yet; + for _cspec in "${!__compal__raw_vanilla_cspecs[@]}"; do + if [[ "$_cspec" == *" $cmd" ]]; then + __compal__split_cmd_line "$_cspec" + local _cspec_args=( "${__compal__retval[@]}" ) + + ## ensure this cspec has the correct command; + local _cspec_cmd="${_cspec_args[-1]}" + if [[ "$_cspec_cmd" == "$cmd" ]]; then + __compal__vanilla_cspecs["$_cspec_cmd"]="$_cspec" + unset __compal__raw_vanilla_cspecs["$_cspec"] + __compal__run_cspec_args "${_cspec_args[@]}" + return + fi + fi + done + + ## no vanilla cspec for this command is found; we remove the current + ## cspec for this command (which should be `_complete_alias`), which + ## effectively uses the default cspec (ie: `complete -D`) to process + ## this command; we do not fallback to `_completion_loader`, because + ## the default cspec could be something else, and here we want to be + ## consistent; + complete -r "$cmd" + fi +} + +## the "manual" implementation of `_unmask_alias`; +## +## this function is called only when using manual unmask; +## +## users may edit this function to customize vanilla command completions; +## +## $1 +## : alias command; +__compal__unmask_alias_manual() { + local cmd="$1" + + case "$cmd" in + bind) + complete -A binding "$cmd" + ;; + help) + complete -A helptopic "$cmd" + ;; + set) + complete -A setopt "$cmd" + ;; + shopt) + complete -A shopt "$cmd" + ;; + bg) + complete -A stopped -P '"%' -S '"' "$cmd" + ;; + service) + complete -F _service "$cmd" + ;; + unalias) + complete -a "$cmd" + ;; + builtin) + complete -b "$cmd" + ;; + command|type|which) + complete -c "$cmd" + ;; + fg|jobs|disown) + complete -j -P '"%' -S '"' "$cmd" + ;; + groups|slay|w|sux) + complete -u "$cmd" + ;; + readonly|unset) + complete -v "$cmd" + ;; + traceroute|traceroute6|tracepath|tracepath6|fping|fping6|telnet|rsh|\ + rlogin|ftp|dig|mtr|ssh-installkeys|showmount) + complete -F _known_hosts "$cmd" + ;; + aoss|command|do|else|eval|exec|ltrace|nice|nohup|padsp|then|time|\ + tsocks|vsound|xargs) + complete -F _command "$cmd" + ;; + fakeroot|gksu|gksudo|kdesudo|really) + complete -F _root_command "$cmd" + ;; + a2ps|awk|base64|bash|bc|bison|cat|chroot|colordiff|cp|csplit|cut|date|\ + df|diff|dir|du|enscript|env|expand|fmt|fold|gperf|grep|grub|head|\ + irb|ld|ldd|less|ln|ls|m4|md5sum|mkdir|mkfifo|mknod|mv|netstat|nl|\ + nm|objcopy|objdump|od|paste|pr|ptx|readelf|rm|rmdir|sed|seq|\ + sha{,1,224,256,384,512}sum|shar|sort|split|strip|sum|tac|tail|tee|\ + texindex|touch|tr|uname|unexpand|uniq|units|vdir|wc|who) + complete -F _longopt "$cmd" + ;; + *) + _completion_loader "$cmd" + ;; + esac +} + +## set completion function of an alias command to the vanilla one; +## +## $1 +## : alias command; +__compal__unmask_alias() { + local cmd="$1" + + ## ensure current completion function of this command is `_complete_alias`; + if [[ "$(complete -p "$cmd")" != *"-F _complete_alias"* ]]; then + __compal__error "cannot unmask alias command: $cmd" + return + fi + + ## decide which unmask function to call; + if (( "$COMPAL_AUTO_UNMASK" == 1 )); then + __compal__unmask_alias_auto "$@" + else + __compal__unmask_alias_manual "$@" + fi +} + +## set completion function of an alias command to `_complete_alias`; doing so +## overwrites the original completion function for this command, if any; this +## makes `_complete_alias` look like a "mask" on the alias command; then, why +## is this function called a "remask"? because this function is always called +## in pair with (and after) a corresponding "unmask" function; the 1st "mask" +## happens when user directly runs `complete -F _complete_alias ...`; +## +## $1 +## : alias command; +__compal__remask_alias() { + local cmd="$1" + + complete -F _complete_alias "$cmd" +} + +## delegate completion to `bash-completion`; +__compal__delegate() { + ## `_command_offset` is a meta-command completion function provided by + ## `bash-completion`; the documentation does not say it will work with + ## argument `0`, but looking at its code (version 2.11) it should; + _command_offset 0 +} + +## delegate completion to `bash-completion`, within a transient context in +## which the input alias command is unmasked; +## +## this function expects current completion function of this command to be +## `_complete_alias`; +## +## $1 +## : alias command to be unmasked; +__compal__delegate_in_context() { + local cmd="$1" + + ## unmask alias: + __compal__unmask_alias "$cmd" + + ## do actual completion; + __compal__delegate + + ## remask alias: + __compal__remask_alias "$cmd" +} + +## save vanilla completions; run this function when this script is sourced; +## this ensures vanilla completions of alias commands are fetched and saved +## before they are overwritten by `complete -F _complete_alias`; +## +## this function saves raw cspecs and does not parse them; for other useful +## comments about parsing and running cspecs see function `_run_cspec_args`; +## +## running this function on source is mandatory only when using auto unmask; +## when using manual unmask, it is safe to skip this function on source; +__compal__save_vanilla_cspecs() { + ## get default cspec; + local def_cspec; def_cspec="$(complete -p -D 2>/dev/null)" + + ## `complete -p` prints cspec for one command per line; so we can loop; + while IFS= read -r cspec; do + + ## skip default cspec; + [[ "$cspec" != "$def_cspec" ]] || continue + + ## skip `-F _complete_alias` cspecs; + [[ "$cspec" != *"-F _complete_alias"* ]] || continue + + ## now we have a vanilla cspec; save it in `_raw_vanilla_cspecs`; + __compal__raw_vanilla_cspecs["$cspec"]="" + + done < <(complete -p 2>/dev/null) +} + +## completion function for non-alias commands; normally, the mere invocation of +## this function indicates an error of command completion configuration because +## we are invoking `_complete_alias` on a non-alias command; but there can be a +## special case: `_command_offset` will try with command basename when there is +## no completion for the command itself; an example is `sudo /bin/ls` when both +## `sudo` and `ls` are aliases; this function takes care of this special case; +## +## $1 +## : the name of the command whose arguments are being completed; +## $2 +## : the word being completed; +## $3 +## : the word preceding the word being completed on the current command line; +__compal__complete_non_alias() { + ## get command name; must be non-alias; + local cmd="${COMP_WORDS[0]}" + + ## get command basename; + local compcmd="${cmd##*/}" + + if alias "$compcmd" &>/dev/null; then + ## if command basename is an alias, delegate completion; + __compal__delegate_in_context "$compcmd" + else + ## else, this indicates an error; + __compal__error "command is not an alias: $cmd" + fi +} + +## completion function for alias commands; +## +## $1 +## : the name of the command whose arguments are being completed; +## $2 +## : the word being completed; +## $3 +## : the word preceding the word being completed on the current command line; +__compal__complete_alias() { + ## get command name; must be alias; + local cmd="${COMP_WORDS[0]}" + + ## we expand aliases only for the original command line (ie: the command + ## line on which user pressed `<tab>`); unfortunately, we may not have a + ## chance to see the original command line, and we have no way to ensure + ## that; we take an approximation: we expand aliases only in the outmost + ## call of this function, which implies only on the first occasion of an + ## alias command; we can ensure this condition using a refcnt and expand + ## aliases iff the refcnt is equal to 0; this approximation always works + ## correctly when the 1st word on the original command line is an alias; + ## + ## this approximation may fail when the 1st word on the original command + ## line is not an alias; an example that expects files but gets ip addrs: + ## + ## $ unalias sudo + ## $ complete -r sudo + ## $ alias ls='ping' + ## $ complete -F _complete_alias ls + ## $ sudo ls <tab> + ## {ip} + ## {ip} + ## {ip} + ## ... + ## + if (( __compal__refcnt == 0 )); then + + ## find index range of word `$COMP_WORDS[$COMP_CWORD]` in string + ## `$COMP_LINE`; dont expand this word if `$COMP_POINT` (cursor + ## position) lies in this range because the word may be incomplete; + local i=0 j=0 + for (( ; i <= $COMP_CWORD; i++ )); do + for (( ; j <= ${#COMP_LINE}; j++ )); do + [[ "${COMP_LINE:j}" == "${COMP_WORDS[i]}"* ]] && break + done + (( i == $COMP_CWORD )) && break + (( j += ${#COMP_WORDS[i]} )) + done + + ## now `j` is at the beginning of word `$COMP_WORDS[$COMP_CWORD]`; and + ## we know the index range is `[j, j+${#COMP_WORDS[$COMP_CWORD]}]`; we + ## include the right endpoint to cover the case where cursor is at the + ## exact end of the word; compare the index range with `$COMP_POINT`; + if (( j <= $COMP_POINT )) && \ + (( $COMP_POINT <= j + ${#COMP_WORDS[$COMP_CWORD]} )); then + local ignore="$COMP_CWORD" + else + local ignore="" + fi + + ## expand aliases; + __compal__expand_alias 0 "${#COMP_WORDS[@]}" "$ignore" 0 + fi + + ## increase refcnt; + (( __compal__refcnt++ )) + + ## delegate completion in context; this actually contains several steps: + ## + ## - unmask alias: + ## + ## since aliases have been fully expanded, no need to consider aliases + ## in the resulting command line; therefore, we now set the completion + ## function for this alias to the vanilla, alias-free one; this avoids + ## infinite recursion when using self-aliases (eg: `alias ls='ls -a'`); + ## + ## - do actual completion: + ## + ## `_command_offset` is a meta-command completion function provided by + ## `bash-completion`; the documentation does not say it will work with + ## argument `0`, but looking at its code (version 2.11) it should; + ## + ## - remask alias: + ## + ## reset this command completion function to `_complete_alias`; + ## + ## these steps are put into one function `_delegate_in_context`; + __compal__delegate_in_context "$cmd" + + ## decrease refcnt; + (( __compal__refcnt-- )) +} + +## this is the function to be set with `complete -F`; this function expects +## alias commands, but can also handle non-alias commands in rare occasions; +## +## as a standard completion function, this function can take 3 arguments as +## described in `man bash`; they are currently not being used, though; +## +## $1 +## : the name of the command whose arguments are being completed; +## $2 +## : the word being completed; +## $3 +## : the word preceding the word being completed on the current command line; +_complete_alias() { + ## get command; + local cmd="${COMP_WORDS[0]}" + + ## complete command; + if ! alias "$cmd" &>/dev/null; then + __compal__complete_non_alias "$@" + else + __compal__complete_alias "$@" + fi +} + +## main function; +__compal__main() { + if (( "$COMPAL_AUTO_UNMASK" == 1 )); then + ## save vanilla completions; + __compal__save_vanilla_cspecs + fi +} + +## ============================================================================ +## # script +## ============================================================================ + +## run main function; +__compal__main + +## ============================================================================ +## # complete user-defined aliases +## ============================================================================ + +## to complete specific aliases, uncomment and edit these lines; +complete -F _complete_alias p "sudo pacman" +complete -F _complete_alias Su +complete -F _complete_alias SS + +## to complete all aliases, run this line after all aliases have been defined; +# complete -F _complete_alias "${!BASH_ALIASES[@]}" + diff --git a/bash/dot-config/bash/functions.bash b/bash/dot-config/bash/functions.bash new file mode 100644 index 0000000..a2a96ba --- /dev/null +++ b/bash/dot-config/bash/functions.bash @@ -0,0 +1,48 @@ +# from: https://github.com/bahamas10/bash-vardump/blob/main/vardump.bash +source "${XDG_CONFIG_HOME:-$HOME/.config}"/bash/vardump.bash + +colors() +{ + local i + for i in {0..255}; do + printf "\x1b[38;5;${i}mcolor %d\n" "$i" + done + tput sgr0 +} + +nman() +{ + nvim -c "Man $*" -c "wincmd o" -c "nmap q :q" +} + +lf() +{ + export LF_CD_FILE=/tmp/.lfcd-$$ + command lf "$@" + if [ -s "$LF_CD_FILE" ]; then + local DIR + DIR="$(realpath "$(cat "$LF_CD_FILE")")" + if [ "$DIR" != "$PWD" ]; then + echo "cd to $DIR" + cd "$DIR" || exit + fi + command rm "$LF_CD_FILE" + fi + unset LF_CD_FILE +} + +se() +{ + choice="$(fd . ~/.local/bin -d1 -tx -tl --format '{/}' | fzf)" + [ -f "$HOME/.local/bin/$choice" ] && $EDITOR "$HOME/.local/bin/$choice" +} + +pS() +{ + pacman -Slq | fzf --multi --preview 'pacman -Si {1}' | xargs -ro sudo pacman -S +} + +yayS() +{ + yay -Slq | fzf --multi --preview 'yay -Si {1}' | xargs -ro yay -S +} diff --git a/bash/dot-config/bash/gentoo-color.bash b/bash/dot-config/bash/gentoo-color.bash new file mode 100644 index 0000000..f2a168d --- /dev/null +++ b/bash/dot-config/bash/gentoo-color.bash @@ -0,0 +1,83 @@ +# Gentoo color +# +# source: https://gitweb.gentoo.org/repo/gentoo.git/plain/app-shells/bash/files/bashrc.d/10-gentoo-color-r2.bash +# changes: +# - remove ls from the list of aliases (will configure it myself in bashrc) +# - comment dircolor stuff at the end (don't like too many colors) +# - comment the unset gentoo_color, since I use it later for ls +# +# NOTE: copy this file for the root user and source it in its bashrc as well: +# root # cp /home/moreka/.config/bash/gentoo-color.bash ~/.gentoo-color.bash +# root # cp /etc/skel/.bash_profile ~/ +# root # cp /etc/skel/.bashrc ~/ +# +# in bashrc: source "$HOME"/.gentoo-color.bash + +if [[ ${NO_COLOR} ]]; then + # Respect the user's wish not to use color. See https://no-color.org/. + gentoo_color=0 +elif [[ ${COLORTERM@a} == *x* && ${COLORTERM} == @(24bit|truecolor) ]]; then + # The COLORTERM environment variable can reasonably be trusted here. + # See https://github.com/termstandard/colors for further information. + gentoo_color=1 +else + # Check TERM against a whitelist covering a majority of popular + # terminal emulators and virtual console implementations known to + # support color. If no matching entry is found, try to use tput(1) to + # determine whether color is supported. + case ${TERM} in + *color* |\ + *direct* |\ + *ghostty |\ + [Ekx]term* |\ + alacritty |\ + aterm |\ + contour |\ + dtterm |\ + foot* |\ + jfbterm |\ + linux |\ + mlterm |\ + rxvt* |\ + screen* |\ + tmux* |\ + wsvt25* ) gentoo_color=1 ;; + * ) gentoo_color=$(tput colors 2>/dev/null) + esac +fi + +# For direxpand to be missing indicates that bash is lacking readline support. +if (( gentoo_color <= 0 )) || ( ! shopt -u direxpand 2>/dev/null ); then + # Define a prompt without color. + PS1='\u@\h \w \$ ' +elif (( EUID == 0 )); then + # If root, omit the username and print the hostname in red. + PS1='\[\e[01;31m\]\h\[\e[01;34m\] \w \$\[\e[00m\] ' +else + # Otherwise, print the username and hostname in green. + PS1='\[\e[01;32m\]\u@\h\[\e[01;34m\] \w \$\[\e[00m\] ' +fi + +if (( gentoo_color > 0 )); then + # Colorize the output of diff(1), grep(1) and a few coreutils utilities. + # However, do so only where no alias/function by the given name exists. + for _ in diff dir grep vdir; do + if [[ $(type -t "$_") == file ]]; then + alias "$_=$_ --color=auto" + fi + done + + # Enable colors for ls(1) and some other utilities that respect the + # LS_COLORS variable. Prefer ~/.dir_colors, per bug #64489. + # if hash dircolors 2>/dev/null; then + # if [[ -f ~/.dir_colors ]]; then + # eval "$(COLORTERM=1 dircolors -b -- ~/.dir_colors)" + # elif [[ -f /etc/DIR_COLORS ]]; then + # eval "$(COLORTERM=1 dircolors -b /etc/DIR_COLORS)" + # else + # eval "$(COLORTERM=1 dircolors -b)" + # fi + # fi +fi + +# unset -v gentoo_color diff --git a/bash/dot-config/bash/vardump.bash b/bash/dot-config/bash/vardump.bash new file mode 100644 index 0000000..b57216f --- /dev/null +++ b/bash/dot-config/bash/vardump.bash @@ -0,0 +1,215 @@ +#!/usr/bin/env bash +# +# Bash library for pretty-printing a variable given by name. +# +# This was inspired by `util.inspect` in Node.js, `p` in or `pp` in ruby, +# `var_dump` in php, etc. This is intended for developers to use for debugging +# - this should not be parsed by a machine nor should the output format be +# considered stable. +# +# Author: Dave Eddy <dave@daveeddy.com> +# Date: December 18, 2024 +# License: MIT + +# vardump +# +# Dump the given variable (by name) information and value to stdout. +# +# Usage: vardump [-v] <name> +# +# Example: +# +# ``` bash +# $ declare -A assoc=([foo]=1 [bar]=2) +# $ vardump assoc +# ( +# ['foo']='1' +# ['bar']='2' +# ) +# $ vardump -v assoc +# -------------------------- +# vardump: assoc +# attributes: (A)associative array +# length: 2 +# ( +# ['foo']='1' +# ['bar']='2' +# ) +# -------------------------- +# ``` +# +# Arguments: +# -v verbose output +# -C [always|auto|never] when to colorize output, defaults to auto +# +vardump() { + # read arguments + local verbose=false + local whencolor='auto' + local OPTIND OPTARG opt + while getopts 'C:v' opt; do + case "$opt" in + C) whencolor=$OPTARG;; + v) verbose=true;; + *) return 1;; + esac + done + shift "$((OPTIND - 1))" + + # read variable name + local name=$1 + + if [[ -z $name ]]; then + echo 'vardump: name required as first argument' >&2 + return 1 + fi + + # optionally load colors + if [[ $whencolor == always ]] || [[ $whencolor == auto && -t 1 ]]; then + local color_green=$'\e[32m' + local color_magenta=$'\e[35m' + local color_rst=$'\e[0m' + local color_dim=$'\e[2m' + else + local color_green='' + local color_magenta='' + local color_rst='' + local color_dim='' + fi + local color_value=$color_green + local color_key=$color_magenta + local color_length=$color_magenta + + # optionally print header + if $verbose; then + echo "${color_dim}--------------------------${color_rst}" + echo "${color_dim}vardump: ${color_rst}$name" + fi + + # ensure the variable is defined + if ! declare -p "$name" &>/dev/null; then + echo "variable ${name@Q} not defined" >&2 + return 1 + fi + + # get the variable attributes - this will tell us what kind of variable + # it is. + # + # XXX dave says - is this ideal? when the variable is a nameref (using + # `declare -n` or `local -n`) it seems like this method follows the + # nameref, whereas parsing the output of `declare -p <name>` seems to + # correctly give `-n` as the set of arguments used. Perhaps just parse + # the output of `declare -p` from above here instead? + local attrs + IFS='' read -ra attrs <<< "${!name@a}" + + # parse the variable attributes and construct a human-readable string + local attributes=() + local attr + local typ='' + for attr in "${attrs[@]}"; do + local s='' + case "$attr" in + a) s='indexed array'; typ='a';; + A) s='associative array'; typ='A';; + r) s='read-only';; + i) s='integer';; + g) s='global';; + x) s='exported';; + *) s="unknown";; + esac + attributes+=("($attr)$s") + done + + # optionally print the attributes to the user + if $verbose; then + echo -n "${color_dim}attributes: ${color_rst}" + if [[ -n ${attributes[0]} ]]; then + # separate the list of attributes by a `/` character + ( + IFS=/ + echo -n "${attributes[*]}" + ) + else + echo -n '(none)' + fi + echo + fi + + # print the variable itself! we use $typ defined above to format it + # appropriately. + # + # we *pray* the user doesn't use this variable name in their own code or + # we'll hit a circular reference error (THAT WE CAN'T CATCH OURSELVES IN + # CODE - lame) + local -n __vardump_name="$name" + + if [[ $typ == 'a' || $typ == 'A' ]]; then + # print this as an array - indexed, sparse, associative, + # whatever + local key value + + # optionally print length + if $verbose; then + local length=${#__vardump_name[@]} + printf '%s %s\n' \ + "${color_dim}length:${color_rst}" \ + "${color_length}$length${color_rst}" + fi + + # loop keys and print the data itself + echo '(' + for key in "${!__vardump_name[@]}"; do + value=${__vardump_name[$key]} + + # safely quote the key name if it's an associative array + # (the user controls the key names in this case so we + # can't trust them to be safe) + if [[ $typ == 'A' ]]; then + key=${key@Q} + fi + + # always safely quote the value + value=${value@Q} + + printf '\t[%s]=%s\n' \ + "${color_key}$key${color_rst}" \ + "${color_value}$value${color_rst}" + done + echo ')' + else + # we are just a simple scalar value - print this as a regular, + # safely-quoted, value. + echo "${color_value}${__vardump_name@Q}${color_rst}" + fi + + # optionally print the trailer + if $verbose; then + echo "${color_dim}--------------------------${color_rst}" + fi + + return 0 + +} + +# if we are run directly (not-sourced) then run through some examples +if ! (return &>/dev/null); then + declare s='some string' + declare -r READ_ONLY='this cant be changed' + declare -i int_value=5 + + declare -a simple_array=(foo bar baz "$(tput setaf 1)red$(tput sgr0)") + declare -a sparse_array=([0]=hi [5]=bye [7]=ok) + declare -A assoc_array=([foo]=1 [bar]=2) + + echo 'simple vardump' + for var in s READ_ONLY int_value simple_array sparse_array assoc_array; do + vardump "$var" + done + + echo 'verbose vardump' + for var in s READ_ONLY int_value simple_array sparse_array assoc_array; do + vardump -v "$var" + echo + done +fi diff --git a/bash/dot-inputrc b/bash/dot-inputrc new file mode 100644 index 0000000..f34320a --- /dev/null +++ b/bash/dot-inputrc @@ -0,0 +1,37 @@ +$include /etc/inputrc + +$if Bash + $if mode=emacs + # edit the path + "\C-xp": "PATH=${PATH}\e\C-e\C-a\ef\C-f" + # prepare to type a quoted word -- + # insert open and close double quotes + # and move to just after the open quote + "\C-x\"": "\"\"\C-e\C-b" + # Quote the current or previous word + "\C-xq": "\eb\"\ef\"" + # Add a binding to refresh the line, which is unbound + "\C-xr": redraw-current-line + # Add a binding to edit the line in vim + "\C-xe": edit-and-execute-command + $endif +$endif + +set bell-style none + +set completion-ignore-case on +set completion-query-items 150 + +set mark-symlinked-directories on +set match-hidden-files off +set page-completions off + +set visible-stats on +set colored-stats on + +# Be more intelligent when autocompleting by also looking at the text after +# the cursor. For example, when the current line is "cd ~/src/mozil", and +# the cursor is on the "z", pressing Tab will not autocomplete it to "cd +# ~/src/mozillail", but to "cd ~/src/mozilla". (This is supported by the +# Readline used by Bash 4.) +set skip-completed-text on diff --git a/bash/dot-profile b/bash/dot-profile new file mode 100644 index 0000000..f726fcc --- /dev/null +++ b/bash/dot-profile @@ -0,0 +1,44 @@ +#!/bin/sh + +export PATH="$PATH:$HOME/.local/bin" + +export EDITOR=nvim +export SUDO_EDITOR=$EDITOR +export BAT_THEME=ansi + +export MANPAGER="sh -c 'sed -u -e \"s/\\x1B\[[0-9;]*m//g; s/.\\x08//g\" | bat -p -lman'" + +export XDG_CONFIG_HOME="$HOME"/.config +export XDG_CACHE_HOME="$HOME"/.cache +export XDG_DATA_HOME="$HOME"/.local/share +export XDG_STATE_HOME="$HOME"/.local/state +export XDG_BIN_HOME="$HOME"/.local/bin + +export LESSHISTFILE="$XDG_CACHE_HOME"/lesshst +export CARGO_HOME="$XDG_DATA_HOME"/cargo +export TEXMFHOME="$XDG_DATA_HOME"/texmf +export TEXMFVAR="$XDG_CACHE_HOME"/texlive/texmf-var +export TEXMFCONFIG="$XDG_CONFIG_HOME"/texlive/texmf-config +export GOPATH="$XDG_DATA_HOME"/go +export GTK2_RC_FILES="$XDG_CONFIG_HOME"/gtk-2.0/gtkrc-2.0 +export PASSWORD_STORE_DIR="$XDG_DATA_HOME"/pass +export NOTMUCH_CONFIG="$XDG_CONFIG_HOME"/notmuch/default/config + +# [ -d "$HOME/.nix-profile" ] && export XDG_DATA_DIRS="$HOME"/.nix-profile/share:"$XDG_DATA_DIRS" +# [ -d "$HOME/.nix-profile" ] && . "$HOME/.nix-profile/etc/profile.d/hm-session-vars.sh" + +unset SSH_AGENT_PID +if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then + SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)" + export SSH_AUTH_SOCK +fi + +# disable accessibility +export NO_AT_BRIDGE=1 +export GTK_A11Y=none + +if [ -z "$WAYLAND_DISPLAY" ] && [ -n "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ] ; then + if uwsm check may-start; then + exec systemd-cat -t uwsm_start uwsm start hyprland.desktop + fi +fi diff --git a/fonts/.stow-local-ignore b/fonts/.stow-local-ignore new file mode 100644 index 0000000..b43bf86 --- /dev/null +++ b/fonts/.stow-local-ignore @@ -0,0 +1 @@ +README.md diff --git a/fonts/README.md b/fonts/README.md new file mode 100644 index 0000000..1a64997 --- /dev/null +++ b/fonts/README.md @@ -0,0 +1,6 @@ +# Needed packages + +```sh +sudo pacman -S otf-libertinus noto-fonts-emoji ttf-nerd-fonts-symbols ttf-opensans ttf-hack +yay -S vazirmatn-fonts +``` diff --git a/fonts/dot-config/fontconfig/conf.d/52-default-fonts.conf b/fonts/dot-config/fontconfig/conf.d/52-default-fonts.conf new file mode 100644 index 0000000..625f63d --- /dev/null +++ b/fonts/dot-config/fontconfig/conf.d/52-default-fonts.conf @@ -0,0 +1,36 @@ +<?xml version="1.0"?> +<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd"> +<fontconfig> + <alias> + <family>serif</family> + <prefer> + <family>Libertinus Serif</family> + <family>Noto Color Emoji</family> + <family>Symbols Nerd Font</family> + </prefer> + </alias> + <alias> + <family>sans-serif</family> + <prefer> + <family>Open Sans</family> + <family>Noto Color Emoji</family> + <family>Symbols Nerd Font</family> + </prefer> + </alias> + <alias> + <family>sans</family> + <prefer> + <family>Open Sans</family> + <family>Noto Color Emoji</family> + <family>Symbols Nerd Font</family> + </prefer> + </alias> + <alias> + <family>monospace</family> + <prefer> + <family>Hack</family> + <family>Noto Color Emoji</family> + <family>Symbols Nerd Font</family> + </prefer> + </alias> +</fontconfig> diff --git a/fonts/dot-config/fontconfig/conf.d/53-font-features.conf b/fonts/dot-config/fontconfig/conf.d/53-font-features.conf new file mode 100644 index 0000000..d883d97 --- /dev/null +++ b/fonts/dot-config/fontconfig/conf.d/53-font-features.conf @@ -0,0 +1,18 @@ +<?xml version="1.0"?> +<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd"> +<fontconfig> + <match target="font"> + <test name="family" qual="any"> + <string>Hack</string> + </test> + <test name="family" qual="any"> + <string>Comic Code</string> + </test> + <test name="family" compare="contains"> + <string>IosevkaInput</string> + </test> + <edit name="hintstyle" mode="assign"> + <const>hintfull</const> + </edit> + </match> +</fontconfig> diff --git a/fonts/dot-config/fontconfig/conf.d/66-emoji.conf b/fonts/dot-config/fontconfig/conf.d/66-emoji.conf new file mode 100644 index 0000000..139d78a --- /dev/null +++ b/fonts/dot-config/fontconfig/conf.d/66-emoji.conf @@ -0,0 +1,46 @@ +<?xml version="1.0"?> +<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd"> +<fontconfig> + <!-- + This adds a generic family 'emoji', + aimed for apps that don't specify specific font family for rendering emojis. + --> + <match target="pattern"> + <test qual="any" name="family"><string>emoji</string></test> + <edit name="family" mode="assign" binding="same"><string>Noto Color Emoji</string></edit> + </match> + <!-- + If other fonts contain emoji glyphs, they could interfere and make some emojis rendered in wrong font (often in black-and-white). + For example, DejaVu Sans contains black-and-white emojis, which we can remove using the following trick: + --> + <match target="scan"> + <test name="family" compare="contains"> + <string>Hack</string> + </test> + <test name="family" compare="contains"> + <string>Comic Code</string> + </test> + <test name="family" compare="contains"> + <string>IosevkaInput</string> + </test> + <test name="family" compare="contains"> + <string>Dejavu Sans Mono</string> + </test> + <edit name="charset" mode="assign" binding="same"> + <minus> + <name>charset</name> + <charset> + <range> + <int>0x2763</int> + <int>0x2764</int> + </range> + <range> + <int>0x1f600</int> + <int>0x1f640</int> + </range> + </charset> + </minus> + </edit> + </match> +</fontconfig> + diff --git a/fonts/dot-config/fontconfig/conf.d/66-vazirmatn.conf b/fonts/dot-config/fontconfig/conf.d/66-vazirmatn.conf new file mode 100644 index 0000000..75a5b63 --- /dev/null +++ b/fonts/dot-config/fontconfig/conf.d/66-vazirmatn.conf @@ -0,0 +1,20 @@ +<?xml version="1.0"?> +<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd"> +<fontconfig> + <match> + <test compare="contains" name="lang"> + <string>fa</string> + </test> + <edit mode="prepend" name="family" binding="strong"> + <string>Vazirmatn RD UI NL</string> + </edit> + </match> + <match> + <test compare="contains" name="lang"> + <string>ar</string> + </test> + <edit mode="prepend" name="family" binding="strong"> + <string>Vazirmatn RD UI NL</string> + </edit> + </match> +</fontconfig> diff --git a/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-Heavy.ttf b/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-Heavy.ttf Binary files differnew file mode 100644 index 0000000..60f7c1f --- /dev/null +++ b/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-Heavy.ttf diff --git a/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-HeavyOblique.ttf b/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-HeavyOblique.ttf Binary files differnew file mode 100644 index 0000000..2a2a36c --- /dev/null +++ b/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-HeavyOblique.ttf diff --git a/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-W360.ttf b/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-W360.ttf Binary files differnew file mode 100644 index 0000000..e5ad0e5 --- /dev/null +++ b/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-W360.ttf diff --git a/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-W360Oblique.ttf b/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-W360Oblique.ttf Binary files differnew file mode 100644 index 0000000..3c0f160 --- /dev/null +++ b/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-W360Oblique.ttf diff --git a/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-build-plans.toml b/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-build-plans.toml new file mode 100644 index 0000000..c273c74 --- /dev/null +++ b/fonts/dot-local/share/fonts/IosevkaInput/IosevkaInput-build-plans.toml @@ -0,0 +1,208 @@ +# Custom build with intention to have similar proportions and most symbols as +# Input Mono (line height 1, Light+Bold). +# +# Build instructions: +# - `git clone --depth=1 https://github.com/be5invis/Iosevka` +# This build plan is tested for v33.2.1 version. +# - `cd Iosevka` +# - `npm install` +# - Copy this file into project's root as 'private-build-plans.toml'. +# - `npm run build -- --jCmd=4 ttf::IosevkaInput`. +# !!! This will probably take a lot of time (at least 4 minutes) with 100% +# CPU usage on 4 cores and significant amount of RAM used !!! +# - Move files from 'dist/IosevkaInput/TTF' to 'fonts' dotfiles directory and +# follow its README. + +[buildPlans.IosevkaInput] +family = "IosevkaInput" +spacing = "fixed" +serifs = "sans" +exportGlyphNames = false +noLigation = true + +# Define all available major characters for completeness. +# Overall approach for choosing a character is to *usually* prefer: +# "serifless", "straight", "toothless", "earless", "corner", "flat-top", +# "flat-hook". With some exceptions for readability: +# - Serifed `Iij`. +# - Serifed or curly captial letter if similar to lowercase. Like `CSVXYZ`. +[buildPlans.IosevkaInput.variants.design] +one = "base" +two = "curly-neck-serifless" +three = "flat-top-serifless" +four = "closed-serifless" +five = "upright-flat-serifless" +six = "closed-contour" +seven = "straight-serifless" +eight = "two-circles" +nine = "closed-contour" +zero = "oval-long-dotted" +capital-a = "straight-serifless" +capital-b = "standard-serifless" +capital-c = "bilateral-inward-serifed" +capital-d = "standard-serifless" +capital-e = "serifless" +capital-f = "serifless" +capital-g = "toothless-corner-serifless-hooked" +capital-h = "serifless" +capital-i = "serifed" +capital-j = "serifless" +capital-k = "symmetric-connected-serifless" +capital-l = "serifless" +capital-m = "hanging-serifless" +capital-n = "standard-serifless" +capital-p = "closed-serifless" +capital-q = "crossing-curly-tailed" +capital-r = "straight-serifless" +capital-s = "bilateral-inward-serifed" +capital-t = "serifless" +capital-u = "toothless-rounded-serifless" +capital-v = "curly-serifless" +capital-w = "straight-vertical-sides-serifless" +capital-x = "curly-serifless" +capital-y = "curly-serifless" +capital-z = "straight-serifed" +a = "double-storey-toothless-corner" +b = "toothless-corner-serifless" +c = "serifless" +d = "toothless-corner-serifless" +e = "flat-crossbar" +f = "flat-hook-serifless-crossbar-at-x-height" +g = "double-storey" +h = "straight-serifless" +i = "zshaped" +j = "flat-hook-serifed" +k = "straight-serifless" +l = "zshaped" +m = "earless-rounded-double-arch-short-leg-serifless" +n = "earless-corner-straight-serifless" +p = "earless-corner-serifless" +q = "earless-corner-straight-serifless" +r = "earless-corner-serifless" +s = "serifless" +t = "flat-hook" +u = "toothless-corner-serifless" +v = "straight-serifless" +w = "rounded-vertical-sides-serifless" +x = "straight-serifless" +y = "straight-turn-serifless" +z = "straight-serifless" +capital-eszet = "corner-serifless" +long-s = "bent-hook-serifless" +eszet = "sulzbacher-serifless" +lower-eth = "straight-bar" +capital-thorn = "serifless" +lower-thorn = "serifless" +lower-alpha = "crossing" +lower-beta = "standard" +capital-gamma = "serifless" +lower-gamma = "casual" +capital-delta = "straight" +lower-delta = "flat-top" +lower-eta = "earless-corner-serifless" +lower-theta = "capsule" +lower-iota = "serifed-semi-tailed" +lower-kappa = "straight-serifless" +capital-lambda = "straight-serifless" +lower-lambda = "straight" +lower-mu = "toothless-corner-serifless" +lower-nu = "casual" +lower-xi = "flat-top" +lower-pi = "tailless" +lower-tau = "semi-tailed" +lower-upsilon = "casual-serifless" +lower-phi = "cursive" +lower-chi = "semi-chancery-straight-serifless" +lower-psi = "flat-top-serifless" +partial-derivative = "straight-bar" +cyrl-a = "single-storey-earless-corner-tailed" +cyrl-ve = "standard-serifless" +cyrl-capital-zhe = "symmetric-connected" +cyrl-zhe = "symmetric-connected" +cyrl-capital-ze = "bilateral-inward-serifed" +cyrl-ze = "serifless" +cyrl-capital-ka = "symmetric-connected-bottom-right-serifed" +cyrl-ka = "symmetric-connected-serifless" +cyrl-el = "straight" +cyrl-em = "flat-bottom-serifless" +cyrl-capital-en = "serifed" +cyrl-en = "serifless" +cyrl-capital-er = "closed-serifed" +cyrl-er = "eared-serifed" +cyrl-capital-u = "cursive-serifless" +cyrl-u = "cursive-serifless" +cyrl-ef = "serifless" +cyrl-che = "standard" +cyrl-yeri = "corner" +cyrl-yery = "corner" +cyrl-capital-e = "bilateral-inward-serifed" +cyrl-e = "serifless" +cyrl-capital-ya = "standing-serifless" +cyrl-ya = "standing-serifless" +tittle = "round" +diacritic-dot = "round" +punctuation-dot = "round" +braille-dot = "square" +tilde = "low" +asterisk = "hex-low" +underscore = "above-baseline" +caret = "medium" +ascii-grave = "straight" +ascii-single-quote = "straight" +paren = "normal" +brace = "curly-flat-boundary" +guillemet = "straight" +number-sign = "upright" +ampersand = "closed" +at = "fourfold" +dollar = "through" +cent = "through" +percent = "rings-continuous-slash" +bar = "force-upright" +question = "corner" +pilcrow = "high" +micro-sign = "tailed-serifless" +decorative-angle-brackets = "middle" + +# Use two weights with more visible bolds +[buildPlans.IosevkaInput.weights.W360] +shape = 360 +menu = 360 +css = 360 + +[buildPlans.IosevkaInput.weights.Heavy] +shape = 900 +menu = 900 +css = 900 + +# Make upright upright and obligue with maximum angle for visibility +[buildPlans.IosevkaInput.slopes.Upright] +angle = 0 +shape = "upright" +menu = "upright" +css = "normal" + +[buildPlans.IosevkaInput.slopes.Oblique] +angle = 15 +shape = "oblique" +menu = "oblique" +css = "oblique" + +# Make font more square-ish with about 1:2 ratio +# Notes: +# - Adjusting sidebearings (`sb`) seems to lead to slightly worse results. +# Instead opt-in for adjusting overall dimensions, increasing various glyph +# height (capital, ascending, x), and using smaller size. +[buildPlans.IosevkaInput.widths.Normal] +shape = 575 +menu = 5 +css = "normal" + +[buildPlans.IosevkaInput.metricOverride] +leading = 1100 # Overall "cell" height +parenSize = 950 # Height of parenthesis +cap = 800 # Height of capital (`H`) +ascender = 800 # Height of ascending (`b`) +xHeight = 600 # Height of lowercase (`x`) +dotSize = "blend(weight, [100, 50], [360, 140], [900, 190])" # Size of dots in diacritic marks (!?ij) +periodSize = "blend(weight, [100, 55], [360, 160], [900, 215])" # Size of dots in period (.,;:) diff --git a/fonts/dot-local/share/fonts/comic-code/ComicCode-Bold.otf b/fonts/dot-local/share/fonts/comic-code/ComicCode-Bold.otf Binary files differnew file mode 100644 index 0000000..5bb8433 --- /dev/null +++ b/fonts/dot-local/share/fonts/comic-code/ComicCode-Bold.otf diff --git a/fonts/dot-local/share/fonts/comic-code/ComicCode-BoldItalic.otf b/fonts/dot-local/share/fonts/comic-code/ComicCode-BoldItalic.otf Binary files differnew file mode 100644 index 0000000..d100d89 --- /dev/null +++ b/fonts/dot-local/share/fonts/comic-code/ComicCode-BoldItalic.otf diff --git a/fonts/dot-local/share/fonts/comic-code/ComicCode-Italic.otf b/fonts/dot-local/share/fonts/comic-code/ComicCode-Italic.otf Binary files differnew file mode 100644 index 0000000..a6a1ed1 --- /dev/null +++ b/fonts/dot-local/share/fonts/comic-code/ComicCode-Italic.otf diff --git a/fonts/dot-local/share/fonts/comic-code/ComicCode-Medium.otf b/fonts/dot-local/share/fonts/comic-code/ComicCode-Medium.otf Binary files differnew file mode 100644 index 0000000..18ace50 --- /dev/null +++ b/fonts/dot-local/share/fonts/comic-code/ComicCode-Medium.otf diff --git a/fonts/dot-local/share/fonts/comic-code/ComicCode-MediumItalic.otf b/fonts/dot-local/share/fonts/comic-code/ComicCode-MediumItalic.otf Binary files differnew file mode 100644 index 0000000..e143027 --- /dev/null +++ b/fonts/dot-local/share/fonts/comic-code/ComicCode-MediumItalic.otf diff --git a/fonts/dot-local/share/fonts/comic-code/ComicCode-Regular.otf b/fonts/dot-local/share/fonts/comic-code/ComicCode-Regular.otf Binary files differnew file mode 100644 index 0000000..23443de --- /dev/null +++ b/fonts/dot-local/share/fonts/comic-code/ComicCode-Regular.otf diff --git a/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-Bold.otf b/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-Bold.otf Binary files differnew file mode 100644 index 0000000..56992d8 --- /dev/null +++ b/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-Bold.otf diff --git a/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-BoldItalic.otf b/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-BoldItalic.otf Binary files differnew file mode 100644 index 0000000..17ccb3a --- /dev/null +++ b/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-BoldItalic.otf diff --git a/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-Italic.otf b/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-Italic.otf Binary files differnew file mode 100644 index 0000000..74caafb --- /dev/null +++ b/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-Italic.otf diff --git a/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-Medium.otf b/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-Medium.otf Binary files differnew file mode 100644 index 0000000..805afe5 --- /dev/null +++ b/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-Medium.otf diff --git a/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-MediumItalic.otf b/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-MediumItalic.otf Binary files differnew file mode 100644 index 0000000..ae9b1b5 --- /dev/null +++ b/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-MediumItalic.otf diff --git a/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-Regular.otf b/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-Regular.otf Binary files differnew file mode 100644 index 0000000..bbcc76c --- /dev/null +++ b/fonts/dot-local/share/fonts/comic-code/ComicCodeLigatures-Regular.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Black.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Black.otf Binary files differnew file mode 100644 index 0000000..e621e1b --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Black.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-BlackItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-BlackItalic.otf Binary files differnew file mode 100644 index 0000000..b862613 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-BlackItalic.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Bold.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Bold.otf Binary files differnew file mode 100644 index 0000000..025b25c --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Bold.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-BoldItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-BoldItalic.otf Binary files differnew file mode 100644 index 0000000..77ee0c2 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-BoldItalic.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Heavy.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Heavy.otf Binary files differnew file mode 100644 index 0000000..8285164 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Heavy.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-HeavyItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-HeavyItalic.otf Binary files differnew file mode 100644 index 0000000..c44f865 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-HeavyItalic.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Light.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Light.otf Binary files differnew file mode 100644 index 0000000..b25e3dc --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Light.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-LightItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-LightItalic.otf Binary files differnew file mode 100644 index 0000000..74b5e8b --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-LightItalic.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Medium.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Medium.otf Binary files differnew file mode 100644 index 0000000..b2f7dac --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Medium.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-MediumItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-MediumItalic.otf Binary files differnew file mode 100644 index 0000000..918709e --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-MediumItalic.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Regular.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Regular.otf Binary files differnew file mode 100644 index 0000000..09aaca9 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Regular.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-RegularItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-RegularItalic.otf Binary files differnew file mode 100644 index 0000000..99e34f0 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-RegularItalic.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Semibold.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Semibold.otf Binary files differnew file mode 100644 index 0000000..b1e38ad --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Semibold.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-SemiboldItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-SemiboldItalic.otf Binary files differnew file mode 100644 index 0000000..7b65b53 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-SemiboldItalic.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Thin.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Thin.otf Binary files differnew file mode 100644 index 0000000..e4ddd7f --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Thin.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-ThinItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-ThinItalic.otf Binary files differnew file mode 100644 index 0000000..0fb2d44 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-ThinItalic.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Ultralight.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Ultralight.otf Binary files differnew file mode 100644 index 0000000..528c9fd --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-Ultralight.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-UltralightItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-UltralightItalic.otf Binary files differnew file mode 100644 index 0000000..37d146c --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Display-UltralightItalic.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Bold.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Bold.otf Binary files differnew file mode 100644 index 0000000..840d810 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Bold.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-BoldItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-BoldItalic.otf Binary files differnew file mode 100644 index 0000000..3cddfc4 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-BoldItalic.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Heavy.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Heavy.otf Binary files differnew file mode 100644 index 0000000..7d3b413 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Heavy.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-HeavyItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-HeavyItalic.otf Binary files differnew file mode 100644 index 0000000..a03d003 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-HeavyItalic.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Light.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Light.otf Binary files differnew file mode 100644 index 0000000..1e16968 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Light.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-LightItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-LightItalic.otf Binary files differnew file mode 100644 index 0000000..5bee181 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-LightItalic.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Medium.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Medium.otf Binary files differnew file mode 100644 index 0000000..4982cb5 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Medium.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-MediumItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-MediumItalic.otf Binary files differnew file mode 100644 index 0000000..c876a0e --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-MediumItalic.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Regular.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Regular.otf Binary files differnew file mode 100644 index 0000000..65f9ea5 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Regular.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-RegularItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-RegularItalic.otf Binary files differnew file mode 100644 index 0000000..af984d5 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-RegularItalic.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Semibold.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Semibold.otf Binary files differnew file mode 100644 index 0000000..a20e7a0 --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-Semibold.otf diff --git a/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-SemiboldItalic.otf b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-SemiboldItalic.otf Binary files differnew file mode 100644 index 0000000..08ee24d --- /dev/null +++ b/fonts/dot-local/share/fonts/sf-pro/SF-Pro-Text-SemiboldItalic.otf diff --git a/git/dot-config/git/config b/git/dot-config/git/config new file mode 100644 index 0000000..8df961c --- /dev/null +++ b/git/dot-config/git/config @@ -0,0 +1,17 @@ +[alias] + co = checkout + br = branch + ci = commit + s = status -sb + l = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%ai%C(reset) - %C(bold white)%an%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n %C(white)%s%C(reset)' +[pull] + rebase = true +[init] + defaultBranch = main +[user] + name = Mohammad Reza Karimi + email = m.r.karimi.j@gmail.com +[commit] + verbose = true +[credential "https://git.overleaf.com"] + helper = !pass git/overleaf@mit diff --git a/gpg-setup.bash b/gpg-setup.bash new file mode 100755 index 0000000..c3f6674 --- /dev/null +++ b/gpg-setup.bash @@ -0,0 +1,8 @@ +#!/bin/bash + +# first, make sure that your GPG keys are all imported, or make a new key +# also stow the gpg package + +# gpg-connect-agent reloadagent /bye +# ssh-add ~/.ssh/id_ed25519 +sudo patch /etc/pam.d/system-login ./gpg/pambase_system-login.diff diff --git a/gpg/.stow-local-ignore b/gpg/.stow-local-ignore new file mode 100644 index 0000000..fc31db4 --- /dev/null +++ b/gpg/.stow-local-ignore @@ -0,0 +1 @@ +pambase_system-login.diff diff --git a/gpg/dot-config/pam-gnupg b/gpg/dot-config/pam-gnupg new file mode 100644 index 0000000..364d89b --- /dev/null +++ b/gpg/dot-config/pam-gnupg @@ -0,0 +1,2 @@ +8F55CFC45CAC18892A739C1F2B8BA796C07BFF8C +F029032D6539C360008FE088112ED8AF2D23F502 diff --git a/gpg/dot-gnupg/gpg-agent.conf b/gpg/dot-gnupg/gpg-agent.conf new file mode 100644 index 0000000..87f944f --- /dev/null +++ b/gpg/dot-gnupg/gpg-agent.conf @@ -0,0 +1,6 @@ +allow-preset-passphrase +enable-ssh-support +default-cache-ttl 60480000 +max-cache-ttl 60480000 +default-cache-ttl-ssh 60480000 +max-cache-ttl-ssh 60480000 diff --git a/gpg/pambase_system-login.diff b/gpg/pambase_system-login.diff new file mode 100644 index 0000000..10749bb --- /dev/null +++ b/gpg/pambase_system-login.diff @@ -0,0 +1,15 @@ +--- - 2025-11-25 13:45:42.634133151 -0500 ++++ /etc/pam.d/system-login 2025-11-25 13:37:28.156022632 -0500 +@@ -3,6 +3,7 @@ + auth required pam_shells.so + auth requisite pam_nologin.so + auth include system-auth ++auth optional pam_gnupg.so store-only + + account required pam_access.so + account required pam_nologin.so +@@ -19,3 +20,4 @@ + session optional pam_umask.so + -session optional pam_systemd.so + session required pam_env.so ++session optional pam_gnupg.so diff --git a/hyprland/dot-config/hypr/hypridle.conf b/hyprland/dot-config/hypr/hypridle.conf new file mode 100644 index 0000000..a3fb5f1 --- /dev/null +++ b/hyprland/dot-config/hypr/hypridle.conf @@ -0,0 +1,27 @@ +general { + lock_cmd = pidof hyprlock || hyprlock # avoid starting multiple hyprlock instances. + before_sleep_cmd = loginctl lock-session # lock before suspend. + after_sleep_cmd = hyprctl dispatch dpms on # to avoid having to press a key twice to turn on the display. +} + +listener { + timeout = 150 # 2.5min. + on-timeout = brightnessctl -s set 10 # set monitor backlight to minimum, avoid 0 on OLED monitor. + on-resume = brightnessctl -r # monitor backlight restore. +} + +listener { + timeout = 300 # 5min. + on-timeout = loginctl lock-session # lock screen when timeout has passed. +} + +listener { + timeout = 330 # 5.5min. + on-timeout = hyprctl dispatch dpms off # screen off when timeout has passed. + on-resume = hyprctl dispatch dpms on # screen on when activity is detected after timeout has fired. +} + +listener { + timeout = 1800 # 30min. + on-timeout = systemctl suspend # suspend pc. +} diff --git a/hyprland/dot-config/hypr/hyprland.conf b/hyprland/dot-config/hypr/hyprland.conf new file mode 100644 index 0000000..731e4b6 --- /dev/null +++ b/hyprland/dot-config/hypr/hyprland.conf @@ -0,0 +1,202 @@ +monitor=,preferred,auto,auto + +$terminal = app2unit -- alacritty +$menu = fuzzel --launch-prefix="app2unit --" +$browser = app2unit -- qutebrowser +$exit = loginctl terminate-user "" +$lock = app2unit -- hyprlock --no-fade-in + +$activeBorderColor = rgb(005577) # rgba(71CEADee) +$inactiveBorderColor = rgb(444444) + +general { + gaps_in = 5 + gaps_out = 15 + border_size = 2 + + col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg + # col.active_border = $activeBorderColor + col.inactive_border = $inactiveBorderColor + + resize_on_border = false + allow_tearing = false + layout = master +} + +decoration { + rounding = 10 + rounding_power = 2 + + active_opacity = 1.0 + inactive_opacity = 1.0 + + shadow { + enabled = false + } + blur { + enabled = false + } +} + +animations { + enabled = yes + + # Default curves, see https://wiki.hypr.land/Configuring/Animations/#curves + # NAME, X0, Y0, X1, Y1 + bezier = easeOutQuint, 0.23, 1, 0.32, 1 + bezier = easeInOutCubic, 0.65, 0.05, 0.36, 1 + bezier = linear, 0, 0, 1, 1 + bezier = almostLinear, 0.5, 0.5, 0.75, 1 + bezier = quick, 0.15, 0, 0.1, 1 + + # Default animations, see https://wiki.hypr.land/Configuring/Animations/ + # NAME, ONOFF, SPEED, CURVE, [STYLE] + animation = global, 1, 10, default + animation = border, 1, 5.39, easeOutQuint + animation = windows, 1, 4.79, easeOutQuint + animation = windowsIn, 1, 4.1, easeOutQuint, popin 87% + animation = windowsOut, 1, 1.49, linear, popin 87% + animation = fadeIn, 1, 1.73, almostLinear + animation = fadeOut, 1, 1.46, almostLinear + animation = fade, 1, 3.03, quick + animation = layers, 1, 3.81, easeOutQuint + animation = layersIn, 1, 4, easeOutQuint, fade + animation = layersOut, 1, 1.5, linear, fade + animation = fadeLayersIn, 1, 1.79, almostLinear + animation = fadeLayersOut, 1, 1.39, almostLinear + animation = workspaces, 1, 1.94, almostLinear, fade + animation = workspacesIn, 1, 1.21, almostLinear, fade + animation = workspacesOut, 1, 1.94, almostLinear, fade + animation = zoomFactor, 1, 7, quick +} + +# Ref https://wiki.hypr.land/Configuring/Workspace-Rules/ +# "Smart gaps" / "No gaps when only" +# uncomment all if you wish to use that. +# workspace = w[tv1], gapsout:0, gapsin:0 +# workspace = f[1], gapsout:0, gapsin:0 +# windowrule = bordersize 0, floating:0, onworkspace:w[tv1] +# windowrule = bordersize 0, floating:0, onworkspace:f[1] + +# See https://wiki.hypr.land/Configuring/Dwindle-Layout/ for more +dwindle { + pseudotile = true + preserve_split = true +} + +# See https://wiki.hypr.land/Configuring/Master-Layout/ for more +master { + new_status = inherit + mfact = 0.50 +} + +misc { + force_default_wallpaper = 0 + disable_hyprland_logo = true +} + +input { + kb_layout = us,ir + kb_variant = ,pes_keypad + kb_options = grp:shifts_toggle + + repeat_rate = 50 + repeat_delay = 300 + + follow_mouse = 1 + + sensitivity = 0 + + touchpad { + natural_scroll = false + } +} + +# See https://wiki.hypr.land/Configuring/Gestures +# gesture = 3, horizontal, workspace + +$osdclient = swayosd-client --monitor "$(hyprctl monitors -j | jq -r '.[] | select(.focused == true).name')" + +# Example binds, see https://wiki.hypr.land/Configuring/Binds/ for more +bind = SUPER, return, exec, $terminal +bind = SUPER SHIFT, C, killactive, +bind = SUPER SHIFT, E, exec, $exit + +bind = SUPER SHIFT, space, togglefloating, +bind = SUPER, V, togglesplit, # dwindle +bind = SUPER, F, fullscreen, toggle +bind = SUPER SHIFT, return, layoutmsg, swapwithmaster master ignoremaster +bind = SUPER, space, exec, $(hyprctl activewindow -j | jq -e '.floating') && hyprctl dispatch cyclenext tiled || hyprctl dispatch cyclenext floating + +bind = SUPER, comma, focusmonitor, +1 +bind = SUPER SHIFT, comma, movewindow, mon:+1 silent + +bind = SUPER, P, exec, $menu +bind = SUPER, B, exec, $browser +bind = SUPER, X, exec, $lock +# bind = SUPER, E, exec, rofi -show emoji +# bind = SUPER, M, exec, app2unit -- emacsclient -c + +# Move focus with mainMod + arrow keys +bind = SUPER, H, movefocus, l +bind = SUPER, J, movefocus, d +bind = SUPER, K, movefocus, u +bind = SUPER, L, movefocus, r + +# Move window +bind = SUPER SHIFT, H, movewindow, l +bind = SUPER SHIFT, J, movewindow, d +bind = SUPER SHIFT, K, movewindow, u +bind = SUPER SHIFT, L, movewindow, r +bind = SUPER, C, centerwindow + +# Switch workspaces with mainMod + [0-9] +bind = SUPER, 1, workspace, 1 +bind = SUPER, 2, workspace, 2 +bind = SUPER, 3, workspace, 3 +bind = SUPER, 4, workspace, 4 +bind = SUPER, 5, workspace, 5 +bind = SUPER, 6, workspace, 6 +bind = SUPER, 7, workspace, 7 +bind = SUPER, 8, workspace, 8 +bind = SUPER, 9, workspace, 9 + +# Move active window to a workspace with mainMod + SHIFT + [0-9] +bind = SUPER SHIFT, 1, movetoworkspacesilent, 1 +bind = SUPER SHIFT, 2, movetoworkspacesilent, 2 +bind = SUPER SHIFT, 3, movetoworkspacesilent, 3 +bind = SUPER SHIFT, 4, movetoworkspacesilent, 4 +bind = SUPER SHIFT, 5, movetoworkspacesilent, 5 +bind = SUPER SHIFT, 6, movetoworkspacesilent, 6 +bind = SUPER SHIFT, 7, movetoworkspacesilent, 7 +bind = SUPER SHIFT, 8, movetoworkspacesilent, 8 +bind = SUPER SHIFT, 9, movetoworkspacesilent, 9 + +# Example special workspace (scratchpad) +bind = SUPER, S, togglespecialworkspace, magic +bind = SUPER SHIFT, S, movetoworkspace, special:magic + +# Move/resize windows with mainMod + LMB/RMB and dragging +bindm = SUPER, mouse:272, movewindow +bindm = SUPER, mouse:273, resizewindow + + +# Laptop multimedia keys for volume and LCD brightness +bindel = ,XF86AudioRaiseVolume, exec, $osdclient --output-volume raise --max-volume 100 +bindel = ,XF86AudioLowerVolume, exec, $osdclient --output-volume lower +bindel = ,XF86AudioMute, exec, $osdclient --output-volume mute-toggle && update-led-mute sink +bindel = ,XF86AudioMicMute, exec, $osdclient --input-volume mute-toggle && update-led-mute source +bindel = ,XF86MonBrightnessUp, exec, $osdclient --brightness raise +bindel = ,XF86MonBrightnessDown, exec, $osdclient --brightness lower + +# Screenshot +bindd = , PRINT, Screenshot with editing, exec, screenshot-hypr +bindd = SHIFT, PRINT, Screenshot to clipboard, exec, screenshot-hypr smart +bindd = SUPER, PRINT, Color picker, exec, pkill hyprpicker || hyprpicker -a + + +# Ignore maximize requests from apps. You'll probably like this. +windowrule = suppressevent maximize, class:.* + +# Fix some dragging issues with XWayland +windowrule = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0 diff --git a/hyprland/dot-config/hypr/hyprlock.conf b/hyprland/dot-config/hypr/hyprlock.conf new file mode 100644 index 0000000..9df3e67 --- /dev/null +++ b/hyprland/dot-config/hypr/hyprlock.conf @@ -0,0 +1,76 @@ +$font = Hack + +general { + hide_cursor = true +} + +auth { + fingerprint:enabled = true +} + +animations { + enabled = false +} + +background { + color = rgba(0, 0, 0, 1.0) +} + +input-field { + size = 500, 90 + outline_thickness = 3 + inner_color = rgba(0, 0, 0, 0.0) + + outer_color = rgba(33ccffee) rgba(00ff99ee) 45deg + check_color = rgba(00ff99ee) rgba(ff6633ee) 120deg + fail_color = rgba(ff6633ee) rgba(ff0066ee) 40deg + + font_color = rgb(143, 143, 143) + fade_on_empty = false + rounding = 15 + + font_family = $font + placeholder_text = <span>Enter Password </span> + fail_text = $PAMFAIL + + dots_spacing = 0.3 + + position = 0, -20 + halign = center + valign = center +} + +# TIME +label { + monitor = + text = $TIME # ref. https://wiki.hyprland.org/Hypr-Ecosystem/hyprlock/#variable-substitution + font_size = 90 + font_family = $font + + position = -30, 0 + halign = right + valign = top +} + +# DATE +label { + monitor = + text = cmd[update:60000] date +"%A, %d %B %Y" # update every 60 seconds + font_size = 25 + font_family = $font + + position = -30, -150 + halign = right + valign = top +} + +label { + monitor = + text = $LAYOUT[en,ir] + font_size = 24 + onclick = hyprctl switchxkblayout all next + + position = 300, -20 + halign = center + valign = center +} diff --git a/hyprland/dot-config/systemd/user/hypridle.service.d/override.conf b/hyprland/dot-config/systemd/user/hypridle.service.d/override.conf new file mode 100644 index 0000000..2b17997 --- /dev/null +++ b/hyprland/dot-config/systemd/user/hypridle.service.d/override.conf @@ -0,0 +1,2 @@ +[Service] +ExecCondition=/lib/systemd/systemd-xdg-autostart-condition "Hyprland" "" diff --git a/hyprland/dot-config/systemd/user/hyprpolkitagent.service.d/override.conf b/hyprland/dot-config/systemd/user/hyprpolkitagent.service.d/override.conf new file mode 100644 index 0000000..0f6e052 --- /dev/null +++ b/hyprland/dot-config/systemd/user/hyprpolkitagent.service.d/override.conf @@ -0,0 +1,3 @@ +[Service] +ExecCondition=/lib/systemd/systemd-xdg-autostart-condition "Hyprland" "" +Slice=session-graphical.slice diff --git a/hyprland/dot-config/systemd/user/xdg-desktop-portal-hyprland.service.d/override.conf b/hyprland/dot-config/systemd/user/xdg-desktop-portal-hyprland.service.d/override.conf new file mode 100644 index 0000000..2b17997 --- /dev/null +++ b/hyprland/dot-config/systemd/user/xdg-desktop-portal-hyprland.service.d/override.conf @@ -0,0 +1,2 @@ +[Service] +ExecCondition=/lib/systemd/systemd-xdg-autostart-condition "Hyprland" "" diff --git a/hyprland/dot-config/uwsm/env b/hyprland/dot-config/uwsm/env new file mode 100644 index 0000000..a2bd337 --- /dev/null +++ b/hyprland/dot-config/uwsm/env @@ -0,0 +1,17 @@ +# vim: ft=bash + +export XCURSOR_SIZE=24 + +# graphical apps +export BROWSER=qutebrowser +export TERMINAL=alacritty + +# Wayland configuration +export GDK_BACKEND='wayland,x11,*' +export QT_QPA_PLATFORM='wayland;xcb' +export QT_STYLE_OVERRIDE=kvantum +export SDL_VIDEODRIVER=wayland +export OZONE_PLATFORM=wayland +export ELECTRON_OZONE_PLATFORM_HINT=wayland + +export APP2UNIT_SLICES='a=app-graphical.slice b=background-graphical.slice s=session-graphical.slice' diff --git a/hyprland/dot-config/uwsm/env-hyprland b/hyprland/dot-config/uwsm/env-hyprland new file mode 100644 index 0000000..dc050ff --- /dev/null +++ b/hyprland/dot-config/uwsm/env-hyprland @@ -0,0 +1,3 @@ +# vim: ft=bash + +export HYPRCURSOR_SIZE=24 diff --git a/kvantum/dot-config/Kvantum/KvLibadwaita/KvLibadwaita.kvconfig b/kvantum/dot-config/Kvantum/KvLibadwaita/KvLibadwaita.kvconfig new file mode 100644 index 0000000..4ccde2f --- /dev/null +++ b/kvantum/dot-config/Kvantum/KvLibadwaita/KvLibadwaita.kvconfig @@ -0,0 +1,570 @@ +[%General] +author=Vince Liuice, based on KvAdapta by Tsu Jan +comment=An uncomplicated theme inspired by the Materia GTK theme +x11drag=menubar_and_primary_toolbar +alt_mnemonic=true +left_tabs=false +attach_active_tab=false +mirror_doc_tabs=false +group_toolbar_buttons=true +toolbar_item_spacing=0 +toolbar_interior_spacing=2 +spread_progressbar=true +composite=true +menu_shadow_depth=16 +spread_menuitems=true +tooltip_shadow_depth=7 +splitter_width=1 +scroll_width=9 +scroll_arrows=false +scroll_min_extent=60 +slider_width=2 +slider_handle_width=23 +slider_handle_length=22 +tickless_slider_handle_size=22 +center_toolbar_handle=true +check_size=24 +textless_progressbar=false +progressbar_thickness=2 +menubar_mouse_tracking=true +toolbutton_style=1 +double_click=false +translucent_windows=false +blurring=false +popup_blurring=false +vertical_spin_indicators=false +spin_button_width=24 +fill_rubberband=false +merge_menubar_with_toolbar=true +small_icon_size=16 +large_icon_size=32 +button_icon_size=16 +toolbar_icon_size=16 +combo_as_lineedit=true +animate_states=true +button_contents_shift=false +combo_menu=true +hide_combo_checkboxes=true +combo_focus_rect=false +groupbox_top_label=true +inline_spin_indicators=true +joined_inactive_tabs=false +layout_spacing=6 +layout_margin=9 +scrollbar_in_view=true +transient_scrollbar=true +transient_groove=true +submenu_overlap=0 +tooltip_delay=0 +tree_branch_line=true +no_window_pattern=false +opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam +reduce_window_opacity=0 +respect_DE=true +scrollable_menu=false +submenu_delay=150 +no_inactiveness=false +reduce_menu_opacity=0 +click_behavior=0 +contrast=1.00 +dialog_button_layout=0 +intensity=1.00 +saturation=1.00 +shadowless_popup=false +drag_from_buttons=false +menu_blur_radius=0 +tooltip_blur_radius=0 + +[GeneralColors] +window.color=#F5F5F5 +base.color=#ffffff +alt.base.color=#f8f8f8 +button.color=#f2f2f4 +light.color=#ffffff +mid.light.color=#f0f0f0 +dark.color=#c8c8c8 +mid.color=#e1e1e196 +highlight.color=#3c84f7 +inactive.highlight.color=#3c84f7 +text.color=#444444 +window.text.color=#444444 +button.text.color=#444444 +disabled.text.color=#44444474 +tooltip.text.color=#efefef +highlight.text.color=#333333 +link.color=#0057AE +link.visited.color=#E040FB +progress.indicator.text.color=#444444 + +[Hacks] +transparent_ktitle_label=true +transparent_dolphin_view=true +transparent_pcmanfm_sidepane=true +blur_translucent=false +transparent_menutitle=true +respect_darkness=true +kcapacitybar_as_progressbar=true +force_size_grip=true +iconless_pushbutton=false +iconless_menu=false +disabled_icon_opacity=100 +lxqtmainmenu_iconsize=16 +normal_default_pushbutton=true +single_top_toolbar=true +tint_on_mouseover=0 +transparent_pcmanfm_view=true +no_selection_tint=true +transparent_arrow_button=true +middle_click_scroll=false +opaque_colors=false +kinetic_scrolling=false +scroll_jump_workaround=true +centered_forms=false +noninteger_translucency=false +style_vertical_toolbars=false +blur_only_active_window=true + +[PanelButtonCommand] +frame=true +frame.element=button +frame.top=6 +frame.bottom=6 +frame.left=6 +frame.right=6 +interior=true +interior.element=button +indicator.size=8 +text.normal.color=#444444 +text.focus.color=#444444 +text.press.color=#333333 +text.toggle.color=white +highlight.text.color=white +text.shadow=0 +text.margin=4 +text.iconspacing=4 +indicator.element=arrow +frame.expansion=0 + +[PanelButtonTool] +inherits=PanelButtonCommand +text.normal.color=#444444 +text.focus.color=#444444 +text.press.color=#333333 +text.toggle.color=white +text.disabled.color=#44444474 +text.bold=false +indicator.element=arrow +indicator.size=0 +frame.expansion=0 + +[ToolbarButton] +frame=true +frame.element=tbutton +interior.element=tbutton +frame.top=14 +frame.bottom=14 +frame.left=14 +frame.right=14 +indicator.element=tarrow +text.normal.color=#444444 +text.focus.color=#444444 +text.press.color=#333333 +text.toggle.color=#333333 +text.disabled.color=#44444474 +text.bold=false +frame.expansion=28 + +[Dock] +inherits=PanelButtonCommand +interior.element=dock +frame.element=dock +frame.top=1 +frame.bottom=1 +frame.left=1 +frame.right=1 +text.normal.color=#444444 + +[DockTitle] +inherits=PanelButtonCommand +frame=false +interior=false +text.normal.color=#444444 +text.focus.color=#444444 +text.bold=false + +[IndicatorSpinBox] +inherits=PanelButtonCommand +frame=true +interior=true +frame.top=2 +frame.bottom=2 +frame.left=2 +frame.right=2 +indicator.element=spin +indicator.size=8 +text.normal.color=#444444 +text.margin.top=2 +text.margin.bottom=2 +text.margin.left=2 +text.margin.right=2 + +[RadioButton] +inherits=PanelButtonCommand +frame=false +interior.element=radio +text.normal.color=#444444 +text.focus.color=#444444 +min_width=+0.3font +min_height=+0.3font + +[CheckBox] +inherits=PanelButtonCommand +frame=false +interior.element=checkbox +text.normal.color=#444444 +text.focus.color=#444444 +min_width=+0.3font +min_height=+0.3font + +[Focus] +inherits=PanelButtonCommand +frame=true +frame.element=focus +frame.top=2 +frame.bottom=2 +frame.left=2 +frame.right=2 +frame.patternsize=14 + +[GenericFrame] +inherits=PanelButtonCommand +frame=true +interior=false +frame.element=common +interior.element=common +frame.top=1 +frame.bottom=1 +frame.left=1 +frame.right=1 + +[LineEdit] +inherits=PanelButtonCommand +frame.element=lineedit +interior.element=lineedit +frame.top=6 +frame.bottom=6 +frame.left=6 +frame.right=6 +text.margin.top=2 +text.margin.bottom=2 +text.margin.left=2 +text.margin.right=2 + +[ToolbarLineEdit] +frame.element=lineedit +interior.element=lineedit + +[DropDownButton] +inherits=PanelButtonCommand +indicator.element=arrow-down + +[IndicatorArrow] +indicator.element=arrow +indicator.size=8 + +[ToolboxTab] +inherits=PanelButtonCommand +text.normal.color=#444444 +text.press.color=#333333 +text.focus.color=#444444 + +[Tab] +inherits=PanelButtonCommand +focusFrame=true +interior.element=tab +text.margin.left=8 +text.margin.right=8 +text.margin.top=0 +text.margin.bottom=0 +frame.element=tab +indicator.element=tab +indicator.size=22 +frame.top=8 +frame.bottom=8 +frame.left=8 +frame.right=8 +text.normal.color=#444444 +text.focus.color=#444444 +text.press.color=#333333 +text.toggle.color=#333333 +frame.expansion=0 +text.bold=false + +[TabFrame] +inherits=PanelButtonCommand +frame.element=tabframe +interior.element=tabframe +frame.top=24 +frame.bottom=24 +frame.left=24 +frame.right=24 + +[TreeExpander] +inherits=PanelButtonCommand +indicator.size=8 +indicator.element=tree + +[HeaderSection] +inherits=PanelButtonCommand +interior.element=header +frame.element=header +frame.top=0 +frame.bottom=1 +frame.left=1 +frame.right=1 +text.normal.color=#444444 +text.focus.color=#444444 +text.press.color=#333333 +text.toggle.color=#333333 +frame.expansion=0 + +[SizeGrip] +indicator.element=resize-grip + +[Toolbar] +inherits=PanelButtonCommand +indicator.element=toolbar +indicator.size=5 +text.margin=0 +interior.element=menubar +frame.element=menubar +text.normal.color=#444444 +text.focus.color=#444444 +text.press.color=#333333 +text.toggle.color=#333333 +frame.left=6 +frame.right=6 +frame.top=0 +frame.bottom=1 +frame.expansion=0 + +[Slider] +inherits=PanelButtonCommand +frame.element=slider +focusFrame=true +interior.element=slider +frame.top=3 +frame.bottom=3 +frame.left=3 +frame.right=3 + +[SliderCursor] +inherits=PanelButtonCommand +frame=false +interior.element=slidercursor + +[Progressbar] +inherits=PanelButtonCommand +frame.element=progress +interior.element=progress +text.margin=0 +text.normal.color=#444444 +text.focus.color=#444444 +text.press.color=#333333 +text.toggle.color=#333333 +text.bold=false +frame.expansion=8 + +[ProgressbarContents] +inherits=PanelButtonCommand +frame=true +frame.element=progress-pattern +interior.element=progress-pattern + +[ItemView] +inherits=PanelButtonCommand +text.margin=0 +frame.element=itemview +interior.element=itemview +frame.top=4 +frame.bottom=4 +frame.left=4 +frame.right=4 +text.margin.top=0 +text.margin.bottom=0 +text.margin.left=8 +text.margin.right=8 +text.normal.color=#444444 +text.focus.color=#444444 +text.press.color=#333333 +text.toggle.color=#333333 +min_width=+0.3font +min_height=+0.3font +frame.expansion=0 + +[Splitter] +interior.element=splitter +frame=false +indicator.size=0 + +[Scrollbar] +inherits=PanelButtonCommand +indicator.element=arrow +indicator.size=12 + +[ScrollbarSlider] +inherits=PanelButtonCommand +frame.element=scrollbarslider +interior=false +frame.left=5 +frame.right=5 +frame.top=5 +frame.bottom=5 +indicator.element=grip +indicator.size=12 + +[ScrollbarGroove] +inherits=PanelButtonCommand +interior=false +frame=false + +[Menu] +inherits=PanelButtonCommand +frame.top=8 +frame.bottom=8 +frame.left=8 +frame.right=8 +frame.element=menu +interior.element=menu +text.normal.color=#444444 +text.shadow=false +text.bold=false + +[MenuItem] +inherits=PanelButtonCommand +frame=true +frame.element=menuitem +interior.element=menuitem +indicator.element=menuitem +text.normal.color=#444444 +text.focus.color=#333333 +text.margin.top=0 +text.margin.bottom=0 +text.margin.left=6 +text.margin.right=6 +frame.top=4 +frame.bottom=4 +frame.left=12 +frame.right=12 +text.bold=false +frame.expansion=0 + +[MenuBar] +inherits=PanelButtonCommand +frame.element=menubar +interior.element=menubar +frame.bottom=0 +text.normal.color=#444444 +text.focus.color=#444444 +text.press.color=#333333 +text.toggle.color=#333333 +frame.expansion=0 +text.bold=false + +[MenuBarItem] +inherits=PanelButtonCommand +interior=true +interior.element=menubaritem +frame.element=menubaritem +frame.top=2 +frame.bottom=2 +frame.left=2 +frame.right=2 +text.margin.left=4 +text.margin.right=4 +text.margin.top=0 +text.margin.bottom=0 +text.normal.color=#444444 +text.focus.color=#444444 +text.press.color=#333333 +text.toggle.color=#333333 +text.bold=false +min_width=+0.3font +min_height=+0.3font +frame.expansion=0 + +[TitleBar] +inherits=PanelButtonCommand +frame=false +text.margin.top=2 +text.margin.bottom=2 +text.margin.left=2 +text.margin.right=2 +interior.element=titlebar +indicator.size=16 +indicator.element=mdi +text.normal.color=#444444 +text.focus.color=#444444 +text.bold=false +text.italic=true +frame.expansion=0 + +[ComboBox] +inherits=PanelButtonCommand +frame.element=combo +interior.element=combo +frame.top=6 +frame.bottom=6 +frame.left=6 +frame.right=6 +text.margin.top=2 +text.margin.bottom=2 +text.margin.left=2 +text.margin.right=2 +text.normal.color=#444444 +text.focus.color=#424242 +text.press.color=#424242 +text.toggle.color=#424242 + +[GroupBox] +inherits=GenericFrame +frame=false +text.shadow=0 +text.margin=0 +text.normal.color=#444444 +text.focus.color=#333333 +text.bold=false +frame.expansion=0 + +[TabBarFrame] +inherits=GenericFrame +frame=false +interior=false + +[ToolTip] +inherits=GenericFrame +frame.top=6 +frame.bottom=6 +frame.left=6 +frame.right=6 +interior=true +text.shadow=0 +text.margin=6 +interior.element=tooltip +frame.element=tooltip +text.normal.color=#efefef +text.focus.color=#efefef +frame.expansion=6 + +[StatusBar] +inherits=GenericFrame +frame=false +interior=false + +[Window] +interior=true +interior.element=window +frame=true +frame.element=window +frame.bottom=10 +frame.top=10 diff --git a/kvantum/dot-config/Kvantum/KvLibadwaita/KvLibadwaita.svg b/kvantum/dot-config/Kvantum/KvLibadwaita/KvLibadwaita.svg new file mode 100644 index 0000000..47649c5 --- /dev/null +++ b/kvantum/dot-config/Kvantum/KvLibadwaita/KvLibadwaita.svg @@ -0,0 +1,6628 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="450" + height="1e3" + version="1" + id="svg1810" + sodipodi:docname="KvLibadwaita.svg" + inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <sodipodi:namedview + id="namedview1812" + pagecolor="#ebebed" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageshadow="2" + inkscape:pageopacity="0" + inkscape:pagecheckerboard="0" + showgrid="true" + inkscape:zoom="5.5133753" + inkscape:cx="74.545986" + inkscape:cy="719.06949" + inkscape:window-width="1904" + inkscape:window-height="995" + inkscape:window-x="35" + inkscape:window-y="32" + inkscape:window-maximized="0" + inkscape:current-layer="svg1810" + inkscape:snap-bbox="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid51489" /> + </sodipodi:namedview> + <defs + id="defs24"> + <linearGradient + id="linearGradient4465"> + <stop + stop-opacity=".5098" + offset="0" + id="stop3" /> + <stop + stop-opacity="0" + offset="1" + id="stop5" /> + </linearGradient> + <linearGradient + id="color-primary"> + <stop + stop-color="#3c84f7" + offset="1" + id="stop22" /> + </linearGradient> + <linearGradient + id="linearGradient4646-3" + x1="82.193504" + x2="82.193504" + y1="-970.92798" + y2="-952.35626" + gradientTransform="matrix(0.71429,0,0,0.69999,52.42,-206.08004)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" /> + <radialGradient + id="radialGradient4192-5" + cx="8.3340855" + cy="54.288544" + r="9" + gradientTransform="matrix(-1.4444439,-9.0112584e-8,-3.8579298e-8,1.4444446,289.03812,497.58321)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" + fx="8.3340855" + fy="54.288544" /> + <radialGradient + id="radialGradient4192" + cx="8.3340855" + cy="54.288544" + r="9" + gradientTransform="matrix(-1.4444439,-9.0112584e-8,-3.8579298e-8,1.4444446,289.03812,497.58321)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" + fx="8.3340855" + fy="54.288544" /> + <radialGradient + id="radialGradient2015" + cx="8.3340855" + cy="54.288544" + r="9" + gradientTransform="matrix(-1.4444439,-9.0112584e-8,-3.8579298e-8,1.4444446,289.03812,497.58321)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" + fx="8.3340855" + fy="54.288544" /> + <radialGradient + id="radialGradient2023" + cx="8.3340855" + cy="54.288544" + r="9" + gradientTransform="matrix(-1.4444439,-9.0112584e-8,-3.8579298e-8,1.4444446,289.03812,497.58321)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" + fx="8.3340855" + fy="54.288544" /> + <radialGradient + id="radialGradient2031" + cx="8.3340855" + cy="54.288544" + r="9" + gradientTransform="matrix(-1.4444439,-9.0112584e-8,-3.8579298e-8,1.4444446,289.03812,497.58321)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" + fx="8.3340855" + fy="54.288544" /> + <radialGradient + id="radialGradient2039" + cx="8.3340855" + cy="54.288544" + r="9" + gradientTransform="matrix(-1.4444439,-9.0112584e-8,-3.8579298e-8,1.4444446,289.03812,497.58321)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" + fx="8.3340855" + fy="54.288544" /> + <linearGradient + id="linearGradient4863-5-3" + x1="42.667" + x2="42.667" + y1="-472" + y2="-464" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" + gradientTransform="matrix(1,0,0,0.66666667,0,-156.66667)" /> + <radialGradient + id="radialGradient4839-3-5" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(0,-5.3334,5.3334,0,-2521,610.66)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" /> + <radialGradient + id="radialGradient2245" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(0,-5.3334,5.3334,0,-2521,610.66)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" /> + <radialGradient + id="radialGradient2253" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(0,-5.3334,5.3334,0,-2521,610.66)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" /> + <radialGradient + id="radialGradient2261" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(0,-5.3334,5.3334,0,-2521,610.66)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" /> + <radialGradient + id="radialGradient2269" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(0,-5.3334,5.3334,0,-2521,610.66)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" /> + <radialGradient + id="radialGradient4839-3-3" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(-4.3187e-4,-0.8328729,0.89065727,-4.61825e-4,-400.82432,494.87288)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient3200" + fx="26" + fy="477" /> + <linearGradient + id="linearGradient3200"> + <stop + stop-opacity=".5098" + offset="0" + id="stop3196" + style="stop-opacity:1" /> + <stop + stop-opacity="0" + offset="1" + id="stop3198" /> + </linearGradient> + <radialGradient + id="radialGradient4839-3-3-9" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(-4.9626808e-4,-0.88842333,0.83510317,-4.6649556e-4,-374.32337,496.31942)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient3200" + fx="26" + fy="477" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3200" + id="linearGradient2345" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.66666667,0,-156.66667)" + x1="42.666775" + y1="-472.99997" + x2="42.666786" + y2="-467.37497" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3200" + id="linearGradient8752" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.66666667,0,-156.66667)" + x1="42.666729" + y1="-473" + x2="42.666729" + y2="-467" /> + <radialGradient + id="radialGradient4839-3-3-93" + cx="26.000006" + cy="477" + r="4.5" + gradientTransform="matrix(-5.2347881e-4,-0.99953398,0.89066861,-4.6645764e-4,-400.82734,499.20829)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient3200" + fx="26.000006" + fy="477" /> + <radialGradient + id="radialGradient4839-3-3-9-7" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(-4.22305e-4,-0.88841997,1.0017664,-4.761775e-4,-453.82362,496.32396)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient3200" + fx="26" + fy="477" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient10473" + id="linearGradient8671" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.66666667,0,-156.66667)" + x1="42.666637" + y1="-473" + x2="42.666622" + y2="-466.25" /> + <linearGradient + id="linearGradient10473"> + <stop + stop-opacity=".5098" + offset="0" + id="stop10469" + style="stop-opacity:1;stop-color:#090000" /> + <stop + stop-opacity="0" + offset="1" + id="stop10471" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3200" + id="linearGradient8515" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.66666667,0,-156.66667)" + x1="42.666729" + y1="-472.99997" + x2="42.666729" + y2="-466.99997" /> + <radialGradient + id="radialGradient4839-3-3-9-7-0" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(-4.22305e-4,-0.88841997,1.0017664,-4.761775e-4,-453.82362,496.32396)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient3200" + fx="26" + fy="477" /> + <radialGradient + id="radialGradient4839-3-3-6" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(-4.3187e-4,-0.8328729,0.89065727,-4.61825e-4,-400.82432,494.87288)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient3200" + fx="26" + fy="477" /> + </defs> + <g + id="dial-notches" + transform="translate(-76.5 75.741)" + fill="#fff"> + <rect + x="202.5" + y="667.5" + width="45" + height="45" + opacity="0" + id="rect26" /> + <g + fill="#5a5a5a" + id="g32"> + <path + d="m214.62 670-1.75 1 2.25 3.9063 1.75-1zm20.75 0-2.25 3.9063 1.75 1 2.25-3.9063zm-32.875 19v2h4.5v-2zm40.5 0v2h4.5v-2zm-27.875 16.094-2.25 3.9062 1.75 1 2.25-3.9062zm19.75 0-1.75 1 2.25 3.9062 1.75-1z" + id="path28" /> + <path + d="m222.91 667.59-0.5 0.0625 0.3125 2.9688 0.5-0.0312-0.3125-3zm4.1875 0-0.3125 3 0.5 0.0312 0.3125-2.9688-0.5-0.0625zm-8.8125 0.9375-0.4688 0.1562 0.9375 2.8438 0.4688-0.1562zm13.438 0-0.9375 2.8438 0.4688 0.1562 0.9375-2.8438zm-21.594 4.5938-0.375 0.3125 2.0312 2.25 0.3438-0.3438-2-2.2188zm29.75 0-2 2.2188 0.3438 0.3438 2.0312-2.25-0.375-0.3125zm-32.938 3.4375-0.2812 0.4062 2.4062 1.7812 0.3125-0.4062zm36.125 0-2.4375 1.7812 0.3125 0.4062 2.4062-1.7812zm-38.5 4.0625-0.2188 0.4375 2.75 1.25 0.1875-0.4688-2.7188-1.2188zm40.875 0-2.7188 1.2188 0.1875 0.4688 2.75-1.25-0.2188-0.4375zm-42.406 4.4375-0.0937 0.5 2.9375 0.625 0.0937-0.5zm43.938 0-2.9375 0.625 0.0937 0.5 2.9375-0.625zm-41.094 8.75-2.9375 0.625 0.0937 0.5 2.9375-0.625zm38.25 0-0.0937 0.5 2.9375 0.625 0.0937-0.5zm-37.031 3.875-2.75 1.25 0.2188 0.4375 2.7188-1.2188-0.1875-0.4688zm35.812 0-0.1875 0.4688 2.7188 1.2188 0.2188-0.4375-2.75-1.25zm-33.844 3.5625-2.4062 1.7812 0.2812 0.4062 2.4375-1.7812zm31.875 0-0.3125 0.4062 2.4375 1.7812 0.2812-0.4062zm-29.156 3.0625-2.0312 2.25 0.375 0.3125 2-2.2188-0.3438-0.3438zm26.438 0-0.3438 0.3438 2 2.2188 0.375-0.3125-2.0312-2.25z" + id="path30" /> + </g> + </g> + <circle + id="dial-handle" + cx="98" + cy="783.99" + r="5" + style="fill:#3584e4;fill-opacity:1" /> + <g + id="button-default-indicator" + transform="translate(-367.5 -2.5001)"> + <rect + x="375" + y="87.5" + width="25" + height="25" + opacity="0" + id="rect36" /> + <path + d="m396.25 86.25-17.5 17.5h17.5z" + opacity=".001" + id="path38" /> + </g> + <g + id="splitter-grip-normal" + transform="matrix(1.1429 0 0 1 -38.286 -279.01)" + opacity=".001"> + <rect + x="275" + y="1039" + width="7" + height="32" + opacity="0" + id="rect44" /> + <rect + x="277.63" + y="1039" + width="1.75" + height="32" + id="rect46" /> + </g> + <rect + id="grip-focused" + x="336" + y="822.26" + width="10" + height="10" + opacity="0" /> + <rect + id="grip-pressed" + x="351" + y="822.26" + width="10" + height="10" + opacity="0" /> + <rect + id="slider-tick-normal" + x="210" + y="789.99" + width="5" + height="1" + fill="#5a5a5a" /> + <rect + id="grip-normal" + x="323" + y="822.26" + width="10" + height="10" + opacity="0" /> + <rect + id="expand-lineedit-normal" + x="256" + y="20.923" + width="10" + height="10" + opacity=".15" + style="fill:#000006;opacity:0.1" /> + <g + id="splitter-grip-focused" + transform="matrix(1.1429 0 0 1 -10.286 -279.01)" + opacity=".001"> + <rect + x="275" + y="1039" + width="7" + height="32" + opacity="0" + id="rect66" /> + <rect + x="277.63" + y="1039" + width="1.75" + height="32" + id="rect68" /> + </g> + <use + id="splitter-grip-pressed" + transform="translate(30)" + width="100%" + height="100%" + opacity=".001" + xlink:href="#splitter-grip-focused" /> + <g + id="mdi-close-normal" + transform="translate(-37 -83.03)"> + <rect + x="54" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect73" /> + <path + d="m65.002 432.02a1 1 0 0 0-0.70703 0.29297l-2.293 2.293-2.2832-2.2832a1 1 0 0 0-0.01-0.01 1 1 0 0 0-0.70117-0.28906l-0.01 0.0137a1 1 0 0 0-1 1 1 1 0 0 0 0.29297 0.70703l2.293 2.293-2.293 2.293a1 1 0 0 0-0.28906 0.69922 1 1 0 0 0 1 1 1 1 0 0 0 0.70703-0.29297l2.293-2.293 2.2832 2.2832a1 1 0 0 0 0.7168 0.30274 1 1 0 0 0 1-1 1 1 0 0 0-0.29297-0.70703l-2.3008-2.2988 2.2832-2.2832a1 1 0 0 0 0.31055-0.72071 1 1 0 0 0-1-1z" + id="path75" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="mdi-minimize-normal" + transform="translate(-37 -83.03)"> + <rect + x="72" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect78" /> + <rect + x="76" + y="435.03" + width="8" + height="2" + rx="1" + ry="1" + id="rect80" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="mdi-maximize-normal" + transform="translate(-37 -83.03)"> + <rect + x="90" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect83" /> + <path + d="m98 432.03c-0.554 0-1 0.446-1 1v2h-2c-0.554 0-1 0.446-1 1s0.446 1 1 1h2v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2h2c0.554 0 1-0.446 1-1s-0.446-1-1-1h-2v-2c0-0.554-0.446-1-1-1z" + id="path85" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="mdi-restore-normal" + transform="translate(-37 -83.03)"> + <rect + x="108" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect88" /> + <path + d="m116 432.03a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4zm0 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2z" + id="path90" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="mdi-close-focused" + transform="translate(-37 -66.03)"> + <rect + x="54" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect93" /> + <path + d="m65.002 432.02a1 1 0 0 0-0.70703 0.29297l-2.293 2.293-2.2832-2.2832a1 1 0 0 0-0.01-0.01 1 1 0 0 0-0.70117-0.28906l-0.01 0.0137a1 1 0 0 0-1 1 1 1 0 0 0 0.29297 0.70703l2.293 2.293-2.293 2.293a1 1 0 0 0-0.28906 0.69922 1 1 0 0 0 1 1 1 1 0 0 0 0.70703-0.29297l2.293-2.293 2.2832 2.2832a1 1 0 0 0 0.7168 0.30274 1 1 0 0 0 1-1 1 1 0 0 0-0.29297-0.70703l-2.3008-2.2988 2.2832-2.2832a1 1 0 0 0 0.31055-0.72071 1 1 0 0 0-1-1z" + fill="#f04a50" + id="path95" /> + </g> + <g + id="mdi-minimize-focused" + transform="translate(-37 -66.03)"> + <rect + x="72" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect98" /> + <rect + x="76" + y="435.03" + width="8" + height="2" + rx="1" + ry="1" + fill="#f04a50" + id="rect100" /> + </g> + <g + id="mdi-maximize-focused" + transform="translate(-37 -66.03)"> + <rect + x="90" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect103" /> + <path + d="m98 432.03c-0.554 0-1 0.446-1 1v2h-2c-0.554 0-1 0.446-1 1s0.446 1 1 1h2v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2h2c0.554 0 1-0.446 1-1s-0.446-1-1-1h-2v-2c0-0.554-0.446-1-1-1z" + fill="#f04a50" + id="path105" /> + </g> + <g + id="mdi-restore-focused" + transform="translate(-37 -66.03)"> + <rect + x="108" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect108" /> + <path + d="m116 432.03a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4zm0 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2z" + fill="#f04a50" + id="path110" /> + </g> + <g + id="mdi-close-pressed" + transform="translate(-37 -49.03)"> + <rect + x="54" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect113" /> + <path + d="m65.002 432.02a1 1 0 0 0-0.70703 0.29297l-2.293 2.293-2.2832-2.2832a1 1 0 0 0-0.01-0.01 1 1 0 0 0-0.70117-0.28906l-0.01 0.0137a1 1 0 0 0-1 1 1 1 0 0 0 0.29297 0.70703l2.293 2.293-2.293 2.293a1 1 0 0 0-0.28906 0.69922 1 1 0 0 0 1 1 1 1 0 0 0 0.70703-0.29297l2.293-2.293 2.2832 2.2832a1 1 0 0 0 0.7168 0.30274 1 1 0 0 0 1-1 1 1 0 0 0-0.29297-0.70703l-2.3008-2.2988 2.2832-2.2832a1 1 0 0 0 0.31055-0.72071 1 1 0 0 0-1-1z" + fill="#4285f4" + id="path115" /> + </g> + <g + id="mdi-minimize-pressed" + transform="translate(-37 -49.03)"> + <rect + x="72" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect118" /> + <rect + x="76" + y="435.03" + width="8" + height="2" + rx="1" + ry="1" + fill="#4285f4" + id="rect120" /> + </g> + <g + id="mdi-maximize-pressed" + transform="translate(-37 -49.03)"> + <rect + x="90" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect123" /> + <path + d="m98 432.03c-0.554 0-1 0.446-1 1v2h-2c-0.554 0-1 0.446-1 1s0.446 1 1 1h2v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2h2c0.554 0 1-0.446 1-1s-0.446-1-1-1h-2v-2c0-0.554-0.446-1-1-1z" + fill="#4285f4" + id="path125" /> + </g> + <g + id="mdi-restore-pressed" + transform="translate(-37 -49.03)"> + <rect + x="108" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect128" /> + <path + d="m116 432.03a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4zm0 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2z" + fill="#4285f4" + id="path130" /> + </g> + <g + id="mdi-close-disabled" + transform="translate(-37 -32.03)"> + <rect + x="54" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect133" /> + <path + d="m65.002 432.02a1 1 0 0 0-0.70703 0.29297l-2.293 2.293-2.2832-2.2832a1 1 0 0 0-0.01-0.01 1 1 0 0 0-0.70117-0.28906l-0.01 0.0137a1 1 0 0 0-1 1 1 1 0 0 0 0.29297 0.70703l2.293 2.293-2.293 2.293a1 1 0 0 0-0.28906 0.69922 1 1 0 0 0 1 1 1 1 0 0 0 0.70703-0.29297l2.293-2.293 2.2832 2.2832a1 1 0 0 0 0.7168 0.30274 1 1 0 0 0 1-1 1 1 0 0 0-0.29297-0.70703l-2.3008-2.2988 2.2832-2.2832a1 1 0 0 0 0.31055-0.72071 1 1 0 0 0-1-1z" + id="path135" + style="fill:#000006;opacity:0.3" /> + </g> + <g + id="mdi-minimize-disabled" + transform="translate(-37 -32.03)"> + <rect + x="72" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect138" /> + <rect + x="76" + y="435.03" + width="8" + height="2" + rx="1" + ry="1" + id="rect140" + style="fill:#000006;opacity:0.3" /> + </g> + <g + id="mdi-maximize-disabled" + transform="translate(-37 -32.03)"> + <rect + x="90" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect143" /> + <path + d="m98 432.03c-0.554 0-1 0.446-1 1v2h-2c-0.554 0-1 0.446-1 1s0.446 1 1 1h2v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2h2c0.554 0 1-0.446 1-1s-0.446-1-1-1h-2v-2c0-0.554-0.446-1-1-1z" + id="path145" + style="fill:#000006;opacity:0.3" /> + </g> + <g + id="mdi-restore-disabled" + transform="translate(-37 -32.03)"> + <rect + x="108" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect148" /> + <path + d="m116 432.03a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4zm0 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2z" + id="path150" + style="fill:#000006;opacity:0.3" /> + </g> + <g + id="mdi-menu-normal" + transform="translate(-37 -83.03)"> + <rect + x="135" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect153" /> + <path + d="m140 432.03c-0.554 0-1 0.446-1 1s0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-6zm0 3c-0.554 0-1 0.446-1 1s0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-6zm0 3c-0.554 0-1 0.446-1 1s0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-6z" + id="path155" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="progress-normal-lefttyry" + transform="translate(-8 -9)"> + <rect + x="26" + y="162" + width="8" + height="8" + opacity=".001" + id="rect161" /> + </g> + <g + id="progress-normal" + transform="matrix(1.5 0 0 1 20 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + opacity=".25" + id="rect165" /> + </g> + <rect + id="progress-pattern-normal-top" + x="32" + y="167" + width="12" + height="12" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="progress-pattern-normal-bottom" + x="32" + y="187" + width="12" + height="12" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="progress-pattern-normal-topleft" + x="20" + y="167" + width="12" + height="12" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="progress-pattern-normal-topright" + x="44" + y="167" + width="12" + height="12" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="progress-pattern-normal-bottomleft" + x="20" + y="187" + width="12" + height="12" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="progress-pattern-normal-bottomright" + x="44" + y="187" + width="12" + height="12" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="progress-normal-top" + x="71" + y="167" + width="12" + height="12" + opacity=".25" /> + <rect + id="progress-normal-bottom" + x="71" + y="187" + width="12" + height="12" + opacity=".25" /> + <rect + id="progress-normal-topleft" + x="59" + y="167" + width="12" + height="12" + opacity=".25" /> + <rect + id="progress-normal-topright" + x="83" + y="167" + width="12" + height="12" + opacity=".25" /> + <rect + id="progress-normal-bottomleft" + x="59" + y="187" + width="12" + height="12" + opacity=".25" /> + <rect + id="progress-normal-bottomright" + x="83" + y="187" + width="12" + height="12" + opacity=".25" /> + <rect + id="progress-pattern-disabled-top" + x="110" + y="167" + width="12" + height="12" + opacity=".12" /> + <rect + id="progress-pattern-disabled-bottom" + x="110" + y="187" + width="12" + height="12" + opacity=".12" /> + <rect + id="progress-pattern-disabled-topleft" + x="98" + y="167" + width="12" + height="12" + opacity=".12" /> + <rect + id="progress-pattern-disabled-topright" + x="122" + y="167" + width="12" + height="12" + opacity=".12" /> + <rect + id="progress-pattern-disabled-bottomleft" + x="98" + y="187" + width="12" + height="12" + opacity=".12" /> + <rect + id="progress-pattern-disabled-bottomright" + x="122" + y="187" + width="12" + height="12" + opacity=".12" /> + <g + id="progress-pattern-normal" + transform="matrix(1.5 0 0 1 -19 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect186" + style="fill:#3584e4;fill-opacity:1" /> + </g> + <g + id="progress-pattern-normal-left" + transform="matrix(1.5 0 0 1 -31 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect189" + style="fill:#3584e4;fill-opacity:1" /> + </g> + <g + id="progress-pattern-normal-right" + transform="matrix(1.5 0 0 1 -7 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect192" + style="fill:#3584e4;fill-opacity:1" /> + </g> + <g + id="progress-normal-left" + transform="matrix(1.5 0 0 1 8 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + opacity=".25" + id="rect195" /> + </g> + <g + id="progress-normal-right" + transform="matrix(1.5 0 0 1 32 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + opacity=".25" + id="rect198" /> + </g> + <g + id="progress-pattern-disabled-left" + transform="matrix(1.5 0 0 1 47 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + opacity=".12" + id="rect201" /> + </g> + <g + id="progress-pattern-disabled" + transform="matrix(1.5 0 0 1 59 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + opacity=".12" + id="rect204" /> + </g> + <g + id="progress-pattern-disabled-right" + transform="matrix(1.5 0 0 1 71 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + opacity=".12" + id="rect207" /> + </g> + <rect + id="itemview-pressed-top" + x="52" + y="930.26" + width="8" + height="4" + style="fill:#bfbfbf;fill-opacity:1;opacity:1" /> + <rect + id="itemview-pressed-bottom" + x="52" + y="942.26" + width="8" + height="4" + style="fill:#bfbfbf;fill-opacity:1;opacity:1" /> + <path + id="itemview-pressed" + d="m52 934.26h8v8h-8z" + style="fill:#bfbfbf;fill-opacity:1;opacity:1" /> + <path + id="itemview-pressed-topright" + d="m60 930.26c4 0 4 4 4 4h-4z" + style="fill:#bfbfbf;fill-opacity:1;opacity:1" /> + <path + id="itemview-pressed-bottomright" + d="m60 942.26h4s0 4-4 4z" + style="fill:#bfbfbf;fill-opacity:1;opacity:1" /> + <rect + id="itemview-pressed-right" + x="60" + y="934.26" + width="4" + height="8" + style="fill:#bfbfbf;fill-opacity:1;opacity:1" /> + <rect + id="itemview-pressed-left" + x="48" + y="934.26" + width="4" + height="8" + style="fill:#bfbfbf;fill-opacity:1;opacity:1" /> + <path + id="itemview-pressed-topleft" + d="m52 930.26v4h-4s0-4 4-4z" + style="fill:#bfbfbf;fill-opacity:1;opacity:1" /> + <path + id="itemview-pressed-bottomleft" + d="m48 942.26h4v4c-4 0-4-4-4-4z" + style="fill:#bfbfbf;fill-opacity:1;opacity:1" /> + <rect + id="itemview-toggled-top" + x="71" + y="930.26" + width="8" + height="4" + style="fill:#ebebed;fill-opacity:1;opacity:1" /> + <rect + id="itemview-toggled-bottom" + x="71" + y="942.26" + width="8" + height="4" + style="fill:#ebebed;fill-opacity:1;opacity:1" /> + <path + id="itemview-toggled" + d="m71 934.26h8v8h-8z" + style="fill:#ebebed;fill-opacity:1;opacity:1" /> + <rect + id="itemview-toggled-right" + x="79" + y="934.26" + width="4" + height="8" + style="fill:#ebebed;fill-opacity:1;opacity:1" /> + <path + id="itemview-toggled-topright" + d="m79 930.26c4 0 4 4 4 4h-4z" + style="fill:#ebebed;fill-opacity:1;opacity:1" /> + <path + id="itemview-toggled-bottomright" + d="m79 942.26h4s0 4-4 4z" + style="fill:#ebebed;fill-opacity:1;opacity:1" /> + <rect + id="itemview-toggled-left" + x="67" + y="934.26" + width="4" + height="8" + style="fill:#ebebed;fill-opacity:1;opacity:1" /> + <path + id="itemview-toggled-topleft" + d="m71 930.26v4h-4s0-4 4-4z" + style="fill:#ebebed;fill-opacity:1;opacity:1" /> + <path + id="itemview-toggled-bottomleft" + d="m67 942.26h4v4c-4 0-4-4-4-4z" + style="fill:#ebebed;fill-opacity:1;opacity:1" /> + <rect + id="itemview-focused-top" + x="33" + y="930.26" + width="8" + height="4" + style="fill:#ffffff;opacity:1;fill-opacity:1" /> + <rect + id="itemview-focused-bottom" + x="33" + y="942.26" + width="8" + height="4" + style="fill:#ffffff;opacity:1;fill-opacity:1" /> + <path + id="itemview-focused" + d="m33 934.26h8v8h-8z" + style="fill:#ffffff;opacity:1;fill-opacity:1" /> + <rect + id="itemview-focused-right" + x="41" + y="934.26" + width="4" + height="8" + style="fill:#ffffff;opacity:1;fill-opacity:1" /> + <path + id="itemview-focused-topright" + d="m41 930.26c4 0 4 4 4 4h-4z" + style="fill:#ffffff;opacity:1;fill-opacity:1" /> + <path + id="itemview-focused-bottomright" + d="m41 942.26h4s0 4-4 4z" + style="fill:#ffffff;opacity:1;fill-opacity:1" /> + <rect + id="itemview-focused-left" + x="29" + y="934.26" + width="4" + height="8" + style="fill:#ffffff;opacity:1;fill-opacity:1" /> + <path + id="itemview-focused-topleft" + d="m 33,930.26001 v 4 h -4 c 0,0 0,-4 4,-4 z" + style="fill:#ffffff;opacity:1;fill-opacity:1" /> + <path + id="itemview-focused-bottomleft" + d="m29 942.26h4v4c-4 0-4-4-4-4z" + style="fill:#ffffff;opacity:1;fill-opacity:1" /> + <path + id="toolbar-handle" + d="m245 107a5 5 0 0 1-10 0 5 5 0 1 1 10 0z" + style="fill:#000006;opacity:0.15" /> + <path + id="menubaritem-focused-left" + d="m116 946v-17.999h-6l3.6e-4 18z" + style="fill:#e6e6e6;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-focused-topleft" + d="m116 921c-3.2999-1e-4 -6 2.7-6 5.9999h6z" + style="fill:#e6e6e6;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-focused" + d="m117 928v18h18v-18z" + style="fill:#e6e6e6;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-focused-right" + d="m136 946v-17.999h6l-3.7e-4 18z" + style="fill:#e6e6e6;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-focused-topright" + d="m136 921c3.2999-1e-4 6 2.7 6 5.9999h-6z" + style="fill:#e6e6e6;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-focused-top" + d="m117 927h17.999v-6h-18z" + style="fill:#e6e6e6;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-focused-bottom" + d="m135 947h-17.999v6h18z" + style="fill:#e6e6e6;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-focused-bottomleft" + d="m116 953c-3.2999 0-5.9999-2.7-5.9999-5.9999l5.9999-1e-4z" + style="fill:#e6e6e6;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-focused-bottomright" + d="m136 953c3.2999 0 5.9999-2.7 5.9999-5.9999l-5.9999-1e-4z" + style="fill:#e6e6e6;opacity:1;fill-opacity:1" /> + <path + d="m223.93 399.69v32h32v-32z" + id="titlebar-normal" + style="fill:#ffffff;fill-opacity:1" /> + <path + d="m 228,354 v 32 h 32 v -32 z" + id="titlebar-normal-3" + style="fill:#fafafb;fill-opacity:1" /> + <path + id="header-pressed" + d="m146 104.88h-6v6h6z" + style="opacity:0;fill:#000006" /> + <path + id="header-toggled" + d="m124 104.88h-6v6h6z" + style="fill:#000006;opacity:0.15" /> + <path + id="header-focused" + d="m108 104.88h-6v6h6z" + style="fill:#000006;opacity:0.1" /> + <g + id="tarrow-right-normal" + transform="translate(-163.00384,-247.99535)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect274" /> + <path + style="color:#000006;opacity:0.75;fill:#000006;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path3548-7" /> + </g> + <g + id="tarrow-right-focused" + transform="translate(-153.00384,-247.99535)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect279" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path281" + style="fill:#000006" /> + </g> + <g + id="tarrow-right-pressed" + transform="translate(-143.00384,-247.99535)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect284" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path286" + style="fill:#000006" /> + </g> + <g + id="tarrow-right-toggled" + transform="translate(-133.00384,-247.99535)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect289" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path291" + style="fill:#000006" /> + </g> + <g + id="tarrow-right-disabled" + transform="translate(-122.97 -247.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect294" /> + <path + transform="matrix(.72169 0 0 1 52.664 .42535)" + d="m194.46 532.57-6.9282 4v-8l3.4641 2z" + id="path296" + style="fill:#ebebed;fill-opacity:1;opacity:0.3" /> + </g> + <g + id="tarrow-left-normal" + transform="rotate(180,108.50192,414.49768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect299" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path301" + style="opacity:0.75;fill:#000006;fill-opacity:1" /> + </g> + <g + id="tarrow-left-focused" + transform="rotate(180,113.50192,414.49768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect304" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path306" + style="fill:#000006" /> + </g> + <g + id="tarrow-left-pressed" + transform="rotate(180,118.50192,414.49768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect309" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path311" + style="fill:#000006" /> + </g> + <g + id="tarrow-left-toggled" + transform="rotate(180,123.50192,414.49768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect314" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path316" + style="fill:#000006" /> + </g> + <g + id="tarrow-left-disabled" + transform="rotate(180 128.52 414.71)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect319" /> + <path + transform="matrix(.72169 0 0 1 52.664 .42535)" + d="m194.46 532.57-6.9282 4v-8l3.4641 2z" + id="path321" + style="fill:#ebebed;fill-opacity:1;opacity:0.3" /> + </g> + <g + id="tarrow-up-normal" + transform="rotate(-90,-4.4957563,501.49959)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect324" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path326" + style="opacity:0.75;fill:#000006;fill-opacity:1" /> + </g> + <g + id="tarrow-up-focused" + transform="rotate(-90,0.5042437,496.49959)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect329" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path331" + style="fill:#000006" /> + </g> + <g + id="tarrow-up-pressed" + transform="rotate(-90,5.5042437,491.49959)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect334" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path336" + style="fill:#000006" /> + </g> + <g + id="tarrow-up-toggled" + transform="rotate(-90,10.504244,486.49959)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect339" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path341" + style="fill:#000006" /> + </g> + <g + id="tarrow-up-disabled" + transform="rotate(-90 15.725 481.69)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect344" /> + <path + transform="matrix(.72169 0 0 1 52.664 .42535)" + d="m194.46 532.57-6.9282 4v-8l3.4641 2z" + id="path346" + style="fill:#ebebed;fill-opacity:1;opacity:0.3" /> + </g> + <g + id="tarrow-down-normal" + transform="rotate(90,216.49959,343.49576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect349" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path351" + style="opacity:0.75;fill:#000006;fill-opacity:1" /> + </g> + <g + id="tarrow-down-focused" + transform="rotate(90,221.49959,348.49576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect354" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path356" + style="fill:#000006" /> + </g> + <g + id="tarrow-down-pressed" + transform="rotate(90,226.49959,353.49576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect359" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path361" + style="fill:#000006" /> + </g> + <g + id="tarrow-down-toggled" + transform="rotate(90,231.49959,358.49576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect364" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path366" + style="fill:#000006" /> + </g> + <g + id="tarrow-down-disabled" + transform="rotate(90 236.31 363.72)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect369" /> + <path + transform="matrix(.72169 0 0 1 52.664 .42535)" + d="m194.46 532.57-6.9282 4v-8l3.4641 2z" + id="path371" + style="fill:#ebebed;fill-opacity:1;opacity:0.3" /> + </g> + <g + id="arrow-right-normal" + transform="translate(-108.00384,-247.99535)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect374" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path376" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="arrow-right-focused" + transform="translate(-98.003837,-247.99535)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect379" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path381" + style="opacity:1;fill:#000006" /> + </g> + <g + id="arrow-right-pressed" + transform="translate(-88,-247.99768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect384" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path386" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="arrow-right-toggled" + transform="translate(-78.00384,-247.99535)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect384-6" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path386-7" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="arrow-right-disabled" + transform="translate(-68.003837,-247.99535)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect394" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path396" + style="opacity:0.3;fill:#000006" /> + </g> + <g + id="arrow-left-normal" + transform="rotate(180,136.00192,414.49768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect399" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path401" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="arrow-left-focused" + transform="rotate(180,141.00192,414.49768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect404" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path406" + style="opacity:1;fill:#000006" /> + </g> + <g + id="arrow-left-pressed" + transform="rotate(180,146,414.5)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect409" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path411" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="arrow-left-toggled" + transform="rotate(180,151.00192,414.49768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect414" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path416" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="arrow-left-disabled" + transform="rotate(180,156.00192,414.49768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect419" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path421" + style="opacity:0.3;fill:#000006" /> + </g> + <g + id="arrow-up-normal" + transform="rotate(-90,23.001162,473.99884)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect424" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path426" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="arrow-up-focused" + transform="rotate(-90,28.001162,468.99884)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect429" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path431" + style="opacity:1;fill:#000006" /> + </g> + <g + id="arrow-up-pressed" + transform="rotate(-90,33.002325,463.99768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect434" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path436" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="arrow-up-toggled" + transform="rotate(-90,38.004244,458.99959)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect439" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path441" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="arrow-up-disabled" + transform="rotate(-90,43.004244,453.99959)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect444" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path446" + style="opacity:0.3;fill:#000006" /> + </g> + <g + id="arrow-down-normal" + transform="rotate(90,243.99959,370.99576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect449" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path451" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="arrow-down-focused" + transform="rotate(90,248.99959,375.99576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect454" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path456" + style="opacity:1;fill:#000006" /> + </g> + <g + id="arrow-down-pressed" + transform="rotate(90,253.99959,380.99576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect459" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path461" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="arrow-down-toggled" + transform="rotate(90,258.99959,385.99576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect464" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path466" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="arrow-down-disabled" + transform="rotate(90,263.99959,390.99576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect469" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path471" + style="opacity:0.3;fill:#000006" /> + </g> + <g + id="arrow-plus-normal" + transform="translate(117,-36)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity="0.00100002" + id="rect474" /> + <path + id="path476" + style="opacity:0.75;fill:#000006" + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + sodipodi:nodetypes="ccccscscccscsebebebscsebebebscscccc" /> + </g> + <g + id="arrow-minus-normal" + transform="translate(107,-25)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity="0.00100002" + id="rect479" /> + <path + style="color:#000006;opacity:0.75;fill:#000006;stroke-linecap:round;-inkscape-stroke:none" + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="path2024" /> + </g> + <g + id="arrow-plus-focused" + transform="translate(127.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect484" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path486" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="arrow-minus-focused" + transform="translate(117,-25)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity="0.00100002" + id="rect489" /> + <path + style="color:#000006;opacity:0.75;fill:#000006;stroke-linecap:round;-inkscape-stroke:none" + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="path2025" /> + </g> + <g + id="arrow-plus-pressed" + transform="translate(137.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect494" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path496" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="arrow-minus-pressed" + transform="translate(127,-25)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity="0.00100002" + id="rect499" /> + <path + style="color:#000006;opacity:0.75;fill:#000006;stroke-linecap:round;-inkscape-stroke:none" + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="path2026" /> + </g> + <g + id="arrow-plus-toggled" + transform="translate(147.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect504" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path506" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="arrow-minus-toggled" + transform="translate(137,-25)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity="0.00100002" + id="rect509" /> + <path + style="color:#000006;opacity:0.75;fill:#000006;stroke-linecap:round;-inkscape-stroke:none" + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="path2027" /> + </g> + <g + id="arrow-plus-disabled" + transform="translate(157.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect514" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path516" + style="fill:#000006;opacity:0.3" /> + </g> + <g + id="arrow-minus-disabled" + transform="translate(147,-25)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity="0.00100002" + id="rect519" /> + <path + style="color:#000006;opacity:0.3;fill:#000006;stroke-linecap:round;-inkscape-stroke:none" + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="path2028" /> + </g> + <g + id="tree-plus-normal" + transform="translate(-54.003837,-225.99535)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect524" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path526" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="tree-plus-focused" + transform="translate(-44.003837,-225.99535)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect529" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path531" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="tree-plus-toggled" + transform="translate(-24,-225.99768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect539" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path541" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="tree-plus-disabled" + transform="translate(-14.003837,-225.99535)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect544" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path546" + style="opacity:0.3;fill:#000006" /> + </g> + <g + id="tree-minus-normal" + transform="rotate(90,270.99768,397.99768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect549" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path551" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="tree-minus-focused" + transform="rotate(90,275.99959,402.99576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect554" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path556" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="tree-plus-pressed" + transform="translate(-34.003837,-225.99536)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect529-3" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path531-5" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="arrow-menu-normal" + transform="translate(-24.00384,-195.99535)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect539-7" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path541-3" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="arrow-menu-disabled" + transform="translate(-14.007677,-195.99302)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect544-1" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path546-2" + style="opacity:0.3;fill:#000006" /> + </g> + <g + id="menuitem-right-focused" + transform="translate(-34.007677,-195.99303)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect529-3-3" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path531-5-1" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="tree-minus-focused-6" + transform="rotate(90,280.99959,407.99576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect554-2" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path556-9" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="tree-minus-toggled" + transform="rotate(90,285.99959,412.99576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect564" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path566" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="tree-minus-disabled" + transform="rotate(90,290.99959,417.99576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect569" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path571" + style="opacity:0.3;fill:#000006" /> + </g> + <g + id="carrow-normal" + transform="rotate(90,265.99959,402.99576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect549-2" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path551-7" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="carrow-focused" + transform="rotate(90,271.0015,407.99384)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect554-9" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path556-3" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="carrow-pressed" + transform="rotate(90,276.0015,412.99384)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect554-2-0" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path556-9-6" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="carrow-toggled" + transform="rotate(90,281.0015,417.99384)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect564-6" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path566-1" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="carrow-disabled" + transform="rotate(90,286.0015,422.99384)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect569-7" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path571-9" + style="opacity:0.3;fill:#000006" /> + </g> + <g + id="flat-arrow-down-normal" + transform="rotate(90,314.99959,408.99576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect574" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path576" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="flat-arrow-down-focused" + transform="rotate(90,319.99959,413.99576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect579" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path581" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="flat-arrow-down-disabled" + transform="rotate(90,324.99959,418.99576)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect584" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path586" + style="opacity:0.3;fill:#000006" /> + </g> + <g + id="flat-arrow-up-normal" + transform="matrix(0,-1,-1,0,723.99535,485.00384)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect614" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path616" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="flat-arrow-up-focused" + transform="matrix(0,-1,-1,0,733.99535,485.00384)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect619" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path621" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="flat-arrow-up-disabled" + transform="matrix(0,-1,-1,0,743.99535,485.00384)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect624" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path626" + style="opacity:0.3;fill:#000006" /> + </g> + <g + id="flat-arrow-left-normal" + transform="rotate(180,190.50192,419.49768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect629" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path631" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="flat-arrow-left-focused" + transform="rotate(180,195.50192,419.49768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect634" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path636" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="flat-arrow-left-disabled" + transform="rotate(180,200.50192,419.49768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect639" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path641" + style="opacity:0.3;fill:#000006" /> + </g> + <g + id="flat-arrow-right-normal" + transform="matrix(1,0,0,-1,1,849.99768)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect644" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path646" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="flat-arrow-right-focused" + transform="matrix(1,0,0,-1,10.996163,849.99535)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect649" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path651" + style="opacity:0.75;fill:#000006" /> + </g> + <g + id="flat-arrow-right-disabled" + transform="matrix(1,0,0,-1,20.996163,849.99535)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect654" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path656" + style="opacity:0.3;fill:#000006" /> + </g> + <g + id="spin-plus-normal" + transform="translate(205.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect659" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path661" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="spin-minus-normal" + transform="translate(195.03 -24.584)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect664" /> + <path + style="color:#000006;opacity:0.75;fill:#000006;stroke-linecap:round;-inkscape-stroke:none" + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="path2029" /> + </g> + <g + id="spin-plus-focused" + transform="translate(215.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect669" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path671" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="spin-minus-focused" + transform="translate(205.03 -24.584)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect674" /> + <path + style="color:#000006;opacity:0.75;fill:#000006;stroke-linecap:round;-inkscape-stroke:none" + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="path2030" /> + </g> + <g + id="spin-plus-pressed" + transform="translate(225.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect679" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path681" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="spin-minus-pressed" + transform="translate(215.03 -24.584)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect684" /> + <path + style="color:#000006;opacity:0.75;fill:#000006;stroke-linecap:round;-inkscape-stroke:none" + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="path2031" /> + </g> + <g + id="spin-plus-disabled" + transform="translate(235.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect689" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path691" + style="fill:#000006;opacity:0.3" /> + </g> + <g + id="spin-minus-disabled" + transform="translate(225.03 -24.584)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect694" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + style="color:#000006;opacity:0.3;fill:#000006;stroke-linecap:round;-inkscape-stroke:none" + id="path2032" /> + </g> + <g + id="spin-up-normal" + transform="translate(205.03 -14.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect699" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path701" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="spin-down-normal" + transform="translate(195.03 -3.5839)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect704" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect706" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="spin-up-focused" + transform="translate(215.03 -14.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect709" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path711" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="spin-down-focused" + transform="translate(205.03 -3.5839)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect714" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect716" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="spin-up-pressed" + transform="translate(225.03 -14.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect719" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path721" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="spin-down-pressed" + transform="translate(215.03 -3.5839)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect724" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect726" + style="fill:#000006;opacity:0.75" /> + </g> + <g + id="spin-up-disabled" + transform="translate(235.03 -14.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect729" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path731" + style="fill:#000006;opacity:0.3" /> + </g> + <g + id="spin-down-disabled" + transform="translate(225.03 -3.5839)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect734" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect736" + style="fill:#000006;opacity:0.3" /> + </g> + <g + id="slidercursor-tickless-normal" + transform="translate(40,-128)"> + <rect + x="317" + y="405" + width="22" + height="22" + opacity="0.00100002" + id="rect739" /> + <path + id="circle741" + style="stroke-width:1.6;fill:#3584e4;fill-opacity:1" + d="M 368 280 A 8 8 0 0 0 360 288 A 8 8 0 0 0 368 296 A 8 8 0 0 0 376 288 A 8 8 0 0 0 368 280 z M 368 282 A 6 6 0 0 1 374 288 A 6 6 0 0 1 368 294 A 6 6 0 0 1 362 288 A 6 6 0 0 1 368 282 z " + transform="translate(-40,128)" /> + <circle + cx="328" + cy="416" + r="6" + id="circle29777" + style="stroke-width:1.2;fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="slidercursor-tickless-pressed" + transform="translate(40,-128)"> + <rect + x="361" + y="405" + width="22" + height="22" + opacity="0.00100002" + id="rect744" /> + <circle + cx="372" + cy="416" + r="11" + id="circle746" + style="opacity:0.15;fill:#000006" /> + <path + id="circle748" + style="stroke-width:1.6;fill:#3584e4;fill-opacity:1" + d="M 412 280 A 8 8 0 0 0 404 288 A 8 8 0 0 0 412 296 A 8 8 0 0 0 420 288 A 8 8 0 0 0 412 280 z M 412 283 A 5 5 0 0 1 417 288 A 5 5 0 0 1 412 293 A 5 5 0 0 1 407 288 A 5 5 0 0 1 412 283 z " + transform="translate(-40,128)" /> + <circle + cx="372" + cy="416" + r="5" + id="circle46204" + style="fill:#ffffff;fill-opacity:1;stroke-width:1" /> + </g> + <g + id="slidercursor-tickless-focused" + transform="translate(40,-128)"> + <rect + x="339" + y="405" + width="22" + height="22" + opacity="0.001" + id="rect751" /> + <circle + cx="350" + cy="416" + r="11" + id="circle43281" + style="opacity:0.15;fill:#000006;fill-opacity:1;stroke-width:1" /> + <path + id="circle753" + style="stroke-width:0.727273;fill:#3584e4;fill-opacity:1" + d="M 390 280 A 8 8 0 0 0 382 288 A 8 8 0 0 0 390 296 A 8 8 0 0 0 398 288 A 8 8 0 0 0 390 280 z M 390 282 A 6 6 0 0 1 396 288 A 6 6 0 0 1 390 294 A 6 6 0 0 1 384 288 A 6 6 0 0 1 390 282 z " + transform="translate(-40,128)" /> + <circle + cx="350" + cy="416" + r="6" + id="circle755" + style="fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="slidercursor-normal" + transform="translate(40,-128)"> + <rect + x="317" + y="427" + width="22" + height="22" + opacity="0.00100002" + id="rect765" /> + <path + id="path53563" + style="fill:#3584e4;fill-opacity:1" + d="M 368 303 C 364.1577 303 361 306.1577 361 310 C 361 313.8423 364.1577 317 368 317 L 368.00195 317 L 368.00391 317 C 369.81032 316.99711 371.54284 316.29331 372.8418 315.04492 L 372.89844 315.00195 L 377.80078 310 L 376.42773 308.59961 L 373.0293 305.13281 C 371.71154 303.77081 369.89527 303.00042 368 303 z M 368 305 C 369.3543 305.0003 370.65015 305.55011 371.5918 306.52344 L 375 310 L 371.57617 313.49414 C 371.57217 313.49714 371.5665 313.49995 371.5625 313.50195 C 370.6239 314.45901 369.3405 314.998 368 315 C 365.2386 315 363 312.7614 363 310 C 363 307.2386 365.2386 305 368 305 z " + transform="translate(-40,128)" /> + <path + d="m 335,438 -3.4079,-3.4767 c -0.94165,-0.97333 -2.2378,-1.5231 -3.5921,-1.5234 -2.7614,0 -5,2.2386 -5,5 0,2.7614 2.2386,5 5,5 1.3405,-0.002 2.6242,-0.54194 3.5628,-1.499 0.004,-0.002 0.009,-0.004 0.013,-0.007 z" + id="path53561" + style="fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="slider-normal-right" + transform="translate(276.95 133.02)"> + <rect + x="34" + y="162" + width="8" + height="8" + opacity=".25" + id="rect791" /> + </g> + <rect + id="slider-toggled-topright" + x="290.95" + y="287.02" + width="8" + height="8" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="slider-toggled-bottomright" + x="290.95" + y="303.02" + width="8" + height="8" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="slider-toggled-topleft" + x="282.95" + y="287.02" + width="8" + height="8" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="slider-toggled-bottomleft" + x="282.95" + y="303.02" + width="8" + height="8" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="slider-normal-topright" + x="310.95" + y="287.02" + width="8" + height="8" + opacity=".25" /> + <rect + id="slider-normal-bottomright" + x="310.95" + y="303.02" + width="8" + height="8" + opacity=".25" /> + <rect + id="slider-normal-topleft" + x="302.95" + y="287.02" + width="8" + height="8" + opacity=".25" /> + <rect + id="slider-normal-bottomleft" + x="302.95" + y="303.02" + width="8" + height="8" + opacity=".25" /> + <g + id="slider-toggled-right" + transform="translate(256.95 133.02)"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect802" + style="fill:#3584e4;fill-opacity:1" /> + </g> + <g + id="slider-toggled-left" + transform="translate(248.95 133.02)"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect805" + style="fill:#3584e4;fill-opacity:1" /> + </g> + <g + id="slider-normal-left" + transform="translate(268.95 133.02)"> + <rect + x="34" + y="162" + width="8" + height="8" + opacity=".25" + id="rect808" /> + </g> + <rect + id="tab-tear" + x="95" + y="615" + width="15" + height="15" + style="fill:#3584e4;fill-opacity:1" /> + <g + id="menuitem-tearoff-focused" + transform="translate(83.742 -272.34)"> + <rect + transform="rotate(90)" + x="686.5" + y="-229.5" + width="7" + height="9" + opacity="0" + id="rect812" /> + <path + d="m227.24 689h-2.2462v2h2.2462zm-4.4924 0h-2.2461v2h2.2461z" + fill="#4285f4" + id="path814" + style="fill:#3c84f7" /> + </g> + <g + id="menuitem-tearoff-normal" + transform="translate(97.739 -272.34)"> + <rect + transform="rotate(90)" + x="686.5" + y="-229.5" + width="7" + height="9" + opacity="0" + id="rect858" /> + <path + d="m227.24 689h-2.2462v2h2.2462zm-4.4924 0h-2.2461v2h2.2461z" + id="path860" + style="fill:#000006;opacity:0.35" /> + </g> + <rect + id="dial" + x="25.629" + y="745.47" + width="45" + height="45" + rx="22.5" + ry="22.5" + style="fill:#000006;opacity:0.08" /> + <rect + id="dock-normal" + x="357.5" + y="912.5" + width="30" + height="30" + style="fill:#ffffff;fill-opacity:1" /> + <g + transform="translate(2.5027073,-257.5)" + id="g997"> + <rect + id="dock-focused-left" + x="399.5" + y="1170" + width="5" + height="30" + opacity="0.15" + style="fill:#000006;opacity:0.12" /> + <rect + id="dock-focused-top" + transform="rotate(-90)" + x="-1167.5" + y="407" + width="5" + height="30" + opacity="0.15" + style="fill:#000006;opacity:0.12" /> + <rect + id="dock-focused-topleft" + x="399.5" + y="1162.5" + width="5" + height="5" + opacity="0.15" + style="fill:#000006;opacity:0.12" /> + <rect + id="dock-focused-topright" + x="439.5" + y="1162.5" + width="5" + height="5" + opacity="0.15" + style="fill:#000006;opacity:0.12" /> + <rect + id="dock-focused-right" + x="439.5" + y="1170" + width="5" + height="30" + opacity="0.15" + style="fill:#000006;opacity:0.12" /> + <rect + id="dock-focused-bottom" + transform="rotate(-90)" + x="-1207.5" + y="407" + width="5" + height="30" + opacity="0.15" + style="fill:#000006;opacity:0.12" /> + <rect + id="dock-focused-bottomright" + x="439.5" + y="1202.5" + width="5" + height="5" + opacity="0.15" + style="fill:#000006;opacity:0.12" /> + <rect + id="dock-focused-bottomleft" + x="399.5" + y="1202.5" + width="5" + height="5" + opacity="0.15" + style="fill:#000006;opacity:0.12" /> + </g> + <rect + id="dock-normal-left" + x="350" + y="912.5" + width="5" + height="30" + opacity="0.6" + style="fill:#000006;fill-opacity:1;opacity:0.12" /> + <rect + id="dock-normal-topleft" + x="350" + y="905" + width="5" + height="5" + opacity="0.6" + style="fill:#000006;fill-opacity:1;opacity:0.12" /> + <rect + id="dock-normal-top" + transform="rotate(90)" + x="905" + y="-387.5" + width="5" + height="30" + opacity="0.6" + style="fill:#000006;fill-opacity:1;opacity:0.12" /> + <rect + id="dock-normal-topright" + x="390" + y="905" + width="5" + height="5" + opacity="0.6" + style="fill:#000006;fill-opacity:1;opacity:0.12" /> + <rect + id="dock-normal-right" + x="390" + y="912.5" + width="5" + height="30" + opacity="0.6" + style="fill:#000006;fill-opacity:1;opacity:0.12" /> + <rect + id="dock-normal-bottomright" + x="390" + y="945" + width="5" + height="5" + opacity="0.6" + style="fill:#000006;fill-opacity:1;opacity:0.12" /> + <rect + id="dock-normal-bottom" + transform="rotate(-90)" + x="-950" + y="357.5" + width="5" + height="30" + opacity="0.6" + style="fill:#000006;fill-opacity:1;opacity:0.12" /> + <rect + id="dock-normal-bottomleft" + x="350" + y="945" + width="5" + height="5" + opacity="0.6" + style="fill:#000006;fill-opacity:1;opacity:0.12" /> + <rect + id="dock-focused" + x="409.5" + y="912.5" + width="30" + height="30" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="common-normal-top" + transform="translate(-372,536.96735)"> + <path + d="m 610,-369.03 h 40 v 1 h -40 z" + id="path1008" + transform="scale(1,-1)" + style="fill:#000006;opacity:0.12" /> + </g> + <rect + id="common-normal" + transform="scale(1,-1)" + x="238" + y="-946.99738" + width="40" + height="40" + opacity="0.00100002" /> + <g + id="common-normal-topleft" + transform="translate(-372,536.96735)"> + <path + d="m 609,368.03 c -1.1017,0 -0.99736,-0.10427 -0.99736,0.99736 H 609 Z" + id="path1012" + style="fill:#000006;opacity:0.12" /> + </g> + <g + id="common-normal-topright" + transform="translate(-372,536.96735)"> + <path + d="m 651,368.03 c 1.1016,0 0.99736,-0.10427 0.99736,0.99736 H 651 Z" + id="path1015" + style="fill:#000006;opacity:0.12" /> + </g> + <g + id="common-normal-left" + transform="translate(-372,536.96735)"> + <path + d="m -410.03,-609 h 40 v 0.99998 h -40 z" + id="path1018" + transform="matrix(0,-1,-1,0,0,0)" + style="fill:#000006;opacity:0.12" /> + </g> + <g + id="common-normal-right" + transform="translate(-372,536.96735)"> + <path + d="m 370.03,651 h 40 v 1 h -40 z" + id="path1021" + transform="matrix(0,1,1,0,0,0)" + style="fill:#000006;opacity:0.12" /> + </g> + <g + id="common-normal-bottom" + transform="translate(-372,536.96735)"> + <path + d="m 610,411.03 h 40 v 0.99986 h -40 z" + id="path1024" + style="fill:#000006;opacity:0.12" /> + </g> + <g + id="common-normal-bottomleft" + transform="translate(-372,536.96735)"> + <path + d="m 609,412.03 c -1.1017,0 -0.99736,0.10447 -0.99736,-0.99735 H 609 Z" + id="path1027" + style="fill:#000006;opacity:0.12" /> + </g> + <g + id="common-normal-bottomright" + transform="translate(-372,536.96735)"> + <path + d="m 651,412.03 c 1.1016,0 0.99736,0.10447 0.99736,-0.99735 H 651 Z" + id="path1030" + style="fill:#000006;opacity:0.12" /> + </g> + <g + id="tabBarFrame-normal-bottom" + transform="matrix(0 -1 .66667 0 -510.34 777)"> + <path + d="m174 921.5h-4l1.3e-4 -6h3.9999z" + opacity="0" + id="path1033" /> + <path + d="m172 921.5h-2l1e-4 -6h2z" + fill="#1d1d20" + id="path1035" + style="fill:#000006;opacity:0.1" /> + </g> + <use + id="tabBarFrame-normal-bottomright" + transform="translate(4)" + width="100%" + height="100%" + xlink:href="#tabBarFrame-normal-bottom" /> + <use + id="tabBarFrame-normal-bottomleft" + transform="translate(-4)" + width="100%" + height="100%" + xlink:href="#tabBarFrame-normal-bottom" /> + <g + id="common-focused-top" + transform="translate(-319,536.96735)"> + <path + transform="scale(1,-1)" + d="m 610,-369.03 h 40 v 1 h -40 z" + id="path1040" + style="fill:#000006;opacity:0.12" /> + </g> + <rect + id="common-focused" + transform="scale(1,-1)" + x="291" + y="-946.99738" + width="40" + height="40" + opacity="0.00100002" /> + <g + id="common-focused-topleft" + transform="translate(-319,536.96735)"> + <path + d="m 609,368.03 c -1.1017,0 -0.99736,-0.10427 -0.99736,0.99736 H 609 Z" + id="path1044" + style="fill:#000006;opacity:0.12" /> + </g> + <g + id="common-focused-topright" + transform="translate(-319,536.96735)"> + <path + d="m 651,368.03 c 1.1016,0 0.99736,-0.10427 0.99736,0.99736 H 651 Z" + id="path1047" + style="fill:#000006;opacity:0.12" /> + </g> + <g + id="common-focused-left" + transform="translate(-319,536.96735)"> + <path + transform="matrix(0,-1,-1,0,0,0)" + d="m -410.03,-609 h 40 v 0.99998 h -40 z" + id="path1050" + style="fill:#000006;opacity:0.12" /> + </g> + <g + id="common-focused-right" + transform="translate(-319,536.96735)"> + <path + transform="matrix(0,1,1,0,0,0)" + d="m 370.03,651 h 40 v 1 h -40 z" + id="path1053" + style="fill:#000006;opacity:0.12" /> + </g> + <g + id="common-focused-bottom" + transform="translate(-319,536.96735)"> + <path + d="m 610,411.03 h 40 v 0.99986 h -40 z" + id="path1056" + style="fill:#000006;opacity:0.12" /> + </g> + <g + id="common-focused-bottomleft" + transform="translate(-319,536.96735)"> + <path + d="m 609,412.03 c -1.1017,0 -0.99736,0.10447 -0.99736,-0.99735 H 609 Z" + id="path1059" + style="fill:#000006;opacity:0.12" /> + </g> + <g + id="common-focused-bottomright" + transform="translate(-319,536.96735)"> + <path + d="m 651,412.03 c 1.1016,0 0.99736,0.10447 0.99736,-0.99735 H 651 Z" + id="path1062" + style="fill:#000006;opacity:0.12" /> + </g> + <path + id="header-normal-bottom" + d="m78 116.88h-6v6h6z" + style="fill:#000006;opacity:0.12" /> + <path + id="header-normal-bottomleft" + d="m84 116.88h-6v6h6z" + style="fill:#000006;opacity:0.12" /> + <path + id="header-normal-bottomright" + d="m90 116.88h-6v6h6z" + style="fill:#000006;opacity:0.12" /> + <path + id="header-normal-left" + d="m90 110.88v-6h-6v6z" + style="fill:#000006;opacity:0.01" /> + <path + id="header-normal-right" + d="m84 110.88v-6h-6v6z" + style="fill:#000006;opacity:0.01" /> + <path + id="header-normal-top" + d="m78 110.88h-6v6h6z" + style="fill:#000006;opacity:0" /> + <path + id="header-normal-topright" + d="m84 110.88h-6v6h6z" + style="fill:#000006;opacity:0" /> + <path + id="header-normal-topleft" + d="m90 110.88h-6v6h6z" + style="fill:#000006;opacity:0" /> + <path + id="header-normal" + d="m78 110.88v-6h-6v6z" + style="fill:#000006;opacity:0.01" /> + <path + id="header-separator" + d="m72 104.88h-6v6h6z" + style="fill:#000006;opacity:0.12" /> + <path + id="window-normal" + d="m380 814.26h30v30h-30z" + style="fill:#fafafb;fill-opacity:1;opacity:1" /> + <path + id="window-normal-inactive" + d="m412 814.26h30v30h-30z" + style="fill:#ffffff;opacity:1;fill-opacity:1" /> + <rect + id="menubar-normal" + x="307.53" + y="359.27" + width="20" + height="20" + style="fill:#ffffff;fill-opacity:1;opacity:1" /> + <rect + id="menubar-normal-left" + transform="rotate(90)" + x="359.27" + y="-307.53" + width="20" + height="5" + style="fill:#ffffff;fill-opacity:1;opacity:1" /> + <rect + id="menubar-normal-topleft" + transform="rotate(90)" + x="354.27" + y="-307.53" + width="5" + height="5" + style="fill:#ffffff;fill-opacity:1;opacity:1" /> + <rect + id="menubar-normal-top" + x="307.53" + y="354.27" + width="20" + height="5" + style="fill:#ffffff;fill-opacity:1;opacity:1" /> + <rect + id="menubar-normal-right" + transform="rotate(90)" + x="359.27" + y="-332.53" + width="20" + height="5" + style="fill:#ffffff;fill-opacity:1;opacity:1" /> + <rect + id="menubar-normal-topright" + transform="rotate(90)" + x="354.27" + y="-332.53" + width="5" + height="5" + style="fill:#ffffff;fill-opacity:1;opacity:1" /> + <g + id="menubar-normal-bottomleft" + transform="matrix(1,0,0,0.25,2.5269,225.02)"> + <rect + x="300" + y="617" + width="5" + height="4" + id="rect1157" + style="opacity:0.12;fill:#000006;fill-opacity:1" /> + <g + transform="matrix(0.25,0,0,1,223.75,0)" + id="g1161"> + <path + d="m 305,621 h 20 v -3 h -20 z" + opacity="0" + id="path1159" /> + </g> + </g> + <g + id="menubar-normal-bottomright" + transform="matrix(1,0,0,0.25,2.5269,225.02)"> + <rect + x="325" + y="617" + width="5" + height="4" + id="rect1164" + style="opacity:0.12;fill:#000006;fill-opacity:1" /> + <g + transform="matrix(0.25,0,0,1,248.75,0)" + fill="#b6b6b6" + id="g1168"> + <path + d="m 305,621 h 20 v -3 h -20 z" + opacity="0" + id="path1166" /> + </g> + </g> + <g + id="menubar-normal-bottom" + transform="matrix(1,0,0,0.25,2.5269,225.02)"> + <rect + x="305" + y="617" + width="20" + height="4" + id="rect1171" + style="opacity:0.12;fill:#000006;fill-opacity:1" /> + <rect + x="305" + y="618" + width="20" + height="3" + opacity="0" + id="rect1173" /> + </g> + <rect + id="menubar-normal-inactive" + x="342.53" + y="359.27" + width="20" + height="20" + style="fill:#fafafb;fill-opacity:1;opacity:1" /> + <rect + id="menubar-normal-inactive-left" + transform="rotate(90)" + x="359.27" + y="-342.53" + width="20" + height="5" + style="fill:#fafafb;fill-opacity:1;opacity:1" /> + <rect + id="menubar-normal-inactive-topleft" + transform="rotate(90)" + x="354.27" + y="-342.53" + width="5" + height="5" + style="fill:#fafafb;fill-opacity:1;opacity:1" /> + <rect + id="menubar-normal-inactive-top" + x="342.53" + y="354.27" + width="20" + height="5" + style="fill:#fafafb;fill-opacity:1;opacity:1" /> + <rect + id="menubar-normal-inactive-right" + transform="rotate(90)" + x="359.27" + y="-367.53" + width="20" + height="5" + style="fill:#fafafb;fill-opacity:1;opacity:1" /> + <rect + id="menubar-normal-inactive-topright" + transform="rotate(90)" + x="354.27" + y="-367.53" + width="5" + height="5" + style="fill:#fafafb;fill-opacity:1;opacity:1" /> + <g + id="menubar-normal-inactive-bottomleft" + transform="matrix(1,0,0,0.25,37.527,225.02)"> + <rect + x="300" + y="617" + width="5" + height="4" + id="rect1182" + style="opacity:0.12;fill:#000006;fill-opacity:1" /> + <g + transform="matrix(0.25,0,0,1,223.75,0)" + id="g1186"> + <path + d="m 305,621 h 20 v -3 h -20 z" + opacity="0" + id="path1184" /> + </g> + </g> + <g + id="menubar-normal-inactive-bottomright" + transform="matrix(1,0,0,0.25,37.527,225.02)"> + <rect + x="325" + y="617" + width="5" + height="4" + id="rect1189" + style="opacity:0.12;fill:#000006;fill-opacity:1" /> + <g + transform="matrix(0.25,0,0,1,248.75,0)" + fill="#b6b6b6" + id="g1193"> + <path + d="m 305,621 h 20 v -3 h -20 z" + opacity="0" + id="path1191" /> + </g> + </g> + <g + id="menubar-normal-inactive-bottom" + transform="matrix(1,0,0,0.25,37.527,225.02)"> + <rect + x="305" + y="617" + width="20" + height="4" + id="rect1196" + style="opacity:0.12;fill:#000006;fill-opacity:1" /> + <rect + x="305" + y="618" + width="20" + height="3" + opacity="0" + id="rect1198" /> + </g> + <g + id="button-normal-topleft" + transform="translate(9,116)"> + <rect + x="-5" + y="-80" + width="6" + height="6" + fill="none" + style="paint-order:markers stroke fill" + id="rect1522" /> + <path + d="m1-80c-3.324 0-6 2.676-6 6h6z" + id="path1524" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + </g> + <g + id="button-normal-top" + transform="translate(9,116)"> + <rect + x="1" + y="-80" + width="26" + height="6" + id="rect1527" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + </g> + <g + id="button-normal" + transform="translate(9,116)"> + <rect + x="1" + y="-74" + width="26" + height="26" + id="rect1530" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + </g> + <use + id="button-normal-topright" + transform="matrix(-1 0 0 1 46 0)" + width="100%" + height="100%" + xlink:href="#button-normal-topleft" /> + <use + id="button-normal-bottomright" + transform="rotate(180 23 55)" + width="100%" + height="100%" + xlink:href="#button-normal-topleft" /> + <use + id="button-normal-bottomleft" + transform="matrix(1 0 0 -1 0 110)" + width="100%" + height="100%" + xlink:href="#button-normal-topleft" /> + <use + id="button-normal-bottom" + transform="translate(0,32)" + width="100%" + height="100%" + xlink:href="#button-normal-top" /> + <use + id="button-normal-left" + transform="rotate(90 7 39)" + width="100%" + height="100%" + xlink:href="#button-normal-top" /> + <use + id="button-normal-right" + transform="rotate(90 23 55)" + width="100%" + height="100%" + xlink:href="#button-normal-top" /> + <g + id="button-focused-topleft" + transform="matrix(.99999 0 0 .99999 55.989 115.99)"> + <rect + x="-5" + y="-80" + width="6" + height="6" + fill="none" + style="paint-order:markers stroke fill" + id="rect1539" /> + <path + d="m1-80c-3.324 0-6 2.676-6 6h6z" + id="path1541" + style="fill:#cfcfcf;opacity:1;fill-opacity:1" /> + </g> + <g + id="button-focused-top" + transform="matrix(.99999 0 0 .99999 55.989 115.99)"> + <rect + x="1" + y="-80" + width="26" + height="6" + id="rect1544" + style="fill:#cfcfcf;opacity:1;fill-opacity:1" /> + </g> + <g + id="button-focused" + transform="matrix(.99999 0 0 .99999 55.989 115.99)"> + <rect + x="1" + y="-74" + width="26" + height="26" + id="rect1547" + style="fill:#cfcfcf;opacity:1;fill-opacity:1" /> + </g> + <use + id="button-focused-topright" + transform="matrix(-1 0 0 1 139.97 2e-6)" + width="100%" + height="100%" + xlink:href="#button-focused-topleft" /> + <use + id="button-focused-bottomright" + transform="rotate(180 69.993 54.988)" + width="100%" + height="100%" + xlink:href="#button-focused-topleft" /> + <use + id="button-focused-bottomleft" + transform="matrix(1 0 0 -1 -3e-6 110.01)" + width="100%" + height="100%" + xlink:href="#button-focused-topleft" /> + <use + id="button-focused-bottom" + transform="translate(-3e-6 32)" + width="100%" + height="100%" + xlink:href="#button-focused-top" /> + <use + id="button-focused-left" + transform="rotate(90 53.99 39.001)" + width="100%" + height="100%" + xlink:href="#button-focused-top" /> + <use + id="button-focused-right" + transform="rotate(90 69.993 54.988)" + width="100%" + height="100%" + xlink:href="#button-focused-top" /> + <g + id="button-pressed-topleft" + transform="matrix(.99999 0 0 .99999 103 116)"> + <rect + x="-5" + y="-80" + width="6" + height="6" + fill="none" + style="paint-order:markers stroke fill" + id="rect1556" /> + <path + d="m1-80c-3.324 0-6 2.676-6 6h6z" + id="path1558" + style="fill:#a9a9a9;opacity:1;fill-opacity:1" /> + </g> + <g + id="button-pressed-top" + transform="matrix(.99999 0 0 .99999 103 116)"> + <rect + x="1" + y="-80" + width="26" + height="6" + id="rect1561" + style="fill:#a9a9a9;opacity:1;fill-opacity:1" /> + </g> + <g + id="button-pressed" + transform="matrix(.99999 0 0 .99999 103 116)"> + <rect + x="1" + y="-74" + width="26" + height="26" + id="rect1564" + style="fill:#a9a9a9;opacity:1;fill-opacity:1" /> + </g> + <use + id="button-pressed-topright" + transform="matrix(-1 0 0 1 233.99 2e-6)" + width="100%" + height="100%" + xlink:href="#button-pressed-topleft" /> + <use + id="button-pressed-bottomright" + transform="rotate(180 117 54.998)" + width="100%" + height="100%" + xlink:href="#button-pressed-topleft" /> + <use + id="button-pressed-bottomleft" + transform="matrix(1 0 0 -1 -3e-6 110.03)" + width="100%" + height="100%" + xlink:href="#button-pressed-topleft" /> + <use + id="button-pressed-bottom" + transform="translate(-3e-6 32)" + width="100%" + height="100%" + xlink:href="#button-pressed-top" /> + <use + id="button-pressed-left" + transform="rotate(90 101 39.01)" + width="100%" + height="100%" + xlink:href="#button-pressed-top" /> + <use + id="button-pressed-right" + transform="rotate(90 117 54.998)" + width="100%" + height="100%" + xlink:href="#button-pressed-top" /> + <g + id="button-toggled-topleft" + transform="matrix(.99999 0 0 .99999 154 116)"> + <rect + x="-5" + y="-80" + width="6" + height="6" + fill="none" + style="paint-order:markers stroke fill" + id="rect1573" /> + <path + d="m1-80c-3.324 0-6 2.676-6 6h6z" + style="paint-order:markers stroke fill;fill:#b3b3b3;fill-opacity:1" + id="path1575" /> + </g> + <g + id="button-toggled-top" + transform="matrix(.99999 0 0 .99999 154 116)"> + <rect + x="1" + y="-80" + width="26" + height="6" + style="paint-order:markers stroke fill;fill:#b3b3b3;fill-opacity:1" + id="rect1578" /> + </g> + <g + id="button-toggled" + transform="matrix(.99999 0 0 .99999 154 116)"> + <rect + x="1" + y="-74" + width="26" + height="26.000259" + style="fill:#b3b3b3;fill-opacity:1;stroke-width:1.00001;paint-order:markers stroke fill" + id="rect1581" /> + </g> + <use + id="button-toggled-topright" + transform="matrix(-1 0 0 1 335.99 2.21e-6)" + width="100%" + height="100%" + xlink:href="#button-toggled-topleft" /> + <use + id="button-toggled-bottomright" + transform="rotate(180 168 54.998)" + width="100%" + height="100%" + xlink:href="#button-toggled-topleft" /> + <use + id="button-toggled-bottomleft" + transform="matrix(1 0 0 -1 -3e-6 110.03)" + width="100%" + height="100%" + xlink:href="#button-toggled-topleft" /> + <use + id="button-toggled-bottom" + transform="translate(-3e-6 32)" + width="100%" + height="100%" + xlink:href="#button-toggled-top" /> + <use + id="button-toggled-left" + transform="rotate(90 152 39.01)" + width="100%" + height="100%" + xlink:href="#button-toggled-top" /> + <use + id="button-toggled-right" + transform="rotate(90 168 54.998)" + width="100%" + height="100%" + xlink:href="#button-toggled-top" /> + <g + id="tbutton-normal-topleft" + transform="matrix(5.0384183,0,0,5.0390527,-63.646221,-131.99449)" + stroke-linecap="square"> + <rect + x="21.167" + y="15.875" + width="3.175" + height="3.175" + fill="none" + stroke-width="0.037418" + style="paint-order:markers stroke fill" + id="rect1590" /> + <path + transform="scale(0.26458)" + d="M 92,60 C 85.352,60 80,65.352 80,72 H 92 Z" + id="path1592" + style="fill:#ffffff;opacity:0;fill-opacity:1" /> + </g> + <g + id="tbutton-normal-top" + transform="matrix(.31496 0 0 5.0394 52.333 -132)"> + <rect + x="24.342" + y="15.875" + width="3.175" + height="3.175" + id="rect1595" + style="fill:#ffffff;opacity:0;fill-opacity:1" /> + </g> + <use + id="tbutton-normal-topright" + transform="matrix(-1 0 0 1 121 3.303e-7)" + width="100%" + height="100%" + xlink:href="#tbutton-normal-topleft" /> + <use + id="tbutton-normal-bottomright" + transform="rotate(180 60.5 -34.5)" + width="100%" + height="100%" + xlink:href="#tbutton-normal-topleft" /> + <use + id="tbutton-normal-bottomleft" + transform="matrix(1 0 0 -1 -1.353e-6 -69)" + width="100%" + height="100%" + xlink:href="#tbutton-normal-topleft" /> + <use + id="tbutton-normal-bottom" + transform="matrix(1 0 0 -1 -3.5298e-7 -69)" + width="100%" + height="100%" + xlink:href="#tbutton-normal-top" /> + <g + id="tbutton-toggled-topleft" + transform="matrix(5.0394 0 0 5.0394 20.332 -131.9)"> + <rect + x="21.167" + y="15.875" + width="3.175" + height="3.175" + fill="none" + id="rect1602" /> + <path + d="m24.342 15.875c-1.7589 0-3.175 1.416-3.175 3.175h3.175z" + id="path1604" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + </g> + <g + id="tbutton-toggled-top" + transform="matrix(.31496 0 0 5.0394 136.33 -131.9)"> + <rect + x="24.342" + y="15.875" + width="3.175" + height="3.175" + id="rect1607" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + </g> + <use + id="tbutton-toggled-topright" + transform="matrix(-1 0 0 1 289 -9.592e-5)" + width="100%" + height="100%" + xlink:href="#tbutton-toggled-topleft" /> + <use + id="tbutton-toggled-bottomright" + transform="rotate(180 144.5 -34.4)" + width="100%" + height="100%" + xlink:href="#tbutton-toggled-topleft" /> + <use + id="tbutton-toggled-bottomleft" + transform="matrix(1 0 0 -1 9.8504e-8 -68.8)" + width="100%" + height="100%" + xlink:href="#tbutton-toggled-topleft" /> + <use + id="tbutton-toggled-bottom" + transform="matrix(1 0 0 -1 9.8504e-8 -68.8)" + width="100%" + height="100%" + xlink:href="#tbutton-toggled-top" /> + <g + id="tbutton-pressed-topleft" + transform="matrix(5.0394 0 0 5.0394 -20.668 -132)"> + <rect + x="21.167" + y="15.875" + width="3.175" + height="3.175" + fill="none" + id="rect1614" /> + <path + d="m24.342 15.875c-1.7589 0-3.175 1.416-3.175 3.175h3.175z" + id="path1616" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + </g> + <g + id="tbutton-pressed-top" + transform="matrix(.31496 0 0 5.0394 95.333 -132)"> + <rect + x="24.342" + y="15.875" + width="3.175" + height="3.175" + id="rect1619" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + </g> + <use + id="tbutton-pressed-topright" + transform="matrix(-1 0 0 1 207 -3.2101e-6)" + width="100%" + height="100%" + xlink:href="#tbutton-pressed-topleft" /> + <use + id="tbutton-pressed-bottomright" + transform="rotate(180,103.5,-34.5)" + width="100%" + height="100%" + xlink:href="#tbutton-pressed-topleft" /> + <use + id="tbutton-pressed-bottomleft" + transform="matrix(1 0 0 -1 -4.7486e-6 -69)" + width="100%" + height="100%" + xlink:href="#tbutton-pressed-topleft" /> + <use + id="tbutton-pressed-bottom" + transform="matrix(1 0 0 -1 1.4217e-8 -69)" + width="100%" + height="100%" + xlink:href="#tbutton-pressed-top" /> + <g + id="tbutton-normal-left" + transform="translate(25)"> + <rect + x="18" + y="-35" + width="16" + height="1" + id="rect1626" + style="fill:#ffffff;opacity:0;fill-opacity:1" /> + </g> + <g + id="tbutton-normal" + transform="matrix(.0625 0 0 1 58.875 0)"> + <rect + x="18" + y="-35" + width="16" + height="1" + id="rect1629" + style="fill:#ffffff;opacity:0;fill-opacity:1" /> + </g> + <use + id="tbutton-normal-right" + transform="translate(19)" + width="100%" + height="100%" + xlink:href="#tbutton-normal-left" /> + <g + id="tbutton-pressed-left" + transform="translate(68)"> + <rect + x="18" + y="-35" + width="16" + height="1" + id="rect1633" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + </g> + <g + id="tbutton-pressed" + transform="matrix(.0625 0 0 1 101.88 0)"> + <rect + x="18" + y="-35" + width="16" + height="1" + id="rect1636" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + </g> + <use + id="tbutton-pressed-right" + transform="translate(19)" + width="100%" + height="100%" + xlink:href="#tbutton-pressed-left" /> + <g + id="tbutton-toggled-left" + transform="translate(109)"> + <rect + x="18" + y="-35" + width="16" + height="1" + id="rect1640" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + </g> + <g + id="tbutton-toggled" + transform="matrix(.0625 0 0 1 142.87 0)"> + <rect + x="18" + y="-35" + width="16" + height="1" + id="rect1643" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + </g> + <use + id="tbutton-toggled-right" + transform="translate(19)" + width="100%" + height="100%" + xlink:href="#tbutton-toggled-left" /> + <path + id="menubaritem-pressed-left" + d="m188 946v-17.999h-6l3.6e-4 18z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-pressed-topleft" + d="m188 921c-3.2999-8e-5 -6 2.7-6 5.9999h6z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-pressed" + d="m189 928v18h18v-18z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-pressed-right" + d="m208 946v-17.999h6l-3.7e-4 18z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-pressed-topright" + d="m208 921c3.2999-8e-5 6 2.7 6 5.9999h-6z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-pressed-top" + d="m189 927h17.999v-6h-18z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-pressed-bottom" + d="m207 947h-17.999v6h18z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-pressed-bottomleft" + d="m188 953c-3.2999 0-5.9999-2.7-5.9999-5.9999l5.9999-1.1e-4z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-pressed-bottomright" + d="m208 953c3.2999 0 5.9999-2.7 5.9999-5.9999l-5.9999-1.1e-4z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-toggled-left" + d="m152 946v-17.999h-6l3.6e-4 18z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-toggled-topleft" + d="m152 921c-3.2999-7e-5 -6 2.7-6 5.9999h6z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-toggled" + d="m153 928v18h18v-18z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-toggled-right" + d="m172 946v-17.999h6l-3.7e-4 18z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-toggled-topright" + d="m172 921c3.2999-7e-5 6 2.7 6 5.9999h-6z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-toggled-top" + d="m153 927h17.999v-6h-18z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-toggled-bottom" + d="m171 947h-17.999v6h18z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-toggled-bottomleft" + d="m152 953c-3.2999 0-5.9999-2.7-5.9999-5.9999l5.9999-1.2e-4z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <path + id="menubaritem-toggled-bottomright" + d="m172 953c3.2999 0 5.9999-2.7 5.9999-5.9999l-5.9999-1.2e-4z" + style="fill:#ebebed;opacity:1;fill-opacity:1" /> + <use + id="tab-toggled-topright" + transform="matrix(-1,0,0,1,188,-2.5e-6)" + width="100%" + height="100%" + xlink:href="#tab-toggled-topleft" + x="0" + y="0" + style="opacity:1" /> + <g + id="tabBarFrame-toggled-bottom" + transform="matrix(0 -1 .66667 0 -491.34 777)"> + <path + d="m174 921.5h-4l1.3e-4 -6h3.9999z" + opacity="0" + id="path1739" /> + <path + d="m172 921.5h-2l1e-4 -6h2z" + fill="#333" + id="path1741" + style="fill:#000006;opacity:0.1" /> + </g> + <use + id="tabBarFrame-toggled-bottomleft" + transform="translate(-4)" + width="100%" + height="100%" + xlink:href="#tabBarFrame-toggled-bottom" /> + <use + id="tabBarFrame-toggled-bottomright" + transform="translate(4)" + width="100%" + height="100%" + xlink:href="#tabBarFrame-toggled-bottom" /> + <g + id="tabframe-normal-top-leftjunct" + transform="translate(-85,-270)" + fill-rule="evenodd"> + <path + d="m269 865h-4v4h4z" + fill-opacity="0" + id="path1746" /> + <path + d="m265.5 865h-0.5v2h0.5z" + fill="#212121" + id="path1748" /> + </g> + <use + id="tabframe-normal-top-rightjunct" + transform="matrix(-1,0,0,1,368,0)" + width="100%" + height="100%" + xlink:href="#tabframe-normal-top-leftjunct" /> + <use + id="tabframe-normal-right-leftjunct" + transform="matrix(-1,0,0,1,364,5)" + width="100%" + height="100%" + xlink:href="#tabframe-normal-top-leftjunct" /> + <use + id="tabframe-normal-right-rightjunct" + transform="matrix(1,0,0,-1,4,1204)" + width="100%" + height="100%" + xlink:href="#tabframe-normal-right-leftjunct" /> + <use + id="tabframe-normal-left-leftjunct" + transform="matrix(1,0,0,-1,0,1204)" + width="100%" + height="100%" + xlink:href="#tabframe-normal-top-leftjunct" /> + <use + id="tabframe-normal-left-rightjunct" + transform="translate(4,10)" + width="100%" + height="100%" + xlink:href="#tabframe-normal-top-leftjunct" /> + <use + id="tabframe-normal-bottom-leftjunct" + transform="matrix(1,0,0,-1,0,1208)" + width="100%" + height="100%" + xlink:href="#tabframe-normal-top-leftjunct" /> + <use + id="tabframe-normal-bottom-rightjunct" + transform="rotate(180,184,604)" + width="100%" + height="100%" + xlink:href="#tabframe-normal-top-leftjunct" /> + <g + id="tab-toggled" + transform="translate(0,-3)" + style="opacity:1"> + <rect + id="rect90454" + width="12" + height="6" + x="88" + y="683" + style="opacity:1;fill:#ebebed;fill-opacity:1" /> + </g> + <g + id="tab-toggled-topleft" + transform="translate(0,-3)" + style="opacity:1"> + <rect + id="rect90458" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="rect90366" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:1;fill:#ebebed;fill-opacity:1" /> + </g> + <g + id="tab-toggled-top" + transform="translate(0,-3)" + style="opacity:1"> + <rect + id="rect90448" + width="12" + height="8" + x="88" + y="675" + style="fill:none" /> + <rect + id="rect90460" + width="12" + height="6" + x="88" + y="677" + style="opacity:1;fill:#ebebed;fill-opacity:1" /> + </g> + <g + id="tab-toggled-left" + transform="translate(0,-3)" + style="opacity:1"> + <rect + id="rect90450" + width="8" + height="6" + x="80" + y="683" + style="fill:none" /> + <rect + id="rect90462" + width="6" + height="6" + x="82" + y="683" + style="opacity:1;fill:#ebebed;fill-opacity:1" /> + </g> + <use + x="0" + y="0" + xlink:href="#tab-toggled-left" + id="tab-toggled-right" + transform="matrix(-1,0,0,1,188,0)" + width="100%" + height="100%" + style="opacity:1" /> + <g + id="tab-toggled-bottom" + transform="matrix(1,0,0,-1,0,1369)" + style="opacity:1"> + <rect + id="rect90827" + width="12" + height="8" + x="88" + y="675" + style="fill:none" /> + <rect + id="rect90829" + width="12" + height="6" + x="88" + y="677" + style="opacity:1;fill:#ebebed;fill-opacity:1" /> + </g> + <g + id="tab-toggled-bottomright" + transform="matrix(0,-1,-1,0,783,774)" + style="opacity:1"> + <rect + id="rect90821" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="path90823" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:1;fill:#ebebed;fill-opacity:1" /> + </g> + <g + id="tab-toggled-bottomleft" + transform="matrix(1,0,0,-1,0,1369)" + style="opacity:1"> + <rect + id="rect90815" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="path90817" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:1;fill:#ebebed;fill-opacity:1" /> + </g> + <use + id="tab-focused-topright" + transform="matrix(-1,0,0,1,278.00001,1.7e-6)" + width="100%" + height="100%" + xlink:href="#tab-focused-topleft" + x="0" + y="0" /> + <g + id="tab-focused" + transform="translate(45,-3)"> + <rect + id="rect90454-7" + width="12" + height="6" + x="88" + y="683" + style="opacity:1;fill:#e6e6e6;fill-opacity:1" /> + </g> + <g + id="tab-focused-topleft" + transform="translate(45,-3)"> + <rect + id="rect90458-5" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="rect90366-3" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:1;fill:#e6e6e6;fill-opacity:1" /> + </g> + <g + id="tab-focused-top" + transform="translate(45,-3)"> + <rect + id="rect90448-5" + width="12" + height="8" + x="88" + y="675" + style="fill:none" /> + <rect + id="rect90460-6" + width="12" + height="6" + x="88" + y="677" + style="opacity:1;fill:#e6e6e6;fill-opacity:1" /> + </g> + <g + id="tab-focused-left" + transform="translate(45,-3)"> + <rect + id="rect90450-2" + width="8" + height="6" + x="80" + y="683" + style="fill:none" /> + <rect + id="rect90462-9" + width="6" + height="6" + x="82" + y="683" + style="opacity:1;fill:#e6e6e6;fill-opacity:1" /> + </g> + <use + x="0" + y="0" + xlink:href="#tab-focused-left" + id="tab-focused-right" + transform="matrix(-1,0,0,1,278.00001,1.7e-6)" + width="100%" + height="100%" /> + <g + id="tab-focused-bottom" + transform="matrix(1,0,0,-1,45,1369)"> + <rect + id="rect90827-1" + width="12" + height="8" + x="88" + y="675" + style="fill:none" /> + <rect + id="rect90829-2" + width="12" + height="6" + x="88" + y="677" + style="opacity:1;fill:#e6e6e6;fill-opacity:1" /> + </g> + <g + id="tab-focused-bottomright" + transform="matrix(0,-1,-1,0,828.00001,774.00001)"> + <rect + id="rect90821-7" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="path90823-0" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:1;fill:#e6e6e6;fill-opacity:1" /> + </g> + <g + id="tab-focused-bottomleft" + transform="matrix(1,0,0,-1,45,1369)"> + <rect + id="rect90815-9" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="path90817-3" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:1;fill:#e6e6e6;fill-opacity:1" /> + </g> + <g + id="tab-normal-topright" + transform="matrix(-1,0,0,1,146,-4)" + style="opacity:1"> + <rect + id="rect93067" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="path93069" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:0;fill:#000006" /> + </g> + <g + id="tab-normal" + transform="translate(-42.00001,-4.0000038)" + style="opacity:1"> + <rect + id="rect90454-0" + width="12" + height="6" + x="88" + y="683" + style="opacity:0;fill:#000006" /> + </g> + <g + id="tab-normal-topleft" + transform="translate(-42.00001,-4.0000038)" + style="opacity:1"> + <rect + id="rect90458-6" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="rect90366-2" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:0;fill:#000006" /> + </g> + <g + id="tab-normal-top" + transform="translate(-42.00001,-4.0000038)" + style="opacity:1"> + <rect + id="rect90448-6" + width="12" + height="8" + x="88" + y="675" + style="fill:none" /> + <rect + id="rect90460-1" + width="12" + height="6" + x="88" + y="677" + style="opacity:0;fill:#000006" /> + </g> + <g + id="tab-normal-left" + transform="translate(-42.00001,-4.0000038)" + style="opacity:1"> + <rect + id="rect90450-8" + width="8" + height="6" + x="80" + y="683" + style="fill:none" /> + <rect + id="rect90462-7" + width="6" + height="6" + x="82" + y="683" + style="opacity:0;fill:#000006" /> + </g> + <g + id="tab-normal-right" + transform="matrix(-1,0,0,1,146,-4)" + style="opacity:1"> + <rect + id="rect93061" + width="8" + height="6" + x="80" + y="683" + style="fill:none" /> + <rect + id="rect93063" + width="6" + height="6" + x="82" + y="683" + style="opacity:0;fill:#000006" /> + </g> + <g + id="tab-normal-bottom" + transform="matrix(1,0,0,-1,-42.00001,1368)" + style="opacity:1"> + <rect + id="rect90827-9" + width="12" + height="8" + x="88" + y="675" + style="fill:none" /> + <rect + id="rect90829-20" + width="12" + height="6" + x="88" + y="677" + style="opacity:0;fill:#000006" /> + </g> + <g + id="tab-normal-bottomright" + transform="matrix(0,-1,-1,0,741,773.00001)" + style="opacity:1"> + <rect + id="rect90821-2" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="path90823-3" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:0;fill:#000006" /> + </g> + <g + id="tab-normal-bottomleft" + transform="matrix(1,0,0,-1,-42.00001,1368)" + style="opacity:1"> + <rect + id="rect90815-7" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="path90817-5" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:0;fill:#000006" /> + </g> + <g + id="slidercursor-focused"> + <circle + id="path64528" + cx="390" + cy="310" + style="opacity:0.15;fill:#000006;stroke-width:0.999546" + r="11" /> + <path + id="path64497" + style="fill:#3584e4;fill-opacity:1" + d="M 390 303 C 386.1577 303 383 306.1577 383 310 C 383 313.8423 386.1577 317 390 317 L 390.00195 317 L 390.00391 317 C 391.81032 316.99711 393.54284 316.29331 394.8418 315.04492 L 394.89844 315.00195 L 399.80078 310 L 398.42773 308.59961 L 395.0293 305.13281 C 393.71154 303.77081 391.89527 303.00042 390 303 z M 390 305 C 391.3543 305.0003 392.65015 305.55011 393.5918 306.52344 L 397 310 L 393.57617 313.49414 C 393.57217 313.49714 393.5665 313.49995 393.5625 313.50195 C 392.6239 314.45901 391.3405 314.998 390 315 C 387.2386 315 385 312.7614 385 310 C 385 307.2386 387.2386 305 390 305 z " /> + <path + d="m 397,310.0001 -3.4079,-3.4767 C 392.65045,305.55007 391.3543,305.0003 390,305 c -2.7614,0 -5,2.2386 -5,5 0,2.7614 2.2386,5 5,5 1.3405,-0.002 2.6242,-0.54194 3.5628,-1.499 0.004,-0.002 0.009,-0.004 0.013,-0.007 z" + id="path64499" + style="fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="slidercursor-pressed" + transform="translate(22.2,-8e-5)"> + <circle + id="circle64788" + cx="390" + cy="310" + style="opacity:0.15;fill:#000006;stroke-width:0.999546" + r="11" /> + <path + id="path64790" + style="fill:#3584e4;fill-opacity:1" + d="M 412.19922 303 C 408.35692 303 405.19922 306.1577 405.19922 310 C 405.19922 313.8423 408.35692 317 412.19922 317 L 412.20117 317 L 412.20312 317 C 414.00954 316.99711 415.74206 316.29331 417.04102 315.04492 L 417.09766 315.00195 L 422 310 L 420.62695 308.59961 L 417.22852 305.13281 C 415.91076 303.77081 414.09449 303.00042 412.19922 303 z M 412.40039 306 C 413.48383 306.00024 414.52012 306.44009 415.27344 307.21875 L 418 310 L 415.25977 312.79492 C 415.25637 312.79792 415.253 312.79878 415.25 312.80078 C 414.49912 313.56643 413.47279 313.998 412.40039 314 C 410.19127 314 408.40039 312.20912 408.40039 310 C 408.40039 307.79088 410.19127 306 412.40039 306 z " + transform="translate(-22.2,8e-5)" /> + <path + d="m 395.8,310.00008 -2.72632,-2.78136 C 392.32036,306.44006 391.28344,306.00024 390.2,306 c -2.20912,0 -4,1.79088 -4,4 0,2.20912 1.79088,4 4,4 1.0724,-0.002 2.09936,-0.43355 2.85024,-1.1992 0.003,-0.002 0.007,-0.003 0.0104,-0.006 z" + id="path64792" + style="fill:#ffffff;fill-opacity:1;stroke-width:0.8" /> + </g> + <g + id="slidercursor-tickless-disabled" + transform="translate(17,-128)"> + <rect + x="317" + y="405" + width="22" + height="22" + opacity="0.00100002" + id="rect64880" /> + <path + id="circle64882" + style="fill:#3584e4;fill-opacity:1;stroke-width:1.6;opacity:0.35" + d="M 345 280 A 8 8 0 0 0 337 288 A 8 8 0 0 0 345 296 A 8 8 0 0 0 353 288 A 8 8 0 0 0 345 280 z M 345 282 A 6 6 0 0 1 351 288 A 6 6 0 0 1 345 294 A 6 6 0 0 1 339 288 A 6 6 0 0 1 345 282 z " + transform="translate(-17,128)" /> + <circle + cx="328" + cy="416" + r="6" + id="circle64884" + style="fill:#ffffff;fill-opacity:1;stroke-width:1.2" /> + </g> + <g + id="slidercursor-disabled" + transform="translate(17,-128)"> + <rect + x="317" + y="427" + width="22" + height="22" + opacity="0.00100002" + id="rect64888" /> + <path + id="path64890" + style="fill:#3584e4;fill-opacity:1;opacity:0.35" + d="M 345 303 C 341.1577 303 338 306.1577 338 310 C 338 313.8423 341.1577 317 345 317 L 345.00195 317 L 345.00391 317 C 346.81032 316.99711 348.54284 316.29331 349.8418 315.04492 L 349.89844 315.00195 L 354.80078 310 L 353.42773 308.59961 L 350.0293 305.13281 C 348.71154 303.77081 346.89527 303.00042 345 303 z M 345 305 C 346.3543 305.0003 347.65015 305.55011 348.5918 306.52344 L 352 310 L 348.57617 313.49414 C 348.57217 313.49714 348.5665 313.498 348.5625 313.5 C 347.6239 314.45706 346.3405 314.998 345 315 C 342.2386 315 340 312.7614 340 310 C 340 307.2386 342.2386 305 345 305 z " + transform="translate(-17,128)" /> + <path + d="m 335,438 -3.4079,-3.4767 c -0.94165,-0.97333 -2.2378,-1.5231 -3.5921,-1.5234 -2.7614,0 -5,2.2386 -5,5 0,2.7614 2.2386,5 5,5 1.3405,-0.002 2.6242,-0.54194 3.5628,-1.499 0.004,-0.002 0.009,-0.004 0.013,-0.007 z" + id="path64892" + style="fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="lineedit-normal" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.035319;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect43255" + width="3.175" + height="1.5875" + x="34.395832" + y="27.78125" /> + </g> + <g + id="lineedit-normal-left" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect43257" + width="1.5875" + height="1.5875" + x="32.808334" + y="27.78125" /> + </g> + <g + id="lineedit-normal-top" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.035319;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect43253" + width="3.175" + height="1.5875" + x="34.395832" + y="26.19375" /> + </g> + <g + id="lineedit-normal-topright" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <use + x="0" + y="0" + xlink:href="#rect43263" + id="use43516" + transform="rotate(90,35.983333,29.36875)" + width="100%" + height="100%" /> + </g> + <g + id="lineedit-normal-topleft" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <path + id="rect43263" + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0943911;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 130,99 c -3.324,0 -6,2.676 -6,6 h 6 z" + transform="scale(0.26458333)" /> + </g> + <g + id="lineedit-normal-bottomright" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <use + x="0" + y="0" + xlink:href="#rect43263" + id="use43520" + transform="rotate(180,35.983333,28.575)" + width="100%" + height="100%" /> + </g> + <g + id="lineedit-normal-bottomleft" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <use + x="0" + y="0" + xlink:href="#rect43263" + id="use43524" + transform="rotate(-90,35.189583,28.575)" + width="100%" + height="100%" /> + </g> + <g + id="lineedit-normal-right" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <use + x="0" + y="0" + xlink:href="#rect43257" + id="use43688" + transform="matrix(-1,0,0,1,71.966668,0)" + width="100%" + height="100%" /> + </g> + <g + id="lineedit-normal-bottom" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <use + x="0" + y="0" + xlink:href="#rect43253" + id="use43692" + transform="matrix(1,0,0,-1,0,57.150001)" + width="100%" + height="100%" /> + </g> + <g + id="lineedit-focused" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.035319;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect44039" + width="3.175" + height="1.5875" + x="34.395832" + y="27.78125" /> + </g> + <g + id="lineedit-focused-left" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect44043" + width="1.5875" + height="1.5875" + x="32.808334" + y="27.78125" /> + <rect + style="opacity:1;fill:#81abdf;fill-opacity:1;stroke:none;stroke-width:0.0144189;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + id="rect44045" + width="0.52916664" + height="1.5875" + x="32.808334" + y="27.78125" /> + </g> + <g + id="lineedit-focused-top" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.035319;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect44049" + width="3.175" + height="1.5875" + x="34.395832" + y="26.19375" /> + <rect + style="opacity:1;fill:#81abdf;fill-opacity:1;stroke:none;stroke-width:0.0203914;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + id="rect44051" + width="3.175" + height="0.52916664" + x="34.395832" + y="26.19375" /> + </g> + <g + id="lineedit-focused-topright" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <path + id="use44055" + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 39.158333,27.78125 c 0,-0.879475 -0.708025,-1.5875 -1.5875,-1.5875 v 1.5875 z" /> + <path + id="use44057" + style="opacity:1;fill:#81abdf;fill-opacity:1;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + d="m 39.158333,27.78125 c 0,-0.879475 -0.708025,-1.5875 -1.5875,-1.5875 v 0.529167 c 0.586317,0 1.058334,0.472016 1.058334,1.058333 z" /> + </g> + <g + id="lineedit-focused-topleft" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <path + id="path44061" + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0943911;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 130,99 c -3.324,0 -6,2.676 -6,6 h 6 z" + transform="scale(0.26458333)" /> + <path + id="path44063" + style="opacity:1;fill:#81abdf;fill-opacity:1;stroke:none;stroke-width:0.0943911;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + d="m 130,99 c -3.324,0 -6,2.676 -6,6 h 2 c 0,-2.216 1.784,-4 4,-4 z" + transform="scale(0.26458333)" /> + </g> + <g + id="lineedit-focused-bottomright" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <path + id="use44067" + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 37.570833,30.95625 c 0.879475,0 1.5875,-0.708025 1.5875,-1.5875 h -1.5875 z" /> + <path + id="use44069" + style="opacity:1;fill:#81abdf;fill-opacity:1;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + d="m 37.570833,30.95625 c 0.879475,0 1.5875,-0.708025 1.5875,-1.5875 h -0.529167 c 0,0.586317 -0.472016,1.058334 -1.058333,1.058334 z" /> + </g> + <g + id="lineedit-focused-bottomleft" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <path + id="use44073" + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 32.808333,29.36875 c 0,0.879475 0.708025,1.5875 1.5875,1.5875 v -1.5875 z" /> + <path + id="use44075" + style="opacity:1;fill:#81abdf;fill-opacity:1;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + d="m 32.808333,29.36875 c 0,0.879475 0.708025,1.5875 1.5875,1.5875 v -0.529167 c -0.586317,0 -1.058334,-0.472016 -1.058334,-1.058333 z" /> + </g> + <g + id="lineedit-focused-right" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="use44079" + width="1.5875" + height="1.5875" + x="-39.158333" + y="27.78125" + transform="scale(-1,1)" /> + <rect + style="opacity:1;fill:#81abdf;fill-opacity:1;stroke:none;stroke-width:0.0144189;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + id="use44081" + width="0.52916664" + height="1.5875" + x="-39.158333" + y="27.78125" + transform="scale(-1,1)" /> + </g> + <g + id="lineedit-focused-bottom" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.035319;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="use44085" + width="3.175" + height="1.5875" + x="34.395832" + y="-30.956251" + transform="scale(1,-1)" /> + <rect + style="opacity:1;fill:#81abdf;fill-opacity:1;stroke:none;stroke-width:0.0203914;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + id="use44087" + width="3.175" + height="0.52916664" + x="34.395832" + y="-30.956251" + transform="scale(1,-1)" /> + </g> + <g + id="combo-normal" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.035319;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect44091" + width="3.175" + height="1.5875" + x="34.395832" + y="27.78125" /> + </g> + <g + id="combo-normal-left" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect44095" + width="1.5875" + height="1.5875" + x="32.808334" + y="27.78125" /> + </g> + <g + id="combo-normal-top" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.035319;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect44101" + width="3.175" + height="1.5875" + x="34.395832" + y="26.19375" /> + </g> + <g + id="combo-normal-topright" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <path + id="use44107" + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 39.158333,27.78125 c 0,-0.879475 -0.708025,-1.5875 -1.5875,-1.5875 v 1.5875 z" /> + </g> + <g + id="combo-normal-topleft" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <path + id="path44113" + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0943911;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 130,99 c -3.324,0 -6,2.676 -6,6 h 6 z" + transform="scale(0.26458333)" /> + </g> + <g + id="combo-normal-bottomright" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <use + x="0" + y="0" + xlink:href="#rect43263" + id="use44119" + transform="rotate(180,35.983333,28.575)" + width="100%" + height="100%" /> + </g> + <g + id="combo-normal-bottomleft" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <path + id="use44125" + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 32.808333,29.36875 c 0,0.879475 0.708025,1.5875 1.5875,1.5875 v -1.5875 z" /> + </g> + <g + id="combo-normal-right" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="use44131" + width="1.5875" + height="1.5875" + x="-39.158333" + y="27.78125" + transform="scale(-1,1)" /> + </g> + <g + id="combo-normal-bottom" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.035319;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="use44137" + width="3.175" + height="1.5875" + x="34.395832" + y="-30.956251" + transform="scale(1,-1)" /> + </g> + <g + id="combo-focused" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.035319;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect44143" + width="3.175" + height="1.5875" + x="34.395832" + y="27.78125" /> + </g> + <g + id="combo-focused-left" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect44147" + width="1.5875" + height="1.5875" + x="32.808334" + y="27.78125" /> + <rect + style="opacity:0.15;fill:#000006;stroke:none;stroke-width:0.0144189;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + id="rect44149" + width="0.52916664" + height="1.5875" + x="32.808334" + y="27.78125" /> + </g> + <g + id="combo-focused-top" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.035319;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect44153" + width="3.175" + height="1.5875" + x="34.395832" + y="26.19375" /> + <rect + style="opacity:0.15;fill:#000006;stroke:none;stroke-width:0.0203914;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + id="rect44155" + width="3.175" + height="0.52916664" + x="34.395832" + y="26.19375" /> + </g> + <g + id="combo-focused-topright" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <path + id="use44159" + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 39.158333,27.78125 c 0,-0.879475 -0.708025,-1.5875 -1.5875,-1.5875 v 1.5875 z" /> + <path + id="use44161" + style="opacity:0.15;fill:#000006;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + d="m 39.158333,27.78125 c 0,-0.879475 -0.708025,-1.5875 -1.5875,-1.5875 v 0.529167 c 0.586317,0 1.058334,0.472016 1.058334,1.058333 z" /> + </g> + <g + id="combo-focused-topleft" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <path + id="path44165" + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0943911;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 130,99 c -3.324,0 -6,2.676 -6,6 h 6 z" + transform="scale(0.26458333)" /> + <path + id="path44167" + style="opacity:0.15;fill:#000006;stroke:none;stroke-width:0.0943911;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + d="m 130,99 c -3.324,0 -6,2.676 -6,6 h 2 c 0,-2.216 1.784,-4 4,-4 z" + transform="scale(0.26458333)" /> + </g> + <g + id="combo-focused-bottomright" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <path + id="use44171" + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 37.570833,30.95625 c 0.879475,0 1.5875,-0.708025 1.5875,-1.5875 h -1.5875 z" /> + <path + id="use44173" + style="opacity:0.15;fill:#000006;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + d="m 37.570833,30.95625 c 0.879475,0 1.5875,-0.708025 1.5875,-1.5875 h -0.529167 c 0,0.586317 -0.472016,1.058334 -1.058333,1.058334 z" /> + </g> + <g + id="combo-focused-bottomleft" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <path + id="use44177" + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 32.808333,29.36875 c 0,0.879475 0.708025,1.5875 1.5875,1.5875 v -1.5875 z" /> + <path + id="use44179" + style="opacity:0.15;fill:#000006;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + d="m 32.808333,29.36875 c 0,0.879475 0.708025,1.5875 1.5875,1.5875 v -0.529167 c -0.586317,0 -1.058334,-0.472016 -1.058334,-1.058333 z" /> + </g> + <g + id="combo-focused-right" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="use44183" + width="1.5875" + height="1.5875" + x="-39.158333" + y="27.78125" + transform="scale(-1,1)" /> + <rect + style="opacity:0.15;fill:#000006;stroke:none;stroke-width:0.0144189;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + id="use44185" + width="0.52916664" + height="1.5875" + x="-39.158333" + y="27.78125" + transform="scale(-1,1)" /> + </g> + <g + id="combo-focused-bottom" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <rect + style="opacity:1;fill:#ebebed;stroke:none;stroke-width:0.035319;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="use44189" + width="3.175" + height="1.5875" + x="34.395832" + y="-30.956251" + transform="scale(1,-1)" /> + <rect + style="opacity:0.15;fill:#000006;stroke:none;stroke-width:0.0203914;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + id="use44191" + width="3.175" + height="0.52916664" + x="34.395832" + y="-30.956251" + transform="scale(1,-1)" /> + </g> + <g + id="resize-grip-normal"> + <rect + x="460" + y="0" + width="24" + height="24" + opacity="0" + id="rect52" + style="stroke-width:0.96" /> + <path + d="M 484,7.9999968 468,24 h 16 z" + id="path54" + style="opacity:0.1;fill:#000006;stroke-width:0.914286" /> + </g> + <path + id="expand-progress-pattern-normal" + d="m 0,170 v 10 h 10 v -10 z" + style="fill:#3584e4;fill-opacity:1" /> + <path + id="expand-progress-normal" + d="m 0,180 v 10 h 10 v -10 z" + style="opacity:0.25;fill:#ffffff" /> + <rect + id="expand-combo-normal" + x="10" + y="20" + width="10" + height="10" + style="opacity:0.1;fill:#000006" /> + <rect + id="expand-tbutton-normal" + x="190" + y="20" + width="8" + height="8" + style="opacity:0.1;fill:#000006" /> + <g + id="focus-left" + transform="translate(2,-19)"> + <path + d="m 183,121 v 10 h 2 v -10 z" + id="path252" + style="opacity:0.1;fill:#000006" /> + </g> + <g + id="focus-right" + transform="translate(0.00456,-18.996)"> + <path + d="m 197,121 v 10 h 2 v -10 z" + id="path255" + style="opacity:0.1;fill:#000006" /> + </g> + <g + id="focus-top" + transform="translate(0.99568,-17.996)"> + <path + d="m 186,118 v 2 h 10 v -2 z" + id="path258" + style="opacity:0.1;fill:#000006" /> + </g> + <g + id="focus-bottom" + transform="translate(0.99568,-19.996)"> + <path + d="m 186,132 v 2 h 10 v -2 z" + id="path261" + style="opacity:0.1;fill:#000006" /> + </g> + <path + id="focus-bottomleft" + d="m 185.00436,111.996 h 2 v 2 c -2,0 -2,-2 -2,-2 z" + style="opacity:0.1;fill:#000006" /> + <path + id="focus-bottomright" + d="m 199,112 h -2 v 2 c 2,0 2,-2 2,-2 z" + style="opacity:0.1;fill:#000006" /> + <path + id="focus-topleft" + d="m 185.00436,101.996 h 2 v -2 c -2,0 -2,2 -2,2 z" + style="opacity:0.1;fill:#000006" /> + <path + id="focus-topright" + d="m 199,102 h -2 v -2 c 2,0 2,2 2,2 z" + style="opacity:0.1;fill:#000006" /> + <g + id="resize-grip-focused" + transform="translate(0,31)"> + <rect + x="460" + y="0" + width="24" + height="24" + opacity="0" + id="rect13860" + style="stroke-width:0.96" /> + <path + d="M 484,7.9999968 468,24 h 16 z" + id="path13862" + style="opacity:0;fill:#000006;stroke-width:0.914286" /> + </g> + <g + id="scrollbarslider-normal-topleft" + transform="translate(-104,-241)"> + <path + d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" + opacity="0" + id="path898" /> + <path + d="m 155,1093 c -2.22222,0 -4,1.638 -4,3.638 V 1101 h 4 z" + fill="#989898" + id="path900" + style="opacity:1;fill:#ebebed;fill-opacity:1" + sodipodi:nodetypes="csccc" /> + </g> + <g + id="scrollbarslider-normal-left" + transform="matrix(1,0,0,1.3939415,-104,-674.72957)"> + <path + d="m 143,1101 v 16.5 h 12 V 1101 Z" + opacity="0" + id="path903" /> + <path + d="m 151,1101 v 16.5 h 4 V 1101 Z" + fill="#989898" + id="path905" + style="opacity:1;fill:#ebebed;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-focused-topleft"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect913" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path915" + style="opacity:1;fill:#ebebed;stroke-width:0.888889;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-focused-left"> + <rect + x="69" + y="860" + width="12" + height="23" + id="rect918" + style="fill:none" /> + <path + d="m 73,860 v 23 h 8 v -23 z" + fill="#c1c1c1" + id="path920" + style="opacity:1;fill:#ebebed;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-normal-topright" + transform="matrix(-1,0,0,1,206,-241)"> + <path + d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" + opacity="0" + id="path968" /> + <path + d="m 155,1093 c -2.22222,0 -3.97582,1.6382 -4,3.638 V 1101 h 4 z" + fill="#989898" + id="path970" + style="opacity:1;fill:#ebebed;fill-opacity:1" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="scrollbarslider-normal-right" + transform="matrix(-1,0,0,1.3939415,206,-674.72957)"> + <path + d="m 143,1101 v 16.5 h 12 V 1101 Z" + opacity="0" + id="path973" /> + <path + d="m 151,1101 v 16.5 h 4 V 1101 Z" + fill="#989898" + id="path975" + style="opacity:1;fill:#ebebed;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-normal-bottomleft" + transform="matrix(1,0,0,-1,-104,1984)"> + <path + d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" + opacity="0" + id="path978" /> + <path + d="m 155,1093 c -2.22222,0 -4,1.638 -4,3.638 V 1101 h 4 z" + fill="#989898" + id="path980" + style="opacity:1;fill:#ebebed;fill-opacity:1" + sodipodi:nodetypes="csccc" /> + </g> + <g + id="scrollbarslider-normal-bottomright" + transform="rotate(180,103,992)"> + <path + d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" + opacity="0" + id="path983" /> + <path + d="m 155,1093 c -2.22222,0 -4,1.638 -4,3.638 V 1101 h 4 z" + fill="#989898" + id="path985" + style="opacity:1;fill:#ebebed;fill-opacity:1" + sodipodi:nodetypes="csccc" /> + </g> + <g + id="scrollbarslider-focused-topright" + transform="matrix(-1,0,0,1,162,0)"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect1941" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path1943" + style="opacity:1;fill:#ebebed;stroke-width:0.888889;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-focused-bottomleft" + transform="matrix(1,0,0,-1,0,1743)"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect1947" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path1949" + style="opacity:1;fill:#ebebed;stroke-width:0.888889;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-focused-bottomright" + transform="rotate(180,81,871.5)"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect1953" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path1955" + style="opacity:1;fill:#ebebed;stroke-width:0.888889;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-focused-right" + transform="matrix(-1,0,0,1,162,0)"> + <rect + x="69" + y="860" + width="12" + height="23" + id="rect2069" + style="fill:none" /> + <path + d="m 73,860 v 23 h 8 v -23 z" + fill="#c1c1c1" + id="path2071" + style="opacity:1;fill:#ebebed;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-pressed-topleft" + transform="translate(32)"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect2157" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path2159" + style="opacity:1;fill:#a6a6a6;stroke-width:0.888889;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-pressed-left" + transform="translate(32)"> + <rect + x="69" + y="860" + width="12" + height="23" + id="rect2163" + style="fill:none" /> + <path + d="m 73,860 v 23 h 8 v -23 z" + fill="#c1c1c1" + id="path2165" + style="opacity:1;fill:#a6a6a6;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-pressed-topright" + transform="matrix(-1,0,0,1,194,0)"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect2169" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path2171" + style="opacity:1;fill:#a6a6a6;stroke-width:0.888889;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-pressed-bottomleft" + transform="matrix(1,0,0,-1,32,1743)"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect2175" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path2177" + style="opacity:1;fill:#a6a6a6;stroke-width:0.888889;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-pressed-bottomright" + transform="rotate(180,97,871.5)"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect2181" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path2183" + style="opacity:1;fill:#a6a6a6;stroke-width:0.888889;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-pressed-right" + transform="matrix(-1,0,0,1,194,0)"> + <rect + x="69" + y="860" + width="12" + height="23" + id="rect2187" + style="fill:none" /> + <path + d="m 73,860 v 23 h 8 v -23 z" + fill="#c1c1c1" + id="path2189" + style="opacity:1;fill:#a6a6a6;fill-opacity:1" /> + </g> + <g + id="tab-close-normal"> + <rect + width="22" + height="22" + opacity="0.00100002" + id="rect863" + x="259.76001" + y="686.35999" /> + <path + id="rect1993" + style="fill:#444444;fill-opacity:1" + d="m 266.87134,692.97131 c -0.12781,0 -0.25558,0.0485 -0.35352,0.14649 -0.19587,0.19587 -0.19587,0.51116 0,0.70703 l 3.53516,3.53516 -3.53516,3.53515 c -0.19587,0.19587 -0.19587,0.51117 0,0.70703 0.19587,0.19587 0.51117,0.19587 0.70703,0 l 3.53516,-3.53515 3.53516,3.53515 c 0.19586,0.19587 0.51116,0.19587 0.70703,0 0.19587,-0.19586 0.19587,-0.51116 0,-0.70703 l -3.53516,-3.53515 3.53516,-3.53516 c 0.19587,-0.19587 0.19587,-0.51116 0,-0.70703 -0.19587,-0.19587 -0.51117,-0.19587 -0.70703,0 l -3.53516,3.53516 -3.53516,-3.53516 c -0.0979,-0.0979 -0.2257,-0.14649 -0.35351,-0.14649 z" /> + </g> + <g + id="tab-close-focused"> + <rect + x="282.76001" + width="22" + height="22" + opacity="0.00100002" + id="rect888" + y="686.35999" /> + <circle + cx="293.76001" + cy="697.35999" + r="11" + id="circle890" + style="opacity:0.08;fill:#000006" /> + <path + id="path2486" + d="m 289.87134,692.97131 c -0.12781,0 -0.25558,0.0485 -0.35352,0.14649 -0.19587,0.19587 -0.19587,0.51116 0,0.70703 l 3.53516,3.53516 -3.53516,3.53515 c -0.19587,0.19587 -0.19587,0.51117 0,0.70703 0.19587,0.19587 0.51117,0.19587 0.70703,0 l 3.53516,-3.53515 3.53516,3.53515 c 0.19586,0.19587 0.51116,0.19587 0.70703,0 0.19587,-0.19586 0.19587,-0.51116 0,-0.70703 l -3.53516,-3.53515 3.53516,-3.53516 c 0.19587,-0.19587 0.19587,-0.51116 0,-0.70703 -0.19587,-0.19587 -0.51117,-0.19587 -0.70703,0 l -3.53516,3.53516 -3.53516,-3.53516 c -0.0979,-0.0979 -0.2257,-0.14649 -0.35351,-0.14649 z" + style="fill:#333333;fill-opacity:1" /> + </g> + <g + id="tab-close-pressed" + transform="translate(25.12866)"> + <rect + x="282.76001" + width="22" + height="22" + opacity="0.00100002" + id="rect2693" + y="686.35999" /> + <circle + cx="293.76001" + cy="697.35999" + r="11" + id="circle2695" + style="opacity:0;fill:#000006" /> + <path + id="path2697" + d="m 289.87134,692.97131 c -0.12781,0 -0.25558,0.0485 -0.35352,0.14649 -0.19587,0.19587 -0.19587,0.51116 0,0.70703 l 3.53516,3.53516 -3.53516,3.53515 c -0.19587,0.19587 -0.19587,0.51117 0,0.70703 0.19587,0.19587 0.51117,0.19587 0.70703,0 l 3.53516,-3.53515 3.53516,3.53515 c 0.19586,0.19587 0.51116,0.19587 0.70703,0 0.19587,-0.19586 0.19587,-0.51116 0,-0.70703 l -3.53516,-3.53515 3.53516,-3.53516 c 0.19587,-0.19587 0.19587,-0.51116 0,-0.70703 -0.19587,-0.19587 -0.51117,-0.19587 -0.70703,0 l -3.53516,3.53516 -3.53516,-3.53516 c -0.0979,-0.0979 -0.2257,-0.14649 -0.35351,-0.14649 z" + style="fill:#333333;fill-opacity:1" /> + </g> + <g + id="g2803" + transform="translate(78.53296)"> + <rect + width="22" + height="22" + opacity="0.00100002" + id="rect2799" + x="259.76001" + y="686.35999" /> + <path + id="path2801" + style="opacity:0.35;fill:#444444;fill-opacity:1" + d="m 266.87134,692.97131 c -0.12781,0 -0.25558,0.0485 -0.35352,0.14649 -0.19587,0.19587 -0.19587,0.51116 0,0.70703 l 3.53516,3.53516 -3.53516,3.53515 c -0.19587,0.19587 -0.19587,0.51117 0,0.70703 0.19587,0.19587 0.51117,0.19587 0.70703,0 l 3.53516,-3.53515 3.53516,3.53515 c 0.19586,0.19587 0.51116,0.19587 0.70703,0 0.19587,-0.19586 0.19587,-0.51116 0,-0.70703 l -3.53516,-3.53515 3.53516,-3.53516 c 0.19587,-0.19587 0.19587,-0.51116 0,-0.70703 -0.19587,-0.19587 -0.51117,-0.19587 -0.70703,0 l -3.53516,3.53516 -3.53516,-3.53516 c -0.0979,-0.0979 -0.2257,-0.14649 -0.35351,-0.14649 z" /> + </g> + <use + x="0" + y="0" + xlink:href="#tooltip-shadow-top" + id="tooltip-shadow-left" + transform="rotate(-90,294.99986,605.00005)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#tooltip-shadow-top" + id="tooltip-shadow-bottom" + transform="rotate(180,294.9999,605)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#tooltip-shadow-top" + id="tooltip-shadow-right" + transform="rotate(90,294.99996,605.00005)" + width="100%" + height="100%" /> + <path + id="tooltip-normal" + d="m 364.99991,582.00001 h 48 v 48 h -48 z" + style="fill:#000006;fill-opacity:0.80000001" /> + <g + id="tooltip-normal-left" + transform="translate(242.73991,-121.74999)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path1202" + style="opacity:1;fill:#000006;fill-opacity:0.80000001" /> + </g> + <g + id="tooltip-normal-topleft" + transform="translate(242.73761,-122.74999)"> + <path + d="m 122.26,698.75 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path1205" + style="opacity:1;fill:#000006;fill-opacity:0.80000001" /> + </g> + <g + id="tooltip-normal-top" + transform="rotate(90,328.50495,788.24496)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path1208" + style="opacity:1;fill:#000006;fill-opacity:0.80000001" /> + </g> + <g + id="tooltip-normal-topright" + transform="rotate(90,329.0061,788.74381)"> + <path + d="m 122.26,698.75 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path1211" + style="opacity:1;fill:#000006;fill-opacity:0.80000001" /> + </g> + <g + id="tooltip-normal-right" + transform="matrix(-1,0,0,1,535.25991,-121.74999)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path1214" + style="opacity:1;fill:#000006;fill-opacity:0.80000001" /> + </g> + <g + id="tooltip-normal-bottomright" + transform="rotate(180,267.6311,667.375)"> + <path + d="m 122.26,698.75 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path1217" + style="opacity:1;fill:#000006;fill-opacity:0.80000001" /> + </g> + <g + id="tooltip-normal-bottom" + transform="rotate(-90,206.75496,545.50505)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path1220" + style="opacity:1;fill:#000006;fill-opacity:0.80000001" /> + </g> + <g + id="tooltip-normal-bottomleft" + transform="rotate(-90,206.25611,546.0062)"> + <path + d="m 122.26,698.75 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path1223" + style="opacity:1;fill:#000006;fill-opacity:0.80000001" /> + </g> + <g + id="tooltip-shadow-top" + transform="translate(206.86991,-305.7199)"> + <rect + transform="scale(1,-1)" + x="63.130001" + y="-879.71997" + width="50" + height="7" + id="rect1230" + style="opacity:0.35;fill:url(#linearGradient4646-3)" /> + <path + d="m 63.13,879.72 h 50 v 5.99991 h -50 z" + id="path1226" + style="opacity:1;fill:#000006;stroke-width:0.755923;fill-opacity:0.80000001" /> + <path + d="m 63.13,878.72 h 50 v 1 h -50 z" + id="path5786" + style="opacity:0.75;fill:#ffffff;stroke-width:0.755923;fill-opacity:0.1" /> + </g> + <rect + id="tooltip-shadow-hint-top" + x="292.99991" + y="567" + width="2" + height="7" + fill="#b74aff" /> + <rect + id="tooltip-shadow-hint-right" + transform="rotate(-90)" + x="-608" + y="325.99991" + width="2" + height="7" + fill="#b74aff" /> + <rect + id="tooltip-shadow-hint-bottom" + x="292.99991" + y="636" + width="2" + height="7" + fill="#b74aff" /> + <rect + id="tooltip-shadow-hint-left" + transform="rotate(-90)" + x="-608.98999" + y="256.9899" + width="2" + height="7" + fill="#b74aff" /> + <g + id="tooltip-shadow-topleft" + transform="translate(-6.98909,4.0097095)"> + <path + d="m 276.99,562.99 c -8.077,0 -13,4.9229 -13,13 h 7 a 6,6 0 0 1 6,-6 z" + style="opacity:0.35;isolation:auto;mix-blend-mode:normal;fill:url(#radialGradient4192);fill-rule:nonzero;shape-rendering:auto" + id="path1273" /> + <path + id="path5519" + style="opacity:0.75;fill:#ffffff;fill-rule:nonzero;shape-rendering:auto;fill-opacity:0.1" + d="M 276.98828,569.00195 A 6.989,6.989 0 0 0 270,575.99023 h 0.98828 a 6,6 0 0 1 6,-6 z" /> + <path + d="m 270.989,575.9903 a 6,6 0 0 1 6,-6 v 6 z" + id="path1275" + style="opacity:1;fill:#000006;fill-opacity:0.80000001" /> + </g> + <use + x="0" + y="0" + xlink:href="#tooltip-shadow-topleft" + id="tooltip-shadow-topright" + transform="rotate(90,294.99991,605.00001)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#tooltip-shadow-topleft" + id="tooltip-shadow-bottomright" + transform="rotate(180,294.9999,605)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#tooltip-shadow-topleft" + id="tooltip-shadow-bottomleft" + transform="rotate(-90,294.99991,605.00001)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#menu-shadow-top" + id="menu-shadow-left" + transform="rotate(-90,59.9999,496.00006)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#menu-shadow-top" + id="menu-shadow-bottom" + transform="rotate(180,59.9999,496.00016)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#menu-shadow-top" + id="menu-shadow-right" + transform="rotate(90,59.99998,496.00018)" + width="100%" + height="100%" /> + <path + id="menuitem-normal-top" + d="m 205,492.00016 h 8 v 4 h -8 z" + opacity="0.1" + style="fill:#000006" /> + <path + id="menuitem-normal-bottom" + d="m 205,504.00016 h 8 v 4 h -8 z" + opacity="0.1" + style="fill:#000006" /> + <path + id="menuitem-normal" + d="m 205,496.00016 h 8 v 8 h -8 z" + opacity="0.1" + style="fill:#000006" /> + <g + id="menuitem-normal-topleft" + transform="translate(8,-2.99984)"> + <path + d="m 189,495 v 2 h 2 v -2 z" + fill="none" + style="paint-order:normal" + id="path1685" /> + <path + d="m 197,495 c -2.216,0 -4,1.784 -4,4 h 4 z" + opacity="0.1" + id="path1687" + style="fill:#000006" /> + <path + d="m 189,495 c -2.216,0 -4,1.784 -4,4 h 4 z" + opacity="0.1" + id="path1687-8" + style="opacity:0;fill:#000006;fill-opacity:0" /> + </g> + <g + id="menuitem-normal-left" + transform="translate(10,-0.99984)" + fill-rule="evenodd"> + <path + d="m 187,497 h 4 v 8 h -4 z" + fill="none" + id="path1690" /> + <path + d="m 191,497 h 4 v 8 h -4 z" + opacity="0.1" + id="path1692" + style="fill:#000006" /> + <path + d="m 183,497 h 4 v 8 h -4 z" + opacity="0.1" + id="path1692-1" + style="opacity:0;fill:#000006;fill-opacity:0.00634269" /> + </g> + <use + id="menuitem-normal-topright" + transform="matrix(-1,0,0,1,418,0)" + width="100%" + height="100%" + xlink:href="#menuitem-normal-topleft" + x="0" + y="0" /> + <use + id="menuitem-normal-right" + transform="matrix(-1,0,0,1,418,0)" + width="100%" + height="100%" + xlink:href="#menuitem-normal-left" + x="0" + y="0" /> + <use + id="menuitem-normal-bottomright" + transform="rotate(180,209,500.00016)" + width="100%" + height="100%" + xlink:href="#menuitem-normal-topleft" + x="0" + y="0" /> + <use + id="menuitem-normal-bottomleft" + transform="matrix(1,0,0,-1,0,1000.0003)" + width="100%" + height="100%" + xlink:href="#menuitem-normal-topleft" + x="0" + y="0" /> + <path + id="menu-normal" + d="m 123,472.00016 h 48 v 48 h -48 z" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="menu-normal-left" + transform="matrix(1.3333333,0,0,1,-41.013329,-231.74984)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path2243" + style="opacity:1;fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="menu-normal-topleft" + transform="matrix(1.3333333,0,0,1.3333333,-41.013329,-468.66648)"> + <path + d="m 122.26,698.75 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path2246" + style="opacity:1;fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="menu-normal-top" + transform="matrix(0,1.3333333,-1,0,874.75,307.98683)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path2249" + style="opacity:1;fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="menu-normal-topright" + transform="matrix(0,1.3333333,-1.3333333,0,1111.6723,307.98376)"> + <path + d="m 122.26,698.75 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path2252" + style="opacity:1;fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="menu-normal-right" + transform="matrix(-1.3333333,0,0,1,335.01041,-231.74984)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path2255" + style="opacity:1;fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="menu-normal-bottomright" + transform="matrix(-1.3333333,0,0,-1.3333333,335.01271,1460.6725)"> + <path + d="m 122.26,698.75 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path2258" + style="opacity:1;fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="menu-normal-bottom" + transform="matrix(0,-1.3333333,1,0,-580.75,684.01057)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path2261" + style="opacity:1;fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="menu-normal-bottomleft" + transform="matrix(0,-1.3333333,1.3333333,0,-817.65331,705.33292)"> + <path + d="m 138.25,698.74 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path2264" + style="opacity:1;fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="menu-shadow-topleft" + transform="matrix(4,0,0,4,-61,-1420.9998)"> + <path + id="path2274" + style="opacity:0.1;fill:url(#radialGradient4839-3-5)" + d="m -1,448 v 24 h 16 c 0,-4.432 3.568,-8 8,-8 v -16 z" + transform="matrix(0.25,0,0,0.25,18.25,355)" /> + <path + d="m 24,471 c -1.108,0 -2,0.892 -2,2 h 2 z" + id="path2276" + style="opacity:1;fill:#ffffff;fill-opacity:1" /> + <path + id="path19231" + style="opacity:0.5;fill:#ffffff" + d="m 23,464 c -4.432,0 -8,3.568 -8,8 h 1 c 0,-3.878 3.122,-7 7,-7 z" + transform="matrix(0.25,0,0,0.25,18.25,355)" /> + <path + id="path2707" + style="opacity:0.15;fill:#000006" + d="m 23,463 c -4.986,0 -9,4.014 -9,9 h 1 c 0,-4.432 3.568,-8 8,-8 z" + transform="matrix(0.25,0,0,0.25,18.25,355)" /> + </g> + <g + id="menu-shadow-top" + transform="matrix(0.85714,0,0,4,15.4286,-1416.9998)"> + <path + d="m 24,470 h 56 v 2 H 24 Z" + id="path2279" + style="opacity:1;fill:#ffffff;fill-opacity:1" /> + <rect + transform="scale(1,-1)" + x="24" + y="-470" + width="56" + height="4" + id="rect2281" + style="opacity:0.1;fill:url(#linearGradient4863-5-3)" /> + <path + d="m 24,470 h 56 v 0.25 H 24 Z" + id="path19272" + style="opacity:0.5;fill:#ffffff" /> + <rect + transform="scale(1,-1)" + x="24" + y="-470" + width="56" + height="0.25" + id="rect2852" + style="opacity:0.15;fill:#000006;stroke-width:0.25" /> + </g> + <use + id="menu-shadow-topright" + transform="matrix(-1,0,0,1,120,0)" + width="100%" + height="100%" + xlink:href="#menu-shadow-topleft" + x="0" + y="0" /> + <rect + id="menu-shadow-hint-bottom" + x="59" + y="529.00018" + width="2" + height="16" + fill="#b74aff" + fill-rule="evenodd" + stroke-width="1.13137" /> + <rect + id="menu-shadow-hint-right" + transform="rotate(-90)" + x="-497.00015" + y="93" + width="2" + height="16" + fill="#b74aff" + fill-rule="evenodd" + stroke-width="1.13137" /> + <rect + id="menu-shadow-hint-left" + transform="rotate(-90)" + x="-497.00015" + y="11" + width="2" + height="16" + fill="#b74aff" + fill-rule="evenodd" + stroke-width="1.13137" /> + <rect + id="menu-shadow-hint-top" + x="59" + y="447.00015" + width="2" + height="16" + fill="#b74aff" + fill-rule="evenodd" + stroke-width="1.13138" /> + <use + id="menu-shadow-bottomright" + transform="rotate(180,60,496.00016)" + width="100%" + height="100%" + xlink:href="#menu-shadow-topleft" + x="0" + y="0" /> + <use + id="menu-shadow-bottomleft" + transform="matrix(1,0,0,-1,0,992.00032)" + width="100%" + height="100%" + xlink:href="#menu-shadow-topleft" + x="0" + y="0" /> + <g + style="display:inline;fill:#000006;fill-rule:evenodd;stroke:none;stroke-width:0.816495" + transform="matrix(0,0.95999981,2,0,-788,229.16029)" + id="mask-left"> + <path + style="fill:#000006;fill-opacity:1;stroke:none;stroke-width:0.816495" + d="m 253.99999,347 h 50 l 10e-6,4 h -50 z" + id="path4486" + inkscape:connector-curvature="0" /> + </g> + <rect + style="display:inline;fill:#000006;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.96" + y="473.00021" + x="-85" + height="48" + width="48" + id="mask-center" /> + <path + inkscape:connector-curvature="0" + id="mask-topright" + d="m -28,472.00016 a 7.9999957,7.9999957 0 0 0 -8,-8 v 8 z" + style="color:#000006;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000006;solid-opacity:1;fill:#000006;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.472444;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <g + style="display:inline;fill:#000006;fill-rule:evenodd;stroke:none;stroke-width:0.816496" + id="mask-top" + transform="matrix(1,0,0,2,-338.99999,-229.99984)"> + <path + style="fill:#000006;fill-opacity:1;stroke:none;stroke-width:0.799999" + d="m 253.99999,347 h 47.99999 l 1e-5,4 H 254 Z" + id="path4128" + inkscape:connector-curvature="0" /> + </g> + <g + style="display:inline;fill:#000006;fill-rule:evenodd;stroke:none;stroke-width:0.816491" + transform="matrix(0.95999981,0,0,-2,-328.88335,1224.0002)" + id="mask-bottom"> + <path + style="fill:#000006;fill-opacity:1;stroke:none;stroke-width:0.816491" + d="m 253.99999,347 h 50 l 10e-6,4 h -50 z" + id="path4464" + inkscape:connector-curvature="0" /> + </g> + <g + style="display:inline;fill:#000006;fill-rule:evenodd;stroke:none" + transform="matrix(0,0.95999981,-1.3333311,0,431.9992,229.16028)" + id="mask-right"> + <path + style="fill:#000006;fill-opacity:1;stroke:none;stroke-width:1" + d="m 253.99999,344.99999 h 50 L 304,351 h -50 z" + id="path4478" + inkscape:connector-curvature="0" /> + </g> + <path + style="color:#000006;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000006;solid-opacity:1;fill:#000006;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.472444;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m -94,472.00016 a 8.0000046,8.0000046 0 0 1 8,-8.00001 v 8.00001 z" + id="mask-topleft" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="mask-bottomleft" + d="m -94,522.00016 a 8.0000028,8.0000028 0 0 0 8,8.00001 v -8.00001 z" + style="color:#000006;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000006;solid-opacity:1;fill:#000006;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.472444;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + style="color:#000006;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000006;solid-opacity:1;fill:#000006;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.472444;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m -28.000023,522.00019 a 7.9999957,7.9999957 0 0 1 -8,8 v -8 z" + id="mask-bottomright" + inkscape:connector-curvature="0" /> + <g + id="menu-checkbox-checked-normal" + transform="translate(8.05664,4.4707)"> + <rect + style="fill:#3584e4;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988" + width="16" + height="16" + x="325" + y="95" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 338.65039,99.240234 a 1,1 0 0 0 -1.41016,0.109375 l -5.29687,6.179691 -3.23633,-3.23633 a 1,1 0 0 0 -1.41406,0 1,1 0 0 0 0,1.41406 l 4.76367,4.76367 6.70313,-7.82031 a 1,1 0 0 0 -0.10938,-1.410156 z" + id="path2530" /> + </g> + <g + id="menu-checkbox-checked-focused" + transform="translate(28.05664,4.4707)"> + <rect + style="fill:#4990e7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;stroke-opacity:1;paint-order:fill markers stroke" + id="rect1988-3" + width="16" + height="16" + x="325" + y="95" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 338.65039,99.240234 a 1,1 0 0 0 -1.41016,0.109375 l -5.29687,6.179691 -3.23633,-3.23633 a 1,1 0 0 0 -1.41406,0 1,1 0 0 0 0,1.41406 l 4.76367,4.76367 6.70313,-7.82031 a 1,1 0 0 0 -0.10938,-1.410156 z" + id="path2530-5" /> + </g> + <g + id="menu-checkbox-tristate-normal" + transform="translate(48.05664,4.4707)"> + <rect + style="fill:#3584e4;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-3-2" + width="16" + height="16" + x="325" + y="95" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 328,102 a 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 h 4 6 a 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 h -6 z" + id="path2530-5-9" /> + </g> + <g + id="menu-checkbox-tristate-focused" + transform="translate(68.05664,4.4707)"> + <rect + style="fill:#4990e7;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-3-2-2" + width="16" + height="16" + x="325" + y="95" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 328,102 a 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 h 4 6 a 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 h -6 z" + id="path2530-5-9-7" /> + </g> + <g + id="menu-checkbox-normal" + transform="translate(-35.94336,-13.5293)"> + <rect + style="fill:#000006;fill-opacity:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-6" + width="16" + height="16" + x="329" + y="113" + ry="4" /> + <rect + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:3.3;stroke-opacity:1;paint-order:fill markers stroke" + id="rect5239" + width="12" + height="12" + x="331" + y="115" + ry="2" /> + </g> + <g + id="menu-checkbox-focused" + transform="translate(-15.94336,-13.5293)"> + <rect + style="fill:#000006;fill-opacity:0.15;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-6-6" + width="16" + height="16" + x="329" + y="113" + ry="4" /> + <rect + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:3.3;stroke-opacity:1;paint-order:fill markers stroke" + id="rect5239-7" + width="12" + height="12" + x="331" + y="115" + ry="2" /> + </g> + <g + id="menu-radio-normal" + transform="translate(-6.94336,14.4707)"> + <circle + style="fill:#000006;fill-opacity:0.1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882" + cx="308" + cy="113" + r="8" /> + <circle + style="fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917" + cx="308" + cy="113" + r="6" /> + </g> + <g + id="menu-radio-focused" + transform="translate(13.05664,14.4707)"> + <circle + style="fill:#000006;fill-opacity:0.15;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882-3" + cx="308" + cy="113" + r="8" /> + <circle + style="fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917-5" + cx="308" + cy="113" + r="6" /> + </g> + <g + id="menu-radio-checked-normal" + transform="translate(33.05664,14.4707)"> + <circle + style="fill:#3584e4;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882-3-2" + cx="308" + cy="113" + r="8" /> + <circle + style="fill:#f2ffff;fill-opacity:1;stroke-width:0.999997;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917-5-9" + cx="308" + cy="113" + r="3" /> + </g> + <g + id="menu-radio-checked-focused" + transform="translate(53.05664,14.4707)"> + <circle + style="fill:#4990e7;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882-3-2-2" + cx="308" + cy="113" + r="8" /> + <circle + style="fill:#f2ffff;fill-opacity:1;stroke-width:0.999997;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917-5-9-7" + cx="308" + cy="113" + r="3" /> + </g> + <g + id="checkbox-normal" + transform="translate(14.05664,15.4707)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <rect + style="fill:#bdbdbd;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-6-0" + width="16" + height="16" + x="279" + y="126" + ry="4" /> + <rect + style="fill:#f9ffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:3.3;stroke-opacity:1;paint-order:fill markers stroke" + id="rect5239-2" + width="12" + height="12" + x="281" + y="128" + ry="2" /> + </g> + <g + id="checkbox-focused" + transform="translate(38.05664,15.4707)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-9" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <rect + style="fill:#b0b0b0;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-6-6-7" + width="16" + height="16" + x="279" + y="126" + ry="4" /> + <rect + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:3.3;stroke-opacity:1;paint-order:fill markers stroke" + id="rect5239-7-5" + width="12" + height="12" + x="281" + y="128" + ry="2" /> + </g> + <g + id="checkbox-checked-normal" + transform="translate(62.05664,15.4707)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-4" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <rect + style="fill:#3584e4;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-9" + width="16" + height="16" + x="279" + y="126" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 292.65039,130.24023 a 1,1 0 0 0 -1.41016,0.10938 l -5.29687,6.17969 -3.23633,-3.23633 a 1,1 0 0 0 -1.41406,0 1,1 0 0 0 0,1.41406 l 4.76367,4.76367 6.70313,-7.82031 a 1,1 0 0 0 -0.10938,-1.41016 z" + id="path2530-3" /> + </g> + <g + id="checkbox-checked-focused" + transform="translate(86.05664,15.4707)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-9-6" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <rect + style="fill:#4990e7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;stroke-opacity:1;paint-order:fill markers stroke" + id="rect1988-3-0" + width="16" + height="16" + x="279" + y="126" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 292.65039,130.24023 a 1,1 0 0 0 -1.41016,0.10938 l -5.29687,6.17969 -3.23633,-3.23633 a 1,1 0 0 0 -1.41406,0 1,1 0 0 0 0,1.41406 l 4.76367,4.76367 6.70313,-7.82031 a 1,1 0 0 0 -0.10938,-1.41016 z" + id="path2530-5-6" /> + </g> + <g + id="checkbox-tristate-normal" + transform="translate(110.05664,15.4707)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-4-3" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <rect + style="fill:#3584e4;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-3-2-6" + width="16" + height="16" + x="279" + y="126" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 282,133 a 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 h 4 6 a 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 h -6 z" + id="path2530-5-9-1" /> + </g> + <g + id="checkbox-tristate-focused" + transform="translate(134.05664,15.4707)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-9-6-1" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <rect + style="fill:#4990e7;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-3-2-2-7" + width="16" + height="16" + x="279" + y="126" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 282,133 a 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 h 4 6 a 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 h -6 z" + id="path2530-5-9-7-9" /> + </g> + <g + id="radio-normal" + transform="translate(14.05664,39.4707)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-4-7" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <circle + style="fill:#bdbdbd;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882-2" + cx="287" + cy="134" + r="8" /> + <circle + style="fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917-2" + cx="287" + cy="134" + r="6" /> + </g> + <g + id="radio-focused" + transform="translate(38.05664,39.4707)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-9-6-3" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <circle + style="fill:#b0b0b0;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882-3-9" + cx="287" + cy="134" + r="8" /> + <circle + style="fill:#ffffff;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917-5-7" + cx="287" + cy="134" + r="6" /> + </g> + <g + id="radio-checked-normal" + transform="translate(62.05664,39.4707)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-4-3-2" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <circle + style="fill:#3584e4;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882-3-2-6" + cx="287" + cy="134" + r="8" /> + <circle + style="fill:#f2ffff;fill-opacity:1;stroke-width:0.999997;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917-5-9-1" + cx="287" + cy="134" + r="3" /> + </g> + <g + id="radio-checked-focused" + transform="translate(86.05664,39.4707)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-9-6-1-4" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <circle + style="fill:#4990e7;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882-3-2-2-9" + cx="287" + cy="134" + r="8" /> + <circle + style="fill:#f2ffff;fill-opacity:1;stroke-width:0.999997;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917-5-9-7-3" + cx="287" + cy="134" + r="3" /> + </g> + <path + id="tabframe-normal" + d="M 331.99999,481 H 380 v 48 h -48.00001 z" + style="fill:#ffffff;fill-opacity:1" /> + <g + id="tabframe-normal-topleft" + transform="matrix(4,0,0,4,234.99999,-1411.9999)"> + <path + id="path2274-2" + style="opacity:0.5;fill:url(#radialGradient4839-3-3);stroke-width:0.25" + d="m 18.000003,466.99997 v 6 h 3 c 0,-1.66199 1.338,-3 3,-3 v -3 z" /> + <path + id="path2276-9-7-3-6" + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke-width:1.625" + d="m 24.000003,469.74997 c -1.8005,0 -3.25,1.4495 -3.25,3.25 h 0.25 c 0,-1.66199 1.338,-3 3,-3 z" /> + <path + d="m 24,470 c -1.662,0 -3,1.338 -3,3 h 3 z" + id="path2276-9" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:1.5" /> + </g> + <g + id="tabframe-normal-top" + transform="matrix(0.85714,0,0,4,311.42859,-1407.9999)"> + <rect + transform="scale(1,-1)" + x="24.000059" + y="-468.99997" + width="55.999943" + height="2.999975" + id="rect2281-0" + style="opacity:0.5;fill:url(#linearGradient2345)" /> + <path + d="m 24,469 h 56 v 3 H 24 Z" + id="path2279-7" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:1.22474" /> + <rect + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke:none;stroke-width:0.540063;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect13658" + width="56.000187" + height="0.25" + x="24.000059" + y="468.74997" /> + </g> + <g + id="tabframe-normal-left" + transform="matrix(0,-0.85714,4,0,-1557,549.57136)"> + <rect + transform="scale(1,-1)" + x="24" + y="-469" + width="56" + height="3" + id="rect2281-0-3" + style="opacity:0.5;fill:url(#linearGradient8752)" /> + <path + d="m 24,469 h 56 v 3 H 24 Z" + id="path2279-7-0" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:1.22474" /> + <rect + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke:none;stroke-width:0.540063;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect13658-2" + width="56.000187" + height="0.25" + x="24" + y="468.74997" /> + </g> + <g + id="tabframe-normal-bottomleft" + transform="matrix(0,-4,4,0,-1561.0001,626)"> + <path + id="path2274-2-3-8" + style="opacity:0.5;fill:url(#radialGradient4839-3-3-9-7);stroke-width:0.25" + d="m 24,467.00002 h -6 v 6 h 3 c 0,-1.662 1.338,-3 3,-3 z" /> + <path + id="path2276-9-7-3-7" + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke-width:1.625" + d="m 24,469.75002 c -1.8005,0 -3.25,1.4495 -3.25,3.25 H 21 c 0,-1.662 1.338,-3 3,-3 z" /> + <path + d="m 24,470 c -1.662,0 -3,1.338 -3,3 h 3 z" + id="path2276-9-7-4" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:1.5" /> + </g> + <g + id="tabframe-normal-topright" + transform="matrix(-4,0,0,4,477.00001,-1411.9999)"> + <path + id="path2274-2-6" + style="opacity:0.5;fill:url(#radialGradient4839-3-3-6);stroke-width:0.25" + d="m 18.000003,466.99997 v 6 h 3 c 0,-1.66199 1.338,-3 3,-3 v -3 z" /> + <path + id="path2276-9-7-3-6-2" + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke-width:1.625" + d="m 24.000003,469.74997 c -1.8005,0 -3.25,1.4495 -3.25,3.25 h 0.25 c 0,-1.66199 1.338,-3 3,-3 z" /> + <path + d="m 24,470 c -1.662,0 -3,1.338 -3,3 h 3 z" + id="path2276-9-6" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:1.5" /> + </g> + <g + id="tabframe-normal-bottomright" + transform="matrix(0,-4,-4,0,2273.0001,626.00002)"> + <path + id="path2274-2-3-8-8" + style="opacity:0.5;fill:url(#radialGradient4839-3-3-9-7-0);stroke-width:0.25" + d="m 24,467.00002 h -6 v 6 h 3 c 0,-1.662 1.338,-3 3,-3 z" /> + <path + id="path2276-9-7-3-7-7" + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke-width:1.625" + d="m 24,469.75002 c -1.8005,0 -3.25,1.4495 -3.25,3.25 H 21 c 0,-1.662 1.338,-3 3,-3 z" /> + <path + d="m 24,470 c -1.662,0 -3,1.338 -3,3 h 3 z" + id="path2276-9-7-4-9" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:1.5" /> + </g> + <g + id="tabframe-normal-bottom" + transform="matrix(-0.85714,0,0,-4,400.57127,2418)"> + <rect + transform="scale(1,-1)" + x="23.999895" + y="-469" + width="56.000107" + height="3" + id="rect2281-0-0" + style="opacity:0.5;fill:url(#linearGradient8671)" /> + <path + d="m 24,469 h 56 v 3 H 24 Z" + id="path2279-7-6" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:1.22474" /> + <rect + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke:none;stroke-width:0.540065;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect13658-3" + width="56.000187" + height="0.25" + x="23.999895" + y="468.74997" /> + </g> + <g + id="tabframe-normal-right" + transform="matrix(0,0.85714,-4,0,2268.9999,460.42864)"> + <rect + transform="scale(1,-1)" + x="24" + y="-468.99997" + width="56" + height="2.999975" + id="rect2281-0-2" + style="opacity:0.5;fill:url(#linearGradient8515)" /> + <path + d="m 24,469 h 56 v 3 H 24 Z" + id="path2279-7-9" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:1.22474" /> + <rect + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke:none;stroke-width:0.540063;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect13658-6" + width="56.000187" + height="0.25" + x="24" + y="468.74997" /> + </g> +</svg> diff --git a/kvantum/dot-config/Kvantum/KvLibadwaita/KvLibadwaitaDark.kvconfig b/kvantum/dot-config/Kvantum/KvLibadwaita/KvLibadwaitaDark.kvconfig new file mode 100644 index 0000000..2b950e7 --- /dev/null +++ b/kvantum/dot-config/Kvantum/KvLibadwaita/KvLibadwaitaDark.kvconfig @@ -0,0 +1,568 @@ +[%General] +author=Vince Liuice, based on KvAdapta by Tsu Jan +comment=An uncomplicated theme inspired by the Materia GTK theme +x11drag=menubar_and_primary_toolbar +alt_mnemonic=true +left_tabs=false +attach_active_tab=false +mirror_doc_tabs=false +group_toolbar_buttons=true +toolbar_item_spacing=0 +toolbar_interior_spacing=2 +spread_progressbar=true +composite=true +menu_shadow_depth=16 +spread_menuitems=true +tooltip_shadow_depth=7 +splitter_width=1 +scroll_width=9 +scroll_arrows=false +scroll_min_extent=60 +slider_width=2 +slider_handle_width=23 +slider_handle_length=22 +tickless_slider_handle_size=22 +center_toolbar_handle=true +check_size=24 +textless_progressbar=false +progressbar_thickness=2 +menubar_mouse_tracking=true +toolbutton_style=1 +double_click=false +translucent_windows=false +blurring=false +popup_blurring=false +vertical_spin_indicators=false +spin_button_width=24 +fill_rubberband=false +merge_menubar_with_toolbar=true +small_icon_size=16 +large_icon_size=32 +button_icon_size=16 +toolbar_icon_size=16 +combo_as_lineedit=true +animate_states=true +button_contents_shift=false +combo_menu=true +hide_combo_checkboxes=true +combo_focus_rect=false +groupbox_top_label=true +inline_spin_indicators=true +joined_inactive_tabs=false +layout_spacing=6 +layout_margin=9 +scrollbar_in_view=true +transient_scrollbar=true +transient_groove=true +submenu_overlap=0 +tooltip_delay=0 +tree_branch_line=true +no_window_pattern=false +opaque=kaffeine,kmplayer,subtitlecomposer,kdenlive,vlc,smplayer,smplayer2,avidemux,avidemux2_qt4,avidemux3_qt4,avidemux3_qt5,kamoso,QtCreator,VirtualBox,trojita,dragon,digikam +reduce_window_opacity=0 +respect_DE=true +scrollable_menu=false +submenu_delay=150 +no_inactiveness=false +reduce_menu_opacity=0 +click_behavior=0 +contrast=1.00 +dialog_button_layout=0 +intensity=1.00 +saturation=1.00 +shadowless_popup=false +drag_from_buttons=false +menu_blur_radius=0 +tooltip_blur_radius=0 + +[GeneralColors] +window.color=#2c2c2c +base.color=#2c2c2c +alt.base.color=#2e2e2e +button.color=#4d4d4d +light.color=#535353 +mid.light.color=#474747 +dark.color=#282828 +mid.color=#323232 +highlight.color=#3584e4 +inactive.highlight.color=#3584e4 +text.color=#dfdfdf +window.text.color=#dfdfdf +button.text.color=#dfdfdf +disabled.text.color=#696969 +tooltip.text.color=#efefef +highlight.text.color=#ffffff +link.color=#0057AE +link.visited.color=#E040FB +progress.indicator.text.color=#dfdfdf + +[Hacks] +transparent_ktitle_label=true +transparent_dolphin_view=true +transparent_pcmanfm_sidepane=true +blur_translucent=false +transparent_menutitle=true +respect_darkness=true +kcapacitybar_as_progressbar=true +force_size_grip=true +iconless_pushbutton=true +iconless_menu=false +disabled_icon_opacity=100 +lxqtmainmenu_iconsize=16 +normal_default_pushbutton=true +single_top_toolbar=true +tint_on_mouseover=0 +transparent_pcmanfm_view=true +no_selection_tint=true +transparent_arrow_button=true +middle_click_scroll=false +opaque_colors=false +kinetic_scrolling=false +scroll_jump_workaround=true +centered_forms=false +noninteger_translucency=false +style_vertical_toolbars=false +blur_only_active_window=true + +[PanelButtonCommand] +frame=true +frame.element=button +frame.top=6 +frame.bottom=6 +frame.left=6 +frame.right=6 +interior=true +interior.element=button +indicator.size=8 +text.normal.color=#dfdfdf +text.focus.color=white +text.press.color=white +text.toggle.color=#ffffff +text.shadow=0 +text.margin=4 +text.iconspacing=4 +indicator.element=arrow +frame.expansion=0 + +[PanelButtonTool] +inherits=PanelButtonCommand +text.normal.color=#dfdfdf +text.focus.color=white +text.press.color=white +text.toggle.color=#ffffff +text.bold=false +indicator.element=arrow +indicator.size=0 +frame.expansion=0 + +[ToolbarButton] +frame=true +frame.element=tbutton +interior.element=tbutton +frame.top=16 +frame.bottom=16 +frame.left=16 +frame.right=16 +indicator.element=tarrow +text.normal.color=#dfdfdf +text.focus.color=white +text.press.color=white +text.toggle.color=white +text.bold=false +frame.expansion=32 + +[Dock] +inherits=PanelButtonCommand +interior.element=dock +frame.element=dock +frame.top=1 +frame.bottom=1 +frame.left=1 +frame.right=1 +text.normal.color=#dfdfdf + +[DockTitle] +inherits=PanelButtonCommand +frame=false +interior=false +text.normal.color=#dfdfdf +text.focus.color=white +text.bold=false + +[IndicatorSpinBox] +inherits=PanelButtonCommand +frame=true +interior=true +frame.top=2 +frame.bottom=2 +frame.left=2 +frame.right=2 +indicator.element=spin +indicator.size=8 +text.normal.color=#dfdfdf +text.margin.top=2 +text.margin.bottom=2 +text.margin.left=2 +text.margin.right=2 + +[RadioButton] +inherits=PanelButtonCommand +frame=false +interior.element=radio +text.normal.color=#dfdfdf +text.focus.color=white +min_width=+0.3font +min_height=+0.3font + +[CheckBox] +inherits=PanelButtonCommand +frame=false +interior.element=checkbox +text.normal.color=#dfdfdf +text.focus.color=white +min_width=+0.3font +min_height=+0.3font + +[Focus] +inherits=PanelButtonCommand +frame=true +frame.element=focus +frame.top=2 +frame.bottom=2 +frame.left=2 +frame.right=2 +frame.patternsize=14 + +[GenericFrame] +inherits=PanelButtonCommand +frame=true +interior=false +frame.element=common +interior.element=common +frame.top=1 +frame.bottom=1 +frame.left=1 +frame.right=1 + +[LineEdit] +inherits=PanelButtonCommand +frame.element=lineedit +interior.element=lineedit +frame.top=6 +frame.bottom=6 +frame.left=6 +frame.right=6 +text.margin.top=2 +text.margin.bottom=2 +text.margin.left=2 +text.margin.right=2 + +[ToolbarLineEdit] +frame.element=lineedit +interior.element=lineedit + +[DropDownButton] +inherits=PanelButtonCommand +indicator.element=arrow-down + +[IndicatorArrow] +indicator.element=arrow +indicator.size=8 + +[ToolboxTab] +inherits=PanelButtonCommand +text.normal.color=#dfdfdf +text.press.color=#dfdfdf +text.focus.color=white + +[Tab] +inherits=PanelButtonCommand +interior.element=tab +text.margin.left=8 +text.margin.right=8 +text.margin.top=0 +text.margin.bottom=0 +frame.element=tab +indicator.element=tab +indicator.size=22 +frame.top=8 +frame.bottom=8 +frame.left=8 +frame.right=8 +text.normal.color=#dfdfdf +text.focus.color=#dfdfdf +text.press.color=white +text.toggle.color=white +frame.expansion=0 +text.bold=false + +[TabFrame] +inherits=PanelButtonCommand +frame.element=tabframe +interior.element=tabframe +frame.top=24 +frame.bottom=24 +frame.left=24 +frame.right=24 + +[TreeExpander] +inherits=PanelButtonCommand +indicator.size=8 +indicator.element=tree + +[HeaderSection] +inherits=PanelButtonCommand +interior.element=header +frame.element=header +frame.top=0 +frame.bottom=1 +frame.left=1 +frame.right=1 +text.normal.color=#dfdfdf +text.focus.color=white +text.press.color=white +text.toggle.color=white +frame.expansion=0 + +[SizeGrip] +indicator.element=resize-grip + +[Toolbar] +inherits=PanelButtonCommand +indicator.element=toolbar +indicator.size=5 +text.margin=0 +interior.element=menubar +frame.element=menubar +text.normal.color=#dfdfdf +text.focus.color=white +text.press.color=#dfdfdf +text.toggle.color=white +frame.left=6 +frame.right=6 +frame.top=0 +frame.bottom=1 +frame.expansion=0 + +[Slider] +inherits=PanelButtonCommand +frame.element=slider +focusFrame=true +interior.element=slider +frame.top=3 +frame.bottom=3 +frame.left=3 +frame.right=3 + +[SliderCursor] +inherits=PanelButtonCommand +frame=false +interior.element=slidercursor + +[Progressbar] +inherits=PanelButtonCommand +frame.element=progress +interior.element=progress +text.margin=0 +text.normal.color=#dfdfdf +text.focus.color=#dfdfdf +text.press.color=#dfdfdf +text.toggle.color=#dfdfdf +text.bold=false +frame.expansion=8 + +[ProgressbarContents] +inherits=PanelButtonCommand +frame=true +frame.element=progress-pattern +interior.element=progress-pattern + +[ItemView] +inherits=PanelButtonCommand +text.margin=0 +frame.element=itemview +interior.element=itemview +frame.top=4 +frame.bottom=4 +frame.left=4 +frame.right=4 +text.margin.top=0 +text.margin.bottom=0 +text.margin.left=8 +text.margin.right=8 +text.normal.color=#dfdfdf +text.focus.color=#dfdfdf +text.press.color=#ffffff +text.toggle.color=#ffffff +min_width=+0.3font +min_height=+0.3font +frame.expansion=0 + +[Splitter] +interior.element=splitter +frame=false +indicator.size=0 + +[Scrollbar] +inherits=PanelButtonCommand +indicator.element=arrow +indicator.size=12 + +[ScrollbarSlider] +inherits=PanelButtonCommand +frame.element=scrollbarslider +interior=false +frame.left=5 +frame.right=5 +frame.top=5 +frame.bottom=5 +indicator.element=grip +indicator.size=12 + +[ScrollbarGroove] +inherits=PanelButtonCommand +interior=false +frame=false + +[Menu] +inherits=PanelButtonCommand +frame.top=8 +frame.bottom=8 +frame.left=8 +frame.right=8 +frame.element=menu +interior.element=menu +text.normal.color=#dedede +text.shadow=false +text.bold=false + +[MenuItem] +inherits=PanelButtonCommand +frame=true +frame.element=menuitem +interior.element=menuitem +indicator.element=menuitem +text.normal.color=#dedede +text.focus.color=#dedede +text.margin.top=0 +text.margin.bottom=0 +text.margin.left=6 +text.margin.right=6 +frame.top=4 +frame.bottom=4 +frame.left=12 +frame.right=12 +text.bold=false +frame.expansion=0 + +[MenuBar] +inherits=PanelButtonCommand +frame.element=menubar +interior.element=menubar +frame.bottom=0 +text.normal.color=#dfdfdf +text.focus.color=#ffffff +text.press.color=#ffffff +text.toggle.color=#ffffff +frame.expansion=0 +text.bold=false + +[MenuBarItem] +inherits=PanelButtonCommand +interior=true +interior.element=menubaritem +frame.element=menubaritem +frame.top=2 +frame.bottom=2 +frame.left=2 +frame.right=2 +text.margin.left=4 +text.margin.right=4 +text.margin.top=0 +text.margin.bottom=0 +text.normal.color=#dfdfdf +text.focus.color=#ffffff +text.press.color=#ffffff +text.toggle.color=#ffffff +text.bold=false +min_width=+0.3font +min_height=+0.3font +frame.expansion=0 + +[TitleBar] +inherits=PanelButtonCommand +frame=false +text.margin.top=2 +text.margin.bottom=2 +text.margin.left=2 +text.margin.right=2 +interior.element=titlebar +indicator.size=16 +indicator.element=mdi +text.normal.color=#787878 +text.focus.color=#dfdfdf +text.bold=false +text.italic=true +frame.expansion=0 + +[ComboBox] +inherits=PanelButtonCommand +frame.element=combo +interior.element=combo +frame.top=6 +frame.bottom=6 +frame.left=6 +frame.right=6 +text.margin.top=2 +text.margin.bottom=2 +text.margin.left=2 +text.margin.right=2 +text.focus.color=white +text.press.color=#dfdfdf +text.toggle.color=white + +[GroupBox] +inherits=GenericFrame +frame=false +text.shadow=0 +text.margin=0 +text.normal.color=#dfdfdf +text.focus.color=white +text.bold=false +frame.expansion=0 + +[TabBarFrame] +inherits=GenericFrame +frame=false +frame.element=tabBarFrame +interior=false +frame.top=0 +frame.bottom=0 +frame.left=0 +frame.right=0 + +[ToolTip] +inherits=GenericFrame +frame.top=6 +frame.bottom=6 +frame.left=6 +frame.right=6 +interior=true +text.shadow=0 +text.margin=6 +interior.element=tooltip +frame.element=tooltip +frame.expansion=6 + +[StatusBar] +inherits=GenericFrame +frame=false +interior=false + +[Window] +interior=true +interior.element=window +frame=true +frame.element=window +frame.bottom=10 +frame.top=10 diff --git a/kvantum/dot-config/Kvantum/KvLibadwaita/KvLibadwaitaDark.svg b/kvantum/dot-config/Kvantum/KvLibadwaita/KvLibadwaitaDark.svg new file mode 100644 index 0000000..2d17c81 --- /dev/null +++ b/kvantum/dot-config/Kvantum/KvLibadwaita/KvLibadwaitaDark.svg @@ -0,0 +1,6804 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="450" + height="1e3" + version="1" + id="svg1810" + sodipodi:docname="KvLibadwaitaDark.svg" + inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <sodipodi:namedview + id="namedview1812" + pagecolor="#525252" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageshadow="2" + inkscape:pageopacity="0" + inkscape:pagecheckerboard="0" + showgrid="true" + inkscape:zoom="6.7641601" + inkscape:cx="69.188191" + inkscape:cy="680.12879" + inkscape:window-width="1904" + inkscape:window-height="995" + inkscape:window-x="35" + inkscape:window-y="32" + inkscape:window-maximized="0" + inkscape:current-layer="svg1810" + inkscape:snap-bbox="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-nodes="true" + showguides="false"> + <inkscape:grid + type="xygrid" + id="grid51489" /> + </sodipodi:namedview> + <defs + id="defs18"> + <linearGradient + id="linearGradient12118"> + <stop + stop-opacity=".5098" + offset="0" + id="stop12114" + style="stop-opacity:1" /> + <stop + stop-opacity="0" + offset="1" + id="stop12116" /> + </linearGradient> + <linearGradient + id="linearGradient11751"> + <stop + stop-opacity=".5098" + offset="0" + id="stop11747" + style="stop-opacity:1" /> + <stop + stop-opacity="0" + offset="1" + id="stop11749" /> + </linearGradient> + <linearGradient + id="linearGradient10473"> + <stop + stop-opacity=".5098" + offset="0" + id="stop10469" + style="stop-opacity:1;stop-color:#090000" /> + <stop + stop-opacity="0" + offset="1" + id="stop10471" /> + </linearGradient> + <linearGradient + id="linearGradient3200"> + <stop + stop-opacity=".5098" + offset="0" + id="stop3196" + style="stop-opacity:1" /> + <stop + stop-opacity="0" + offset="1" + id="stop3198" /> + </linearGradient> + <linearGradient + id="linearGradient3099"> + <stop + stop-opacity=".5098" + offset="0" + id="stop3095" + style="stop-opacity:1" /> + <stop + stop-opacity="0" + offset="1" + id="stop3097" /> + </linearGradient> + <style + type="text/css" + id="current-color-scheme">.ColorScheme-Highlight { + color:#31363b; + stop-color:#31363b; + } + .ColorScheme-Background { + color:#eff0f1; + stop-color:#eff0f1; + } + .ColorScheme-Highlight { + color:#6e6e6e; + stop-color:#6e6e6e; + } + .ColorScheme-ViewText { + color:#31363b; + stop-color:#31363b; + } + .ColorScheme-ViewBackground { + color:#fcfcfc; + stop-color:#fcfcfc; + } + .ColorScheme-ViewHover { + color:#93cee9; + stop-color:#93cee9; + } + .ColorScheme-ViewFocus{ + color:#3daee9; + stop-color:#3daee9; + } + .ColorScheme-ButtonText { + color:#31363b; + stop-color:#31363b; + } + .ColorScheme-ButtonBackground { + color:#eff0f1; + stop-color:#eff0f1; + } + .ColorScheme-ButtonHover { + color:#93cee9; + stop-color:#797979; + } + .ColorScheme-ButtonFocus{ + color:#6e6e6e; + stop-color:#6e6e6e; + }</style> + <linearGradient + id="color-primary"> + <stop + stop-color="#6e6e6e" + offset="1" + id="stop22" /> + </linearGradient> + <linearGradient + id="linearGradient4646-3" + x1="82.193504" + x2="82.193504" + y1="-970.92798" + y2="-952.35626" + gradientTransform="matrix(0.71429,0,0,0.69999,52.42,-206.08004)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" /> + <linearGradient + id="linearGradient2256"> + <stop + stop-opacity=".5098" + offset="0" + id="stop3-3" /> + <stop + stop-opacity="0" + offset="1" + id="stop5-6" /> + </linearGradient> + <radialGradient + id="radialGradient4192-7" + cx="8.3340855" + cy="54.288544" + r="9" + gradientTransform="matrix(-1.4444439,-9.0112584e-8,-3.8579298e-8,1.4444446,289.03812,497.58321)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" + fx="8.3340855" + fy="54.288544" /> + <radialGradient + id="radialGradient5885" + cx="8.3340855" + cy="54.288544" + r="9" + gradientTransform="matrix(-1.4444439,-9.0112584e-8,-3.8579298e-8,1.4444446,289.03812,497.58321)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" + fx="8.3340855" + fy="54.288544" /> + <radialGradient + id="radialGradient5893" + cx="8.3340855" + cy="54.288544" + r="9" + gradientTransform="matrix(-1.4444439,-9.0112584e-8,-3.8579298e-8,1.4444446,289.03812,497.58321)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" + fx="8.3340855" + fy="54.288544" /> + <radialGradient + id="radialGradient5901" + cx="8.3340855" + cy="54.288544" + r="9" + gradientTransform="matrix(-1.4444439,-9.0112584e-8,-3.8579298e-8,1.4444446,289.03812,497.58321)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" + fx="8.3340855" + fy="54.288544" /> + <radialGradient + id="radialGradient5909" + cx="8.3340855" + cy="54.288544" + r="9" + gradientTransform="matrix(-1.4444439,-9.0112584e-8,-3.8579298e-8,1.4444446,289.03812,497.58321)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" + fx="8.3340855" + fy="54.288544" /> + <linearGradient + id="linearGradient4863-5" + x1="42.667" + x2="42.667" + y1="-472" + y2="-464" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient2256" + gradientTransform="matrix(1,0,0,0.66666667,0,-156.66667)" /> + <radialGradient + id="radialGradient4839-3" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(0,-5.3334,5.3334,0,-2521,610.66)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient2256" /> + <radialGradient + id="radialGradient2873" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(0,-5.3334,5.3334,0,-2521,610.66)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient2256" /> + <radialGradient + id="radialGradient2881" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(0,-5.3334,5.3334,0,-2521,610.66)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient2256" /> + <radialGradient + id="radialGradient2889" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(0,-5.3334,5.3334,0,-2521,610.66)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient2256" /> + <radialGradient + id="radialGradient2897" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(0,-5.3334,5.3334,0,-2521,610.66)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient2256" /> + <radialGradient + id="radialGradient4839-3-3" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(-4.2691698e-4,-0.7217626,0.77954413,-4.6109111e-4,-347.8235,491.98367)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient3200" + fx="26" + fy="477" /> + <radialGradient + id="radialGradient2006" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(0,-5.3334,5.3334,0,-2521,610.66)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient2256" /> + <radialGradient + id="radialGradient2021" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(0,-5.3334,5.3334,0,-2521,610.66)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient2256" /> + <radialGradient + id="radialGradient2045" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(0,-5.3334,5.3334,0,-2521,610.66)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient2256" /> + <radialGradient + id="radialGradient2061" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(0,-5.3334,5.3334,0,-2521,610.66)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient2256" /> + <radialGradient + id="radialGradient4839-3-3-9" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(-5.0269508e-4,-0.77731213,0.72399127,-4.6821333e-4,-321.32283,493.43135)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient12118" + fx="26" + fy="477" /> + <radialGradient + id="radialGradient4839-3-3-9-7" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(-0.00176626,-0.77730671,0.8906527,-0.00202381,-400.78747,494.17324)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient3200" + fx="26" + fy="477" /> + <radialGradient + id="radialGradient4839-3-3-93" + cx="26.000006" + cy="477" + r="4.5" + gradientTransform="matrix(-5.3209764e-4,-0.8884228,0.77955612,-4.6689413e-4,-347.82646,496.3196)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient11751" + fx="26.000006" + fy="477" /> + <radialGradient + id="radialGradient4839-3-3-61" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(-4.3187e-4,-0.8328729,0.89065727,-4.61825e-4,-400.82432,494.87288)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient12118" + fx="26" + fy="477" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient12118" + id="linearGradient2345" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.66666667,0,-156.66667)" + x1="42.666775" + y1="-472.99997" + x2="42.666786" + y2="-467.37497" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient12118" + id="linearGradient8752" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.66666667,0,-156.66667)" + x1="42.666729" + y1="-473" + x2="42.666729" + y2="-467" /> + <radialGradient + id="radialGradient4839-3-3-9-7-4" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(-4.22305e-4,-0.88841997,1.0017664,-4.761775e-4,-453.82362,496.32396)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient12118" + fx="26" + fy="477" /> + <radialGradient + id="radialGradient4839-3-3-6" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(-4.3187e-4,-0.8328729,0.89065727,-4.61825e-4,-400.82432,494.87288)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient12118" + fx="26" + fy="477" /> + <radialGradient + id="radialGradient4839-3-3-9-7-0" + cx="26" + cy="477" + r="4.5" + gradientTransform="matrix(-4.22305e-4,-0.88841997,1.0017664,-4.761775e-4,-453.82362,496.32396)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient12118" + fx="26" + fy="477" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient10473" + id="linearGradient8671" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.66666667,0,-156.66667)" + x1="42.666637" + y1="-473" + x2="42.666622" + y2="-466.25" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient12118" + id="linearGradient8515" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.66666667,0,-156.66667)" + x1="42.666729" + y1="-472.99997" + x2="42.666729" + y2="-466.99997" /> + </defs> + <defs + id="defs24"> + <linearGradient + id="linearGradient4465"> + <stop + stop-opacity=".5098" + offset="0" + id="stop3" /> + <stop + stop-opacity="0" + offset="1" + id="stop5" /> + </linearGradient> + <radialGradient + id="radialGradient4192" + cx="8.3340855" + cy="54.288544" + r="9" + gradientTransform="matrix(-1.4444439,-9.0112584e-8,-3.8579298e-8,1.4444446,289.03812,497.58321)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" + fx="8.3340855" + fy="54.288544" /> + <linearGradient + id="linearGradient4646" + x1="82.193504" + x2="82.193504" + y1="-970.92798" + y2="-952.35626" + gradientTransform="matrix(0.71429,0,0,0.69999,52.42,-206.08004)" + gradientUnits="userSpaceOnUse" + xlink:href="#linearGradient4465" /> + </defs> + <g + id="dial-notches" + transform="translate(-76.5 75.741)" + fill="#fff"> + <rect + x="202.5" + y="667.5" + width="45" + height="45" + opacity="0" + id="rect26" /> + <g + fill="#5a5a5a" + id="g32"> + <path + d="m214.62 670-1.75 1 2.25 3.9063 1.75-1zm20.75 0-2.25 3.9063 1.75 1 2.25-3.9063zm-32.875 19v2h4.5v-2zm40.5 0v2h4.5v-2zm-27.875 16.094-2.25 3.9062 1.75 1 2.25-3.9062zm19.75 0-1.75 1 2.25 3.9062 1.75-1z" + id="path28" /> + <path + d="m222.91 667.59-0.5 0.0625 0.3125 2.9688 0.5-0.0312-0.3125-3zm4.1875 0-0.3125 3 0.5 0.0312 0.3125-2.9688-0.5-0.0625zm-8.8125 0.9375-0.4688 0.1562 0.9375 2.8438 0.4688-0.1562zm13.438 0-0.9375 2.8438 0.4688 0.1562 0.9375-2.8438zm-21.594 4.5938-0.375 0.3125 2.0312 2.25 0.3438-0.3438-2-2.2188zm29.75 0-2 2.2188 0.3438 0.3438 2.0312-2.25-0.375-0.3125zm-32.938 3.4375-0.2812 0.4062 2.4062 1.7812 0.3125-0.4062zm36.125 0-2.4375 1.7812 0.3125 0.4062 2.4062-1.7812zm-38.5 4.0625-0.2188 0.4375 2.75 1.25 0.1875-0.4688-2.7188-1.2188zm40.875 0-2.7188 1.2188 0.1875 0.4688 2.75-1.25-0.2188-0.4375zm-42.406 4.4375-0.0937 0.5 2.9375 0.625 0.0937-0.5zm43.938 0-2.9375 0.625 0.0937 0.5 2.9375-0.625zm-41.094 8.75-2.9375 0.625 0.0937 0.5 2.9375-0.625zm38.25 0-0.0937 0.5 2.9375 0.625 0.0937-0.5zm-37.031 3.875-2.75 1.25 0.2188 0.4375 2.7188-1.2188-0.1875-0.4688zm35.812 0-0.1875 0.4688 2.7188 1.2188 0.2188-0.4375-2.75-1.25zm-33.844 3.5625-2.4062 1.7812 0.2812 0.4062 2.4375-1.7812zm31.875 0-0.3125 0.4062 2.4375 1.7812 0.2812-0.4062zm-29.156 3.0625-2.0312 2.25 0.375 0.3125 2-2.2188-0.3438-0.3438zm26.438 0-0.3438 0.3438 2 2.2188 0.375-0.3125-2.0312-2.25z" + id="path30" /> + </g> + </g> + <circle + id="dial-handle" + cx="98" + cy="783.99" + r="5" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + <g + id="button-default-indicator" + transform="translate(-367.5 -2.5001)"> + <rect + x="375" + y="87.5" + width="25" + height="25" + opacity="0" + id="rect36" /> + <path + d="m396.25 86.25-17.5 17.5h17.5z" + opacity=".001" + id="path38" /> + </g> + <g + id="splitter-grip-normal" + transform="matrix(1.1429 0 0 1 -38.286 -279.01)" + opacity=".001"> + <rect + x="275" + y="1039" + width="7" + height="32" + opacity="0" + id="rect44" /> + <rect + x="277.63" + y="1039" + width="1.75" + height="32" + fill="#acb1bc" + id="rect46" /> + </g> + <rect + id="grip-focused" + x="336" + y="822.26" + width="10" + height="10" + opacity="0" /> + <rect + id="grip-pressed" + x="351" + y="822.26" + width="10" + height="10" + opacity="0" /> + <rect + id="slider-tick-normal" + x="210" + y="789.99" + width="5" + height="1" + fill="#5a5a5a" /> + <g + id="resize-grip-normal"> + <rect + x="460" + y="0" + width="24" + height="24" + opacity="0" + id="rect52" + style="stroke-width:0.96" /> + <path + d="M 484,7.9999968 468,24 h 16 z" + id="path54" + style="opacity:0.1;fill:#ffffff;stroke-width:0.914286" /> + </g> + <path + id="expand-progress-pattern-normal" + d="m 0,170 v 10 h 10 v -10 z" + style="fill:#3584e4;fill-opacity:1" /> + <path + id="expand-progress-normal" + d="m 0,180 v 10 h 10 v -10 z" + style="fill:#ffffff;opacity:0.25" /> + <rect + id="grip-normal" + x="323" + y="822.26" + width="10" + height="10" + opacity="0" /> + <rect + id="expand-lineedit-normal" + x="256" + y="21" + width="10" + height="10" + style="opacity:0.1;fill:#ffffff" /> + <g + id="splitter-grip-focused" + transform="matrix(1.1429 0 0 1 -10.286 -279.01)" + opacity=".001"> + <rect + x="275" + y="1039" + width="7" + height="32" + opacity="0" + id="rect66" /> + <rect + x="277.63" + y="1039" + width="1.75" + height="32" + fill="#5a616e" + id="rect68" /> + </g> + <use + id="splitter-grip-pressed" + transform="translate(30)" + width="100%" + height="100%" + opacity=".001" + xlink:href="#splitter-grip-focused" /> + <rect + id="expand-combo-normal" + x="10" + y="20" + width="10" + height="10" + style="fill:#ffffff;opacity:0.1" /> + <g + id="mdi-close-normal" + transform="translate(-37 -83.03)"> + <rect + x="54" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect73" /> + <path + d="m65.002 432.02a1 1 0 0 0-0.70703 0.29297l-2.293 2.293-2.2832-2.2832a1 1 0 0 0-0.01-0.01 1 1 0 0 0-0.70117-0.28906l-0.01 0.0137a1 1 0 0 0-1 1 1 1 0 0 0 0.29297 0.70703l2.293 2.293-2.293 2.293a1 1 0 0 0-0.28906 0.69922 1 1 0 0 0 1 1 1 1 0 0 0 0.70703-0.29297l2.293-2.293 2.2832 2.2832a1 1 0 0 0 0.7168 0.30274 1 1 0 0 0 1-1 1 1 0 0 0-0.29297-0.70703l-2.3008-2.2988 2.2832-2.2832a1 1 0 0 0 0.31055-0.72071 1 1 0 0 0-1-1z" + id="path75" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="mdi-minimize-normal" + transform="translate(-37 -83.03)"> + <rect + x="72" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect78" /> + <rect + x="76" + y="435.03" + width="8" + height="2" + rx="1" + ry="1" + id="rect80" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="mdi-maximize-normal" + transform="translate(-37 -83.03)"> + <rect + x="90" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect83" /> + <path + d="m98 432.03c-0.554 0-1 0.446-1 1v2h-2c-0.554 0-1 0.446-1 1s0.446 1 1 1h2v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2h2c0.554 0 1-0.446 1-1s-0.446-1-1-1h-2v-2c0-0.554-0.446-1-1-1z" + id="path85" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="mdi-restore-normal" + transform="translate(-37 -83.03)"> + <rect + x="108" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect88" /> + <path + d="m116 432.03a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4zm0 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2z" + id="path90" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="mdi-close-focused" + transform="translate(-37 -66.03)"> + <rect + x="54" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect93" /> + <path + d="m65.002 432.02a1 1 0 0 0-0.70703 0.29297l-2.293 2.293-2.2832-2.2832a1 1 0 0 0-0.01-0.01 1 1 0 0 0-0.70117-0.28906l-0.01 0.0137a1 1 0 0 0-1 1 1 1 0 0 0 0.29297 0.70703l2.293 2.293-2.293 2.293a1 1 0 0 0-0.28906 0.69922 1 1 0 0 0 1 1 1 1 0 0 0 0.70703-0.29297l2.293-2.293 2.2832 2.2832a1 1 0 0 0 0.7168 0.30274 1 1 0 0 0 1-1 1 1 0 0 0-0.29297-0.70703l-2.3008-2.2988 2.2832-2.2832a1 1 0 0 0 0.31055-0.72071 1 1 0 0 0-1-1z" + fill="#f04a50" + id="path95" /> + </g> + <g + id="mdi-minimize-focused" + transform="translate(-37 -66.03)"> + <rect + x="72" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect98" /> + <rect + x="76" + y="435.03" + width="8" + height="2" + rx="1" + ry="1" + fill="#f04a50" + id="rect100" /> + </g> + <g + id="mdi-maximize-focused" + transform="translate(-37 -66.03)"> + <rect + x="90" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect103" /> + <path + d="m98 432.03c-0.554 0-1 0.446-1 1v2h-2c-0.554 0-1 0.446-1 1s0.446 1 1 1h2v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2h2c0.554 0 1-0.446 1-1s-0.446-1-1-1h-2v-2c0-0.554-0.446-1-1-1z" + fill="#f04a50" + id="path105" /> + </g> + <g + id="mdi-restore-focused" + transform="translate(-37 -66.03)"> + <rect + x="108" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect108" /> + <path + d="m116 432.03a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4zm0 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2z" + fill="#f04a50" + id="path110" /> + </g> + <g + id="mdi-close-pressed" + transform="translate(-37 -49.03)"> + <rect + x="54" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect113" /> + <path + d="m65.002 432.02a1 1 0 0 0-0.70703 0.29297l-2.293 2.293-2.2832-2.2832a1 1 0 0 0-0.01-0.01 1 1 0 0 0-0.70117-0.28906l-0.01 0.0137a1 1 0 0 0-1 1 1 1 0 0 0 0.29297 0.70703l2.293 2.293-2.293 2.293a1 1 0 0 0-0.28906 0.69922 1 1 0 0 0 1 1 1 1 0 0 0 0.70703-0.29297l2.293-2.293 2.2832 2.2832a1 1 0 0 0 0.7168 0.30274 1 1 0 0 0 1-1 1 1 0 0 0-0.29297-0.70703l-2.3008-2.2988 2.2832-2.2832a1 1 0 0 0 0.31055-0.72071 1 1 0 0 0-1-1z" + fill="#4285f4" + id="path115" /> + </g> + <g + id="mdi-minimize-pressed" + transform="translate(-37 -49.03)"> + <rect + x="72" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect118" /> + <rect + x="76" + y="435.03" + width="8" + height="2" + rx="1" + ry="1" + fill="#4285f4" + id="rect120" /> + </g> + <g + id="mdi-maximize-pressed" + transform="translate(-37 -49.03)"> + <rect + x="90" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect123" /> + <path + d="m98 432.03c-0.554 0-1 0.446-1 1v2h-2c-0.554 0-1 0.446-1 1s0.446 1 1 1h2v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2h2c0.554 0 1-0.446 1-1s-0.446-1-1-1h-2v-2c0-0.554-0.446-1-1-1z" + fill="#4285f4" + id="path125" /> + </g> + <g + id="mdi-restore-pressed" + transform="translate(-37 -49.03)"> + <rect + x="108" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect128" /> + <path + d="m116 432.03a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4zm0 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2z" + fill="#4285f4" + id="path130" /> + </g> + <g + id="mdi-close-disabled" + transform="translate(-37 -32.03)"> + <rect + x="54" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect133" /> + <path + d="m65.002 432.02a1 1 0 0 0-0.70703 0.29297l-2.293 2.293-2.2832-2.2832a1 1 0 0 0-0.01-0.01 1 1 0 0 0-0.70117-0.28906l-0.01 0.0137a1 1 0 0 0-1 1 1 1 0 0 0 0.29297 0.70703l2.293 2.293-2.293 2.293a1 1 0 0 0-0.28906 0.69922 1 1 0 0 0 1 1 1 1 0 0 0 0.70703-0.29297l2.293-2.293 2.2832 2.2832a1 1 0 0 0 0.7168 0.30274 1 1 0 0 0 1-1 1 1 0 0 0-0.29297-0.70703l-2.3008-2.2988 2.2832-2.2832a1 1 0 0 0 0.31055-0.72071 1 1 0 0 0-1-1z" + id="path135" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="mdi-minimize-disabled" + transform="translate(-37 -32.03)"> + <rect + x="72" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect138" /> + <rect + x="76" + y="435.03" + width="8" + height="2" + rx="1" + ry="1" + id="rect140" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="mdi-maximize-disabled" + transform="translate(-37 -32.03)"> + <rect + x="90" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect143" /> + <path + d="m98 432.03c-0.554 0-1 0.446-1 1v2h-2c-0.554 0-1 0.446-1 1s0.446 1 1 1h2v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2h2c0.554 0 1-0.446 1-1s-0.446-1-1-1h-2v-2c0-0.554-0.446-1-1-1z" + id="path145" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="mdi-restore-disabled" + transform="translate(-37 -32.03)"> + <rect + x="108" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect148" /> + <path + d="m116 432.03a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4zm0 2a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2z" + id="path150" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="mdi-menu-normal" + transform="translate(-37 -83.03)"> + <rect + x="135" + y="428.03" + width="16" + height="16" + opacity=".001" + id="rect153" /> + <path + d="m140 432.03c-0.554 0-1 0.446-1 1s0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-6zm0 3c-0.554 0-1 0.446-1 1s0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-6zm0 3c-0.554 0-1 0.446-1 1s0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-6z" + id="path155" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="progress-normal-lefttyry" + transform="translate(-8 -9)"> + <rect + x="26" + y="162" + width="8" + height="8" + opacity=".001" + id="rect161" /> + </g> + <rect + id="expand-tbutton-normal" + x="190" + y="20" + width="8" + height="8" + style="fill:#ffffff;opacity:0.1" /> + <g + id="progress-normal" + transform="matrix(1.5 0 0 1 20 17)" + style="fill:#616161;fill-opacity:1"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect165" + style="fill:#616161;opacity:1;fill-opacity:1" /> + </g> + <rect + id="progress-pattern-normal-top" + x="32" + y="167" + width="12" + height="12" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="progress-pattern-normal-bottom" + x="32" + y="187" + width="12" + height="12" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="progress-pattern-normal-topleft" + x="20" + y="167" + width="12" + height="12" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="progress-pattern-normal-topright" + x="44" + y="167" + width="12" + height="12" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="progress-pattern-normal-bottomleft" + x="20" + y="187" + width="12" + height="12" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="progress-pattern-normal-bottomright" + x="44" + y="187" + width="12" + height="12" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="progress-normal-top" + x="71" + y="167" + width="12" + height="12" + style="fill:#616161;opacity:1;fill-opacity:1" /> + <rect + id="progress-normal-bottom" + x="71" + y="187" + width="12" + height="12" + style="fill:#616161;opacity:1;fill-opacity:1" /> + <rect + id="progress-normal-topleft" + x="59" + y="167" + width="12" + height="12" + style="fill:#616161;opacity:1;fill-opacity:1" /> + <rect + id="progress-normal-topright" + x="83" + y="167" + width="12" + height="12" + style="fill:#616161;opacity:1;fill-opacity:1" /> + <rect + id="progress-normal-bottomleft" + x="59" + y="187" + width="12" + height="12" + style="fill:#616161;opacity:1;fill-opacity:1" /> + <rect + id="progress-normal-bottomright" + x="83" + y="187" + width="12" + height="12" + style="fill:#616161;opacity:1;fill-opacity:1" /> + <rect + id="progress-pattern-disabled-top" + x="110" + y="167" + width="12" + height="12" + style="fill:#2e2e32;opacity:1;fill-opacity:1" /> + <rect + id="progress-pattern-disabled-bottom" + x="110" + y="187" + width="12" + height="12" + style="fill:#2e2e32;opacity:1;fill-opacity:1" /> + <rect + id="progress-pattern-disabled-topleft" + x="98" + y="167" + width="12" + height="12" + style="fill:#2e2e32;opacity:1;fill-opacity:1" /> + <rect + id="progress-pattern-disabled-topright" + x="122" + y="167" + width="12" + height="12" + style="fill:#2e2e32;opacity:1;fill-opacity:1" /> + <rect + id="progress-pattern-disabled-bottomleft" + x="98" + y="187" + width="12" + height="12" + style="fill:#2e2e32;opacity:1;fill-opacity:1" /> + <rect + id="progress-pattern-disabled-bottomright" + x="122" + y="187" + width="12" + height="12" + style="fill:#2e2e32;opacity:1;fill-opacity:1" /> + <g + id="progress-pattern-normal" + transform="matrix(1.5 0 0 1 -19 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect186" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + </g> + <g + id="progress-pattern-normal-left" + transform="matrix(1.5 0 0 1 -31 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect189" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + </g> + <g + id="progress-pattern-normal-right" + transform="matrix(1.5 0 0 1 -7 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect192" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + </g> + <g + id="progress-normal-left" + transform="matrix(1.5 0 0 1 8 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect195" + style="fill:#616161;opacity:1;fill-opacity:1" /> + </g> + <g + id="progress-normal-right" + transform="matrix(1.5 0 0 1 32 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect198" + style="fill:#616161;opacity:1;fill-opacity:1" /> + </g> + <g + id="progress-pattern-disabled-left" + transform="matrix(1.5 0 0 1 47 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect201" + style="fill:#2e2e32;opacity:1;fill-opacity:1" /> + </g> + <g + id="progress-pattern-disabled" + transform="matrix(1.5 0 0 1 59 17)" + style="fill:#2e2e32;fill-opacity:1"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect204" + style="fill:#2e2e32;opacity:1;fill-opacity:1" /> + </g> + <g + id="progress-pattern-disabled-right" + transform="matrix(1.5 0 0 1 71 17)"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect207" + style="fill:#2e2e32;opacity:1;fill-opacity:1" /> + </g> + <rect + id="itemview-pressed-top" + x="52" + y="930" + width="8" + height="4" + style="opacity:1;fill:#616161;fill-opacity:1" /> + <rect + id="itemview-pressed-bottom" + x="52" + y="942" + width="8" + height="4" + style="opacity:1;fill:#616161;fill-opacity:1" /> + <path + id="itemview-pressed" + d="m 52,934 h 8 v 8 h -8 z" + style="opacity:1;fill:#616161;fill-opacity:1;stroke-width:0.999999" /> + <path + id="itemview-pressed-topright" + d="m 60,930 c 4,0 4,4 4,4 h -4 z" + style="opacity:1;fill:#616161;fill-opacity:1" /> + <path + id="itemview-pressed-bottomright" + d="m 60,942 h 4 c 0,0 0,4 -4,4 z" + style="opacity:1;fill:#616161;fill-opacity:1" /> + <rect + id="itemview-pressed-right" + x="60" + y="934" + width="4" + height="8" + style="opacity:1;fill:#616161;fill-opacity:1" /> + <rect + id="itemview-pressed-left" + x="48" + y="934" + width="4" + height="8" + style="opacity:1;fill:#616161;fill-opacity:1" /> + <path + id="itemview-pressed-topleft" + d="m 52,930 v 4 h -4 c 0,0 0,-4 4,-4 z" + style="opacity:1;fill:#616161;fill-opacity:1" /> + <path + id="itemview-pressed-bottomleft" + d="m 48,942 h 4 v 4 c -4,0 -4,-4 -4,-4 z" + style="opacity:1;fill:#616161;fill-opacity:1" /> + <rect + id="itemview-toggled-top" + x="71" + y="930" + width="8" + height="4" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <rect + id="itemview-toggled-bottom" + x="71" + y="942" + width="8" + height="4" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <path + id="itemview-toggled" + d="m 71,934 h 8 v 8 h -8 z" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <rect + id="itemview-toggled-right" + x="79" + y="934" + width="4" + height="8" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <path + id="itemview-toggled-topright" + d="m 79,930 c 4,0 4,4 4,4 h -4 z" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <path + id="itemview-toggled-bottomright" + d="m 79,942 h 4 c 0,0 0,4 -4,4 z" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <rect + id="itemview-toggled-left" + x="67" + y="934" + width="4" + height="8" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <path + id="itemview-toggled-topleft" + d="m 71,930 v 4 h -4 c 0,0 0,-4 4,-4 z" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <path + id="itemview-toggled-bottomleft" + d="m 67,942 h 4 v 4 c -4,0 -4,-4 -4,-4 z" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <rect + id="itemview-focused-top" + x="33" + y="930" + width="8" + height="4" + style="opacity:1;fill:#3d3d3d;fill-opacity:1" /> + <rect + id="itemview-focused-bottom" + x="33" + y="942" + width="8" + height="4" + style="opacity:1;fill:#3d3d3d;fill-opacity:1" /> + <path + id="itemview-focused" + d="m 33,934 h 8 v 8 h -8 z" + style="opacity:1;fill:#3d3d3d;fill-opacity:1" /> + <rect + id="itemview-focused-right" + x="41" + y="934" + width="4" + height="8" + style="opacity:1;fill:#3d3d3d;fill-opacity:1" /> + <path + id="itemview-focused-topright" + d="m 41,930 c 4,0 4,4 4,4 h -4 z" + style="opacity:1;fill:#3d3d3d;fill-opacity:1" /> + <path + id="itemview-focused-bottomright" + d="m 41,942 h 4 c 0,0 0,4 -4,4 z" + style="opacity:1;fill:#3d3d3d;fill-opacity:1" /> + <rect + id="itemview-focused-left" + x="29" + y="934" + width="4" + height="8" + style="opacity:1;fill:#3d3d3d;fill-opacity:1" /> + <path + id="itemview-focused-topleft" + d="m 33,930.00001 v 4 h -4 c 0,0 0,-4 4,-4 z" + style="opacity:1;fill:#3d3d3d;fill-opacity:1" /> + <path + id="itemview-focused-bottomleft" + d="m 29,942 h 4 v 4 c -4,0 -4,-4 -4,-4 z" + style="opacity:1;fill:#3d3d3d;fill-opacity:1" /> + <path + id="toolbar-handle" + d="m245 107a5 5 0 0 1-10 0 5 5 0 1 1 10 0z" + style="fill:#ffffff;opacity:0.15" /> + <path + id="menubaritem-focused-left" + d="m 117,946 v -17.999 h -6 l 3.6e-4,18 z" + style="opacity:1;fill:#414141;fill-opacity:1" /> + <path + id="menubaritem-focused-topleft" + d="m 117,921 c -3.2999,-10e-5 -6,2.7 -6,5.9999 h 6 z" + style="opacity:1;fill:#414141;fill-opacity:1" /> + <path + id="menubaritem-focused" + d="m 118,928 v 18 h 17.99999 v -18 z" + style="opacity:1;fill:#414141;fill-opacity:1" /> + <path + id="menubaritem-focused-right" + d="m 136.99999,946 v -17.999 h 6 l -3.7e-4,18 z" + style="opacity:1;fill:#414141;fill-opacity:1" /> + <path + id="menubaritem-focused-topright" + d="m 136.99999,921 c 3.29991,-10e-5 6,2.7 6,5.9999 h -6 z" + style="opacity:1;fill:#414141;fill-opacity:1" /> + <path + id="menubaritem-focused-top" + d="m 118,927 h 17.99899 v -6 h -18 z" + style="opacity:1;fill:#414141;fill-opacity:1" /> + <path + id="menubaritem-focused-bottom" + d="M 135.99999,947 H 118.001 v 6 h 18 z" + style="opacity:1;fill:#414141;fill-opacity:1" /> + <path + id="menubaritem-focused-bottomleft" + d="m 117,953 c -3.2999,0 -5.9999,-2.7 -5.9999,-5.9999 L 117,947 Z" + style="opacity:1;fill:#414141;fill-opacity:1" /> + <path + id="menubaritem-focused-bottomright" + d="m 136.99999,953 c 3.29991,0 5.9999,-2.7 5.9999,-5.9999 L 136.99999,947 Z" + style="opacity:1;fill:#414141;fill-opacity:1" /> + <path + id="titlebar-focused" + d="m 220,354 v 32 h 32 v -32 z" + fill="#2c2c2c" + style="fill:#2e2e32;fill-opacity:1" /> + <path + id="titlebar-normal" + d="m 220,395 v 32 h 32 v -32 z" + fill="#2c2c2c" + style="fill:#1d1d20;fill-opacity:1" /> + <path + id="header-pressed" + d="m146 104.88h-6v6h6z" + style="opacity:0.2;fill:#ffffff" /> + <path + id="header-toggled" + d="m124 104.88h-6v6h6z" + style="fill:#ffffff;opacity:0.15" /> + <path + id="header-focused" + d="m108 104.88h-6v6h6z" + style="fill:#ffffff;opacity:0.1" /> + <g + id="focus-left" + transform="translate(2,-19)"> + <path + d="m 183,121 v 10 h 2 v -10 z" + id="path252" + style="fill:#ffffff;opacity:0.1" /> + </g> + <g + id="focus-right" + transform="translate(0.00456,-18.996)"> + <path + d="m 197,121 v 10 h 2 v -10 z" + id="path255" + style="fill:#ffffff;opacity:0.1" /> + </g> + <g + id="focus-top" + transform="translate(0.99568,-17.996)"> + <path + d="m 186,118 v 2 h 10 v -2 z" + id="path258" + style="fill:#ffffff;opacity:0.1" /> + </g> + <g + id="focus-bottom" + transform="translate(0.99568,-19.996)"> + <path + d="m 186,132 v 2 h 10 v -2 z" + id="path261" + style="fill:#ffffff;opacity:0.1" /> + </g> + <path + id="focus-bottomleft" + d="m 185.00436,111.996 h 2 v 2 c -2,0 -2,-2 -2,-2 z" + style="fill:#ffffff;opacity:0.1" /> + <path + id="focus-bottomright" + d="m 199,112 h -2 v 2 c 2,0 2,-2 2,-2 z" + style="fill:#ffffff;opacity:0.1" /> + <path + id="focus-topleft" + d="m 185.00436,101.996 h 2 v -2 c -2,0 -2,2 -2,2 z" + style="fill:#ffffff;opacity:0.1" /> + <path + id="focus-topright" + d="m 199,102 h -2 v -2 c 2,0 2,2 2,2 z" + style="fill:#ffffff;opacity:0.1" /> + <g + id="tarrow-right-normal" + transform="translate(-162.97 -247.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect274" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path276" + style="fill:#ffffff;fill-opacity:1;opacity:0.75" /> + </g> + <g + id="tarrow-right-focused" + transform="translate(-152.97 -247.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect279" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path281" + style="fill:#ffffff" /> + </g> + <g + id="tarrow-right-pressed" + transform="translate(-142.97 -247.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect284" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path286" + style="fill:#ffffff" /> + </g> + <g + id="tarrow-right-toggled" + transform="translate(-132.97 -247.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect289" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path291" + style="fill:#ffffff" /> + </g> + <g + id="tarrow-right-disabled" + transform="translate(-122.97 -247.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect294" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path296" + style="fill:#dfdfdf;fill-opacity:1;opacity:0.3" /> + </g> + <g + id="tarrow-left-normal" + transform="rotate(180 108.52 414.71)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect299" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path301" + style="fill:#ffffff;fill-opacity:1;opacity:0.75" /> + </g> + <g + id="tarrow-left-focused" + transform="rotate(180 113.52 414.71)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect304" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path306" + style="fill:#ffffff" /> + </g> + <g + id="tarrow-left-pressed" + transform="rotate(180 118.52 414.71)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect309" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path311" + style="fill:#ffffff" /> + </g> + <g + id="tarrow-left-toggled" + transform="rotate(180 123.52 414.71)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect314" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path316" + style="fill:#ffffff" /> + </g> + <g + id="tarrow-left-disabled" + transform="rotate(180 128.52 414.71)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect319" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path321" + style="fill:#dfdfdf;fill-opacity:1;opacity:0.3" /> + </g> + <g + id="tarrow-up-normal" + transform="rotate(-90 -4.2754 501.69)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect324" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path326" + style="fill:#ffffff;fill-opacity:1;opacity:0.75" /> + </g> + <g + id="tarrow-up-focused" + transform="rotate(-90 .72458 496.69)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect329" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path331" + style="fill:#ffffff" /> + </g> + <g + id="tarrow-up-pressed" + transform="rotate(-90 5.7246 491.69)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect334" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path336" + style="fill:#ffffff" /> + </g> + <g + id="tarrow-up-toggled" + transform="rotate(-90 10.725 486.69)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect339" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path341" + style="fill:#ffffff" /> + </g> + <g + id="tarrow-up-disabled" + transform="rotate(-90 15.725 481.69)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect344" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path346" + style="fill:#dfdfdf;fill-opacity:1;opacity:0.3" /> + </g> + <g + id="tarrow-down-normal" + transform="rotate(90 216.31 343.72)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect349" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path351" + style="fill:#ffffff;fill-opacity:1;opacity:0.75" /> + </g> + <g + id="tarrow-down-focused" + transform="rotate(90 221.31 348.72)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect354" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path356" + style="fill:#ffffff" /> + </g> + <g + id="tarrow-down-pressed" + transform="rotate(90 226.31 353.72)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect359" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path361" + style="fill:#ffffff" /> + </g> + <g + id="tarrow-down-toggled" + transform="rotate(90 231.31 358.72)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect364" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path366" + style="fill:#ffffff" /> + </g> + <g + id="tarrow-down-disabled" + transform="rotate(90 236.31 363.72)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect369" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path371" + style="fill:#dfdfdf;fill-opacity:1;opacity:0.3" /> + </g> + <g + id="arrow-right-normal" + transform="translate(-107.97 -247.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect374" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path376" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-right-focused" + transform="translate(-97.967 -247.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect379" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path381" + style="fill:#ffffff;opacity:1" /> + </g> + <g + id="arrow-right-pressed" + transform="translate(-87.967 -247.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect384" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path386" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-right-toggled" + transform="translate(-77.967 -247.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect389" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path391" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-right-disabled" + transform="translate(-67.967 -247.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect394" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path396" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="arrow-left-normal" + transform="rotate(180 136.02 414.71)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect399" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path401" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-left-focused" + transform="rotate(180 141.02 414.71)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect404" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path406" + style="fill:#ffffff;opacity:1" /> + </g> + <g + id="arrow-left-pressed" + transform="rotate(180 146.02 414.71)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect409" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path411" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-left-toggled" + transform="rotate(180 151.02 414.71)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect414" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path416" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-left-disabled" + transform="rotate(180 156.02 414.71)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect419" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path421" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="arrow-up-normal" + transform="rotate(-90 23.225 474.19)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect424" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path426" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-up-focused" + transform="rotate(-90 28.225 469.19)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect429" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path431" + style="fill:#ffffff;opacity:1" /> + </g> + <g + id="arrow-up-pressed" + transform="rotate(-90 33.225 464.19)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect434" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path436" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-up-toggled" + transform="rotate(-90 38.225 459.19)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect439" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path441" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-up-disabled" + transform="rotate(-90 43.225 454.19)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect444" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path446" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="arrow-down-normal" + transform="rotate(90 243.81 371.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect449" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path451" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-down-focused" + transform="rotate(90 248.81 376.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect454" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path456" + style="fill:#ffffff;opacity:1" /> + </g> + <g + id="arrow-down-pressed" + transform="rotate(90 253.81 381.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect459" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path461" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-down-toggled" + transform="rotate(90 258.81 386.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect464" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path466" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-down-disabled" + transform="rotate(90 263.81 391.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect469" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path471" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="arrow-plus-normal" + transform="translate(117.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect474" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path476" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-minus-normal" + transform="translate(107.03 -24.584)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect479" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect481" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-plus-focused" + transform="translate(127.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect484" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path486" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-minus-focused" + transform="translate(117.03 -24.584)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect489" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect491" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-plus-pressed" + transform="translate(137.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect494" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path496" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-minus-pressed" + transform="translate(127.03 -24.584)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect499" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect501" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-plus-toggled" + transform="translate(147.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect504" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path506" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-minus-toggled" + transform="translate(137.03 -24.584)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect509" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect511" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="arrow-plus-disabled" + transform="translate(157.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect514" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path516" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="arrow-minus-disabled" + transform="translate(147.03 -24.584)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect519" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect521" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="tree-plus-normal" + transform="translate(-53.967 -225.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect524" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path526" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="tree-plus-focused" + transform="translate(-43.967 -225.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect529" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path531" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="tree-plus-pressed" + transform="translate(-33.967 -225.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect534" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path536" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="tree-plus-toggled" + transform="translate(-23.967 -225.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect539" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path541" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="tree-plus-disabled" + transform="translate(-13.967 -225.58)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect544" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path546" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="tree-minus-normal" + transform="rotate(90 270.81 398.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect549" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path551" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="tree-minus-focused" + transform="rotate(90 275.81 403.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect554" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path556" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="tree-minus-pressed" + transform="rotate(90 280.81 408.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect559" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path561" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="tree-minus-toggled" + transform="rotate(90 285.81 413.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect564" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path566" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="tree-minus-disabled" + transform="rotate(90 290.81 418.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect569" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path571" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="flat-arrow-down-normal" + transform="rotate(90 314.81 409.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect574" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path576" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="flat-arrow-down-focused" + transform="rotate(90 319.81 414.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect579" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path581" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="flat-arrow-down-disabled" + transform="rotate(90 324.81 419.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect584" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path586" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="carrow-normal" + transform="rotate(90 264.81 404.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect589" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path591" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="carrow-focused" + transform="rotate(90 269.81 409.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect594" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path596" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="carrow-pressed" + transform="rotate(90 274.81 414.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect599" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path601" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="carrow-toggled" + transform="rotate(90 279.81 419.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect604" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path606" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="carrow-disabled" + transform="rotate(90 284.81 424.22)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect609" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path611" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="flat-arrow-up-normal" + transform="matrix(0 -1 -1 0 724.03 485.42)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect614" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path616" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="flat-arrow-up-focused" + transform="matrix(0 -1 -1 0 734.03 485.42)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect619" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path621" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="flat-arrow-up-disabled" + transform="matrix(0 -1 -1 0 744.03 485.42)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect624" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path626" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="flat-arrow-left-normal" + transform="rotate(180 190.52 419.71)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect629" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path631" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="flat-arrow-left-focused" + transform="rotate(180 195.52 419.71)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect634" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path636" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="flat-arrow-left-disabled" + transform="rotate(180 200.52 419.71)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect639" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path641" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="flat-arrow-right-normal" + transform="matrix(1 0 0 -1 1.0332 850.42)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect644" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path646" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="flat-arrow-right-focused" + transform="matrix(1 0 0 -1 11.033 850.42)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect649" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path651" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="flat-arrow-right-disabled" + transform="matrix(1 0 0 -1 21.033 850.42)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity=".001" + id="rect654" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path656" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="menuitem-right-focused" + transform="matrix(1,0,0,-1,1.0332,861.42)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect644-6" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path646-7" + style="opacity:0.75;fill:#ffffff" /> + </g> + <g + id="arrow-menu-normal" + transform="matrix(1,0,0,-1,11.033,861.42)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect649-3" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path651-5" + style="opacity:0.75;fill:#dfdfdf;fill-opacity:1" /> + </g> + <g + id="arrow-menu-disabled" + transform="matrix(1,0,0,-1,21.033,861.42)"> + <rect + x="186" + y="529" + width="8" + height="8" + opacity="0.00100002" + id="rect654-2" /> + <path + d="m 188.35735,529.64183 a 0.5,0.5 0 0 0 0,0.70704 l 2.64649,2.64648 -2.64649,2.64648 a 0.5,0.5 0 0 0 0,0.70704 0.5,0.5 0 0 0 0.70704,0 l 3,-3 a 0.50005,0.50005 0 0 0 0,-0.70704 l -3,-3 a 0.5,0.5 0 0 0 -0.70704,0 z" + id="path656-9" + style="opacity:0.35;fill:#ffffff" /> + </g> + <g + id="spin-plus-normal" + transform="translate(205.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect659" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path661" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="spin-minus-normal" + transform="translate(195.03 -24.584)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect664" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect666" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="spin-plus-focused" + transform="translate(215.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect669" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path671" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="spin-minus-focused" + transform="translate(205.03 -24.584)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect674" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect676" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="spin-plus-pressed" + transform="translate(225.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect679" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path681" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="spin-minus-pressed" + transform="translate(215.03 -24.584)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect684" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect686" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="spin-plus-disabled" + transform="translate(235.03 -35.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect689" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path691" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="spin-minus-disabled" + transform="translate(225.03 -24.584)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect694" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect696" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="spin-up-normal" + transform="translate(205.03 -14.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect699" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path701" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="spin-down-normal" + transform="translate(195.03 -3.5839)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect704" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect706" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="spin-up-focused" + transform="translate(215.03 -14.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect709" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path711" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="spin-down-focused" + transform="translate(205.03 -3.5839)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect714" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect716" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="spin-up-pressed" + transform="translate(225.03 -14.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect719" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path721" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="spin-down-pressed" + transform="translate(215.03 -3.5839)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect724" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect726" + style="fill:#ffffff;opacity:0.75" /> + </g> + <g + id="spin-up-disabled" + transform="translate(235.03 -14.584)"> + <rect + x="15" + y="317" + width="8" + height="8" + opacity=".001" + id="rect729" /> + <path + d="m 136,281 v 4 h -4 v 0 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 h 3 v -3 c 0,-0.27614 0.22386,-0.5 0.5,-0.5 z m 0,0 c 0.27614,0 0.5,0.22386 0.5,0.5 v 3 h 3 c 0.27614,0 0.5,0.22386 0.5,0.5 v 0 h -4 z m 4,4 c 0,0.27614 -0.22386,0.5 -0.5,0.5 h -3 v 3 c 0,0.27614 -0.22386,0.5 -0.5,0.5 v 0 -4 z m -4,4 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v -3 h -3 c -0.27614,0 -0.5,-0.22386 -0.5,-0.5 v 0 h 4 z" + transform="translate(-117,36)" + id="path731" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="spin-down-disabled" + transform="translate(225.03 -3.5839)"> + <rect + x="25" + y="317" + width="8" + height="8" + opacity=".001" + id="rect734" /> + <path + d="m 25.5,320.5 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7 A 0.5,0.5 0 0 0 33,321 0.5,0.5 0 0 0 32.5,320.5 Z" + id="rect736" + style="fill:#ffffff;opacity:0.3" /> + </g> + <g + id="slidercursor-tickless-normal" + transform="translate(40,-128)"> + <rect + x="317" + y="405" + width="22" + height="22" + opacity="0" + id="rect739" /> + <circle + cx="328" + cy="416" + r="8" + id="circle741" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + <circle + cx="328" + cy="416" + r="6" + id="circle29777" + style="stroke-width:1.2;fill:#2c2c2c;fill-opacity:1" /> + </g> + <g + id="slidercursor-tickless-pressed" + transform="translate(40,-128)"> + <rect + x="361" + y="405" + width="22" + height="22" + opacity="0.00100002" + id="rect744" /> + <circle + cx="372" + cy="416" + r="11" + id="circle746" + style="opacity:0.15;fill:#ffffff" /> + <path + id="circle748" + class="ColorScheme-Highlight" + d="M 412 280 A 8 8 0 0 0 404 288 A 8 8 0 0 0 412 296 A 8 8 0 0 0 420 288 A 8 8 0 0 0 412 280 z M 412 283 A 5 5 0 0 1 417 288 A 5 5 0 0 1 412 293 A 5 5 0 0 1 407 288 A 5 5 0 0 1 412 283 z " + transform="translate(-40,128)" + style="fill:#3584e4;fill-opacity:1" /> + <circle + cx="372" + cy="416" + r="5" + id="circle46204" + style="fill:#2c2c2c;fill-opacity:1;stroke-width:1" /> + </g> + <g + id="slidercursor-tickless-focused" + transform="translate(40,-128)"> + <rect + x="339" + y="405" + width="22" + height="22" + opacity="0.001" + id="rect751" /> + <circle + cx="350" + cy="416" + r="11" + id="circle43281" + style="opacity:0.15;fill:#ffffff;fill-opacity:1;stroke-width:1" /> + <path + id="circle753" + class="ColorScheme-Highlight" + d="M 390 280 A 8 8 0 0 0 382 288 A 8 8 0 0 0 390 296 A 8 8 0 0 0 398 288 A 8 8 0 0 0 390 280 z M 390 282 A 6 6 0 0 1 396 288 A 6 6 0 0 1 390 294 A 6 6 0 0 1 384 288 A 6 6 0 0 1 390 282 z " + transform="translate(-40,128)" + style="fill:#3584e4;fill-opacity:1" /> + <circle + cx="350" + cy="416" + r="6" + id="circle755" + style="fill:#2c2c2c;fill-opacity:1" /> + </g> + <g + id="slidercursor-normal" + transform="translate(40,-128)"> + <rect + x="317" + y="427" + width="22" + height="22" + opacity="0" + id="rect765" /> + <path + id="path53563" + class="ColorScheme-Highlight" + d="M 368 303 C 364.1577 303 361 306.1577 361 310 C 361 313.8423 364.1577 317 368 317 L 368.00195 317 L 368.00391 317 C 369.81032 316.99711 371.54284 316.29331 372.8418 315.04492 L 372.89844 315.00195 L 377.80078 310 L 376.42773 308.59961 L 373.0293 305.13281 C 371.71154 303.77081 369.89527 303.00042 368 303 z M 368 305 C 369.3543 305.0003 370.65015 305.55011 371.5918 306.52344 L 375 310 L 371.57617 313.49414 C 371.57217 313.49714 371.5665 313.498 371.5625 313.5 C 370.6239 314.45706 369.3405 314.998 368 315 C 365.2386 315 363 312.7614 363 310 C 363 307.2386 365.2386 305 368 305 z " + transform="translate(-40,128)" + style="fill:#3584e4;fill-opacity:1" /> + <path + d="m 335,438 -3.4079,-3.4767 c -0.94165,-0.97333 -2.2378,-1.5231 -3.5921,-1.5234 -2.7614,0 -5,2.2386 -5,5 0,2.7614 2.2386,5 5,5 1.3405,-0.002 2.6242,-0.54194 3.5628,-1.499 0.004,-0.002 0.009,-0.004 0.013,-0.007 z" + id="path53561" + style="fill:#2c2c2c;fill-opacity:1" /> + </g> + <g + id="slider-normal-right" + transform="translate(276.95 133.02)"> + <rect + x="34" + y="162" + width="8" + height="8" + opacity=".25" + id="rect791" /> + </g> + <rect + id="slider-toggled-topright" + x="290.95" + y="287.02" + width="8" + height="8" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="slider-toggled-bottomright" + x="290.95" + y="303.02" + width="8" + height="8" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="slider-toggled-topleft" + x="282.95" + y="287.02" + width="8" + height="8" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="slider-toggled-bottomleft" + x="282.95" + y="303.02" + width="8" + height="8" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + <rect + id="slider-normal-topright" + x="310.95" + y="287.02" + width="8" + height="8" + opacity=".25" /> + <rect + id="slider-normal-bottomright" + x="310.95" + y="303.02" + width="8" + height="8" + opacity=".25" /> + <rect + id="slider-normal-topleft" + x="302.95" + y="287.02" + width="8" + height="8" + opacity=".25" /> + <rect + id="slider-normal-bottomleft" + x="302.95" + y="303.02" + width="8" + height="8" + opacity=".25" /> + <g + id="slider-toggled-right" + transform="translate(256.95 133.02)"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect802" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + </g> + <g + id="slider-toggled-left" + transform="translate(248.95 133.02)"> + <rect + x="34" + y="162" + width="8" + height="8" + id="rect805" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + </g> + <g + id="slider-normal-left" + transform="translate(268.95 133.02)"> + <rect + x="34" + y="162" + width="8" + height="8" + opacity=".25" + id="rect808" /> + </g> + <rect + id="tab-tear" + x="95" + y="615" + width="15" + height="15" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + <g + id="menuitem-tearoff-focused" + transform="translate(83.742 -272.34)"> + <rect + transform="rotate(90)" + x="686.5" + y="-229.5" + width="7" + height="9" + opacity="0" + id="rect812" /> + <path + d="m227.24 689h-2.2462v2h2.2462zm-4.4924 0h-2.2461v2h2.2461z" + id="path814" + class="ColorScheme-Highlight" + fill="currentColor" + style="fill:#3584e4;fill-opacity:1" /> + </g> + <g + id="menuitem-tearoff-normal" + transform="translate(97.739 -272.34)"> + <rect + transform="rotate(90)" + x="686.5" + y="-229.5" + width="7" + height="9" + opacity="0" + id="rect858" /> + <path + d="m227.24 689h-2.2462v2h2.2462zm-4.4924 0h-2.2461v2h2.2461z" + fill="#646464" + id="path860" /> + </g> + <rect + id="dial" + x="25.629" + y="745.47" + width="45" + height="45" + rx="22.5" + ry="22.5" + style="fill:#ffffff;opacity:0.08" /> + <g + id="scrollbarslider-normal-topleft" + transform="translate(-104,-241)"> + <path + d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" + opacity="0" + id="path898" /> + <path + d="m 155,1093 c -2.22222,0 -4,1.638 -4,3.638 V 1101 h 4 z" + fill="#989898" + id="path900" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" + sodipodi:nodetypes="csccc" /> + </g> + <g + id="scrollbarslider-normal-left" + transform="matrix(1,0,0,1.3939394,-104,-674.72728)"> + <path + d="m 143,1101 v 16.5 h 12 V 1101 Z" + opacity="0" + id="path903" /> + <path + d="m 151,1101 v 16.5 h 4 V 1101 Z" + fill="#989898" + id="path905" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-focused-topleft"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect913" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path915" + style="stroke-width:0.888889;fill:#4b4b4b;opacity:1;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-focused-left"> + <rect + x="69" + y="860" + width="12" + height="23" + id="rect918" + style="fill:none" /> + <path + d="m 73,860 v 23 h 8 v -23 z" + fill="#c1c1c1" + id="path920" + style="fill:#4b4b4b;opacity:1;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-normal-topright" + transform="matrix(-1,0,0,1,206,-241)"> + <path + d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" + opacity="0" + id="path968" /> + <path + d="m 155,1093 c -2.22222,0 -3.97582,1.6382 -4,3.638 V 1101 h 4 z" + fill="#989898" + id="path970" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="scrollbarslider-normal-right" + transform="matrix(-1,0,0,1.3939394,206,-674.72728)"> + <path + d="m 143,1101 v 16.5 h 12 V 1101 Z" + opacity="0" + id="path973" /> + <path + d="m 151,1101 v 16.5 h 4 V 1101 Z" + fill="#989898" + id="path975" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-normal-bottomleft" + transform="matrix(1,0,0,-1,-104,1984)"> + <path + d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" + opacity="0" + id="path978" /> + <path + d="m 155,1093 c -2.22222,0 -4,1.638 -4,3.638 V 1101 h 4 z" + fill="#989898" + id="path980" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" + sodipodi:nodetypes="csccc" /> + </g> + <g + id="scrollbarslider-normal-bottomright" + transform="rotate(180,103,992)"> + <path + d="m 155,1089 c -6.648,0 -12,5.3521 -12,12 h 12 z" + opacity="0" + id="path983" /> + <path + d="m 155,1093 c -2.22222,0 -4,1.638 -4,3.638 V 1101 h 4 z" + fill="#989898" + id="path985" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" + sodipodi:nodetypes="csccc" /> + </g> + <rect + id="dock-normal" + x="357" + y="912" + width="30" + height="30" + style="fill:#2c2c2c;fill-opacity:1" /> + <g + transform="translate(2.0027073,-258)" + id="g997"> + <rect + id="dock-focused-left" + x="399.5" + y="1170" + width="5" + height="30" + opacity="0.15" + style="opacity:0.12;fill:#ffffff" /> + <rect + id="dock-focused-top" + transform="rotate(-90)" + x="-1167.5" + y="407" + width="5" + height="30" + opacity="0.15" + style="opacity:0.12;fill:#ffffff" /> + <rect + id="dock-focused-topleft" + x="399.5" + y="1162.5" + width="5" + height="5" + opacity="0.15" + style="opacity:0.12;fill:#ffffff" /> + <rect + id="dock-focused-topright" + x="439.5" + y="1162.5" + width="5" + height="5" + opacity="0.15" + style="opacity:0.12;fill:#ffffff" /> + <rect + id="dock-focused-right" + x="439.5" + y="1170" + width="5" + height="30" + opacity="0.15" + style="opacity:0.12;fill:#ffffff" /> + <rect + id="dock-focused-bottom" + transform="rotate(-90)" + x="-1207.5" + y="407" + width="5" + height="30" + opacity="0.15" + style="opacity:0.12;fill:#ffffff" /> + <rect + id="dock-focused-bottomright" + x="439.5" + y="1202.5" + width="5" + height="5" + opacity="0.15" + style="opacity:0.12;fill:#ffffff" /> + <rect + id="dock-focused-bottomleft" + x="399.5" + y="1202.5" + width="5" + height="5" + opacity="0.15" + style="opacity:0.12;fill:#ffffff" /> + </g> + <rect + id="dock-normal-left" + x="349.5" + y="912" + width="5" + height="30" + opacity="0.6" + style="opacity:0.12;fill:#ffffff;fill-opacity:1" /> + <rect + id="dock-normal-topleft" + x="349.5" + y="904.5" + width="5" + height="5" + opacity="0.6" + style="opacity:0.12;fill:#ffffff;fill-opacity:1" /> + <rect + id="dock-normal-top" + transform="rotate(90)" + x="904.5" + y="-387" + width="5" + height="30" + opacity="0.6" + style="opacity:0.12;fill:#ffffff;fill-opacity:1" /> + <rect + id="dock-normal-topright" + x="389.5" + y="904.5" + width="5" + height="5" + opacity="0.6" + style="opacity:0.12;fill:#ffffff;fill-opacity:1" /> + <rect + id="dock-normal-right" + x="389.5" + y="912" + width="5" + height="30" + opacity="0.6" + style="opacity:0.12;fill:#ffffff;fill-opacity:1" /> + <rect + id="dock-normal-bottomright" + x="389.5" + y="944.5" + width="5" + height="5" + opacity="0.6" + style="opacity:0.12;fill:#ffffff;fill-opacity:1" /> + <rect + id="dock-normal-bottom" + transform="rotate(-90)" + x="-949.5" + y="357" + width="5" + height="30" + opacity="0.6" + style="opacity:0.12;fill:#ffffff;fill-opacity:1" /> + <rect + id="dock-normal-bottomleft" + x="349.5" + y="944.5" + width="5" + height="5" + opacity="0.6" + style="opacity:0.12;fill:#ffffff;fill-opacity:1" /> + <rect + id="dock-focused" + x="409" + y="912" + width="30" + height="30" + style="fill:#2c2c2c;fill-opacity:1" /> + <g + id="common-normal-top" + transform="translate(-372,536.97264)"> + <path + d="m 610,-369.03 h 40 v 1 h -40 z" + id="path1008" + transform="scale(1,-1)" + style="opacity:0.12;fill:#ffffff" /> + </g> + <rect + id="common-normal" + transform="scale(1,-1)" + x="238" + y="-947.00269" + width="40" + height="40" + opacity="0.00100002" /> + <g + id="common-normal-topleft" + transform="translate(-372,536.97264)"> + <path + d="m 609,368.03 c -1.1017,0 -0.99736,-0.10427 -0.99736,0.99736 H 609 Z" + id="path1012" + style="opacity:0.12;fill:#ffffff" /> + </g> + <g + id="common-normal-topright" + transform="translate(-372,536.97264)"> + <path + d="m 651,368.03 c 1.1016,0 0.99736,-0.10427 0.99736,0.99736 H 651 Z" + id="path1015" + style="opacity:0.12;fill:#ffffff" /> + </g> + <g + id="common-normal-left" + transform="translate(-372,536.97264)"> + <path + d="m -410.03,-609 h 40 v 0.99998 h -40 z" + id="path1018" + transform="matrix(0,-1,-1,0,0,0)" + style="opacity:0.12;fill:#ffffff" /> + </g> + <g + id="common-normal-right" + transform="translate(-372,536.97264)"> + <path + d="m 370.03,651 h 40 v 1 h -40 z" + id="path1021" + transform="matrix(0,1,1,0,0,0)" + style="opacity:0.12;fill:#ffffff" /> + </g> + <g + id="common-normal-bottom" + transform="translate(-372,536.97264)"> + <path + d="m 610,411.03 h 40 v 0.99986 h -40 z" + id="path1024" + style="opacity:0.12;fill:#ffffff" /> + </g> + <g + id="common-normal-bottomleft" + transform="translate(-372,536.97264)"> + <path + d="m 609,412.03 c -1.1017,0 -0.99736,0.10447 -0.99736,-0.99735 H 609 Z" + id="path1027" + style="opacity:0.12;fill:#ffffff" /> + </g> + <g + id="common-normal-bottomright" + transform="translate(-372,536.97264)"> + <path + d="m 651,412.03 c 1.1016,0 0.99736,0.10447 0.99736,-0.99735 H 651 Z" + id="path1030" + style="opacity:0.12;fill:#ffffff" /> + </g> + <g + id="tabBarFrame-normal-bottom" + transform="matrix(0 -1 .66667 0 -510.34 777)"> + <path + d="m174 921.5h-4l1.3e-4 -6h3.9999z" + opacity="0" + id="path1033" /> + <path + d="m172 921.5h-2l1e-4 -6h2z" + fill="#1d1d20" + id="path1035" + style="fill:#ffffff;opacity:0.1" /> + </g> + <use + id="tabBarFrame-normal-bottomright" + transform="translate(4)" + width="100%" + height="100%" + xlink:href="#tabBarFrame-normal-bottom" /> + <use + id="tabBarFrame-normal-bottomleft" + transform="translate(-4)" + width="100%" + height="100%" + xlink:href="#tabBarFrame-normal-bottom" /> + <g + id="common-focused-top" + transform="translate(-319,536.97264)"> + <path + transform="scale(1,-1)" + d="m 610,-369.03 h 40 v 1 h -40 z" + id="path1040" + style="opacity:0.12;fill:#ffffff" /> + </g> + <rect + id="common-focused" + transform="scale(1,-1)" + x="291" + y="-947.00269" + width="40" + height="40" + opacity="0.00100002" /> + <g + id="common-focused-topleft" + transform="translate(-319,536.97264)"> + <path + d="m 609,368.03 c -1.1017,0 -0.99736,-0.10427 -0.99736,0.99736 H 609 Z" + id="path1044" + style="opacity:0.12;fill:#ffffff" /> + </g> + <g + id="common-focused-topright" + transform="translate(-319,536.97264)"> + <path + d="m 651,368.03 c 1.1016,0 0.99736,-0.10427 0.99736,0.99736 H 651 Z" + id="path1047" + style="opacity:0.12;fill:#ffffff" /> + </g> + <g + id="common-focused-left" + transform="translate(-319,536.97264)"> + <path + transform="matrix(0,-1,-1,0,0,0)" + d="m -410.03,-609 h 40 v 0.99998 h -40 z" + id="path1050" + style="opacity:0.12;fill:#ffffff" /> + </g> + <g + id="common-focused-right" + transform="translate(-319,536.97264)"> + <path + transform="matrix(0,1,1,0,0,0)" + d="m 370.03,651 h 40 v 1 h -40 z" + id="path1053" + style="opacity:0.12;fill:#ffffff" /> + </g> + <g + id="common-focused-bottom" + transform="translate(-319,536.97264)"> + <path + d="m 610,411.03 h 40 v 0.99986 h -40 z" + id="path1056" + style="opacity:0.12;fill:#ffffff" /> + </g> + <g + id="common-focused-bottomleft" + transform="translate(-319,536.97264)"> + <path + d="m 609,412.03 c -1.1017,0 -0.99736,0.10447 -0.99736,-0.99735 H 609 Z" + id="path1059" + style="opacity:0.12;fill:#ffffff" /> + </g> + <g + id="common-focused-bottomright" + transform="translate(-319,536.97264)"> + <path + d="m 651,412.03 c 1.1016,0 0.99736,0.10447 0.99736,-0.99735 H 651 Z" + id="path1062" + style="opacity:0.12;fill:#ffffff" /> + </g> + <path + id="header-normal-bottom" + d="m78 116.88h-6v6h6z" + style="fill:#ffffff;opacity:0.12" /> + <path + id="header-normal-bottomleft" + d="m84 116.88h-6v6h6z" + style="fill:#ffffff;opacity:0.12" /> + <path + id="header-normal-bottomright" + d="m90 116.88h-6v6h6z" + style="fill:#ffffff;opacity:0.12" /> + <path + id="header-normal-left" + d="m90 110.88v-6h-6v6z" + style="fill:#ffffff;opacity:0.01" /> + <path + id="header-normal-right" + d="m84 110.88v-6h-6v6z" + style="fill:#ffffff;opacity:0.01" /> + <path + id="header-normal-top" + d="m78 110.88h-6v6h6z" + style="fill:#ffffff;opacity:0" /> + <path + id="header-normal-topright" + d="m84 110.88h-6v6h6z" + style="fill:#ffffff;opacity:0" /> + <path + id="header-normal-topleft" + d="m90 110.88h-6v6h6z" + style="fill:#ffffff;opacity:0" /> + <path + id="header-normal" + d="m78 110.88v-6h-6v6z" + style="fill:#ffffff;opacity:0.01" /> + <path + id="header-separator" + d="m72 104.88h-6v6h6z" + style="fill:#ffffff;opacity:0.12" /> + <path + id="window-normal" + d="m 380,814 h 30 v 30 h -30 z" + style="fill:#1d1d20;fill-opacity:1;opacity:1" /> + <path + id="window-normal-inactive" + d="m 412,814 h 30 v 30 h -30 z" + style="opacity:1;fill:#1d1d20;stroke-width:1" /> + <rect + id="menubar-normal" + x="307.00311" + y="360" + width="20" + height="20" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + <rect + id="menubar-normal-left" + transform="rotate(90)" + x="360" + y="-307.00311" + width="20" + height="5" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + <rect + id="menubar-normal-topleft" + transform="rotate(90)" + x="355" + y="-307.00311" + width="5" + height="5" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + <rect + id="menubar-normal-top" + x="307.00311" + y="355" + width="20" + height="5" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + <rect + id="menubar-normal-right" + transform="rotate(90)" + x="360" + y="-332.00311" + width="20" + height="5" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + <rect + id="menubar-normal-topright" + transform="rotate(90)" + x="355" + y="-332.00311" + width="5" + height="5" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + <g + id="menubar-normal-bottomleft" + transform="matrix(1,0,0,0.25,2,225.75)"> + <rect + x="300" + y="617" + width="5" + height="4" + id="rect1157" + style="opacity:0.12;fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="menubar-normal-bottomright" + transform="matrix(1,0,0,0.25,2,225.75)"> + <rect + x="325" + y="617" + width="5" + height="4" + id="rect1164" + style="opacity:0.12;fill:#ffffff;fill-opacity:1" /> + </g> + <g + id="menubar-normal-bottom" + transform="matrix(1,0,0,0.25,2,225.75)"> + <rect + x="305" + y="617" + width="20" + height="4" + id="rect1171" + style="opacity:0.12;fill:#ffffff;fill-opacity:1" /> + </g> + <rect + id="menubar-normal-inactive" + x="342" + y="360" + width="20" + height="20" + style="opacity:1;fill:#222226;fill-opacity:1" /> + <rect + id="menubar-normal-inactive-left" + transform="rotate(90)" + x="360" + y="-342" + width="20" + height="5" + style="opacity:1;fill:#1d1d20;fill-opacity:1" /> + <rect + id="menubar-normal-inactive-topleft" + transform="rotate(90)" + x="355" + y="-342" + width="5" + height="5" + style="opacity:1;fill:#1d1d20;fill-opacity:1" /> + <rect + id="menubar-normal-inactive-top" + x="342" + y="355" + width="20" + height="5" + style="opacity:1;fill:#1d1d20;fill-opacity:1" /> + <rect + id="menubar-normal-inactive-right" + transform="rotate(90)" + x="360" + y="-367" + width="20" + height="5" + style="opacity:1;fill:#1d1d20;fill-opacity:1" /> + <rect + id="menubar-normal-inactive-topright" + transform="rotate(90)" + x="355" + y="-367" + width="5" + height="5" + style="opacity:1;fill:#1d1d20;fill-opacity:1" /> + <g + id="menubar-normal-inactive-bottomleft" + transform="matrix(1,0,0,0.25,36.997001,225.75001)"> + <rect + x="300" + y="617" + width="5" + height="4" + id="rect1182" + style="opacity:0.12;fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.25,0,0,1,223.75,0)" + id="g1186"> + <path + d="m 305,621 h 20 v -3 h -20 z" + opacity="0" + id="path1184" /> + </g> + </g> + <g + id="menubar-normal-inactive-bottomright" + transform="matrix(1,0,0,0.25,36.997001,225.75001)"> + <rect + x="325" + y="617" + width="5" + height="4" + id="rect1189" + style="opacity:0.12;fill:#ffffff;fill-opacity:1" /> + <g + transform="matrix(0.25,0,0,1,248.75,0)" + fill="#b6b6b6" + id="g1193"> + <path + d="m 305,621 h 20 v -3 h -20 z" + opacity="0" + id="path1191" /> + </g> + </g> + <g + id="menubar-normal-inactive-bottom" + transform="matrix(1,0,0,0.25,36.997001,225.75001)"> + <rect + x="305" + y="617" + width="20" + height="4" + id="rect1196" + style="opacity:0.12;fill:#ffffff;fill-opacity:1" /> + <rect + x="305" + y="618" + width="20" + height="3" + opacity="0" + id="rect1198" /> + </g> + <g + id="button-normal-topleft" + transform="translate(9,116)"> + <rect + x="-5" + y="-80" + width="6" + height="6" + fill="none" + style="paint-order:markers stroke fill" + id="rect1522" /> + <path + d="m1-80c-3.324 0-6 2.676-6 6h6z" + id="path1524" + style="fill:#444444;opacity:1;fill-opacity:1" /> + </g> + <g + id="button-normal-top" + transform="translate(9,116)" + style="fill:#414141;fill-opacity:1"> + <rect + x="1" + y="-80" + width="26" + height="6" + id="rect1527" + style="fill:#444444;opacity:1;fill-opacity:1" /> + </g> + <g + id="button-normal" + transform="translate(9,116)" + style="fill:#414141;fill-opacity:1"> + <rect + x="1" + y="-74" + width="26" + height="26" + id="rect1530" + style="fill:#444444;opacity:1;fill-opacity:1" /> + </g> + <use + id="button-normal-topright" + transform="matrix(-1 0 0 1 46 0)" + width="100%" + height="100%" + xlink:href="#button-normal-topleft" /> + <use + id="button-normal-bottomright" + transform="rotate(180 23 55)" + width="100%" + height="100%" + xlink:href="#button-normal-topleft" /> + <use + id="button-normal-bottomleft" + transform="matrix(1 0 0 -1 0 110)" + width="100%" + height="100%" + xlink:href="#button-normal-topleft" /> + <use + id="button-normal-bottom" + transform="translate(0,32)" + width="100%" + height="100%" + xlink:href="#button-normal-top" /> + <use + id="button-normal-left" + transform="rotate(90 7 39)" + width="100%" + height="100%" + xlink:href="#button-normal-top" /> + <use + id="button-normal-right" + transform="rotate(90 23 55)" + width="100%" + height="100%" + xlink:href="#button-normal-top" /> + <g + id="button-focused-topleft" + transform="matrix(.99999 0 0 .99999 55.989 115.99)"> + <rect + x="-5" + y="-80" + width="6" + height="6" + fill="none" + style="paint-order:markers stroke fill" + id="rect1539" /> + <path + d="m1-80c-3.324 0-6 2.676-6 6h6z" + id="path1541" + style="fill:#4f4f4f;opacity:1;fill-opacity:1" /> + </g> + <g + id="button-focused-top" + transform="matrix(.99999 0 0 .99999 55.989 115.99)" + style="fill:#444444;fill-opacity:1"> + <rect + x="1" + y="-80" + width="26" + height="6" + id="rect1544" + style="fill:#4f4f4f;opacity:1;fill-opacity:1" /> + </g> + <use + id="button-focused-topright" + transform="matrix(-1 0 0 1 139.97 2e-6)" + width="100%" + height="100%" + xlink:href="#button-focused-topleft" /> + <use + id="button-focused-bottomright" + transform="rotate(180 69.993 54.988)" + width="100%" + height="100%" + xlink:href="#button-focused-topleft" /> + <use + id="button-focused-bottomleft" + transform="matrix(1 0 0 -1 -3e-6 110.01)" + width="100%" + height="100%" + xlink:href="#button-focused-topleft" /> + <use + id="button-focused-bottom" + transform="translate(-3e-6 32)" + width="100%" + height="100%" + xlink:href="#button-focused-top" /> + <use + id="button-focused-left" + transform="rotate(90 53.99 39.001)" + width="100%" + height="100%" + xlink:href="#button-focused-top" /> + <use + id="button-focused-right" + transform="rotate(90 69.993 54.988)" + width="100%" + height="100%" + xlink:href="#button-focused-top" /> + <g + id="button-pressed-topleft" + transform="matrix(.99999 0 0 .99999 103 116)"> + <rect + x="-5" + y="-80" + width="6" + height="6" + fill="none" + style="paint-order:markers stroke fill" + id="rect1556" /> + <path + d="m1-80c-3.324 0-6 2.676-6 6h6z" + id="path1558" + style="fill:#797979;opacity:1;fill-opacity:1" /> + </g> + <g + id="button-pressed-top" + transform="matrix(.99999 0 0 .99999 103 116)" + style="fill:#616161;fill-opacity:1"> + <rect + x="1" + y="-80" + width="26" + height="6" + id="rect1561" + style="fill:#797979;opacity:1;fill-opacity:1" /> + </g> + <use + id="button-pressed-topright" + transform="matrix(-1 0 0 1 233.99 2e-6)" + width="100%" + height="100%" + xlink:href="#button-pressed-topleft" /> + <use + id="button-pressed-bottomright" + transform="rotate(180 117 54.998)" + width="100%" + height="100%" + xlink:href="#button-pressed-topleft" /> + <use + id="button-pressed-bottomleft" + transform="matrix(1 0 0 -1 -3e-6 110.03)" + width="100%" + height="100%" + xlink:href="#button-pressed-topleft" /> + <use + id="button-pressed-bottom" + transform="translate(-3e-6 32)" + width="100%" + height="100%" + xlink:href="#button-pressed-top" /> + <use + id="button-pressed-left" + transform="rotate(90 101 39.01)" + width="100%" + height="100%" + xlink:href="#button-pressed-top" /> + <use + id="button-pressed-right" + transform="rotate(90 117 54.998)" + width="100%" + height="100%" + xlink:href="#button-pressed-top" /> + <g + id="button-toggled-topleft" + transform="matrix(.99999 0 0 .99999 154 116)" + style="fill:#6e6e6e;fill-opacity:1"> + <path + d="m1-80c-3.324 0-6 2.676-6 6h6z" + class="ColorScheme-Highlight" + fill="currentColor" + id="path1575" + style="fill:#6e6e6e;fill-opacity:1" /> + </g> + <g + id="button-toggled-top" + transform="matrix(.99999 0 0 .99999 154 116)" + style="fill:#6e6e6e;fill-opacity:1"> + <rect + x="1" + y="-80" + width="26" + height="6" + class="ColorScheme-Highlight" + fill="currentColor" + id="rect1578" + style="fill:#6e6e6e;fill-opacity:1" /> + </g> + <g + id="button-toggled" + transform="matrix(.99999 0 0 .99999 154 116)" + style="fill:#6e6e6e;fill-opacity:1"> + <rect + x="1" + y="-74" + width="26" + height="26" + class="ColorScheme-Highlight" + fill="currentColor" + id="rect1581" + style="fill:#6e6e6e;fill-opacity:1" /> + </g> + <use + id="button-toggled-topright" + transform="matrix(-1 0 0 1 335.99 2.21e-6)" + width="100%" + height="100%" + xlink:href="#button-toggled-topleft" + style="fill:#6e6e6e;fill-opacity:1" /> + <use + id="button-toggled-bottomright" + transform="rotate(180 168 54.998)" + width="100%" + height="100%" + xlink:href="#button-toggled-topleft" + style="fill:#6e6e6e;fill-opacity:1" /> + <use + id="button-toggled-bottomleft" + transform="matrix(1 0 0 -1 -3e-6 110.03)" + width="100%" + height="100%" + xlink:href="#button-toggled-topleft" + style="fill:#6e6e6e;fill-opacity:1" /> + <use + id="button-toggled-bottom" + transform="translate(-3e-6 32)" + width="100%" + height="100%" + xlink:href="#button-toggled-top" + style="fill:#6e6e6e;fill-opacity:1" /> + <use + id="button-toggled-left" + transform="rotate(90 152 39.01)" + width="100%" + height="100%" + xlink:href="#button-toggled-top" + style="fill:#6e6e6e;fill-opacity:1" /> + <use + id="button-toggled-right" + transform="rotate(90 168 54.998)" + width="100%" + height="100%" + xlink:href="#button-toggled-top" + style="fill:#6e6e6e;fill-opacity:1" /> + <g + id="tbutton-normal-topleft" + transform="matrix(5.0384183,0,0,5.0390527,-63.646221,-131.99449)" + stroke-linecap="square"> + <rect + x="21.167" + y="15.875" + width="3.175" + height="3.175" + fill="none" + stroke-width="0.037418" + style="paint-order:markers stroke fill" + id="rect1590" /> + <path + transform="scale(0.26458)" + d="M 92,60 C 85.352,60 80,65.352 80,72 H 92 Z" + id="path1592" + style="fill:#414141;opacity:0;fill-opacity:0" /> + </g> + <g + id="tbutton-normal-top" + transform="matrix(.31496 0 0 5.0394 52.333 -132)"> + <rect + x="24.342" + y="15.875" + width="3.175" + height="3.175" + id="rect1595" + style="fill:#414141;opacity:0;fill-opacity:0" /> + </g> + <use + id="tbutton-normal-topright" + transform="matrix(-1 0 0 1 121 3.303e-7)" + width="100%" + height="100%" + xlink:href="#tbutton-normal-topleft" /> + <use + id="tbutton-normal-bottomright" + transform="rotate(180 60.5 -34.5)" + width="100%" + height="100%" + xlink:href="#tbutton-normal-topleft" /> + <use + id="tbutton-normal-bottomleft" + transform="matrix(1 0 0 -1 -1.353e-6 -69)" + width="100%" + height="100%" + xlink:href="#tbutton-normal-topleft" /> + <use + id="tbutton-normal-bottom" + transform="matrix(1 0 0 -1 -3.5298e-7 -69)" + width="100%" + height="100%" + xlink:href="#tbutton-normal-top" /> + <g + id="tbutton-toggled-topleft" + transform="matrix(5.0394 0 0 5.0394 20.332 -131.9)"> + <rect + x="21.167" + y="15.875" + width="3.175" + height="3.175" + fill="none" + id="rect1602" /> + <path + d="m24.342 15.875c-1.7589 0-3.175 1.416-3.175 3.175h3.175z" + id="path1604" + style="fill:#4b4b4b;opacity:1;fill-opacity:1" /> + </g> + <g + id="tbutton-toggled-top" + transform="matrix(.31496 0 0 5.0394 136.33 -131.9)"> + <rect + x="24.342" + y="15.875" + width="3.175" + height="3.175" + id="rect1607" + style="fill:#4b4b4b;opacity:1;fill-opacity:1" /> + </g> + <use + id="tbutton-toggled-topright" + transform="matrix(-1 0 0 1 289 -9.592e-5)" + width="100%" + height="100%" + xlink:href="#tbutton-toggled-topleft" /> + <use + id="tbutton-toggled-bottomright" + transform="rotate(180 144.5 -34.4)" + width="100%" + height="100%" + xlink:href="#tbutton-toggled-topleft" /> + <use + id="tbutton-toggled-bottomleft" + transform="matrix(1 0 0 -1 9.8504e-8 -68.8)" + width="100%" + height="100%" + xlink:href="#tbutton-toggled-topleft" /> + <use + id="tbutton-toggled-bottom" + transform="matrix(1 0 0 -1 9.8504e-8 -68.8)" + width="100%" + height="100%" + xlink:href="#tbutton-toggled-top" /> + <g + id="tbutton-pressed-topleft" + transform="matrix(5.0394 0 0 5.0394 -20.668 -132)"> + <rect + x="21.167" + y="15.875" + width="3.175" + height="3.175" + fill="none" + id="rect1614" /> + <path + d="m24.342 15.875c-1.7589 0-3.175 1.416-3.175 3.175h3.175z" + id="path1616" + style="fill:#444444;opacity:1;fill-opacity:1" /> + </g> + <g + id="tbutton-pressed-top" + transform="matrix(.31496 0 0 5.0394 95.333 -132)"> + <rect + x="24.342" + y="15.875" + width="3.175" + height="3.175" + id="rect1619" + style="fill:#444444;opacity:1;fill-opacity:1" /> + </g> + <use + id="tbutton-pressed-topright" + transform="matrix(-1 0 0 1 207 -3.2101e-6)" + width="100%" + height="100%" + xlink:href="#tbutton-pressed-topleft" /> + <use + id="tbutton-pressed-bottomright" + transform="rotate(180,103.5,-34.5)" + width="100%" + height="100%" + xlink:href="#tbutton-pressed-topleft" /> + <use + id="tbutton-pressed-bottomleft" + transform="matrix(1 0 0 -1 -4.7486e-6 -69)" + width="100%" + height="100%" + xlink:href="#tbutton-pressed-topleft" /> + <use + id="tbutton-pressed-bottom" + transform="matrix(1 0 0 -1 1.4217e-8 -69)" + width="100%" + height="100%" + xlink:href="#tbutton-pressed-top" /> + <g + id="tbutton-normal-left" + transform="translate(25)"> + <rect + x="18" + y="-35" + width="16" + height="1" + id="rect1626" + style="fill:#414141;opacity:0;fill-opacity:0" /> + </g> + <g + id="tbutton-normal" + transform="matrix(.0625 0 0 1 58.875 0)"> + <rect + x="18" + y="-35" + width="16" + height="1" + id="rect1629" + style="fill:#414141;opacity:0;fill-opacity:0" /> + </g> + <use + id="tbutton-normal-right" + transform="translate(19)" + width="100%" + height="100%" + xlink:href="#tbutton-normal-left" /> + <g + id="tbutton-pressed-left" + transform="translate(68)"> + <rect + x="18" + y="-35" + width="16" + height="1" + id="rect1633" + style="fill:#444444;opacity:0;fill-opacity:0" /> + </g> + <g + id="tbutton-pressed" + transform="matrix(.0625 0 0 1 101.88 0)"> + <rect + x="18" + y="-35" + width="16" + height="1" + id="rect1636" + style="fill:#444444;opacity:1;fill-opacity:1" /> + </g> + <use + id="tbutton-pressed-right" + transform="translate(19)" + width="100%" + height="100%" + xlink:href="#tbutton-pressed-left" /> + <g + id="tbutton-toggled-left" + transform="translate(109)"> + <rect + x="18" + y="-35" + width="16" + height="1" + id="rect1640" + style="fill:#4b4b4b;opacity:1;fill-opacity:1" /> + </g> + <g + id="tbutton-toggled" + transform="matrix(.0625 0 0 1 142.87 0)"> + <rect + x="18" + y="-35" + width="16" + height="1" + id="rect1643" + style="fill:#4b4b4b;opacity:1;fill-opacity:1" /> + </g> + <use + id="tbutton-toggled-right" + transform="translate(19)" + width="100%" + height="100%" + xlink:href="#tbutton-toggled-left" /> + <path + id="menubaritem-pressed-left" + d="m 188.99999,946 v -17.999 h -6 l 3.6e-4,18 z" + style="opacity:1;fill:#444444;fill-opacity:1" /> + <path + id="menubaritem-pressed-topleft" + d="m 188.99999,921 c -3.2999,-8e-5 -6,2.7 -6,5.9999 h 6 z" + style="opacity:1;fill:#444444;fill-opacity:1" /> + <path + id="menubaritem-pressed" + d="m 189.99999,928 v 18 h 18 v -18 z" + style="opacity:1;fill:#444444;fill-opacity:1" /> + <path + id="menubaritem-pressed-right" + d="m 208.99999,946 v -17.999 h 6 l -3.7e-4,18 z" + style="opacity:1;fill:#444444;fill-opacity:1" /> + <path + id="menubaritem-pressed-topright" + d="m 208.99999,921 c 3.29991,-8e-5 6,2.7 6,5.9999 h -6 z" + style="opacity:1;fill:#444444;fill-opacity:1" /> + <path + id="menubaritem-pressed-top" + d="m 189.99999,927 h 17.999 v -6 h -18 z" + style="opacity:1;fill:#444444;fill-opacity:1" /> + <path + id="menubaritem-pressed-bottom" + d="M 207.99999,947 H 190.001 v 6 h 18 z" + style="opacity:1;fill:#444444;fill-opacity:1" /> + <path + id="menubaritem-pressed-bottomleft" + d="m 188.99999,953 c -3.2999,0 -5.99989,-2.7 -5.99989,-5.9999 l 5.99989,-1.1e-4 z" + style="opacity:1;fill:#444444;fill-opacity:1" /> + <path + id="menubaritem-pressed-bottomright" + d="m 208.99999,953 c 3.29991,0 5.9999,-2.7 5.9999,-5.9999 l -5.9999,-1.1e-4 z" + style="opacity:1;fill:#444444;fill-opacity:1" /> + <path + id="menubaritem-toggled-left" + d="m 152.99999,946 v -17.999 h -6 l 3.6e-4,18 z" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <path + id="menubaritem-toggled-topleft" + d="m 152.99999,921 c -3.2999,-7e-5 -6,2.7 -6,5.9999 h 6 z" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <path + id="menubaritem-toggled" + d="m 153.99999,928 v 18 h 18 v -18 z" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <path + id="menubaritem-toggled-right" + d="m 172.99999,946 v -17.999 h 6 l -3.7e-4,18 z" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <path + id="menubaritem-toggled-topright" + d="m 172.99999,921 c 3.29991,-7e-5 6,2.7 6,5.9999 h -6 z" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <path + id="menubaritem-toggled-top" + d="m 153.99999,927 h 17.999 v -6 h -18 z" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <path + id="menubaritem-toggled-bottom" + d="M 171.99999,947 H 154.001 v 6 h 18 z" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <path + id="menubaritem-toggled-bottomleft" + d="m 152.99999,953 c -3.2999,0 -5.99989,-2.7 -5.99989,-5.9999 l 5.99989,-1.2e-4 z" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <path + id="menubaritem-toggled-bottomright" + d="m 172.99999,953 c 3.29991,0 5.9999,-2.7 5.9999,-5.9999 l -5.9999,-1.2e-4 z" + style="opacity:1;fill:#4b4b4b;fill-opacity:1" /> + <use + id="tab-toggled-topright" + transform="matrix(-1,0,0,1,188,-2.5e-6)" + width="100%" + height="100%" + xlink:href="#tab-toggled-topleft" + x="0" + y="0" /> + <g + id="tabBarFrame-toggled-bottom" + transform="matrix(0 -1 .66667 0 -491.34 777)"> + <path + d="m174 921.5h-4l1.3e-4 -6h3.9999z" + opacity="0" + id="path1739" /> + <path + d="m172 921.5h-2l1e-4 -6h2z" + fill="#333" + id="path1741" + style="fill:#ffffff;opacity:0.1" /> + </g> + <use + id="tabBarFrame-toggled-bottomleft" + transform="translate(-4)" + width="100%" + height="100%" + xlink:href="#tabBarFrame-toggled-bottom" /> + <use + id="tabBarFrame-toggled-bottomright" + transform="translate(4)" + width="100%" + height="100%" + xlink:href="#tabBarFrame-toggled-bottom" /> + <g + id="tabframe-normal-top-leftjunct" + transform="translate(-85,-270)"> + <path + d="m269 865h-4v4h4z" + fill-opacity="0" + id="path1746" /> + <path + d="m265.5 865h-0.5v2h0.5z" + fill="#212121" + id="path1748" /> + </g> + <use + id="tabframe-normal-top-rightjunct" + transform="matrix(-1,0,0,1,368,0)" + width="100%" + height="100%" + xlink:href="#tabframe-normal-top-leftjunct" /> + <use + id="tabframe-normal-right-leftjunct" + transform="matrix(-1,0,0,1,364,5)" + width="100%" + height="100%" + xlink:href="#tabframe-normal-top-leftjunct" /> + <use + id="tabframe-normal-right-rightjunct" + transform="matrix(1,0,0,-1,4,1204)" + width="100%" + height="100%" + xlink:href="#tabframe-normal-right-leftjunct" /> + <use + id="tabframe-normal-left-leftjunct" + transform="matrix(1,0,0,-1,0,1204)" + width="100%" + height="100%" + xlink:href="#tabframe-normal-top-leftjunct" /> + <use + id="tabframe-normal-left-rightjunct" + transform="translate(4,10)" + width="100%" + height="100%" + xlink:href="#tabframe-normal-top-leftjunct" /> + <use + id="tabframe-normal-bottom-leftjunct" + transform="matrix(1,0,0,-1,0,1208)" + width="100%" + height="100%" + xlink:href="#tabframe-normal-top-leftjunct" /> + <use + id="tabframe-normal-bottom-rightjunct" + transform="rotate(180,184,604)" + width="100%" + height="100%" + xlink:href="#tabframe-normal-top-leftjunct" /> + <g + id="tab-toggled" + transform="translate(0,-3)"> + <rect + id="rect90454" + width="12" + height="6" + x="88" + y="683" + style="opacity:1;fill:#444444;fill-opacity:1" /> + </g> + <g + id="tab-toggled-topleft" + transform="translate(0,-3)"> + <rect + id="rect90458" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="rect90366" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:1;fill:#444444;fill-opacity:1" /> + </g> + <g + id="tab-toggled-top" + transform="translate(0,-3)"> + <rect + id="rect90448" + width="12" + height="8" + x="88" + y="675" + style="fill:none" /> + <rect + id="rect90460" + width="12" + height="6" + x="88" + y="677" + style="opacity:1;fill:#444444;fill-opacity:1" /> + </g> + <g + id="tab-toggled-left" + transform="translate(0,-3)"> + <rect + id="rect90450" + width="8" + height="6" + x="80" + y="683" + style="fill:none" /> + <rect + id="rect90462" + width="6" + height="6" + x="82" + y="683" + style="opacity:1;fill:#444444;fill-opacity:1" /> + </g> + <use + x="0" + y="0" + xlink:href="#tab-toggled-left" + id="tab-toggled-right" + transform="matrix(-1,0,0,1,188,0)" + width="100%" + height="100%" /> + <g + id="tab-toggled-bottom" + transform="matrix(1,0,0,-1,0,1369)"> + <rect + id="rect90827" + width="12" + height="8" + x="88" + y="675" + style="fill:none" /> + <rect + id="rect90829" + width="12" + height="6" + x="88" + y="677" + style="opacity:1;fill:#444444;fill-opacity:1" /> + </g> + <g + id="tab-toggled-bottomright" + transform="matrix(0,-1,-1,0,783,774)"> + <rect + id="rect90821" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="path90823" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:1;fill:#444444;fill-opacity:1" /> + </g> + <g + id="tab-toggled-bottomleft" + transform="matrix(1,0,0,-1,0,1369)"> + <rect + id="rect90815" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="path90817" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:1;fill:#444444;fill-opacity:1" /> + </g> + <use + id="tab-focused-topright" + transform="matrix(-1,0,0,1,278.00001,1.7e-6)" + width="100%" + height="100%" + xlink:href="#tab-focused-topleft" + x="0" + y="0" /> + <g + id="tab-focused" + transform="translate(45,-3)"> + <rect + id="rect90454-7" + width="12" + height="6" + x="88" + y="683" + style="opacity:1;fill:#414141;fill-opacity:1" /> + </g> + <g + id="tab-focused-topleft" + transform="translate(45,-3)"> + <rect + id="rect90458-5" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="rect90366-3" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:1;fill:#414141;fill-opacity:1" /> + </g> + <g + id="tab-focused-top" + transform="translate(45,-3)"> + <rect + id="rect90448-5" + width="12" + height="8" + x="88" + y="675" + style="fill:none" /> + <rect + id="rect90460-6" + width="12" + height="6" + x="88" + y="677" + style="opacity:1;fill:#414141;fill-opacity:1" /> + </g> + <g + id="tab-focused-left" + transform="translate(45,-3)"> + <rect + id="rect90450-2" + width="8" + height="6" + x="80" + y="683" + style="fill:none" /> + <rect + id="rect90462-9" + width="6" + height="6" + x="82" + y="683" + style="opacity:1;fill:#414141;fill-opacity:1" /> + </g> + <use + x="0" + y="0" + xlink:href="#tab-focused-left" + id="tab-focused-right" + transform="matrix(-1,0,0,1,278.00001,1.7e-6)" + width="100%" + height="100%" /> + <g + id="tab-focused-bottom" + transform="matrix(1,0,0,-1,45,1369)"> + <rect + id="rect90827-1" + width="12" + height="8" + x="88" + y="675" + style="fill:none" /> + <rect + id="rect90829-2" + width="12" + height="6" + x="88" + y="677" + style="opacity:1;fill:#414141;fill-opacity:1" /> + </g> + <g + id="tab-focused-bottomright" + transform="matrix(0,-1,-1,0,828.00001,774.00001)"> + <rect + id="rect90821-7" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="path90823-0" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:1;fill:#414141;fill-opacity:1" /> + </g> + <g + id="tab-focused-bottomleft" + transform="matrix(1,0,0,-1,45,1369)"> + <rect + id="rect90815-9" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="path90817-3" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:1;fill:#414141;fill-opacity:1" /> + </g> + <g + id="tab-normal-topright" + transform="matrix(-1,0,0,1,146,-4)" + style="opacity:0"> + <rect + id="rect93067" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="path93069" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:0.2;fill:#ffffff" /> + </g> + <g + id="tab-normal" + transform="translate(-42.00001,-4.0000038)" + style="opacity:0"> + <rect + id="rect90454-0" + width="12" + height="6" + x="88" + y="683" + style="opacity:0.2;fill:#ffffff" /> + </g> + <g + id="tab-normal-topleft" + transform="translate(-42.00001,-4.0000038)" + style="opacity:0"> + <rect + id="rect90458-6" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="rect90366-2" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:0.2;fill:#ffffff" /> + </g> + <g + id="tab-normal-top" + transform="translate(-42.00001,-4.0000038)" + style="opacity:0"> + <rect + id="rect90448-6" + width="12" + height="8" + x="88" + y="675" + style="fill:none" /> + <rect + id="rect90460-1" + width="12" + height="6" + x="88" + y="677" + style="opacity:0.2;fill:#ffffff" /> + </g> + <g + id="tab-normal-left" + transform="translate(-42.00001,-4.0000038)" + style="opacity:0"> + <rect + id="rect90450-8" + width="8" + height="6" + x="80" + y="683" + style="fill:none" /> + <rect + id="rect90462-7" + width="6" + height="6" + x="82" + y="683" + style="opacity:0.2;fill:#ffffff" /> + </g> + <g + id="tab-normal-right" + transform="matrix(-1,0,0,1,146,-4)" + style="opacity:0"> + <rect + id="rect93061" + width="8" + height="6" + x="80" + y="683" + style="fill:none" /> + <rect + id="rect93063" + width="6" + height="6" + x="82" + y="683" + style="opacity:0.2;fill:#ffffff" /> + </g> + <g + id="tab-normal-bottom" + transform="matrix(1,0,0,-1,-42.00001,1368)" + style="opacity:0"> + <rect + id="rect90827-9" + width="12" + height="8" + x="88" + y="675" + style="fill:none" /> + <rect + id="rect90829-20" + width="12" + height="6" + x="88" + y="677" + style="opacity:0.2;fill:#ffffff" /> + </g> + <g + id="tab-normal-bottomright" + transform="matrix(0,-1,-1,0,741,773.00001)" + style="opacity:0"> + <rect + id="rect90821-2" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="path90823-3" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:0.2;fill:#ffffff" /> + </g> + <g + id="tab-normal-bottomleft" + transform="matrix(1,0,0,-1,-42.00001,1368)" + style="opacity:0"> + <rect + id="rect90815-7" + width="8" + height="8" + x="80" + y="675" + style="fill:none" /> + <path + id="path90817-5" + d="m 88,677 c -3.324,0 -6,2.676 -6,6 h 6 z" + style="opacity:0.2;fill:#ffffff" /> + </g> + <g + id="slidercursor-focused"> + <circle + id="path64528" + cx="390" + cy="310" + style="opacity:0.15;fill:#ffffff;stroke-width:0.999546" + r="11" /> + <path + id="path64497" + class="ColorScheme-Highlight" + d="M 390 303 C 386.1577 303 383 306.1577 383 310 C 383 313.8423 386.1577 317 390 317 L 390.00195 317 L 390.00391 317 C 391.81032 316.99711 393.54284 316.29331 394.8418 315.04492 L 394.89844 315.00195 L 399.80078 310 L 398.42773 308.59961 L 395.0293 305.13281 C 393.71154 303.77081 391.89527 303.00042 390 303 z M 390 305 C 391.3543 305.0003 392.65015 305.55011 393.5918 306.52344 L 397 310 L 393.57617 313.49414 C 393.57217 313.49714 393.5665 313.498 393.5625 313.5 C 392.6239 314.45706 391.3405 314.998 390 315 C 387.2386 315 385 312.7614 385 310 C 385 307.2386 387.2386 305 390 305 z " + style="fill:#3584e4;fill-opacity:1" /> + <path + d="m 397,310.0001 -3.4079,-3.4767 C 392.65045,305.55007 391.3543,305.0003 390,305 c -2.7614,0 -5,2.2386 -5,5 0,2.7614 2.2386,5 5,5 1.3405,-0.002 2.6242,-0.54194 3.5628,-1.499 0.004,-0.002 0.009,-0.004 0.013,-0.007 z" + id="path64499" + style="fill:#2c2c2c;fill-opacity:1" /> + </g> + <g + id="slidercursor-pressed" + transform="translate(22.2,-8e-5)"> + <circle + id="circle64788" + cx="390" + cy="310" + style="opacity:0.15;fill:#ffffff;stroke-width:0.999546" + r="11" /> + <path + id="path64790" + class="ColorScheme-Highlight" + d="M 412.19922 303 C 408.35692 303 405.19922 306.1577 405.19922 310 C 405.19922 313.8423 408.35692 317 412.19922 317 L 412.20117 317 L 412.20312 317 C 414.00954 316.99711 415.74206 316.29331 417.04102 315.04492 L 417.09766 315.00195 L 422 310 L 420.62695 308.59961 L 417.22852 305.13281 C 415.91076 303.77081 414.09449 303.00042 412.19922 303 z M 412.40039 306 C 413.48383 306.00024 414.52012 306.44009 415.27344 307.21875 L 418 310 L 415.25977 312.79492 C 415.25637 312.79792 415.253 312.79878 415.25 312.80078 C 414.49912 313.56643 413.47279 313.998 412.40039 314 C 410.19127 314 408.40039 312.20912 408.40039 310 C 408.40039 307.79088 410.19127 306 412.40039 306 z " + transform="translate(-22.2,8e-5)" + style="fill:#3584e4;fill-opacity:1" /> + <path + d="m 395.8,310.00008 -2.72632,-2.78136 C 392.32036,306.44006 391.28344,306.00024 390.2,306 c -2.20912,0 -4,1.79088 -4,4 0,2.20912 1.79088,4 4,4 1.0724,-0.002 2.09936,-0.43355 2.85024,-1.1992 0.003,-0.002 0.007,-0.003 0.0104,-0.006 z" + id="path64792" + style="fill:#2c2c2c;fill-opacity:1;stroke-width:0.8" /> + </g> + <g + id="slidercursor-tickless-disabled" + transform="translate(17,-128)"> + <rect + x="317" + y="405" + width="22" + height="22" + opacity="0.00100002" + id="rect64880" /> + <path + id="circle64882" + style="opacity:0.35;fill:#3584e4;fill-opacity:1" + class="ColorScheme-Highlight" + d="M 345 280 A 8 8 0 0 0 337 288 A 8 8 0 0 0 345 296 A 8 8 0 0 0 353 288 A 8 8 0 0 0 345 280 z M 345 282 A 6 6 0 0 1 351 288 A 6 6 0 0 1 345 294 A 6 6 0 0 1 339 288 A 6 6 0 0 1 345 282 z " + transform="translate(-17,128)" /> + <circle + cx="328" + cy="416" + r="6" + id="circle64884" + style="fill:#2c2c2c;fill-opacity:1;stroke-width:1.2" /> + </g> + <g + id="slidercursor-disabled" + transform="translate(17,-128)"> + <rect + x="317" + y="427" + width="22" + height="22" + opacity="0.00100002" + id="rect64888" /> + <path + id="path64890" + style="opacity:0.35;fill:#3584e4;fill-opacity:1" + class="ColorScheme-Highlight" + d="M 345 303 C 341.1577 303 338 306.1577 338 310 C 338 313.8423 341.1577 317 345 317 L 345.00195 317 L 345.00391 317 C 346.81032 316.99711 348.54284 316.29331 349.8418 315.04492 L 349.89844 315.00195 L 354.80078 310 L 353.42773 308.59961 L 350.0293 305.13281 C 348.71154 303.77081 346.89527 303.00042 345 303 z M 345 305 C 346.3543 305.0003 347.65015 305.55011 348.5918 306.52344 L 352 310 L 348.57617 313.49414 C 348.57217 313.49714 348.5665 313.498 348.5625 313.5 C 347.6239 314.45706 346.3405 314.998 345 315 C 342.2386 315 340 312.7614 340 310 C 340 307.2386 342.2386 305 345 305 z " + transform="translate(-17,128)" /> + <path + d="m 335,438 -3.4079,-3.4767 c -0.94165,-0.97333 -2.2378,-1.5231 -3.5921,-1.5234 -2.7614,0 -5,2.2386 -5,5 0,2.7614 2.2386,5 5,5 1.3405,-0.002 2.6242,-0.54194 3.5628,-1.499 0.004,-0.002 0.009,-0.004 0.013,-0.007 z" + id="path64892" + style="fill:#2c2c2c;fill-opacity:1" /> + </g> + <g + id="lineedit-normal" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;fill-opacity:1" + id="rect43255" + width="3.175" + height="1.5875" + x="34.395832" + y="27.78125" /> + </g> + <g + id="lineedit-normal-left" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect43257" + width="1.5875" + height="1.5875" + x="32.808334" + y="27.78125" /> + </g> + <g + id="lineedit-normal-top" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;fill-opacity:1" + id="rect43253" + width="3.175" + height="1.5875" + x="34.395832" + y="26.19375" /> + </g> + <g + id="lineedit-normal-topright" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <use + x="0" + y="0" + xlink:href="#rect43263" + id="use43516" + transform="rotate(90,35.983333,29.36875)" + width="100%" + height="100%" /> + </g> + <g + id="lineedit-normal-topleft" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <path + id="rect43263" + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0943911;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 130,99 c -3.324,0 -6,2.676 -6,6 h 6 z" + transform="scale(0.26458333)" /> + </g> + <g + id="lineedit-normal-bottomright" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <use + x="0" + y="0" + xlink:href="#rect43263" + id="use43520" + transform="rotate(180,35.983333,28.575)" + width="100%" + height="100%" /> + </g> + <g + id="lineedit-normal-bottomleft" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <use + x="0" + y="0" + xlink:href="#rect43263" + id="use43524" + transform="rotate(-90,35.189583,28.575)" + width="100%" + height="100%" /> + </g> + <g + id="lineedit-normal-right" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <use + x="0" + y="0" + xlink:href="#rect43257" + id="use43688" + transform="matrix(-1,0,0,1,71.966668,0)" + width="100%" + height="100%" /> + </g> + <g + id="lineedit-normal-bottom" + transform="matrix(3.7795276,0,0,3.7795276,169,-51.000001)"> + <use + x="0" + y="0" + xlink:href="#rect43253" + id="use43692" + transform="matrix(1,0,0,-1,0,57.150001)" + width="100%" + height="100%" /> + </g> + <g + id="lineedit-focused" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;fill-opacity:1" + id="rect44039" + width="3.175" + height="1.5875" + x="34.395832" + y="27.78125" /> + </g> + <g + id="lineedit-focused-left" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect44043" + width="1.5875" + height="1.5875" + x="32.808334" + y="27.78125" /> + <rect + class="ColorScheme-Highlight" + fill="currentColor" + id="rect44045" + width="0.52916664" + height="1.5875" + x="32.808334" + y="27.78125" + style="fill:#587392;fill-opacity:1" /> + </g> + <g + id="lineedit-focused-top" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;fill-opacity:1" + id="rect44049" + width="3.175" + height="1.5875" + x="34.395832" + y="26.19375" /> + <rect + class="ColorScheme-Highlight" + fill="currentColor" + id="rect44051" + width="3.175" + height="0.52916664" + x="34.395832" + y="26.19375" + style="fill:#587392;fill-opacity:1" /> + </g> + <g + id="lineedit-focused-topright" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <path + id="use44055" + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 39.158333,27.78125 c 0,-0.879475 -0.708025,-1.5875 -1.5875,-1.5875 v 1.5875 z" /> + <path + id="use44057" + class="ColorScheme-Highlight" + fill="currentColor" + d="m 39.158333,27.78125 c 0,-0.879475 -0.708025,-1.5875 -1.5875,-1.5875 v 0.529167 c 0.586317,0 1.058334,0.472016 1.058334,1.058333 z" + style="fill:#587392;fill-opacity:1" /> + </g> + <g + id="lineedit-focused-topleft" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <path + id="path44061" + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0943911;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 130,99 c -3.324,0 -6,2.676 -6,6 h 6 z" + transform="scale(0.26458333)" /> + <path + id="path44063" + class="ColorScheme-Highlight" + fill="currentColor" + d="m 130,99 c -3.324,0 -6,2.676 -6,6 h 2 c 0,-2.216 1.784,-4 4,-4 z" + transform="scale(0.26458333)" + style="fill:#587392;fill-opacity:1" /> + </g> + <g + id="lineedit-focused-bottomright" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <path + id="use44067" + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 37.570833,30.95625 c 0.879475,0 1.5875,-0.708025 1.5875,-1.5875 h -1.5875 z" /> + <path + id="use44069" + class="ColorScheme-Highlight" + fill="currentColor" + d="m 37.570833,30.95625 c 0.879475,0 1.5875,-0.708025 1.5875,-1.5875 h -0.529167 c 0,0.586317 -0.472016,1.058334 -1.058333,1.058334 z" + style="fill:#587392;fill-opacity:1" /> + </g> + <g + id="lineedit-focused-bottomleft" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <path + id="use44073" + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 32.808333,29.36875 c 0,0.879475 0.708025,1.5875 1.5875,1.5875 v -1.5875 z" /> + <path + id="use44075" + class="ColorScheme-Highlight" + fill="currentColor" + d="m 32.808333,29.36875 c 0,0.879475 0.708025,1.5875 1.5875,1.5875 v -0.529167 c -0.586317,0 -1.058334,-0.472016 -1.058334,-1.058333 z" + style="fill:#587392;fill-opacity:1" /> + </g> + <g + id="lineedit-focused-right" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="use44079" + width="1.5875" + height="1.5875" + x="-39.158333" + y="27.78125" + transform="scale(-1,1)" /> + <rect + class="ColorScheme-Highlight" + fill="currentColor" + id="use44081" + width="0.52916664" + height="1.5875" + x="-39.158333" + y="27.78125" + transform="scale(-1,1)" + style="fill:#587392;fill-opacity:1" /> + </g> + <g + id="lineedit-focused-bottom" + transform="matrix(3.7795276,0,0,3.7795276,204,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;fill-opacity:1" + id="use44085" + width="3.175" + height="1.5875" + x="34.395832" + y="-30.956251" + transform="scale(1,-1)" /> + <rect + class="ColorScheme-Highlight" + fill="currentColor" + id="use44087" + width="3.175" + height="0.52916664" + x="34.395832" + y="-30.956251" + transform="scale(1,-1)" + style="fill:#587392;fill-opacity:1" /> + </g> + <g + id="combo-normal" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;fill-opacity:1" + id="rect44091" + width="3.175" + height="1.5875" + x="34.395832" + y="27.78125" /> + </g> + <g + id="combo-normal-left" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect44095" + width="1.5875" + height="1.5875" + x="32.808334" + y="27.78125" /> + </g> + <g + id="combo-normal-top" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;fill-opacity:1" + id="rect44101" + width="3.175" + height="1.5875" + x="34.395832" + y="26.19375" /> + </g> + <g + id="combo-normal-topright" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <path + id="use44107" + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 39.158333,27.78125 c 0,-0.879475 -0.708025,-1.5875 -1.5875,-1.5875 v 1.5875 z" /> + </g> + <g + id="combo-normal-topleft" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <path + id="path44113" + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0943911;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 130,99 c -3.324,0 -6,2.676 -6,6 h 6 z" + transform="scale(0.26458333)" /> + </g> + <g + id="combo-normal-bottomright" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <use + x="0" + y="0" + xlink:href="#rect43263" + id="use44119" + transform="rotate(180,35.983333,28.575)" + width="100%" + height="100%" /> + </g> + <g + id="combo-normal-bottomleft" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <path + id="use44125" + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 32.808333,29.36875 c 0,0.879475 0.708025,1.5875 1.5875,1.5875 v -1.5875 z" /> + </g> + <g + id="combo-normal-right" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="use44131" + width="1.5875" + height="1.5875" + x="-39.158333" + y="27.78125" + transform="scale(-1,1)" /> + </g> + <g + id="combo-normal-bottom" + transform="matrix(3.7795276,0,0,3.7795276,249,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;fill-opacity:1" + id="use44137" + width="3.175" + height="1.5875" + x="34.395832" + y="-30.956251" + transform="scale(1,-1)" /> + </g> + <g + id="combo-focused" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;fill-opacity:1" + id="rect44143" + width="3.175" + height="1.5875" + x="34.395832" + y="27.78125" /> + </g> + <g + id="combo-focused-left" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="rect44147" + width="1.5875" + height="1.5875" + x="32.808334" + y="27.78125" /> + <rect + style="opacity:0.15;fill:#ffffff;stroke:none;stroke-width:0.0144189;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + id="rect44149" + width="0.52916664" + height="1.5875" + x="32.808334" + y="27.78125" /> + </g> + <g + id="combo-focused-top" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;fill-opacity:1" + id="rect44153" + width="3.175" + height="1.5875" + x="34.395832" + y="26.19375" /> + <rect + style="opacity:0.15;fill:#ffffff;stroke:none;stroke-width:0.0203914;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + id="rect44155" + width="3.175" + height="0.52916664" + x="34.395832" + y="26.19375" /> + </g> + <g + id="combo-focused-topright" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <path + id="use44159" + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 39.158333,27.78125 c 0,-0.879475 -0.708025,-1.5875 -1.5875,-1.5875 v 1.5875 z" /> + <path + id="use44161" + style="opacity:0.15;fill:#ffffff;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + d="m 39.158333,27.78125 c 0,-0.879475 -0.708025,-1.5875 -1.5875,-1.5875 v 0.529167 c 0.586317,0 1.058334,0.472016 1.058334,1.058333 z" /> + </g> + <g + id="combo-focused-topleft" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <path + id="path44165" + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0943911;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 130,99 c -3.324,0 -6,2.676 -6,6 h 6 z" + transform="scale(0.26458333)" /> + <path + id="path44167" + style="opacity:0.15;fill:#ffffff;stroke:none;stroke-width:0.0943911;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + d="m 130,99 c -3.324,0 -6,2.676 -6,6 h 2 c 0,-2.216 1.784,-4 4,-4 z" + transform="scale(0.26458333)" /> + </g> + <g + id="combo-focused-bottomright" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <path + id="use44171" + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 37.570833,30.95625 c 0.879475,0 1.5875,-0.708025 1.5875,-1.5875 h -1.5875 z" /> + <path + id="use44173" + style="opacity:0.15;fill:#ffffff;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + d="m 37.570833,30.95625 c 0.879475,0 1.5875,-0.708025 1.5875,-1.5875 h -0.529167 c 0,0.586317 -0.472016,1.058334 -1.058333,1.058334 z" /> + </g> + <g + id="combo-focused-bottomleft" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <path + id="use44177" + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + d="m 32.808333,29.36875 c 0,0.879475 0.708025,1.5875 1.5875,1.5875 v -1.5875 z" /> + <path + id="use44179" + style="opacity:0.15;fill:#ffffff;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + d="m 32.808333,29.36875 c 0,0.879475 0.708025,1.5875 1.5875,1.5875 v -0.529167 c -0.586317,0 -1.058334,-0.472016 -1.058334,-1.058333 z" /> + </g> + <g + id="combo-focused-right" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;stroke:none;stroke-width:0.0249743;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006;fill-opacity:1" + id="use44183" + width="1.5875" + height="1.5875" + x="-39.158333" + y="27.78125" + transform="scale(-1,1)" /> + <rect + style="opacity:0.15;fill:#ffffff;stroke:none;stroke-width:0.0144189;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + id="use44185" + width="0.52916664" + height="1.5875" + x="-39.158333" + y="27.78125" + transform="scale(-1,1)" /> + </g> + <g + id="combo-focused-bottom" + transform="matrix(3.7795276,0,0,3.7795276,287,-51.000001)"> + <rect + style="opacity:1;fill:#2e2e32;fill-opacity:1" + id="use44189" + width="3.175" + height="1.5875" + x="34.395832" + y="-30.956251" + transform="scale(1,-1)" /> + <rect + style="opacity:0.15;fill:#ffffff;stroke:none;stroke-width:0.0203914;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000006" + id="use44191" + width="3.175" + height="0.52916664" + x="34.395832" + y="-30.956251" + transform="scale(1,-1)" /> + </g> + <g + id="resize-grip-focused" + transform="translate(0,31)"> + <rect + x="460" + y="0" + width="24" + height="24" + opacity="0" + id="rect13860" + style="stroke-width:0.96" /> + <path + d="M 484,7.9999968 468,24 h 16 z" + id="path13862" + style="opacity:0.2;fill:#ffffff;stroke-width:0.914286" /> + </g> + <g + id="scrollbarslider-focused-topright" + transform="matrix(-1,0,0,1,162,0)"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect1941" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path1943" + style="stroke-width:0.888889;fill:#4b4b4b;opacity:1;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-focused-bottomleft" + transform="matrix(1,0,0,-1,0,1743)"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect1947" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path1949" + style="stroke-width:0.888889;fill:#4b4b4b;opacity:1;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-focused-bottomright" + transform="rotate(180,81,871.5)"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect1953" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path1955" + style="stroke-width:0.888889;fill:#4b4b4b;opacity:1;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-focused-right" + transform="matrix(-1,0,0,1,162,0)"> + <rect + x="69" + y="860" + width="12" + height="23" + id="rect2069" + style="fill:none" /> + <path + d="m 73,860 v 23 h 8 v -23 z" + fill="#c1c1c1" + id="path2071" + style="fill:#4b4b4b;opacity:1;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-pressed-topleft" + transform="translate(32)"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect2157" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path2159" + style="stroke-width:0.888889;fill:#707070;opacity:1;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-pressed-left" + transform="translate(32)"> + <rect + x="69" + y="860" + width="12" + height="23" + id="rect2163" + style="fill:none" /> + <path + d="m 73,860 v 23 h 8 v -23 z" + fill="#c1c1c1" + id="path2165" + style="fill:#707070;opacity:1;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-pressed-topright" + transform="matrix(-1,0,0,1,194,0)"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect2169" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path2171" + style="stroke-width:0.888889;fill:#707070;opacity:1;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-pressed-bottomleft" + transform="matrix(1,0,0,-1,32,1743)"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect2175" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path2177" + style="stroke-width:0.888889;fill:#707070;opacity:1;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-pressed-bottomright" + transform="rotate(180,97,871.5)"> + <rect + x="69" + y="848" + width="12" + height="12" + opacity="0" + id="rect2181" /> + <path + d="m 81,852 c -4.812044,0 -8,3.20014 -8,8 h 8 z" + fill="#c1c1c1" + id="path2183" + style="stroke-width:0.888889;fill:#707070;opacity:1;fill-opacity:1" /> + </g> + <g + id="scrollbarslider-pressed-right" + transform="matrix(-1,0,0,1,194,0)"> + <rect + x="69" + y="860" + width="12" + height="23" + id="rect2187" + style="fill:none" /> + <path + d="m 73,860 v 23 h 8 v -23 z" + fill="#c1c1c1" + id="path2189" + style="fill:#707070;opacity:1;fill-opacity:1" /> + </g> + <g + id="tab-close-normal"> + <rect + width="22" + height="22" + opacity="0.00100002" + id="rect863" + x="259.76001" + y="686.35999" /> + <path + id="rect1993" + style="fill:#dfdfdf" + d="m 266.87134,692.97131 c -0.12781,0 -0.25558,0.0485 -0.35352,0.14649 -0.19587,0.19587 -0.19587,0.51116 0,0.70703 l 3.53516,3.53516 -3.53516,3.53515 c -0.19587,0.19587 -0.19587,0.51117 0,0.70703 0.19587,0.19587 0.51117,0.19587 0.70703,0 l 3.53516,-3.53515 3.53516,3.53515 c 0.19586,0.19587 0.51116,0.19587 0.70703,0 0.19587,-0.19586 0.19587,-0.51116 0,-0.70703 l -3.53516,-3.53515 3.53516,-3.53516 c 0.19587,-0.19587 0.19587,-0.51116 0,-0.70703 -0.19587,-0.19587 -0.51117,-0.19587 -0.70703,0 l -3.53516,3.53516 -3.53516,-3.53516 c -0.0979,-0.0979 -0.2257,-0.14649 -0.35351,-0.14649 z" /> + </g> + <g + id="tab-close-focused"> + <rect + x="282.76001" + width="22" + height="22" + opacity="0.00100002" + id="rect888" + y="686.35999" /> + <circle + cx="293.76001" + cy="697.35999" + r="11" + id="circle890" + style="opacity:0.08;fill:#ffffff" /> + <path + id="path2486" + d="m 289.87134,692.97131 c -0.12781,0 -0.25558,0.0485 -0.35352,0.14649 -0.19587,0.19587 -0.19587,0.51116 0,0.70703 l 3.53516,3.53516 -3.53516,3.53515 c -0.19587,0.19587 -0.19587,0.51117 0,0.70703 0.19587,0.19587 0.51117,0.19587 0.70703,0 l 3.53516,-3.53515 3.53516,3.53515 c 0.19586,0.19587 0.51116,0.19587 0.70703,0 0.19587,-0.19586 0.19587,-0.51116 0,-0.70703 l -3.53516,-3.53515 3.53516,-3.53516 c 0.19587,-0.19587 0.19587,-0.51116 0,-0.70703 -0.19587,-0.19587 -0.51117,-0.19587 -0.70703,0 l -3.53516,3.53516 -3.53516,-3.53516 c -0.0979,-0.0979 -0.2257,-0.14649 -0.35351,-0.14649 z" + style="fill:#ffffff" /> + </g> + <g + id="tab-close-pressed" + transform="translate(25.12866)"> + <rect + x="282.76001" + width="22" + height="22" + opacity="0.00100002" + id="rect2693" + y="686.35999" /> + <circle + cx="293.76001" + cy="697.35999" + r="11" + id="circle2695" + style="opacity:0.2;fill:#ffffff" /> + <path + id="path2697" + d="m 289.87134,692.97131 c -0.12781,0 -0.25558,0.0485 -0.35352,0.14649 -0.19587,0.19587 -0.19587,0.51116 0,0.70703 l 3.53516,3.53516 -3.53516,3.53515 c -0.19587,0.19587 -0.19587,0.51117 0,0.70703 0.19587,0.19587 0.51117,0.19587 0.70703,0 l 3.53516,-3.53515 3.53516,3.53515 c 0.19586,0.19587 0.51116,0.19587 0.70703,0 0.19587,-0.19586 0.19587,-0.51116 0,-0.70703 l -3.53516,-3.53515 3.53516,-3.53516 c 0.19587,-0.19587 0.19587,-0.51116 0,-0.70703 -0.19587,-0.19587 -0.51117,-0.19587 -0.70703,0 l -3.53516,3.53516 -3.53516,-3.53516 c -0.0979,-0.0979 -0.2257,-0.14649 -0.35351,-0.14649 z" + style="fill:#ffffff" /> + </g> + <g + id="g2803" + transform="translate(78.53296)"> + <rect + width="22" + height="22" + opacity="0.00100002" + id="rect2799" + x="259.76001" + y="686.35999" /> + <path + id="path2801" + style="fill:#dfdfdf;opacity:0.35" + d="m 266.87134,692.97131 c -0.12781,0 -0.25558,0.0485 -0.35352,0.14649 -0.19587,0.19587 -0.19587,0.51116 0,0.70703 l 3.53516,3.53516 -3.53516,3.53515 c -0.19587,0.19587 -0.19587,0.51117 0,0.70703 0.19587,0.19587 0.51117,0.19587 0.70703,0 l 3.53516,-3.53515 3.53516,3.53515 c 0.19586,0.19587 0.51116,0.19587 0.70703,0 0.19587,-0.19586 0.19587,-0.51116 0,-0.70703 l -3.53516,-3.53515 3.53516,-3.53516 c 0.19587,-0.19587 0.19587,-0.51116 0,-0.70703 -0.19587,-0.19587 -0.51117,-0.19587 -0.70703,0 l -3.53516,3.53516 -3.53516,-3.53516 c -0.0979,-0.0979 -0.2257,-0.14649 -0.35351,-0.14649 z" /> + </g> + <rect + style="fill:#4f4f4f;fill-opacity:1;stroke-width:1.99937;stroke-linejoin:round;paint-order:fill markers stroke" + id="button-focused" + width="26" + height="26" + x="57" + y="42" /> + <rect + style="fill:#797979;fill-opacity:1;stroke-width:1.99937;stroke-linejoin:round;paint-order:fill markers stroke;opacity:1" + id="button-pressed" + width="26" + height="26" + x="104" + y="42" /> + <use + x="0" + y="0" + xlink:href="#tooltip-shadow-top" + id="tooltip-shadow-left" + transform="rotate(-90,314.99986,595.00005)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#tooltip-shadow-top" + id="tooltip-shadow-bottom" + transform="rotate(180,314.9999,595)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#tooltip-shadow-top" + id="tooltip-shadow-right" + transform="rotate(90,314.99996,595.00005)" + width="100%" + height="100%" /> + <path + id="tooltip-normal" + d="m 384.99991,572.00001 h 48 v 48 h -48 z" + style="fill:#000006;fill-opacity:0.8" /> + <g + id="tooltip-normal-left" + transform="translate(262.73991,-131.74999)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path1202" + style="opacity:1;fill:#000006;fill-opacity:0.8" /> + </g> + <g + id="tooltip-normal-topleft" + transform="translate(262.73761,-132.74999)"> + <path + d="m 122.26,698.75 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path1205" + style="opacity:1;fill:#000006;fill-opacity:0.8" /> + </g> + <g + id="tooltip-normal-top" + transform="rotate(90,343.50495,793.24496)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path1208" + style="opacity:1;fill:#000006;fill-opacity:0.8" /> + </g> + <g + id="tooltip-normal-topright" + transform="rotate(90,344.0061,793.74381)"> + <path + d="m 122.26,698.75 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path1211" + style="opacity:1;fill:#000006;fill-opacity:0.8" /> + </g> + <g + id="tooltip-normal-right" + transform="matrix(-1,0,0,1,555.25991,-131.74999)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path1214" + style="opacity:1;fill:#000006;fill-opacity:0.8" /> + </g> + <g + id="tooltip-normal-bottomright" + transform="rotate(180,277.6311,662.375)"> + <path + d="m 122.26,698.75 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path1217" + style="opacity:1;fill:#000006;fill-opacity:0.8" /> + </g> + <g + id="tooltip-normal-bottom" + transform="rotate(-90,211.75496,530.50505)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path1220" + style="opacity:1;fill:#000006;fill-opacity:0.8" /> + </g> + <g + id="tooltip-normal-bottomleft" + transform="rotate(-90,211.25611,531.0062)"> + <path + d="m 122.26,698.75 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path1223" + style="opacity:1;fill:#000006;fill-opacity:0.8" /> + </g> + <g + id="tooltip-shadow-top" + transform="translate(226.86991,-315.7199)"> + <rect + transform="scale(1,-1)" + x="63.130001" + y="-879.71997" + width="50" + height="7" + id="rect1230" + style="opacity:0.35;fill:url(#linearGradient4646-3)" /> + <path + d="m 63.13,879.72 h 50 v 5.99991 h -50 z" + id="path1226" + style="opacity:1;fill:#000006;fill-opacity:0.8;stroke-width:0.755923" /> + <path + d="m 63.13,878.72 h 50 v 1 h -50 z" + id="path5786" + style="opacity:0.75;fill:#ffffff;fill-opacity:0.1;stroke-width:0.755923" /> + </g> + <rect + id="tooltip-shadow-hint-top" + x="312.99991" + y="557" + width="2" + height="7" + fill="#b74aff" /> + <rect + id="tooltip-shadow-hint-right" + transform="rotate(-90)" + x="-598" + y="345.99991" + width="2" + height="7" + fill="#b74aff" /> + <rect + id="tooltip-shadow-hint-bottom" + x="312.99991" + y="626" + width="2" + height="7" + fill="#b74aff" /> + <rect + id="tooltip-shadow-hint-left" + transform="rotate(-90)" + x="-598.98999" + y="276.9899" + width="2" + height="7" + fill="#b74aff" /> + <g + id="tooltip-shadow-topleft" + transform="translate(13.010911,-5.9902915)"> + <path + d="m 276.99,562.99 c -8.077,0 -13,4.9229 -13,13 h 7 a 6,6 0 0 1 6,-6 z" + style="opacity:0.35;isolation:auto;mix-blend-mode:normal;fill:url(#radialGradient4192-7);fill-rule:nonzero;shape-rendering:auto" + id="path1273" /> + <path + id="path5519" + style="opacity:0.75;fill:#ffffff;fill-opacity:0.1;fill-rule:nonzero;shape-rendering:auto" + d="M 276.98828,569.00195 A 6.989,6.989 0 0 0 270,575.99023 h 0.98828 a 6,6 0 0 1 6,-6 z" /> + <path + d="m 270.989,575.9903 a 6,6 0 0 1 6,-6 v 6 z" + id="path1275" + style="opacity:1;fill:#000006;fill-opacity:0.8" /> + </g> + <use + x="0" + y="0" + xlink:href="#tooltip-shadow-topleft" + id="tooltip-shadow-topright" + transform="rotate(90,314.99991,595.00001)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#tooltip-shadow-topleft" + id="tooltip-shadow-bottomright" + transform="rotate(180,314.9999,595)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#tooltip-shadow-topleft" + id="tooltip-shadow-bottomleft" + transform="rotate(-90,314.99991,595.00001)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#menu-shadow-top" + id="menu-shadow-left" + transform="rotate(-90,67.9999,505.9999)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#menu-shadow-top" + id="menu-shadow-bottom" + transform="rotate(180,67.9999,506)" + width="100%" + height="100%" /> + <use + x="0" + y="0" + xlink:href="#menu-shadow-top" + id="menu-shadow-right" + transform="rotate(90,67.99998,506.00002)" + width="100%" + height="100%" /> + <path + id="menuitem-normal-top" + d="m 213,502 h 8 v 4 h -8 z" + fill="#ffffff" + opacity="0.1" /> + <path + id="menuitem-normal-bottom" + d="m 213,514 h 8 v 4 h -8 z" + fill="#ffffff" + fill-rule="evenodd" + opacity="0.1" + stroke-width="0.632458" /> + <path + id="menuitem-normal" + d="m 213,506 h 8 v 8 h -8 z" + fill="#ffffff" + opacity="0.1" /> + <g + id="menuitem-normal-topleft" + transform="translate(16,7)"> + <path + d="m 189,495 v 2 h 2 v -2 z" + fill="none" + style="paint-order:normal" + id="path1685" /> + <path + d="m 197,495 c -2.216,0 -4,1.784 -4,4 h 4 z" + fill="#ffffff" + opacity="0.1" + id="path1687" /> + <rect + style="opacity:0;fill:#ffffff;fill-opacity:1;stroke-width:3.26599;stroke-linecap:round" + id="rect8366-6" + width="4" + height="4" + x="185" + y="495" /> + </g> + <g + id="menuitem-normal-left" + transform="matrix(1.5,0,0,1,-79.5,9)" + fill-rule="evenodd"> + <path + d="m 187,497 h 4 v 8 h -4 z" + fill="none" + id="path1690" /> + <path + d="M 192.33333,497 H 195 v 8 h -2.66667 z" + fill="#ffffff" + opacity="0.1" + id="path1692" + style="stroke-width:0.816496" /> + </g> + <use + id="menuitem-normal-topright" + transform="matrix(-1,0,0,1,434,0)" + width="100%" + height="100%" + xlink:href="#menuitem-normal-topleft" + x="0" + y="0" /> + <use + id="menuitem-normal-right" + transform="matrix(-1,0,0,1,434,0)" + width="100%" + height="100%" + xlink:href="#menuitem-normal-left" + x="0" + y="0" /> + <use + id="menuitem-normal-bottomright" + transform="rotate(180,217,510)" + width="100%" + height="100%" + xlink:href="#menuitem-normal-topleft" + x="0" + y="0" /> + <use + id="menuitem-normal-bottomleft" + transform="matrix(1,0,0,-1,0,1020)" + width="100%" + height="100%" + xlink:href="#menuitem-normal-topleft" + x="0" + y="0" /> + <path + id="menu-normal" + d="m 131,482 h 48 v 48 h -48 z" + style="fill:#2e2e32;fill-opacity:1" /> + <g + id="menu-normal-left" + transform="matrix(1.3333333,0,0,1,-33.013329,-221.75)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path2243" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + </g> + <g + id="menu-normal-topleft" + transform="matrix(1.3333333,0,0,1.3333333,-33.013329,-458.66664)"> + <path + d="m 122.26,698.75 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path2246" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + </g> + <g + id="menu-normal-top" + transform="matrix(0,1.3333333,-1,0,882.75,317.98667)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path2249" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + </g> + <g + id="menu-normal-topright" + transform="matrix(0,1.3333333,-1.3333333,0,1119.6723,317.9836)"> + <path + d="m 122.26,698.75 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path2252" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + </g> + <g + id="menu-normal-right" + transform="matrix(-1.3333333,0,0,1,343.01041,-221.75)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path2255" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + </g> + <g + id="menu-normal-bottomright" + transform="matrix(-1.3333333,0,0,-1.3333333,343.01271,1470.6723)"> + <path + d="m 122.26,698.75 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path2258" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + </g> + <g + id="menu-normal-bottom" + transform="matrix(0,-1.3333333,1,0,-572.75,694.01041)"> + <path + d="m 116.26,703.75 h 6 v 48 h -6 z" + id="path2261" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + </g> + <g + id="menu-normal-bottomleft" + transform="matrix(0,-1.3333333,1.3333333,0,-809.65331,715.33276)"> + <path + d="m 138.25,698.74 c -3.3229,10e-4 -5.9977,2.6768 -5.9977,6 h 6 z" + id="path2264" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + </g> + <g + id="menu-shadow-topleft" + transform="matrix(4,0,0,4,-53,-1411)"> + <path + id="path2274" + style="opacity:0.2;fill:url(#radialGradient4839-3)" + d="m -1,448 v 24 h 16 c 0,-4.432 3.568,-8 8,-8 v -16 z" + transform="matrix(0.25,0,0,0.25,18.25,355)" /> + <path + d="m 24,471 c -1.108,0 -2,0.892 -2,2 h 2 z" + id="path2276" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + <path + id="path19231" + style="opacity:0.1;fill:#ffffff" + d="m 23,464 c -4.432,0 -8,3.568 -8,8 h 1 c 0,-3.878 3.122,-7 7,-7 z" + transform="matrix(0.25,0,0,0.25,18.25,355)" /> + </g> + <g + id="menu-shadow-top" + transform="matrix(0.85714,0,0,4,23.4286,-1407)"> + <path + d="m 24,470 h 56 v 2 H 24 Z" + id="path2279" + style="opacity:1;fill:#2e2e32;fill-opacity:1" /> + <rect + transform="scale(1,-1)" + x="24" + y="-470" + width="56" + height="4" + id="rect2281" + style="opacity:0.2;fill:url(#linearGradient4863-5)" /> + <path + d="m 24,470 h 56 v 0.25 H 24 Z" + id="path19272" + style="opacity:0.1;fill:#ffffff" /> + </g> + <use + id="menu-shadow-topright" + transform="matrix(-1,0,0,1,136,0)" + width="100%" + height="100%" + xlink:href="#menu-shadow-topleft" + x="0" + y="0" /> + <rect + id="menu-shadow-hint-bottom" + x="67" + y="539" + width="2" + height="16" + fill="#b74aff" + fill-rule="evenodd" + stroke-width="1.13137" /> + <rect + id="menu-shadow-hint-right" + transform="rotate(-90)" + x="-507" + y="101" + width="2" + height="16" + fill="#b74aff" + fill-rule="evenodd" + stroke-width="1.13137" /> + <rect + id="menu-shadow-hint-left" + transform="rotate(-90)" + x="-507" + y="19" + width="2" + height="16" + fill="#b74aff" + fill-rule="evenodd" + stroke-width="1.13137" /> + <rect + id="menu-shadow-hint-top" + x="67" + y="457" + width="2" + height="16" + fill="#b74aff" + fill-rule="evenodd" + stroke-width="1.13138" /> + <use + id="menu-shadow-bottomright" + transform="rotate(180,68,506)" + width="100%" + height="100%" + xlink:href="#menu-shadow-topleft" + x="0" + y="0" /> + <use + id="menu-shadow-bottomleft" + transform="matrix(1,0,0,-1,0,1012)" + width="100%" + height="100%" + xlink:href="#menu-shadow-topleft" + x="0" + y="0" /> + <g + style="display:inline;fill:#000006;fill-rule:evenodd;stroke:none;stroke-width:0.816495" + transform="matrix(0,0.95999981,2,0,-780,239.16013)" + id="mask-left"> + <path + style="fill:#000006;fill-opacity:1;stroke:none;stroke-width:0.816495" + d="m 253.99999,347 h 50 l 10e-6,4 h -50 z" + id="path4486" + inkscape:connector-curvature="0" /> + </g> + <rect + style="display:inline;fill:#000006;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.96" + y="483.00006" + x="-77" + height="48" + width="48" + id="mask-center" /> + <path + inkscape:connector-curvature="0" + id="mask-topright" + d="m -20,482 a 7.9999957,7.9999957 0 0 0 -8,-8 v 8 z" + style="color:#000006;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000006;solid-opacity:1;fill:#000006;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.472444;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <g + style="display:inline;fill:#000006;fill-rule:evenodd;stroke:none;stroke-width:0.816496" + id="mask-top" + transform="matrix(1,0,0,2,-330.99999,-220)"> + <path + style="fill:#000006;fill-opacity:1;stroke:none;stroke-width:0.799999" + d="m 253.99999,347 h 47.99999 l 1e-5,4 H 254 Z" + id="path4128" + inkscape:connector-curvature="0" /> + </g> + <g + style="display:inline;fill:#000006;fill-rule:evenodd;stroke:none;stroke-width:0.816491" + transform="matrix(0.95999981,0,0,-2,-320.88335,1234)" + id="mask-bottom"> + <path + style="fill:#000006;fill-opacity:1;stroke:none;stroke-width:0.816491" + d="m 253.99999,347 h 50 l 10e-6,4 h -50 z" + id="path4464" + inkscape:connector-curvature="0" /> + </g> + <g + style="display:inline;fill:#000006;fill-rule:evenodd;stroke:none" + transform="matrix(0,0.95999981,-1.3333311,0,439.9992,239.16012)" + id="mask-right"> + <path + style="fill:#000006;fill-opacity:1;stroke:none;stroke-width:1" + d="m 253.99999,344.99999 h 50 L 304,351 h -50 z" + id="path4478" + inkscape:connector-curvature="0" /> + </g> + <path + style="color:#000006;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000006;solid-opacity:1;fill:#000006;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.472444;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m -86,482 a 8.0000046,8.0000046 0 0 1 8,-8.00001 V 482 Z" + id="mask-topleft" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="mask-bottomleft" + d="m -86,532 a 8.0000028,8.0000028 0 0 0 8,8.00001 V 532 Z" + style="color:#000006;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000006;solid-opacity:1;fill:#000006;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.472444;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + <path + style="color:#000006;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000006;solid-opacity:1;fill:#000006;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.472444;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + d="m -20.000023,532.00003 a 7.9999957,7.9999957 0 0 1 -8,8 v -8 z" + id="mask-bottomright" + inkscape:connector-curvature="0" /> + <g + id="menu-checkbox-checked-normal" + transform="translate(13.999999,-16.000013)"> + <rect + style="fill:#3584e4;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988" + width="16" + height="16" + x="325" + y="95" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 338.65039,99.240234 a 1,1 0 0 0 -1.41016,0.109375 l -5.29687,6.179691 -3.23633,-3.23633 a 1,1 0 0 0 -1.41406,0 1,1 0 0 0 0,1.41406 l 4.76367,4.76367 6.70313,-7.82031 a 1,1 0 0 0 -0.10938,-1.410156 z" + id="path2530" /> + </g> + <g + id="menu-checkbox-checked-focused" + transform="translate(34.000001,-16.000013)"> + <rect + style="fill:#4990e7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;stroke-opacity:1;paint-order:fill markers stroke" + id="rect1988-3" + width="16" + height="16" + x="325" + y="95" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 338.65039,99.240234 a 1,1 0 0 0 -1.41016,0.109375 l -5.29687,6.179691 -3.23633,-3.23633 a 1,1 0 0 0 -1.41406,0 1,1 0 0 0 0,1.41406 l 4.76367,4.76367 6.70313,-7.82031 a 1,1 0 0 0 -0.10938,-1.410156 z" + id="path2530-5" /> + </g> + <g + id="menu-checkbox-tristate-normal" + transform="translate(53.999999,-16.000013)"> + <rect + style="fill:#3584e4;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-3-2" + width="16" + height="16" + x="325" + y="95" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 328,102 a 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 h 4 6 a 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 h -6 z" + id="path2530-5-9" /> + </g> + <g + id="menu-checkbox-tristate-focused" + transform="translate(74,-16.000013)"> + <rect + style="fill:#4990e7;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-3-2-2" + width="16" + height="16" + x="325" + y="95" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 328,102 a 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 h 4 6 a 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 h -6 z" + id="path2530-5-9-7" /> + </g> + <g + id="menu-checkbox-normal" + transform="translate(-30,-34.000013)"> + <rect + style="fill:#ffffff;fill-opacity:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-6" + width="16" + height="16" + x="329" + y="113" + ry="4" /> + <rect + style="fill:#1d1d20;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:3.3;stroke-opacity:1;paint-order:fill markers stroke" + id="rect5239" + width="12" + height="12" + x="331" + y="115" + ry="2" /> + </g> + <g + id="menu-checkbox-focused" + transform="translate(-10,-34.000013)"> + <rect + style="fill:#ffffff;fill-opacity:0.15;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-6-6" + width="16" + height="16" + x="329" + y="113" + ry="4" /> + <rect + style="fill:#1d1d20;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:3.3;stroke-opacity:1;paint-order:fill markers stroke" + id="rect5239-7" + width="12" + height="12" + x="331" + y="115" + ry="2" /> + </g> + <g + id="menu-radio-normal" + transform="translate(-1,-5.999988)"> + <circle + style="fill:#ffffff;fill-opacity:0.1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882" + cx="308" + cy="113" + r="8" /> + <circle + style="fill:#1d1d20;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917" + cx="308" + cy="113" + r="6" /> + </g> + <g + id="menu-radio-focused" + transform="translate(19.000001,-5.999988)"> + <circle + style="fill:#ffffff;fill-opacity:0.15;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882-3" + cx="308" + cy="113" + r="8" /> + <circle + style="fill:#1d1d20;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917-5" + cx="308" + cy="113" + r="6" /> + </g> + <g + id="menu-radio-checked-normal" + transform="translate(38.999998,-5.999988)"> + <circle + style="fill:#3584e4;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882-3-2" + cx="308" + cy="113" + r="8" /> + <circle + style="fill:#f2ffff;fill-opacity:1;stroke-width:0.999997;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917-5-9" + cx="308" + cy="113" + r="3" /> + </g> + <g + id="menu-radio-checked-focused" + transform="translate(59,-5.999988)"> + <circle + style="fill:#4990e7;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882-3-2-2" + cx="308" + cy="113" + r="8" /> + <circle + style="fill:#f2ffff;fill-opacity:1;stroke-width:0.999997;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917-5-9-7" + cx="308" + cy="113" + r="3" /> + </g> + <g + id="checkbox-normal" + transform="translate(19.999999,-5)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <rect + style="fill:#404040;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-6-0" + width="16" + height="16" + x="279" + y="126" + ry="4" /> + <rect + style="fill:#1d1d20;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:3.3;stroke-opacity:1;paint-order:fill markers stroke" + id="rect5239-2" + width="12" + height="12" + x="281" + y="128" + ry="2" /> + </g> + <g + id="checkbox-focused" + transform="translate(44,-5)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-9" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <rect + style="fill:#4b4b4b;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-6-6-7" + width="16" + height="16" + x="279" + y="126" + ry="4" /> + <rect + style="fill:#1d1d20;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:3.3;stroke-opacity:1;paint-order:fill markers stroke" + id="rect5239-7-5" + width="12" + height="12" + x="281" + y="128" + ry="2" /> + </g> + <g + id="checkbox-checked-normal" + transform="translate(68,-5)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-4" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <rect + style="fill:#3584e4;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-9" + width="16" + height="16" + x="279" + y="126" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 292.65039,130.24023 a 1,1 0 0 0 -1.41016,0.10938 l -5.29687,6.17969 -3.23633,-3.23633 a 1,1 0 0 0 -1.41406,0 1,1 0 0 0 0,1.41406 l 4.76367,4.76367 6.70313,-7.82031 a 1,1 0 0 0 -0.10938,-1.41016 z" + id="path2530-3" /> + </g> + <g + id="checkbox-checked-focused" + transform="translate(91.999999,-5)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-9-6" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <rect + style="fill:#4990e7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;stroke-opacity:1;paint-order:fill markers stroke" + id="rect1988-3-0" + width="16" + height="16" + x="279" + y="126" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 292.65039,130.24023 a 1,1 0 0 0 -1.41016,0.10938 l -5.29687,6.17969 -3.23633,-3.23633 a 1,1 0 0 0 -1.41406,0 1,1 0 0 0 0,1.41406 l 4.76367,4.76367 6.70313,-7.82031 a 1,1 0 0 0 -0.10938,-1.41016 z" + id="path2530-5-6" /> + </g> + <g + id="checkbox-tristate-normal" + transform="translate(116,-5)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-4-3" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <rect + style="fill:#3584e4;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-3-2-6" + width="16" + height="16" + x="279" + y="126" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 282,133 a 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 h 4 6 a 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 h -6 z" + id="path2530-5-9-1" /> + </g> + <g + id="checkbox-tristate-focused" + transform="translate(140,-5)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-9-6-1" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <rect + style="fill:#4990e7;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect1988-3-2-2-7" + width="16" + height="16" + x="279" + y="126" + ry="4" /> + <path + style="color:#000006;fill:#f2ffff;stroke-linecap:round;-inkscape-stroke:none" + d="m 282,133 a 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 h 4 6 a 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 h -6 z" + id="path2530-5-9-7-9" /> + </g> + <g + id="radio-normal" + transform="translate(19.999999,19)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-4-7" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <circle + style="fill:#404040;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882-2" + cx="287" + cy="134" + r="8" /> + <circle + style="fill:#1d1d20;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917-2" + cx="287" + cy="134" + r="6" /> + </g> + <g + id="radio-focused" + transform="translate(44,19)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-9-6-3" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <circle + style="fill:#4b4b4b;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882-3-9" + cx="287" + cy="134" + r="8" /> + <circle + style="fill:#1d1d20;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917-5-7" + cx="287" + cy="134" + r="6" /> + </g> + <g + id="radio-checked-normal" + transform="translate(68,19)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-4-3-2" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <circle + style="fill:#3584e4;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882-3-2-6" + cx="287" + cy="134" + r="8" /> + <circle + style="fill:#f2ffff;fill-opacity:1;stroke-width:0.999997;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917-5-9-1" + cx="287" + cy="134" + r="3" /> + </g> + <g + id="radio-checked-focused" + transform="translate(91.999999,19)"> + <rect + style="opacity:0;fill:#4990e7;fill-opacity:1;stroke-width:4.36364;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect17172-9-6-1-4" + width="24" + height="24" + x="275" + y="122" + ry="0" /> + <circle + style="fill:#4990e7;fill-opacity:1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path5882-3-2-2-9" + cx="287" + cy="134" + r="8" /> + <circle + style="fill:#f2ffff;fill-opacity:1;stroke-width:0.999997;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="path7917-5-9-7-3" + cx="287" + cy="134" + r="3" /> + </g> + <path + id="tabframe-normal" + d="M 346.99999,461 H 395 v 48 h -48.00001 z" + style="fill:#2e2e32;fill-opacity:1" /> + <g + id="tabframe-normal-topleft" + transform="matrix(4,0,0,4,249.99999,-1431.9999)"> + <path + id="path2274-2" + style="opacity:0.5;fill:url(#radialGradient4839-3-3-61);stroke-width:0.25" + d="m 18.000003,466.99997 v 6 h 3 c 0,-1.66199 1.338,-3 3,-3 v -3 z" /> + <path + id="path2276-9-7-3-6" + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke-width:1.625" + d="m 24.000003,469.74997 c -1.8005,0 -3.25,1.4495 -3.25,3.25 h 0.25 c 0,-1.66199 1.338,-3 3,-3 z" /> + <path + d="m 24,470 c -1.662,0 -3,1.338 -3,3 h 3 z" + id="path2276-9" + style="opacity:1;fill:#2e2e32;fill-opacity:1;stroke-width:1.5" /> + </g> + <g + id="tabframe-normal-top" + transform="matrix(0.85714,0,0,4,326.42859,-1427.9999)"> + <rect + transform="scale(1,-1)" + x="24.000059" + y="-468.99997" + width="55.999943" + height="2.999975" + id="rect2281-0" + style="opacity:0.5;fill:url(#linearGradient2345)" /> + <path + d="m 24,469 h 56 v 3 H 24 Z" + id="path2279-7" + style="opacity:1;fill:#2e2e32;fill-opacity:1;stroke-width:1.22474" /> + <rect + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke:none;stroke-width:0.540063;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect13658" + width="56.000187" + height="0.25" + x="24.000059" + y="468.74997" /> + </g> + <g + id="tabframe-normal-left" + transform="matrix(0,-0.85714,4,0,-1542,529.57136)"> + <rect + transform="scale(1,-1)" + x="24" + y="-469" + width="56" + height="3" + id="rect2281-0-3" + style="opacity:0.5;fill:url(#linearGradient8752)" /> + <path + d="m 24,469 h 56 v 3 H 24 Z" + id="path2279-7-0" + style="opacity:1;fill:#2e2e32;fill-opacity:1;stroke-width:1.22474" /> + <rect + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke:none;stroke-width:0.540063;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect13658-2" + width="56.000187" + height="0.25" + x="24" + y="468.74997" /> + </g> + <g + id="tabframe-normal-bottomleft" + transform="matrix(0,-4,4,0,-1546.0001,606)"> + <path + id="path2274-2-3-8" + style="opacity:0.5;fill:url(#radialGradient4839-3-3-9-7-4);stroke-width:0.25" + d="m 24,467.00002 h -6 v 6 h 3 c 0,-1.662 1.338,-3 3,-3 z" /> + <path + id="path2276-9-7-3-7" + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke-width:1.625" + d="m 24,469.75002 c -1.8005,0 -3.25,1.4495 -3.25,3.25 H 21 c 0,-1.662 1.338,-3 3,-3 z" /> + <path + d="m 24,470 c -1.662,0 -3,1.338 -3,3 h 3 z" + id="path2276-9-7-4" + style="opacity:1;fill:#2e2e32;fill-opacity:1;stroke-width:1.5" /> + </g> + <g + id="tabframe-normal-topright" + transform="matrix(-4,0,0,4,492.00001,-1431.9999)"> + <path + id="path2274-2-6" + style="opacity:0.5;fill:url(#radialGradient4839-3-3-6);stroke-width:0.25" + d="m 18.000003,466.99997 v 6 h 3 c 0,-1.66199 1.338,-3 3,-3 v -3 z" /> + <path + id="path2276-9-7-3-6-2" + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke-width:1.625" + d="m 24.000003,469.74997 c -1.8005,0 -3.25,1.4495 -3.25,3.25 h 0.25 c 0,-1.66199 1.338,-3 3,-3 z" /> + <path + d="m 24,470 c -1.662,0 -3,1.338 -3,3 h 3 z" + id="path2276-9-6" + style="opacity:1;fill:#2e2e32;fill-opacity:1;stroke-width:1.5" /> + </g> + <g + id="tabframe-normal-bottomright" + transform="matrix(0,-4,-4,0,2288.0001,606.00002)"> + <path + id="path2274-2-3-8-8" + style="opacity:0.5;fill:url(#radialGradient4839-3-3-9-7-0);stroke-width:0.25" + d="m 24,467.00002 h -6 v 6 h 3 c 0,-1.662 1.338,-3 3,-3 z" /> + <path + id="path2276-9-7-3-7-7" + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke-width:1.625" + d="m 24,469.75002 c -1.8005,0 -3.25,1.4495 -3.25,3.25 H 21 c 0,-1.662 1.338,-3 3,-3 z" /> + <path + d="m 24,470 c -1.662,0 -3,1.338 -3,3 h 3 z" + id="path2276-9-7-4-9" + style="opacity:1;fill:#2e2e32;fill-opacity:1;stroke-width:1.5" /> + </g> + <g + id="tabframe-normal-bottom" + transform="matrix(-0.85714,0,0,-4,415.57127,2398)"> + <rect + transform="scale(1,-1)" + x="23.999895" + y="-469" + width="56.000107" + height="3" + id="rect2281-0-0" + style="opacity:0.5;fill:url(#linearGradient8671)" /> + <path + d="m 24,469 h 56 v 3 H 24 Z" + id="path2279-7-6" + style="opacity:1;fill:#2e2e32;fill-opacity:1;stroke-width:1.22474" /> + <rect + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke:none;stroke-width:0.540065;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect13658-3" + width="56.000187" + height="0.25" + x="23.999895" + y="468.74997" /> + </g> + <g + id="tabframe-normal-right" + transform="matrix(0,0.85714,-4,0,2283.9999,440.42864)"> + <rect + transform="scale(1,-1)" + x="24" + y="-468.99997" + width="56" + height="2.999975" + id="rect2281-0-2" + style="opacity:0.5;fill:url(#linearGradient8515)" /> + <path + d="m 24,469 h 56 v 3 H 24 Z" + id="path2279-7-9" + style="opacity:1;fill:#2e2e32;fill-opacity:1;stroke-width:1.22474" /> + <rect + style="opacity:0.05;fill:#000006;fill-opacity:1;stroke:none;stroke-width:0.540063;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:3.3;paint-order:fill markers stroke" + id="rect13658-6" + width="56.000187" + height="0.25" + x="24" + y="468.74997" /> + </g> +</svg> diff --git a/kvantum/dot-config/Kvantum/kvantum.kvconfig b/kvantum/dot-config/Kvantum/kvantum.kvconfig new file mode 100644 index 0000000..c34b96a --- /dev/null +++ b/kvantum/dot-config/Kvantum/kvantum.kvconfig @@ -0,0 +1,2 @@ +[General] +theme=KvLibadwaitaDark diff --git a/lf/dot-config/lf/icons b/lf/dot-config/lf/icons new file mode 100644 index 0000000..aad068c --- /dev/null +++ b/lf/dot-config/lf/icons @@ -0,0 +1,77 @@ +di 📁 +fi 📃 +tw 🤝 +ow 📂 +ln ⛓ +or ❌ +ex 🎯 +*.txt ✍ +*.mom ✍ +*.me ✍ +*.ms ✍ +*.avif 🖼 +*.png 🖼 +*.webp 🖼 +*.ico 🖼 +*.jpg 📸 +*.jpe 📸 +*.jpeg 📸 +*.gif 🖼 +*.svg 🗺 +*.tif 🖼 +*.tiff 🖼 +*.xcf 🖌 +*.html 🌎 +*.xml 📰 +*.gpg 🔒 +*.css 🎨 +*.pdf 📚 +*.djvu 📚 +*.epub 📚 +*.csv 📓 +*.xlsx 📓 +*.tex 📜 +*.md 📘 +*.r 📊 +*.R 📊 +*.rmd 📊 +*.Rmd 📊 +*.m 📊 +*.mp3 🎵 +*.opus 🎵 +*.ogg 🎵 +*.m4a 🎵 +*.flac 🎼 +*.wav 🎼 +*.mkv 🎥 +*.mp4 🎥 +*.webm 🎥 +*.mpeg 🎥 +*.avi 🎥 +*.mov 🎥 +*.mpg 🎥 +*.wmv 🎥 +*.m4b 🎥 +*.flv 🎥 +*.zip 📦 +*.rar 📦 +*.7z 📦 +*.tar 📦 +*.z64 🎮 +*.v64 🎮 +*.n64 🎮 +*.gba 🎮 +*.nes 🎮 +*.gdi 🎮 +*.1 ℹ +*.nfo ℹ +*.info ℹ +*.log 📙 +*.iso 📀 +*.img 📀 +*.bib 🎓 +*.ged 👪 +*.part 💔 +*.torrent 🔽 +*.jar ♨ +*.java ♨ diff --git a/lf/dot-config/lf/lfrc b/lf/dot-config/lf/lfrc new file mode 100644 index 0000000..226e1aa --- /dev/null +++ b/lf/dot-config/lf/lfrc @@ -0,0 +1,84 @@ +# vim: ft=lf + +set shellopts '-eu' +set ifs "\n" +set autoquit true +set icons +set scrolloff 10 +set period 1 +set hiddenfiles ".*:*.aux:*.log:*.bbl:*.bcf:*.blg:*.run.xml" + +cmd open ${{ + case $(file --mime-type "$(readlink -f "$f")" -b) in + text/* | application/json | inode/x-empty | application/x-subrip) $EDITOR "$fx" ;; + image/*) setsid -f app2unit -- imv -d $(rotdir "$f" | grep -i "\.\(png\|jpg\|jpeg\|gif\|webp\|avif\|tif\|ico\)\(_large\)*$") 2>/dev/null | while read -r file; do + [ -z "$file" ] && continue + lf -remote "send select \"$file\"" + done & ;; + audio/* | video/x-ms-asf) setsid -f app2unit -- mpv --audio-display=no "$f" ;; + video/*) setsid -f app2unit -- mpv "$f" -quiet >/dev/null 2>&1 ;; + application/pgp-encrypted) $EDITOR "$fx" ;; + *) for f in $fx; do setsid -f app2unit-open "$f" >/dev/null 2>&1; done ;; + esac +}} + +cmd mkdir $mkdir -p "$@" + +cmd extract ${{ + clear; tput cup $(($(tput lines)/3)); tput bold + set -f + printf "%s\n\t" "$fx" + printf "extract?[y/N]" + read ans + [ $ans = "y" ] && { + case $fx in + *.tar.bz2) tar xjf $fx ;; + *.tar.gz) tar xzf $fx ;; + *.bz2) bunzip2 $fx ;; + *.rar) unrar e $fx ;; + *.gz) gunzip $fx ;; + *.tar) tar xf $fx ;; + *.tbz2) tar xjf $fx ;; + *.tgz) tar xzf $fx ;; + *.zip) unzip $fx ;; + *.Z) uncompress $fx ;; + *.7z) 7z x $fx ;; + *.tar.xz) tar xf $fx ;; + esac + } +}} + +cmd quit-and-cd &{{ + pwd > $LF_CD_FILE + lf -remote "send $id quit" +}} + +cmd fzf_jump ${{ + res="$(fd . | fzf --reverse --header='Jump to location')" + if [ -n "$res" ]; then + if [ -d "$res" ]; then + cmd="cd" + else + cmd="select" + fi + res="$(printf '%s' "$res" | sed 's/\\/\\\\/g;s/"/\\"/g')" + lf -remote "send $id $cmd \"$res\"" + fi +}} + +cmd dragon ${{ + IFS="$(printf '\n\t')"; dragon-drop $fx +}} + +map Y $printf "%s" "$fx" | wl-copy +map <c-n> push :mkdir<space>""<left> +map D delete +map Q quit-and-cd +map E :extract; reload +map <c-f> :fzf_jump +map o &mimeopen "$f" +map O &mimeopen --ask "$f" +map <c-s> dragon +map W $setsid -f $TERMINAL >/dev/null 2>&1 +map <c-g> redraw +map <c-l> unselect diff --git a/qute/dot-config/qutebrowser/config.py b/qute/dot-config/qutebrowser/config.py new file mode 100644 index 0000000..1a5c3ee --- /dev/null +++ b/qute/dot-config/qutebrowser/config.py @@ -0,0 +1,67 @@ +c = c +config = config + +c.url.searchengines = { + "DEFAULT": "https://duckduckgo.com/?q={}", + "!aw": "https://wiki.archlinux.org/?search={}", + "!apkg": "https://archlinux.org/packages/?sort=&q={}&maintainer=&flagged=", + "!aur": "https://aur.archlinux.org/packages?O=0&SeB=nd&K={}&outdated=&SB=p&SO=d&PP=50&submit=Go", + "!gh": "https://github.com/search?o=desc&q={}&s=stars", + "!yt": "https://www.youtube.com/results?search_query={}", +} + +c.completion.open_categories = [ + "searchengines", + "quickmarks", + "bookmarks", + "history", + "filesystem", +] + +config.load_autoconfig() # load settings done via the gui + +config.bind( + "zl", + "spawn --userscript qute-pass --username-pattern='login: (.*)' --username-target=secret", +) +config.bind( + "zul", + "spawn --userscript qute-pass --username-only --username-pattern='login: (.*)' --username-target=secret", +) +config.bind( + "zpl", + "spawn --userscript qute-pass --password-only --username-pattern='login: (.*)' --username-target=secret", +) +config.bind( + "zol", + "spawn --userscript qute-pass --otp-only --username-pattern='login: (.*)' --username-target=secret", +) + +c.editor.command = ["alacritty", "-e", "nvim", "{file}", "-c", "normal {line}G{column}"] + +# NOTE: to make Slack sign-in work: +# c.content.unknown_url_scheme_policy = "allow-all" + +c.content.blocking.enabled = True +c.content.blocking.method = "adblock" + +# c.content.blocking.adblock.lists = [ +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/legacy.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/filters.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/filters-2020.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/filters-2021.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/filters-2022.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/filters-2023.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/filters-2024.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/filters-2025.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/badware.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/privacy.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/badlists.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/annoyances.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/annoyances-cookies.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/annoyances-others.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/badlists.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/quick-fixes.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/resource-abuse.txt", +# "https://github.com/uBlockOrigin/uAssets/raw/master/filters/unbreak.txt", +# ] diff --git a/stow-all.bash b/stow-all.bash new file mode 100755 index 0000000..5601d99 --- /dev/null +++ b/stow-all.bash @@ -0,0 +1,53 @@ +#!/usr/bin/env bash + +ANSI_clear_line="\e[0K" +ANSI_color_R="\e[1;31m" +ANSI_color_G="\e[1;32m" +ANSI_color_Y="\e[1;33m" +ANSI_color_B="\e[1;34m" +ANSI_color_M="\e[1;35m" +ANSI_color_C="\e[1;36m" +ANSI_color_W="\e[1;39m" +ANSI_reset="\e[0m" + +function Log() +{ + printf "${ANSI_clear_line}${ANSI_color_W}%s ${ANSI_color_B}%s${ANSI_reset}\n" "$1" "$2" 1>&2 +} + +function ProcessStowOutput() +{ + while IFS= read -r line; do + if [[ $line =~ ^LINK:[[:space:]]+ ]]; then + # LINK operations in green + printf " - ${ANSI_clear_line}${ANSI_color_G}${line}${ANSI_reset}\n" 1>&2 + elif [[ $line =~ ^UNLINK:[[:space:]]+ ]]; then + # UNLINK operations in red + printf " - ${ANSI_clear_line}${ANSI_color_R}${line}${ANSI_reset}\n" 1>&2 + elif [[ $line =~ ^SKIP:[[:space:]]+ ]]; then + # SKIP operations in yellow + printf " - ${ANSI_clear_line}${ANSI_color_Y}${line}${ANSI_reset}\n" 1>&2 + else + # Other lines in cyan + printf " - ${ANSI_clear_line}${ANSI_color_C}${line}${ANSI_reset}\n" 1>&2 + fi + done +} + +function Stow() +{ + Log "Stowing" "$1" + stow --dotfiles -v "$1" 2>&1 | ProcessStowOutput + Log "Done with" "$1" +} + +Stow alacritty +Stow bash +Stow fonts +Stow git +Stow gpg +Stow hyprland +Stow kvantum +Stow lf +Stow qute +Stow wayland-basics diff --git a/wayland-basics/dot-config/kanshi/config b/wayland-basics/dot-config/kanshi/config new file mode 100644 index 0000000..8ca67a1 --- /dev/null +++ b/wayland-basics/dot-config/kanshi/config @@ -0,0 +1,21 @@ +# vim: ft=scfg + +output eDP-1 alias $laptop +output "Dell Inc. DELL P2723D FNHTH14" alias $workmon +output "Lenovo Group Limited M15 V30ANMLM" alias $lenmon + +profile work { + output $laptop disable + output $workmon mode 2560x1440 position 0,0 + exec ~/.config/kanshi/reload.sh +} + +profile home_double { + output $lenmon mode 1920x1080@60 position 0,0 + output $laptop enable mode 2880x1800@120 position 1920,0 scale 2 +} + +profile home { + output $laptop enable mode 2880x1800@120 position 0,0 scale 2 + exec ~/.config/kanshi/reload.sh +} diff --git a/wayland-basics/dot-config/kanshi/reload.sh b/wayland-basics/dot-config/kanshi/reload.sh new file mode 100755 index 0000000..ce74a3f --- /dev/null +++ b/wayland-basics/dot-config/kanshi/reload.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +if [ -n "$HYPRLAND_INSTANCE_SIGNATURE" ]; then + hyprctl reload + hyprctl dispatch workspace 1 +fi diff --git a/wayland-basics/dot-config/mako/config b/wayland-basics/dot-config/mako/config new file mode 100644 index 0000000..9339e49 --- /dev/null +++ b/wayland-basics/dot-config/mako/config @@ -0,0 +1,38 @@ +# vim: ft=dosini + +text-color=#bbbbbb +border-color=#005577 +background-color=#222222 +padding=10 +border-size=2 +max-icon-size=32 +outer-margin=20 + +font=monospace 11 + +width=420 +height=110 +anchor=top-right +default-timeout=5000 +max-history=10 +icon-path=/usr/share/icons/Adwaita + +[actionable=true] +on-button-right=exec makoctl menu -n "${id}" wmenu + +[app-name=Spotify] +invisible=1 + +[mode=do-not-disturb] +invisible=true + +[mode=do-not-disturb app-name=notify-send] +invisible=false + +[app-name=NeoMutt] +default-timeout=20000 +on-notify=exec mpv /usr/share/sounds/freedesktop/stereo/message.oga +# on-button-left=exec setsid app2unit-term -e neomutt_wrapper + +[urgency=critical] +default-timeout=0 diff --git a/wayland-basics/dot-config/mimeapps.list b/wayland-basics/dot-config/mimeapps.list new file mode 100644 index 0000000..f1a1568 --- /dev/null +++ b/wayland-basics/dot-config/mimeapps.list @@ -0,0 +1,53 @@ +[Default Applications] +x-scheme-handler/mailto=mail.desktop; +message/rfc822=mail.desktop; +x-scheme-handler/mid=mail.desktop; + +text/x-shellscript=text.desktop; +text/plain=text.desktop; +text/x-tex=text.desktop; +text/x-bibtex=text.desktop; + +application/postscript=pdf.desktop; +application/pdf=pdf.desktop; + +image/png=img.desktop; +image/jpeg=img.desktop; +image/gif=img.desktop; +image/heif=img.desktop; +image/svg+xml=img.desktop; +image/svg=img.desktop; + +video/x-matroska=video.desktop; +video/mp4=video.desktop; +video/webm=video.desktop; +video/mp4=video.desktop; +video/x-msvideo=video.desktop; +video/x-matroska=video.desktop; +video/x-flv=video.desktop; +video/x-ms-wmv=video.desktop; +video/mpeg=video.desktop; +video/ogg=video.desktop; +video/webm=video.desktop; +video/quicktime=video.desktop; +video/3gpp=video.desktop; +video/3gpp2=video.desktop; +video/x-ms-asf=video.desktop; +video/x-ogm+ogg=video.desktop; +video/x-theora+ogg=video.desktop; +application/ogg=video.desktop; + +inode/directory=file.desktop; + +x-scheme-handler/http=browser.desktop; +x-scheme-handler/https=browser.desktop; +x-scheme-handler/chrome=browser.desktop; +text/html=browser.desktop; +application/x-extension-htm=browser.desktop; +application/x-extension-html=browser.desktop; +application/x-extension-shtml=browser.desktop; +application/xhtml+xml=browser.desktop; +application/x-extension-xhtml=browser.desktop; +application/x-extension-xht=browser.desktop; +x-scheme-handler/about=browser.desktop; +x-scheme-handler/unknown=browser.desktop; diff --git a/wayland-basics/dot-config/mpv/mpv.conf b/wayland-basics/dot-config/mpv/mpv.conf new file mode 100644 index 0000000..ebfb505 --- /dev/null +++ b/wayland-basics/dot-config/mpv/mpv.conf @@ -0,0 +1 @@ +vo=gpu diff --git a/wayland-basics/dot-config/systemd/user/kanshi.service b/wayland-basics/dot-config/systemd/user/kanshi.service new file mode 100644 index 0000000..dd6227c --- /dev/null +++ b/wayland-basics/dot-config/systemd/user/kanshi.service @@ -0,0 +1,15 @@ +[Unit] +PartOf=graphical-session.target +Description=Kanshi Wayland output manager +After=graphical-session.target +Requisite=graphical-session.target + +[Service] +Type=exec +ExecStart=/usr/bin/kanshi +ExecReload=kill -SIGHUP $MAINPID +Restart=on-failure +Slice=background-graphical.slice + +[Install] +WantedBy=graphical-session.target diff --git a/wayland-basics/dot-config/systemd/user/swaybg.service b/wayland-basics/dot-config/systemd/user/swaybg.service new file mode 100644 index 0000000..719900d --- /dev/null +++ b/wayland-basics/dot-config/systemd/user/swaybg.service @@ -0,0 +1,15 @@ +[Unit] +PartOf=graphical-session.target +Description=Swaybg wallpaper utility +After=graphical-session.target +Requisite=graphical-session.target + +[Service] +Type=exec +# ExecStart=/usr/bin/swaybg -m fill -i /home/moreka/Pictures/ethereal.jpg +ExecStart=/usr/bin/swaybg -c '#002B36' +Restart=on-failure +Slice=background-graphical.slice + +[Install] +WantedBy=graphical-session.target diff --git a/wayland-basics/dot-config/systemd/user/swayosd-server.service b/wayland-basics/dot-config/systemd/user/swayosd-server.service new file mode 100644 index 0000000..21934eb --- /dev/null +++ b/wayland-basics/dot-config/systemd/user/swayosd-server.service @@ -0,0 +1,14 @@ +[Unit] +PartOf=graphical-session.target +Description=SwayOSD server +After=graphical-session.target +Requisite=graphical-session.target + +[Service] +Type=exec +ExecStart=/usr/bin/swayosd-server +Restart=on-failure +Slice=background-graphical.slice + +[Install] +WantedBy=graphical-session.target diff --git a/wayland-basics/dot-config/systemd/user/wl-clip-persist.service b/wayland-basics/dot-config/systemd/user/wl-clip-persist.service new file mode 100644 index 0000000..f0f55a6 --- /dev/null +++ b/wayland-basics/dot-config/systemd/user/wl-clip-persist.service @@ -0,0 +1,14 @@ +[Unit] +PartOf=graphical-session.target +Description=Clipboard history manager for wayland +After=graphical-session.target +Requisite=graphical-session.target + +[Service] +Type=exec +ExecStart=/usr/bin/wl-clip-persist --clipboard regular --disable-timestamps +Restart=on-failure +Slice=background-graphical.slice + +[Install] +WantedBy=graphical-session.target diff --git a/wayland-basics/dot-config/zathura/zathurarc b/wayland-basics/dot-config/zathura/zathurarc new file mode 100644 index 0000000..8322b0e --- /dev/null +++ b/wayland-basics/dot-config/zathura/zathurarc @@ -0,0 +1,22 @@ +set statusbar-h-padding 0 +set statusbar-v-padding 0 +set selection-clipboard clipboard +set database sqlite +set synctex true +# set synctex-editor-command "nvim -v --not-a-term -T dumb -c \"VimtexInverseSearch %{line}:%{column} '%{input}'\"" +set font "monospace 9" + +map u scroll half-up +map d scroll half-down +map D toggle_page_mode +map r reload +map R rotate +map K zoom in +map J zoom out +map i recolor +map p print +map g goto top + +set render-loading true + +# vim: ft=zathurarc diff --git a/wayland-basics/dot-local/share/applications/browser.desktop b/wayland-basics/dot-local/share/applications/browser.desktop new file mode 120000 index 0000000..38ab478 --- /dev/null +++ b/wayland-basics/dot-local/share/applications/browser.desktop @@ -0,0 +1 @@ +/usr/share/applications/org.qutebrowser.qutebrowser.desktop
\ No newline at end of file diff --git a/wayland-basics/dot-local/share/applications/file.desktop b/wayland-basics/dot-local/share/applications/file.desktop new file mode 100755 index 0000000..a7e84c3 --- /dev/null +++ b/wayland-basics/dot-local/share/applications/file.desktop @@ -0,0 +1,4 @@ +[Desktop Entry] +Type=Application +Name=File Manager +Exec=alacritty -e lf %u diff --git a/wayland-basics/dot-local/share/applications/img.desktop b/wayland-basics/dot-local/share/applications/img.desktop new file mode 120000 index 0000000..6dacb85 --- /dev/null +++ b/wayland-basics/dot-local/share/applications/img.desktop @@ -0,0 +1 @@ +imv.desktop
\ No newline at end of file diff --git a/wayland-basics/dot-local/share/applications/imv.desktop b/wayland-basics/dot-local/share/applications/imv.desktop new file mode 100755 index 0000000..d41f33d --- /dev/null +++ b/wayland-basics/dot-local/share/applications/imv.desktop @@ -0,0 +1,7 @@ +[Desktop Entry] +Type=Application +Name=IMV Image viewer +Icon=imv +Exec=/usr/bin/imv %f +Terminal=false +Categories=Graphics;Viewer; diff --git a/wayland-basics/dot-local/share/applications/mail.desktop b/wayland-basics/dot-local/share/applications/mail.desktop new file mode 100755 index 0000000..f36fa88 --- /dev/null +++ b/wayland-basics/dot-local/share/applications/mail.desktop @@ -0,0 +1,4 @@ +[Desktop Entry] +Type=Application +Name=Mail +Exec=alacritty -e neomutt %u diff --git a/wayland-basics/dot-local/share/applications/mimeinfo.cache b/wayland-basics/dot-local/share/applications/mimeinfo.cache new file mode 100644 index 0000000..4c6a9fa --- /dev/null +++ b/wayland-basics/dot-local/share/applications/mimeinfo.cache @@ -0,0 +1,28 @@ +[MIME Cache] +application/rdf+xml=browser.desktop; +application/x-shellscript=nvim.desktop;text.desktop; +application/xhtml+xml=browser.desktop; +application/xml=browser.desktop; +image/gif=browser.desktop; +image/jpeg=browser.desktop; +image/png=browser.desktop; +image/webp=browser.desktop; +text/english=nvim.desktop;text.desktop; +text/html=browser.desktop; +text/plain=nvim.desktop;text.desktop; +text/x-c=nvim.desktop;text.desktop; +text/x-c++=nvim.desktop;text.desktop; +text/x-c++hdr=nvim.desktop;text.desktop; +text/x-c++src=nvim.desktop;text.desktop; +text/x-chdr=nvim.desktop;text.desktop; +text/x-csrc=nvim.desktop;text.desktop; +text/x-java=nvim.desktop;text.desktop; +text/x-makefile=nvim.desktop;text.desktop; +text/x-moc=nvim.desktop;text.desktop; +text/x-pascal=nvim.desktop;text.desktop; +text/x-tcl=nvim.desktop;text.desktop; +text/x-tex=nvim.desktop;text.desktop; +text/xml=browser.desktop; +x-scheme-handler/http=browser.desktop; +x-scheme-handler/https=browser.desktop; +x-scheme-handler/qute=browser.desktop; diff --git a/wayland-basics/dot-local/share/applications/mpv.desktop b/wayland-basics/dot-local/share/applications/mpv.desktop new file mode 100755 index 0000000..282ae48 --- /dev/null +++ b/wayland-basics/dot-local/share/applications/mpv.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Type=Application +Name=MPV Media Player +Icon=mpv +TryExec=/usr/bin/mpv +Exec=/usr/bin/mpv --player-operation-mode=pseudo-gui -- %U +Terminal=false +Categories=AudioVideo;Audio;Video;Player;TV; +StartupWMClass=mpv +Keywords=mpv;media;player;video;audio;tv; diff --git a/wayland-basics/dot-local/share/applications/nvim.desktop b/wayland-basics/dot-local/share/applications/nvim.desktop new file mode 100755 index 0000000..27fadab --- /dev/null +++ b/wayland-basics/dot-local/share/applications/nvim.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Name=Neovim +GenericName=Text Editor +Comment=Edit text files +Exec=sh -c "alacritty --class=nvim --title=nvim -- nvim %F" +Terminal=false +Type=Application +Keywords=Text;editor; +Icon=nvim +Categories=Utility;TextEditor; +StartupNotify=false +MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++; diff --git a/wayland-basics/dot-local/share/applications/pdf.desktop b/wayland-basics/dot-local/share/applications/pdf.desktop new file mode 100755 index 0000000..8c38677 --- /dev/null +++ b/wayland-basics/dot-local/share/applications/pdf.desktop @@ -0,0 +1,4 @@ +[Desktop Entry] +Type=Application +Name=PDF reader +Exec=/usr/bin/zathura %u diff --git a/wayland-basics/dot-local/share/applications/text.desktop b/wayland-basics/dot-local/share/applications/text.desktop new file mode 120000 index 0000000..15e1f2a --- /dev/null +++ b/wayland-basics/dot-local/share/applications/text.desktop @@ -0,0 +1 @@ +nvim.desktop
\ No newline at end of file diff --git a/wayland-basics/dot-local/share/applications/video.desktop b/wayland-basics/dot-local/share/applications/video.desktop new file mode 120000 index 0000000..0da0c22 --- /dev/null +++ b/wayland-basics/dot-local/share/applications/video.desktop @@ -0,0 +1 @@ +mpv.desktop
\ No newline at end of file |
