You are not logged in.
Hi everyone!
I've just migrated my arch system to a new computer (I kept my home partition and backed up pacman's cache and /etc as well as a list of packages installed). I manually installed the main packages needed to set up my system, I didn't re install secondary software yet. However I'm having trouble with urxvt, it takes a few seconds to launch whereas before the migration it would just inmediatly appear. I'm using my old .bashrc and .Xresources, so the configuration is the same as before, also Xterm for example has no problem so it appears to be no problem with .bashrc... Based on what I've read it could be due to font loading, however I have no idea what my previous font configuration actually means:
URxvt.font: -misc-fixed-medium-r-normal--15-140-75-75-c-90-iso8859-1
URxvt.boldFont: -misc-fixed-bold-r-normal--15-140-75-75-c-90-iso8859-1I must have copied that from some example or something and I don't know what it actually does...
Nevertheless, if I comment that out from .Xresources, it changes the font used, but it still takes a few seconds to load...
Anyway, any help is apreciatted, just for reference my .bashrc and .Xresources:
# /etc/bash.bashrc
#
# https://wiki.archlinux.org/index.php/Color_Bash_Prompt
#
# This file is sourced by all *interactive* bash shells on startup,
# including some apparently interactive shells such as scp and rcp
# that can't tolerate any output. So make sure this doesn't display
# anything or bad things will happen !
# Test for an interactive shell. There is no need to set anything
# past this point for scp and rcp, and it's important to refrain from
# outputting anything in those cases.
# If not running interactively, don't do anything!
[[ $- != *i* ]] && return
# Bash won't get SIGWINCH if another process is in the foreground.
# Enable checkwinsize so that bash will check the terminal size when
# it regains control.
# http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11)
shopt -s checkwinsize
# Enable history appending instead of overwriting.
shopt -s histappend
case ${TERM} in
xterm*|rxvt*|Eterm|aterm|kterm|gnome*)
PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"'
;;
screen)
PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033_%s@%s:%s\033\\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"'
;;
esac
# fortune is a simple program that displays a pseudorandom message
# from a database of quotations at logon and/or logout.
# If you wish to use it, please install "fortune-mod" from the
# official repositories, then uncomment the following line:
# [[ "$PS1" ]] && /usr/bin/fortune
# Set colorful PS1 only on colorful terminals.
# dircolors --print-database uses its own built-in database
# instead of using /etc/DIR_COLORS. Try to use the external file
# first to take advantage of user additions. Use internal bash
# globbing instead of external grep binary.
# sanitize TERM:
safe_term=${TERM//[^[:alnum:]]/?}
match_lhs=""
[[ -f ~/.dir_colors ]] && match_lhs="${match_lhs}$(<~/.dir_colors)"
[[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(</etc/DIR_COLORS)"
[[ -z ${match_lhs} ]] \
&& type -P dircolors >/dev/null \
&& match_lhs=$(dircolors --print-database)
if [[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] ; then
# we have colors :-)
# Enable colors for ls, etc. Prefer ~/.dir_colors
if type -P dircolors >/dev/null ; then
if [[ -f ~/.dir_colors ]] ; then
eval $(dircolors -b ~/.dir_colors)
elif [[ -f /etc/DIR_COLORS ]] ; then
eval $(dircolors -b /etc/DIR_COLORS)
fi
fi
#PS1="$(if [[ ${EUID} == 0 ]]; then echo '\[\033[01;31m\]\h'; else echo '\[\033[01;32m\]\u@\h'; fi)\[\033[01;34m\] \w \$([[ \$? != 0 ]] && echo \"\[\033[01;31m\]:(\[\033[01;34m\] \")\\$\[\033[00m\] "
# https://bbs.archlinux.org/viewtopic.php?pid=1156660#p1156660
if [[ ${EUID} == 0 ]] ; then
sq_color="\[\033[0;31m\]"
else
sq_color="\[\033[0;34m\]"
fi
PS1="\n\$(if [[ \$? == 0 ]]; then echo \"$sq_color\"; else echo \"\[\033[0;31m\]\"; fi)\342\226\210\342\226\210 [ \W ] [ \t ]\n\[\033[0m\]\342\226\210\342\226\210 "
# Use this other PS1 string if you want \W for root and \w for all other users:
# PS1="$(if [[ ${EUID} == 0 ]]; then echo '\[\033[01;31m\]\h\[\033[01;34m\] \W'; else echo '\[\033[01;32m\]\u@\h\[\033[01;34m\] \w'; fi) \$([[ \$? != 0 ]] && echo \"\[\033[01;31m\]:(\[\033[01;34m\] \")\\$\[\033[00m\] "
alias ls="ls --color=auto"
alias dir="dir --color=auto"
alias grep="grep --color=auto"
alias dmesg='dmesg --color'
# Uncomment the "Color" line in /etc/pacman.conf instead of uncommenting the following line...!
# alias pacman="pacman --color=auto"
else
# show root@ when we do not have colors
PS1="\u@\h \w \$([[ \$? != 0 ]] && echo \":( \")\$ "
# Use this other PS1 string if you want \W for root and \w for all other users:
# PS1="\u@\h $(if [[ ${EUID} == 0 ]]; then echo '\W'; else echo '\w'; fi) \$([[ \$? != 0 ]] && echo \":( \")\$ "
fi
PS2="> "
PS3="> "
PS4="+ "
# Try to keep environment pollution down, EPA loves us.
unset safe_term match_lhs
# Try to enable the auto-completion (type: "pacman -S bash-completion" to install it).
[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion
# Try to enable the "Command not found" hook ("pacman -S pkgfile" to install it).
# See also: https://wiki.archlinux.org/index.php/Bash#The_.22command_not_found.22_hook
[ -r /usr/share/doc/pkgfile/command-not-found.bash ] && . /usr/share/doc/pkgfile/command-not-found.bash#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
#PS1='[\u@\h \W]\$ '
# Simple note taker
note () {
# if file doesn't exist, create it
if [[ ! -f $HOME/.notes ]]; then
touch $HOME/.notes
fi
if [[ $# -eq 0 ]]; then
# no arguments, print file
cat $HOME/.notes
elif [[ "$1" == "-c" ]]; then
# clear file
echo "" > $HOME/.notes
else
# add all arguments to file
echo -e "$@" >> $HOME/.notes
fi
}
# Simple ToDo list
todo() {
if [[ ! -f $HOME/.todo ]]; then
touch $HOME/.todo
fi
if [[ $# -eq 0 ]]; then
cat $HOME/.todo
elif [[ "$1" == "-l" ]]; then
cat -n $HOME/.todo
elif [[ "$1" == "-c" ]]; then
echo "" > $HOME/.todo
elif [[ "$1" == "-r" ]]; then
cat -n $HOME/.todo
echo -ne "----------------------------\nType a number to remove: "
read NUMBER
sed -ie ${NUMBER}d $HOME/.todo
else
echo "$@" >> $HOME/.todo
fi
}
#g09root="/home/naoh/Documents/BecaCIN/gaussian"
#GAUSS_SCRDIR="/home/naoh/Documents/BecaCIN/gaussian/scratch"
#export g09root GAUSS_SCRDIR
#. $g09root/g09/bsd/g09.profile! Compile xft: Attempt to find a visual with the given bit depth; option -depth.
! URxvt*depth: bitdepth
! Compile xft: Turn on/off double-buffering for xft (default enabled). On some card/driver
! URxvt*buffered: boolean
! Create the window with the specified X window geometry [default 80x24]; option -geometry.
! URxvt*geometry: geom
! Use the specified colour as the windows background colour [default White]; option -bg.
! URxvt*background: colour
! Use the specified colour as the windows foreground colour [default Black]; option -fg.
! URxvt*foreground: colour
! Use the specified colour for the colour value n, where 0-7 corresponds to low-intensity
! URxvt*colorn: colour
!
! URxvt*colorBD: colour
! Use the specified colour to display bold or italic characters when the foreground colour
! URxvt*colorIT: colour
! Use the specified colour to display underlined characters when the foreground colour is
! URxvt*colorUL: colour
! If set, use the specified colour as the colour for the underline itself. If unset, use the
! URxvt*underlineColor: colour
! If set, use the specified colour as the background for highlighted characters. If unset,
! URxvt*highlightColor: colour
! If set and highlightColor is set, use the specified colour as the foreground for
! URxvt*highlightTextColor: colour
! Use the specified colour for the cursor. The default is to use the foreground colour;
! URxvt*cursorColor: colour
! Use the specified colour for the colour of the cursor text. For this to take effect,
! URxvt*cursorColor2: colour
! True: simulate reverse video by foreground and background colours; option -rv. False:
! URxvt*reverseVideo: boolean
! True: specify that jump scrolling should be used. When receiving lots of lines, urxvt will
! URxvt*jumpScroll: boolean
! True: (the default) specify that skip scrolling should be used. When receiving lots of
! URxvt*skipScroll: boolean
! Fade the text by the given percentage when focus is lost; option -fade.
! URxvt*fading: number
! Fade to this colour, when fading is used (see fading:). The default colour is black;
! URxvt*fadeColor: colour
! Set the application icon pixmap; option -icon.
! URxvt*iconFile: file
! Use the specified colour for the scrollbar [default #B2B2B2].
! URxvt*scrollColor: colour
! Use the specified colour for the scrollbars trough area [default #969696]. Only relevant
! URxvt*troughColor: colour
! The colour of the border around the text area and between the scrollbar and the text.
! URxvt*borderColor: colour
! Select the fonts to be used. This is a comma separated list of font names that are checked
! URxvt*font: fontlist
! URxvt*boldFont: fontlist
!
! URxvt*italicFont: fontlist
! The font list to use for displaying bold, italic or bold italic characters, respectively.
! URxvt*boldItalicFont: fontlist
! When font styles are not enabled, or this option is enabled (True, option -is, the
! URxvt*intensityStyles: boolean
! Set window title string, the default title is the command-line specified after the -e
! URxvt*title: string
! Set the name used to label the windows icon or displayed in an icon manager window, it
! URxvt*iconName: string
! True: de-iconify (map) on receipt of a bell character. False: no de-iconify (map) on
! URxvt*mapAlert: boolean
! True: set the urgency hint for the wm on receipt of a bell character. False: do not set
! URxvt*urgentOnBell: boolean
! True: use visual bell on receipt of a bell character; option -vb. False: no visual bell
! URxvt*visualBell: boolean
! True: start as a login shell by prepending a - to argv[0] of the shell; option -ls.
! URxvt*loginShell: boolean
! True: inhibit writing record into the system log file utmp; option -ut. False: write
! URxvt*utmpInhibit: boolean
! Specify a command pipe for vt100 printer [default lpr(1)]. Use Print to initiate a screen
! URxvt*print-pipe: string
! Set scrollbar style to rxvt, plain, next or xterm. plain is the authors favourite.
! URxvt*scrollstyle: mode
! Set the scrollbar width in pixels.
! URxvt*thickness: number
! True: enable the scrollbar [default]; option -sb. False: disable the scrollbar; option
! URxvt*scrollBar: boolean
! True: place the scrollbar on the right of the window; option -sr. False: place the
! URxvt*scrollBar_right: true
! True: display an rxvt scrollbar without a trough; option -st. False: display an rxvt
! URxvt*scrollBar_floating: boolean
! Align the top, bottom or centre [default] of the scrollbar thumb with the pointer on
! URxvt*scrollBar_align: mode
! True: scroll to bottom when tty receives output; option -si. False: do not scroll to
! URxvt*scrollTtyOutput: boolean
! True: scroll with scrollback buffer when tty receives new lines (i.e. try to show the
! URxvt*scrollWithBuffer: boolean
! True: scroll to bottom when a non-special key is pressed. Special keys are those which are
! URxvt*scrollTtyKeypress: boolean
! Save number lines in the scrollback buffer [default 64]. This resource is limited on most
! URxvt*saveLines: number
! Internal border of number pixels. This resource is limited to 100; option -b.
! URxvt*internalBorder: number
! External border of number pixels. This resource is limited to 100; option -w, -bw,
! URxvt*externalBorder: number
! Set MWM hints to request a borderless window, i.e. if honoured by the WM, the rxvt-unicode
! URxvt*borderLess: boolean
! Compile frills: Disable the usage of the built-in block graphics/line drawing characters
! URxvt*skipBuiltinGlyphs: boolean
! Specifies the terminal type name to be set in the TERM environment variable; option -tn.
! URxvt*termName: termname
! Specifies number of lines (pixel height) to insert between each row of the display
! URxvt*lineSpace: number
! True: handle Meta (Alt) + keypress to set the 8th bit. False: handle Meta (Alt) + keypress
! URxvt*meta8: boolean
! True: the mouse wheel scrolls a page full. False: the mouse wheel scrolls five lines
! URxvt*mouseWheelScrollPage: boolean
! True: store tabs as wide characters. False: interpret tabs as cursor movement only; option
! URxvt*pastableTabs: boolean
! True: blink the cursor. False: do not blink the cursor [default]; option -bc.
! URxvt*cursorBlink: boolean
! True: Make the cursor underlined. False: Make the cursor a box [default]; option -uc.
! URxvt*cursorUnderline: boolean
! True: blank the pointer when a key is pressed or after a set number of seconds of
! URxvt*pointerBlank: boolean
! Mouse pointer foreground colour.
! URxvt*pointerColor: colour
! Mouse pointer background colour.
! URxvt*pointerColor2: colour
! Specifies number of seconds before blanking the pointer [default 2]. Use a large number
! URxvt*pointerBlankDelay: number
! The string to send when the backspace key is pressed. If set to DEC or unset it will send
! URxvt*backspacekey: string
! The string to send when the delete key (not the keypad delete key) is pressed. If unset it
! URxvt*deletekey: string
! The characters used as delimiters for double-click word selection (whitespace delimiting
! URxvt*cutchars: string
!
! URxvt*{|}
! OverTheSpot, OffTheSpot, Root; option -pt.
! URxvt*preeditType: style
! name of inputMethod to use; option -im.
! URxvt*inputMethod: name
! The locale to use for opening the IM. You can use an "LC_CTYPE" of e.g. "de_DE.UTF-8" for
! URxvt*imLocale: name
! Specify the font-set used for XIM styles "OverTheSpot" or "OffTheSpot". It must be a
! URxvt*imFont: fontset
! Change the meaning of triple-click selection with the left mouse button. Instead of
! URxvt*tripleclickwords: boolean
! Enables "insecure" mode. Rxvt-unicode offers some escape sequences that echo arbitrary
! URxvt*insecure: boolean
! Set the key to be interpreted as the Meta key to: alt, meta, hyper, super, mod1, mod2,
! URxvt*modifier: modifier
! Specify the reply rxvt-unicode sends to the shell when an ENQ (control-E) character is
! URxvt*answerbackString: string
! Turn on/off secondary screen (default enabled).
! URxvt*secondaryScreen: boolean
! Turn on/off secondary screen scroll (default enabled). If this option is enabled, scrolls
! URxvt*secondaryScroll: boolean
! Turn on/off hold window after exit support. If enabled, urxvt will not immediately destroy
! URxvt*hold: boolean
! Sets the working directory for the shell (or the command specified via -e). The path must
! URxvt*chdir: path
! Compile frills: Associate string with keysym sym. The intervening resource name keysym.
! URxvt*keysym.sym: string
! URxvt*perl-ext-common: string
! Comma-separated list(s) of perl extension scripts (default: "default") to use in this
! URxvt*perl-ext: string
! Perl code to be evaluated when all extensions have been registered. See the urxvtperl(3)
! URxvt*perl-eval: string
! Colon-separated list of additional directories that hold extension scripts. When looking
! URxvt*perl-lib: path
! Additional selection patterns, see the urxvtperl(3) manpage for details.
! URxvt*selection.pattern-idx: perl-regex
! Selection auto-transform patterns, see the urxvtperl(3) manpage for details.
! URxvt*selection-autotransform.idx: perl-transform
! Sets the hotkey that starts the incremental scrollback buffer search (default: "M-s").
! URxvt*searchable-scrollback: keysym
! Specifies the program to be started with a URL argument. Used by the "selection-popup" and
! URxvt*url-launcher: string
! Compile frills: Sets the WM_TRANSIENT_FOR property to the given window id.
! URxvt*transient-for: windowid
! Compile frills: Sets override-redirect for the terminal window, making it almost invisible
! URxvt*override-redirect: boolean
! Turn on/off ISO 14755 (default enabled).
! URxvt*iso14755: boolean
! Turn on/off ISO 14755 5.2 mode (default enabled).
! URxvt*iso14755_52: boolean
! #### configuracion copiada de
! http://wiki.afterstep.org/index.php?title=Rxvt-Unicode_Configuration_Tutorial
! transparency - true or false (default)
! URxvt*transparent: true
! tint with any color; i.e., blue, red, tomato4, olivedrab2, etc.
! some nice listings are at:
! http://www.nisrv.com/drupal/?q=node/11
! http://www.htmlgoodies.com/tutorials/colors/article.php/3478921
! URxvt*tintColor: Blue
! shading - 0 to 99 darkens, 101 to 200 lightens.
! Dont use with tintColor; just use a darker or lighter color instead.
!URxvt*shading: 40
! scrollback buffer lines - 65535 is max on most machines (64 is default)
URxvt*saveLines: 12000
! font color (default is black)
URxvt*foreground: White
! background color (prior to tinting) (default is white)
!URxvt*background: Black
!
URxvt.depth: 32
URxvt.background: rgba:1111/1111/1111/dddd
!
! Xft (X FreeType) with Bitstream, DejaVu, Liberation, or Terminus fonts:
! Fedora/debian packages: libXft/libxft2
! An anti-aliased font setup with Xft looks fantastic; it can be a bit choppy
! on older systems. You can always turn off anti-aliasing (antialias=false) if
! your terminal is sluggish. Use only ONE of the Xft pairs below:
!
! Xft: Bitstream fonts
! Fedora/debian packages: bitstream-vera-sans-mono-fonts/ttf-bitstream-vera
!URxvt*font: xft:Bitstream Vera Sans Mono:pixelsize=12:antialias=true:hinting=true
!URxvt*boldFont: xft:Bitstream Vera Sans Mono:bold:pixelsize=12:antialias=true:hinting=true
!
! Xft: DejaVu fonts
! Fedora/debian packages: dejavu-sans-mono-fonts/ttf-dejavu
!URxvt*font: xft:DejaVu Sans Mono:pixelsize=12:antialias=true:hinting=true
!URxvt*boldFont: xft:DejaVu Sans Mono:bold:pixelsize=12:antialias=true:hinting=true
!
! Xft: Liberation fonts
! Fedora/debian packages: liberation-mono-fonts/ttf-liberation
!URxvt*font: xft:Liberation Mono:pixelsize=13:antialias=true:hinting=true
!URxvt*boldFont: xft:Liberation Mono:bold:pixelsize=13:antialias=true:hinting=true
!
! Xft: Terminus fonts
! Fedora/debian packages: terminus-fonts/xfonts-terminus
!URxvt*font: xft:terminus:pixelsize=15
!URxvt*boldFont: xft:terminus:bold:pixelsize=15
! Traditional fonts - a more traditional font setup in lieu of xft
!URxvt*font:-*-courier-medium-r-normal-*-14-*-*-*-*-*-iso8859-1
!URxvt*boldFont:-*-courier-bold-r-normal-*-14-*-*-*-*-*-iso8859-1
URxvt.font: -misc-fixed-medium-r-normal--15-140-75-75-c-90-iso8859-1
URxvt.boldFont: -misc-fixed-bold-r-normal--15-140-75-75-c-90-iso8859-1
! Replace blue folder colors with a lighter shade for clarity. To
! set colored folders and files within urxvt, xterm, and aterm, add
! the following line to your ~/.bashrc ($HOME/.bashrc) file under
! the heading "! User specific aliases and functions":
! alias ls="ls -h --color=auto"
URxvt*color4: RoyalBlue
URxvt*color12: RoyalBlue
! scrollbar - true (default) or false
URxvt*scrollBar: true
! scrollbar position - left=false (default) or right=true
URxvt*scrollBar_right: true
! scrollbar style - rxvt (default), plain, next, or xterm
URxvt*scrollstyle: rxvt
! Perl extensions
URxvt*perl-ext-common: default,matcher,tabbed
!URxvt*perl-ext-common: default,matcher
!Open URLs with firefox
URxvt.url-launcher: /usr/bin/firefox
URxvt.matcher.button: 1
! Tabs
URxvt.tabbed.tabbar-fg: 2
URxvt.tabbed.tabbar-bg: 0
URxvt.tabbed.tab-fg: 3
URxvt.tabbed.tab-bg: 0Thanks!
Offline
There is a lot of bloat/cruft in those files. Have you tried just using a basic prompt in your /etc/bash.bashrc and no .Xresources? The former seems to be stuff that has been copy/pasted from other sources and the latter is almost all commented out anyway...
Offline
Hi!
I've tried removing both, bashrc and .Xresources, with no luck. It stills lags noticeably. I've also tried re-installing it with no luck either, I'm confused about what could be causing this as the system is almost completely clean (just a WM, firefox, ATI drivers, and some utilities such as gedit) :S
Even the imported configurations from before the reinstallation are just a few, the WM config file, xinitrc, and bashrc and .Xresource which I just removed.
Last edited by NaOH (2013-12-27 22:51:25)
Offline
The file to test would be /etc/bash.bashrc - you have added a lot of cruft in there.
Do you get the same lag in xterm?
Offline
Yes, I removed /etc/bash.bashrc, xterm is showing no lag whatsoever, it just loads inmediatly. Urxvt, on the other hand, takes as much time as firefox to load, which is crazy.
Offline
Are you starting urxvt or urvt{d,c}? Run it from a terminal (xterm) and see if you get any errors/output.
Offline
I'm running "urxvt", it doesn't display any message when run from xterm :S
Is there any way to know if there is a function call or something that's taking that long to execute?
Offline
strace it.
Offline
strace -o log urxvt -e exit
execve("/usr/bin/urxvt", ["urxvt", "-e", "exit"], [/* 24 vars */]) = 0
brk(0) = 0x21ee000
access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
open("/usr/lib/perl5/core_perl/CORE/tls/x86_64/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/CORE/tls/x86_64", 0x7fffb449bba0) = -1 ENOENT (No such file or directory)
open("/usr/lib/perl5/core_perl/CORE/tls/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/CORE/tls", 0x7fffb449bba0) = -1 ENOENT (No such file or directory)
open("/usr/lib/perl5/core_perl/CORE/x86_64/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/CORE/x86_64", 0x7fffb449bba0) = -1 ENOENT (No such file or directory)
open("/usr/lib/perl5/core_perl/CORE/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/CORE", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=80332, ...}) = 0
mmap(NULL, 80332, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f9adfd01000
close(3) = 0
open("/usr/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200U\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1059240, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfd00000
mmap(NULL, 3154264, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9adf7f3000
mprotect(0x7f9adf8f4000, 2097152, PROT_NONE) = 0
mmap(0x7f9adfaf4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x101000) = 0x7f9adfaf4000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libfontconfig.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libfontconfig.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000p\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=244696, ...}) = 0
mmap(NULL, 2340456, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9adf5b7000
mprotect(0x7f9adf5f1000, 2093056, PROT_NONE) = 0
mmap(0x7f9adf7f0000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x39000) = 0x7f9adf7f0000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libXft.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXft.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000C\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=85432, ...}) = 0
mmap(NULL, 2180648, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9adf3a2000
mprotect(0x7f9adf3b6000, 2093056, PROT_NONE) = 0
mmap(0x7f9adf5b5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x13000) = 0x7f9adf5b5000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libXrender.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXrender.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\33\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=39376, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfcff000
mmap(NULL, 2134664, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9adf198000
mprotect(0x7f9adf1a1000, 2093056, PROT_NONE) = 0
mmap(0x7f9adf3a0000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f9adf3a0000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libX11.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libX11.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\335\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1289752, ...}) = 0
mmap(NULL, 3386784, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9adee5d000
mprotect(0x7f9adef92000, 2097152, PROT_NONE) = 0
mmap(0x7f9adf192000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x135000) = 0x7f9adf192000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libstartup-notification-1.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libstartup-notification-1.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3003\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=39576, ...}) = 0
mmap(NULL, 2135192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9adec53000
mprotect(0x7f9adec5c000, 2093056, PROT_NONE) = 0
mmap(0x7f9adee5b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f9adee5b000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libperl.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\30\3\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=1740664, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfcfe000
mmap(NULL, 3735184, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9ade8c3000
mprotect(0x7f9adea49000, 2097152, PROT_NONE) = 0
mmap(0x7f9adec49000, 40960, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x186000) = 0x7f9adec49000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20o\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=144938, ...}) = 0
mmap(NULL, 2212976, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9ade6a6000
mprotect(0x7f9ade6be000, 2093056, PROT_NONE) = 0
mmap(0x7f9ade8bd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f9ade8bd000
mmap(0x7f9ade8bf000, 13424, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f9ade8bf000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\34\2\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=2031229, ...}) = 0
mmap(NULL, 3840528, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9ade2fc000
mprotect(0x7f9ade49c000, 2097152, PROT_NONE) = 0
mmap(0x7f9ade69c000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a0000) = 0x7f9ade69c000
mmap(0x7f9ade6a2000, 14864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f9ade6a2000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260*\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=89000, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfcfd000
mmap(NULL, 2184800, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9ade0e6000
mprotect(0x7f9ade0fb000, 2097152, PROT_NONE) = 0
mmap(0x7f9ade2fb000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f9ade2fb000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libfreetype.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libfreetype.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\335\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=675656, ...}) = 0
mmap(NULL, 2770832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9adde41000
mprotect(0x7f9addee0000, 2093056, PROT_NONE) = 0
mmap(0x7f9ade0df000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9e000) = 0x7f9ade0df000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libexpat.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libexpat.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`?\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=170144, ...}) = 0
mmap(NULL, 2265320, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9addc17000
mprotect(0x7f9addc3e000, 2097152, PROT_NONE) = 0
mmap(0x7f9adde3e000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x27000) = 0x7f9adde3e000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libxcb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libxcb.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\244\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=129776, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfcfc000
mmap(NULL, 2225160, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9add9f7000
mprotect(0x7f9adda15000, 2097152, PROT_NONE) = 0
mmap(0x7f9addc15000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1e000) = 0x7f9addc15000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\16\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=14648, ...}) = 0
mmap(NULL, 2109712, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9add7f3000
mprotect(0x7f9add7f6000, 2093056, PROT_NONE) = 0
mmap(0x7f9add9f5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f9add9f5000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libxcb-util.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libxcb-util.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260$\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=20712, ...}) = 0
mmap(NULL, 2115824, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9add5ee000
mprotect(0x7f9add5f2000, 2097152, PROT_NONE) = 0
mmap(0x7f9add7f2000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f9add7f2000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libX11-xcb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libX11-xcb.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \6\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=6008, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfcfb000
mmap(NULL, 2101304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9add3ec000
mprotect(0x7f9add3ed000, 2093056, PROT_NONE) = 0
mmap(0x7f9add5ec000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0) = 0x7f9add5ec000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\f\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=35160, ...}) = 0
mmap(NULL, 2318848, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9add1b5000
mprotect(0x7f9add1bd000, 2093056, PROT_NONE) = 0
mmap(0x7f9add3bc000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f9add3bc000
mmap(0x7f9add3be000, 184832, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f9add3be000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000#\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=88592, ...}) = 0
mmap(NULL, 2183688, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9adcf9f000
mprotect(0x7f9adcfb4000, 2093056, PROT_NONE) = 0
mmap(0x7f9add1b3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14000) = 0x7f9add1b3000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\27\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=65760, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfcfa000
mmap(NULL, 2160936, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9adcd8f000
mprotect(0x7f9adcd9e000, 2093056, PROT_NONE) = 0
mmap(0x7f9adcf9d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7f9adcf9d000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libpng16.so.16", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libpng16.so.16", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20`\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=216216, ...}) = 0
mmap(NULL, 2311384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9adcb5a000
mprotect(0x7f9adcb8e000, 2093056, PROT_NONE) = 0
mmap(0x7f9adcd8d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x33000) = 0x7f9adcd8d000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libXau.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXau.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \17\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=14512, ...}) = 0
mmap(NULL, 2109744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9adc956000
mprotect(0x7f9adc958000, 2097152, PROT_NONE) = 0
mmap(0x7f9adcb58000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f9adcb58000
close(3) = 0
open("/usr/lib/perl5/core_perl/CORE/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\23\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=22632, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfcf9000
mmap(NULL, 2117864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9adc750000
mprotect(0x7f9adc755000, 2093056, PROT_NONE) = 0
mmap(0x7f9adc954000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f9adc954000
close(3) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfcf8000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfcf7000
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfcf5000
arch_prctl(ARCH_SET_FS, 0x7f9adfcf5740) = 0
mprotect(0x7f9ade69c000, 16384, PROT_READ) = 0
mprotect(0x7f9adc954000, 4096, PROT_READ) = 0
mprotect(0x7f9adcb58000, 4096, PROT_READ) = 0
mprotect(0x7f9adfaf4000, 4096, PROT_READ) = 0
mprotect(0x7f9add1b3000, 4096, PROT_READ) = 0
mprotect(0x7f9adcd8d000, 4096, PROT_READ) = 0
mprotect(0x7f9add3bc000, 4096, PROT_READ) = 0
mprotect(0x7f9addc15000, 4096, PROT_READ) = 0
mprotect(0x7f9add9f5000, 4096, PROT_READ) = 0
mprotect(0x7f9adf192000, 4096, PROT_READ) = 0
mprotect(0x7f9add5ec000, 4096, PROT_READ) = 0
mprotect(0x7f9adde3e000, 8192, PROT_READ) = 0
mprotect(0x7f9ade0df000, 24576, PROT_READ) = 0
mprotect(0x7f9ade8bd000, 4096, PROT_READ) = 0
mprotect(0x7f9adec49000, 16384, PROT_READ) = 0
mprotect(0x7f9adee5b000, 4096, PROT_READ) = 0
mprotect(0x7f9adf3a0000, 4096, PROT_READ) = 0
mprotect(0x7f9adf7f0000, 8192, PROT_READ) = 0
mprotect(0x7f9adf5b5000, 4096, PROT_READ) = 0
mprotect(0x72e000, 8192, PROT_READ) = 0
mprotect(0x7f9adfd15000, 4096, PROT_READ) = 0
munmap(0x7f9adfd01000, 80332) = 0
set_tid_address(0x7f9adfcf5a10) = 4336
set_robust_list(0x7f9adfcf5a20, 24) = 0
rt_sigaction(SIGRTMIN, {0x7f9ade6ac9f0, [], SA_RESTORER|SA_SIGINFO, 0x7f9ade6b5870}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {0x7f9ade6aca80, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f9ade6b5870}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
fcntl(0, F_GETFL) = 0x8002 (flags O_RDWR|O_LARGEFILE)
fcntl(1, F_GETFL) = 0x8002 (flags O_RDWR|O_LARGEFILE)
fcntl(2, F_GETFL) = 0x8002 (flags O_RDWR|O_LARGEFILE)
getuid() = 1000
getgid() = 100
geteuid() = 1000
getegid() = 100
ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
dup2(2, 0) = 0
dup2(2, 1) = 1
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
epoll_create1(EPOLL_CLOEXEC) = 3
fcntl(3, F_SETFD, FD_CLOEXEC) = 0
brk(0) = 0x21ee000
brk(0x220f000) = 0x220f000
pipe([4, 5]) = 0
fcntl(4, F_SETFD, FD_CLOEXEC) = 0
fcntl(4, F_SETFL, O_RDONLY|O_NONBLOCK) = 0
fcntl(5, F_SETFD, FD_CLOEXEC) = 0
fcntl(5, F_SETFL, O_RDONLY|O_NONBLOCK) = 0
rt_sigaction(SIGCHLD, {0x436480, ~[RTMIN RT_1], SA_RESTORER|SA_RESTART, 0x7f9ade6b5870}, NULL, 8) = 0
rt_sigaction(SIGHUP, {SIG_IGN, [HUP], SA_RESTORER|SA_RESTART, 0x7f9ade331390}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGPIPE, {SIG_IGN, [PIPE], SA_RESTORER|SA_RESTART, 0x7f9ade331390}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTERM, {0x436480, ~[RTMIN RT_1], SA_RESTORER|SA_RESTART, 0x7f9ade6b5870}, NULL, 8) = 0
rt_sigaction(SIGINT, {0x436480, ~[RTMIN RT_1], SA_RESTORER|SA_RESTART, 0x7f9ade6b5870}, NULL, 8) = 0
open("/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=1613216, ...}) = 0
mmap(NULL, 1613216, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f9adfb6b000
close(6) = 0
socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC, 0) = 6
connect(6, {sa_family=AF_LOCAL, sun_path=@"/tmp/.X11-unix/X0"}, 20) = 0
getpeername(6, {sa_family=AF_LOCAL, sun_path=@"/tmp/.X11-unix/X0"}, [20]) = 0
uname({sys="Linux", node="arch", ...}) = 0
access("/home/naoh/.Xauthority", R_OK) = 0
open("/home/naoh/.Xauthority", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0600, st_size=49, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfd14000
read(7, "\1\0\0\4arch\0\0010\0\22MIT-MAGIC-COOKIE-1\0"..., 4096) = 49
read(7, "", 4096) = 0
close(7) = 0
munmap(0x7f9adfd14000, 4096) = 0
getsockname(6, {sa_family=AF_LOCAL, NULL}, [2]) = 0
fcntl(6, F_GETFL) = 0x2 (flags O_RDWR)
fcntl(6, F_SETFL, O_RDWR|O_NONBLOCK) = 0
fcntl(6, F_SETFD, FD_CLOEXEC) = 0
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"l\0\v\0\0\0\22\0\20\0\0\0", 12}, {"", 0}, {"MIT-MAGIC-COOKIE-1", 18}, {"\0\0", 2}, {"\230\22|\350 GxS-2,\352\251\245\245\265", 16}, {"", 0}], 6) = 48
recvfrom(6, 0x21f8c10, 8, 0, 0, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvfrom(6, "\1\0\v\0\0\0s\2", 8, 0, NULL, NULL) = 8
recvfrom(6, "\310\6\256\0\0\0 \1\377\377\37\0\0\1\0\0\24\0\377\377\1\7\0\0 \10\377\0\0\0\0"..., 2508, 0, NULL, NULL) = 2508
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"b\0\5\0\f\0\0\0BIG-REQUESTS", 20}], 1) = 20
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0\1\0\0\0\0\0\1\205\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096}], msg_controllen=0, msg_flags=0}, 0) = 32
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\205\0\1\0", 4}], 1) = 4
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0\2\0\0\0\0\0\377\377?\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096}], msg_controllen=0, msg_flags=0}, 0) = 32
recvmsg(6, 0x7fffb449bfa0, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"7\0\5\0\0\0 \1_\1\0\0\10\0\0\0\377\377\377\0\24\0\6\0_\1\0\0\27\0\0\0"..., 44}, {NULL, 0}, {"", 0}], 3) = 44
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096}], msg_controllen=0, msg_flags=0}, 0) = 32
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"b\0\5\0\t\0 \1", 8}, {"XKEYBOARD", 9}, {"\0\0\0", 3}], 3) = 20
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0\5\0\0\0\0\0\1\207U\211\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096}], msg_controllen=0, msg_flags=0}, 0) = 32
recvmsg(6, 0x7fffb449bee0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bee0, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\207\0\2\0\1\0\0\0", 8}, {NULL, 0}, {"", 0}], 3) = 8
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\1\6\0\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096}], msg_controllen=0, msg_flags=0}, 0) = 32
recvmsg(6, 0x7fffb449bf70, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bf70, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\20\0\3\0\4\0\0\0TEXT\20\0\6\0\r\0\377\0COMPOUND_TEX"..., 836}, {NULL, 0}, {"", 0}], 3) = 836
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0\7\0\0\0\0\0\25\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 1248
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bfe0, 0) = -1 EAGAIN (Resource temporarily unavailable)
open("/home/naoh/.Xdefaults", O_RDONLY) = -1 ENOENT (No such file or directory)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\24\0\6\0_\1\0\0+\1\0\0\37\0\0\0\0\0\0\0\0\341\365\5", 24}, {NULL, 0}, {"", 0}], 3) = 24
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0.\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096}], msg_controllen=0, msg_flags=0}, 0) = 32
recvmsg(6, 0x7fffb449b9c0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b9c0, 0) = -1 EAGAIN (Resource temporarily unavailable)
uname({sys="Linux", node="arch", ...}) = 0
open("/home/naoh/.Xdefaults-arch", O_RDONLY) = -1 ENOENT (No such file or directory)
futex(0x7f9add9f60c8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
open("/usr/lib/perl5/core_perl/CORE/libXcursor.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=80332, ...}) = 0
mmap(NULL, 80332, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f9adfd01000
close(7) = 0
open("/usr/lib/libXcursor.so.1", O_RDONLY|O_CLOEXEC) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p+\0\0\0\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=43680, ...}) = 0
mmap(NULL, 2138928, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7f9adc545000
mprotect(0x7f9adc54f000, 2093056, PROT_NONE) = 0
mmap(0x7f9adc74e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x9000) = 0x7f9adc74e000
close(7) = 0
open("/usr/lib/perl5/core_perl/CORE/libXfixes.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/usr/lib/libXfixes.so.3", O_RDONLY|O_CLOEXEC) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\25\0\0\0\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0755, st_size=22576, ...}) = 0
mmap(NULL, 2117912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7f9adc33f000
mprotect(0x7f9adc344000, 2093056, PROT_NONE) = 0
mmap(0x7f9adc543000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x4000) = 0x7f9adc543000
close(7) = 0
mprotect(0x7f9adc543000, 4096, PROT_READ) = 0
mprotect(0x7f9adc74e000, 4096, PROT_READ) = 0
munmap(0x7f9adfd01000, 80332) = 0
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"-\0\5\0\1\0 \1\5\0\0\0fixed\0\0\0b\341\4\0\6\0ND", 28}, {"RENDER", 6}, {"\0\0", 2}], 3) = 36
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0000\0\0\0\0\0\1\213\0\216\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096}], msg_controllen=0, msg_flags=0}, 0) = 32
recvmsg(6, 0x7fffb449be90, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449be90, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\213\0\3\0\0\0\0\0\v\0\0\0\213\1\1\0", 16}, {NULL, 0}, {"", 0}], 3) = 16
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0001\0\0\0\0\0\0\0\0\0\v\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 1684
recvmsg(6, 0x7fffb449bea0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bea0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bea0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bea0, 0) = -1 EAGAIN (Resource temporarily unavailable)
open("/home/naoh/.Xdefaults", O_RDONLY) = -1 ENOENT (No such file or directory)
uname({sys="Linux", node="arch", ...}) = 0
open("/home/naoh/.Xdefaults-arch", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/naoh/.Xdefaults", O_RDONLY) = -1 ENOENT (No such file or directory)
uname({sys="Linux", node="arch", ...}) = 0
open("/home/naoh/.Xdefaults-arch", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/naoh/.Xdefaults", O_RDONLY) = -1 ENOENT (No such file or directory)
uname({sys="Linux", node="arch", ...}) = 0
open("/home/naoh/.Xdefaults-arch", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/naoh/.Xdefaults", O_RDONLY) = -1 ENOENT (No such file or directory)
uname({sys="Linux", node="arch", ...}) = 0
open("/home/naoh/.Xdefaults-arch", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/naoh/.Xdefaults", O_RDONLY) = -1 ENOENT (No such file or directory)
uname({sys="Linux", node="arch", ...}) = 0
open("/home/naoh/.Xdefaults-arch", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/naoh/.Xdefaults", O_RDONLY) = -1 ENOENT (No such file or directory)
uname({sys="Linux", node="arch", ...}) = 0
open("/home/naoh/.Xdefaults-arch", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/naoh/.Xdefaults", O_RDONLY) = -1 ENOENT (No such file or directory)
uname({sys="Linux", node="arch", ...}) = 0
open("/home/naoh/.Xdefaults-arch", O_RDONLY) = -1 ENOENT (No such file or directory)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"/\0\2\0\1\0 \1", 8}, {NULL, 0}, {"", 0}], 3) = 8
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0003\0005\3\0\0\0\0\0\0\6\0\377\377\366\377\0\0\0\0\0\0\2\0\6\0\6\0\v\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 3316
recvmsg(6, 0x7fffb449bf30, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bf30, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"^\0\10\0\2\0 \1\1\0 \1\1\0 \1 \0 \0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48}, {NULL, 0}, {"", 0}], 3) = 48
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0006\0\16\0\0\0\6\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 88
recvmsg(6, 0x7fffb449c050, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449c050, 0) = -1 EAGAIN (Resource temporarily unavailable)
getsockname(6, {sa_family=AF_LOCAL, NULL}, [2]) = 0
fcntl(6, F_SETFD, FD_CLOEXEC) = 0
rt_sigaction(SIGFPE, {SIG_IGN, [FPE], SA_RESTORER|SA_RESTART, 0x7f9ade331390}, {SIG_DFL, [], 0}, 8) = 0
brk(0x2230000) = 0x2230000
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
open("/dev/urandom", O_RDONLY) = 7
read(7, "O\0003n", 4) = 4
close(7) = 0
readlink("/proc/self/exe", "/usr/bin/urxvt", 4095) = 14
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
lseek(0, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
ioctl(1, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
lseek(1, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
ioctl(2, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
lseek(2, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
open("/dev/null", O_RDONLY) = 7
ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449be20) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(7, 0, SEEK_CUR) = 0
fcntl(7, F_SETFD, FD_CLOEXEC) = 0
fstat(7, {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 3), ...}) = 0
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
rt_sigaction(SIGCHLD, NULL, {0x436480, ~[KILL STOP RTMIN RT_1], SA_RESTORER|SA_RESTART, 0x7f9ade6b5870}, 8) = 0
brk(0x2251000) = 0x2251000
brk(0x2272000) = 0x2272000
stat("/usr/lib/urxvt/urxvt.pmc", 0x7fffb449ba10) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/urxvt.pm", {st_mode=S_IFREG|0644, st_size=60715, ...}) = 0
open("/usr/lib/urxvt/urxvt.pm", O_RDONLY) = 8
ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449b720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(8, 0, SEEK_CUR) = 0
read(8, "=encoding utf8\n\n=head1 NAME\n\nurx"..., 8192) = 8192
read(8, " filter/change and output the te"..., 8192) = 8192
stat("/usr/lib/urxvt/utf8.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/utf8.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/utf8.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/utf8.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/utf8.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/utf8.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/utf8.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/utf8.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/utf8.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/utf8.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/utf8.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/utf8.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/utf8.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/utf8.pm", {st_mode=S_IFREG|0444, st_size=7795, ...}) = 0
open("/usr/share/perl5/core_perl/utf8.pm", O_RDONLY) = 9
ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449b0e0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(9, 0, SEEK_CUR) = 0
read(9, "package utf8;\n\n$utf8::hint_bits "..., 8192) = 7795
lseek(9, 378, SEEK_SET) = 378
lseek(9, 0, SEEK_CUR) = 378
close(9) = 0
stat("/usr/lib/urxvt/strict.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/strict.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/strict.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/strict.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/strict.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/strict.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/strict.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/strict.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/strict.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/strict.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/strict.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/strict.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/strict.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/strict.pm", {st_mode=S_IFREG|0444, st_size=3933, ...}) = 0
open("/usr/share/perl5/core_perl/strict.pm", O_RDONLY) = 9
ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449b0e0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(9, 0, SEEK_CUR) = 0
read(9, "package strict;\n\n$strict::VERSIO"..., 8192) = 3933
brk(0x2293000) = 0x2293000
lseek(9, 1005, SEEK_SET) = 1005
lseek(9, 0, SEEK_CUR) = 1005
close(9) = 0
stat("/usr/lib/urxvt/Carp.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/Carp.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/Carp.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/Carp.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/Carp.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/Carp.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/Carp.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/Carp.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/Carp.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/Carp.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/Carp.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/Carp.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/Carp.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/Carp.pm", {st_mode=S_IFREG|0444, st_size=22004, ...}) = 0
open("/usr/share/perl5/core_perl/Carp.pm", O_RDONLY) = 9
ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449b0e0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(9, 0, SEEK_CUR) = 0
read(9, "package Carp;\n\n{ use 5.006; }\nus"..., 8192) = 8192
stat("/usr/lib/urxvt/warnings.pmc", 0x7fffb449ad90) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/warnings.pm", 0x7fffb449ace0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/warnings.pmc", 0x7fffb449ad90) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/warnings.pm", 0x7fffb449ace0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/warnings.pmc", 0x7fffb449ad90) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/warnings.pm", 0x7fffb449ace0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/warnings.pmc", 0x7fffb449ad90) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/warnings.pm", 0x7fffb449ace0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/warnings.pmc", 0x7fffb449ad90) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/warnings.pm", 0x7fffb449ace0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/warnings.pmc", 0x7fffb449ad90) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/warnings.pm", 0x7fffb449ace0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/warnings.pmc", 0x7fffb449ad90) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/warnings.pm", {st_mode=S_IFREG|0444, st_size=20624, ...}) = 0
open("/usr/share/perl5/core_perl/warnings.pm", O_RDONLY) = 10
ioctl(10, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449aaa0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(10, 0, SEEK_CUR) = 0
read(10, "# -*- buffer-read-only: t -*-\n# "..., 8192) = 8192
read(10, "\", # [14]\n 'overflow'\t\t=> \"\\x"..., 8192) = 8192
brk(0x22b4000) = 0x22b4000
read(10, "ndef, @_) ;\n}\n\nsub import \n{\n "..., 8192) = 4240
brk(0x22d5000) = 0x22d5000
read(10, "", 8192) = 0
close(10) = 0
read(9, " # This *shouldn't* ha"..., 8192) = 8192
brk(0x22f6000) = 0x22f6000
lseek(9, 13751, SEEK_SET) = 13751
lseek(9, 0, SEEK_CUR) = 13751
close(9) = 0
stat("/usr/lib/urxvt/Exporter.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/Exporter.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/Exporter.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/Exporter.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/Exporter.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/Exporter.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/Exporter.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/Exporter.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/Exporter.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/Exporter.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/Exporter.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/Exporter.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/Exporter.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/Exporter.pm", {st_mode=S_IFREG|0444, st_size=18752, ...}) = 0
open("/usr/share/perl5/core_perl/Exporter.pm", O_RDONLY) = 9
ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449b0e0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(9, 0, SEEK_CUR) = 0
read(9, "package Exporter;\n\nrequire 5.006"..., 8192) = 8192
brk(0x2319000) = 0x2319000
lseek(9, 2366, SEEK_SET) = 2366
lseek(9, 0, SEEK_CUR) = 2366
close(9) = 0
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
stat("/usr/lib/urxvt/Scalar/Util.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/Scalar/Util.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/Scalar/Util.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/Scalar/Util.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/Scalar/Util.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/Scalar/Util.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/Scalar/Util.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/Scalar/Util.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/Scalar/Util.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/Scalar/Util.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/Scalar/Util.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/Scalar/Util.pm", {st_mode=S_IFREG|0444, st_size=8300, ...}) = 0
open("/usr/lib/perl5/core_perl/Scalar/Util.pm", O_RDONLY) = 9
ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449b0e0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(9, 0, SEEK_CUR) = 0
read(9, "# Scalar::Util.pm\n#\n# Copyright "..., 8192) = 8192
lseek(9, 1109, SEEK_SET) = 1109
lseek(9, 0, SEEK_CUR) = 1109
close(9) = 0
stat("/usr/lib/urxvt/List/Util.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/List/Util.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/List/Util.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/List/Util.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/List/Util.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/List/Util.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/List/Util.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/List/Util.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/List/Util.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/List/Util.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/List/Util.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/List/Util.pm", {st_mode=S_IFREG|0444, st_size=6391, ...}) = 0
open("/usr/lib/perl5/core_perl/List/Util.pm", O_RDONLY) = 9
ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449b0e0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(9, 0, SEEK_CUR) = 0
read(9, "# List::Util.pm\n#\n# Copyright (c"..., 8192) = 6391
lseek(9, 652, SEEK_SET) = 652
lseek(9, 0, SEEK_CUR) = 652
close(9) = 0
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
stat("/usr/lib/urxvt/XSLoader.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/XSLoader.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/XSLoader.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/XSLoader.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/XSLoader.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/XSLoader.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/XSLoader.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/XSLoader.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/XSLoader.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/XSLoader.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/XSLoader.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/XSLoader.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/XSLoader.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/XSLoader.pm", {st_mode=S_IFREG|0444, st_size=10234, ...}) = 0
open("/usr/share/perl5/core_perl/XSLoader.pm", O_RDONLY) = 9
ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449b0e0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(9, 0, SEEK_CUR) = 0
read(9, "# Generated from XSLoader.pm.PL "..., 8192) = 8192
lseek(9, 2886, SEEK_SET) = 2886
lseek(9, 0, SEEK_CUR) = 2886
close(9) = 0
stat("/usr/lib/perl5/core_perl/auto/List/Util/Util.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
stat("/usr/lib/perl5/core_perl/auto/List/Util/Util.so", {st_mode=S_IFREG|0555, st_size=31861, ...}) = 0
stat("/usr/lib/perl5/core_perl/auto/List/Util/Util.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
open("/usr/lib/perl5/core_perl/auto/List/Util/Util.so", O_RDONLY|O_CLOEXEC) = 9
read(9, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \26\0\0\0\0\0\0"..., 832) = 832
fstat(9, {st_mode=S_IFREG|0555, st_size=31861, ...}) = 0
mmap(NULL, 2122192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x7f9adc138000
mprotect(0x7f9adc13d000, 2097152, PROT_NONE) = 0
mmap(0x7f9adc33d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x5000) = 0x7f9adc33d000
close(9) = 0
mprotect(0x7f9adc33d000, 4096, PROT_READ) = 0
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
read(8, "\nThe following \"macros\" deal wit"..., 8192) = 8192
brk(0x233a000) = 0x233a000
brk(0x235b000) = 0x235b000
read(8, "e[, $hook_name..])\n\nDynamically "..., 8192) = 8192
brk(0x237c000) = 0x237c000
read(8, "o14755_52 jumpScroll loginShell\n"..., 8192) = 8192
read(8, " need. Correctly\naccounts for wi"..., 8192) = 8192
read(8, "row|col pair within the logical\n"..., 8192) = 8192
brk(0x239d000) = 0x239d000
stat("/usr/lib/urxvt/integer.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/integer.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/integer.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/integer.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/integer.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/integer.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/integer.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/integer.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/integer.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/integer.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/integer.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/integer.pm", 0x7fffb449b320) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/integer.pmc", 0x7fffb449b3d0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/integer.pm", {st_mode=S_IFREG|0444, st_size=3266, ...}) = 0
open("/usr/share/perl5/core_perl/integer.pm", O_RDONLY) = 9
ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449b0e0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(9, 0, SEEK_CUR) = 0
read(9, "package integer;\n\nour $VERSION ="..., 8192) = 3266
read(9, "", 8192) = 0
close(9) = 0
read(8, "hen the timer\nis automatically r"..., 8192) = 3371
read(8, "", 8192) = 0
close(8) = 0
brk(0x23be000) = 0x23be000
close(7) = 0
stat("/home/naoh/.urxvt/ext/option-popup", 0x2207910) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/perl/option-popup", {st_mode=S_IFREG|0644, st_size=2172, ...}) = 0
open("/usr/lib/urxvt/perl/option-popup", O_RDONLY) = 7
ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449bc10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(7, 0, SEEK_CUR) = 0
fstat(7, {st_mode=S_IFREG|0644, st_size=2172, ...}) = 0
fcntl(7, F_SETFD, FD_CLOEXEC) = 0
fstat(7, {st_mode=S_IFREG|0644, st_size=2172, ...}) = 0
read(7, "#! perl\n\n=head1 NAME\n\noption-pop"..., 8192) = 2172
read(7, "", 8192) = 0
close(7) = 0
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
stat("/home/naoh/.urxvt/ext/readline", 0x2207910) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/perl/readline", {st_mode=S_IFREG|0644, st_size=2069, ...}) = 0
open("/usr/lib/urxvt/perl/readline", O_RDONLY) = 7
ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449bc10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(7, 0, SEEK_CUR) = 0
fstat(7, {st_mode=S_IFREG|0644, st_size=2069, ...}) = 0
fcntl(7, F_SETFD, FD_CLOEXEC) = 0
fstat(7, {st_mode=S_IFREG|0644, st_size=2069, ...}) = 0
read(7, "#! perl\n\n=head1 NAME\n\nreadline -"..., 8192) = 2069
read(7, "", 8192) = 0
stat("/usr/lib/urxvt/POSIX.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/POSIX.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/POSIX.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/POSIX.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/POSIX.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/POSIX.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/POSIX.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/POSIX.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/POSIX.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/POSIX.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/POSIX.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/POSIX.pm", {st_mode=S_IFREG|0444, st_size=16637, ...}) = 0
open("/usr/lib/perl5/core_perl/POSIX.pm", O_RDONLY) = 8
ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449b660) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(8, 0, SEEK_CUR) = 0
read(8, "package POSIX;\nuse strict;\nuse w"..., 8192) = 8192
stat("/usr/lib/urxvt/Fcntl.pmc", 0x7fffb449b310) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/Fcntl.pm", 0x7fffb449b260) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/Fcntl.pmc", 0x7fffb449b310) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/Fcntl.pm", 0x7fffb449b260) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/Fcntl.pmc", 0x7fffb449b310) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/Fcntl.pm", 0x7fffb449b260) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/Fcntl.pmc", 0x7fffb449b310) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/Fcntl.pm", 0x7fffb449b260) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/Fcntl.pmc", 0x7fffb449b310) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/Fcntl.pm", 0x7fffb449b260) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/Fcntl.pmc", 0x7fffb449b310) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/Fcntl.pm", {st_mode=S_IFREG|0444, st_size=3924, ...}) = 0
open("/usr/lib/perl5/core_perl/Fcntl.pm", O_RDONLY) = 9
ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449b020) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(9, 0, SEEK_CUR) = 0
read(9, "package Fcntl;\n\n=head1 NAME\n\nFcn"..., 8192) = 3924
brk(0x23df000) = 0x23df000
read(9, "", 8192) = 0
close(9) = 0
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
stat("/usr/lib/perl5/core_perl/auto/Fcntl/Fcntl.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
stat("/usr/lib/perl5/core_perl/auto/Fcntl/Fcntl.so", {st_mode=S_IFREG|0555, st_size=21954, ...}) = 0
stat("/usr/lib/perl5/core_perl/auto/Fcntl/Fcntl.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
open("/usr/lib/perl5/core_perl/auto/Fcntl/Fcntl.so", O_RDONLY|O_CLOEXEC) = 9
read(9, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\33\0\0\0\0\0\0"..., 832) = 832
fstat(9, {st_mode=S_IFREG|0555, st_size=21954, ...}) = 0
mmap(NULL, 2113800, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x7f9adbf33000
mprotect(0x7f9adbf36000, 2097152, PROT_NONE) = 0
mmap(0x7f9adc136000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x3000) = 0x7f9adc136000
close(9) = 0
mprotect(0x7f9adc136000, 4096, PROT_READ) = 0
read(8, "\t\tEAGAIN EALREADY EBADF EBUSY EC"..., 8192) = 8192
brk(0x2400000) = 0x2400000
brk(0x2421000) = 0x2421000
read(8, "ub DELETE { delete $SIG{ &_check"..., 8192) = 253
read(8, "", 8192) = 0
close(8) = 0
stat("/usr/lib/perl5/core_perl/auto/POSIX/POSIX.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
stat("/usr/lib/perl5/core_perl/auto/POSIX/POSIX.so", {st_mode=S_IFREG|0555, st_size=98287, ...}) = 0
stat("/usr/lib/perl5/core_perl/auto/POSIX/POSIX.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
open("/usr/lib/perl5/core_perl/auto/POSIX/POSIX.so", O_RDONLY|O_CLOEXEC) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 Z\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0555, st_size=98287, ...}) = 0
mmap(NULL, 2180400, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7f9adbd1e000
mprotect(0x7f9adbd30000, 2093056, PROT_NONE) = 0
mmap(0x7f9adbf2f000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x11000) = 0x7f9adbf2f000
close(8) = 0
mprotect(0x7f9adbf2f000, 12288, PROT_READ) = 0
brk(0x2442000) = 0x2442000
stat("/usr/lib/urxvt/Tie/Hash.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/Tie/Hash.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/Tie/Hash.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/Tie/Hash.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/Tie/Hash.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/Tie/Hash.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/Tie/Hash.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/Tie/Hash.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/Tie/Hash.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/Tie/Hash.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/Tie/Hash.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/Tie/Hash.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/Tie/Hash.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/Tie/Hash.pm", {st_mode=S_IFREG|0444, st_size=7626, ...}) = 0
open("/usr/share/perl5/core_perl/Tie/Hash.pm", O_RDONLY) = 8
ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449b660) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(8, 0, SEEK_CUR) = 0
read(8, "package Tie::Hash;\n\nour $VERSION"..., 8192) = 7626
stat("/usr/lib/urxvt/warnings/register.pmc", 0x7fffb449b310) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/warnings/register.pm", 0x7fffb449b260) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/warnings/register.pmc", 0x7fffb449b310) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/warnings/register.pm", 0x7fffb449b260) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/warnings/register.pmc", 0x7fffb449b310) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/warnings/register.pm", 0x7fffb449b260) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/warnings/register.pmc", 0x7fffb449b310) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/warnings/register.pm", 0x7fffb449b260) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/warnings/register.pmc", 0x7fffb449b310) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/warnings/register.pm", 0x7fffb449b260) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/warnings/register.pmc", 0x7fffb449b310) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/warnings/register.pm", 0x7fffb449b260) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/warnings/register.pmc", 0x7fffb449b310) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/core_perl/warnings/register.pm", {st_mode=S_IFREG|0444, st_size=772, ...}) = 0
open("/usr/share/perl5/core_perl/warnings/register.pm", O_RDONLY) = 9
ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449b020) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(9, 0, SEEK_CUR) = 0
read(9, "package warnings::register;\n\nour"..., 8192) = 772
read(9, "", 8192) = 0
close(9) = 0
brk(0x2463000) = 0x2463000
read(8, "", 8192) = 0
close(8) = 0
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
close(7) = 0
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
stat("/home/naoh/.urxvt/ext/searchable-scrollback", 0x2207910) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/perl/searchable-scrollback", {st_mode=S_IFREG|0644, st_size=5283, ...}) = 0
open("/usr/lib/urxvt/perl/searchable-scrollback", O_RDONLY) = 7
ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449bc10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(7, 0, SEEK_CUR) = 0
fstat(7, {st_mode=S_IFREG|0644, st_size=5283, ...}) = 0
fcntl(7, F_SETFD, FD_CLOEXEC) = 0
fstat(7, {st_mode=S_IFREG|0644, st_size=5283, ...}) = 0
read(7, "#! perl\n\n# this extension implem"..., 8192) = 5283
read(7, "", 8192) = 0
stat("/usr/lib/urxvt/re.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/re.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/re.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/site_perl/re.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/re.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/site_perl/re.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/re.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/vendor_perl/re.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/re.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/share/perl5/vendor_perl/re.pm", 0x7fffb449b8a0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/re.pmc", 0x7fffb449b950) = -1 ENOENT (No such file or directory)
stat("/usr/lib/perl5/core_perl/re.pm", {st_mode=S_IFREG|0444, st_size=17968, ...}) = 0
open("/usr/lib/perl5/core_perl/re.pm", O_RDONLY) = 8
ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449b660) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(8, 0, SEEK_CUR) = 0
read(8, "package re;\n\n# pragma for contro"..., 8192) = 8192
brk(0x2485000) = 0x2485000
lseek(8, 6623, SEEK_SET) = 6623
lseek(8, 0, SEEK_CUR) = 6623
close(8) = 0
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
stat("/usr/lib/perl5/core_perl/auto/re/re.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
stat("/usr/lib/perl5/core_perl/auto/re/re.so", {st_mode=S_IFREG|0555, st_size=357550, ...}) = 0
stat("/usr/lib/perl5/core_perl/auto/re/re.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
open("/usr/lib/perl5/core_perl/auto/re/re.so", O_RDONLY|O_CLOEXEC) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0M\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0555, st_size=357550, ...}) = 0
mmap(NULL, 2434896, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7f9adbacb000
mprotect(0x7f9adbb1d000, 2093056, PROT_NONE) = 0
mmap(0x7f9adbd1c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x51000) = 0x7f9adbd1c000
close(8) = 0
mprotect(0x7f9adbd1c000, 4096, PROT_READ) = 0
brk(0x24a6000) = 0x24a6000
close(7) = 0
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
stat("/home/naoh/.urxvt/ext/selection", 0x2207910) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/perl/selection", {st_mode=S_IFREG|0644, st_size=5324, ...}) = 0
open("/usr/lib/urxvt/perl/selection", O_RDONLY) = 7
ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449bc10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(7, 0, SEEK_CUR) = 0
fstat(7, {st_mode=S_IFREG|0644, st_size=5324, ...}) = 0
fcntl(7, F_SETFD, FD_CLOEXEC) = 0
fstat(7, {st_mode=S_IFREG|0644, st_size=5324, ...}) = 0
read(7, "#! perl\n\n#:META:X_RESOURCE:%.pat"..., 8192) = 5324
read(7, "", 8192) = 0
brk(0x24c7000) = 0x24c7000
close(7) = 0
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
stat("/home/naoh/.urxvt/ext/selection-popup", 0x2207910) = -1 ENOENT (No such file or directory)
stat("/usr/lib/urxvt/perl/selection-popup", {st_mode=S_IFREG|0644, st_size=3968, ...}) = 0
open("/usr/lib/urxvt/perl/selection-popup", O_RDONLY) = 7
ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffb449bc10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(7, 0, SEEK_CUR) = 0
fstat(7, {st_mode=S_IFREG|0644, st_size=3968, ...}) = 0
fcntl(7, F_SETFD, FD_CLOEXEC) = 0
fstat(7, {st_mode=S_IFREG|0644, st_size=3968, ...}) = 0
read(7, "#! perl\n\n#:META:X_RESOURCE:url-l"..., 8192) = 3968
read(7, "", 8192) = 0
close(7) = 0
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
brk(0x24e8000) = 0x24e8000
open("/usr/lib/gconv/gconv-modules.cache", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/gconv/gconv-modules", O_RDONLY|O_CLOEXEC) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=56284, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfd14000
read(7, "# GNU libc iconv configuration.\n"..., 4096) = 4096
read(7, "1002//\tJUS_I.B1.002//\nmodule\tJUS"..., 4096) = 4096
read(7, "ISO-IR-110//\t\tISO-8859-4//\nalias"..., 4096) = 4096
read(7, "\t\tISO-8859-14//\nalias\tISO_8859-1"..., 4096) = 4096
read(7, "IC-ES//\nalias\tEBCDICES//\t\tEBCDIC"..., 4096) = 4096
read(7, "DIC-CP-ES//\t\tIBM284//\nalias\tCSIB"..., 4096) = 4096
read(7, "//\nalias\tCSIBM864//\t\tIBM864//\nal"..., 4096) = 4096
read(7, "BM939//\nmodule\tIBM939//\t\tINTERNA"..., 4096) = 4096
read(7, "EUC-CN//\nalias\tCN-GB//\t\t\tEUC-CN/"..., 4096) = 4096
read(7, "T//\nmodule\tISO-2022-CN-EXT//\tINT"..., 4096) = 4096
read(7, "//\t\tISO_5428//\nalias\tISO_5428:19"..., 4096) = 4096
read(7, "CII-8\t1\n\n#\tfrom\t\t\tto\t\t\tmodule\t\tc"..., 4096) = 4096
read(7, "\tfrom\t\t\tto\t\t\tmodule\t\tcost\nalias\t"..., 4096) = 4096
brk(0x2509000) = 0x2509000
read(7, "INTERNAL\t\tIBM9448\t\t1\nmodule\tINTE"..., 4096) = 3036
read(7, "", 4096) = 0
close(7) = 0
munmap(0x7f9adfd14000, 4096) = 0
futex(0x7f9ade6a18f8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
open("/home/naoh/.icons/default/cursors/left_ptr", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/naoh/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/default/cursors/left_ptr", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/pixmaps/default/cursors/left_ptr", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/pixmaps/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\2\0\4\0_\1\0\0\0\10\0\0\0\0@\0-\0\5\0\3\0 \1\6\0\0\0curs"..., 92}, {NULL, 0}, {"", 0}], 3) = 92
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0:\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 4096}], msg_controllen=0, msg_flags=0}, 0) = 32
recvmsg(6, 0x7fffb449b9a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b9a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"1\0\4\0\240\17\5\0", 8}, {"fixed", 5}, {"\0\0\0", 3}], 3) = 16
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0;\0\3\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 44
recvmsg(6, 0x7fffb449bd90, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bd90, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"-\0\5\0\5\0 \1\5\0\0\0fixed\0\5\0/\0\2\0\5\0 \1", 28}, {NULL, 0}, {"", 0}], 3) = 28
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0=\0005\3\0\0\0\0\0\0\6\0\377\377\366\377\0\0\0\0\0\0\2\0\6\0\6\0\v\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 3316
recvmsg(6, 0x7fffb449bc20, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bc20, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bc20, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\21\0\2\0f\0\0\0", 8}, {NULL, 0}, {"", 0}], 3) = 8
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0>\0\2\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 40
recvmsg(6, 0x7fffb449bc80, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bc80, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\21\0\2\0h\0\0\0", 8}, {NULL, 0}, {"", 0}], 3) = 8
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0?\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 36
recvmsg(6, 0x7fffb449bc80, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bc80, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{".\0\2\0\5\0 \1-\0\5\0\6\0 \1\5\0\5\0fixed\0 \1/u\2\0"..., 36}, {NULL, 0}, {"", 0}], 3) = 36
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0B\0005\3\0\0\0\0\0\0\6\0\377\377\366\377\0\0\0\0\0\0\2\0\6\0\6\0\v\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 3316
recvmsg(6, 0x7fffb449bc20, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bc20, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bc20, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bc20, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{".\0\2\0\6\0 \1-\0\5\0\7\0 \1\5\0\5\0fixed\0 \1/u\2\0"..., 36}, {NULL, 0}, {"", 0}], 3) = 36
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0E\0005\3\0\0\0\0\0\0\6\0\377\377\366\377\0\0\0\0\0\0\2\0\6\0\6\0\v\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 3316
recvmsg(6, 0x7fffb449bcd0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bcd0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bcd0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bcd0, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\21\0\2\0s\0\0\0", 8}, {NULL, 0}, {"", 0}], 3) = 8
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0F\0\2\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 40
recvmsg(6, 0x7fffb449bd80, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bd80, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\21\0\2\0u\0\0\0", 8}, {NULL, 0}, {"", 0}], 3) = 8
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0G\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 36
recvmsg(6, 0x7fffb449bd80, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449bd80, 0) = -1 EAGAIN (Resource temporarily unavailable)
open("/usr/share/X11/locale/locale.alias", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=81659, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfd14000
read(7, "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#\n#\tThi"..., 4096) = 4096
read(7, "\tbo_IN.UTF-8\nbr\t\t\t\t\t\tbr_FR.ISO88"..., 4096) = 4096
read(7, "de_DE.88591\t\t\t\t\tde_DE.ISO8859-1\n"..., 4096) = 4096
read(7, "8\t\t\t\t\tes_ES.UTF-8\nes_AR\t\t\t\t\t\tes_"..., 4096) = 4096
read(7, "-1\nfi_FI.ISO-8859-1\t\t\t\tfi_FI.ISO"..., 4096) = 4096
read(7, "\t\t\t\thi_IN.ISCII-DEV\nhi_IN\t\t\t\t\t\th"..., 4096) = 4096
read(7, "\t\t\tlt_LT.ISO8859-13\nlt_LT.iso885"..., 4096) = 4096
read(7, "O8859-1\npd_US.iso88591\t\t\t\t\tpd_US"..., 4096) = 4096
read(7, ".iso88591\t\t\t\tss_ZA.ISO8859-1\nss_"..., 4096) = 4096
read(7, "SCS\t\t\t\tzh_HK.big5hkscs\nzh_HK.BIG"..., 4096) = 4096
read(7, "A.ISO-8859-1:\t\t\t\taf_ZA.ISO8859-1"..., 4096) = 4096
read(7, "AD@euro:\t\t\t\t\tca_AD.ISO8859-15\nca"..., 4096) = 4096
read(7, "-1\nde_LU@euro:\t\t\t\t\tde_LU.ISO8859"..., 4096) = 4096
read(7, "9-1\nes_CL.utf8:\t\t\t\t\tes_CL.UTF-8\n"..., 4096) = 4096
read(7, "I.UTF-8\nfi_FI.UTF-8@euro:\t\t\t\tfi_"..., 4096) = 4096
read(7, "\t\thi_IN.UTF-8\nHI_IN.UTF-8:\t\t\t\t\th"..., 4096) = 4096
read(7, "\t\t\t\t\tlt_LT.ISO8859-13\nlt_LT.iso8"..., 4096) = 4096
read(7, "K.utf8:\t\t\t\t\tpa_PK.UTF-8\npd:\t\t\t\t\t"..., 4096) = 4096
read(7, "in\nsr_RS@latin:\t\t\t\tsr_RS.UTF-8@l"..., 4096) = 4096
read(7, "N.GBK:\t\t\t\t\tzh_CN.gbk\nzh_CN.GB180"..., 4096) = 3835
read(7, "", 4096) = 0
close(7) = 0
munmap(0x7f9adfd14000, 4096) = 0
open("/usr/share/X11/locale/locale.alias", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=81659, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfd14000
read(7, "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#\n#\tThi"..., 4096) = 4096
read(7, "\tbo_IN.UTF-8\nbr\t\t\t\t\t\tbr_FR.ISO88"..., 4096) = 4096
read(7, "de_DE.88591\t\t\t\t\tde_DE.ISO8859-1\n"..., 4096) = 4096
read(7, "8\t\t\t\t\tes_ES.UTF-8\nes_AR\t\t\t\t\t\tes_"..., 4096) = 4096
read(7, "-1\nfi_FI.ISO-8859-1\t\t\t\tfi_FI.ISO"..., 4096) = 4096
read(7, "\t\t\t\thi_IN.ISCII-DEV\nhi_IN\t\t\t\t\t\th"..., 4096) = 4096
read(7, "\t\t\tlt_LT.ISO8859-13\nlt_LT.iso885"..., 4096) = 4096
read(7, "O8859-1\npd_US.iso88591\t\t\t\t\tpd_US"..., 4096) = 4096
read(7, ".iso88591\t\t\t\tss_ZA.ISO8859-1\nss_"..., 4096) = 4096
read(7, "SCS\t\t\t\tzh_HK.big5hkscs\nzh_HK.BIG"..., 4096) = 4096
read(7, "A.ISO-8859-1:\t\t\t\taf_ZA.ISO8859-1"..., 4096) = 4096
read(7, "AD@euro:\t\t\t\t\tca_AD.ISO8859-15\nca"..., 4096) = 4096
read(7, "-1\nde_LU@euro:\t\t\t\t\tde_LU.ISO8859"..., 4096) = 4096
close(7) = 0
munmap(0x7f9adfd14000, 4096) = 0
open("/usr/share/X11/locale/locale.dir", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=36901, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfd14000
read(7, "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#\n#\tThi"..., 4096) = 4096
read(7, "-1\niso8859-1/XLC_LOCALE\t\t\tes_PA."..., 4096) = 4096
read(7, "iso8859-2/XLC_LOCALE\t\t\tpl_PL.ISO"..., 4096) = 4096
read(7, "\t\ten_BE.UTF-8\nen_US.UTF-8/XLC_LO"..., 4096) = 4096
read(7, "LOCALE\t\t\tro_RO.UTF-8\nru_RU.UTF-8"..., 4096) = 4096
read(7, "9-15/XLC_LOCALE:\t\t\tde_DE.ISO8859"..., 4096) = 4096
read(7, "_ID.ISO8859-1\niso8859-1/XLC_LOCA"..., 4096) = 4096
read(7, ".gbk\nzh_CN.gb18030/XLC_LOCALE:\t\t"..., 4096) = 4096
close(7) = 0
munmap(0x7f9adfd14000, 4096) = 0
access("/usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE", R_OK) = 0
open("/usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=4231, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfd14000
read(7, "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n# XLoc"..., 4096) = 4096
read(7, "\t{\n\tside\t\tGR\n\tlength\t\t1\n\tct_enco"..., 4096) = 135
read(7, "", 4096) = 0
close(7) = 0
munmap(0x7f9adfd14000, 4096) = 0
uname({sys="Linux", node="arch", ...}) = 0
open("/home/naoh/.icons/default/cursors/xterm", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/home/naoh/.icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/default/cursors/xterm", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/icons/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/pixmaps/default/cursors/xterm", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/pixmaps/default/index.theme", O_RDONLY) = -1 ENOENT (No such file or directory)
geteuid() = 1000
getegid() = 100
open("/home/naoh/.XCompose", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/X11/locale/compose.dir", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=32749, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfd14000
read(7, "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n#\n#\tThi"..., 4096) = 4096
read(7, "8859-15/Compose\t\tes_UY.ISO8859-1"..., 4096) = 4096
read(7, "\niso8859-1/Compose\t\tst_ZA.ISO885"..., 4096) = 4096
read(7, "\nen_US.UTF-8/Compose\t\tes_VE.UTF-"..., 4096) = 4096
read(7, "e:\t\tar_AA.ISO8859-6\niso8859-6/Co"..., 4096) = 4096
read(7, "_EE.ISO8859-1\niso8859-4/Compose:"..., 4096) = 4096
read(7, "se:\t\tst_ZA.ISO8859-1\niso8859-1/C"..., 4096) = 4096
close(7) = 0
munmap(0x7f9adfd14000, 4096) = 0
access("/usr/share/X11/locale/en_US.UTF-8/Compose", R_OK) = 0
getuid() = 1000
getgid() = 100
stat("/usr/share/X11/locale/en_US.UTF-8/Compose", {st_mode=S_IFREG|0644, st_size=563189, ...}) = 0
stat("/var/cache/libx11/compose/", 0x7fffb449bdb0) = -1 ENOENT (No such file or directory)
getuid() = 1000
getgid() = 100
stat("/usr/share/X11/locale/en_US.UTF-8/Compose", {st_mode=S_IFREG|0644, st_size=563189, ...}) = 0
stat("/home/naoh/.compose-cache/", 0x7fffb449bdb0) = -1 ENOENT (No such file or directory)
open("/usr/share/X11/locale/en_US.UTF-8/Compose", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=563189, ...}) = 0
mmap(NULL, 565248, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adba41000
fstat(7, {st_mode=S_IFREG|0644, st_size=563189, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfd14000
read(7, "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n# UTF-8"..., 4096) = 4096
open("/usr/share/X11/XKeysymDB", O_RDONLY) = -1 ENOENT (No such file or directory)
read(7, "sciicircum> \t: \"|\" bar # VERTI"..., 4096) = 4096
read(7, "\"\302\260\" degree # DEGREE SIGN\n\n# Q"..., 4096) = 4096
read(7, "en # YEN SIGN\n<Multi_key> <y> <e"..., 4096) = 4096
read(7, "> <U1103> \t: \"\341\204\225\" U1115 # HAN"..., 4096) = 4096
read(7, "65> <U1175> \t: \"\341\205\246\" U1166 # H"..., 4096) = 4096
read(7, "# HANGUL JONGSEONG RIEUL-THIEUTH"..., 4096) = 4096
read(7, " U1134 # HANGUL CHOSEONG SIOS-SS"..., 4096) = 4096
brk(0x2533000) = 0x2533000
brk(0x252c000) = 0x252c000
read(7, "m> <KP_3> \t: \"\302\263\" threesuperio"..., 4096) = 4096
read(7, "E> <grave> \t\t: \"\303\210\" Egrave # L"..., 4096) = 4096
read(7, "d_acute> <O> \t: "..., 4096) = 4096
read(7, "N\n<dead_grave> <a> "..., 4096) = 4096
read(7, "N SMALL LETTER E WITH DIAERESIS\n"..., 4096) = 4096
read(7, " # LATIN SMALL LETTER O WITH DIA"..., 4096) = 4096
read(7, "WITH MACRON\n<dead_breve> <A> "..., 4096) = 4096
read(7, "less> \t\t\t: \"\304\217\" U010F # LATIN "..., 4096) = 4096
read(7, " CAPITAL LETTER G WITH CIRCUMFLE"..., 4096) = 4096
read(7, "012A # LATIN CAPITAL LETTER I WI"..., 4096) = 4096
read(7, "LL LETTER L WITH ACUTE\n<Multi_ke"..., 4096) = 4096
read(7, "> <n> \t\t\t: \"\305\210\" U0148 # LATIN "..., 4096) = 4096
read(7, " \t\t\t: \"\305\231\" U0159 # LATIN SMALL"..., 4096) = 4096
read(7, "166 # LATIN CAPITAL LETTER T WIT"..., 4096) = 4096
read(7, " \t: \"\305\263\" U0173 # LATIN SMALL L"..., 4096) = 4096
read(7, "key> <KP_Divide> <I> \t: \"\306\227"..., 4096) = 4096
read(7, "> \t: \"\307\226\" U01D6 # LATIN SMALL "..., 4096) = 4096
read(7, " \t: \"\307\234\" U01DC # LATIN S"..., 4096) = 4096
read(7, "underscore> <dead_abovedot> <a> "..., 4096) = 4096
read(7, " CARON\n<Multi_key> <c> <EZH> "..., 4096) = 4096
read(7, "e> <Multi_key> <KP_Divide> <O> \t"..., 4096) = 4096
read(7, "TH CARON\n<Multi_key> <c> <h> "..., 4096) = 4096
read(7, "\310\255\" U022D # LATIN SMALL LETTER"..., 4096) = 4096
read(7, " HOOK\n<dead_circumflex> <Multi_k"..., 4096) = 4096
read(7, "erbar> <x> \t: \"\313\243\" U02E3 # MOD"..., 4096) = 4096
read(7, "is> \t: \"\316\220\" U0390 # GREEK SMAL"..., 4096) = 4096
read(7, "uotedbl> <Greek_upsilon> \t: \"\316\260\""..., 4096) = 4096
read(7, " <grave> <Cyrillic_ie> \t: \"\321\220\" "..., 4096) = 4096
mmap(NULL, 143360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfb48000
brk(0x2524000) = 0x2524000
read(7, "D6 # CYRILLIC CAPITAL LETTER IE "..., 4096) = 4096
read(7, "> <underscore> <Cyrillic_u> \t: \""..., 4096) = 4096
read(7, " ORIYA LETTER RHA\n<Multi_key> <U"..., 4096) = 4096
read(7, " AND ACUTE\n<dead_acute> <dead_ce"..., 4096) = 4096
read(7, "<dead_grave> <dead_macron> <E> "..., 4096) = 4096
read(7, "BELOW\n<dead_belowtilde> <e> "..., 4096) = 4096
read(7, " H WITH DOT BELOW\n<Multi_key> <e"..., 4096) = 4096
read(7, "H DOT BELOW\n<dead_belowdot> <k> "..., 4096) = 4096
read(7, "TER M WITH DOT BELOW\n<Multi_key>"..., 4096) = 4096
read(7, "E AND DIAERESIS\n<dead_diaeresis>"..., 4096) = 4096
read(7, "ITH MACRON AND ACUTE\n<Multi_key>"..., 4096) = 4096
read(7, "BOVE\n<Multi_key> <period> <S> "..., 4096) = 4096
read(7, "3> \t: \"\341\271\251\" U1E69 # LATIN"..., 4096) = 4096
read(7, "ostrophe> <dead_tilde> <u> \t: \"\341"..., 4096) = 4096
read(7, " LATIN SMALL LETTER W WITH DOT A"..., 4096) = 4096
read(7, "<Multi_key> <apostrophe> <Acircu"..., 4096) = 4096
read(7, "rcumflex> <a> \t: \"\341\272\251\" U1EA9 #"..., 4096) = 4096
read(7, " \t: \"\341\272\257\" U1EAF # LATIN SMA"..., 4096) = 4096
read(7, "reve> <A> \t: \"\341\272\264\" U1EB4 # LAT"..., 4096) = 4096
mremap(0x7f9adfb48000, 143360, 212992, MREMAP_MAYMOVE) = 0x7f9adba0d000
read(7, "e> <Ecircumflex> \t: \"\341\272\276\" U1EB"..., 4096) = 4096
read(7, " U1EC3 # LATIN SMALL LETTER E "..., 4096) = 4096
read(7, "CE # LATIN CAPITAL LETTER O WITH"..., 4096) = 4096
read(7, " LATIN CAPITAL LETTER O WITH CIR"..., 4096) = 4096
read(7, "<acute> <dead_horn> <O> \t: \"\341\273\232\""..., 4096) = 4096
read(7, "IN CAPITAL LETTER O WITH HORN AN"..., 4096) = 4096
read(7, "8 # LATIN CAPITAL LETTER U WITH "..., 4096) = 4096
read(7, "lti_key> <asciitilde> <Uhorn> \t:"..., 4096) = 4096
read(7, "HA WITH PSILI\n<dead_dasia> <Gree"..., 4096) = 4096
read(7, " U1F07 # GREEK SMALL LETTER ALPH"..., 4096) = 4096
read(7, "APITAL LETTER ALPHA WITH DASIA A"..., 4096) = 4096
read(7, "\n<Multi_key> <apostrophe> <paren"..., 4096) = 4096
read(7, "LON WITH DASIA AND OXIA\n<dead_ac"..., 4096) = 4096
read(7, "a> \t: \"\341\274\245\" U1F25 # GREEK SMAL"..., 4096) = 4096
read(7, "PITAL LETTER ETA WITH DASIA AND "..., 4096) = 4096
read(7, "L LETTER IOTA WITH PSILI AND OXI"..., 4096) = 4096
read(7, "> <Greek_IOTA> \t: \"\341\274\273\" U1F3B "..., 4096) = 4096
read(7, " <U1F40> \t: \"\341\275\202\" U1F4"..., 4096) = 4096
read(7, "ve> <dead_psili> <Greek_OMICRON>"..., 4096) = 4096
read(7, "H DASIA AND VARIA\n<dead_grave> <"..., 4096) = 4096
read(7, "REEK CAPITAL LETTER UPSILON WITH"..., 4096) = 4096
read(7, "1F64 # GREEK SMALL LETTER OMEGA "..., 4096) = 4096
read(7, ": \"\341\275\252\" U1F6A # GREEK CAPITAL "..., 4096) = 4096
read(7, " # GREEK SMALL LETTER ALPHA WITH"..., 4096) = 4096
read(7, "U1F82 # GREEK SMALL LETTER ALPHA"..., 4096) = 4096
read(7, "<Greek_alpha> \t: \"\341\276\204\" U1F84 #"..., 4096) = 4096
read(7, "WITH PSILI AND PERISPOMENI AND Y"..., 4096) = 4096
read(7, "> <U1F09> \t: \"\341\276\211\" U1"..., 4096) = 4096
read(7, "ta> <dead_grave> <parenleft> <Gr"..., 4096) = 4096
read(7, "F8D # GREEK CAPITAL LETTER ALPHA"..., 4096) = 4096
read(7, "I\n<dead_iota> <dead_tilde> <U1F0"..., 4096) = 4096
read(7, "RAMMENI\n<dead_iota> <Multi_key> "..., 4096) = 4096
read(7, "\" U1F94 # GREEK SMALL LETTER E"..., 4096) = 4096
read(7, "0> \t: \"\341\276\226\" U1F96 # GREEK SMAL"..., 4096) = 4096
read(7, "TA> \t: \"\341\276\230\" U1F98 # GREEK CAP"..., 4096) = 4096
read(7, "Greek_ETA> \t: \"\341\276\233\" U1F9B # GR"..., 4096) = 4096
mremap(0x7f9adba0d000, 212992, 315392, MREMAP_MAYMOVE) = 0x7f9adfb1e000
read(7, "phe> <U1F29> \t: \"\341\276\235\" U1F9D # "..., 4096) = 4096
read(7, "ER ETA WITH DASIA AND PERISPOMEN"..., 4096) = 4096
read(7, " <Greek_omega> \t: \"\341\276\242\" U1FA2 "..., 4096) = 4096
read(7, "ey> <acute> <parenright> <Greek_"..., 4096) = 4096
read(7, "ti_key> <Greek_iota> <U1F66> \t: "..., 4096) = 4096
read(7, "\276\250\" U1FA8 # GREEK CAPITAL LETT"..., 4096) = 4096
read(7, "NI\n<dead_iota> <Multi_key> <grav"..., 4096) = 4096
read(7, "ND PROSGEGRAMMENI\n<dead_iota> <M"..., 4096) = 4096
read(7, "TAL LETTER OMEGA WITH PSILI AND "..., 4096) = 4096
read(7, " AND YPOGEGRAMMENI\n<dead_iota> <"..., 4096) = 4096
read(7, "ek_iota> <acute> <Greek_eta> \t: "..., 4096) = 4096
read(7, "sis> <Greek_iota> \t: \"\341\277\227\" U1F"..., 4096) = 4096
read(7, "LETTER UPSILON WITH VRACHY\n<Mult"..., 4096) = 4096
read(7, "\" U1FFA # GREEK CAPITAL LETTER"..., 4096) = 4096
read(7, "RIPT ZERO\n<Multi_key> <underscor"..., 4096) = 4096
read(7, "<m> \t: \"\342\204\240\" U2120 # SERVICE M"..., 4096) = 4096
read(7, "EITHER LESS-THAN NOR EQUIVALENT "..., 4096) = 4096
read(7, " \"\342\221\253\" U246B # CIRCLED NUMBER "..., 4096) = 4096
read(7, "4BB # CIRCLED LATIN CAPITAL LETT"..., 4096) = 4096
read(7, "arenleft> <z> <parenright> \t: \"\342"..., 4096) = 4096
read(7, "I> \t: \"\343\203\224\" U30D4 # KATAKANA L"..., 4096) = 4096
read(7, "TY TWO\n<Multi_key> <parenleft> <"..., 4096) = 4096
read(7, "nright> \t: \"\343\211\231\" U3259 # CIRCL"..., 4096) = 4096
read(7, "renleft> <U1112> <parenright> \t:"..., 4096) = 4096
read(7, "ght> \t: \"\343\212\236\" U329E # CIRCLED "..., 4096) = 4096
read(7, "P_2> <parenright> \t: \"\343\212\267\" U32"..., 4096) = 4096
read(7, "ft> <kana_KO> <parenright> \t: \"\343"..., 4096) = 4096
read(7, "\"\357\254\257\" UFB2F # HEBREW LETTER AL"..., 4096) = 4096
read(7, " MUSICAL SYMBOL FUSA BLACK\n\n\n#\n#"..., 4096) = 4096
read(7, "vensubscript # SUBSCRIPT SE"..., 4096) = 4096
read(7, " ocircumflexgrave # LATIN SM"..., 4096) = 4096
read(7, "cy> <u> \t\t : \"\345\205\203\" U5143 "..., 4096) = 4096
read(7, "> : \"\316\274\" U03BC #"..., 4096) = 4096
read(7, " LATIN SMALL LETTER R WITH LONG "..., 4096) = 4096
read(7, "PITAL LETTER O WITH MACRON AND A"..., 4096) = 4096
read(7, "aeresis> \t : \"\341\271\216\" U1E4E "..., 4096) = 4096
read(7, "\n<dead_horn> <dead_acute> <O> \t"..., 4096) = 4096
read(7, "\263\" abrevehook # LATIN"..., 4096) = 4096
read(7, " ohorngrave # LATIN SMA"..., 4096) = 4096
read(7, "\314\201\"\t\t# CYRILLIC SMALL LETTER A W"..., 4096) = 4096
mremap(0x7f9adfb1e000, 315392, 475136, MREMAP_MAYMOVE) = 0x7f9adb9cd000
read(7, "R IE WITH COMBINING MACRON\n\n<dea"..., 4096) = 4096
read(7, " O WITH COMBINING MACRON\n<Multi_"..., 4096) = 4096
read(7, "TAL LETTER ER WITH COMBINING INV"..., 4096) = 4096
read(7, "\"\342\214\266\" U2336 # \342\212\245 \342\212\244 APL FU"..., 4096) = 4096
read(7, " \\ APL FUNCTIONAL SYMBOL CIRCLE "..., 4096) = 4096
read(7, " : \"\342\215\232\" U235a "..., 4096) = 4096
read(7, " <semicolon> <O> for \307\254 and\n# <u"..., 4096) = 2037
read(7, "", 4096) = 0
munmap(0x7f9adba41000, 565248) = 0
close(7) = 0
munmap(0x7f9adfd14000, 4096) = 0
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\1\30\f\0\10\0 \1_\1\0\0\0\0\0\0\360\1<\1\0\0\1\0!\0\0\0\n\"\0\0"..., 796}, {NULL, 0}, {"", 0}], 3) = 796
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0a\0\3\0\0\0!\0\0\0\1\0\1\1\377\377\377\377\0\0\0\0\0\1\0\0 \0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 76
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\3\30\2\0\n\0 \1\16\1\2\0\n\0 \1", 16}, {NULL, 0}, {"", 0}], 3) = 16
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0c\0\3\0\0\0!\0\0\0\1\0\1\1\377\377\377\377\0\0\0\0\0\1\0\0 \0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 76
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449b8a0, 0) = -1 EAGAIN (Resource temporarily unavailable)
mmap(NULL, 711808, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adb91f000
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\1\0\n\0\f\0 \1\10\0 \1\0\0\0\0\f\0<\1\0\0\0\0\0\0\0\0\n\0\0\0"..., 440}, {NULL, 0}, {"", 0}], 3) = 440
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\4x\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 64
recvmsg(6, 0x7fffb449c100, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449c100, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\207\10\7\0\0\1\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 28}, {NULL, 0}, {"", 0}], 3) = 28
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\3y\0\354\4\0\0\0\0\10\377\7\0\0\31\31\10\303\1\370\0\0\0\0\0\0\0\0\0\0\10"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 4096
recvfrom(6, "\24\377\10\0201\377\10\20\0\0\0\0\1\1\1\0\26\377\10\20\1\0\0\0\1\2\2\0\25\377\10\20"..., 976, 0, NULL, NULL) = 976
recvmsg(6, 0x7fffb449c040, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449c040, 0) = -1 EAGAIN (Resource temporarily unavailable)
open("/dev/ptmx", O_RDWR) = 7
statfs("/dev/pts", {f_type="DEVPTS_SUPER_MAGIC", f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(7, TIOCGPTN, [1]) = 0
stat("/dev/pts/1", {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 1), ...}) = 0
getuid() = 1000
socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 8
connect(8, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(8) = 0
socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 8
connect(8, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(8) = 0
open("/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=234, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfd14000
read(8, "# Begin /etc/nsswitch.conf\n\npass"..., 4096) = 234
read(8, "", 4096) = 0
close(8) = 0
munmap(0x7f9adfd14000, 4096) = 0
open("/usr/lib/perl5/core_perl/CORE/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=80332, ...}) = 0
mmap(NULL, 80332, PROT_READ, MAP_PRIVATE, 8, 0) = 0x7f9adfd01000
close(8) = 0
open("/usr/lib/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\"\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=51784, ...}) = 0
mmap(NULL, 2148488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7f9adb712000
mprotect(0x7f9adb71d000, 2097152, PROT_NONE) = 0
mmap(0x7f9adb91d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0xb000) = 0x7f9adb91d000
close(8) = 0
mprotect(0x7f9adb91d000, 4096, PROT_READ) = 0
munmap(0x7f9adfd01000, 80332) = 0
open("/etc/group", O_RDONLY|O_CLOEXEC) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=523, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfd14000
read(8, "root:x:0:root\nbin:x:1:root,bin,d"..., 4096) = 523
close(8) = 0
munmap(0x7f9adfd14000, 4096) = 0
ioctl(7, TIOCSPTLCK, [0]) = 0
ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(7, TIOCGPTN, [1]) = 0
stat("/dev/pts/1", {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 1), ...}) = 0
open("/dev/pts/1", O_RDWR|O_NOCTTY) = 8
fcntl(8, F_GETFD) = 0
fcntl(7, F_SETFL, O_RDONLY|O_NONBLOCK) = 0
ioctl(8, SNDCTL_TMR_START or SNDRV_TIMER_IOCTL_TREAD or TCSETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(7, SNDCTL_TMR_START or SNDRV_TIMER_IOCTL_TREAD or TCSETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(7, SNDRV_TIMER_IOCTL_STATUS or TIOCSWINSZ, {ws_row=24, ws_col=80, ws_xpixel=480, ws_ypixel=312}) = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f9adfcf5a10) = 4337
getuid() = 1000
socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 9
connect(9, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(9) = 0
socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 9
connect(9, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(9) = 0
open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=485, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfd14000
read(9, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 485
close(9) = 0
munmap(0x7f9adfd14000, 4096) = 0
access("/var/run/utmpx", F_OK) = -1 ENOENT (No such file or directory)
open("/var/run/utmp", O_RDONLY|O_CLOEXEC) = 9
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=4337, si_status=1, si_utime=0, si_stime=0} ---
rt_sigreturn() = 9
lseek(9, 0, SEEK_SET) = 0
access("/var/run/utmpx", F_OK) = -1 ENOENT (No such file or directory)
open("/var/run/utmp", O_RDWR|O_CLOEXEC) = -1 EACCES (Permission denied)
close(9) = 0
close(8) = 0
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\207\1\5\0\3\0\1\0\0\0\0\0\0\0\0\0\5\0\5\0\207\1\4\0\3\0\2\0\0\0\0\0"..., 84}, {NULL, 0}, {"", 0}], 3) = 84
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\20\0\5\0\v\0\0\0UTF8_STRING\0\20\0\10\0\27\0\0\0_NET"..., 104}], 1) = 104
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\1\0~\0\0\0\0\0\27\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 128
recvmsg(6, 0x7fffb449c1d0, 0) = -1 EAGAIN (Resource temporarily unavailable)
recvmsg(6, 0x7fffb449c1d0, 0) = -1 EAGAIN (Resource temporarily unavailable)
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{"\10\1\2\0\n\0 \1\10\0\2\0\10\0 \1", 16}, {NULL, 0}, {"", 0}], 3) = 16
recvmsg(6, 0x7fffb449c100, 0) = -1 EAGAIN (Resource temporarily unavailable)
epoll_ctl(3, EPOLL_CTL_ADD, 4, {EPOLLIN, {u32=4, u64=4294967300}}) = 0
epoll_ctl(3, EPOLL_CTL_ADD, 6, {EPOLLIN, {u32=6, u64=4294967302}}) = 0
epoll_ctl(3, EPOLL_CTL_ADD, 7, {EPOLLIN, {u32=7, u64=4294967303}}) = 0
epoll_wait(3, {{EPOLLIN|EPOLLHUP, {u32=7, u64=4294967303}}}, 64, 0) = 1
epoll_ctl(3, EPOLL_CTL_MOD, 7, {EPOLLIN, {u32=7, u64=4294967303}}) = 0
wait4(-1, [{WIFEXITED(s) && WEXITSTATUS(s) == 1}], WNOHANG|WSTOPPED|WCONTINUED, NULL) = 4337
wait4(-1, 0x7fffb449c36c, WNOHANG|WSTOPPED|WCONTINUED, NULL) = -1 ECHILD (No child processes)
epoll_wait(3, {{EPOLLIN|EPOLLHUP, {u32=7, u64=4294967303}}}, 64, 0) = 1
epoll_ctl(3, EPOLL_CTL_DEL, 7, {0, {u32=7, u64=4294967303}}) = 0
getuid() = 1000
open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=485, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9adfd14000
read(8, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 485
close(8) = 0
munmap(0x7f9adfd14000, 4096) = 0
access("/var/run/utmpx", F_OK) = -1 ENOENT (No such file or directory)
open("/var/run/utmp", O_RDONLY|O_CLOEXEC) = 8
lseek(8, 0, SEEK_SET) = 0
alarm(0) = 0
rt_sigaction(SIGALRM, {0x7f9ade4144b0, [], SA_RESTORER, 0x7f9ade331390}, {SIG_DFL, [], 0}, 8) = 0
alarm(10) = 0
fcntl(8, F_SETLKW, {type=F_RDLCK, whence=SEEK_SET, start=0, len=0}) = 0
read(8, "\2\0\0\0\0\0\0\0~\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 384) = 384
read(8, "\6\0\0\0\4\1\0\0tty1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 384) = 384
read(8, "\10\0\0\0?\2\0\0pts/2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 384) = 384
read(8, "\10\0\0\0K\2\0\0pts/3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 384) = 384
read(8, "\10\0\0\0\242\17\0\0pts/1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 384) = 384
fcntl(8, F_SETLKW, {type=F_UNLCK, whence=SEEK_SET, start=0, len=0}) = 0
alarm(0) = 10
rt_sigaction(SIGALRM, {SIG_DFL, [], SA_RESTORER, 0x7f9ade331390}, NULL, 8) = 0
close(8) = 0
chmod("/dev/pts/1", 0666) = 0
chown("/dev/pts/1", 0, 0) = -1 EPERM (Operation not permitted)
close(7) = 0
munmap(0x7f9adb9cd000, 475136) = 0
poll([{fd=6, events=POLLIN|POLLOUT}], 1, 4294967295) = 1 ([{fd=6, revents=POLLOUT}])
writev(6, [{".\1\2\0\7\0 \1<\0\2\0\r\0 \1<\0\2\0\16\0 \1<\0\2\0\17\0 \1"..., 76}, {NULL, 0}, {"", 0}], 3) = 76
poll([{fd=6, events=POLLIN}], 1, 4294967295) = 1 ([{fd=6, revents=POLLIN}])
recvmsg(6, {msg_name(0)=NULL, msg_iov(1)=[{"\21\0\211\0\10\0 \1\10\0 \1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 64
recvmsg(6, 0x7fffb449c110, 0) = -1 EAGAIN (Resource temporarily unavailable)
shutdown(6, SHUT_RDWR) = 0
close(6) = 0
munmap(0x7f9adb91f000, 711808) = 0
rt_sigaction(SIGINT, {SIG_DFL, [INT], SA_RESTORER|SA_RESTART, 0x7f9ade331390}, {0x436480, ~[KILL STOP RTMIN RT_1], SA_RESTORER|SA_RESTART, 0x7f9ade6b5870}, 8) = 0
rt_sigaction(SIGTERM, {SIG_DFL, [TERM], SA_RESTORER|SA_RESTART, 0x7f9ade331390}, {0x436480, ~[KILL STOP RTMIN RT_1], SA_RESTORER|SA_RESTART, 0x7f9ade6b5870}, 8) = 0
exit_group(0) = ?
+++ exited with 0 +++strace -c -o logc urxvt -e exit
% time seconds usecs/call calls errors syscall
------ ----------- ----------- --------- --------- ----------------
100.00 0.000006 0 186 160 recvmsg
0.00 0.000000 0 292 read
0.00 0.000000 0 130 59 open
0.00 0.000000 0 76 close
0.00 0.000000 0 220 183 stat
0.00 0.000000 0 57 fstat
0.00 0.000000 0 56 poll
0.00 0.000000 0 42 3 lseek
0.00 0.000000 0 91 mmap
0.00 0.000000 0 57 mprotect
0.00 0.000000 0 18 munmap
0.00 0.000000 0 29 brk
0.00 0.000000 0 13 rt_sigaction
0.00 0.000000 0 1 rt_sigprocmask
0.00 0.000000 0 1 rt_sigreturn
0.00 0.000000 0 34 21 ioctl
0.00 0.000000 0 29 writev
0.00 0.000000 0 7 4 access
0.00 0.000000 0 1 pipe
0.00 0.000000 0 3 mremap
0.00 0.000000 0 2 dup2
0.00 0.000000 0 3 alarm
0.00 0.000000 0 5 socket
0.00 0.000000 0 5 4 connect
0.00 0.000000 0 4 1 recvfrom
0.00 0.000000 0 1 shutdown
0.00 0.000000 0 2 getsockname
0.00 0.000000 0 1 getpeername
0.00 0.000000 0 1 clone
0.00 0.000000 0 1 execve
0.00 0.000000 0 2 1 wait4
0.00 0.000000 0 10 uname
0.00 0.000000 0 22 fcntl
0.00 0.000000 0 1 readlink
0.00 0.000000 0 1 chmod
0.00 0.000000 0 1 1 chown
0.00 0.000000 0 1 getrlimit
0.00 0.000000 0 21 getuid
0.00 0.000000 0 18 getgid
0.00 0.000000 0 17 geteuid
0.00 0.000000 0 17 getegid
0.00 0.000000 0 1 statfs
0.00 0.000000 0 1 arch_prctl
0.00 0.000000 0 2 futex
0.00 0.000000 0 1 set_tid_address
0.00 0.000000 0 2 epoll_wait
0.00 0.000000 0 5 epoll_ctl
0.00 0.000000 0 1 set_robust_list
0.00 0.000000 0 1 epoll_create1
------ ----------- ----------- --------- --------- ----------------
100.00 0.000006 1493 437 totalltrace -o logl urxvt -e exit
__libc_start_main(0x418880, 3, 0x7fff9e06dcd8, 0x460f80 <unfinished ...>
__cxa_atexit(0x4279c0, 0x73aad0, 0x730ce8, 0) = 0
__cxa_atexit(0x4279d0, 0x73aab0, 0x730ce8, 1) = 0
__cxa_atexit(0x427b20, 0x73ab20, 0x730ce8, 2) = 0
__cxa_atexit(0x4328f0, 0x73ac90, 0x730ce8, 3) = 0
__cxa_atexit(0x438670, 0x73b2d8, 0x730ce8, 4) = 0
fcntl(0, 3, 0x7fff9e06dcf8, 5) = 0x8002
fcntl(1, 3, 0x7fff9e06dcf8, -1) = 0x8002
fcntl(2, 3, 0x7fff9e06dcf8, -1) = 0x8002
getuid() = 1000
getgid() = 100
geteuid() = 1000
getegid() = 100
tcgetattr(0, 0x73aae0) = 0
dup2(2, 0) = 0
dup2(2, 1) = 1
clock_gettime(1, 0x7fff9e06db90, 15, -1) = 0
getuid() = 1000
geteuid() = 1000
getgid() = 100
getegid() = 100
getenv("LIBEV_FLAGS") = nil
gettimeofday(0x7fff9e06db70, 0) = 0
clock_gettime(1, 0x7fff9e06db70, 0x1f8b8, 1) = 0
epoll_create1(0x80000, 0x7fff9e06db70, 0, 24) = 3
fcntl(3, 2, 1, -1) = 0
realloc(0, 768) = 0x23db010
pipe(0x7fff9e06dae0) = 0
fcntl(4, 2, 1, -1) = 0
fcntl(4, 4, 2048, -1) = 0
fcntl(5, 2, 1, -1) = 0
fcntl(5, 4, 2048, -1) = 0
realloc(0, 128) = 0x23db320
memset(0x23db320, '\0', 128) = 0x23db320
realloc(0, 8) = 0x23db3b0
sigfillset(~<31-32>) = 0
sigaction(SIGCHLD, { 0x436480, ~<31-32>, 0xffffffff, 0xffffffffffffffff }, nil) = 0
signal(SIGHUP, 0x1) = 0
signal(SIGPIPE, 0x1) = 0
sigfillset(~<31-32>) = 0
sigaction(SIGTERM, { 0x436480, ~<31-32>, 0xffffffff, 0xffffffffffffffff }, nil) = 0
sigfillset(~<31-32>) = 0
sigaction(SIGINT, { 0x436480, ~<31-32>, 0xffffffff, 0xffffffffffffffff }, nil) = 0
XSetErrorHandler(0x415f02, 0x7fff9e06d9c0, 0, -1) = 0x7f6f348e2070
XSetIOErrorHandler(0x415f29, 0x7fff9e06d9c0, 0, -1) = 0x7f6f348e1fc0
XrmInitialize(0x415f29, 0x7fff9e06d9c0, 0, -1) = 2
malloc(15632) = 0x23de430
memset(0x23de430, '\0', 15632) = 0x23de430
malloc(16) = 0x23e2150
memcpy(0x23e2150, nil, 0) = 0x23e2150
free(0) = <void>
malloc(48) = 0x23e2170
malloc(4096) = 0x23e21b0
malloc(16) = 0x23e31c0
strdup("urxvt") = 0x23e31e0
malloc(16) = 0x23e3200
memcpy(0x23e3200, nil, 0) = 0x23e3200
free(0) = <void>
strdup("-e") = 0x23e3220
strdup("exit") = 0x23e3240
malloc(32) = 0x23e3260
memcpy(0x23e3260, "\3401>\002\0\0\0\0 2>\002\0\0\0\0", 16) = 0x23e3260
free(0x23e3200) = <void>
malloc(16) = 0x23e3200
strdup("XDG_VTNR=7") = 0x23e3290
malloc(16) = 0x23e32b0
memcpy(0x23e32b0, nil, 0) = 0x23e32b0
free(0) = <void>
strdup("XDG_SESSION_ID=1") = 0x23e32d0
strdup("TERM=xterm") = 0x23e32f0
malloc(32) = 0x23e3310
memcpy(0x23e3310, "\2202>\002\0\0\0\0\3202>\002\0\0\0\0", 16) = 0x23e3310
free(0x23e32b0) = <void>
strdup("SHELL=/bin/bash") = 0x23e32b0
strdup("WINDOWID=16777229") = 0x23e3340
malloc(64) = 0x23e3360
memcpy(0x23e3360, "\2202>\002\0\0\0\0\3202>\002\0\0\0\0\3602>\002\0\0\0\0\2602>\002\0\0\0\0"..., 32) = 0x23e3360
free(0x23e3310) = <void>
strdup("XTERM_SHELL=/bin/bash") = 0x23e33b0
strdup("USER=naoh") = 0x23e33d0
strdup("MOZ_PLUGIN_PATH=/usr/lib/mozilla"...) = 0x23e33f0
strdup("PATH=/usr/local/sbin:/usr/local/"...) = 0x23e3430
malloc(128) = 0x23e3480
memcpy(0x23e3480, "\2202>\002\0\0\0\0\3202>\002\0\0\0\0\3602>\002\0\0\0\0\2602>\002\0\0\0\0"..., 64) = 0x23e3480
free(0x23e3360) = <void>
strdup("MAIL=/var/mail/naoh") = 0x23e3510
strdup("PWD=/home/naoh") = 0x23e3530
strdup("JAVA_HOME=/usr/lib/jvm/java-7-op"...) = 0x23e3310
strdup("LANG=en_US.UTF-8") = 0x23e3550
strdup("XTERM_LOCALE=en_US.UTF-8") = 0x23e3570
strdup("XTERM_VERSION=XTerm(300)") = 0x23e35a0
strdup("SHLVL=1") = 0x23e35d0
strdup("HOME=/home/naoh") = 0x23e35f0
malloc(256) = 0x23e3610
memcpy(0x23e3610, "\2202>\002\0\0\0\0\3202>\002\0\0\0\0\3602>\002\0\0\0\0\2602>\002\0\0\0\0"..., 128) = 0x23e3610
free(0x23e3480) = <void>
strdup("XDG_SEAT=seat0") = 0x23e3480
strdup("LOGNAME=naoh") = 0x23e34a0
strdup("DBUS_SESSION_BUS_ADDRESS=unix:ab"...) = 0x23e3720
strdup("DISPLAY=:0.0") = 0x23e34c0
strdup("XDG_RUNTIME_DIR=/run/user/1000") = 0x23e34e0
strdup("XAUTHORITY=/home/naoh/.Xauthorit"...) = 0x23e3790
strdup("_=/usr/bin/ltrace") = 0x23e37c0
free(0) = <void>
setlocale(LC_CTYPE, "") = "en_US.UTF-8"
strdup("en_US.UTF-8") = 0x23e46f0
strlen("en_US.UTF-8") = 11
memcmp(0x23e46f0, 0x73ac00, 12, 1776) = 101
__memcpy_chk(0x73ac00, 0x23e46f0, 12, 128) = 0x73ac00
setlocale(LC_CTYPE, "en_US.UTF-8") = "en_US.UTF-8"
nl_langinfo(14, 1, 1, 0) = 0x7f6f355ce30c
strrchr("urxvt", '/') = nil
getenv("DISPLAY") = ":0.0"
strcmp("e", "d") = 1
strcmp("e", "display") = 1
strcmp("e", "termName") = -15
strcmp("e", "tn") = -15
strcmp("e", "g") = -2
strcmp("e", "geometry") = -2
strcmp("e", "geometry") = -2
strcmp("e", "C") = 34
strcmp("e", "iconic") = -4
strcmp("e", "ic") = -4
strcmp("e", "chdir") = 2
strcmp("e", "cd") = 2
strcmp("e", "reverseVideo") = -13
strcmp("e", "rv") = -13
strcmp("e", "loginShell") = -7
strcmp("e", "ls") = -7
strcmp("e", "jumpScroll") = -5
strcmp("e", "j") = -5
strcmp("e", "skipScroll") = -14
strcmp("e", "ss") = -14
strcmp("e", "pastableTabs") = -11
strcmp("e", "ptab") = -11
strcmp("e", "scrollstyle") = -14
strcmp("e", "scrollBar") = -14
strcmp("e", "sb") = -14
strcmp("e", "scrollBar_right") = -14
strcmp("e", "sr") = -14
strcmp("e", "scrollBar_floating") = -14
strcmp("e", "st") = -14
strcmp("e", "scrollBar_align") = -14
strcmp("e", "thickness") = -15
strcmp("e", "sbt") = -14
strcmp("e", "scrollTtyOutput") = -14
strcmp("e", "si") = -14
strcmp("e", "scrollTtyKeypress") = -14
strcmp("e", "sk") = -14
strcmp("e", "scrollWithBuffer") = -14
strcmp("e", "sw") = -14
strcmp("e", "inheritPixmap") = -4
strcmp("e", "ip") = -4
strcmp("e", "transparent") = -15
strcmp("e", "tr") = -15
strcmp("e", "tintColor") = -15
strcmp("e", "tint") = -15
strcmp("e", "shading") = -14
strcmp("e", "sh") = -14
strcmp("e", "blurRadius") = 3
strcmp("e", "blr") = 3
strcmp("e", "fading") = -1
strcmp("e", "fade") = -1
strcmp("e", "fadeColor") = -1
strcmp("e", "fadecolor") = -1
strcmp("e", "utmpInhibit") = -16
strcmp("e", "ut") = -16
strcmp("e", "urgentOnBell") = -16
strcmp("e", "visualBell") = -17
strcmp("e", "vb") = -17
strcmp("e", "mapAlert") = -8
strcmp("e", "meta8") = -8
strcmp("e", "mouseWheelScrollPage") = -8
strcmp("e", "tripleclickwords") = -15
strcmp("e", "tcw") = -15
strcmp("e", "insecure") = -4
strcmp("e", "insecure") = -4
strcmp("e", "cursorUnderline") = 2
strcmp("e", "uc") = -16
strcmp("e", "cursorBlink") = 2
strcmp("e", "bc") = 3
strcmp("e", "pointerBlank") = -11
strcmp("e", "pb") = -11
strcmp("e", "background") = 3
strcmp("e", "bg") = 3
strcmp("e", "foreground") = -1
strcmp("e", "fg") = -1
strcmp("e", "color0") = 2
strcmp("e", "color1") = 2
strcmp("e", "color2") = 2
strcmp("e", "color3") = 2
strcmp("e", "color4") = 2
strcmp("e", "color5") = 2
strcmp("e", "color6") = 2
strcmp("e", "color7") = 2
strcmp("e", "color8") = 2
strcmp("e", "color9") = 2
strcmp("e", "color10") = 2
strcmp("e", "color11") = 2
strcmp("e", "color12") = 2
strcmp("e", "color13") = 2
strcmp("e", "color14") = 2
strcmp("e", "color15") = 2
strcmp("e", "colorBD") = 2
strcmp("e", "colorIT") = 2
strcmp("e", "colorUL") = 2
strcmp("e", "colorRV") = 2
strcmp("e", "underlineColor") = -16
strcmp("e", "scrollColor") = -14
strcmp("e", "troughColor") = -15
strcmp("e", "highlightColor") = -3
strcmp("e", "hc") = -3
strcmp("e", "highlightTextColor") = -3
strcmp("e", "cursorColor") = 2
strcmp("e", "cr") = 2
strcmp("e", "cursorColor2") = 2
strcmp("e", "pointerColor") = -11
strcmp("e", "pr") = -11
strcmp("e", "pointerColor2") = -11
strcmp("e", "pr2") = -11
strcmp("e", "borderColor") = 3
strcmp("e", "bd") = 3
strcmp("e", "iconFile") = -4
strcmp("e", "icon") = -4
strcmp("e", "font") = -1
strcmp("e", "fn") = -1
strcmp("e", "boldFont") = 3
strcmp("e", "fb") = -1
strcmp("e", "italicFont") = -4
strcmp("e", "fi") = -1
strcmp("e", "boldItalicFont") = 3
strcmp("e", "fbi") = -1
strcmp("e", "intensityStyles") = -4
strcmp("e", "is") = -4
strcmp("e", "inputMethod") = -4
strcmp("e", "im") = -4
strcmp("e", "preeditType") = -11
strcmp("e", "pt") = -11
strcmp("e", "imLocale") = -4
strcmp("e", "imlocale") = -4
strcmp("e", "imFont") = -4
strcmp("e", "imfont") = -4
strcmp("e", "name") = -9
strcmp("e", "title") = -15
strcmp("e", "title") = -15
strcmp("e", "T") = 17
strcmp("e", "iconName") = -4
strcmp("e", "n") = -9
strcmp("e", "saveLines") = -14
strcmp("e", "sl") = -14
strcmp("e", "embed") = -109
strcmp("e", "buffered") = 3
strcmp("e", "depth") = 1
strcmp("e", "depth") = 1
strcmp("e", "visual") = -17
strcmp("e", "visual") = -17
strcmp("e", "transient-for") = -15
strcmp("e", "override-redirect") = -10
strcmp("e", "override-redirect") = -10
strcmp("e", "pty-fd") = -11
strcmp("e", "hold") = -3
strcmp("e", "hold") = -3
strcmp("e", "externalBorder") = -120
strcmp("e", "w") = -18
strcmp("e", "bw") = 3
strcmp("e", "borderwidth") = 3
strcmp("e", "internalBorder") = -4
strcmp("e", "b") = 3
strcmp("e", "borderLess") = 3
strcmp("e", "bl") = 3
strcmp("e", "lineSpace") = -7
strcmp("e", "lsp") = -7
strcmp("e", "letterSpace") = -7
strcmp("e", "letsp") = -7
strcmp("e", "skipBuiltinGlyphs") = -14
strcmp("e", "sbg") = -14
strcmp("e", "pointerBlankDelay") = -11
strcmp("e", "backspacekey") = 3
strcmp("e", "deletekey") = 1
strcmp("e", "print-pipe") = -11
strcmp("e", "modifier") = -8
strcmp("e", "mod") = -8
strcmp("e", "cutchars") = 2
strcmp("e", "answerbackString") = 4
strcmp("e", "secondaryScreen") = -14
strcmp("e", "ssc") = -14
strcmp("e", "secondaryScroll") = -14
strcmp("e", "ssr") = -14
strcmp("e", "perl-lib") = -11
strcmp("e", "perl-eval") = -11
strcmp("e", "perl-ext-common") = -11
strcmp("e", "perl-ext") = -11
strcmp("e", "pe") = -11
strcmp("e", "iso14755") = -4
strcmp("e", "iso14755_52") = -4
strcmp("e", "xrm") = -19
strcmp("e", "keysym.sym") = -6
strcmp("e", "e") = 0
malloc(504) = 0x23e4710
strdup(":0.0") = 0x23e4910
XOpenDisplay(":0.0") = 0x23e4930
XInternAtoms(0x23e4930, 0x51c9a0, 39, 0) = 1
getenv("HOME") = "/home/naoh"
getenv("XAPPLRESDIR") = nil
__snprintf_chk(0x7fff9e06d630, 1024, 1, 1024) = 21
XrmGetFileDatabase(0x7fff9e06d630, 0x7ffffff5, 0x7fff9e06d645, 10) = 0
XResourceManagerString(0x23e4930, 0, 0x7fff9e06d645, -128) = 0
XScreenResourceString(0x23efab0, 0, 0x7fff9e06d645, -128) = 0
getenv("XENVIRONMENT") = nil
uname(0x7fff9e06d4a0) = 0
__snprintf_chk(0x7fff9e06d630, 1024, 1, 1024) = 26
XrmGetFileDatabase(0x7fff9e06d630, 0x7fffffe5, 0x7fff9e06d64a, 26) = 0
XrmSetDatabase(0x23e4930, 0, 0, -128) = 0
XLoadFont(0x23e4930, 0x46526f, 0, -128) = 0x1800001
XCreateGlyphCursor(0x23e4930, 0x1800001, 0x1800001, 32) = 0x1800002
XUnloadFont(0x23e4930, 0x1800001, 0x1800002, 0xeff5) = 1
XRenderQueryVersion(0x23e4930, 0x7fff9e06da74, 0x7fff9e06da78, 0xeff5) = 1
XRenderQueryFilters(0x23e4930, 351, 0, 0xeff5) = 0x23f1af0
XFree(0x23f1af0, 6, 6, 11) = 1
XConnectionNumber(0x23e4930, 1, 0x7f6f340e2678, 11) = 6
getsockname(6, 0x7fff9e06da90, 0x7fff9e06da7c, 11) = 0
realloc(0, 16) = 0x23f1200
fcntl(6, 2, 1, 2) = 0
XSelectInput(0x23e4930, 351, 0x400000, -1) = 1
malloc(16) = 0x23e5cc0
memcpy(0x23e5cc0, nil, 0) = 0x23e5cc0
free(0) = <void>
XrmGetDatabase(0x23e4930, 0x23e4710, 0x23efbc0, 0) = 0
XrmMergeDatabases(0, 0x7fff9e06db28, 0x23efbc0, 0) = 0
XrmGetDatabase(0x23e4930, 0x465844, 1, 0) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 40
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x51e076, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 40
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465878, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 37
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 10
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x46589c, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 44
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x4658b7, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 42
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x4658ce, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 42
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x4658ea, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 42
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465904, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 44
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465932, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 43
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x46593e, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 41
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465955, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 47
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465975, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 24
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 50
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 24
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 23
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x4659a3, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 47
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x51e615, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 41
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x4659be, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 47
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x4659ee, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 23
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 49
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 23
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 22
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465a13, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 22
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 48
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 22
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465a3a, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 19
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 45
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 19
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465a61, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 43
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465a6d, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 41
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465a82, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 39
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465aa8, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 42
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465abb, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 38
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465ac2, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 41
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465ad6, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 43
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465aef, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 44
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465afc, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 42
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465b16, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 40
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465b1f, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 37
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 10
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465b25, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 26
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 52
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 26
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 25
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465b3a, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 22
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 48
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 22
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465b6b, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 40
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465b74, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 47
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465b98, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 43
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465bb4, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 44
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x51de47, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 42
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x4651f2, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 42
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465be6, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 38
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465bed, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 38
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465bf4, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 38
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465bfb, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 38
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c02, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 38
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c09, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 38
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c10, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 38
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c17, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 38
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c1e, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 38
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c25, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 38
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c2c, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 39
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c34, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 39
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c3c, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 39
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c44, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 39
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c4c, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 39
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c54, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 39
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c5c, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 39
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c64, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 39
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c6c, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 39
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c74, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 39
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c7c, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 46
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 19
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c8b, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 43
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465c97, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 43
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465ca3, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 46
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 19
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465cc5, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 24
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 50
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 24
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 23
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465cd8, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 43
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465cf4, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 44
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465d01, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 44
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465d1c, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 19
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 45
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 19
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465d3f, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 43
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465d5b, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 40
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465dc9, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 10
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 36
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 10
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 9
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465d86, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 40
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465d9c, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 42
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465daa, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 46
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 19
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465dce, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 47
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465dde, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 43
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465e02, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 43
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465e11, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 40
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465e23, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 38
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465e31, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 37
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 10
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465e4d, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 40
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x51d707, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 41
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465e7d, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 40
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465e86, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 37
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 10
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465ea7, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 38
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 12
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 11
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465ec3, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 19
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 45
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 19
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465ed1, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 23
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 49
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 23
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 22
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465f0f, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 10
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 36
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 10
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 9
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465f14, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 46
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 19
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465f4c, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 46
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 19
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465f75, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 42
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x51d6cc, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 41
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x51d772, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 43
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465fb9, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 23
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 49
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 23
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 22
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465fea, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 23
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 49
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 23
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 22
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x465ffc, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 44
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x466009, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 41
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x466013, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 42
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x46601e, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 40
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x46602b, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 40
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x466034, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 22
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 48
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 22
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x466045, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 47
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x466071, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 47
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x466085, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 40
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x46608e, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 41
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x466098, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 47
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 21
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 20
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x4660a8, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 40
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x4660b1, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 40
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 14
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 13
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x4660ba, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 43
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x4657c7, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 9
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 35
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 9
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 8
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
XrmGetDatabase(0x23e4930, 0x4660c6, 0, 0x7fff9e06d51c) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 42
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 16
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__snprintf_chk(0x7fff9e06d8c0, 512, 1, 512) = 15
XrmGetResource(0, 0x7fff9e06d8c0, 0x7fff9e06d8c0, 0x7fff9e06d8a8) = 0
__strcpy_chk(0x73ab80, 0x73ac00, 128, 0x7fff9e06d51c) = 0x73ab80
strlen("") = 0
memcmp(0x4657a8, 0x73ac00, 1, 1960) = 0xffffff9b
__memcpy_chk(0x73ac00, 0x4657a8, 1, 128) = 0x73ac00
setlocale(LC_CTYPE, "") = "en_US.UTF-8"
Perl_sys_init3(0x7fff9e06db14, 0x7fff9e06db18, 0x73aa88, 1) = 0
perl_alloc(0x7f6f34694e00, 0x7f6f340f9b64, 0, -1) = 0x23f46a0
perl_construct(0x23f46a0, 0x7f6f340f9b64, 0, 0) = 0x23f1c40
perl_parse(0x23f46a0, 0x4385b0, 2, 0x7fff9e06db20 <unfinished ...>
pthread_getspecific(1, 0x2411ed8, 0, 28) = 0x23f46a0
Perl_newXS(0x23f46a0, 0x51cf9a, 0x44d6f0, 0x51cf90) = 0x2411f68
pthread_getspecific(1, 0x2411f68, 0, 21) = 0x23f46a0
Perl_newXS(0x23f46a0, 0x51cfab, 0x4137d0, 0x51cf90) = 0x2411ff8
pthread_getspecific(1, 0x2411f68, 0xffffff80, 59) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 1, 0x7f6f343002e0) = 0x23f46a0
Perl_xs_apiversion_bootcheck(0x23f46a0, 0x2412958, 0x51d3ff, 7) = 0x2412b20
pthread_getspecific(1, 0xffffffff, 0x2412b98, 0x23fcb40) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d414, 0x44af70, 0x51d407) = 0x2412b98
pthread_getspecific(1, 0x51e1e1, 36, 0x24170b0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d41f, 0x438880, 0x51d407) = 0x2412b80
pthread_getspecific(1, 0x51e1e1, 36, 0x241ca40) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d42b, 0x4387a0, 0x51d407) = 0x2412b38
pthread_getspecific(1, 0x51e1e1, 36, 0x241cb20) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d438, 0x44aea0, 0x51d407) = 0x241b778
pthread_getspecific(1, 0x51e1e1, 36, 0x241cc00) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d445, 0x44a8d0, 0x51d407) = 0x241b7a8
pthread_getspecific(1, 0x521b93, 38, 0x241cd00) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d458, 0x441620, 0x51d407) = 0x241b7d8
pthread_getspecific(1, 0x4657a8, 0, 0x241cde0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d463, 0x43dca0, 0x51d407) = 0x241b808
pthread_getspecific(1, 0x51e1e1, 36, 0x241cf50) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d475, 0x43dae0, 0x51d407) = 0x241b838
pthread_getspecific(1, 0x51e1e1, 36, 0x2413b90) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d487, 0x43d890, 0x51d407) = 0x241b868
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2412424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d49a, 0x43d640, 0x51d407) = 0x241b898
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2412424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d4ad, 0x43d470, 0x51d407) = 0x241b8c8
pthread_getspecific(1, 0x51e1e1, 36, 0x241d300) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d4bf, 0x43d210, 0x51d407) = 0x241b8f8
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2412424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d4d1, 0x438ca0, 0x51d407) = 0x241b928
pthread_getspecific(1, 0x4657a8, 0, 0x241e520) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d4e1, 0x44aa60, 0x51d407) = 0x241b958
pthread_getspecific(1, 0x51e1dc, 0x242424, 0x24242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51f8b0, 0x438990, 0x51d407) = 0x241b988
pthread_getspecific(1, 0x51e1e1, 36, 0x241ce90) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d4ff, 0x451250, 0x51d407) = 0x241b9e8
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2412424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d511, 0x44a820, 0x51d407) = 0x241ba30
pthread_getspecific(1, 0x51e1e1, 36, 0x241eb50) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51f8d8, 0x44a620, 0x51d407) = 0x241ba60
pthread_getspecific(1, 0x51e1df, 0x242424, 0x241ec40) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d526, 0x44a460, 0x51d407) = 0x241ba90
pthread_getspecific(1, 0x51e1df, 0x242424, 0x241ed30) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d541, 0x44a100, 0x51d407) = 0x241bac0
pthread_getspecific(1, 0x51dc4b, 0x243b24, 0x3b242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d55a, 0x449dd0, 0x51d407) = 0x241baf0
pthread_getspecific(1, 0x51dc4b, 0x243b24, 0x3b242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d57e, 0x449970, 0x51d407) = 0x241bb20
pthread_getspecific(1, 0x51d575, 0x242424243b2424, 0x242424243b242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d594, 0x449720, 0x51d407) = 0x241bb50
pthread_getspecific(1, 0x51dc4b, 0x243b24, 0x3b242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d5ac, 0x449440, 0x51d407) = 0x241bb80
pthread_getspecific(1, 0x51dc4c, 0x243b24, 0x243b2424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51f8f8, 0x449380, 0x51d407) = 0x241bbb0
pthread_getspecific(1, 0x51e1e1, 36, 0x2420380) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51f918, 0x4492c0, 0x51d407) = 0x241bbe0
pthread_getspecific(1, 0x51e1e1, 36, 0x24204e0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51f938, 0x4491e0, 0x51d407) = 0x241bc10
pthread_getspecific(1, 0x51e1e1, 36, 0x2420570) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d5be, 0x44c3e0, 0x51d407) = 0x241bc40
pthread_getspecific(1, 0x51e1e1, 36, 0x2420650) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d5d2, 0x449000, 0x51d407) = 0x241bc70
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d5ef, 0x448e20, 0x51d407) = 0x241bca0
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d60c, 0x448c30, 0x51d407) = 0x241bcd0
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d62a, 0x4489c0, 0x51d407) = 0x241bd00
pthread_getspecific(1, 0x51e1df, 0x242424, 0x2420b40) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d648, 0x447510, 0x51d407) = 0x241bd30
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d65e, 0x448850, 0x51d407) = 0x241bd60
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d679, 0x4486b0, 0x51d407) = 0x241bd90
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d694, 0x43fcf0, 0x51d407) = 0x241bdc0
pthread_getspecific(1, 0x51e1e1, 36, 0x2420f20) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d6a7, 0x43fcf0, 0x51d407) = 0x241bdf0
pthread_getspecific(1, 0x51e1e1, 36, 0x2421010) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d6bf, 0x43fcf0, 0x51d407) = 0x241be20
pthread_getspecific(1, 0x51e1e1, 36, 0x2420d20) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d6d6, 0x43fcf0, 0x51d407) = 0x241be50
pthread_getspecific(1, 0x51e1e1, 36, 0x2421210) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d6e8, 0x43fcf0, 0x51d407) = 0x241be80
pthread_getspecific(1, 0x51e1e1, 36, 0x24212f0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d6fa, 0x43fcf0, 0x51d407) = 0x241beb0
pthread_getspecific(1, 0x51e1e1, 36, 0x24213e0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d711, 0x43fcf0, 0x51d407) = 0x241bee0
pthread_getspecific(1, 0x51e1e1, 36, 0x24214c0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d725, 0x43fcf0, 0x51d407) = 0x241bf10
pthread_getspecific(1, 0x51e1e1, 36, 0x2421100) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d73d, 0x43fcf0, 0x51d407) = 0x241bf40
pthread_getspecific(1, 0x51e1e1, 36, 0x2421190) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d752, 0x43fcf0, 0x51d407) = 0x241bf70
pthread_getspecific(1, 0x51e1e1, 36, 0x24217b0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d765, 0x43fcf0, 0x51d407) = 0x241bfa0
pthread_getspecific(1, 0x51e1e1, 36, 0x24218a0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d77e, 0x43fcf0, 0x51d407) = 0x241bfd0
pthread_getspecific(1, 0x51e1e1, 36, 0x2420920) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d791, 0x43fcf0, 0x51d407) = 0x241c000
pthread_getspecific(1, 0x51e1e1, 36, 0x24209b0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d7a9, 0x43fcf0, 0x51d407) = 0x241c030
pthread_getspecific(1, 0x51e1e1, 36, 0x24215b0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d7be, 0x43fcf0, 0x51d407) = 0x241c060
pthread_getspecific(1, 0x51e1e1, 36, 0x2421d80) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d7d2, 0x43fcf0, 0x51d407) = 0x241c090
pthread_getspecific(1, 0x51e1e1, 36, 0x2421e60) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d7e6, 0x43fb00, 0x51d407) = 0x241c0c0
pthread_getspecific(1, 0x51e1e1, 36, 0x2421f50) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d801, 0x43fb00, 0x51d407) = 0x241c0f0
pthread_getspecific(1, 0x51e1e1, 36, 0x2422040) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d81d, 0x43fb00, 0x51d407) = 0x241c120
pthread_getspecific(1, 0x51e1e1, 36, 0x2422130) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d838, 0x43fb00, 0x51d407) = 0x241c150
pthread_getspecific(1, 0x51e1e1, 36, 0x2422220) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d854, 0x43fb00, 0x51d407) = 0x241c180
pthread_getspecific(1, 0x51e1e1, 36, 0x2421c60) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d86d, 0x443230, 0x51d407) = 0x241c1b0
pthread_getspecific(1, 0x51e1e1, 36, 0x2421d50) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d885, 0x443230, 0x51d407) = 0x241c1e0
pthread_getspecific(1, 0x51e1e1, 36, 0x2422530) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d899, 0x440120, 0x51d407) = 0x241c210
pthread_getspecific(1, 0x51e1e1, 36, 0x2422610) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d8ab, 0x440120, 0x51d407) = 0x241c240
pthread_getspecific(1, 0x51e1e1, 36, 0x241ff90) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d8bd, 0x440fe0, 0x51d407) = 0x241c270
pthread_getspecific(1, 0x51dc4d, 0x243b24, 0x241e3e0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d8d8, 0x43f990, 0x51d407) = 0x241c2a0
pthread_getspecific(1, 0x51e1e1, 36, 0x2423760) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d8ec, 0x43f820, 0x51d407) = 0x241c2d0
pthread_getspecific(1, 0x51e1e1, 36, 0x2423840) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d900, 0x43f6b0, 0x51d407) = 0x241c300
pthread_getspecific(1, 0x51e1e1, 36, 0x2422310) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d916, 0x43f540, 0x51d407) = 0x241c330
pthread_getspecific(1, 0x51e1e1, 36, 0x2422400) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d92c, 0x43f3d0, 0x51d407) = 0x241c360
pthread_getspecific(1, 0x51e1e1, 36, 0x2422450) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d93c, 0x442690, 0x51d407) = 0x241c390
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d956, 0x441e90, 0x51d407) = 0x241c3c0
pthread_getspecific(1, 0x51dc4d, 0x243b24, 0x2424d20) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d96a, 0x4484b0, 0x51d407) = 0x241c3f0
pthread_getspecific(1, 0x51dc4d, 0x243b24, 0x2424e10) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d982, 0x4481a0, 0x51d407) = 0x241c420
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d99b, 0x4480f0, 0x51d407) = 0x241c450
pthread_getspecific(1, 0x51e1e1, 36, 0x2424ff0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d9b1, 0x448040, 0x51d407) = 0x241c480
pthread_getspecific(1, 0x51e1e1, 36, 0x24250e0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d9c8, 0x44b080, 0x51d407) = 0x241c4b0
pthread_getspecific(1, 0x51dc4b, 0x243b24, 0x3b242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d9e1, 0x44b080, 0x51d407) = 0x241c4e0
pthread_getspecific(1, 0x51dc4b, 0x243b24, 0x3b242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51d9f8, 0x43f310, 0x51d407) = 0x241c510
pthread_getspecific(1, 0x51e1e1, 36, 0x2423a20) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51da12, 0x446f40, 0x51d407) = 0x241c540
pthread_getspecific(1, 0x51d576, 0x242424243b2424, 0x2425500) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51da25, 0x447920, 0x51d407) = 0x241c570
pthread_getspecific(1, 0x51d576, 0x242424243b2424, 0x24255e0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51da38, 0x43f010, 0x51d407) = 0x241c5a0
pthread_getspecific(1, 0x51dc4c, 0x243b24, 0x243b2424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51da4b, 0x43fe60, 0x51d407) = 0x241c5d0
pthread_getspecific(1, 0x51dc4c, 0x243b24, 0x243b2424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51da66, 0x447710, 0x51d407) = 0x241c600
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51da82, 0x446d50, 0x51d407) = 0x241c630
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51da9e, 0x44bf10, 0x51d407) = 0x241c660
pthread_getspecific(1, 0x51dc4b, 0x243b24, 0x3b242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dab5, 0x446b60, 0x51d407) = 0x241c690
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dacd, 0x446870, 0x51d407) = 0x241c6c0
pthread_getspecific(1, 0x51dc4c, 0x243b24, 0x243b2424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dae1, 0x446630, 0x51d407) = 0x2425f28
pthread_getspecific(1, 0x51e1df, 0x242424, 0x2426f40) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dafb, 0x446440, 0x51d407) = 0x2425f58
pthread_getspecific(1, 0x51e1de, 0x242424, 0x24242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51db19, 0x446050, 0x51d407) = 0x2425f88
pthread_getspecific(1, 0x51dc2a, 0x24243b, 0x24243b24) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51db35, 0x446050, 0x51d407) = 0x2425fb8
pthread_getspecific(1, 0x51dc2a, 0x24243b, 0x24243b24) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51db4d, 0x446050, 0x51d407) = 0x2425fe8
pthread_getspecific(1, 0x51dc2a, 0x24243b, 0x24243b24) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51db68, 0x446050, 0x51d407) = 0x2426018
pthread_getspecific(1, 0x51dc2a, 0x24243b, 0x24243b24) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51db83, 0x43ee10, 0x51d407) = 0x2426048
pthread_getspecific(1, 0x51dc4d, 0x243b24, 0x2427560) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51f960, 0x445e90, 0x51d407) = 0x2426078
pthread_getspecific(1, 0x51e1df, 0x242424, 0x2427650) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dba1, 0x445b70, 0x51d407) = 0x24260a8
pthread_getspecific(1, 0x51dc4d, 0x243b24, 0x2427740) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dbbe, 0x4457c0, 0x51d407) = 0x24260d8
pthread_getspecific(1, 0x51dc4c, 0x243b24, 0x243b2424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dbda, 0x445350, 0x51d407) = 0x2426108
pthread_getspecific(1, 0x51dc4c, 0x243b24, 0x243b2424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dbf6, 0x43e9a0, 0x51d407) = 0x2426138
pthread_getspecific(1, 0x51dc2a, 0x24243b, 0x24243b24) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dc0d, 0x4451d0, 0x51d407) = 0x2426168
pthread_getspecific(1, 0x51e1e1, 36, 0x2427b00) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dc2f, 0x444d90, 0x51d407) = 0x2426198
pthread_getspecific(1, 0x51dc26, 0x24243b24242424, 0x24243b2424242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dc51, 0x444a20, 0x51d407) = 0x24261c8
pthread_getspecific(1, 0x51dc49, 0x243b2424242424, 0x2428cc0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dc6b, 0x444970, 0x51d407) = 0x24261f8
pthread_getspecific(1, 0x51e1e1, 36, 0x2427030) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dc81, 0x444640, 0x51d407) = 0x2426228
pthread_getspecific(1, 0x51dc4d, 0x243b24, 0x2427120) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51f980, 0x444510, 0x51d407) = 0x2426258
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dc9b, 0x444420, 0x51d407) = 0x2426288
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dcb6, 0x444300, 0x51d407) = 0x24262b8
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dccc, 0x4441e0, 0x51d407) = 0x24262e8
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dce2, 0x444070, 0x51d407) = 0x2426318
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dcf9, 0x451af0, 0x51d407) = 0x2426348
pthread_getspecific(1, 0x51dc26, 0x24243b24242424, 0x24243b2424242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dd0e, 0x443e90, 0x51d407) = 0x2426378
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51f9a0, 0x443bb0, 0x51d407) = 0x24263a8
pthread_getspecific(1, 0x51e1df, 0x242424, 0x24296b0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dd2b, 0x443840, 0x51d407) = 0x24263d8
pthread_getspecific(1, 0x51e1dc, 0x242424, 0x24242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dd48, 0x4435c0, 0x51d407) = 0x2426408
pthread_getspecific(1, 0x51dc4c, 0x243b24, 0x243b2424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dd61, 0x4433d0, 0x51d407) = 0x2426438
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dd7b, 0x443070, 0x51d407) = 0x2426468
pthread_getspecific(1, 0x51e1df, 0x242424, 0x2429a70) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51f9c0, 0x43e830, 0x51d407) = 0x2426498
pthread_getspecific(1, 0x51e1e1, 36, 0x2429b60) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dd98, 0x442d90, 0x51d407) = 0x24264c8
pthread_getspecific(1, 0x51dc28, 0x24243b, 0x3b242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51ddb5, 0x442c60, 0x51d407) = 0x24264f8
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51ddcd, 0x442b30, 0x51d407) = 0x2426528
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51f9e0, 0x4427f0, 0x51d407) = 0x2426558
pthread_getspecific(1, 0x51e1dc, 0x242424, 0x24242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dde7, 0x442410, 0x51d407) = 0x2426588
pthread_getspecific(1, 0x51dc4b, 0x243b24, 0x3b242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51fa00, 0x442090, 0x51d407) = 0x24265b8
pthread_getspecific(1, 0x51e1dd, 0x242424, 0x24242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51de01, 0x43e700, 0x51d407) = 0x24265e8
pthread_getspecific(1, 0x51e1e1, 36, 0x242a2b0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51fa28, 0x43e1d0, 0x51d407) = 0x2426618
pthread_getspecific(1, 0x51dc4d, 0x243b24, 0x242a3a0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51de21, 0x441a20, 0x51d407) = 0x2426648
pthread_getspecific(1, 0x51de19, 0x24242424243b24, 0x242a490) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51fa50, 0x4418f0, 0x51d407) = 0x2426678
pthread_getspecific(1, 0x51e1e1, 36, 0x242a580) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51de36, 0x44c4c0, 0x51d407) = 0x24266a8
pthread_getspecific(1, 0x51dc4c, 0x243b24, 0x243b2424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51de52, 0x452810, 0x51d407) = 0x2426708
pthread_getspecific(1, 0x51dc4a, 0x243b24, 0x24242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51de66, 0x44be50, 0x51d407) = 0x2426750
pthread_getspecific(1, 0x51e1e1, 36, 0x242aa00) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51de7b, 0x452330, 0x51d407) = 0x2426780
pthread_getspecific(1, 0x51e1e1, 36, 0x242aae0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51de90, 0x452270, 0x51d407) = 0x24267b0
pthread_getspecific(1, 0x51e1e1, 36, 0x242ab90) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dea8, 0x44d560, 0x51d407) = 0x2426810
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2412424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51debb, 0x44ca20, 0x51d407) = 0x2426870
pthread_getspecific(1, 0x51e1e1, 36, 0x242b080) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51decd, 0x441770, 0x51d407) = 0x24268b8
pthread_getspecific(1, 0x51e1e1, 36, 0x242b190) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dede, 0x4405f0, 0x51d407) = 0x24268e8
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51def5, 0x44cec0, 0x51d407) = 0x2426918
pthread_getspecific(1, 0x51dc4c, 0x243b24, 0x243b2424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51df07, 0x44cbc0, 0x51d407) = 0x2426948
pthread_getspecific(1, 0x51dc2a, 0x24243b, 0x24243b24) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51df1b, 0x441370, 0x51d407) = 0x2426978
pthread_getspecific(1, 0x51dc4c, 0x243b24, 0x243b2424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51df2f, 0x441240, 0x51d407) = 0x24269a8
pthread_getspecific(1, 0x51e1e1, 36, 0x242b630) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51df42, 0x44d360, 0x51d407) = 0x24269d8
pthread_getspecific(1, 0x51e1e1, 36, 0x242aef0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51df58, 0x4392f0, 0x51d407) = 0x2426a38
pthread_getspecific(1, 0x51e1e1, 36, 0x242c910) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51df68, 0x440450, 0x51d407) = 0x2426a80
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51df77, 0x4402a0, 0x51d407) = 0x2426ab0
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51df8a, 0x440eb0, 0x51d407) = 0x2426ae0
pthread_getspecific(1, 0x51e1e1, 36, 0x242cbb0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51df9c, 0x440d80, 0x51d407) = 0x2426b10
pthread_getspecific(1, 0x51e1e1, 36, 0x242cc60) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dfad, 0x44d460, 0x51d407) = 0x2426b40
pthread_getspecific(1, 0x51e1e1, 36, 0x242cd20) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dfc1, 0x439480, 0x51d407) = 0x2426ba0
pthread_getspecific(1, 0x51e1e1, 36, 0x242df60) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dfd0, 0x440c50, 0x51d407) = 0x2426be8
pthread_getspecific(1, 0x51e1e1, 36, 0x242e040) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dfe1, 0x440b20, 0x51d407) = 0x2426c18
pthread_getspecific(1, 0x51e1e1, 36, 0x242e0f0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51dff1, 0x44d160, 0x51d407) = 0x2426c48
pthread_getspecific(1, 0x51e1e1, 36, 0x242e1a0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e004, 0x439610, 0x51d407) = 0x2426ca8
pthread_getspecific(1, 0x51e1e1, 36, 0x242e400) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e013, 0x4408d0, 0x51d407) = 0x2426cf0
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2422424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e024, 0x4407a0, 0x51d407) = 0x2426d20
pthread_getspecific(1, 0x51e1e1, 36, 0x242e590) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e034, 0x43e060, 0x51d407) = 0x2426d50
pthread_getspecific(1, 0x51e1e1, 36, 0x242e670) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e044, 0x43def0, 0x51d407) = 0x2426d80
pthread_getspecific(1, 0x51e1e1, 36, 0x242e760) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e057, 0x44d260, 0x51d407) = 0x2426db0
pthread_getspecific(1, 0x51e1e1, 36, 0x242e820) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e06a, 0x438de0, 0x51d407) = 0x2426e10
pthread_getspecific(1, 0x51e1e1, 36, 0x242eaa0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e07f, 0x43cf80, 0x51d407) = 0x2426e58
pthread_getspecific(1, 0x51e1e1, 36, 0x242ebb0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e08d, 0x43cf80, 0x51d407) = 0x2426e88
pthread_getspecific(1, 0x51e1e1, 36, 0x242ec90) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e09b, 0x43cf80, 0x51d407) = 0x2426eb8
pthread_getspecific(1, 0x51e1e1, 36, 0x242ed70) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e0a9, 0x43cf80, 0x51d407) = 0x2426ee8
pthread_getspecific(1, 0x51e1e1, 36, 0x242ee50) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e0b7, 0x43cd50, 0x51d407) = 0x242eea0
pthread_getspecific(1, 0x51e1e1, 36, 0x242ff40) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e0c6, 0x44b9b0, 0x51d407) = 0x242eed0
pthread_getspecific(1, 0x51d577, 0x242424, 0x24243b24) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e0d7, 0x43cbc0, 0x51d407) = 0x242ef00
pthread_getspecific(1, 0x51e1e1, 36, 0x24301e0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e0eb, 0x43ca40, 0x51d407) = 0x242ef30
pthread_getspecific(1, 0x51e1e1, 36, 0x24302f0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e101, 0x43c8c0, 0x51d407) = 0x242ef60
pthread_getspecific(1, 0x51e1e1, 36, 0x24303e0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e115, 0x43c550, 0x51d407) = 0x242ef90
pthread_getspecific(1, 0x51dc4d, 0x243b24, 0x2430540) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e12d, 0x439070, 0x51d407) = 0x242efc0
pthread_getspecific(1, 0x51e1df, 0x242424, 0x24305c0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e13e, 0x43c140, 0x51d407) = 0x242eff0
pthread_getspecific(1, 0x51dc4a, 0x243b24, 0x24242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e155, 0x43bd30, 0x51d407) = 0x242f020
pthread_getspecific(1, 0x51dc4a, 0x243b24, 0x24242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e16a, 0x43b990, 0x51d407) = 0x242f050
pthread_getspecific(1, 0x51dc29, 0x24243b, 0x243b2424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e17b, 0x43b7a0, 0x51d407) = 0x242f080
pthread_getspecific(1, 0x51e1e1, 36, 0x2430120) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e18d, 0x43b5b0, 0x51d407) = 0x242f0b0
pthread_getspecific(1, 0x51e1e1, 36, 0x2430b70) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e19f, 0x43b1b0, 0x51d407) = 0x242f0e0
pthread_getspecific(1, 0x51e1dd, 0x242424, 0x24242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e1b4, 0x43aec0, 0x51d407) = 0x242f110
pthread_getspecific(1, 0x51e1df, 0x242424, 0x2430a40) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e1c5, 0x43abc0, 0x51d407) = 0x242f140
pthread_getspecific(1, 0x51e1df, 0x242424, 0x2430a90) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e1e3, 0x43a4b0, 0x51d407) = 0x242f170
pthread_getspecific(1, 0x51e1d8, 0x24242424242424, 0x2424242424242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e1f9, 0x43a1c0, 0x51d407) = 0x242f1a0
pthread_getspecific(1, 0x51e1df, 0x242424, 0x2431ef0) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e20b, 0x439e40, 0x51d407) = 0x242f1d0
pthread_getspecific(1, 0x51e1de, 0x242424, 0x24242424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e21e, 0x44b790, 0x51d407) = 0x242f200
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2432424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e22f, 0x439bc0, 0x51d407) = 0x242f230
pthread_getspecific(1, 0x51e1e0, 0x7f6f33e70024, 0x2432424) = 0x23f46a0
Perl_newXS_flags(0x23f46a0, 0x51e241, 0x4397a0, 0x51d407) = 0x242f260
pthread_getspecific(1, 0x51dc4c, 0x243b24, 0x243b2424) = 0x23f46a0
Perl_newSVpvn(0x23f46a0, 0x51e254, 14, 0x7f6f343002e0) = 0x242f278
pthread_getspecific(1, 0x51e254, 0x74767872752f6269, 0x62696c2f7273752f) = 0x23f46a0
Perl_get_sv(0x23f46a0, 0x51e263, 1, 0x7f6f343002e0) = 0x242f2a8
pthread_getspecific(1, 0x242f2a8, 0, 5) = 0x23f46a0
Perl_sv_setsv_flags(0x23f46a0, 0x242f2a8, 0x242f278, 2) = 0x4404
pthread_getspecific(1, 0x24332a0, 0x2433350, 0x62696c2f7273752f) = 0x23f46a0
Perl_newSVpvn(0x23f46a0, 0x51e25d, 5, 0x7f6f343002e0) = 0x242f2c0
pthread_getspecific(1, 0x51e25d, 0x74767872, 0x76787275) = 0x23f46a0
Perl_get_sv(0x23f46a0, 0x51e271, 1, 0x7f6f343002e0) = 0x242f2f0
pthread_getspecific(1, 0x242f2f0, 0, 5) = 0x23f46a0
Perl_sv_setsv_flags(0x23f46a0, 0x242f2f0, 0x242f2c0, 2) = 0x4404
pthread_getspecific(1, 0x2433370, 0x2433430, 0x76787275) = 0x23f46a0
Perl_newSVpvn(0x23f46a0, 0x4634f3, 5, 0x7f6f343002e0) = 0x242f308
pthread_getspecific(1, 0x4634f3, 0x74767852, 0x76785255) = 0x23f46a0
Perl_get_sv(0x23f46a0, 0x51e280, 1, 0x7f6f343002e0) = 0x242f338
pthread_getspecific(1, 0x242f338, 0, 5) = 0x23f46a0
Perl_sv_setsv_flags(0x23f46a0, 0x242f338, 0x242f308, 2) = 0x4404
pthread_getspecific(1, 0x2433450, 0x2433510, 0x76785255) = 0x23f46a0
Perl_newSVpvn(0x23f46a0, 0x51e25d, 5, 0x7f6f343002e0) = 0x242f350
pthread_getspecific(1, 0x51e25d, 0x74767872, 0x76787275) = 0x23f46a0
Perl_get_sv(0x23f46a0, 0x51e290, 1, 0x7f6f343002e0) = 0x242f380
pthread_getspecific(1, 0x242f380, 0, 5) = 0x23f46a0
Perl_sv_setsv_flags(0x23f46a0, 0x242f380, 0x242f350, 2) = 0x4404
pthread_getspecific(1, 0x2433535, 0x242e250, 0x74767872) = 0x23f46a0
Perl_get_av(0x23f46a0, 0x51e2a0, 1, 0x7f6f343002e0) = 0x242f3b0
pthread_getspecific(1, 0x242e288, 0x242f3b0, 0x23f9458) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e2b0, 0, 0x7f6f343002e0) = 0x242f3c8
pthread_getspecific(1, 0x51e2b0, 0x54494e49, 0x242e310) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 0, 0x242f3c8) = 0x2433700
pthread_getspecific(1, 0, -1, 0) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e0e3, 0, 0x7f6f343002e0) = 0x242f3e0
pthread_getspecific(1, 0x51e0e3, 0x594f5254, 0x54534544) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 1, 0x242f3e0) = 0x2433708
pthread_getspecific(1, 1, 0, 1) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e2b5, 0, 0x7f6f343002e0) = 0x242f3f8
pthread_getspecific(1, 0x51e2b5, 0x54455345, 0x45534552) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 2, 0x242f3f8) = 0x2433710
pthread_getspecific(1, 2, 1, 2) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e2c1, 0, 0x7f6f343002e0) = 0x242f410
pthread_getspecific(1, 0x51e2c1, 0x54524154, 0x52415453) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 3, 0x242f410) = 0x2433718
pthread_getspecific(1, 3, 2, 3) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e2bb, 0, 0x7f6f343002e0) = 0x242f428
pthread_getspecific(1, 0x51e2bb, 0x54524154535f444c, 0x54535f444c494843) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 4, 0x242f428) = 0x2433720
pthread_getspecific(1, 4, 3, 4) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e2c7, 0, 0x7f6f343002e0) = 0x242f440
pthread_getspecific(1, 0x51e2c7, 0x544958455f444c49, 0x58455f444c494843) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 5, 0x242f440) = 0x24337f8
pthread_getspecific(1, 5, 4, 5) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e2d2, 0, 0x7f6f343002e0) = 0x242f458
pthread_getspecific(1, 0x51e2d2, 0x4e494745425f4c45, 0x494745425f4c4553) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 6, 0x242f458) = 0x2433860
pthread_getspecific(1, 6, 5, 6) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e2dc, 0, 0x7f6f343002e0) = 0x242f470
pthread_getspecific(1, 0x51e2dc, 0x444e455458455f4c, 0x455458455f4c4553) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 7, 0x242f470) = 0x2433868
pthread_getspecific(1, 7, 6, 7) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e2e7, 0, 0x7f6f343002e0) = 0x242f488
pthread_getspecific(1, 0x51e2e7, 0x454b414d5f4c4553, 0x24338a0) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 8, 0x242f488) = 0x2433900
pthread_getspecific(1, 8, 7, 8) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e2f0, 0, 0x7f6f343002e0) = 0x242f4a0
pthread_getspecific(1, 0x51e2f0, 0x424152475f4c4553, 0x2433920) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 9, 0x242f4a0) = 0x2433908
pthread_getspecific(1, 9, 8, 9) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e2f9, 0, 0x7f6f343002e0) = 0x242f4b8
pthread_getspecific(1, 0x51e2f9, 0x4b43494c435f4c45, 0x43494c435f4c4553) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 10, 0x242f4b8) = 0x24339b0
pthread_getspecific(1, 10, 9, 10) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e303, 0, 0x7f6f343002e0) = 0x242f4d0
pthread_getspecific(1, 0x51e303, 0x45474e4148435f57, 0x4148435f57454956) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 11, 0x242f4d0) = 0x24339b8
pthread_getspecific(1, 11, 10, 11) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e30f, 0, 0x7f6f343002e0) = 0x242f4e8
pthread_getspecific(1, 0x51e30f, 0x4b4341425f4c4c4f, 0x425f4c4c4f524353) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 12, 0x242f4e8) = 0x2433a70
pthread_getspecific(1, 12, 11, 12) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e31b, 0, 0x7f6f343002e0) = 0x242f500
pthread_getspecific(1, 0x51e31b, 0x4554414450555f45, 0x4450555f454e494c) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 13, 0x242f500) = 0x2433a78
pthread_getspecific(1, 13, 12, 13) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e327, 0, 0x7f6f343002e0) = 0x242f518
pthread_getspecific(1, 0x51e327, 0x53454e494c5f4444, 0x454e494c5f444441) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 14, 0x242f518) = 0x2433a80
pthread_getspecific(1, 14, 13, 14) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e331, 0, 0x7f6f343002e0) = 0x242f530
pthread_getspecific(1, 0x51e331, 0x5145535f, 0x5f43534f) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 15, 0x242f530) = 0x2433b68
pthread_getspecific(1, 15, 14, 15) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e339, 0, 0x7f6f343002e0) = 0x242f548
pthread_getspecific(1, 0x51e339, 0x4c5245505f514553, 0x5f5145535f43534f) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 16, 0x242f548) = 0x2433b70
pthread_getspecific(1, 16, 15, 16) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e346, 0, 0x7f6f343002e0) = 0x242f560
pthread_getspecific(1, 0x51e346, 0x45544952575f5454, 0x2433bb0) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 17, 0x242f560) = 0x2433b78
pthread_getspecific(1, 17, 16, 17) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e34f, 0, 0x7f6f343002e0) = 0x242f578
pthread_getspecific(1, 0x51e34f, 0x4e494745425f4853, 0x5f48534552464552) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 18, 0x242f578) = 0x2433c80
pthread_getspecific(1, 18, 17, 18) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e35d, 0, 0x7f6f343002e0) = 0x242f590
pthread_getspecific(1, 0x51e35d, 0x444e455f48534552, 0x5f48534552464552) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 19, 0x242f590) = 0x2433c88
pthread_getspecific(1, 19, 18, 19) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e369, 0, 0x7f6f343002e0) = 0x242f5a8
pthread_getspecific(1, 0x51e369, 0x444e414d4d4f435f, 0x4d4f435f52455355) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 20, 0x242f5a8) = 0x2433c90
pthread_getspecific(1, 20, 19, 20) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e376, 0, 0x7f6f343002e0) = 0x242f5c0
pthread_getspecific(1, 0x51e376, 0x7f6f33e75c96, 0x2433b30) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 21, 0x242f5c0) = 0x2433c98
pthread_getspecific(1, 21, 20, 21) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e387, 0, 0x7f6f343002e0) = 0x242f5d8
pthread_getspecific(1, 0x51e387, 0x544e4556455f544f, 0x4556455f544f4f52) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 22, 0x242f5d8) = 0x2433ca0
pthread_getspecific(1, 22, 21, 22) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e392, 0, 0x7f6f343002e0) = 0x242f5f0
pthread_getspecific(1, 0x51e392, 0x544e4556, 0x56455f58) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 23, 0x242f5f0) = 0x2433ca8
pthread_getspecific(1, 23, 22, 23) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e39a, 0, 0x7f6f343002e0) = 0x242f608
pthread_getspecific(1, 0x51e39a, 0x4e495f5355434f46, 0x2433cd0) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 24, 0x242f608) = 0x2433cb0
pthread_getspecific(1, 24, 23, 24) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e3a3, 0, 0x7f6f343002e0) = 0x242f620
pthread_getspecific(1, 0x51e3a3, 0x54554f5f5355434f, 0x554f5f5355434f46) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 25, 0x242f620) = 0x2433cb8
pthread_getspecific(1, 25, 24, 25) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e3ad, 0, 0x7f6f343002e0) = 0x242f638
pthread_getspecific(1, 0x51e3ad, 0x53534552505f5945, 0x534552505f59454b) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 26, 0x242f638) = 0x2433cc0
pthread_getspecific(1, 26, 25, 26) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e3b7, 0, 0x7f6f343002e0) = 0x242f650
pthread_getspecific(1, 0x51e3b7, 0x455341454c45525f, 0x454c45525f59454b) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 27, 0x242f650) = 0x2433e28
pthread_getspecific(1, 27, 26, 27) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e3c3, 0, 0x7f6f343002e0) = 0x242f668
pthread_getspecific(1, 0x51e3c3, 0x53534552505f4e4f, 0x505f4e4f54545542) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 28, 0x242f668) = 0x2433e30
pthread_getspecific(1, 28, 27, 28) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e3d0, 0, 0x7f6f343002e0) = 0x242f680
pthread_getspecific(1, 0x51e3d0, 0x455341454c45525f, 0x525f4e4f54545542) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 29, 0x242f680) = 0x2433e38
pthread_getspecific(1, 29, 28, 29) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e3df, 0, 0x7f6f343002e0) = 0x242f698
pthread_getspecific(1, 0x51e3df, 0x594649544f4e5f4e, 0x4e5f4e4f49544f4d) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 30, 0x242f698) = 0x2433e40
pthread_getspecific(1, 30, 29, 30) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e3ef, 0, 0x7f6f343002e0) = 0x242f6b0
pthread_getspecific(1, 0x51e3ef, 0x594649544f4e5f50, 0x49544f4e5f50414d) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 31, 0x242f6b0) = 0x2433e48
pthread_getspecific(1, 31, 30, 31) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e3ed, 0, 0x7f6f343002e0) = 0x242f6c8
pthread_getspecific(1, 0x51e3ed, 0x594649544f4e5f50, 0x4f4e5f50414d4e55) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 32, 0x242f6c8) = 0x2433e50
pthread_getspecific(1, 32, 31, 32) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e3fa, 0, 0x7f6f343002e0) = 0x242f6e0
pthread_getspecific(1, 0x51e3fa, 0x7f6f33e75c96, 0x2433c90) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 33, 0x242f6e0) = 0x2433e58
pthread_getspecific(1, 33, 32, 33) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e40b, 0, 0x7f6f343002e0) = 0x242f6f8
pthread_getspecific(1, 0x51e40b, 0x4547415353454d5f, 0x4d5f544e45494c43) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 34, 0x242f6f8) = 0x2433e60
pthread_getspecific(1, 34, 33, 34) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51c6fe, 0, 0x7f6f343002e0) = 0x242f710
pthread_getspecific(1, 0x51c6fe, 0x7f6f33e75c96, 0x2433ea0) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 35, 0x242f710) = 0x2433e68
pthread_getspecific(1, 35, 34, 35) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51c6f1, 0, 0x7f6f343002e0) = 0x242f728
pthread_getspecific(1, 0x51c6f1, 0x534c4f434f544f52, 0x4f544f52505f4d57) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 36, 0x242f728) = 0x2433e70
pthread_getspecific(1, 36, 35, 36) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e41a, 0, 0x7f6f343002e0) = 0x242f740
pthread_getspecific(1, 0x51e41a, 0x594649544f4e5f59, 0x59545245504f5250) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 37, 0x242f740) = 0x2433e78
pthread_getspecific(1, 37, 36, 37) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e42a, 0, 0x7f6f343002e0) = 0x242f758
pthread_getspecific(1, 0x51e42a, 0x7f6f33e76296, 0x2433f00) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 38, 0x242f758) = 0x2433e80
pthread_getspecific(1, 38, 37, 38) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e43d, 0, 0x7f6f343002e0) = 0x242f770
pthread_getspecific(1, 0x51e43d, 0x45474e4148435f45, 0x4148435f455a4953) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 39, 0x242f770) = 0x2433e88
pthread_getspecific(1, 39, 38, 39) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e449, 0, 0x7f6f343002e0) = 0x242f788
pthread_getspecific(1, 0x51e449, 0x45474e4148435f4e, 0x4e4f495449534f50) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 40, 0x242f788) = 0x24340a0
pthread_getspecific(1, 40, 39, 40) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e459, 0, 0x7f6f343002e0) = 0x242f7a0
pthread_getspecific(1, 0x51e459, 0x45474e4148435f50, 0x50414d50544f4f52) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 41, 0x242f7a0) = 0x24340a8
pthread_getspecific(1, 41, 40, 41) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e469, 0, 0x7f6f343002e0) = 0x242f7b8
pthread_getspecific(1, 0x51e469, 0x7f6f33e76306, 0x2433d70) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 42, 0x242f7b8) = 0x24340b0
pthread_getspecific(1, 42, 41, 42) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e47b, 0, 0x7f6f343002e0) = 0x242f7d0
pthread_getspecific(1, 0x51e47b, 0x7f6f33e75c96, 0x2433d90) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 43, 0x242f7d0) = 0x24340b8
pthread_getspecific(1, 43, 42, 43) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e48c, 0, 0x7f6f343002e0) = 0x242f7e8
pthread_getspecific(1, 0x51e48c, 0x7f6f33e75c96, 0x2433db0) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 44, 0x242f7e8) = 0x24340c0
pthread_getspecific(1, 44, 43, 44) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e49d, 0, 0x7f6f343002e0) = 0x242f800
pthread_getspecific(1, 0x51e49d, 0x7f6f33e76306, 0x2433dd0) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 45, 0x242f800) = 0x24340c8
pthread_getspecific(1, 45, 44, 45) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e4af, 0, 0x7f6f343002e0) = 0x242f818
pthread_getspecific(1, 0x51e4af, 0x444e45525f4d4f54, 0x525f4d4f54535543) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 46, 0x242f818) = 0x24340d0
pthread_getspecific(1, 46, 45, 46) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e4bb, 0, 0x7f6f343002e0) = 0x242f830
pthread_getspecific(1, 0x51e4bb, 0x4c4c4542, 0x2433e10) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 47, 0x242f830) = 0x24340d8
pthread_getspecific(1, 47, 46, 47) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51e4c0, 0, 0x7f6f343002e0) = 0x242f848
pthread_getspecific(1, 0x51e4c0, 0x45545341505f5454, 0x2433e30) = 0x23f46a0
Perl_av_store(0x23f46a0, 0x242f3b0, 48, 0x242f848) = 0x24340e0
pthread_getspecific(1, 48, 47, 48) = 0x23f46a0
Perl_get_hv(0x23f46a0, 0x51e4c9, 1, 0x7f6f343002e0) = 0x242f878
pthread_getspecific(1, 0, 0x242f878, 0x23fcc20) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f890
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x4658b7, 10) = 0x2430f18
pthread_getspecific(1, 0x23fcc20, 7, 0x594a2678) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 2, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f8a8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465871, 6) = 0x2430f30
pthread_getspecific(1, 0x23fcc20, 7, 0x98c42804) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 3, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f8c0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465afc, 10) = 0x2430f48
pthread_getspecific(1, 0x23fcc20, 7, 0x667ec450) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 4, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f8d8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465b16, 8) = 0x2430f60
pthread_getspecific(1, 0x23fcc20, 7, 0x7813c229) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 5, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f8f0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x46589c, 12) = 0x2430f78
pthread_getspecific(1, 0x23fcc20, 7, 0x30c27ad) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 6, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f908
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465ad6, 11) = 0x2430f90
pthread_getspecific(1, 0x23fcc20, 7, 0x6b29eaf3) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 7, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f920
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x46593e, 9) = 0x2430fa8
pthread_getspecific(1, 0x23fcc20, 7, 0xb7485017) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 8, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f938
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465955, 15) = 0x2430fc0
pthread_getspecific(1, 8, 9, 0) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 9, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f950
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465975, 18) = 0x2430fd8
pthread_getspecific(1, 0x23fcc20, 15, 0x3cebc6ce) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 10, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f968
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465b1f, 5) = 0x2430ff0
pthread_getspecific(1, 0x23fcc20, 15, 0x2a4e66d0) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 11, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f980
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x4659be, 15) = 0x2431008
pthread_getspecific(1, 0x23fcc20, 15, 0xf38886e4) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 12, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f998
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x4659ee, 17) = 0x2431020
pthread_getspecific(1, 0x23fcc20, 15, 0xd2af7a94) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 13, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f9b0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465a61, 11) = 0x2431038
pthread_getspecific(1, 0x23fcc20, 15, 0x74f3da72) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 14, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f9c8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465b3a, 16) = 0x2431050
pthread_getspecific(1, 0x23fcc20, 15, 0x3270dc2b) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 15, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f9e0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465a13, 16) = 0x2431068
pthread_getspecific(1, 0x23fcc20, 15, 0x116cd9d5) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 16, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242f9f8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x4658ce, 10) = 0x2431080
pthread_getspecific(1, 16, 17, 0) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 17, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fa10
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x4658ea, 10) = 0x2431098
pthread_getspecific(1, 0x23fcc20, 31, 0x73abb534) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 18, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fa28
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465b25, 20) = 0x24310b0
pthread_getspecific(1, 0x23fcc20, 31, 0x850e873d) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 19, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fa40
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465bb4, 12) = 0x24310c8
pthread_getspecific(1, 0x23fcc20, 31, 0x94658133) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 20, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fa58
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465b98, 11) = 0x24310e0
pthread_getspecific(1, 0x23fcc20, 31, 0xdba70fa0) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 21, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fa70
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x466045, 15) = 0x24310f8
pthread_getspecific(1, 0x23fcc20, 31, 0x32100203) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 22, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fa88
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x466071, 15) = 0x2431110
pthread_getspecific(1, 0x23fcc20, 31, 0xe46997df) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 23, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242faa0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465904, 12) = 0x2431128
pthread_getspecific(1, 0x23fcc20, 31, 0x554eec8e) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 24, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fab8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465b74, 15) = 0x2431140
pthread_getspecific(1, 0x23fcc20, 31, 0x732af69) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 25, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fad0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465b6b, 8) = 0x2431158
pthread_getspecific(1, 0x23fcc20, 31, 0x6f276d70) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 26, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fae8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465f75, 10) = 0x2431170
pthread_getspecific(1, 0x23fcc20, 31, 0x7d5bba3e) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 27, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fb00
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465f0f, 4) = 0x2431188
pthread_getspecific(1, 0x23fcc20, 31, 0x697d9369) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 28, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fb18
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x51e4d7, 17) = 0x24311a0
pthread_getspecific(1, 0x23fcc20, 31, 0x6f8b651d) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 29, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fb30
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465aef, 12) = 0x24311b8
pthread_getspecific(1, 0x23fcc20, 31, 0x76c93984) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 30, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fb48
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465fb9, 17) = 0x24311d0
pthread_getspecific(1, 0x23fcc20, 31, 0xc741a62d) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 31, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fb60
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465dce, 15) = 0x24311e8
pthread_getspecific(1, 0x23fcc20, 31, 0x8e0599f8) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 32, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fb78
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x4660b1, 8) = 0x2431200
pthread_getspecific(1, 32, 33, 0) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 33, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fb90
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x4660ba, 11) = 0x2431218
pthread_getspecific(1, 0x23fcc20, 63, 0x5b56c6a8) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 34, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fba8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x51e4e9, 7) = 0x2431230
pthread_getspecific(1, 0x23fcc20, 63, 0x84c95224) = 0x23f46a0
Perl_newSVuv(0x23f46a0, 35, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fbc0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x242f878, 0x465e7d, 8) = 0x2431248
pthread_getspecific(1, 0x23fcc20, 63, 0xdb527d86) = 0x23f46a0
Perl_gv_stashpv(0x23f46a0, 0x51e25d, 1, 0x7f6f343002e0) = 0x2411f38
pthread_getspecific(1, 0, 0x520e30, 0x2413bc8) = 0x23f46a0
Perl_newSViv(0x23f46a0, 62, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fbd8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51f0be, 0x242fbd8) = 0x242fc08
pthread_getspecific(1, 0x23fc1f0, 0x520e20, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 61, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fc20
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51f0af, 0x242fc20) = 0x242fc50
pthread_getspecific(1, 0x23fc1f0, 0x520e10, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 60, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fc68
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51f09b, 0x242fc68) = 0x242fc98
pthread_getspecific(1, 0x23fc1f0, 0x520e00, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 59, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fcb0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51f08e, 0x242fcb0) = 0x242fce0
pthread_getspecific(1, 0x23fc1f0, 0x520df0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 58, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fcf8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51f07e, 0x242fcf8) = 0x242fd28
pthread_getspecific(1, 0x23fc1f0, 0x520de0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 57, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fd40
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51f06d, 0x242fd40) = 0x242fd70
pthread_getspecific(1, 0x23fc1f0, 0x520dd0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 56, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fd88
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51f05d, 0x242fd88) = 0x242fdb8
pthread_getspecific(1, 0x23fc1f0, 0x520dc0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 55, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fdd0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51f04d, 0x242fdd0) = 0x242fe00
pthread_getspecific(1, 0x23fc1f0, 0x520db0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 54, 0x7f6f35737a60, 0x7f6f343002e0) = 0x242fe18
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51f03d, 0x242fe18) = 0x242fe48
pthread_getspecific(1, 0x23fc1f0, 0x520da0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 53, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435658
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51f02c, 0x2435658) = 0x2435688
pthread_getspecific(1, 0x23fc1f0, 0x520d90, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 52, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24356a0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51f01e, 0x24356a0) = 0x24356d0
pthread_getspecific(1, 0x23fc1f0, 0x520d80, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 51, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24356e8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51f011, 0x24356e8) = 0x2435718
pthread_getspecific(1, 0x23fc1f0, 0x520d70, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 50, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435730
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51f003, 0x2435730) = 0x2435760
pthread_getspecific(1, 0x23fc1f0, 0x520d60, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 49, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435778
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eff6, 0x2435778) = 0x24357a8
pthread_getspecific(1, 0x23fc1f0, 0x520d50, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 48, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24357c0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51efe7, 0x24357c0) = 0x24357f0
pthread_getspecific(1, 0x23fc1f0, 0x520d40, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 43, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435808
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51efd5, 0x2435808) = 0x2435838
pthread_getspecific(1, 0x23fc1f0, 0x520d30, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 42, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435850
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51efbb, 0x2435850) = 0x2435880
pthread_getspecific(1, 0x23fc1f0, 0x520d20, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 41, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435898
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51efa8, 0x2435898) = 0x24358c8
pthread_getspecific(1, 0x23fc1f0, 0x520d10, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 40, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24358e0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ef8f, 0x24358e0) = 0x2435910
pthread_getspecific(1, 0x23fc1f0, 0x520d00, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 39, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435928
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ef7d, 0x2435928) = 0x2435958
pthread_getspecific(1, 0x23fc1f0, 0x520cf0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 38, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435970
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ef65, 0x2435970) = 0x24359a0
pthread_getspecific(1, 0x23fc1f0, 0x520ce0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 37, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24359b8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ef54, 0x24359b8) = 0x24359e8
pthread_getspecific(1, 0x23fc1f0, 0x520cd0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 36, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435a00
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ef3a, 0x2435a00) = 0x2435a30
pthread_getspecific(1, 0x23fc1f0, 0x520cc0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 35, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435a48
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ef27, 0x2435a48) = 0x2435a78
pthread_getspecific(1, 0x23fc1f0, 0x520cb0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 34, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435a90
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ef15, 0x2435a90) = 0x2435ac0
pthread_getspecific(1, 0x23fc1f0, 0x520ca0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 33, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435ad8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ef03, 0x2435ad8) = 0x2435b08
pthread_getspecific(1, 0x23fc1f0, 0x520c90, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 32, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435b20
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eeef, 0x2435b20) = 0x2435b50
pthread_getspecific(1, 0x23fc1f0, 0x520c80, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 27, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435b68
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eedd, 0x2435b68) = 0x2435b98
pthread_getspecific(1, 0x23fc1f0, 0x520c70, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 26, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435bb0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eec3, 0x2435bb0) = 0x2435be0
pthread_getspecific(1, 0x23fc1f0, 0x520c60, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 25, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435bf8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eeb0, 0x2435bf8) = 0x2435c28
pthread_getspecific(1, 0x23fc1f0, 0x520c50, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 24, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435c40
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ee97, 0x2435c40) = 0x2435c70
pthread_getspecific(1, 0x23fc1f0, 0x520c40, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 23, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435c88
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ee85, 0x2435c88) = 0x2435cb8
pthread_getspecific(1, 0x23fc1f0, 0x520c30, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 22, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435cd0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ee6d, 0x2435cd0) = 0x2435d00
pthread_getspecific(1, 0x23fc1f0, 0x520c20, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 21, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435d18
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ee5c, 0x2435d18) = 0x2435d48
pthread_getspecific(1, 0x23fc1f0, 0x520c10, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 20, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435d60
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ee42, 0x2435d60) = 0x2435d90
pthread_getspecific(1, 0x23fc1f0, 0x520c00, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 19, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435da8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ee2f, 0x2435da8) = 0x2435dd8
pthread_getspecific(1, 0x23fc1f0, 0x520bf0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 18, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435df0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ee1d, 0x2435df0) = 0x2435e20
pthread_getspecific(1, 0x23fc1f0, 0x520be0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 17, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435e38
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ee0b, 0x2435e38) = 0x2435e68
pthread_getspecific(1, 0x23fc1f0, 0x520bd0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 16, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435e80
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51edf7, 0x2435e80) = 0x2435eb0
pthread_getspecific(1, 0x23fc1f0, 0x520bc0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 13, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435ec8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ede8, 0x2435ec8) = 0x2435ef8
pthread_getspecific(1, 0x23fc1f0, 0x520bb0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 12, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435f10
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51edde, 0x2435f10) = 0x2435f40
pthread_getspecific(1, 0x23fc1f0, 0x520ba0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 11, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435f58
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51edd4, 0x2435f58) = 0x2435f88
pthread_getspecific(1, 0x23fc1f0, 0x520b90, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 10, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435fa0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51edc2, 0x2435fa0) = 0x2435fd0
pthread_getspecific(1, 0x23fc1f0, 0x520b80, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 9, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2435fe8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51edb7, 0x2435fe8) = 0x2436018
pthread_getspecific(1, 0x23fc1f0, 0x520b70, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 8, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436030
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eda6, 0x2436030) = 0x2436060
pthread_getspecific(1, 0x23fc1f0, 0x520b60, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 7, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436078
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ed9c, 0x2436078) = 0x24360a8
pthread_getspecific(1, 0x23fc1f0, 0x520b50, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 6, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24360c0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ed8c, 0x24360c0) = 0x24360f0
pthread_getspecific(1, 0x23fc1f0, 0x520b40, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 5, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436108
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ed83, 0x2436108) = 0x2436138
pthread_getspecific(1, 0x23fc1f0, 0x520b30, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 4, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436150
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ed71, 0x2436150) = 0x2436180
pthread_getspecific(1, 0x23fc1f0, 0x520b20, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 3, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436198
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ed66, 0x2436198) = 0x24361c8
pthread_getspecific(1, 0x23fc1f0, 0x520b10, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 2, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24361e0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ed5c, 0x24361e0) = 0x2436210
pthread_getspecific(1, 0x23fc1f0, 0x520b00, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436228
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ed52, 0x2436228) = 0x2436258
pthread_getspecific(1, 0x23fc1f0, 0x520af0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436270
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ed46, 0x2436270) = 0x24362a0
pthread_getspecific(1, 0x23fc1f0, 0x520ae0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 3, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24362b8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ed38, 0x24362b8) = 0x24362e8
pthread_getspecific(1, 0x23fc1f0, 0x520ad0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 2, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436300
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ed2e, 0x2436300) = 0x2436330
pthread_getspecific(1, 0x23fc1f0, 0x520ac0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436348
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ed21, 0x2436348) = 0x2436378
pthread_getspecific(1, 0x23fc1f0, 0x520ab0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436390
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ed16, 0x2436390) = 0x24363c0
pthread_getspecific(1, 0x23fc1f0, 0x520aa0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 4, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24363d8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ed07, 0x24363d8) = 0x2436408
pthread_getspecific(1, 0x23fc1f0, 0x520a90, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 3, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436420
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ecf8, 0x2436420) = 0x2436450
pthread_getspecific(1, 0x23fc1f0, 0x520a80, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 2, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436468
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ece9, 0x2436468) = 0x2436498
pthread_getspecific(1, 0x23fc1f0, 0x520a70, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24364b0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ecd7, 0x24364b0) = 0x24364e0
pthread_getspecific(1, 0x23fc1f0, 0x520a60, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24364f8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ecc4, 0x24364f8) = 0x2436528
pthread_getspecific(1, 0x23fc1f0, 0x520a50, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1024, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436540
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ecb1, 0x2436540) = 0x2436570
pthread_getspecific(1, 0x23fc1f0, 0x520a40, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 512, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436588
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ec9c, 0x2436588) = 0x24365b8
pthread_getspecific(1, 0x23fc1f0, 0x520a30, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 256, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24365d0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ec88, 0x24365d0) = 0x2436600
pthread_getspecific(1, 0x23fc1f0, 0x520a20, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 128, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2436618
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ec7c, 0x2436618) = 0x243c560
pthread_getspecific(1, 0x23fc1f0, 0x520a10, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 64, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c578
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ec6f, 0x243c578) = 0x243c5a8
pthread_getspecific(1, 0x23fc1f0, 0x520a00, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 32, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c5c0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ec64, 0x243c5c0) = 0x243c5f0
pthread_getspecific(1, 0x23fc1f0, 0x5209f0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 4, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c608
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ec57, 0x243c608) = 0x243c638
pthread_getspecific(1, 0x23fc1f0, 0x5209e0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 2, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c650
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ec4a, 0x243c650) = 0x243c680
pthread_getspecific(1, 0x23fc1f0, 0x5209d0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c698
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ec3f, 0x243c698) = 0x243c6c8
pthread_getspecific(1, 0x23fc1f0, 0x5209c0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 34, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c6e0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ec31, 0x243c6e0) = 0x243c710
pthread_getspecific(1, 0x23fc1f0, 0x5209b0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 33, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c728
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ec23, 0x243c728) = 0x243c758
pthread_getspecific(1, 0x23fc1f0, 0x5209a0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 32, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c770
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ec14, 0x243c770) = 0x243c7a0
pthread_getspecific(1, 0x23fc1f0, 0x520990, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 31, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c7b8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ec04, 0x243c7b8) = 0x243c7e8
pthread_getspecific(1, 0x23fc1f0, 0x520980, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 30, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c800
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ebf3, 0x243c800) = 0x243c830
pthread_getspecific(1, 0x23fc1f0, 0x520970, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 29, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c848
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ebe4, 0x243c848) = 0x243c878
pthread_getspecific(1, 0x23fc1f0, 0x520960, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 28, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c890
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ebd5, 0x243c890) = 0x243c8c0
pthread_getspecific(1, 0x23fc1f0, 0x520950, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 27, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c8d8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ebc4, 0x243c8d8) = 0x243c908
pthread_getspecific(1, 0x23fc1f0, 0x520940, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 26, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c920
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ebb4, 0x243c920) = 0x243c950
pthread_getspecific(1, 0x23fc1f0, 0x520930, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 25, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c968
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eba6, 0x243c968) = 0x243c998
pthread_getspecific(1, 0x23fc1f0, 0x520920, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 24, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c9b0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eb98, 0x243c9b0) = 0x243c9e0
pthread_getspecific(1, 0x23fc1f0, 0x520910, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 23, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243c9f8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eb87, 0x243c9f8) = 0x243ca28
pthread_getspecific(1, 0x23fc1f0, 0x520900, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 22, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243ca40
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eb77, 0x243ca40) = 0x243ca70
pthread_getspecific(1, 0x23fc1f0, 0x5208f0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 21, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243ca88
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eb68, 0x243ca88) = 0x243cab8
pthread_getspecific(1, 0x23fc1f0, 0x5208e0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 20, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cad0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eb5d, 0x243cad0) = 0x243cb00
pthread_getspecific(1, 0x23fc1f0, 0x5208d0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 19, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cb18
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eb53, 0x243cb18) = 0x243cb48
pthread_getspecific(1, 0x23fc1f0, 0x5208c0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 18, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cb60
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eb47, 0x243cb60) = 0x243cb90
pthread_getspecific(1, 0x23fc1f0, 0x5208b0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 17, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cba8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eb39, 0x243cba8) = 0x243cbd8
pthread_getspecific(1, 0x23fc1f0, 0x5208a0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 16, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cbf0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eb2c, 0x243cbf0) = 0x243cc20
pthread_getspecific(1, 0x23fc1f0, 0x520890, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 15, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cc38
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eb1b, 0x243cc38) = 0x243cc68
pthread_getspecific(1, 0x23fc1f0, 0x520880, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 14, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cc80
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eb12, 0x243cc80) = 0x243ccb0
pthread_getspecific(1, 0x23fc1f0, 0x520870, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 13, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243ccc8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eb03, 0x243ccc8) = 0x243ccf8
pthread_getspecific(1, 0x23fc1f0, 0x520860, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 12, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cd10
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eb14, 0x243cd10) = 0x243cd40
pthread_getspecific(1, 0x23fc1f0, 0x520850, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 11, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cd58
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eaf6, 0x243cd58) = 0x243cd88
pthread_getspecific(1, 0x23fc1f0, 0x520840, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 10, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cda0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eaed, 0x243cda0) = 0x243cdd0
pthread_getspecific(1, 0x23fc1f0, 0x520830, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 9, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cde8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eae5, 0x243cde8) = 0x243ce18
pthread_getspecific(1, 0x23fc1f0, 0x520820, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 8, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243ce30
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ead9, 0x243ce30) = 0x243ce60
pthread_getspecific(1, 0x23fc1f0, 0x520810, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 7, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243ce78
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eacd, 0x243ce78) = 0x243cea8
pthread_getspecific(1, 0x23fc1f0, 0x520800, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 6, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cec0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eac0, 0x243cec0) = 0x243cef0
pthread_getspecific(1, 0x23fc1f0, 0x5207f0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 5, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cf08
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eab2, 0x243cf08) = 0x243cf38
pthread_getspecific(1, 0x23fc1f0, 0x5207e0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 4, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cf50
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51eaa6, 0x243cf50) = 0x243cf80
pthread_getspecific(1, 0x23fc1f0, 0x5207d0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 3, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cf98
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ea9b, 0x243cf98) = 0x243cfc8
pthread_getspecific(1, 0x23fc1f0, 0x5207c0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 2, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243cfe0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ea92, 0x243cfe0) = 0x243d010
pthread_getspecific(1, 0x23fc1f0, 0x5207b0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x1000000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d028
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ea7e, 0x243d028) = 0x243d058
pthread_getspecific(1, 0x23fc1f0, 0x5207a0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x800000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d070
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ea6b, 0x243d070) = 0x243d0a0
pthread_getspecific(1, 0x23fc1f0, 0x520790, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x400000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d0b8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ea58, 0x243d0b8) = 0x243d0e8
pthread_getspecific(1, 0x23fc1f0, 0x520780, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x200000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d100
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ea48, 0x243d100) = 0x243d130
pthread_getspecific(1, 0x23fc1f0, 0x520770, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x100000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d148
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ea2f, 0x243d148) = 0x243d178
pthread_getspecific(1, 0x23fc1f0, 0x520760, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x80000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d190
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ea18, 0x243d190) = 0x243d1c0
pthread_getspecific(1, 0x23fc1f0, 0x520750, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x40000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d1d8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51ea05, 0x243d1d8) = 0x243d208
pthread_getspecific(1, 0x23fc1f0, 0x520740, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x20000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d220
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e9f1, 0x243d220) = 0x243d250
pthread_getspecific(1, 0x23fc1f0, 0x520730, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x10000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d268
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e9dc, 0x243d268) = 0x243d298
pthread_getspecific(1, 0x23fc1f0, 0x520720, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x8000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d2b0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e9cf, 0x243d2b0) = 0x243d2e0
pthread_getspecific(1, 0x23fc1f0, 0x520710, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x4000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d2f8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e9bf, 0x243d2f8) = 0x243d328
pthread_getspecific(1, 0x23fc1f0, 0x520700, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 8192, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d340
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e9ae, 0x243d340) = 0x243d370
pthread_getspecific(1, 0x23fc1f0, 0x5206f0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 4096, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d388
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e99c, 0x243d388) = 0x243d3b8
pthread_getspecific(1, 0x23fc1f0, 0x5206e0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 2048, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d3d0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e98a, 0x243d3d0) = 0x243d400
pthread_getspecific(1, 0x23fc1f0, 0x5206d0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1024, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d418
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e978, 0x243d418) = 0x243d448
pthread_getspecific(1, 0x23fc1f0, 0x5206c0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 512, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d460
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e966, 0x243d460) = 0x243d490
pthread_getspecific(1, 0x23fc1f0, 0x5206b0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 256, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d4a8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e954, 0x243d4a8) = 0x243d4d8
pthread_getspecific(1, 0x23fc1f0, 0x5206a0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 128, 0x7f6f35737a60, 0x7f6f343002e0) = 0x243d4f0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e93e, 0x243d4f0) = 0x24437f8
pthread_getspecific(1, 0x23fc1f0, 0x520690, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 64, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443810
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e92c, 0x2443810) = 0x2443840
pthread_getspecific(1, 0x23fc1f0, 0x520680, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 32, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443858
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e91c, 0x2443858) = 0x2443888
pthread_getspecific(1, 0x23fc1f0, 0x520670, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 16, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24438a0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e90c, 0x24438a0) = 0x24438d0
pthread_getspecific(1, 0x23fc1f0, 0x520660, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 8, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24438e8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e8fa, 0x24438e8) = 0x2443918
pthread_getspecific(1, 0x23fc1f0, 0x520650, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 4, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443930
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e8ea, 0x2443930) = 0x2443960
pthread_getspecific(1, 0x23fc1f0, 0x520640, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 2, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443978
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e8db, 0x2443978) = 0x24439a8
pthread_getspecific(1, 0x23fc1f0, 0x520630, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24439c0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e8ce, 0x24439c0) = 0x24439f0
pthread_getspecific(1, 0x23fc1f0, 0x520620, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443a08
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e8c2, 0x2443a08) = 0x2443a38
pthread_getspecific(1, 0x23fc1f0, 0x520610, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443a50
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e8b4, 0x2443a50) = 0x2443a80
pthread_getspecific(1, 0x23fc1f0, 0x520600, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443a98
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e8a7, 0x2443a98) = 0x2443ac8
pthread_getspecific(1, 0x23fc1f0, 0x5205f0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443ae0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e89e, 0x2443ae0) = 0x2443b10
pthread_getspecific(1, 0x23fc1f0, 0x5205e0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x8000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443b28
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e892, 0x2443b28) = 0x2443b58
pthread_getspecific(1, 0x23fc1f0, 0x5205d0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 4096, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443b70
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e886, 0x2443b70) = 0x2443ba0
pthread_getspecific(1, 0x23fc1f0, 0x5205c0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 2048, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443bb8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e87a, 0x2443bb8) = 0x2443be8
pthread_getspecific(1, 0x23fc1f0, 0x5205b0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1024, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443c00
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e86e, 0x2443c00) = 0x2443c30
pthread_getspecific(1, 0x23fc1f0, 0x5205a0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 512, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443c48
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e862, 0x2443c48) = 0x2443c78
pthread_getspecific(1, 0x23fc1f0, 0x520590, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 256, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443c90
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e856, 0x2443c90) = 0x2443cc0
pthread_getspecific(1, 0x23fc1f0, 0x520580, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 128, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443cd8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e84d, 0x2443cd8) = 0x2443d08
pthread_getspecific(1, 0x23fc1f0, 0x520570, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 64, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443d20
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e844, 0x2443d20) = 0x2443d50
pthread_getspecific(1, 0x23fc1f0, 0x520560, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 32, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443d68
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e83b, 0x2443d68) = 0x2443d98
pthread_getspecific(1, 0x23fc1f0, 0x520550, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 16, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443db0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e832, 0x2443db0) = 0x2443de0
pthread_getspecific(1, 0x23fc1f0, 0x520540, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 8, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443df8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e829, 0x2443df8) = 0x2443e28
pthread_getspecific(1, 0x23fc1f0, 0x520530, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 4, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443e40
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e81d, 0x2443e40) = 0x2443e70
pthread_getspecific(1, 0x23fc1f0, 0x520520, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 2, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443e88
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51d814, 0x2443e88) = 0x2443eb8
pthread_getspecific(1, 0x23fc1f0, 0x520510, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443ed0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e813, 0x2443ed0) = 0x2443f00
pthread_getspecific(1, 0x23fc1f0, 0x520500, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443f18
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e807, 0x2443f18) = 0x2443f48
pthread_getspecific(1, 0x23fc1f0, 0x5204f0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 276, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443f60
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e7fa, 0x2443f60) = 0x2443f90
pthread_getspecific(1, 0x23fc1f0, 0x5204e0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 274, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443fa8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e7ef, 0x2443fa8) = 0x2443fd8
pthread_getspecific(1, 0x23fc1f0, 0x5204d0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 262, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2443ff0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e7e2, 0x2443ff0) = 0x2444020
pthread_getspecific(1, 0x23fc1f0, 0x5204c0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 261, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444038
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e7d1, 0x2444038) = 0x2444068
pthread_getspecific(1, 0x23fc1f0, 0x5204b0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 260, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444080
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e7c0, 0x2444080) = 0x24440b0
pthread_getspecific(1, 0x23fc1f0, 0x5204a0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 273, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24440c8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e7b5, 0x24440c8) = 0x24440f8
pthread_getspecific(1, 0x23fc1f0, 0x520490, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444110
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e7ac, 0x2444110) = 0x2444140
pthread_getspecific(1, 0x23fc1f0, 0x520480, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444158
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e7a3, 0x2444158) = 0x2444188
pthread_getspecific(1, 0x23fc1f0, 0x520470, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x80000000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24441a0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e79a, 0x24441a0) = 0x24441d0
pthread_getspecific(1, 0x23fc1f0, 0x520460, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x40000000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24441e8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e792, 0x24441e8) = 0x2444218
pthread_getspecific(1, 0x23fc1f0, 0x520450, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x20000000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444230
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e789, 0x2444230) = 0x2444260
pthread_getspecific(1, 0x23fc1f0, 0x520440, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x10000000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444278
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e77f, 0x2444278) = 0x24442a8
pthread_getspecific(1, 0x23fc1f0, 0x520430, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x8000000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24442c0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e777, 0x24442c0) = 0x24442f0
pthread_getspecific(1, 0x23fc1f0, 0x520420, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x400000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444308
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e770, 0x2444308) = 0x2444338
pthread_getspecific(1, 0x23fc1f0, 0x520410, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x80000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444350
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e766, 0x2444350) = 0x2444380
pthread_getspecific(1, 0x23fc1f0, 0x520400, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0xf83c0000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444398
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e75a, 0x2444398) = 0x24443c8
pthread_getspecific(1, 0x23fc1f0, 0x5203f0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0xf8000000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24443e0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e74a, 0x24443e0) = 0x2444410
pthread_getspecific(1, 0x23fc1f0, 0x5203e0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x3c0000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444428
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e73e, 0x2444428) = 0x2444458
pthread_getspecific(1, 0x23fc1f0, 0x5203d0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 18, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444470
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e731, 0x2444470) = 0x24444a0
pthread_getspecific(1, 0x23fc1f0, 0x5203c0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 7, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24444b8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e724, 0x24444b8) = 0x24444e8
pthread_getspecific(1, 0x23fc1f0, 0x5203b0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x40000, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444500
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e719, 0x2444500) = 0x2444530
pthread_getspecific(1, 0x23fc1f0, 0x5203a0, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0x3fe00, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444548
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e70f, 0x2444548) = 0x2444578
pthread_getspecific(1, 0x23fc1f0, 0x520390, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 9, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444590
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e704, 0x2444590) = 0x24445c0
pthread_getspecific(1, 0x23fc1f0, 0x520380, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 511, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24445d8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e6fa, 0x24445d8) = 0x2444608
pthread_getspecific(1, 0x23fc1f0, 0x520370, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444620
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e6ef, 0x2444620) = 0x2444650
pthread_getspecific(1, 0x23fc1f0, 0x520360, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 9, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444668
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e6e4, 0x2444668) = 0x2444698
pthread_getspecific(1, 0x23fc1f0, 0x520350, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1037, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24446b0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e6d5, 0x24446b0) = 0x24446e0
pthread_getspecific(1, 0x23fc1f0, 0x520340, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24446f8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e6c6, 0x24446f8) = 0x2444728
pthread_getspecific(1, 0x23fc1f0, 0x520330, 0x7f6f343f2c50) = 0x23f46a0
Perl_newSViv(0x23f46a0, 352, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2444740
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e6b8, 0x2444740) = 0x2444770
pthread_getspecific(1, 0x23fc1f0, 0x520320, 0x7f6f343f2c50) = 0x23f46a0
Perl_gv_stashpv(0x23f46a0, 0x51e25d, 1, 0x7f6f343002e0) = 0x2411f38
pthread_getspecific(1, 0, 0x24410c0, 0x2413bc8) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x51d3f0, 0, 0x7f6f343002e0) = 0x2444788
pthread_getspecific(1, 0x51d3f0, 0x726568637461773a, 0x520310) = 0x23f46a0
Perl_newSViv(0x23f46a0, 2, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24447a0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e6af, 0x24447a0) = 0x244c448
pthread_getspecific(1, 0x23fc1f0, 45, 0x520300) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x244c460
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e6a7, 0x244c460) = 0x244c490
pthread_getspecific(1, 0x23fc1f0, 45, 0x5202f0) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x244c4a8
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_newCONSTSUB(0x23f46a0, 0x2411f38, 0x51e69f, 0x244c4a8) = 0x244c4d8
pthread_getspecific(1, 0x23fc1f0, 45, 0x5202e0) = 0x23f46a0
Perl_get_av(0x23f46a0, 0x51e4f1, 1, 0x7f6f343002e0) = 0x244c508
pthread_getspecific(1, 0x244c4f0, 0x244c508, 73) = 0x23f46a0
Perl_av_push(0x23f46a0, 0x244c508, 0x2444788, 0x7f6f343002e0) = 0x244d7b0
pthread_getspecific(1, 64, 1, 3) = 0x23f46a0
Perl_get_av(0x23f46a0, 0x51e503, 1, 0x7f6f343002e0) = 0x244c5f8
pthread_getspecific(1, 0x244c5e0, 0x244c5f8, 73) = 0x23f46a0
Perl_av_push(0x23f46a0, 0x244c5f8, 0x2444788, 0x7f6f343002e0) = 0x244d9f0
pthread_getspecific(1, 64, 1, 3) = 0x23f46a0
Perl_get_av(0x23f46a0, 0x51e513, 1, 0x7f6f343002e0) = 0x244c688
pthread_getspecific(1, 0x244c670, 0x244c688, 73) = 0x23f46a0
Perl_av_push(0x23f46a0, 0x244c688, 0x2444788, 0x7f6f343002e0) = 0x244db80
pthread_getspecific(1, 64, 1, 3) = 0x23f46a0
Perl_get_av(0x23f46a0, 0x51e522, 1, 0x7f6f343002e0) = 0x244c718
pthread_getspecific(1, 0x244c700, 0x244c718, 73) = 0x23f46a0
Perl_av_push(0x23f46a0, 0x244c718, 0x2444788, 0x7f6f343002e0) = 0x244dcc0
pthread_getspecific(1, 64, 1, 3) = 0x23f46a0
pthread_getspecific(1, 1, 4, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
boot_DynaLoader(0x23f46a0, 0x2411ff8, 0xffffff80, 286) = 0x23f34b8
<... perl_parse resumed> ) = 0
perl_run(0x23f46a0, 1, 0, 0x23f46a0) = 0
strlen("en_US.UTF-8") = 11
memcmp(0x73ab80, 0x73ac00, 12, 2944) = 101
__memcpy_chk(0x73ac00, 0x73ab80, 12, 128) = 0x73ac00
setlocale(LC_CTYPE, "en_US.UTF-8") = "en_US.UTF-8"
pthread_getspecific(1, 0x51d111, 1, 0) = 0x23f46a0
Perl_newSV_type(0x23f46a0, 12, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f7348
pthread_getspecific(1, 0, 0x2000000c, 0x23fc940) = 0x23f46a0
Perl_sv_magic(0x23f46a0, 0x23f7348, 0, 126) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 0, 0x2080000c) = 0x23f46a0
Perl_gv_stashpv(0x23f46a0, 0x51d111, 1, 0x7f6f343002e0) = 0x241b9b8
pthread_getspecific(1, 0, 0x2425b20, 0x241e908) = 0x23f46a0
Perl_newRV_noinc(0x23f46a0, 0x23f7348, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f7510
pthread_getspecific(1, 2, 2, 0x7f6f343ceda0) = 0x23f46a0
Perl_sv_bless(0x23f46a0, 0x23f7510, 0x241b9b8, 0x7f6f343002e0) = 0x23f7510
pthread_getspecific(1, 0x23f7510, 0x2090000c, 0x7f6f343002e0) = 0x23f46a0
Perl_newSV_type(0x23f46a0, 11, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2412118
pthread_getspecific(1, 0, 40, 0x23f90c0) = 0x23f46a0
Perl_newRV_noinc(0x23f46a0, 0x2412118, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2412130
pthread_getspecific(1, 2, 2, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x23f7348, 0x51d399, 8) = 0x24088a0
pthread_getspecific(1, 0x23fc940, 7, 0xc5c9225c) = 0x23f46a0
Perl_newSV_type(0x23f46a0, 11, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2412160
pthread_getspecific(1, 0, 40, 0x23f9110) = 0x23f46a0
Perl_newRV_noinc(0x23f46a0, 0x2412160, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2412148
pthread_getspecific(1, 2, 2, 0x7f6f343ceda0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x23f7348, 0x51cfd0, 10) = 0x2408888
pthread_getspecific(1, 0x23de430, 0x7fff9e06dcf8, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_push_scope(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f1c40
pthread_getspecific(1, 1, 1, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_save_int(0x23f46a0, 0x23f46f4, 0x7f6f35737a60, 0x7f6f343002e0) = 5
pthread_getspecific(1, 0x23f46f4, 2, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_2mortal(0x23f46a0, 0x23f7510, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f7510
pthread_getspecific(1, 0x23f7510, 0x244fd60, 0x7f6f343002e0) = 0x23f46a0
Perl_newSViv(0x23f46a0, 0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24121f0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_sv_2mortal(0x23f46a0, 0x24121f0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24121f0
pthread_getspecific(1, 0, 32, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_call_pv(0x23f46a0, 0x51e5e6, 11, 0x7f6f343002e0 <unfinished ...>
pthread_getspecific(1, 0x241c660, 0x23f1af8, 7) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1afc, 0x23f1af8) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x23f34b0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x2412280, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
strcmp("perl_lib", "iconfile") = 7
strcmp("perl_lib", "iso14755_52") = 7
strcmp("perl_lib", "iso14755") = 7
strcmp("perl_lib", "perl_lib") = 0
pthread_getspecific(1, 0x51e68d, 8, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x23f34b0) = 0x23f46a0
pthread_getspecific(1, 0x241c660, 0x23f1b08, 9) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1b0c, 0x23f1b08) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x23f34c8) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x2412268, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
strcmp("perl_ext_1", "iconfile") = 7
strcmp("perl_ext_1", "iso14755_52") = 7
strcmp("perl_ext_1", "iso14755") = 7
strcmp("perl_ext_1", "perl_lib") = -7
strcmp("perl_ext_1", "perl_ext_2") = -1
strcmp("perl_ext_1", "perl_ext_1") = 0
pthread_getspecific(1, 0x51e680, 1, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_newSVpv(0x23f46a0, 0x463493, 0, 0x7f6f343002e0) = 0x24128b0
pthread_getspecific(1, 0x463493, 0x746c7561, 0x61666564) = 0x23f46a0
Perl_sv_2mortal(0x23f46a0, 0x24128b0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24128b0
pthread_getspecific(1, 0x24128b0, 0x244fd60, 0x23f34c8) = 0x23f46a0
pthread_getspecific(1, 0x241c660, 0x23f1b08, 9) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1b0c, 0x23f1b08) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x23f34c8) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x2412280, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
strcmp("perl_ext_2", "iconfile") = 7
strcmp("perl_ext_2", "iso14755_52") = 7
strcmp("perl_ext_2", "iso14755") = 7
strcmp("perl_ext_2", "perl_lib") = -7
strcmp("perl_ext_2", "perl_ext_2") = 0
pthread_getspecific(1, 0x51e682, 10, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x23f34c8) = 0x23f46a0
pthread_getspecific(1, 0x241ba60, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x23f34e0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x244ee38, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0, 1, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x241ba60, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x23f34e0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x244ee38, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0, 1, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x241ba60, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8ed0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x25baaf0, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0, 2, 1) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x241ba60, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8ed0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x25baaf0, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0, 2, 1) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x241ba60, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8ed0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x2648d90, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0, 3, 2) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x241ba60, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8ed0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x2648d90, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0, 1, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x241ba60, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8ed0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x2683718, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0, 4, 3) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x241ba60, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8ed0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x2683718, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0, 1, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x241ba60, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8ed0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x2683718, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0, 2, 1) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x241ba60, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8ed0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x26a9ee8, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0, 2, 1) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x241ba60, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8ed0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x26a9ee8, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 256, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0, 3, 2) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x241c660, 0x23f1af0, 6) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8ea8) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x2412910, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
strcmp("perl_eval", "iconfile") = 7
strcmp("perl_eval", "iso14755_52") = 7
strcmp("perl_eval", "iso14755") = 7
strcmp("perl_eval", "perl_lib") = -7
strcmp("perl_eval", "perl_ext_2") = -2
strcmp("perl_eval", "perl_ext_1") = -2
strcmp("perl_eval", "perl_eval") = 0
pthread_getspecific(1, 0x51e66d, 9, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8ea8) = 0x23f46a0
pthread_getspecific(1, 0x241c660, 0x23f1af0, 11) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8eb8) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x26aabc0, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
strcmp("cutchars", "iconfile") = -6
strcmp("cutchars", "iso14755_52") = -6
strcmp("cutchars", "iso14755") = -6
strcmp("cutchars", "perl_lib") = -13
strcmp("cutchars", "perl_ext_2") = -13
strcmp("cutchars", "perl_ext_1") = -13
strcmp("cutchars", "perl_eval") = -13
strcmp("cutchars", "fade") = -3
strcmp("cutchars", "secondaryScroll") = -16
strcmp("cutchars", "secondaryScreen") = -16
strcmp("cutchars", "pastableTabs") = -13
strcmp("cutchars", "imFont") = -6
strcmp("cutchars", "imLocale") = -6
strcmp("cutchars", "pointerBlankDelay") = -13
strcmp("cutchars", "pointerBlank") = -13
strcmp("cutchars", "insecure") = -6
strcmp("cutchars", "tripleclickwords") = -17
strcmp("cutchars", "answerbackstring") = 2
strcmp("cutchars", "modifier") = -10
strcmp("cutchars", "cutchars") = 0
pthread_getspecific(1, 0x46602b, 8, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8eb8) = 0x23f46a0
pthread_getspecific(1, 0x241c690, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8eb8) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x2683718, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 1024, 0x7f6f343002e0) = 0x23f46a0
XrmGetDatabase(0x23e4930, 0x242cce0, 0x7f6f35737a60, 0x7f6f343002e0) = 0
__snprintf_chk(0x7fff9e06d5f0, 512, 1, 512) = 25
XrmGetResource(0, 0x7fff9e06d5f0, 0x7fff9e06d5f0, 0x7fff9e06d5d8) = 0
__snprintf_chk(0x7fff9e06d5f0, 512, 1, 512) = 51
XrmGetResource(0, 0x7fff9e06d5f0, 0x7fff9e06d5f0, 0x7fff9e06d5d8) = 0
__snprintf_chk(0x7fff9e06d5f0, 512, 1, 512) = 25
XrmGetResource(0, 0x7fff9e06d5f0, 0x7fff9e06d5f0, 0x7fff9e06d5d8) = 0
__snprintf_chk(0x7fff9e06d5f0, 512, 1, 512) = 24
XrmGetResource(0, 0x7fff9e06d5f0, 0x7fff9e06d5f0, 0x7fff9e06d5d8) = 0
pthread_getspecific(1, 0x7fff9e06d250, 0, 0x7fff9e06d24c) = 0x23f46a0
Perl_sv_setpv(0x23f46a0, 0x252c040, 0, 0x7f6f343002e0) = 0x20000
pthread_getspecific(1, 0x252c040, 0, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x241c690, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8eb8) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x2648d90, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 1024, 0x7f6f343002e0) = 0x23f46a0
XrmGetDatabase(0x23e4930, 0x26775c0, 0x7f6f35737a60, 0x7f6f343002e0) = 0
__snprintf_chk(0x7fff9e06d5f0, 512, 1, 512) = 27
XrmGetResource(0, 0x7fff9e06d5f0, 0x7fff9e06d5f0, 0x7fff9e06d5d8) = 0
__snprintf_chk(0x7fff9e06d5f0, 512, 1, 512) = 53
XrmGetResource(0, 0x7fff9e06d5f0, 0x7fff9e06d5f0, 0x7fff9e06d5d8) = 0
__snprintf_chk(0x7fff9e06d5f0, 512, 1, 512) = 27
XrmGetResource(0, 0x7fff9e06d5f0, 0x7fff9e06d5f0, 0x7fff9e06d5d8) = 0
__snprintf_chk(0x7fff9e06d5f0, 512, 1, 512) = 26
XrmGetResource(0, 0x7fff9e06d5f0, 0x7fff9e06d5f0, 0x7fff9e06d5d8) = 0
pthread_getspecific(1, 0x7fff9e06d250, 0, 0x7fff9e06d24c) = 0x23f46a0
Perl_sv_setpv(0x23f46a0, 0x252c040, 0, 0x7f6f343002e0) = 0x20000
pthread_getspecific(1, 0x252c040, 0, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x2425f28, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8eb8) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x2648d90, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 1024, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 1024, 0x7f6f343002e0) = 0x23f46a0
strrchr("M-s", '-') = "-s"
strncmp("M-s", "ISOLevel3", 9) = 4
strncmp("M-s", "AppKeypad", 9) = 12
strncmp("M-s", "Control", 7) = 10
strncmp("M-s", "NumLock", 7) = -1
strncmp("M-s", "Shift", 5) = -6
strncmp("M-s", "Meta", 4) = -56
strncmp("M-s", "Lock", 4) = 1
strncmp("M-s", "Mod1", 4) = -66
strncmp("M-s", "Mod2", 4) = -66
strncmp("M-s", "Mod3", 4) = -66
strncmp("M-s", "Mod4", 4) = -66
strncmp("M-s", "Mod5", 4) = -66
strncmp("M-s", "I", 1) = 4
strncmp("M-s", "K", 1) = 2
strncmp("M-s", "C", 1) = 10
strncmp("M-s", "N", 1) = -1
strncmp("M-s", "S", 1) = -6
strncmp("M-s", "M", 1) = 0
XStringToKeysym(0x242cce2, 0x51d4bd, 1, 77) = 115
strlen("perl:searchable-scrollback:start"...) = 32
malloc(132) = 0x2677fd0
mbstowcs(0x2677fd0, 0x2419ea0, 33, 0x7f6f340e2620) = 32
wcslen(0x2677fd0, 0, 0, 0x7fff9e06d701) = 32
wcslen(0x2677fd0, 0xffffffff, 256, 0x2677fd0) = 32
malloc(129) = 0x26da4b0
realloc(0x26da4b0, 33) = 0x26da4b0
malloc(24) = 0x26b5e60
free(0x2677fd0) = <void>
malloc(8) = 0x2697bc0
free(0x23e21b0) = <void>
pthread_getspecific(1, 1, 0x7f6f340e2678, 0x23e21b0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_newmortal(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x2696e20
pthread_getspecific(1, 5, 6, 0x261a7b0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
<... Perl_call_pv resumed> ) = 1
pthread_getspecific(1, 0x246d690, 0x3ffffffffffffff, 0x7f6f343f2c98) = 0x23f46a0
pthread_getspecific(1, 1, 0, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_free_tmps(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = -1
pthread_getspecific(1, 0x23f7510, 1, 0x261a7b0) = 0x23f46a0
Perl_pop_scope(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0
pthread_getspecific(1, 0x246d690, 0x3ffffffffffffff, 0x7f6f343f2c98) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
XrmGetDatabase(0x23e4930, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0
XrmStringToQuark(0x23e31e0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 14
XrmStringToQuark(0x51daf4, 14, 0, 0xffffffff) = 126
XrmStringToQuark(0x4634f3, 126, 0, 0xffffffff) = 17
XrmStringToQuark(0x51d641, 17, 0, 0xffffffff) = 131
XrmEnumerateDatabase(0, 0x7fff9e06db30, 0x7fff9e06db40, 1) = 0
XrmStringToQuark(0x4634f4, 0x7fff9e06db30, 0x7fff9e06db40, 1) = 18
XrmEnumerateDatabase(0, 0x7fff9e06db30, 0x7fff9e06db40, 1) = 0
strrchr("exit", '/') = nil
XCreateFontCursor(0x23e4930, 68, 0x23e3240, 27) = 0x1800004
malloc(8) = 0x2677fd0
free(0x2697bc0) = <void>
malloc(40) = 0x2677ff0
sscanf(0x463538, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/00/00") = 12
XParseColor(0x23e4930, 32, 0x463538, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463545, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/ff/ff") = 12
XParseColor(0x23e4930, 32, 0x463545, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463538, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/00/00") = 12
XParseColor(0x23e4930, 32, 0x463538, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463552, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:cd/00/00") = 12
XParseColor(0x23e4930, 32, 0x463552, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46355f, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/cd/00") = 12
XParseColor(0x23e4930, 32, 0x46355f, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46356c, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:cd/cd/00") = 12
XParseColor(0x23e4930, 32, 0x46356c, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463579, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/00/cd") = 12
XParseColor(0x23e4930, 32, 0x463579, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463586, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:cd/00/cd") = 12
XParseColor(0x23e4930, 32, 0x463586, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463593, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/cd/cd") = 12
XParseColor(0x23e4930, 32, 0x463593, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4635a0, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:e5/e5/e5") = 12
XParseColor(0x23e4930, 32, 0x4635a0, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4635ad, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:4d/4d/4d") = 12
XParseColor(0x23e4930, 32, 0x4635ad, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4635ba, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/00/00") = 12
XParseColor(0x23e4930, 32, 0x4635ba, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4635c7, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/ff/00") = 12
XParseColor(0x23e4930, 32, 0x4635c7, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4635d4, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/ff/00") = 12
XParseColor(0x23e4930, 32, 0x4635d4, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4635e1, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/00/ff") = 12
XParseColor(0x23e4930, 32, 0x4635e1, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4635ee, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/00/ff") = 12
XParseColor(0x23e4930, 32, 0x4635ee, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4635fb, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/ff/ff") = 12
XParseColor(0x23e4930, 32, 0x4635fb, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463545, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/ff/ff") = 12
XParseColor(0x23e4930, 32, 0x463545, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463538, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/00/00") = 12
XParseColor(0x23e4930, 32, 0x463538, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463608, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/00/5f") = 12
XParseColor(0x23e4930, 32, 0x463608, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463615, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/00/87") = 12
XParseColor(0x23e4930, 32, 0x463615, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463622, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/00/af") = 12
XParseColor(0x23e4930, 32, 0x463622, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46362f, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/00/d7") = 12
XParseColor(0x23e4930, 32, 0x46362f, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4635e1, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/00/ff") = 12
XParseColor(0x23e4930, 32, 0x4635e1, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46363c, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/5f/00") = 12
XParseColor(0x23e4930, 32, 0x46363c, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463649, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/5f/5f") = 12
XParseColor(0x23e4930, 32, 0x463649, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463656, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/5f/87") = 12
XParseColor(0x23e4930, 32, 0x463656, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463663, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/5f/af") = 12
XParseColor(0x23e4930, 32, 0x463663, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463670, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/5f/d7") = 12
XParseColor(0x23e4930, 32, 0x463670, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46367d, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/5f/ff") = 12
XParseColor(0x23e4930, 32, 0x46367d, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46368a, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/87/00") = 12
XParseColor(0x23e4930, 32, 0x46368a, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463697, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/87/5f") = 12
XParseColor(0x23e4930, 32, 0x463697, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4636a4, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/87/87") = 12
XParseColor(0x23e4930, 32, 0x4636a4, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4636b1, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/87/af") = 12
XParseColor(0x23e4930, 32, 0x4636b1, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4636be, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/87/d7") = 12
XParseColor(0x23e4930, 32, 0x4636be, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4636cb, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/87/ff") = 12
XParseColor(0x23e4930, 32, 0x4636cb, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4636d8, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/af/00") = 12
XParseColor(0x23e4930, 32, 0x4636d8, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4636e5, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/af/5f") = 12
XParseColor(0x23e4930, 32, 0x4636e5, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4636f2, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/af/87") = 12
XParseColor(0x23e4930, 32, 0x4636f2, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4636ff, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/af/af") = 12
XParseColor(0x23e4930, 32, 0x4636ff, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46370c, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/af/d7") = 12
XParseColor(0x23e4930, 32, 0x46370c, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463719, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/af/ff") = 12
XParseColor(0x23e4930, 32, 0x463719, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463726, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/d7/00") = 12
XParseColor(0x23e4930, 32, 0x463726, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463733, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/d7/5f") = 12
XParseColor(0x23e4930, 32, 0x463733, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463740, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/d7/87") = 12
XParseColor(0x23e4930, 32, 0x463740, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46374d, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/d7/af") = 12
XParseColor(0x23e4930, 32, 0x46374d, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46375a, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/d7/d7") = 12
XParseColor(0x23e4930, 32, 0x46375a, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463767, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/d7/ff") = 12
XParseColor(0x23e4930, 32, 0x463767, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4635c7, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/ff/00") = 12
XParseColor(0x23e4930, 32, 0x4635c7, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463774, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/ff/5f") = 12
XParseColor(0x23e4930, 32, 0x463774, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463781, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/ff/87") = 12
XParseColor(0x23e4930, 32, 0x463781, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46378e, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/ff/af") = 12
XParseColor(0x23e4930, 32, 0x46378e, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46379b, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/ff/d7") = 12
XParseColor(0x23e4930, 32, 0x46379b, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4635fb, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/ff/ff") = 12
XParseColor(0x23e4930, 32, 0x4635fb, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4637a8, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/00/00") = 12
XParseColor(0x23e4930, 32, 0x4637a8, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4637b5, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/00/5f") = 12
XParseColor(0x23e4930, 32, 0x4637b5, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4637c2, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/00/87") = 12
XParseColor(0x23e4930, 32, 0x4637c2, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4637cf, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/00/af") = 12
XParseColor(0x23e4930, 32, 0x4637cf, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4637dc, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/00/d7") = 12
XParseColor(0x23e4930, 32, 0x4637dc, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4637e9, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/00/ff") = 12
XParseColor(0x23e4930, 32, 0x4637e9, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4637f6, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/5f/00") = 12
XParseColor(0x23e4930, 32, 0x4637f6, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463803, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/5f/5f") = 12
XParseColor(0x23e4930, 32, 0x463803, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463810, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/5f/87") = 12
XParseColor(0x23e4930, 32, 0x463810, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46381d, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/5f/af") = 12
XParseColor(0x23e4930, 32, 0x46381d, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46382a, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/5f/d7") = 12
XParseColor(0x23e4930, 32, 0x46382a, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463837, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/5f/ff") = 12
XParseColor(0x23e4930, 32, 0x463837, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463844, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/87/00") = 12
XParseColor(0x23e4930, 32, 0x463844, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463851, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/87/5f") = 12
XParseColor(0x23e4930, 32, 0x463851, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46385e, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/87/87") = 12
XParseColor(0x23e4930, 32, 0x46385e, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46386b, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/87/af") = 12
XParseColor(0x23e4930, 32, 0x46386b, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463878, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/87/d7") = 12
XParseColor(0x23e4930, 32, 0x463878, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463885, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/87/ff") = 12
XParseColor(0x23e4930, 32, 0x463885, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463892, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/af/00") = 12
XParseColor(0x23e4930, 32, 0x463892, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46389f, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/af/5f") = 12
XParseColor(0x23e4930, 32, 0x46389f, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4638ac, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/af/87") = 12
XParseColor(0x23e4930, 32, 0x4638ac, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4638b9, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/af/af") = 12
XParseColor(0x23e4930, 32, 0x4638b9, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4638c6, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/af/d7") = 12
XParseColor(0x23e4930, 32, 0x4638c6, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4638d3, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/af/ff") = 12
XParseColor(0x23e4930, 32, 0x4638d3, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4638e0, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/d7/00") = 12
XParseColor(0x23e4930, 32, 0x4638e0, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4638ed, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/d7/5f") = 12
XParseColor(0x23e4930, 32, 0x4638ed, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4638fa, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/d7/87") = 12
XParseColor(0x23e4930, 32, 0x4638fa, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463907, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/d7/af") = 12
XParseColor(0x23e4930, 32, 0x463907, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463914, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/d7/d7") = 12
XParseColor(0x23e4930, 32, 0x463914, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463921, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/d7/ff") = 12
XParseColor(0x23e4930, 32, 0x463921, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46392e, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/ff/00") = 12
XParseColor(0x23e4930, 32, 0x46392e, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46393b, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/ff/5f") = 12
XParseColor(0x23e4930, 32, 0x46393b, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463948, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/ff/87") = 12
XParseColor(0x23e4930, 32, 0x463948, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463955, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/ff/af") = 12
XParseColor(0x23e4930, 32, 0x463955, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463962, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/ff/d7") = 12
XParseColor(0x23e4930, 32, 0x463962, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46396f, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:5f/ff/ff") = 12
XParseColor(0x23e4930, 32, 0x46396f, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46397c, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/00/00") = 12
XParseColor(0x23e4930, 32, 0x46397c, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463989, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/00/5f") = 12
XParseColor(0x23e4930, 32, 0x463989, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463996, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/00/87") = 12
XParseColor(0x23e4930, 32, 0x463996, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4639a3, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/00/af") = 12
XParseColor(0x23e4930, 32, 0x4639a3, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4639b0, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/00/d7") = 12
XParseColor(0x23e4930, 32, 0x4639b0, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4639bd, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/00/ff") = 12
XParseColor(0x23e4930, 32, 0x4639bd, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4639ca, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/5f/00") = 12
XParseColor(0x23e4930, 32, 0x4639ca, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4639d7, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/5f/5f") = 12
XParseColor(0x23e4930, 32, 0x4639d7, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4639e4, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/5f/87") = 12
XParseColor(0x23e4930, 32, 0x4639e4, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4639f1, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/5f/af") = 12
XParseColor(0x23e4930, 32, 0x4639f1, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4639fe, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/5f/d7") = 12
XParseColor(0x23e4930, 32, 0x4639fe, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463a0b, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/5f/ff") = 12
XParseColor(0x23e4930, 32, 0x463a0b, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463a18, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/87/00") = 12
XParseColor(0x23e4930, 32, 0x463a18, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463a25, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/87/5f") = 12
XParseColor(0x23e4930, 32, 0x463a25, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463a32, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/87/87") = 12
XParseColor(0x23e4930, 32, 0x463a32, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463a3f, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/87/af") = 12
XParseColor(0x23e4930, 32, 0x463a3f, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463a4c, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/87/d7") = 12
XParseColor(0x23e4930, 32, 0x463a4c, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463a59, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/87/ff") = 12
XParseColor(0x23e4930, 32, 0x463a59, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463a66, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/af/00") = 12
XParseColor(0x23e4930, 32, 0x463a66, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463a73, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/af/5f") = 12
XParseColor(0x23e4930, 32, 0x463a73, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463a80, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/af/87") = 12
XParseColor(0x23e4930, 32, 0x463a80, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463a8d, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/af/af") = 12
XParseColor(0x23e4930, 32, 0x463a8d, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463a9a, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/af/d7") = 12
XParseColor(0x23e4930, 32, 0x463a9a, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463aa7, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/af/ff") = 12
XParseColor(0x23e4930, 32, 0x463aa7, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463ab4, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/d7/00") = 12
XParseColor(0x23e4930, 32, 0x463ab4, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463ac1, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/d7/5f") = 12
XParseColor(0x23e4930, 32, 0x463ac1, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463ace, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/d7/87") = 12
XParseColor(0x23e4930, 32, 0x463ace, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463adb, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/d7/af") = 12
XParseColor(0x23e4930, 32, 0x463adb, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463ae8, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/d7/d7") = 12
XParseColor(0x23e4930, 32, 0x463ae8, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463af5, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/d7/ff") = 12
XParseColor(0x23e4930, 32, 0x463af5, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463b02, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/ff/00") = 12
XParseColor(0x23e4930, 32, 0x463b02, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463b0f, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/ff/5f") = 12
XParseColor(0x23e4930, 32, 0x463b0f, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463b1c, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/ff/87") = 12
XParseColor(0x23e4930, 32, 0x463b1c, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463b29, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/ff/af") = 12
XParseColor(0x23e4930, 32, 0x463b29, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463b36, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/ff/d7") = 12
XParseColor(0x23e4930, 32, 0x463b36, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463b43, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:87/ff/ff") = 12
XParseColor(0x23e4930, 32, 0x463b43, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463b50, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/00/00") = 12
XParseColor(0x23e4930, 32, 0x463b50, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463b5d, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/00/5f") = 12
XParseColor(0x23e4930, 32, 0x463b5d, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463b6a, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/00/87") = 12
XParseColor(0x23e4930, 32, 0x463b6a, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463b77, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/00/af") = 12
XParseColor(0x23e4930, 32, 0x463b77, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463b84, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/00/d7") = 12
XParseColor(0x23e4930, 32, 0x463b84, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463b91, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/00/ff") = 12
XParseColor(0x23e4930, 32, 0x463b91, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463b9e, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/5f/00") = 12
XParseColor(0x23e4930, 32, 0x463b9e, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463bab, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/5f/5f") = 12
XParseColor(0x23e4930, 32, 0x463bab, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463bb8, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/5f/87") = 12
XParseColor(0x23e4930, 32, 0x463bb8, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463bc5, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/5f/af") = 12
XParseColor(0x23e4930, 32, 0x463bc5, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463bd2, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/5f/d7") = 12
XParseColor(0x23e4930, 32, 0x463bd2, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463bdf, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/5f/ff") = 12
XParseColor(0x23e4930, 32, 0x463bdf, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463bec, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/87/00") = 12
XParseColor(0x23e4930, 32, 0x463bec, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463bf9, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/87/5f") = 12
XParseColor(0x23e4930, 32, 0x463bf9, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463c06, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/87/87") = 12
XParseColor(0x23e4930, 32, 0x463c06, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463c13, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/87/af") = 12
XParseColor(0x23e4930, 32, 0x463c13, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463c20, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/87/d7") = 12
XParseColor(0x23e4930, 32, 0x463c20, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463c2d, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/87/ff") = 12
XParseColor(0x23e4930, 32, 0x463c2d, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463c3a, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/af/00") = 12
XParseColor(0x23e4930, 32, 0x463c3a, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463c47, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/af/5f") = 12
XParseColor(0x23e4930, 32, 0x463c47, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463c54, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/af/87") = 12
XParseColor(0x23e4930, 32, 0x463c54, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463c61, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/af/af") = 12
XParseColor(0x23e4930, 32, 0x463c61, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463c6e, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/af/d7") = 12
XParseColor(0x23e4930, 32, 0x463c6e, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463c7b, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/af/ff") = 12
XParseColor(0x23e4930, 32, 0x463c7b, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463c88, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/d7/00") = 12
XParseColor(0x23e4930, 32, 0x463c88, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463c95, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/d7/5f") = 12
XParseColor(0x23e4930, 32, 0x463c95, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463ca2, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/d7/87") = 12
XParseColor(0x23e4930, 32, 0x463ca2, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463caf, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/d7/af") = 12
XParseColor(0x23e4930, 32, 0x463caf, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463cbc, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/d7/d7") = 12
XParseColor(0x23e4930, 32, 0x463cbc, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463cc9, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/d7/ff") = 12
XParseColor(0x23e4930, 32, 0x463cc9, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463cd6, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/ff/00") = 12
XParseColor(0x23e4930, 32, 0x463cd6, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463ce3, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/ff/5f") = 12
XParseColor(0x23e4930, 32, 0x463ce3, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463cf0, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/ff/87") = 12
XParseColor(0x23e4930, 32, 0x463cf0, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463cfd, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/ff/af") = 12
XParseColor(0x23e4930, 32, 0x463cfd, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463d0a, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/ff/d7") = 12
XParseColor(0x23e4930, 32, 0x463d0a, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463d17, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:af/ff/ff") = 12
XParseColor(0x23e4930, 32, 0x463d17, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463d24, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/00/00") = 12
XParseColor(0x23e4930, 32, 0x463d24, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463d31, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/00/5f") = 12
XParseColor(0x23e4930, 32, 0x463d31, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463d3e, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/00/87") = 12
XParseColor(0x23e4930, 32, 0x463d3e, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463d4b, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/00/af") = 12
XParseColor(0x23e4930, 32, 0x463d4b, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463d58, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/00/d7") = 12
XParseColor(0x23e4930, 32, 0x463d58, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463d65, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/00/ff") = 12
XParseColor(0x23e4930, 32, 0x463d65, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463d72, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/5f/00") = 12
XParseColor(0x23e4930, 32, 0x463d72, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463d7f, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/5f/5f") = 12
XParseColor(0x23e4930, 32, 0x463d7f, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463d8c, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/5f/87") = 12
XParseColor(0x23e4930, 32, 0x463d8c, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463d99, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/5f/af") = 12
XParseColor(0x23e4930, 32, 0x463d99, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463da6, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/5f/d7") = 12
XParseColor(0x23e4930, 32, 0x463da6, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463db3, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/5f/ff") = 12
XParseColor(0x23e4930, 32, 0x463db3, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463dc0, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/87/00") = 12
XParseColor(0x23e4930, 32, 0x463dc0, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463dcd, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/87/5f") = 12
XParseColor(0x23e4930, 32, 0x463dcd, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463dda, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/87/87") = 12
XParseColor(0x23e4930, 32, 0x463dda, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463de7, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/87/af") = 12
XParseColor(0x23e4930, 32, 0x463de7, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463df4, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/87/d7") = 12
XParseColor(0x23e4930, 32, 0x463df4, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463e01, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/87/ff") = 12
XParseColor(0x23e4930, 32, 0x463e01, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463e0e, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/af/00") = 12
XParseColor(0x23e4930, 32, 0x463e0e, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463e1b, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/af/5f") = 12
XParseColor(0x23e4930, 32, 0x463e1b, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463e28, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/af/87") = 12
XParseColor(0x23e4930, 32, 0x463e28, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463e35, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/af/af") = 12
XParseColor(0x23e4930, 32, 0x463e35, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463e42, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/af/d7") = 12
XParseColor(0x23e4930, 32, 0x463e42, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463e4f, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/af/ff") = 12
XParseColor(0x23e4930, 32, 0x463e4f, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463e5c, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/d7/00") = 12
XParseColor(0x23e4930, 32, 0x463e5c, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463e69, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/d7/5f") = 12
XParseColor(0x23e4930, 32, 0x463e69, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463e76, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/d7/87") = 12
XParseColor(0x23e4930, 32, 0x463e76, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463e83, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/d7/af") = 12
XParseColor(0x23e4930, 32, 0x463e83, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463e90, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/d7/d7") = 12
XParseColor(0x23e4930, 32, 0x463e90, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463e9d, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/d7/ff") = 12
XParseColor(0x23e4930, 32, 0x463e9d, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463eaa, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/ff/00") = 12
XParseColor(0x23e4930, 32, 0x463eaa, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463eb7, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/ff/5f") = 12
XParseColor(0x23e4930, 32, 0x463eb7, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463ec4, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/ff/87") = 12
XParseColor(0x23e4930, 32, 0x463ec4, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463ed1, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/ff/af") = 12
XParseColor(0x23e4930, 32, 0x463ed1, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463ede, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/ff/d7") = 12
XParseColor(0x23e4930, 32, 0x463ede, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463eeb, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d7/ff/ff") = 12
XParseColor(0x23e4930, 32, 0x463eeb, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4635ba, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/00/00") = 12
XParseColor(0x23e4930, 32, 0x4635ba, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463ef8, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/00/5f") = 12
XParseColor(0x23e4930, 32, 0x463ef8, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463f05, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/00/87") = 12
XParseColor(0x23e4930, 32, 0x463f05, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463f12, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/00/af") = 12
XParseColor(0x23e4930, 32, 0x463f12, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463f1f, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/00/d7") = 12
XParseColor(0x23e4930, 32, 0x463f1f, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4635ee, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/00/ff") = 12
XParseColor(0x23e4930, 32, 0x4635ee, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463f2c, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/5f/00") = 12
XParseColor(0x23e4930, 32, 0x463f2c, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463f39, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/5f/5f") = 12
XParseColor(0x23e4930, 32, 0x463f39, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463f46, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/5f/87") = 12
XParseColor(0x23e4930, 32, 0x463f46, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463f53, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/5f/af") = 12
XParseColor(0x23e4930, 32, 0x463f53, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463f60, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/5f/d7") = 12
XParseColor(0x23e4930, 32, 0x463f60, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463f6d, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/5f/ff") = 12
XParseColor(0x23e4930, 32, 0x463f6d, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463f7a, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/87/00") = 12
XParseColor(0x23e4930, 32, 0x463f7a, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463f87, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/87/5f") = 12
XParseColor(0x23e4930, 32, 0x463f87, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463f94, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/87/87") = 12
XParseColor(0x23e4930, 32, 0x463f94, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463fa1, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/87/af") = 12
XParseColor(0x23e4930, 32, 0x463fa1, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463fae, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/87/d7") = 12
XParseColor(0x23e4930, 32, 0x463fae, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463fbb, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/87/ff") = 12
XParseColor(0x23e4930, 32, 0x463fbb, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463fc8, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/af/00") = 12
XParseColor(0x23e4930, 32, 0x463fc8, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463fd5, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/af/5f") = 12
XParseColor(0x23e4930, 32, 0x463fd5, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463fe2, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/af/87") = 12
XParseColor(0x23e4930, 32, 0x463fe2, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463fef, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/af/af") = 12
XParseColor(0x23e4930, 32, 0x463fef, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463ffc, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/af/d7") = 12
XParseColor(0x23e4930, 32, 0x463ffc, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464009, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/af/ff") = 12
XParseColor(0x23e4930, 32, 0x464009, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464016, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/d7/00") = 12
XParseColor(0x23e4930, 32, 0x464016, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464023, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/d7/5f") = 12
XParseColor(0x23e4930, 32, 0x464023, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464030, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/d7/87") = 12
XParseColor(0x23e4930, 32, 0x464030, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46403d, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/d7/af") = 12
XParseColor(0x23e4930, 32, 0x46403d, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46404a, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/d7/d7") = 12
XParseColor(0x23e4930, 32, 0x46404a, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464057, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/d7/ff") = 12
XParseColor(0x23e4930, 32, 0x464057, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4635d4, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/ff/00") = 12
XParseColor(0x23e4930, 32, 0x4635d4, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464064, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/ff/5f") = 12
XParseColor(0x23e4930, 32, 0x464064, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464071, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/ff/87") = 12
XParseColor(0x23e4930, 32, 0x464071, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46407e, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/ff/af") = 12
XParseColor(0x23e4930, 32, 0x46407e, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46408b, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/ff/d7") = 12
XParseColor(0x23e4930, 32, 0x46408b, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463545, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/ff/ff") = 12
XParseColor(0x23e4930, 32, 0x463545, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464098, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:08/08/08") = 12
XParseColor(0x23e4930, 32, 0x464098, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4640a5, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:12/12/12") = 12
XParseColor(0x23e4930, 32, 0x4640a5, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4640b2, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:1c/1c/1c") = 12
XParseColor(0x23e4930, 32, 0x4640b2, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4640bf, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:26/26/26") = 12
XParseColor(0x23e4930, 32, 0x4640bf, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4640cc, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:30/30/30") = 12
XParseColor(0x23e4930, 32, 0x4640cc, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4640d9, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:3a/3a/3a") = 12
XParseColor(0x23e4930, 32, 0x4640d9, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4640e6, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:44/44/44") = 12
XParseColor(0x23e4930, 32, 0x4640e6, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4640f3, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:4e/4e/4e") = 12
XParseColor(0x23e4930, 32, 0x4640f3, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464100, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:58/58/58") = 12
XParseColor(0x23e4930, 32, 0x464100, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46410d, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:62/62/62") = 12
XParseColor(0x23e4930, 32, 0x46410d, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46411a, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:6c/6c/6c") = 12
XParseColor(0x23e4930, 32, 0x46411a, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464127, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:76/76/76") = 12
XParseColor(0x23e4930, 32, 0x464127, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464134, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:80/80/80") = 12
XParseColor(0x23e4930, 32, 0x464134, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464141, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:8a/8a/8a") = 12
XParseColor(0x23e4930, 32, 0x464141, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46414e, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:94/94/94") = 12
XParseColor(0x23e4930, 32, 0x46414e, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46415b, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:9e/9e/9e") = 12
XParseColor(0x23e4930, 32, 0x46415b, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464168, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:a8/a8/a8") = 12
XParseColor(0x23e4930, 32, 0x464168, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464175, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:b2/b2/b2") = 12
XParseColor(0x23e4930, 32, 0x464175, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464182, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:bc/bc/bc") = 12
XParseColor(0x23e4930, 32, 0x464182, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46418f, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:c6/c6/c6") = 12
XParseColor(0x23e4930, 32, 0x46418f, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x46419c, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:d0/d0/d0") = 12
XParseColor(0x23e4930, 32, 0x46419c, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4641a9, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:da/da/da") = 12
XParseColor(0x23e4930, 32, 0x4641a9, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4641b6, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:e4/e4/e4") = 12
XParseColor(0x23e4930, 32, 0x4641b6, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4641c3, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ee/ee/ee") = 12
XParseColor(0x23e4930, 32, 0x4641c3, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463545, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:ff/ff/ff") = 12
XParseColor(0x23e4930, 32, 0x463545, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x464175, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:b2/b2/b2") = 12
XParseColor(0x23e4930, 32, 0x464175, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x4641d0, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:96/96/96") = 12
XParseColor(0x23e4930, 32, 0x4641d0, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
sscanf(0x463538, 0x51c687, 0x7fff9e06d8b6, 0x7fff9e06d8ac) = 0
strlen("rgb:00/00/00") = 12
XParseColor(0x23e4930, 32, 0x463538, 0x7fff9e06d8c0) = 1
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8b0, 0) = 0x23f3cc0
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d8d0, 0x23df7f8) = 0x23f3cc0
XRenderFindVisualFormat(0x23e4930, 0x23efbc0, 0x7fff9e06d930, 0) = 0x23f3cc0
malloc(80) = 0x26da4e0
free(0) = <void>
free(0) = <void>
strdup("fixed") = 0x23e22e0
malloc(56) = 0x23e2300
strdup("") = 0x23f1bf0
malloc(16) = 0x23e2340
memcpy(0x23e2340, nil, 0) = 0x23e2340
free(0) = <void>
strdup("built-in support font") = 0x23e2360
free(0x23f1bf0) = <void>
strchr("fixed", ',') = nil
strlen("fixed") = 5
__memcpy_chk(0x7fff9e06d690, 0x46526f, 5, 512) = 0x7fff9e06d690
malloc(72) = 0x23e2380
strdup("fixed") = 0x23f1bf0
__sprintf_chk(0x7fff9e06d810, 1, 64, 0x4650e4) = 1
XListFonts(0x23e4930, 0x23f1bf0, 4000, 0x7fff9e06d7dc) = 0x23e2430
free(0x23f1bf0) = <void>
malloc(40) = 0x23e21b0
strdup("fixed") = 0x23f1bf0
free(0x23f1bf0) = <void>
strdup("fixed") = 0x23f1bf0
XLoadQueryFont(0x23e4930, 0x23f1bf0, 0x23f1bf0, 0) = 0x26da540
XGetFontProperty(0x26da540, 113, 0x7fff9e06d698, 0xeff5) = 1
XGetFontProperty(0x26da540, 101, 0x7fff9e06d668, 0x4620e6) = 1
XGetAtomName(0x23e4930, 102, 0x7fff9e06d668, 0x26da720) = 0x23e2490
XGetFontProperty(0x26da540, 103, 0x7fff9e06d668, 0x51da36) = 1
XGetAtomName(0x23e4930, 104, 0x7fff9e06d668, 0x26da720) = 0x23e24d0
free(0x23e2490) = <void>
free(0x23e24d0) = <void>
XFreeFont(0x23e4930, 0x26da540, 0x7f6f340e2628, 0x23e2480) = 1
strdup("fixed") = 0x23e2490
free(0x23e2490) = <void>
strdup("fixed") = 0x23e2490
XLoadQueryFont(0x23e4930, 0x23e2490, 0x23e2490, 0) = 0x23e24d0
XGetFontProperty(0x23e24d0, 113, 0x7fff9e06d698, 0xeff5) = 1
XGetFontProperty(0x23e24d0, 101, 0x7fff9e06d668, 0x4620e6) = 1
XGetAtomName(0x23e4930, 102, 0x7fff9e06d668, 0x23e26b0) = 0x23e2410
XGetFontProperty(0x23e24d0, 103, 0x7fff9e06d668, 0x51da36) = 1
XGetAtomName(0x23e4930, 104, 0x7fff9e06d668, 0x23e26b0) = 0x23e23d0
free(0x23e2410) = <void>
free(0x23e23d0) = <void>
XFreeFont(0x23e4930, 0x23e24d0, 0x7f6f340e2628, 0x23e2400) = 1
XFreeFontNames(0x23e2430, 0xffffffff, 0x7f6f340e2650, 0) = 1
XLoadQueryFont(0x23e4930, 0x23f1bf0, 0x23e21d8, 0x2697bb0) = 0x23e24d0
free(0x23e2490) = <void>
free(0) = <void>
free(0x23e21b0) = <void>
XGetFontProperty(0x23e24d0, 114, 0x7fff9e06d768, 0) = 1
XGetAtomName(0x23e4930, 115, 0x7fff9e06d768, 0x23e26b0) = 0x2697bc0
XGetFontProperty(0x23e24d0, 116, 0x7fff9e06d768, 0) = 1
XGetAtomName(0x23e4930, 117, 0x7fff9e06d768, 0x23e26b0) = 0x23e23d0
__snprintf_chk(0x7fff9e06d850, 64, 1, 64) = 9
strlen("ISO88591") = 8
strcmp("ISO88591", "ISO88591") = 0
free(0x2697bc0) = <void>
free(0x23e23d0) = <void>
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
wcwidth(205, 0x7fff9e06d7d2, 0, 1) = 1
XTextExtents16(0x23e24d0, 0x7fff9e06d7d0, 1, 0x7fff9e06d7e0) = 0
wcwidth(213, 0x7fff9e06d7d2, 0, 1) = 1
XGetFontProperty(0x23e24d0, 113, 0x7fff9e06d8a8, 1) = 1
XGetFontProperty(0x23e24d0, 101, 0x7fff9e06d878, 0x4620e6) = 1
XGetAtomName(0x23e4930, 102, 0x7fff9e06d878, 0x23e26b0) = 0x23e23d0
XGetFontProperty(0x23e24d0, 103, 0x7fff9e06d878, 0x51da36) = 1
XGetAtomName(0x23e4930, 104, 0x7fff9e06d878, 0x23e26b0) = 0x2697bc0
free(0x23e23d0) = <void>
free(0x2697bc0) = <void>
malloc(80) = 0x23e23f0
free(0) = <void>
free(0) = <void>
strdup("fixed") = 0x2697bc0
malloc(56) = 0x23e26c0
strdup("") = 0x23e23d0
malloc(16) = 0x23e2700
memcpy(0x23e2700, nil, 0) = 0x23e2700
free(0) = <void>
strdup("built-in support font") = 0x23e2720
free(0x23e23d0) = <void>
strchr("fixed", ',') = nil
strlen("fixed") = 5
__memcpy_chk(0x7fff9e06d690, 0x23e22e0, 5, 512) = 0x7fff9e06d690
malloc(72) = 0x23e2740
strdup("fixed") = 0x23e23d0
malloc(80) = 0x23e2790
free(0) = <void>
free(0) = <void>
strdup("fixed") = 0x23e27f0
malloc(56) = 0x23e2810
strdup("") = 0x23e2850
malloc(16) = 0x23e2870
memcpy(0x23e2870, nil, 0) = 0x23e2870
free(0) = <void>
strdup("built-in support font") = 0x23e2890
free(0x23e2850) = <void>
strchr("fixed", ',') = nil
strlen("fixed") = 5
__memcpy_chk(0x7fff9e06d690, 0x23e22e0, 5, 512) = 0x7fff9e06d690
malloc(72) = 0x23e28b0
strdup("fixed") = 0x23e2850
malloc(80) = 0x23e2900
free(0) = <void>
free(0) = <void>
strdup("fixed") = 0x23e2960
malloc(56) = 0x23e2980
strdup("") = 0x23e29c0
malloc(16) = 0x23e29e0
memcpy(0x23e29e0, nil, 0) = 0x23e29e0
free(0) = <void>
strdup("built-in support font") = 0x23e2a00
free(0x23e29c0) = <void>
strchr("fixed", ',') = nil
strlen("fixed") = 5
__memcpy_chk(0x7fff9e06d690, 0x23e22e0, 5, 512) = 0x7fff9e06d690
malloc(72) = 0x23e2a20
strdup("fixed") = 0x23e29c0
XCreateWindow(0x23e4930, 351, 0, 0) = 0x1800008
XmbTextListToTextProperty(0x23e4930, 0x7fff9e06d918, 1, 3) = 0
XSetTextProperty(0x23e4930, 0x1800008, 0x7fff9e06d920, 39) = 1
XFree(0x26deea0, 0x26deea0, 4, 8) = 1
strlen("exit") = 4
malloc(20) = 0x26deea0
mbstowcs(0x26deea0, 0x23e3240, 5, 0x7f6f340e2620) = 4
wcslen(0x26deea0, 0xffffffff, 0, 0x7fff9e06d801) = 4
malloc(17) = 0x26deec0
realloc(0x26deec0, 5) = 0x26deec0
strlen("exit") = 4
XChangeProperty(0x23e4930, 0x1800008, 290, 279) = 1
free(0x26deec0) = <void>
free(0x26deea0) = <void>
XmbTextListToTextProperty(0x23e4930, 0x7fff9e06d918, 1, 3) = 0
XSetTextProperty(0x23e4930, 0x1800008, 0x7fff9e06d920, 37) = 1
XFree(0x23e2a70, 0x23e2a70, 4, 8) = 1
strlen("exit") = 4
malloc(20) = 0x23e2a70
mbstowcs(0x23e2a70, 0x23e3240, 5, 0x7f6f340e2620) = 4
wcslen(0x23e2a70, 0xffffffff, 0, 0x7fff9e06d801) = 4
malloc(17) = 0x23e2a90
realloc(0x23e2a90, 5) = 0x23e2a90
strlen("exit") = 4
XChangeProperty(0x23e4930, 0x1800008, 291, 279) = 1
free(0x23e2a90) = <void>
free(0x23e2a70) = <void>
XmbSetWMProperties(0x23e4930, 0x1800008, 0, 0) = 0
XSetWMProtocols(0x23e4930, 0x1800008, 0x7fff9e06d9e0, 2) = 1
getpid() = 4377
XChangeProperty(0x23e4930, 0x1800008, 289, 6) = 1
XSelectInput(0x23e4930, 0x1800008, 0x238003, 4377) = 1
malloc(16) = 0x23e2a70
memcpy(0x23e2a70, nil, 0) = 0x23e2a70
free(0) = <void>
XCreateFontCursor(0x23e4930, 152, 0x23e2a70, 0) = 0x1800009
XCreateSimpleWindow(0x23e4930, 0x1800008, 14, 2) = 0x180000a
XChangeWindowAttributes(0x23e4930, 0x180000a, 16, 0x7fff9e06da50) = 1
XSelectInput(0x23e4930, 0x180000a, 0x40850c, 1) = 1
XCreateGC(0x23e4930, 0x180000a, 0x1000c, 0x7fff9e06dac0) = 0x23dde60
malloc(24) = 0x23e2a90
XDefineCursor(0x23e4930, 0x180000a, 0x1800009, 0x23e0948) = 1
XRecolorCursor(0x23e4930, 0x1800009, 0x7fff9e06d930, 0x7fff9e06d940) = 1
XSetWindowBackground(0x23e4930, 0x1800008, 0xffffff, 0x7fff9e06d940) = 1
XSetWindowBackground(0x23e4930, 0x180000a, 0xffffff, 0x7fff9e06d940) = 1
XClearWindow(0x23e4930, 0x1800008, 4, 0x7fff9e06d940) = 1
strlen("en_US.UTF-8") = 11
XChangeProperty(0x23e4930, 0x1800008, 294, 31) = 1
XSupportsLocale(0x23ebca0, 0x23e46f0, 11, 22) = 1
malloc(16) = 0x23e2ab0
memcpy(0x23e2ab0, nil, 0) = 0x23e2ab0
free(0) = <void>
strlen("en_US.UTF-8") = 11
memcmp(0x23e46f0, 0x73ac00, 12, 1776) = 0
XSetLocaleModifiers(0x4657a8, 0x4657a8, 0, 0x382d46) = 0x23ddf10
XSetLocaleModifiers(0x465266, 0x465266, 1, 2) = 0x23ddf30
strlen("en_US.UTF-8") = 11
strlen("@im=none") = 8
free(0) = <void>
malloc(21) = 0x23ddf10
memcpy(0x23ddf10, "en_US.UTF-8", 11) = 0x23ddf10
memcpy(0x23ddf1c, "@im=none", 8) = 0x23ddf1c
malloc(32) = 0x26deea0
strdup("en_US.UTF-8\n@im=none") = 0x23ddf50
XOpenIM(0x23e4930, 0, 0, 0) = 0x23ddf70
XSetIMValues(0x23ddf70, 0x51c628, 0x7fff9e06d780, 0) = 0
malloc(16) = 0x26f9200
memcpy(0x26f9200, nil, 0) = 0x26f9200
free(0) = <void>
XGetIMValues(0x23ddf70, 0x4651bc, 0x7fff9e06d828, 0) = 0
strdup("OverTheSpot,OffTheSpot,Root,None"...) = 0x26e7e10
malloc(40) = 0x26f9250
__ctype_b_loc() = 0x7f6f357376d8
strlen("OverTheSpot") = 11
memmove(0x26e7e10, "OverTheSpot", 11) = 0x26e7e10
__ctype_b_loc() = 0x7f6f357376d8
strlen("OffTheSpot") = 10
memmove(0x26e7e1c, "OffTheSpot", 10) = 0x26e7e1c
__ctype_b_loc() = 0x7f6f357376d8
strlen("Root") = 4
memmove(0x26e7e27, "Root", 4) = 0x26e7e27
__ctype_b_loc() = 0x7f6f357376d8
strlen("None") = 4
memmove(0x26e7e2c, "None", 4) = 0x26e7e2c
free(0x26e7e10) = <void>
free(0x26f9250) = <void>
XFree(0x26f9220, 1, 0x7f6f340e2630, 0x26e7e00) = 1
XCreateIC(0x23ddf70, 0x46525b, 1032, 0x46524e) = 0x26f92d0
free(0) = <void>
mmap(0, 0xadc80, 3, 34) = 0x7f6f31361000
malloc(16) = 0x26f9c90
memcpy(0x26f9c90, nil, 0) = 0x26f9c90
free(0) = <void>
malloc(256) = 0x26f9dc0
free(0) = <void>
malloc(80) = 0x26f9ed0
XCreateSimpleWindow(0x23e4930, 0x1800008, 0, 0) = 0x180000c
XDefineCursor(0x23e4930, 0x180000c, 0x1800004, 0x23de430) = 1
XSelectInput(0x23e4930, 0x180000c, 0x870c, 0x23de430) = 1
malloc(32) = 0x26f9d70
memcpy(0x26f9d70, "\370\036>\002\0\0\0\0\030\037>\002\0\0\0\0", 16) = 0x26f9d70
free(0x23e2a70) = <void>
XCreateGC(0x23e4930, 0x180000a, 4, 0x7fff9e06da90) = 0x26f9f30
XCreateGC(0x23e4930, 0x180000a, 4, 0x7fff9e06da90) = 0x26f9fe0
XCreateGC(0x23e4930, 0x180000a, 4, 0x7fff9e06da90) = 0x26fa090
XFillRectangle(0x23e4930, 0x180000c, 0x26fa090, 1) = 1
XDrawLine(0x23e4930, 0x180000c, 0x26f9f30, 0) = 1
XDrawLine(0x23e4930, 0x180000c, 0x26f9f30, 0) = 1
XDrawLine(0x23e4930, 0x180000c, 0x26f9fe0, 11) = 1
XDrawLine(0x23e4930, 0x180000c, 0x26f9fe0, 11) = 1
XDrawLine(0x23e4930, 0x180000c, 0x26f9f30, 1) = 1
XDrawLine(0x23e4930, 0x180000c, 0x26f9f30, 1) = 1
XDrawLine(0x23e4930, 0x180000c, 0x26f9fe0, 10) = 1
XDrawLine(0x23e4930, 0x180000c, 0x26f9fe0, 10) = 1
XFillPolygon(0x23e4930, 0x180000c, 0x26fa090, 0x7fff9e06da30) = 1
XDrawLine(0x23e4930, 0x180000c, 0x26f9fe0, 1) = 1
XDrawLine(0x23e4930, 0x180000c, 0x26f9f30, 1) = 1
XDrawLine(0x23e4930, 0x180000c, 0x26f9fe0, 6) = 1
XFillPolygon(0x23e4930, 0x180000c, 0x26fa090, 0x7fff9e06da30) = 1
XDrawLine(0x23e4930, 0x180000c, 0x26f9f30, 1) = 1
XDrawLine(0x23e4930, 0x180000c, 0x26f9f30, 1) = 1
XDrawLine(0x23e4930, 0x180000c, 0x26f9fe0, 6) = 1
XMapWindow(0x23e4930, 0x180000c) = 1
XGetModifierMapping(0x23e4930, 0x23e3270, 0x26f9d88, 6) = 0x26f9da0
XKeycodeToKeysym(0x23e4930, 64, 0, 0x23e22b0) = 0xffe9
XKeycodeToKeysym(0x23e4930, 205, 0, 0x26f9cf0) = 0
XKeycodeToKeysym(0x23e4930, 77, 0, 0x23e22b0) = 0xff7f
XKeycodeToKeysym(0x23e4930, 133, 0, 0x23e22b0) = 0xffeb
XKeycodeToKeysym(0x23e4930, 134, 0, 0x26f9cf0) = 0xffec
XKeycodeToKeysym(0x23e4930, 206, 0, 0x26f9cf0) = 0
XKeycodeToKeysym(0x23e4930, 207, 0, 0x26f9cf0) = 0
XKeycodeToKeysym(0x23e4930, 92, 0, 0x23e22b0) = 0xfe03
XKeycodeToKeysym(0x23e4930, 203, 0, 0x26f9cf0) = 0xff7e
XFreeModifiermap(0x26f9da0, 0, 409, 0x26f9cf0) = 1
getpt(0x2677ff0, 0x23e3270, 0x7f6f340e2628, 0) = 7
grantpt(7, 0x7fff9e06da50, 0, -1) = 0
unlockpt(7, 0x7f6f33ea1483, 5, 0x7fff9e06c590) = 0
ptsname(7, 0x40045431, 0x7fff9e06dadc, -1) = 0x7f6f340e7340
strdup("/dev/pts/1") = 0x26fb6a0
open("/dev/pts/1", 258, 00) = 8
isastream(8, 258, 0, -1) = 0
fcntl(7, 4, 2048, -1) = 0
cfsetospeed(0x7fff9e06db20, 15, 68, 0) = 0
cfsetispeed(0x7fff9e06db20, 15, 68, 0) = 0
tcsetattr(8, 0, 0x7fff9e06db20) = 0
tcgetattr(7, 0x7fff9e06dab0) = 0
tcsetattr(7, 0, 0x7fff9e06dab0) = 0
ioctl(7, 21524, 0x7fff9e06db00) = 0
fork() = 4378
getuid() = 1000
getpwuid(1000, 1, 0x23e34c8, -1) = 0x7f6f340e4e60
strncpy(0x7fff9e06d958, "pts/1", 32) = 0x7fff9e06d958
strlen("pts/1") = 5
strncpy(0x7fff9e06d978, "ts/1", 4) = 0x7fff9e06d978
time(0) = 1388176199
strncpy(0x7fff9e06d97c, "naoh", 32) = 0x7fff9e06d97c
strncpy(0x7fff9e06d99c, ":0.0", 256) = 0x7fff9e06d99c
setutent() = <void>
pututline(0x7fff9e06d950, 0, 0x7f6f340dfac0, 0xffffffff) = 0
endutent() = <void>
close(8) = 0
realloc(0x23db3b0, 24) = 0x23db3b0
pthread_getspecific(1, 0x23de430, 0x7fff9e06dcf8, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_push_scope(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x25a61e0
pthread_getspecific(1, 1, 1, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_save_int(0x23f46a0, 0x23f46f4, 0x7f6f35737a60, 0x7f6f343002e0) = 5
pthread_getspecific(1, 0x23f46f4, 2, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_2mortal(0x23f46a0, 0x23f7510, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f7510
pthread_getspecific(1, 0x23f7510, 0x261a7b0, 0x7f6f343002e0 <no return ...>
--- SIGCHLD (Child exited) ---
<... pthread_getspecific resumed> ) = 0x23f46a0
Perl_newSViv(0x23f46a0, 3, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24121f0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_sv_2mortal(0x23f46a0, 0x24121f0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24121f0
pthread_getspecific(1, 0, 32, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_call_pv(0x23f46a0, 0x51e5e6, 11, 0x7f6f343002e0 <unfinished ...>
pthread_getspecific(1, 0x241bac0, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8eb0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x244ee38, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x2443e40, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_2uv_flags(0x23f46a0, 0x2443e40, 2, 0x7f6f343002e0) = 4
XGrabButton(0x23e4930, 2, 4, 0x180000a) = 1
pthread_getspecific(1, 28, 0x1800004, 0x180000a) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_setiv(0x23f46a0, 0x2696fa0, 1, 0x7f6f343002e0) = 0x2696f90
pthread_getspecific(1, 2, 0x21102, 0x7f6f343ceda0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x241c690, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8eb0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x26a9ee8, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 1024, 0x7f6f343002e0) = 0x23f46a0
XrmGetDatabase(0x23e4930, 0x26775c0, 0x7f6f35737a60, 0x7f6f343002e0) = 0
__snprintf_chk(0x7fff9e06d610, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d610, 0x7fff9e06d610, 0x7fff9e06d5f8) = 0
__snprintf_chk(0x7fff9e06d610, 512, 1, 512) = 44
XrmGetResource(0, 0x7fff9e06d610, 0x7fff9e06d610, 0x7fff9e06d5f8) = 0
__snprintf_chk(0x7fff9e06d610, 512, 1, 512) = 18
XrmGetResource(0, 0x7fff9e06d610, 0x7fff9e06d610, 0x7fff9e06d5f8) = 0
__snprintf_chk(0x7fff9e06d610, 512, 1, 512) = 17
XrmGetResource(0, 0x7fff9e06d610, 0x7fff9e06d610, 0x7fff9e06d5f8) = 0
pthread_getspecific(1, 0x7fff9e06d270, 0, 0x7fff9e06d26c) = 0x23f46a0
Perl_sv_setpv(0x23f46a0, 0x252c040, 0, 0x7f6f343002e0) = 0x20000
pthread_getspecific(1, 0x252c040, 0, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x241bac0, 0, 40) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x23f1af4, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x25b8eb0) = 0x23f46a0
pthread_getspecific(1, 0x51d111, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_derived_from(0x23f46a0, 0x26a9ee8, 0x51d111, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x241e91c, 0x2408960, 0x6d726574) = 0x23f46a0
Perl_mg_find(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0x24155a0
pthread_getspecific(1, 0x23f7348, 126, 126) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 0x2699368, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_2uv_flags(0x23f46a0, 0x2699368, 2, 0x7f6f343002e0) = 4
XGrabButton(0x23e4930, 3, 4, 0x180000a) = 1
pthread_getspecific(1, 28, 0x1800004, 0x180000a) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_setiv(0x23f46a0, 0x2697138, 1, 0x7f6f343002e0) = 0x2697128
pthread_getspecific(1, 2, 0x21102, 0x7f6f343ceda0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
<... Perl_call_pv resumed> ) = 1
pthread_getspecific(1, 0x246d690, 0x3ffffffffffffff, 0x7f6f343f2c98) = 0x23f46a0
pthread_getspecific(1, 1, 0, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_free_tmps(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = -1
pthread_getspecific(1, 0x23f7510, 1, 0x261a7b0) = 0x23f46a0
Perl_pop_scope(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0
pthread_getspecific(1, 0x246d690, 0x3ffffffffffffff, 0x7f6f343f2c98) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
sn_display_new(0x23e4930, 0, 0, 0x7f6f343002e0) = 0x26fd480
sn_launchee_context_new_from_environment(0x26fd480, 0, 0x7f6f340e2630, 0x26fca00) = 0
XMapWindow(0x23e4930, 0x180000a) = 1
XMapWindow(0x23e4930, 0x1800008) = 1
sn_display_unref(0x26fd480, 8, 2, 0) = 0
realloc(0, 32) = 0x26ea700
XEventsQueued(0x23e4930, 2, 0x4000, 0x26ea700) = 0
epoll_ctl(3, 1, 4, 0x7fff9e06db60) = 0
epoll_ctl(3, 1, 6, 0x7fff9e06db60) = 0
epoll_ctl(3, 1, 7, 0x7fff9e06db60) = 0
clock_gettime(1, 0x7fff9e06db80, 7, -1) = 0
gettimeofday(0x7fff9e06db50, 0) = 0
epoll_wait(3, 0x23db010, 64, 0) = 1
epoll_ctl(3, 3, 7, 0x23db010) = 0
clock_gettime(1, 0x7fff9e06db80, 0, 32) = 0
waitpid(-1, 0x7fff9e06db6c, 11) = 4378
realloc(0x26ea700, 96) = 0x26fd480
pthread_getspecific(1, 0x23de430, 0x7fff9e06dcf8, 0) = 0x23f46a0
Perl_hv_common_key_len(0x23f46a0, 0x23f7348, 0x51cfd0, 10) = 0x2408888
pthread_getspecific(1, 0x242e80b, 0x2408888, 0x6e6f) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_push_scope(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x25a61e0
pthread_getspecific(1, 1, 1, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_save_int(0x23f46a0, 0x23f46f4, 0x7f6f35737a60, 0x7f6f343002e0) = 5
pthread_getspecific(1, 0x23f46f4, 2, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x23f1af0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_sv_2mortal(0x23f46a0, 0x23f7510, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f7510
pthread_getspecific(1, 0x23f7510, 0x261a7b0, 0x7f6f343002e0) = 0x23f46a0
Perl_newSViv(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24121f0
pthread_getspecific(1, 2, 4354, 0x7f6f343ceda0) = 0x23f46a0
Perl_sv_2mortal(0x23f46a0, 0x24121f0, 0x7f6f35737a60, 0x7f6f343002e0) = 0x24121f0
pthread_getspecific(1, 0, 32, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_call_pv(0x23f46a0, 0x51e5e6, 11, 0x7f6f343002e0) = 1
pthread_getspecific(1, 0x246d690, 0x3ffffffffffffff, 0x7f6f343f2c98) = 0x23f46a0
pthread_getspecific(1, 1, 0, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_free_tmps(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = -1
pthread_getspecific(1, 0x23f7510, 1, 0x261a7b0) = 0x23f46a0
Perl_pop_scope(0x23f46a0, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0
pthread_getspecific(1, 0x246d690, 0x3ffffffffffffff, 0x7f6f343f2c98) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
pthread_getspecific(1, 1, 0x7f6f35737a60, 0x7f6f343002e0) = 0x23f46a0
Perl_hv_clear(0x23f46a0, 0x23f7348, 0x7f6f35737a60, 0x7f6f343002e0) = 0
pthread_getspecific(1, 0x246d690, 1, 0x7f6f343f36c0) = 0x23f46a0
Perl_sv_unmagic(0x23f46a0, 0x23f7348, 126, 0x7f6f343002e0) = 0
pthread_getspecific(1, 1, 0x2210000c, 0x2453c00) = 0x23f46a0
Perl_sv_free2(0x23f46a0, 0x23f7510, 1, 0x7f6f343002e0) = 0x23f7348
memmove(0x23e2ab0, "", 0) = 0x23e2ab0
realloc(0, 16) = 0x2593200
waitpid(-1, 0x7fff9e06db6c, 11) = -1
__errno_location() = 0x7f6f357376c0
clock_gettime(1, 0x7fff9e06db80, 0, 0x23db390) = 0
epoll_wait(3, 0x23db010, 64, 0) = 2
epoll_ctl(3, 2, 7, 0x23db010) = 0
clock_gettime(1, 0x7fff9e06db80, 0, 16) = 0
XEventsQueued(0x23e4930, 2, 0x4000, 0x26fd480) = 2
XNextEvent(0x23e4930, 0x7fff9e06daa0, 0x23e5cf8, 0) = 0
XFilterEvent(0x7fff9e06daa0, 0, 0x253a400, 0) = 0
XEventsQueued(0x23e4930, 0, 0, 0) = 1
XNextEvent(0x23e4930, 0x7fff9e06daa0, 0, 0) = 0
XFilterEvent(0x7fff9e06daa0, 0, 0x26f9a20, 0) = 0
XEventsQueued(0x23e4930, 0, 0, 0) = 0
XEventsQueued(0x23e4930, 2, 0, 0) = 3
XNextEvent(0x23e4930, 0x7fff9e06daa0, 0x23e5cf8, 0) = 0
XFilterEvent(0x7fff9e06daa0, 0, 0x26f9a20, 0) = 0
XEventsQueued(0x23e4930, 0, 0, 0) = 2
XNextEvent(0x23e4930, 0x7fff9e06daa0, 0, 0) = 0
XFilterEvent(0x7fff9e06daa0, 0, 0x253a400, 0) = 0
XEventsQueued(0x23e4930, 0, 0, 0) = 1
XNextEvent(0x23e4930, 0x7fff9e06daa0, 0, 0) = 0
XFilterEvent(0x7fff9e06daa0, 0, 0x26f9b00, 0) = 0
XEventsQueued(0x23e4930, 0, 0, 0) = 0
XEventsQueued(0x23e4930, 2, 0, 0) = 0
clock_gettime(1, 0x7fff9e06db80, 0, 0) = 0
epoll_wait(3, 0x23db010, 64, 0) = 0
clock_gettime(1, 0x7fff9e06db80, 0, -1) = 0
strlen("en_US.UTF-8") = 11
memcmp(0x23e46f0, 0x73ac00, 12, 1776) = 0
memmove(0x23e2150, "", 0) = 0x23e2150
getuid() = 1000
getpwuid(1000, 0, 0, -1) = 0x7f6f340e4e60
strncpy(0x7fff9e06d958, "pts/1", 32) = 0x7fff9e06d958
strlen("pts/1") = 5
strncpy(0x7fff9e06d978, "ts/1", 4) = 0x7fff9e06d978
time(0) = 1388176199
setutent() = <void>
getutid(0x7fff9e06d950, 0, 0x7f6f340dfac0, 0xffffffff) = 0x26e91e0
endutent() = <void>
chmod("/dev/pts/1", 0666) = 0
chown("/dev/pts/1", 0, 0) = -1
close(7) = 0
free(0x26fb6a0) = <void>
free(0x2677ff0) = <void>
free(0x23e2a00) = <void>
free(0x23e2980) = <void>
free(0x23e29c0) = <void>
free(0x23e2a20) = <void>
free(0x23e2960) = <void>
free(0) = <void>
free(0x23e29e0) = <void>
free(0x23e2900) = <void>
free(0x23e2890) = <void>
free(0x23e2810) = <void>
free(0x23e2850) = <void>
free(0x23e28b0) = <void>
free(0x23e27f0) = <void>
free(0) = <void>
free(0x23e2870) = <void>
free(0x23e2790) = <void>
free(0x23e2720) = <void>
free(0x23e26c0) = <void>
free(0x23e23d0) = <void>
free(0x23e2740) = <void>
free(0x2697bc0) = <void>
free(0) = <void>
free(0x23e2700) = <void>
free(0x23e23f0) = <void>
free(0x23e2360) = <void>
free(0x23e2300) = <void>
XFreeFont(0x23e4930, 0x23e24d0, 2, 0x23e26b0) = 1
free(0x23f1bf0) = <void>
free(0x23e2380) = <void>
free(0x26f9dc0) = <void>
free(0x23e22e0) = <void>
free(0x26f9c90) = <void>
free(0x23e2340) = <void>
free(0x26da4e0) = <void>
free(0) = <void>
free(0) = <void>
XDestroyIC(0x26f92d0, 0x26deea0, 0x7f6f340e2648, 0x23e23e0) = 1761
XFreeGC(0x23e4930, 0x26f9f30, 0x7f6f340e2678, 0x26f92d0) = 1
XFreeGC(0x23e4930, 0x26f9fe0, 0x7f6f340e2678, 0x26f92d0) = 1
XFreeGC(0x23e4930, 0x26fa090, 0x7f6f340e2678, 0x26f92d0) = 1
XFreeGC(0x23e4930, 0x23dde60, 0x7f6f340e2678, 0x26f92d0) = 1
free(0x23e2a90) = <void>
XDestroyWindow(0x23e4930, 0x1800008, 0x7f6f340e2628, 0x23e2330) = 1
memmove(0x23e5cc0, "", 0) = 0x23e5cc0
XFreeCursor(0x23e4930, 0x1800002, 0x7f6f33e75480, 0x7fffffff8) = 1
memmove(0x26f9200, "", 0) = 0x26f9200
XCloseIM(0x23ddf70, 0x26f9208, 0x7f6f33e75480, 0x7fffffff8) = 1
free(0x23ddf50) = <void>
free(0x26deea0) = <void>
XrmGetDatabase(0x23e4930, 0, 0x7f6f340e2630, 0x26e7d50) = 0
XrmDestroyDatabase(0, 0, 0x7f6f340e2630, 0x26e7d50) = 0
XCloseDisplay(0x23e4930) = <void>
free(0x23e2ab0) = <void>
free(0x26f9200) = <void>
free(0x26f9d70) = <void>
free(0x23e4910) = <void>
free(0x23e4710) = <void>
munmap(0x7f6f31361000, 0xadc80, 0x7f6f340e2678, 0x26f91f0) = 0
free(0x26f9ed0) = <void>
free(0) = <void>
free(0) = <void>
free(0x23e46f0) = <void>
free(0) = <void>
free(0x23e3290) = <void>
free(0x23e32d0) = <void>
free(0x23e32f0) = <void>
free(0x23e32b0) = <void>
free(0x23e3340) = <void>
free(0x23e33b0) = <void>
free(0x23e33d0) = <void>
free(0x23e33f0) = <void>
free(0x23e3430) = <void>
free(0x23e3510) = <void>
free(0x23e3530) = <void>
free(0x23e3310) = <void>
free(0x23e3550) = <void>
free(0x23e3570) = <void>
free(0x23e35a0) = <void>
free(0x23e35d0) = <void>
free(0x23e35f0) = <void>
free(0x23e3480) = <void>
free(0x23e34a0) = <void>
free(0x23e3720) = <void>
free(0x23e34c0) = <void>
free(0x23e34e0) = <void>
free(0x23e3790) = <void>
free(0x23e37c0) = <void>
free(0) = <void>
free(0x23e3610) = <void>
free(0x23e3200) = <void>
free(0x23e31e0) = <void>
free(0x23e3220) = <void>
free(0x23e3240) = <void>
free(0) = <void>
free(0x23e3260) = <void>
free(0x23e31c0) = <void>
free(0x26da4b0) = <void>
free(0x26b5e60) = <void>
free(0x2677fd0) = <void>
free(0x23e2170) = <void>
XrmDestroyDatabase(0, 2, 0x7f6f340e2638, 0x23e33e0) = 0x23e33e0
free(0) = <void>
free(0x23de430) = <void>
perl_destruct(0x23f46a0, 0, 192, 0x7f6f340e3d30) = 0
perl_free(0x23f46a0, 1, 0x7f6f340e2678, 0x260a6e0) = 0x82b1
Perl_sys_term(1, 1, 0x7f6f340e2678, 0x260a6e0) = 0
free(0x23e5cc0) = <void>
signal(SIGINT, 0) = 0x436480
signal(SIGTERM, 0) = 0x436480
free(0) = <void>
free(0x23e2150) = <void>
+++ exited (status 0) +++trace -c -o loglc urxvt -e exit
% time seconds usecs/call calls function
------ ----------- ----------- --------- --------------------
64.28 0.781822 781822 1 XGetModifierMapping
8.72 0.106057 106057 1 perl_parse
4.98 0.060619 20206 3 Perl_call_pv
4.26 0.051758 44 1174 pthread_getspecific
1.68 0.020454 45 451 __snprintf_chk
1.67 0.020293 45 448 XrmGetResource
1.11 0.013464 13464 1 XOpenIM
1.04 0.012651 44 286 strlen
0.98 0.011900 45 262 XParseColor
0.96 0.011668 44 264 XRenderFindVisualFormat
0.96 0.011647 44 262 sscanf
0.82 0.009952 43 228 strcmp
0.79 0.009581 9581 1 grantpt
0.71 0.008598 8598 1 XCreateGlyphCursor
0.70 0.008489 47 180 Perl_newCONSTSUB
0.68 0.008289 46 180 Perl_newXS_flags
0.67 0.008177 44 183 Perl_newSViv
0.55 0.006698 44 149 free
0.42 0.005163 44 115 XrmGetDatabase
0.19 0.002353 44 53 malloc
0.19 0.002273 43 52 strdup
0.18 0.002207 43 51 Perl_newSVpv
0.18 0.002143 43 49 Perl_av_store
0.17 0.002100 2100 1 perl_destruct
0.14 0.001745 45 38 Perl_hv_common_key_len
0.14 0.001696 565 3 mbstowcs
0.13 0.001606 803 2 XmbTextListToTextProperty
0.13 0.001549 44 35 Perl_newSVuv
0.10 0.001176 1176 1 XOpenDisplay
0.10 0.001169 233 5 epoll_ctl
0.09 0.001061 1061 1 XInternAtoms
0.08 0.000973 44 22 Perl_sv_derived_from
0.08 0.000951 43 22 Perl_mg_find
0.07 0.000899 899 1 fork
0.07 0.000896 44 20 memcpy
0.07 0.000887 98 9 XKeycodeToKeysym
0.07 0.000816 102 8 XGetAtomName
0.06 0.000772 42 18 strncmp
0.06 0.000737 368 2 getpwuid
0.06 0.000710 710 1 XCreateIC
0.05 0.000653 43 15 XTextExtents16
0.05 0.000641 64 10 fcntl
0.05 0.000634 45 14 XDrawLine
0.05 0.000575 52 11 realloc
0.04 0.000500 166 3 XLoadQueryFont
0.04 0.000492 44 11 XGetFontProperty
0.03 0.000380 63 6 strncpy
0.03 0.000375 46 8 clock_gettime
0.03 0.000370 52 7 Perl_sv_2mortal
0.03 0.000363 45 8 memmove
0.03 0.000311 62 5 XEventsQueued
0.03 0.000307 43 7 __memcpy_chk
0.02 0.000288 72 4 getuid
0.02 0.000263 131 2 setutent
0.02 0.000261 130 2 XCreateFontCursor
0.02 0.000255 63 4 setlocale
0.02 0.000247 247 1 XCloseDisplay
0.02 0.000242 242 1 perl_construct
0.02 0.000233 46 5 getenv
0.02 0.000231 57 4 signal
0.02 0.000228 45 5 memcmp
0.02 0.000225 45 5 Perl_get_av
0.02 0.000222 44 5 __cxa_atexit
0.02 0.000220 44 5 XrmStringToQuark
0.02 0.000214 214 1 sn_display_new
0.02 0.000198 49 4 Perl_av_push
0.02 0.000188 94 2 close
0.02 0.000187 187 1 getutid
0.02 0.000185 185 1 XListFonts
0.02 0.000183 45 4 XFreeGC
0.02 0.000183 61 3 epoll_wait
0.01 0.000182 45 4 XFree
0.01 0.000181 45 4 XCreateGC
0.01 0.000180 45 4 wcslen
0.01 0.000179 44 4 XSelectInput
0.01 0.000177 44 4 Perl_get_sv
0.01 0.000176 44 4 XChangeProperty
0.01 0.000175 43 4 __ctype_b_loc
0.01 0.000175 43 4 strchr
0.01 0.000172 43 4 Perl_newSVpvn
0.01 0.000170 56 3 sigaction
0.01 0.000170 42 4 Perl_sv_setsv_flags
0.01 0.000165 55 3 XMapWindow
0.01 0.000158 52 3 Perl_save_int
0.01 0.000156 78 2 time
0.01 0.000142 142 1 perl_free
0.01 0.000140 140 1 XRenderQueryFilters
0.01 0.000140 70 2 endutent
0.01 0.000137 45 3 XFreeFont
0.01 0.000137 45 3 Perl_free_tmps
0.01 0.000136 45 3 Perl_pop_scope
0.01 0.000135 45 3 sigfillset
0.01 0.000135 45 3 Perl_sv_setpv
0.01 0.000135 45 3 Perl_push_scope
0.01 0.000134 67 2 XrmGetFileDatabase
0.01 0.000133 44 3 strrchr
0.01 0.000133 44 3 Perl_gv_stashpv
0.01 0.000132 132 1 XScreenResourceString
0.01 0.000128 42 3 Perl_newSV_type
0.01 0.000128 128 1 pututline
0.01 0.000127 42 3 Perl_newRV_noinc
0.01 0.000123 61 2 waitpid
0.01 0.000116 58 2 dup2
0.01 0.000115 57 2 getgid
0.01 0.000114 57 2 getegid
0.01 0.000113 56 2 geteuid
0.01 0.000113 56 2 tcgetattr
0.01 0.000111 55 2 tcsetattr
0.01 0.000103 103 1 getpt
0.01 0.000099 99 1 XCloseIM
0.01 0.000098 49 2 Perl_newXS
0.01 0.000094 47 2 XNextEvent
0.01 0.000094 47 2 XSetTextProperty
0.01 0.000094 47 2 memset
0.01 0.000093 46 2 gettimeofday
0.01 0.000093 46 2 XGrabButton
0.01 0.000092 46 2 XFilterEvent
0.01 0.000092 46 2 wcwidth
0.01 0.000092 46 2 Perl_sv_setiv
0.01 0.000091 45 2 XrmDestroyDatabase
0.01 0.000091 45 2 XSetLocaleModifiers
0.01 0.000091 45 2 XFillPolygon
0.01 0.000090 45 2 XSetWindowBackground
0.01 0.000090 45 2 XrmEnumerateDatabase
0.01 0.000090 45 2 Perl_sv_2uv_flags
0.01 0.000090 45 2 XCreateSimpleWindow
0.01 0.000089 44 2 XDefineCursor
0.01 0.000083 83 1 munmap
0.01 0.000082 82 1 Perl_sys_term
0.01 0.000079 79 1 ptsname
0.01 0.000067 67 1 boot_DynaLoader
0.01 0.000067 67 1 Perl_xs_apiversion_bootcheck
0.01 0.000066 66 1 XrmSetDatabase
0.01 0.000064 64 1 XUnloadFont
0.01 0.000064 64 1 Perl_sys_init3
0.01 0.000064 64 1 XmbSetWMProperties
0.01 0.000062 62 1 chmod
0.01 0.000061 61 1 pipe
0.01 0.000061 61 1 epoll_create1
0.00 0.000060 60 1 open
0.00 0.000060 60 1 XSetIMValues
0.00 0.000060 60 1 chown
0.00 0.000059 59 1 mmap
0.00 0.000058 58 1 getsockname
0.00 0.000057 57 1 unlockpt
0.00 0.000057 57 1 uname
0.00 0.000056 56 1 isastream
0.00 0.000056 56 1 XrmInitialize
0.00 0.000056 56 1 Perl_sv_free2
0.00 0.000055 55 1 ioctl
0.00 0.000052 52 1 XLoadFont
0.00 0.000051 51 1 perl_alloc
0.00 0.000050 50 1 perl_run
0.00 0.000048 48 1 XDestroyIC
0.00 0.000048 48 1 sn_launchee_context_new_from_environment
0.00 0.000048 48 1 Perl_get_hv
0.00 0.000048 48 1 Perl_hv_clear
0.00 0.000048 48 1 Perl_sv_unmagic
0.00 0.000047 47 1 XStringToKeysym
0.00 0.000047 47 1 __strcpy_chk
0.00 0.000047 47 1 XSetErrorHandler
0.00 0.000047 47 1 XResourceManagerString
0.00 0.000047 47 1 XFillRectangle
0.00 0.000047 47 1 XRenderQueryVersion
0.00 0.000047 47 1 XGetIMValues
0.00 0.000046 46 1 XConnectionNumber
0.00 0.000046 46 1 XrmMergeDatabases
0.00 0.000046 46 1 __sprintf_chk
0.00 0.000046 46 1 XFreeCursor
0.00 0.000046 46 1 getpid
0.00 0.000046 46 1 XFreeModifiermap
0.00 0.000046 46 1 __errno_location
0.00 0.000046 46 1 XRecolorCursor
0.00 0.000046 46 1 XSetIOErrorHandler
0.00 0.000046 46 1 XSetWMProtocols
0.00 0.000045 45 1 sn_display_unref
0.00 0.000045 45 1 cfsetispeed
0.00 0.000045 45 1 XDestroyWindow
0.00 0.000045 45 1 XFreeFontNames
0.00 0.000045 45 1 XClearWindow
0.00 0.000045 45 1 XCreateWindow
0.00 0.000045 45 1 nl_langinfo
0.00 0.000045 45 1 XSupportsLocale
0.00 0.000045 45 1 XChangeWindowAttributes
0.00 0.000044 44 1 Perl_sv_newmortal
0.00 0.000044 44 1 cfsetospeed
0.00 0.000044 44 1 Perl_sv_magic
0.00 0.000043 43 1 Perl_sv_bless
------ ----------- ----------- --------- --------------------
100.00 1.216208 4948 totalnow... I have no idea how to interpret that
there is a bunch of errors in strace "(Resource temporarily unavailable)"
Offline
As I've said, as this is an almost clean system, I don't know where the problem could come from :S
Any other terminal to recommend me to use instead?
Offline
You could use termite: it's a nice vte developed by Archers.
You can also read my strace here http://sprunge.us/IIEd if you want to run a diff on yours.
Offline